The Swift Package Index logo.Swift Package Index

Build Information

Failed to build Stytch, reference 0.104.0 (3f2a95), with Swift 6.1 for visionOS using Xcode 16.3 on 26 Feb 2026 03:14:00 UTC.

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme StytchCore -destination generic/platform=xrOS

Build Log

        Task {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchClient.UserManagement.update+AsyncVariants.generated.swift:10:47: note: closure captures 'self' which is accessible to code in the current task
                completion(.success(try await update(parameters: parameters)))
                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchClient.UserManagement.update+AsyncVariants.generated.swift:20:22: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
                Task {
                     ^
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchClient.UserManagement.update+AsyncVariants.generated.swift:22:52: note: closure captures 'self' which is accessible to code in the current task
                        promise(.success(try await update(parameters: parameters)))
                                                   ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchClient.handle+AsyncVariants.generated.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchClient.handle+AsyncVariants.generated.swift:15:14: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
        Task {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchClient.handle+AsyncVariants.generated.swift:17:17: note: closure captures 'completion' which is accessible to code in the current task
                completion(.success(try await handle(url: url, sessionDurationMinutes: sessionDurationMinutes)))
                ^
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchClient.handle+AsyncVariants.generated.swift:34:22: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
                Task {
                     ^
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchClient.handle+AsyncVariants.generated.swift:36:25: note: closure captures 'promise' which is accessible to code in the current task
                        promise(.success(try await handle(url: url, sessionDurationMinutes: sessionDurationMinutes)))
                        ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/KeychainClient/KeychainClient.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/KeychainClient/KeychainClientImplementation.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/KeychainClient/KeychainClientImplementation.swift:14:16: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'KeychainClientImplementation' may have shared mutable state; this is an error in the Swift 6 language mode
    static let shared = KeychainClientImplementation()
               ^
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/KeychainClient/KeychainClientImplementation.swift:13:13: note: class 'KeychainClientImplementation' does not conform to the 'Sendable' protocol
final class KeychainClientImplementation: KeychainClient {
            ^
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/KeychainClient/KeychainClientImplementation.swift:14:16: note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
    static let shared = KeychainClientImplementation()
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/KeychainClient/KeychainClientImplementation.swift:14:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let shared = KeychainClientImplementation()
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/KeychainClient/KeychainItem.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/KeychainClient/KeychainMigrations/KeychainMigration.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/KeychainClient/KeychainMigrations/KeychainMigration1.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/KeychainClient/KeychainMigrations/KeychainMigration2.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/KeychainClient/KeychainMigrations/KeychainMigration3.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/KeychainClient/KeychainMigrations/KeychainMigration4.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/KeychainClient/KeychainMigrations/KeychainMigration4.swift:5:16: warning: static property 'keychainClient' is not concurrency-safe because non-'Sendable' type 'any KeychainClient' may have shared mutable state; this is an error in the Swift 6 language mode
    static let keychainClient = Current.keychainClient
               ^
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/KeychainClient/KeychainClient.swift:4:10: note: protocol 'KeychainClient' does not conform to the 'Sendable' protocol
protocol KeychainClient: AnyObject {
         ^
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/KeychainClient/KeychainMigrations/KeychainMigration4.swift:5:16: note: add '@MainActor' to make static property 'keychainClient' part of global actor 'MainActor'
    static let keychainClient = Current.keychainClient
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/KeychainClient/KeychainMigrations/KeychainMigration4.swift:5:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let keychainClient = Current.keychainClient
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/KeychainClient/KeychainMigrations/KeychainMigration4.swift:6:16: warning: static property 'userDefaultsClient' is not concurrency-safe because non-'Sendable' type 'any EncryptedUserDefaultsClient' may have shared mutable state; this is an error in the Swift 6 language mode
    static let userDefaultsClient = Current.userDefaultsClient
               ^
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/EncryptedUserDefaultsClient/EncryptedUserDefaultsClient.swift:3:10: note: protocol 'EncryptedUserDefaultsClient' does not conform to the 'Sendable' protocol
protocol EncryptedUserDefaultsClient: AnyObject {
         ^
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/KeychainClient/KeychainMigrations/KeychainMigration4.swift:6:16: note: add '@MainActor' to make static property 'userDefaultsClient' part of global actor 'MainActor'
    static let userDefaultsClient = Current.userDefaultsClient
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/KeychainClient/KeychainMigrations/KeychainMigration4.swift:6:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let userDefaultsClient = Current.userDefaultsClient
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/LocalStorage.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Networking/NetworkMonitor.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Networking/NetworkMonitor.swift:20:38: warning: capture of 'self' with non-sendable type 'NetworkMonitor?' in a '@Sendable' closure; this is an error in the Swift 6 language mode
                if let isConnected = self?.isConnected, isConnected == false {
                                     ^
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Networking/NetworkMonitor.swift:3:7: note: class 'NetworkMonitor' does not conform to the 'Sendable' protocol
class NetworkMonitor {
      ^
SwiftDriverJobDiscovery normal arm64 Compiling SwiftyJSON.swift (in target 'SwiftyJSON' from project 'SwiftyJSON')
SwiftDriver\ Compilation SwiftyJSON normal arm64 com.apple.xcode.tools.swift.compiler (in target 'SwiftyJSON' from project 'SwiftyJSON')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name SwiftyJSON -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyJSON.build/Debug-xros/SwiftyJSON.build/Objects-normal/arm64/SwiftyJSON.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk -target arm64-apple-xros1.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -suppress-warnings -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros2.4-22O233-407b76dbb837030756cbe1ab3f0b01b6.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyJSON.build/Debug-xros/SwiftyJSON.build/Objects-normal/arm64/SwiftyJSON-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyJSON.build/Debug-xros/SwiftyJSON.build/Objects-normal/arm64/SwiftyJSON.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyJSON.build/Debug-xros/SwiftyJSON.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyJSON.build/Debug-xros/SwiftyJSON.build/Objects-normal/arm64/SwiftyJSON_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyJSON.build/Debug-xros/SwiftyJSON.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyJSON.build/Debug-xros/SwiftyJSON.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyJSON.build/Debug-xros/SwiftyJSON.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyJSON.build/Debug-xros/SwiftyJSON.build/Objects-normal/arm64/SwiftyJSON-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling StytchB2BClient.Discovery.createOrganization+AsyncVariants.generated.swift, StytchB2BClient.Discovery.exchangeIntermediateSession+AsyncVariants.generated.swift, StytchB2BClient.Discovery.listOrganizations+AsyncVariants.generated.swift, StytchB2BClient.MagicLinks.Email.discoverySend+AsyncVariants.generated.swift, StytchB2BClient.MagicLinks.Email.inviteSend+AsyncVariants.generated.swift, StytchB2BClient.MagicLinks.Email.loginOrSignup+AsyncVariants.generated.swift, StytchB2BClient.MagicLinks.authenticate+AsyncVariants.generated.swift, StytchB2BClient.MagicLinks.discoveryAuthenticate+AsyncVariants.generated.swift, StytchB2BClient.Members.deleteFactor+AsyncVariants.generated.swift, StytchB2BClient.Members.get+AsyncVariants.generated.swift, StytchB2BClient.Members.update+AsyncVariants.generated.swift, StytchB2BClient.OAuth.Discovery.authenticate+AsyncVariants.generated.swift, StytchB2BClient.OAuth.ThirdParty.Discovery.start+AsyncVariants.generated.swift, StytchB2BClient.OAuth.ThirdParty.start+AsyncVariants.generated.swift, StytchB2BClient.OAuth.authenticate+AsyncVariants.generated.swift, StytchB2BClient.OTP.Email.Discovery.authenticate+AsyncVariants.generated.swift, StytchB2BClient.OTP.Email.Discovery.send+AsyncVariants.generated.swift, StytchB2BClient.OTP.Email.authenticate+AsyncVariants.generated.swift, StytchB2BClient.OTP.Email.loginOrSignup+AsyncVariants.generated.swift, StytchB2BClient.OTP.SMS.authenticate+AsyncVariants.generated.swift, StytchB2BClient.OTP.SMS.send+AsyncVariants.generated.swift, StytchB2BClient.Organizations.Members.create+AsyncVariants.generated.swift, StytchB2BClient.Organizations.Members.delete+AsyncVariants.generated.swift, StytchB2BClient.Organizations.Members.deleteFactor+AsyncVariants.generated.swift (in target 'StytchCore' from project 'Stytch')
SwiftCompile normal arm64 Compiling\ StytchSDKError.swift,\ Identifier.swift,\ IntermediateSessionTokenParameters.swift,\ Minutes.swift,\ OAuthProviderValues.swift,\ Path.swift,\ RBACPolicy.swift,\ Regex.swift,\ Response.swift,\ SessionToken.swift,\ StytchClientConfiguration.swift,\ StytchLocale.swift,\ Union.swift,\ Version.swift,\ StartupClient.swift,\ B2BAuthenticateResponse.swift,\ B2BMFAAuthenticateResponse.swift,\ Member.swift,\ MemberSession.swift,\ Organization.swift,\ OrganizationType.swift,\ StytchB2BClient+AuthMethod.swift,\ StytchB2BClient+Common.swift,\ StytchB2BClient+DFP.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SharedModels/Errors/StytchSDKError.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SharedModels/Identifier.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SharedModels/IntermediateSessionTokenParameters.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SharedModels/Minutes.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SharedModels/OAuthProviderValues.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SharedModels/Path.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SharedModels/RBACPolicy.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SharedModels/Regex.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SharedModels/Response.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SharedModels/SessionToken.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SharedModels/StytchClientConfiguration.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SharedModels/StytchLocale.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SharedModels/Union.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SharedModels/Version.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StartupClient.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchB2BClient/Models/B2BAuthenticateResponse.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchB2BClient/Models/B2BMFAAuthenticateResponse.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchB2BClient/Models/Member.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchB2BClient/Models/MemberSession.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchB2BClient/Models/Organization.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchB2BClient/Models/OrganizationType.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchB2BClient/StytchB2BClient+AuthMethod.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchB2BClient/StytchB2BClient+Common.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchB2BClient/StytchB2BClient+DFP.swift (in target 'StytchCore' from project 'Stytch')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SharedModels/Errors/StytchSDKError.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SharedModels/Identifier.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SharedModels/IntermediateSessionTokenParameters.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SharedModels/Minutes.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SharedModels/OAuthProviderValues.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SharedModels/Path.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SharedModels/RBACPolicy.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SharedModels/Regex.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SharedModels/Response.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SharedModels/SessionToken.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SharedModels/StytchClientConfiguration.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SharedModels/StytchLocale.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SharedModels/Union.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SharedModels/Version.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StartupClient.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchB2BClient/Models/B2BAuthenticateResponse.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchB2BClient/Models/B2BMFAAuthenticateResponse.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchB2BClient/Models/Member.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchB2BClient/Models/MemberSession.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchB2BClient/Models/Organization.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchB2BClient/Models/OrganizationType.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchB2BClient/StytchB2BClient+AuthMethod.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchB2BClient/StytchB2BClient+Common.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchB2BClient/StytchB2BClient+DFP.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ StytchB2BClient+SCIM.swift,\ StytchB2BClient+SSO+OIDC.swift,\ StytchB2BClient+SSO+OIDCConnection.swift,\ StytchB2BClient+SSO+SAML.swift,\ StytchB2BClient+SSO+SAMLConnection.swift,\ StytchB2BClient+SSO.swift,\ StytchB2BClient+SearchManager.swift,\ StytchB2BClient+Sessions.swift,\ StytchB2BClient+TOTP.swift,\ StytchB2BClient.swift,\ BaseRoute.swift,\ BiometricsRoute.swift,\ LAContextEvaluating.swift,\ LocalAuthenticationContextManager.swift,\ StytchClient+Biometrics.swift,\ CryptoWalletsRoute.swift,\ StytchClient+CryptoWallets.swift,\ StytchClient+DFP.swift,\ MagicLinksRoute.swift,\ StytchClient+MagicLinks.swift,\ StytchClient.MagicLinks+Email.swift,\ AuthenticateResponse.swift,\ Session.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchB2BClient/StytchB2BClient+SCIM/StytchB2BClient+SCIM.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchB2BClient/StytchB2BClient+SSO/StytchB2BClient+SSO+OIDC.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchB2BClient/StytchB2BClient+SSO/StytchB2BClient+SSO+OIDCConnection.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchB2BClient/StytchB2BClient+SSO/StytchB2BClient+SSO+SAML.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchB2BClient/StytchB2BClient+SSO/StytchB2BClient+SSO+SAMLConnection.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchB2BClient/StytchB2BClient+SSO/StytchB2BClient+SSO.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchB2BClient/StytchB2BClient+SearchManager.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchB2BClient/StytchB2BClient+Sessions.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchB2BClient/StytchB2BClient+TOTP.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchB2BClient/StytchB2BClient.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/BaseRoute.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/Biometrics/BiometricsRoute.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/Biometrics/LAContextEvaluating.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/Biometrics/LocalAuthenticationContextManager.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/Biometrics/StytchClient+Biometrics.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/CryptoWallets/CryptoWalletsRoute.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/CryptoWallets/StytchClient+CryptoWallets.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/DFP/StytchClient+DFP.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/MagicLinks/MagicLinksRoute.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/MagicLinks/StytchClient+MagicLinks.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/MagicLinks/StytchClient.MagicLinks+Email.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/Models/AuthenticateResponse.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/Models/Session.swift (in target 'StytchCore' from project 'Stytch')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchB2BClient/StytchB2BClient+SCIM/StytchB2BClient+SCIM.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchB2BClient/StytchB2BClient+SSO/StytchB2BClient+SSO+OIDC.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchB2BClient/StytchB2BClient+SSO/StytchB2BClient+SSO+OIDCConnection.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchB2BClient/StytchB2BClient+SSO/StytchB2BClient+SSO+SAML.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchB2BClient/StytchB2BClient+SSO/StytchB2BClient+SSO+SAMLConnection.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchB2BClient/StytchB2BClient+SSO/StytchB2BClient+SSO.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchB2BClient/StytchB2BClient+SearchManager.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchB2BClient/StytchB2BClient+Sessions.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchB2BClient/StytchB2BClient+TOTP.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchB2BClient/StytchB2BClient.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/BaseRoute.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/Biometrics/BiometricsRoute.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/Biometrics/LAContextEvaluating.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/Biometrics/LocalAuthenticationContextManager.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/Biometrics/StytchClient+Biometrics.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/CryptoWallets/CryptoWalletsRoute.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/CryptoWallets/StytchClient+CryptoWallets.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/DFP/StytchClient+DFP.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/MagicLinks/MagicLinksRoute.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/MagicLinks/StytchClient+MagicLinks.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/MagicLinks/StytchClient.MagicLinks+Email.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/Models/AuthenticateResponse.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/Models/Session.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling StytchB2BClient.Organizations.Members.reactivate+AsyncVariants.generated.swift, StytchB2BClient.Organizations.Members.update+AsyncVariants.generated.swift, StytchB2BClient.Organizations.delete+AsyncVariants.generated.swift, StytchB2BClient.Organizations.get+AsyncVariants.generated.swift, StytchB2BClient.Organizations.searchMembers+AsyncVariants.generated.swift, StytchB2BClient.Organizations.update+AsyncVariants.generated.swift, StytchB2BClient.Passwords.Discovery.authenticate+AsyncVariants.generated.swift, StytchB2BClient.Passwords.Discovery.resetByEmail+AsyncVariants.generated.swift, StytchB2BClient.Passwords.Discovery.resetByEmailStart+AsyncVariants.generated.swift, StytchB2BClient.Passwords.authenticate+AsyncVariants.generated.swift, StytchB2BClient.Passwords.resetByEmail+AsyncVariants.generated.swift, StytchB2BClient.Passwords.resetByEmailStart+AsyncVariants.generated.swift, StytchB2BClient.Passwords.resetByExistingPassword+AsyncVariants.generated.swift, StytchB2BClient.Passwords.resetBySession+AsyncVariants.generated.swift, StytchB2BClient.Passwords.strengthCheck+AsyncVariants.generated.swift, StytchB2BClient.RBAC.allPermissions+AsyncVariants.generated.swift, StytchB2BClient.RBAC.isAuthorized+AsyncVariants.generated.swift, StytchB2BClient.RecoveryCodes.get+AsyncVariants.generated.swift, StytchB2BClient.RecoveryCodes.recover+AsyncVariants.generated.swift, StytchB2BClient.RecoveryCodes.rotate+AsyncVariants.generated.swift, StytchB2BClient.SCIM.createConnection+AsyncVariants.generated.swift, StytchB2BClient.SCIM.deleteConnection+AsyncVariants.generated.swift, StytchB2BClient.SCIM.getConnection+AsyncVariants.generated.swift, StytchB2BClient.SCIM.getConnectionGroups+AsyncVariants.generated.swift (in target 'StytchCore' from project 'Stytch')
SwiftDriverJobDiscovery normal arm64 Compiling StytchB2BClient.SCIM.rotateCancel+AsyncVariants.generated.swift, StytchB2BClient.SCIM.rotateComplete+AsyncVariants.generated.swift, StytchB2BClient.SCIM.rotateStart+AsyncVariants.generated.swift, StytchB2BClient.SCIM.updateConnection+AsyncVariants.generated.swift, StytchB2BClient.SSO.OIDC.createConnection+AsyncVariants.generated.swift, StytchB2BClient.SSO.OIDC.updateConnection+AsyncVariants.generated.swift, StytchB2BClient.SSO.SAML.createConnection+AsyncVariants.generated.swift, StytchB2BClient.SSO.SAML.deleteVerificationCertificate+AsyncVariants.generated.swift, StytchB2BClient.SSO.SAML.updateConnection+AsyncVariants.generated.swift, StytchB2BClient.SSO.SAML.updateConnectionByURL+AsyncVariants.generated.swift, StytchB2BClient.SSO.authenticate+AsyncVariants.generated.swift, StytchB2BClient.SSO.deleteConnection+AsyncVariants.generated.swift, StytchB2BClient.SSO.discoverConnections+AsyncVariants.generated.swift, StytchB2BClient.SSO.getConnections+AsyncVariants.generated.swift, StytchB2BClient.SSO.start+AsyncVariants.generated.swift, StytchB2BClient.SearchManager.searchMember+AsyncVariants.generated.swift, StytchB2BClient.SearchManager.searchOrganization+AsyncVariants.generated.swift, StytchB2BClient.Sessions.attest+AsyncVariants.generated.swift, StytchB2BClient.Sessions.authenticate+AsyncVariants.generated.swift, StytchB2BClient.Sessions.exchange+AsyncVariants.generated.swift, StytchB2BClient.Sessions.revoke+AsyncVariants.generated.swift, StytchB2BClient.TOTP.authenticate+AsyncVariants.generated.swift, StytchB2BClient.TOTP.create+AsyncVariants.generated.swift, StytchB2BClient.handle+AsyncVariants.generated.swift (in target 'StytchCore' from project 'Stytch')
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/SwiftyJSON.o normal (in target 'SwiftyJSON' from project 'SwiftyJSON')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftyJSON
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-xros1.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk -O0 -w -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-xros -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-xros -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyJSON.build/Debug-xros/SwiftyJSON.build/Objects-normal/arm64/SwiftyJSON.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyJSON.build/Debug-xros/SwiftyJSON.build/Objects-normal/arm64/SwiftyJSON_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyJSON.build/Debug-xros/SwiftyJSON.build/Objects-normal/arm64/SwiftyJSON_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/xros -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyJSON.build/Debug-xros/SwiftyJSON.build/Objects-normal/arm64/SwiftyJSON.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/SwiftyJSON.o
SwiftDriverJobDiscovery normal arm64 Compiling StytchClient.Biometrics.authenticate+AsyncVariants.generated.swift, StytchClient.Biometrics.register+AsyncVariants.generated.swift, StytchClient.Biometrics.removeRegistration+AsyncVariants.generated.swift, StytchClient.CryptoWallets.authenticate+AsyncVariants.generated.swift, StytchClient.CryptoWallets.authenticateStart+AsyncVariants.generated.swift, StytchClient.DFP.getTelemetryID+AsyncVariants.generated.swift, StytchClient.MagicLinks.Email.loginOrCreate+AsyncVariants.generated.swift, StytchClient.MagicLinks.Email.send+AsyncVariants.generated.swift, StytchClient.MagicLinks.authenticate+AsyncVariants.generated.swift, StytchClient.OAuth.Apple.start+AsyncVariants.generated.swift, StytchClient.OAuth.ThirdParty.start+AsyncVariants.generated.swift, StytchClient.OAuth.attach+AsyncVariants.generated.swift, StytchClient.OAuth.authenticate+AsyncVariants.generated.swift, StytchClient.OTP.authenticate+AsyncVariants.generated.swift, StytchClient.OTP.loginOrCreate+AsyncVariants.generated.swift, StytchClient.OTP.send+AsyncVariants.generated.swift, StytchClient.Passkeys.authenticate+AsyncVariants.generated.swift, StytchClient.Passkeys.register+AsyncVariants.generated.swift, StytchClient.Passkeys.update+AsyncVariants.generated.swift, StytchClient.Passwords.authenticate+AsyncVariants.generated.swift, StytchClient.Passwords.create+AsyncVariants.generated.swift, StytchClient.Passwords.resetByEmail+AsyncVariants.generated.swift, StytchClient.Passwords.resetByEmailStart+AsyncVariants.generated.swift, StytchClient.Passwords.resetByExistingPassword+AsyncVariants.generated.swift (in target 'StytchCore' from project 'Stytch')
ExtractAppIntentsMetadata (in target 'SwiftyJSON' from project 'SwiftyJSON')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftyJSON
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name SwiftyJSON --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk --xcode-version 16E140 --platform-family xrOS --deployment-target 1.0 --bundle-identifier swiftyjson.SwiftyJSON --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/SwiftyJSON.appintents --target-triple arm64-apple-xros1.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/SwiftyJSON.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyJSON.build/Debug-xros/SwiftyJSON.build/Objects-normal/arm64/SwiftyJSON_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyJSON.build/Debug-xros/SwiftyJSON.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyJSON.build/Debug-xros/SwiftyJSON.build/Objects-normal/arm64/SwiftyJSON.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyJSON.build/Debug-xros/SwiftyJSON.build/SwiftyJSON.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyJSON.build/Debug-xros/SwiftyJSON.build/SwiftyJSON.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyJSON.build/Debug-xros/SwiftyJSON.build/Objects-normal/arm64/SwiftyJSON.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2026-02-25 19:13:56.045 appintentsmetadataprocessor[974:5282] Starting appintentsmetadataprocessor export
2026-02-25 19:13:56.101 appintentsmetadataprocessor[974:5282] Extracted no relevant App Intents symbols, skipping writing output
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/SwiftyJSON.o (in target 'SwiftyJSON' from project 'SwiftyJSON')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftyJSON
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/SwiftyJSON.o
SwiftDriverJobDiscovery normal arm64 Compiling StytchClient.Passwords.resetBySession+AsyncVariants.generated.swift, StytchClient.Passwords.strengthCheck+AsyncVariants.generated.swift, StytchClient.Sessions.attest+AsyncVariants.generated.swift, StytchClient.Sessions.authenticate+AsyncVariants.generated.swift, StytchClient.Sessions.revoke+AsyncVariants.generated.swift, StytchClient.TOTP.authenticate+AsyncVariants.generated.swift, StytchClient.TOTP.create+AsyncVariants.generated.swift, StytchClient.TOTP.recover+AsyncVariants.generated.swift, StytchClient.TOTP.recoveryCodes+AsyncVariants.generated.swift, StytchClient.UserManagement.deleteFactor+AsyncVariants.generated.swift, StytchClient.UserManagement.get+AsyncVariants.generated.swift, StytchClient.UserManagement.searchUser+AsyncVariants.generated.swift, StytchClient.UserManagement.update+AsyncVariants.generated.swift, StytchClient.handle+AsyncVariants.generated.swift, KeychainClient.swift, KeychainClientImplementation.swift, KeychainItem.swift, KeychainMigration.swift, KeychainMigration1.swift, KeychainMigration2.swift, KeychainMigration3.swift, KeychainMigration4.swift, LocalStorage.swift, NetworkMonitor.swift (in target 'StytchCore' from project 'Stytch')
** BUILD FAILED **
The following build commands failed:
	SwiftCompile normal arm64 Compiling\ NetworkRequestHandler.swift,\ NetworkingClient.swift,\ NetworkingRouter.swift,\ ObjectStorage.swift,\ CodeChallengedParameters.swift,\ CodeVerifierParameters.swift,\ PKCEPairManager.swift,\ PasskeysClient+Live.swift,\ PasskeysClient.swift,\ PollingClient+Live.swift,\ PollingClient.swift,\ SessionManager.swift,\ AuthenticationFactor.swift,\ BootstrapResponse.swift,\ ClientInfo+Version.swift,\ ClientInfo.swift,\ ClientType.swift,\ Completion.swift,\ DataContainer.swift,\ DeeplinkHandledStatus.swift,\ DeviceHistory.swift,\ StytchAPIError.swift,\ StytchAPIErrorType.swift,\ StytchError.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Networking/NetworkRequestHandler.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Networking/NetworkingClient.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Networking/NetworkingRouter.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/ObjectStorage.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/PKCE/CodeChallengedParameters.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/PKCE/CodeVerifierParameters.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/PKCE/PKCEPairManager.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/PasskeysClient/PasskeysClient+Live.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/PasskeysClient/PasskeysClient.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/PollingClient/PollingClient+Live.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/PollingClient/PollingClient.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SessionManager.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SharedModels/AuthenticationFactor.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SharedModels/BootstrapResponse.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SharedModels/ClientInfo+Version.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SharedModels/ClientInfo.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SharedModels/ClientType.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SharedModels/Completion.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SharedModels/DataContainer.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SharedModels/DeeplinkHandledStatus.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SharedModels/DeviceHistory.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SharedModels/Errors/StytchAPIError.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SharedModels/Errors/StytchAPIErrorType.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SharedModels/Errors/StytchError.swift (in target 'StytchCore' from project 'Stytch')
	SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SharedModels/ClientInfo.swift (in target 'StytchCore' from project 'Stytch')
	Building workspace spi-builder-workspace with scheme StytchCore
(3 failures)
Command line invocation:
    /Applications/Xcode-16.3.0.app/Contents/Developer/usr/bin/xcodebuild -IDEClonedSourcePackagesDirPathOverride=/Users/admin/builder/spi-builder-workspace/.dependencies -resolvePackageDependencies
Resolve Package Graph
Resolved source packages:
  InteropForGoogle: https://github.com/google/interop-ios-for-google-sdks.git @ 101.0.0
  Stytch: /Users/admin/builder/spi-builder-workspace
  SwiftyJSON: https://github.com/SwiftyJSON/SwiftyJSON.git @ 5.0.2
  PhoneNumberKit: https://github.com/marmelroy/PhoneNumberKit @ 4.2.5
  StytchDFP: https://github.com/stytchauth/stytch-ios-dfp.git @ 1.0.5
  RecaptchaEnterprise: https://github.com/GoogleCloudPlatform/recaptcha-enterprise-mobile-sdk @ 18.8.2
resolved source packages: InteropForGoogle, Stytch, SwiftyJSON, PhoneNumberKit, StytchDFP, RecaptchaEnterprise
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme StytchCore -destination generic/platform=xrOS
Command line invocation:
    /Applications/Xcode-16.3.0.app/Contents/Developer/usr/bin/xcodebuild -IDEClonedSourcePackagesDirPathOverride=/Users/admin/builder/spi-builder-workspace/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath /Users/admin/builder/spi-builder-workspace/.derivedData build -scheme StytchCore -destination generic/platform=xrOS
Resolve Package Graph
Resolved source packages:
  RecaptchaEnterprise: https://github.com/GoogleCloudPlatform/recaptcha-enterprise-mobile-sdk @ 18.8.2
  PhoneNumberKit: https://github.com/marmelroy/PhoneNumberKit @ 4.2.5
  Stytch: /Users/admin/builder/spi-builder-workspace
  SwiftyJSON: https://github.com/SwiftyJSON/SwiftyJSON.git @ 5.0.2
  InteropForGoogle: https://github.com/google/interop-ios-for-google-sdks.git @ 101.0.0
  StytchDFP: https://github.com/stytchauth/stytch-ios-dfp.git @ 1.0.5
ComputePackagePrebuildTargetDependencyGraph
Prepare packages
CreateBuildRequest
SendProjectDescription
CreateBuildOperation
ComputeTargetDependencyGraph
note: Building targets in dependency order
note: Target dependency graph (6 targets)
    Target 'StytchCore' in project 'Stytch'
        ➜ Explicit dependency on target 'StytchCore' in project 'Stytch'
        ➜ Explicit dependency on target 'Stytch_StytchCore' in project 'Stytch'
        ➜ Explicit dependency on target 'SwiftyJSON' in project 'SwiftyJSON'
    Target 'StytchCore' in project 'Stytch'
        ➜ Explicit dependency on target 'Stytch_StytchCore' in project 'Stytch'
        ➜ Explicit dependency on target 'SwiftyJSON' in project 'SwiftyJSON'
    Target 'SwiftyJSON' in project 'SwiftyJSON'
        ➜ Explicit dependency on target 'SwiftyJSON' in project 'SwiftyJSON'
        ➜ Explicit dependency on target 'SwiftyJSON_SwiftyJSON' in project 'SwiftyJSON'
    Target 'SwiftyJSON' in project 'SwiftyJSON'
        ➜ Explicit dependency on target 'SwiftyJSON_SwiftyJSON' in project 'SwiftyJSON'
    Target 'SwiftyJSON_SwiftyJSON' in project 'SwiftyJSON' (no dependencies)
    Target 'Stytch_StytchCore' in project 'Stytch' (no dependencies)
GatherProvisioningInputs
CreateBuildDescription
ExecuteExternalTool /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc --version
ExecuteExternalTool /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -v -E -dM -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk -x c -c /dev/null
ExecuteExternalTool /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld -version_details
ReadFileContents /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/share/docc/features.json
Build description signature: f7337fc3c68e22e7d2972ecedcd3e11b
Build description path: /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XCBuildData/f7337fc3c68e22e7d2972ecedcd3e11b.xcbuilddata
ClangStatCache /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang-stat-cache /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros2.4-22O233-407b76dbb837030756cbe1ab3f0b01b6.sdkstatcache
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang-stat-cache /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk -o /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros2.4-22O233-407b76dbb837030756cbe1ab3f0b01b6.sdkstatcache
ProcessInfoPlistFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/SwiftyJSON_SwiftyJSON.bundle/Info.plist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyJSON.build/Debug-xros/SwiftyJSON_SwiftyJSON.build/empty-SwiftyJSON_SwiftyJSON.plist (in target 'SwiftyJSON_SwiftyJSON' from project 'SwiftyJSON')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftyJSON
    builtin-infoPlistUtility /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyJSON.build/Debug-xros/SwiftyJSON_SwiftyJSON.build/empty-SwiftyJSON_SwiftyJSON.plist -producttype com.apple.product-type.bundle -expandbuildsettings -format binary -platform xros -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/SwiftyJSON_SwiftyJSON.bundle/Info.plist
ProcessInfoPlistFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/Stytch_StytchCore.bundle/Info.plist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Stytch.build/Debug-xros/Stytch_StytchCore.build/empty-Stytch_StytchCore.plist (in target 'Stytch_StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-infoPlistUtility /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Stytch.build/Debug-xros/Stytch_StytchCore.build/empty-Stytch_StytchCore.plist -producttype com.apple.product-type.bundle -expandbuildsettings -format binary -platform xros -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/Stytch_StytchCore.bundle/Info.plist
SwiftDriver SwiftyJSON normal arm64 com.apple.xcode.tools.swift.compiler (in target 'SwiftyJSON' from project 'SwiftyJSON')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-SwiftDriver -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name SwiftyJSON -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyJSON.build/Debug-xros/SwiftyJSON.build/Objects-normal/arm64/SwiftyJSON.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -DXcode -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk -target arm64-apple-xros1.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -suppress-warnings -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros2.4-22O233-407b76dbb837030756cbe1ab3f0b01b6.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyJSON.build/Debug-xros/SwiftyJSON.build/Objects-normal/arm64/SwiftyJSON-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyJSON.build/Debug-xros/SwiftyJSON.build/Objects-normal/arm64/SwiftyJSON.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyJSON.build/Debug-xros/SwiftyJSON.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyJSON.build/Debug-xros/SwiftyJSON.build/Objects-normal/arm64/SwiftyJSON_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyJSON.build/Debug-xros/SwiftyJSON.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyJSON.build/Debug-xros/SwiftyJSON.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyJSON.build/Debug-xros/SwiftyJSON.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyJSON.build/Debug-xros/SwiftyJSON.build/Objects-normal/arm64/SwiftyJSON-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftEmitModule normal arm64 Emitting\ module\ for\ SwiftyJSON (in target 'SwiftyJSON' from project 'SwiftyJSON')
EmitSwiftModule normal arm64 (in target 'SwiftyJSON' from project 'SwiftyJSON')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ SwiftyJSON.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftyJSON/Source/SwiftyJSON/SwiftyJSON.swift (in target 'SwiftyJSON' from project 'SwiftyJSON')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftyJSON/Source/SwiftyJSON/SwiftyJSON.swift (in target 'SwiftyJSON' from project 'SwiftyJSON')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ resource_bundle_accessor.swift /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyJSON.build/Debug-xros/SwiftyJSON.build/DerivedSources/resource_bundle_accessor.swift (in target 'SwiftyJSON' from project 'SwiftyJSON')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyJSON.build/Debug-xros/SwiftyJSON.build/DerivedSources/resource_bundle_accessor.swift (in target 'SwiftyJSON' from project 'SwiftyJSON')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling resource_bundle_accessor.swift (in target 'SwiftyJSON' from project 'SwiftyJSON')
SwiftDriverJobDiscovery normal arm64 Emitting module for SwiftyJSON (in target 'SwiftyJSON' from project 'SwiftyJSON')
SwiftDriver\ Compilation\ Requirements SwiftyJSON normal arm64 com.apple.xcode.tools.swift.compiler (in target 'SwiftyJSON' from project 'SwiftyJSON')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name SwiftyJSON -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyJSON.build/Debug-xros/SwiftyJSON.build/Objects-normal/arm64/SwiftyJSON.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -DXcode -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk -target arm64-apple-xros1.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -suppress-warnings -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros2.4-22O233-407b76dbb837030756cbe1ab3f0b01b6.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyJSON.build/Debug-xros/SwiftyJSON.build/Objects-normal/arm64/SwiftyJSON-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyJSON.build/Debug-xros/SwiftyJSON.build/Objects-normal/arm64/SwiftyJSON.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyJSON.build/Debug-xros/SwiftyJSON.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyJSON.build/Debug-xros/SwiftyJSON.build/Objects-normal/arm64/SwiftyJSON_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyJSON.build/Debug-xros/SwiftyJSON.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyJSON.build/Debug-xros/SwiftyJSON.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyJSON.build/Debug-xros/SwiftyJSON.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyJSON.build/Debug-xros/SwiftyJSON.build/Objects-normal/arm64/SwiftyJSON-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/SwiftyJSON.swiftmodule/arm64-apple-xros.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyJSON.build/Debug-xros/SwiftyJSON.build/Objects-normal/arm64/SwiftyJSON.abi.json (in target 'SwiftyJSON' from project 'SwiftyJSON')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftyJSON
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyJSON.build/Debug-xros/SwiftyJSON.build/Objects-normal/arm64/SwiftyJSON.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/SwiftyJSON.swiftmodule/arm64-apple-xros.abi.json
SwiftDriver StytchCore normal arm64 com.apple.xcode.tools.swift.compiler (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-SwiftDriver -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name StytchCore -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Stytch.build/Debug-xros/StytchCore.build/Objects-normal/arm64/StytchCore.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -DXcode -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk -target arm64-apple-xros1.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros2.4-22O233-407b76dbb837030756cbe1ab3f0b01b6.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Stytch.build/Debug-xros/StytchCore.build/Objects-normal/arm64/StytchCore-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Stytch.build/Debug-xros/StytchCore.build/Objects-normal/arm64/StytchCore.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Stytch.build/Debug-xros/StytchCore.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Stytch.build/Debug-xros/StytchCore.build/Objects-normal/arm64/StytchCore_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Stytch.build/Debug-xros/StytchCore.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Stytch.build/Debug-xros/StytchCore.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Stytch.build/Debug-xros/StytchCore.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Stytch.build/Debug-xros/StytchCore.build/Objects-normal/arm64/StytchCore-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftCompile normal arm64 Compiling\ StytchB2BClient.Organizations.Members.reactivate+AsyncVariants.generated.swift,\ StytchB2BClient.Organizations.Members.update+AsyncVariants.generated.swift,\ StytchB2BClient.Organizations.delete+AsyncVariants.generated.swift,\ StytchB2BClient.Organizations.get+AsyncVariants.generated.swift,\ StytchB2BClient.Organizations.searchMembers+AsyncVariants.generated.swift,\ StytchB2BClient.Organizations.update+AsyncVariants.generated.swift,\ StytchB2BClient.Passwords.Discovery.authenticate+AsyncVariants.generated.swift,\ StytchB2BClient.Passwords.Discovery.resetByEmail+AsyncVariants.generated.swift,\ StytchB2BClient.Passwords.Discovery.resetByEmailStart+AsyncVariants.generated.swift,\ StytchB2BClient.Passwords.authenticate+AsyncVariants.generated.swift,\ StytchB2BClient.Passwords.resetByEmail+AsyncVariants.generated.swift,\ StytchB2BClient.Passwords.resetByEmailStart+AsyncVariants.generated.swift,\ StytchB2BClient.Passwords.resetByExistingPassword+AsyncVariants.generated.swift,\ StytchB2BClient.Passwords.resetBySession+AsyncVariants.generated.swift,\ StytchB2BClient.Passwords.strengthCheck+AsyncVariants.generated.swift,\ StytchB2BClient.RBAC.allPermissions+AsyncVariants.generated.swift,\ StytchB2BClient.RBAC.isAuthorized+AsyncVariants.generated.swift,\ StytchB2BClient.RecoveryCodes.get+AsyncVariants.generated.swift,\ StytchB2BClient.RecoveryCodes.recover+AsyncVariants.generated.swift,\ StytchB2BClient.RecoveryCodes.rotate+AsyncVariants.generated.swift,\ StytchB2BClient.SCIM.createConnection+AsyncVariants.generated.swift,\ StytchB2BClient.SCIM.deleteConnection+AsyncVariants.generated.swift,\ StytchB2BClient.SCIM.getConnection+AsyncVariants.generated.swift,\ StytchB2BClient.SCIM.getConnectionGroups+AsyncVariants.generated.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.Organizations.Members.reactivate+AsyncVariants.generated.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.Organizations.Members.update+AsyncVariants.generated.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.Organizations.delete+AsyncVariants.generated.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.Organizations.get+AsyncVariants.generated.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.Organizations.searchMembers+AsyncVariants.generated.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.Organizations.update+AsyncVariants.generated.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.Passwords.Discovery.authenticate+AsyncVariants.generated.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.Passwords.Discovery.resetByEmail+AsyncVariants.generated.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.Passwords.Discovery.resetByEmailStart+AsyncVariants.generated.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.Passwords.authenticate+AsyncVariants.generated.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.Passwords.resetByEmail+AsyncVariants.generated.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.Passwords.resetByEmailStart+AsyncVariants.generated.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.Passwords.resetByExistingPassword+AsyncVariants.generated.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.Passwords.resetBySession+AsyncVariants.generated.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.Passwords.strengthCheck+AsyncVariants.generated.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.RBAC.allPermissions+AsyncVariants.generated.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.RBAC.isAuthorized+AsyncVariants.generated.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.RecoveryCodes.get+AsyncVariants.generated.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.RecoveryCodes.recover+AsyncVariants.generated.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.RecoveryCodes.rotate+AsyncVariants.generated.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.SCIM.createConnection+AsyncVariants.generated.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.SCIM.deleteConnection+AsyncVariants.generated.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.SCIM.getConnection+AsyncVariants.generated.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.SCIM.getConnectionGroups+AsyncVariants.generated.swift (in target 'StytchCore' from project 'Stytch')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.Organizations.Members.reactivate+AsyncVariants.generated.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.Organizations.Members.update+AsyncVariants.generated.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.Organizations.delete+AsyncVariants.generated.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.Organizations.get+AsyncVariants.generated.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.Organizations.searchMembers+AsyncVariants.generated.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.Organizations.update+AsyncVariants.generated.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.Passwords.Discovery.authenticate+AsyncVariants.generated.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.Passwords.Discovery.resetByEmail+AsyncVariants.generated.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.Passwords.Discovery.resetByEmailStart+AsyncVariants.generated.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.Passwords.authenticate+AsyncVariants.generated.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.Passwords.resetByEmail+AsyncVariants.generated.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.Passwords.resetByEmailStart+AsyncVariants.generated.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.Passwords.resetByExistingPassword+AsyncVariants.generated.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.Passwords.resetBySession+AsyncVariants.generated.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.Passwords.strengthCheck+AsyncVariants.generated.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.RBAC.allPermissions+AsyncVariants.generated.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.RBAC.isAuthorized+AsyncVariants.generated.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.RecoveryCodes.get+AsyncVariants.generated.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.RecoveryCodes.recover+AsyncVariants.generated.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.RecoveryCodes.rotate+AsyncVariants.generated.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.SCIM.createConnection+AsyncVariants.generated.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.SCIM.deleteConnection+AsyncVariants.generated.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.SCIM.getConnection+AsyncVariants.generated.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.SCIM.getConnectionGroups+AsyncVariants.generated.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ StytchB2BClient.Discovery.createOrganization+AsyncVariants.generated.swift,\ StytchB2BClient.Discovery.exchangeIntermediateSession+AsyncVariants.generated.swift,\ StytchB2BClient.Discovery.listOrganizations+AsyncVariants.generated.swift,\ StytchB2BClient.MagicLinks.Email.discoverySend+AsyncVariants.generated.swift,\ StytchB2BClient.MagicLinks.Email.inviteSend+AsyncVariants.generated.swift,\ StytchB2BClient.MagicLinks.Email.loginOrSignup+AsyncVariants.generated.swift,\ StytchB2BClient.MagicLinks.authenticate+AsyncVariants.generated.swift,\ StytchB2BClient.MagicLinks.discoveryAuthenticate+AsyncVariants.generated.swift,\ StytchB2BClient.Members.deleteFactor+AsyncVariants.generated.swift,\ StytchB2BClient.Members.get+AsyncVariants.generated.swift,\ StytchB2BClient.Members.update+AsyncVariants.generated.swift,\ StytchB2BClient.OAuth.Discovery.authenticate+AsyncVariants.generated.swift,\ StytchB2BClient.OAuth.ThirdParty.Discovery.start+AsyncVariants.generated.swift,\ StytchB2BClient.OAuth.ThirdParty.start+AsyncVariants.generated.swift,\ StytchB2BClient.OAuth.authenticate+AsyncVariants.generated.swift,\ StytchB2BClient.OTP.Email.Discovery.authenticate+AsyncVariants.generated.swift,\ StytchB2BClient.OTP.Email.Discovery.send+AsyncVariants.generated.swift,\ StytchB2BClient.OTP.Email.authenticate+AsyncVariants.generated.swift,\ StytchB2BClient.OTP.Email.loginOrSignup+AsyncVariants.generated.swift,\ StytchB2BClient.OTP.SMS.authenticate+AsyncVariants.generated.swift,\ StytchB2BClient.OTP.SMS.send+AsyncVariants.generated.swift,\ StytchB2BClient.Organizations.Members.create+AsyncVariants.generated.swift,\ StytchB2BClient.Organizations.Members.delete+AsyncVariants.generated.swift,\ StytchB2BClient.Organizations.Members.deleteFactor+AsyncVariants.generated.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.Discovery.createOrganization+AsyncVariants.generated.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.Discovery.exchangeIntermediateSession+AsyncVariants.generated.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.Discovery.listOrganizations+AsyncVariants.generated.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.MagicLinks.Email.discoverySend+AsyncVariants.generated.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.MagicLinks.Email.inviteSend+AsyncVariants.generated.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.MagicLinks.Email.loginOrSignup+AsyncVariants.generated.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.MagicLinks.authenticate+AsyncVariants.generated.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.MagicLinks.discoveryAuthenticate+AsyncVariants.generated.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.Members.deleteFactor+AsyncVariants.generated.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.Members.get+AsyncVariants.generated.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.Members.update+AsyncVariants.generated.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.OAuth.Discovery.authenticate+AsyncVariants.generated.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.OAuth.ThirdParty.Discovery.start+AsyncVariants.generated.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.OAuth.ThirdParty.start+AsyncVariants.generated.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.OAuth.authenticate+AsyncVariants.generated.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.OTP.Email.Discovery.authenticate+AsyncVariants.generated.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.OTP.Email.Discovery.send+AsyncVariants.generated.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.OTP.Email.authenticate+AsyncVariants.generated.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.OTP.Email.loginOrSignup+AsyncVariants.generated.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.OTP.SMS.authenticate+AsyncVariants.generated.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.OTP.SMS.send+AsyncVariants.generated.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.Organizations.Members.create+AsyncVariants.generated.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.Organizations.Members.delete+AsyncVariants.generated.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.Organizations.Members.deleteFactor+AsyncVariants.generated.swift (in target 'StytchCore' from project 'Stytch')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.Discovery.createOrganization+AsyncVariants.generated.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.Discovery.exchangeIntermediateSession+AsyncVariants.generated.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.Discovery.listOrganizations+AsyncVariants.generated.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.MagicLinks.Email.discoverySend+AsyncVariants.generated.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.MagicLinks.Email.inviteSend+AsyncVariants.generated.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.MagicLinks.Email.loginOrSignup+AsyncVariants.generated.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.MagicLinks.authenticate+AsyncVariants.generated.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.MagicLinks.discoveryAuthenticate+AsyncVariants.generated.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.Members.deleteFactor+AsyncVariants.generated.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.Members.get+AsyncVariants.generated.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.Members.update+AsyncVariants.generated.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.OAuth.Discovery.authenticate+AsyncVariants.generated.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.OAuth.ThirdParty.Discovery.start+AsyncVariants.generated.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.OAuth.ThirdParty.start+AsyncVariants.generated.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.OAuth.authenticate+AsyncVariants.generated.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.OTP.Email.Discovery.authenticate+AsyncVariants.generated.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.OTP.Email.Discovery.send+AsyncVariants.generated.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.OTP.Email.authenticate+AsyncVariants.generated.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.OTP.Email.loginOrSignup+AsyncVariants.generated.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.OTP.SMS.authenticate+AsyncVariants.generated.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.OTP.SMS.send+AsyncVariants.generated.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.Organizations.Members.create+AsyncVariants.generated.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.Organizations.Members.delete+AsyncVariants.generated.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.Organizations.Members.deleteFactor+AsyncVariants.generated.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ resource_bundle_accessor.swift,\ AppleOAuthClient+Live.swift,\ AppleOAuthClient.swift,\ CaptchaClient.swift,\ CryptoClient+Live.swift,\ CryptoClient.swift,\ DFPClient.swift,\ Dependency.swift,\ EncryptedUserDefaultsClient.swift,\ EncryptedUserDefaultsClientImplementation.swift,\ EncryptedUserDefaultsItem.swift,\ Environment.swift,\ EventsClient.swift,\ CFError+Stytch.swift,\ Codable+Stytch.swift,\ Data+Stytch.swift,\ Dictionary+Stytch.swift,\ Error+StytchErrorInfo.swift,\ NSLock+Stytch.swift,\ Sequence+Stytch.swift,\ String+Stytch.swift,\ URL+Stytch.swift,\ URLComponents+Stytch.swift,\ StytchB2BClient.DFP.getTelemetryID+AsyncVariants.generated.swift /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Stytch.build/Debug-xros/StytchCore.build/DerivedSources/resource_bundle_accessor.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/AppleOAuthClient/AppleOAuthClient+Live.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/AppleOAuthClient/AppleOAuthClient.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/CaptchaClient.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/CryptoClient/CryptoClient+Live.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/CryptoClient/CryptoClient.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/DFPClient.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Dependency.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/EncryptedUserDefaultsClient/EncryptedUserDefaultsClient.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/EncryptedUserDefaultsClient/EncryptedUserDefaultsClientImplementation.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/EncryptedUserDefaultsClient/EncryptedUserDefaultsItem.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Environment.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/EventsClient.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Extensions/CFError+Stytch.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Extensions/Codable+Stytch.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Extensions/Data+Stytch.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Extensions/Dictionary+Stytch.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Extensions/Error+StytchErrorInfo.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Extensions/NSLock+Stytch.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Extensions/Sequence+Stytch.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Extensions/String+Stytch.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Extensions/URL+Stytch.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Extensions/URLComponents+Stytch.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.DFP.getTelemetryID+AsyncVariants.generated.swift (in target 'StytchCore' from project 'Stytch')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Stytch.build/Debug-xros/StytchCore.build/DerivedSources/resource_bundle_accessor.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/AppleOAuthClient/AppleOAuthClient+Live.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/AppleOAuthClient/AppleOAuthClient.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/CaptchaClient.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/CryptoClient/CryptoClient+Live.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/CryptoClient/CryptoClient.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/DFPClient.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Dependency.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/EncryptedUserDefaultsClient/EncryptedUserDefaultsClient.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/EncryptedUserDefaultsClient/EncryptedUserDefaultsClientImplementation.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/EncryptedUserDefaultsClient/EncryptedUserDefaultsItem.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Environment.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/EventsClient.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Extensions/CFError+Stytch.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Extensions/Codable+Stytch.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Extensions/Data+Stytch.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Extensions/Dictionary+Stytch.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Extensions/Error+StytchErrorInfo.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Extensions/NSLock+Stytch.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Extensions/Sequence+Stytch.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Extensions/String+Stytch.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Extensions/URL+Stytch.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Extensions/URLComponents+Stytch.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.DFP.getTelemetryID+AsyncVariants.generated.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ StytchB2BClient.SCIM.rotateCancel+AsyncVariants.generated.swift,\ StytchB2BClient.SCIM.rotateComplete+AsyncVariants.generated.swift,\ StytchB2BClient.SCIM.rotateStart+AsyncVariants.generated.swift,\ StytchB2BClient.SCIM.updateConnection+AsyncVariants.generated.swift,\ StytchB2BClient.SSO.OIDC.createConnection+AsyncVariants.generated.swift,\ StytchB2BClient.SSO.OIDC.updateConnection+AsyncVariants.generated.swift,\ StytchB2BClient.SSO.SAML.createConnection+AsyncVariants.generated.swift,\ StytchB2BClient.SSO.SAML.deleteVerificationCertificate+AsyncVariants.generated.swift,\ StytchB2BClient.SSO.SAML.updateConnection+AsyncVariants.generated.swift,\ StytchB2BClient.SSO.SAML.updateConnectionByURL+AsyncVariants.generated.swift,\ StytchB2BClient.SSO.authenticate+AsyncVariants.generated.swift,\ StytchB2BClient.SSO.deleteConnection+AsyncVariants.generated.swift,\ StytchB2BClient.SSO.discoverConnections+AsyncVariants.generated.swift,\ StytchB2BClient.SSO.getConnections+AsyncVariants.generated.swift,\ StytchB2BClient.SSO.start+AsyncVariants.generated.swift,\ StytchB2BClient.SearchManager.searchMember+AsyncVariants.generated.swift,\ StytchB2BClient.SearchManager.searchOrganization+AsyncVariants.generated.swift,\ StytchB2BClient.Sessions.attest+AsyncVariants.generated.swift,\ StytchB2BClient.Sessions.authenticate+AsyncVariants.generated.swift,\ StytchB2BClient.Sessions.exchange+AsyncVariants.generated.swift,\ StytchB2BClient.Sessions.revoke+AsyncVariants.generated.swift,\ StytchB2BClient.TOTP.authenticate+AsyncVariants.generated.swift,\ StytchB2BClient.TOTP.create+AsyncVariants.generated.swift,\ StytchB2BClient.handle+AsyncVariants.generated.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.SCIM.rotateCancel+AsyncVariants.generated.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.SCIM.rotateComplete+AsyncVariants.generated.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.SCIM.rotateStart+AsyncVariants.generated.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.SCIM.updateConnection+AsyncVariants.generated.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.SSO.OIDC.createConnection+AsyncVariants.generated.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.SSO.OIDC.updateConnection+AsyncVariants.generated.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.SSO.SAML.createConnection+AsyncVariants.generated.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.SSO.SAML.deleteVerificationCertificate+AsyncVariants.generated.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.SSO.SAML.updateConnection+AsyncVariants.generated.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.SSO.SAML.updateConnectionByURL+AsyncVariants.generated.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.SSO.authenticate+AsyncVariants.generated.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.SSO.deleteConnection+AsyncVariants.generated.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.SSO.discoverConnections+AsyncVariants.generated.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.SSO.getConnections+AsyncVariants.generated.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.SSO.start+AsyncVariants.generated.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.SearchManager.searchMember+AsyncVariants.generated.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.SearchManager.searchOrganization+AsyncVariants.generated.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.Sessions.attest+AsyncVariants.generated.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.Sessions.authenticate+AsyncVariants.generated.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.Sessions.exchange+AsyncVariants.generated.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.Sessions.revoke+AsyncVariants.generated.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.TOTP.authenticate+AsyncVariants.generated.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.TOTP.create+AsyncVariants.generated.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.handle+AsyncVariants.generated.swift (in target 'StytchCore' from project 'Stytch')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.SCIM.rotateCancel+AsyncVariants.generated.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.SCIM.rotateComplete+AsyncVariants.generated.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.SCIM.rotateStart+AsyncVariants.generated.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.SCIM.updateConnection+AsyncVariants.generated.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.SSO.OIDC.createConnection+AsyncVariants.generated.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.SSO.OIDC.updateConnection+AsyncVariants.generated.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.SSO.SAML.createConnection+AsyncVariants.generated.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.SSO.SAML.deleteVerificationCertificate+AsyncVariants.generated.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.SSO.SAML.updateConnection+AsyncVariants.generated.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.SSO.SAML.updateConnectionByURL+AsyncVariants.generated.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.SSO.authenticate+AsyncVariants.generated.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.SSO.deleteConnection+AsyncVariants.generated.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.SSO.discoverConnections+AsyncVariants.generated.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.SSO.getConnections+AsyncVariants.generated.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.SSO.start+AsyncVariants.generated.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.SearchManager.searchMember+AsyncVariants.generated.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.SearchManager.searchOrganization+AsyncVariants.generated.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.Sessions.attest+AsyncVariants.generated.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.Sessions.authenticate+AsyncVariants.generated.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.Sessions.exchange+AsyncVariants.generated.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.Sessions.revoke+AsyncVariants.generated.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.TOTP.authenticate+AsyncVariants.generated.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.TOTP.create+AsyncVariants.generated.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.handle+AsyncVariants.generated.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ StytchClient.Biometrics.authenticate+AsyncVariants.generated.swift,\ StytchClient.Biometrics.register+AsyncVariants.generated.swift,\ StytchClient.Biometrics.removeRegistration+AsyncVariants.generated.swift,\ StytchClient.CryptoWallets.authenticate+AsyncVariants.generated.swift,\ StytchClient.CryptoWallets.authenticateStart+AsyncVariants.generated.swift,\ StytchClient.DFP.getTelemetryID+AsyncVariants.generated.swift,\ StytchClient.MagicLinks.Email.loginOrCreate+AsyncVariants.generated.swift,\ StytchClient.MagicLinks.Email.send+AsyncVariants.generated.swift,\ StytchClient.MagicLinks.authenticate+AsyncVariants.generated.swift,\ StytchClient.OAuth.Apple.start+AsyncVariants.generated.swift,\ StytchClient.OAuth.ThirdParty.start+AsyncVariants.generated.swift,\ StytchClient.OAuth.attach+AsyncVariants.generated.swift,\ StytchClient.OAuth.authenticate+AsyncVariants.generated.swift,\ StytchClient.OTP.authenticate+AsyncVariants.generated.swift,\ StytchClient.OTP.loginOrCreate+AsyncVariants.generated.swift,\ StytchClient.OTP.send+AsyncVariants.generated.swift,\ StytchClient.Passkeys.authenticate+AsyncVariants.generated.swift,\ StytchClient.Passkeys.register+AsyncVariants.generated.swift,\ StytchClient.Passkeys.update+AsyncVariants.generated.swift,\ StytchClient.Passwords.authenticate+AsyncVariants.generated.swift,\ StytchClient.Passwords.create+AsyncVariants.generated.swift,\ StytchClient.Passwords.resetByEmail+AsyncVariants.generated.swift,\ StytchClient.Passwords.resetByEmailStart+AsyncVariants.generated.swift,\ StytchClient.Passwords.resetByExistingPassword+AsyncVariants.generated.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchClient.Biometrics.authenticate+AsyncVariants.generated.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchClient.Biometrics.register+AsyncVariants.generated.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchClient.Biometrics.removeRegistration+AsyncVariants.generated.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchClient.CryptoWallets.authenticate+AsyncVariants.generated.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchClient.CryptoWallets.authenticateStart+AsyncVariants.generated.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchClient.DFP.getTelemetryID+AsyncVariants.generated.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchClient.MagicLinks.Email.loginOrCreate+AsyncVariants.generated.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchClient.MagicLinks.Email.send+AsyncVariants.generated.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchClient.MagicLinks.authenticate+AsyncVariants.generated.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchClient.OAuth.Apple.start+AsyncVariants.generated.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchClient.OAuth.ThirdParty.start+AsyncVariants.generated.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchClient.OAuth.attach+AsyncVariants.generated.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchClient.OAuth.authenticate+AsyncVariants.generated.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchClient.OTP.authenticate+AsyncVariants.generated.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchClient.OTP.loginOrCreate+AsyncVariants.generated.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchClient.OTP.send+AsyncVariants.generated.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchClient.Passkeys.authenticate+AsyncVariants.generated.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchClient.Passkeys.register+AsyncVariants.generated.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchClient.Passkeys.update+AsyncVariants.generated.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchClient.Passwords.authenticate+AsyncVariants.generated.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchClient.Passwords.create+AsyncVariants.generated.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchClient.Passwords.resetByEmail+AsyncVariants.generated.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchClient.Passwords.resetByEmailStart+AsyncVariants.generated.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchClient.Passwords.resetByExistingPassword+AsyncVariants.generated.swift (in target 'StytchCore' from project 'Stytch')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchClient.Biometrics.authenticate+AsyncVariants.generated.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchClient.Biometrics.register+AsyncVariants.generated.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchClient.Biometrics.removeRegistration+AsyncVariants.generated.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchClient.CryptoWallets.authenticate+AsyncVariants.generated.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchClient.CryptoWallets.authenticateStart+AsyncVariants.generated.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchClient.DFP.getTelemetryID+AsyncVariants.generated.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchClient.MagicLinks.Email.loginOrCreate+AsyncVariants.generated.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchClient.MagicLinks.Email.send+AsyncVariants.generated.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchClient.MagicLinks.authenticate+AsyncVariants.generated.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchClient.OAuth.Apple.start+AsyncVariants.generated.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchClient.OAuth.ThirdParty.start+AsyncVariants.generated.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchClient.OAuth.attach+AsyncVariants.generated.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchClient.OAuth.authenticate+AsyncVariants.generated.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchClient.OTP.authenticate+AsyncVariants.generated.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchClient.OTP.loginOrCreate+AsyncVariants.generated.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchClient.OTP.send+AsyncVariants.generated.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchClient.Passkeys.authenticate+AsyncVariants.generated.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchClient.Passkeys.register+AsyncVariants.generated.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchClient.Passkeys.update+AsyncVariants.generated.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchClient.Passwords.authenticate+AsyncVariants.generated.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchClient.Passwords.create+AsyncVariants.generated.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchClient.Passwords.resetByEmail+AsyncVariants.generated.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchClient.Passwords.resetByEmailStart+AsyncVariants.generated.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchClient.Passwords.resetByExistingPassword+AsyncVariants.generated.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftEmitModule normal arm64 Emitting\ module\ for\ StytchCore (in target 'StytchCore' from project 'Stytch')
EmitSwiftModule normal arm64 (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ StytchB2BClient+SCIM.swift,\ StytchB2BClient+SSO+OIDC.swift,\ StytchB2BClient+SSO+OIDCConnection.swift,\ StytchB2BClient+SSO+SAML.swift,\ StytchB2BClient+SSO+SAMLConnection.swift,\ StytchB2BClient+SSO.swift,\ StytchB2BClient+SearchManager.swift,\ StytchB2BClient+Sessions.swift,\ StytchB2BClient+TOTP.swift,\ StytchB2BClient.swift,\ BaseRoute.swift,\ BiometricsRoute.swift,\ LAContextEvaluating.swift,\ LocalAuthenticationContextManager.swift,\ StytchClient+Biometrics.swift,\ CryptoWalletsRoute.swift,\ StytchClient+CryptoWallets.swift,\ StytchClient+DFP.swift,\ MagicLinksRoute.swift,\ StytchClient+MagicLinks.swift,\ StytchClient.MagicLinks+Email.swift,\ AuthenticateResponse.swift,\ Session.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchB2BClient/StytchB2BClient+SCIM/StytchB2BClient+SCIM.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchB2BClient/StytchB2BClient+SSO/StytchB2BClient+SSO+OIDC.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchB2BClient/StytchB2BClient+SSO/StytchB2BClient+SSO+OIDCConnection.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchB2BClient/StytchB2BClient+SSO/StytchB2BClient+SSO+SAML.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchB2BClient/StytchB2BClient+SSO/StytchB2BClient+SSO+SAMLConnection.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchB2BClient/StytchB2BClient+SSO/StytchB2BClient+SSO.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchB2BClient/StytchB2BClient+SearchManager.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchB2BClient/StytchB2BClient+Sessions.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchB2BClient/StytchB2BClient+TOTP.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchB2BClient/StytchB2BClient.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/BaseRoute.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/Biometrics/BiometricsRoute.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/Biometrics/LAContextEvaluating.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/Biometrics/LocalAuthenticationContextManager.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/Biometrics/StytchClient+Biometrics.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/CryptoWallets/CryptoWalletsRoute.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/CryptoWallets/StytchClient+CryptoWallets.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/DFP/StytchClient+DFP.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/MagicLinks/MagicLinksRoute.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/MagicLinks/StytchClient+MagicLinks.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/MagicLinks/StytchClient.MagicLinks+Email.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/Models/AuthenticateResponse.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/Models/Session.swift (in target 'StytchCore' from project 'Stytch')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchB2BClient/StytchB2BClient+SCIM/StytchB2BClient+SCIM.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchB2BClient/StytchB2BClient+SSO/StytchB2BClient+SSO+OIDC.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchB2BClient/StytchB2BClient+SSO/StytchB2BClient+SSO+OIDCConnection.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchB2BClient/StytchB2BClient+SSO/StytchB2BClient+SSO+SAML.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchB2BClient/StytchB2BClient+SSO/StytchB2BClient+SSO+SAMLConnection.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchB2BClient/StytchB2BClient+SSO/StytchB2BClient+SSO.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchB2BClient/StytchB2BClient+SearchManager.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchB2BClient/StytchB2BClient+Sessions.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchB2BClient/StytchB2BClient+TOTP.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchB2BClient/StytchB2BClient.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/BaseRoute.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/Biometrics/BiometricsRoute.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/Biometrics/LAContextEvaluating.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/Biometrics/LocalAuthenticationContextManager.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/Biometrics/StytchClient+Biometrics.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/CryptoWallets/CryptoWalletsRoute.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/CryptoWallets/StytchClient+CryptoWallets.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/DFP/StytchClient+DFP.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/MagicLinks/MagicLinksRoute.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/MagicLinks/StytchClient+MagicLinks.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/MagicLinks/StytchClient.MagicLinks+Email.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/Models/AuthenticateResponse.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/Models/Session.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ User.swift,\ OAuth+Apple.swift,\ OAuth+ThirdParty.swift,\ OAuthRoute.swift,\ StytchClient+OAuth.swift,\ OTPRoute.swift,\ SytchClient+OTP.swift,\ PasskeysRoute.swift,\ StytchClient+Passkeys.swift,\ PasswordsRoute.swift,\ StytchClient+Passwords.swift,\ StytchClient+AuthMethod.swift,\ StytchClient+Sessions.swift,\ StytchClient.swift,\ StytchClient+TOTP.swift,\ TOTPRoute.swift,\ StytchClient+User.swift,\ UsersRoute.swift,\ StytchClientCommon.swift,\ StytchConsoleLogger.swift,\ WebAuthenticationSessionClient+Live.swift,\ WebAuthenticationSessionClient.swift,\ WebAuthenticationSessionClientConfiguration.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/Models/User.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/OAuth/OAuth+Apple.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/OAuth/OAuth+ThirdParty.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/OAuth/OAuthRoute.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/OAuth/StytchClient+OAuth.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/OTP/OTPRoute.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/OTP/SytchClient+OTP.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/Passkeys/PasskeysRoute.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/Passkeys/StytchClient+Passkeys.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/Passwords/PasswordsRoute.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/Passwords/StytchClient+Passwords.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/StytchClient+AuthMethod.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/StytchClient+Sessions.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/StytchClient.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/TOTP/StytchClient+TOTP.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/TOTP/TOTPRoute.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/User/StytchClient+User.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/User/UsersRoute.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClientCommon.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchConsoleLogger.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/WebAuthenticationSessionClient/WebAuthenticationSessionClient+Live.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/WebAuthenticationSessionClient/WebAuthenticationSessionClient.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/WebAuthenticationSessionClient/WebAuthenticationSessionClientConfiguration.swift (in target 'StytchCore' from project 'Stytch')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/Models/User.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/OAuth/OAuth+Apple.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/OAuth/OAuth+ThirdParty.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/OAuth/OAuthRoute.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/OAuth/StytchClient+OAuth.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/OTP/OTPRoute.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/OTP/SytchClient+OTP.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/Passkeys/PasskeysRoute.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/Passkeys/StytchClient+Passkeys.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/Passwords/PasswordsRoute.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/Passwords/StytchClient+Passwords.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/StytchClient+AuthMethod.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/StytchClient+Sessions.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/StytchClient.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/TOTP/StytchClient+TOTP.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/TOTP/TOTPRoute.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/User/StytchClient+User.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/User/UsersRoute.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClientCommon.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchConsoleLogger.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/WebAuthenticationSessionClient/WebAuthenticationSessionClient+Live.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/WebAuthenticationSessionClient/WebAuthenticationSessionClient.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/WebAuthenticationSessionClient/WebAuthenticationSessionClientConfiguration.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ NetworkRequestHandler.swift,\ NetworkingClient.swift,\ NetworkingRouter.swift,\ ObjectStorage.swift,\ CodeChallengedParameters.swift,\ CodeVerifierParameters.swift,\ PKCEPairManager.swift,\ PasskeysClient+Live.swift,\ PasskeysClient.swift,\ PollingClient+Live.swift,\ PollingClient.swift,\ SessionManager.swift,\ AuthenticationFactor.swift,\ BootstrapResponse.swift,\ ClientInfo+Version.swift,\ ClientInfo.swift,\ ClientType.swift,\ Completion.swift,\ DataContainer.swift,\ DeeplinkHandledStatus.swift,\ DeviceHistory.swift,\ StytchAPIError.swift,\ StytchAPIErrorType.swift,\ StytchError.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Networking/NetworkRequestHandler.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Networking/NetworkingClient.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Networking/NetworkingRouter.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/ObjectStorage.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/PKCE/CodeChallengedParameters.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/PKCE/CodeVerifierParameters.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/PKCE/PKCEPairManager.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/PasskeysClient/PasskeysClient+Live.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/PasskeysClient/PasskeysClient.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/PollingClient/PollingClient+Live.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/PollingClient/PollingClient.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SessionManager.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SharedModels/AuthenticationFactor.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SharedModels/BootstrapResponse.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SharedModels/ClientInfo+Version.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SharedModels/ClientInfo.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SharedModels/ClientType.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SharedModels/Completion.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SharedModels/DataContainer.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SharedModels/DeeplinkHandledStatus.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SharedModels/DeviceHistory.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SharedModels/Errors/StytchAPIError.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SharedModels/Errors/StytchAPIErrorType.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SharedModels/Errors/StytchError.swift (in target 'StytchCore' from project 'Stytch')
Failed frontend command:
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Stytch.build/Debug-xros/StytchCore.build/Objects-normal/arm64/sources-1 -primary-file /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Networking/NetworkRequestHandler.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Networking/NetworkingClient.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Networking/NetworkingRouter.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/ObjectStorage.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/PKCE/CodeChallengedParameters.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/PKCE/CodeVerifierParameters.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/PKCE/PKCEPairManager.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/PasskeysClient/PasskeysClient+Live.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/PasskeysClient/PasskeysClient.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/PollingClient/PollingClient+Live.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/PollingClient/PollingClient.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SessionManager.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SharedModels/AuthenticationFactor.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SharedModels/BootstrapResponse.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SharedModels/ClientInfo+Version.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SharedModels/ClientInfo.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SharedModels/ClientType.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SharedModels/Completion.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SharedModels/DataContainer.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SharedModels/DeeplinkHandledStatus.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SharedModels/DeviceHistory.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SharedModels/Errors/StytchAPIError.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SharedModels/Errors/StytchAPIErrorType.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SharedModels/Errors/StytchError.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Stytch.build/Debug-xros/StytchCore.build/Objects-normal/arm64/supplementaryOutputs-7 -target arm64-apple-xros1.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Stytch.build/Debug-xros/StytchCore.build/Objects-normal/arm64/StytchCore_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -empty-abi-descriptor -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros2.4-22O233-407b76dbb837030756cbe1ab3f0b01b6.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Stytch.build/Debug-xros/StytchCore.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Stytch.build/Debug-xros/StytchCore.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Stytch.build/Debug-xros/StytchCore.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Stytch.build/Debug-xros/StytchCore.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name StytchCore -frontend-parseable-output -disable-clang-spi -target-sdk-version 2.4 -target-sdk-name xros2.4 -external-plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/bin/swift-plugin-server -in-process-plugin-server-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/libSwiftInProcPluginServer.dylib -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Stytch.build/Debug-xros/StytchCore.build/Objects-normal/arm64/NetworkRequestHandler.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Stytch.build/Debug-xros/StytchCore.build/Objects-normal/arm64/NetworkingClient.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Stytch.build/Debug-xros/StytchCore.build/Objects-normal/arm64/NetworkingRouter.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Stytch.build/Debug-xros/StytchCore.build/Objects-normal/arm64/ObjectStorage.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Stytch.build/Debug-xros/StytchCore.build/Objects-normal/arm64/CodeChallengedParameters.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Stytch.build/Debug-xros/StytchCore.build/Objects-normal/arm64/CodeVerifierParameters.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Stytch.build/Debug-xros/StytchCore.build/Objects-normal/arm64/PKCEPairManager.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Stytch.build/Debug-xros/StytchCore.build/Objects-normal/arm64/PasskeysClient+Live.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Stytch.build/Debug-xros/StytchCore.build/Objects-normal/arm64/PasskeysClient.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Stytch.build/Debug-xros/StytchCore.build/Objects-normal/arm64/PollingClient+Live.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Stytch.build/Debug-xros/StytchCore.build/Objects-normal/arm64/PollingClient.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Stytch.build/Debug-xros/StytchCore.build/Objects-normal/arm64/SessionManager.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Stytch.build/Debug-xros/StytchCore.build/Objects-normal/arm64/AuthenticationFactor.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Stytch.build/Debug-xros/StytchCore.build/Objects-normal/arm64/BootstrapResponse.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Stytch.build/Debug-xros/StytchCore.build/Objects-normal/arm64/ClientInfo+Version.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Stytch.build/Debug-xros/StytchCore.build/Objects-normal/arm64/ClientInfo.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Stytch.build/Debug-xros/StytchCore.build/Objects-normal/arm64/ClientType.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Stytch.build/Debug-xros/StytchCore.build/Objects-normal/arm64/Completion.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Stytch.build/Debug-xros/StytchCore.build/Objects-normal/arm64/DataContainer.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Stytch.build/Debug-xros/StytchCore.build/Objects-normal/arm64/DeeplinkHandledStatus.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Stytch.build/Debug-xros/StytchCore.build/Objects-normal/arm64/DeviceHistory.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Stytch.build/Debug-xros/StytchCore.build/Objects-normal/arm64/StytchAPIError.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Stytch.build/Debug-xros/StytchCore.build/Objects-normal/arm64/StytchAPIErrorType.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Stytch.build/Debug-xros/StytchCore.build/Objects-normal/arm64/StytchError.o -index-unit-output-path /Stytch.build/Debug-xros/StytchCore.build/Objects-normal/arm64/NetworkRequestHandler.o -index-unit-output-path /Stytch.build/Debug-xros/StytchCore.build/Objects-normal/arm64/NetworkingClient.o -index-unit-output-path /Stytch.build/Debug-xros/StytchCore.build/Objects-normal/arm64/NetworkingRouter.o -index-unit-output-path /Stytch.build/Debug-xros/StytchCore.build/Objects-normal/arm64/ObjectStorage.o -index-unit-output-path /Stytch.build/Debug-xros/StytchCore.build/Objects-normal/arm64/CodeChallengedParameters.o -index-unit-output-path /Stytch.build/Debug-xros/StytchCore.build/Objects-normal/arm64/CodeVerifierParameters.o -index-unit-output-path /Stytch.build/Debug-xros/StytchCore.build/Objects-normal/arm64/PKCEPairManager.o -index-unit-output-path /Stytch.build/Debug-xros/StytchCore.build/Objects-normal/arm64/PasskeysClient+Live.o -index-unit-output-path /Stytch.build/Debug-xros/StytchCore.build/Objects-normal/arm64/PasskeysClient.o -index-unit-output-path /Stytch.build/Debug-xros/StytchCore.build/Objects-normal/arm64/PollingClient+Live.o -index-unit-output-path /Stytch.build/Debug-xros/StytchCore.build/Objects-normal/arm64/PollingClient.o -index-unit-output-path /Stytch.build/Debug-xros/StytchCore.build/Objects-normal/arm64/SessionManager.o -index-unit-output-path /Stytch.build/Debug-xros/StytchCore.build/Objects-normal/arm64/AuthenticationFactor.o -index-unit-output-path /Stytch.build/Debug-xros/StytchCore.build/Objects-normal/arm64/BootstrapResponse.o -index-unit-output-path /Stytch.build/Debug-xros/StytchCore.build/Objects-normal/arm64/ClientInfo+Version.o -index-unit-output-path /Stytch.build/Debug-xros/StytchCore.build/Objects-normal/arm64/ClientInfo.o -index-unit-output-path /Stytch.build/Debug-xros/StytchCore.build/Objects-normal/arm64/ClientType.o -index-unit-output-path /Stytch.build/Debug-xros/StytchCore.build/Objects-normal/arm64/Completion.o -index-unit-output-path /Stytch.build/Debug-xros/StytchCore.build/Objects-normal/arm64/DataContainer.o -index-unit-output-path /Stytch.build/Debug-xros/StytchCore.build/Objects-normal/arm64/DeeplinkHandledStatus.o -index-unit-output-path /Stytch.build/Debug-xros/StytchCore.build/Objects-normal/arm64/DeviceHistory.o -index-unit-output-path /Stytch.build/Debug-xros/StytchCore.build/Objects-normal/arm64/StytchAPIError.o -index-unit-output-path /Stytch.build/Debug-xros/StytchCore.build/Objects-normal/arm64/StytchAPIErrorType.o -index-unit-output-path /Stytch.build/Debug-xros/StytchCore.build/Objects-normal/arm64/StytchError.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Networking/NetworkRequestHandler.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Networking/NetworkingClient.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Networking/NetworkingRouter.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/ObjectStorage.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/PKCE/CodeChallengedParameters.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/PKCE/CodeVerifierParameters.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/PKCE/PKCEPairManager.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/PasskeysClient/PasskeysClient+Live.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/PasskeysClient/PasskeysClient.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/PollingClient/PollingClient+Live.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/PollingClient/PollingClient.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SessionManager.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SharedModels/AuthenticationFactor.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SharedModels/BootstrapResponse.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SharedModels/ClientInfo+Version.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SharedModels/ClientInfo.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SharedModels/ClientInfo.swift:79:13: error: 'UIScreen' is unavailable in visionOS
            UIScreen.main.bounds.size
            ^~~~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScreen.h:54:12: note: 'UIScreen' has been explicitly marked unavailable here
@interface UIScreen : NSObject <UITraitEnvironment>
           ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SharedModels/ClientType.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SharedModels/Completion.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SharedModels/DataContainer.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SharedModels/DeeplinkHandledStatus.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SharedModels/DeviceHistory.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SharedModels/Errors/StytchAPIError.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SharedModels/Errors/StytchAPIErrorType.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SharedModels/Errors/StytchError.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ StytchClient.Passwords.resetBySession+AsyncVariants.generated.swift,\ StytchClient.Passwords.strengthCheck+AsyncVariants.generated.swift,\ StytchClient.Sessions.attest+AsyncVariants.generated.swift,\ StytchClient.Sessions.authenticate+AsyncVariants.generated.swift,\ StytchClient.Sessions.revoke+AsyncVariants.generated.swift,\ StytchClient.TOTP.authenticate+AsyncVariants.generated.swift,\ StytchClient.TOTP.create+AsyncVariants.generated.swift,\ StytchClient.TOTP.recover+AsyncVariants.generated.swift,\ StytchClient.TOTP.recoveryCodes+AsyncVariants.generated.swift,\ StytchClient.UserManagement.deleteFactor+AsyncVariants.generated.swift,\ StytchClient.UserManagement.get+AsyncVariants.generated.swift,\ StytchClient.UserManagement.searchUser+AsyncVariants.generated.swift,\ StytchClient.UserManagement.update+AsyncVariants.generated.swift,\ StytchClient.handle+AsyncVariants.generated.swift,\ KeychainClient.swift,\ KeychainClientImplementation.swift,\ KeychainItem.swift,\ KeychainMigration.swift,\ KeychainMigration1.swift,\ KeychainMigration2.swift,\ KeychainMigration3.swift,\ KeychainMigration4.swift,\ LocalStorage.swift,\ NetworkMonitor.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchClient.Passwords.resetBySession+AsyncVariants.generated.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchClient.Passwords.strengthCheck+AsyncVariants.generated.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchClient.Sessions.attest+AsyncVariants.generated.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchClient.Sessions.authenticate+AsyncVariants.generated.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchClient.Sessions.revoke+AsyncVariants.generated.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchClient.TOTP.authenticate+AsyncVariants.generated.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchClient.TOTP.create+AsyncVariants.generated.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchClient.TOTP.recover+AsyncVariants.generated.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchClient.TOTP.recoveryCodes+AsyncVariants.generated.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchClient.UserManagement.deleteFactor+AsyncVariants.generated.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchClient.UserManagement.get+AsyncVariants.generated.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchClient.UserManagement.searchUser+AsyncVariants.generated.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchClient.UserManagement.update+AsyncVariants.generated.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchClient.handle+AsyncVariants.generated.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/KeychainClient/KeychainClient.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/KeychainClient/KeychainClientImplementation.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/KeychainClient/KeychainItem.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/KeychainClient/KeychainMigrations/KeychainMigration.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/KeychainClient/KeychainMigrations/KeychainMigration1.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/KeychainClient/KeychainMigrations/KeychainMigration2.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/KeychainClient/KeychainMigrations/KeychainMigration3.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/KeychainClient/KeychainMigrations/KeychainMigration4.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/LocalStorage.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Networking/NetworkMonitor.swift (in target 'StytchCore' from project 'Stytch')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchClient.Passwords.resetBySession+AsyncVariants.generated.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchClient.Passwords.strengthCheck+AsyncVariants.generated.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchClient.Sessions.attest+AsyncVariants.generated.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchClient.Sessions.authenticate+AsyncVariants.generated.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchClient.Sessions.revoke+AsyncVariants.generated.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchClient.TOTP.authenticate+AsyncVariants.generated.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchClient.TOTP.create+AsyncVariants.generated.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchClient.TOTP.recover+AsyncVariants.generated.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchClient.TOTP.recoveryCodes+AsyncVariants.generated.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchClient.UserManagement.deleteFactor+AsyncVariants.generated.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchClient.UserManagement.get+AsyncVariants.generated.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchClient.UserManagement.searchUser+AsyncVariants.generated.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchClient.UserManagement.update+AsyncVariants.generated.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchClient.handle+AsyncVariants.generated.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/KeychainClient/KeychainClient.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/KeychainClient/KeychainClientImplementation.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/KeychainClient/KeychainItem.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/KeychainClient/KeychainMigrations/KeychainMigration.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/KeychainClient/KeychainMigrations/KeychainMigration1.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/KeychainClient/KeychainMigrations/KeychainMigration2.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/KeychainClient/KeychainMigrations/KeychainMigration3.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/KeychainClient/KeychainMigrations/KeychainMigration4.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/LocalStorage.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Networking/NetworkMonitor.swift (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling SwiftyJSON.swift (in target 'SwiftyJSON' from project 'SwiftyJSON')
SwiftDriver\ Compilation SwiftyJSON normal arm64 com.apple.xcode.tools.swift.compiler (in target 'SwiftyJSON' from project 'SwiftyJSON')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name SwiftyJSON -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyJSON.build/Debug-xros/SwiftyJSON.build/Objects-normal/arm64/SwiftyJSON.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -DXcode -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk -target arm64-apple-xros1.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -suppress-warnings -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros2.4-22O233-407b76dbb837030756cbe1ab3f0b01b6.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyJSON.build/Debug-xros/SwiftyJSON.build/Objects-normal/arm64/SwiftyJSON-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyJSON.build/Debug-xros/SwiftyJSON.build/Objects-normal/arm64/SwiftyJSON.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyJSON.build/Debug-xros/SwiftyJSON.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyJSON.build/Debug-xros/SwiftyJSON.build/Objects-normal/arm64/SwiftyJSON_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyJSON.build/Debug-xros/SwiftyJSON.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyJSON.build/Debug-xros/SwiftyJSON.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyJSON.build/Debug-xros/SwiftyJSON.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyJSON.build/Debug-xros/SwiftyJSON.build/Objects-normal/arm64/SwiftyJSON-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling StytchB2BClient.SCIM.rotateCancel+AsyncVariants.generated.swift, StytchB2BClient.SCIM.rotateComplete+AsyncVariants.generated.swift, StytchB2BClient.SCIM.rotateStart+AsyncVariants.generated.swift, StytchB2BClient.SCIM.updateConnection+AsyncVariants.generated.swift, StytchB2BClient.SSO.OIDC.createConnection+AsyncVariants.generated.swift, StytchB2BClient.SSO.OIDC.updateConnection+AsyncVariants.generated.swift, StytchB2BClient.SSO.SAML.createConnection+AsyncVariants.generated.swift, StytchB2BClient.SSO.SAML.deleteVerificationCertificate+AsyncVariants.generated.swift, StytchB2BClient.SSO.SAML.updateConnection+AsyncVariants.generated.swift, StytchB2BClient.SSO.SAML.updateConnectionByURL+AsyncVariants.generated.swift, StytchB2BClient.SSO.authenticate+AsyncVariants.generated.swift, StytchB2BClient.SSO.deleteConnection+AsyncVariants.generated.swift, StytchB2BClient.SSO.discoverConnections+AsyncVariants.generated.swift, StytchB2BClient.SSO.getConnections+AsyncVariants.generated.swift, StytchB2BClient.SSO.start+AsyncVariants.generated.swift, StytchB2BClient.SearchManager.searchMember+AsyncVariants.generated.swift, StytchB2BClient.SearchManager.searchOrganization+AsyncVariants.generated.swift, StytchB2BClient.Sessions.attest+AsyncVariants.generated.swift, StytchB2BClient.Sessions.authenticate+AsyncVariants.generated.swift, StytchB2BClient.Sessions.exchange+AsyncVariants.generated.swift, StytchB2BClient.Sessions.revoke+AsyncVariants.generated.swift, StytchB2BClient.TOTP.authenticate+AsyncVariants.generated.swift, StytchB2BClient.TOTP.create+AsyncVariants.generated.swift, StytchB2BClient.handle+AsyncVariants.generated.swift (in target 'StytchCore' from project 'Stytch')
SwiftCompile normal arm64 Compiling\ StytchB2BClient+Discovery.swift,\ StytchB2BClient+MagicLinks.swift,\ StytchB2BClient+Members.swift,\ StytchB2BClient+OAuth+Discovery.swift,\ StytchB2BClient+OAuth+ThirdParty+Discovery.swift,\ StytchB2BClient+OAuth+ThirdParty.swift,\ StytchB2BClient+OAuth.swift,\ StytchB2BClient+OTP+Email+Discovery.swift,\ StytchB2BClient+OTP+Email.swift,\ StytchB2BClient+OTP+SMS.swift,\ StytchB2BClient+OTP.swift,\ StytchB2BClient+Organizations+Members+CreateParameters.swift,\ StytchB2BClient+Organizations+Members+UpdateParameters.swift,\ StytchB2BClient+Organizations+Members.swift,\ StytchB2BClient+Organizations+SearchParameters.swift,\ StytchB2BClient+Organizations+UpdateParameters.swift,\ StytchB2BClient+Organizations.swift,\ StytchB2BClient+Passwords+Discovery.swift,\ StytchB2BClient+Passwords.swift,\ StytchB2BClient+RBAC.swift,\ StytchB2BClient+RecoveryCodes.swift,\ StytchB2BClient+Routes.swift,\ StytchB2BClient+SCIM+Parameters.swift,\ StytchB2BClient+SCIM+Responses.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchB2BClient/StytchB2BClient+Discovery.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchB2BClient/StytchB2BClient+MagicLinks.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchB2BClient/StytchB2BClient+Members.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchB2BClient/StytchB2BClient+OAuth/StytchB2BClient+OAuth+Discovery.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchB2BClient/StytchB2BClient+OAuth/StytchB2BClient+OAuth+ThirdParty+Discovery.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchB2BClient/StytchB2BClient+OAuth/StytchB2BClient+OAuth+ThirdParty.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchB2BClient/StytchB2BClient+OAuth/StytchB2BClient+OAuth.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchB2BClient/StytchB2BClient+OTP/StytchB2BClient+OTP+Email+Discovery.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchB2BClient/StytchB2BClient+OTP/StytchB2BClient+OTP+Email.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchB2BClient/StytchB2BClient+OTP/StytchB2BClient+OTP+SMS.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchB2BClient/StytchB2BClient+OTP/StytchB2BClient+OTP.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchB2BClient/StytchB2BClient+Organizations/Organization\ Members/StytchB2BClient+Organizations+Members+CreateParameters.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchB2BClient/StytchB2BClient+Organizations/Organization\ Members/StytchB2BClient+Organizations+Members+UpdateParameters.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchB2BClient/StytchB2BClient+Organizations/Organization\ Members/StytchB2BClient+Organizations+Members.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchB2BClient/StytchB2BClient+Organizations/StytchB2BClient+Organizations+SearchParameters.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchB2BClient/StytchB2BClient+Organizations/StytchB2BClient+Organizations+UpdateParameters.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchB2BClient/StytchB2BClient+Organizations/StytchB2BClient+Organizations.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchB2BClient/StytchB2BClient+Passwords/StytchB2BClient+Passwords+Discovery.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchB2BClient/StytchB2BClient+Passwords/StytchB2BClient+Passwords.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchB2BClient/StytchB2BClient+RBAC.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchB2BClient/StytchB2BClient+RecoveryCodes.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchB2BClient/StytchB2BClient+Routes.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchB2BClient/StytchB2BClient+SCIM/StytchB2BClient+SCIM+Parameters.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchB2BClient/StytchB2BClient+SCIM/StytchB2BClient+SCIM+Responses.swift (in target 'StytchCore' from project 'Stytch')
SwiftCompile normal arm64 Compiling\ StytchSDKError.swift,\ Identifier.swift,\ IntermediateSessionTokenParameters.swift,\ Minutes.swift,\ OAuthProviderValues.swift,\ Path.swift,\ RBACPolicy.swift,\ Regex.swift,\ Response.swift,\ SessionToken.swift,\ StytchClientConfiguration.swift,\ StytchLocale.swift,\ Union.swift,\ Version.swift,\ StartupClient.swift,\ B2BAuthenticateResponse.swift,\ B2BMFAAuthenticateResponse.swift,\ Member.swift,\ MemberSession.swift,\ Organization.swift,\ OrganizationType.swift,\ StytchB2BClient+AuthMethod.swift,\ StytchB2BClient+Common.swift,\ StytchB2BClient+DFP.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SharedModels/Errors/StytchSDKError.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SharedModels/Identifier.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SharedModels/IntermediateSessionTokenParameters.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SharedModels/Minutes.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SharedModels/OAuthProviderValues.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SharedModels/Path.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SharedModels/RBACPolicy.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SharedModels/Regex.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SharedModels/Response.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SharedModels/SessionToken.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SharedModels/StytchClientConfiguration.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SharedModels/StytchLocale.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SharedModels/Union.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SharedModels/Version.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StartupClient.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchB2BClient/Models/B2BAuthenticateResponse.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchB2BClient/Models/B2BMFAAuthenticateResponse.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchB2BClient/Models/Member.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchB2BClient/Models/MemberSession.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchB2BClient/Models/Organization.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchB2BClient/Models/OrganizationType.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchB2BClient/StytchB2BClient+AuthMethod.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchB2BClient/StytchB2BClient+Common.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchB2BClient/StytchB2BClient+DFP.swift (in target 'StytchCore' from project 'Stytch')
SwiftDriverJobDiscovery normal arm64 Compiling StytchB2BClient.Organizations.Members.reactivate+AsyncVariants.generated.swift, StytchB2BClient.Organizations.Members.update+AsyncVariants.generated.swift, StytchB2BClient.Organizations.delete+AsyncVariants.generated.swift, StytchB2BClient.Organizations.get+AsyncVariants.generated.swift, StytchB2BClient.Organizations.searchMembers+AsyncVariants.generated.swift, StytchB2BClient.Organizations.update+AsyncVariants.generated.swift, StytchB2BClient.Passwords.Discovery.authenticate+AsyncVariants.generated.swift, StytchB2BClient.Passwords.Discovery.resetByEmail+AsyncVariants.generated.swift, StytchB2BClient.Passwords.Discovery.resetByEmailStart+AsyncVariants.generated.swift, StytchB2BClient.Passwords.authenticate+AsyncVariants.generated.swift, StytchB2BClient.Passwords.resetByEmail+AsyncVariants.generated.swift, StytchB2BClient.Passwords.resetByEmailStart+AsyncVariants.generated.swift, StytchB2BClient.Passwords.resetByExistingPassword+AsyncVariants.generated.swift, StytchB2BClient.Passwords.resetBySession+AsyncVariants.generated.swift, StytchB2BClient.Passwords.strengthCheck+AsyncVariants.generated.swift, StytchB2BClient.RBAC.allPermissions+AsyncVariants.generated.swift, StytchB2BClient.RBAC.isAuthorized+AsyncVariants.generated.swift, StytchB2BClient.RecoveryCodes.get+AsyncVariants.generated.swift, StytchB2BClient.RecoveryCodes.recover+AsyncVariants.generated.swift, StytchB2BClient.RecoveryCodes.rotate+AsyncVariants.generated.swift, StytchB2BClient.SCIM.createConnection+AsyncVariants.generated.swift, StytchB2BClient.SCIM.deleteConnection+AsyncVariants.generated.swift, StytchB2BClient.SCIM.getConnection+AsyncVariants.generated.swift, StytchB2BClient.SCIM.getConnectionGroups+AsyncVariants.generated.swift (in target 'StytchCore' from project 'Stytch')
SwiftDriverJobDiscovery normal arm64 Compiling StytchB2BClient.Discovery.createOrganization+AsyncVariants.generated.swift, StytchB2BClient.Discovery.exchangeIntermediateSession+AsyncVariants.generated.swift, StytchB2BClient.Discovery.listOrganizations+AsyncVariants.generated.swift, StytchB2BClient.MagicLinks.Email.discoverySend+AsyncVariants.generated.swift, StytchB2BClient.MagicLinks.Email.inviteSend+AsyncVariants.generated.swift, StytchB2BClient.MagicLinks.Email.loginOrSignup+AsyncVariants.generated.swift, StytchB2BClient.MagicLinks.authenticate+AsyncVariants.generated.swift, StytchB2BClient.MagicLinks.discoveryAuthenticate+AsyncVariants.generated.swift, StytchB2BClient.Members.deleteFactor+AsyncVariants.generated.swift, StytchB2BClient.Members.get+AsyncVariants.generated.swift, StytchB2BClient.Members.update+AsyncVariants.generated.swift, StytchB2BClient.OAuth.Discovery.authenticate+AsyncVariants.generated.swift, StytchB2BClient.OAuth.ThirdParty.Discovery.start+AsyncVariants.generated.swift, StytchB2BClient.OAuth.ThirdParty.start+AsyncVariants.generated.swift, StytchB2BClient.OAuth.authenticate+AsyncVariants.generated.swift, StytchB2BClient.OTP.Email.Discovery.authenticate+AsyncVariants.generated.swift, StytchB2BClient.OTP.Email.Discovery.send+AsyncVariants.generated.swift, StytchB2BClient.OTP.Email.authenticate+AsyncVariants.generated.swift, StytchB2BClient.OTP.Email.loginOrSignup+AsyncVariants.generated.swift, StytchB2BClient.OTP.SMS.authenticate+AsyncVariants.generated.swift, StytchB2BClient.OTP.SMS.send+AsyncVariants.generated.swift, StytchB2BClient.Organizations.Members.create+AsyncVariants.generated.swift, StytchB2BClient.Organizations.Members.delete+AsyncVariants.generated.swift, StytchB2BClient.Organizations.Members.deleteFactor+AsyncVariants.generated.swift (in target 'StytchCore' from project 'Stytch')
SwiftDriverJobDiscovery normal arm64 Compiling StytchClient.Biometrics.authenticate+AsyncVariants.generated.swift, StytchClient.Biometrics.register+AsyncVariants.generated.swift, StytchClient.Biometrics.removeRegistration+AsyncVariants.generated.swift, StytchClient.CryptoWallets.authenticate+AsyncVariants.generated.swift, StytchClient.CryptoWallets.authenticateStart+AsyncVariants.generated.swift, StytchClient.DFP.getTelemetryID+AsyncVariants.generated.swift, StytchClient.MagicLinks.Email.loginOrCreate+AsyncVariants.generated.swift, StytchClient.MagicLinks.Email.send+AsyncVariants.generated.swift, StytchClient.MagicLinks.authenticate+AsyncVariants.generated.swift, StytchClient.OAuth.Apple.start+AsyncVariants.generated.swift, StytchClient.OAuth.ThirdParty.start+AsyncVariants.generated.swift, StytchClient.OAuth.attach+AsyncVariants.generated.swift, StytchClient.OAuth.authenticate+AsyncVariants.generated.swift, StytchClient.OTP.authenticate+AsyncVariants.generated.swift, StytchClient.OTP.loginOrCreate+AsyncVariants.generated.swift, StytchClient.OTP.send+AsyncVariants.generated.swift, StytchClient.Passkeys.authenticate+AsyncVariants.generated.swift, StytchClient.Passkeys.register+AsyncVariants.generated.swift, StytchClient.Passkeys.update+AsyncVariants.generated.swift, StytchClient.Passwords.authenticate+AsyncVariants.generated.swift, StytchClient.Passwords.create+AsyncVariants.generated.swift, StytchClient.Passwords.resetByEmail+AsyncVariants.generated.swift, StytchClient.Passwords.resetByEmailStart+AsyncVariants.generated.swift, StytchClient.Passwords.resetByExistingPassword+AsyncVariants.generated.swift (in target 'StytchCore' from project 'Stytch')
** BUILD FAILED **
The following build commands failed:
	SwiftCompile normal arm64 Compiling\ NetworkRequestHandler.swift,\ NetworkingClient.swift,\ NetworkingRouter.swift,\ ObjectStorage.swift,\ CodeChallengedParameters.swift,\ CodeVerifierParameters.swift,\ PKCEPairManager.swift,\ PasskeysClient+Live.swift,\ PasskeysClient.swift,\ PollingClient+Live.swift,\ PollingClient.swift,\ SessionManager.swift,\ AuthenticationFactor.swift,\ BootstrapResponse.swift,\ ClientInfo+Version.swift,\ ClientInfo.swift,\ ClientType.swift,\ Completion.swift,\ DataContainer.swift,\ DeeplinkHandledStatus.swift,\ DeviceHistory.swift,\ StytchAPIError.swift,\ StytchAPIErrorType.swift,\ StytchError.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Networking/NetworkRequestHandler.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Networking/NetworkingClient.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Networking/NetworkingRouter.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/ObjectStorage.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/PKCE/CodeChallengedParameters.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/PKCE/CodeVerifierParameters.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/PKCE/PKCEPairManager.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/PasskeysClient/PasskeysClient+Live.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/PasskeysClient/PasskeysClient.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/PollingClient/PollingClient+Live.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/PollingClient/PollingClient.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SessionManager.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SharedModels/AuthenticationFactor.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SharedModels/BootstrapResponse.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SharedModels/ClientInfo+Version.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SharedModels/ClientInfo.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SharedModels/ClientType.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SharedModels/Completion.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SharedModels/DataContainer.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SharedModels/DeeplinkHandledStatus.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SharedModels/DeviceHistory.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SharedModels/Errors/StytchAPIError.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SharedModels/Errors/StytchAPIErrorType.swift /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SharedModels/Errors/StytchError.swift (in target 'StytchCore' from project 'Stytch')
	SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SharedModels/ClientInfo.swift (in target 'StytchCore' from project 'Stytch')
	Building workspace spi-builder-workspace with scheme StytchCore
(3 failures)
BUILD FAILURE 6.1 visionOS