The Swift Package Index logo.Swift Package Index

Build Information

Successful build of Stytch, reference 0.104.0 (3f2a95), with Swift 6.1 for iOS using Xcode 16.3 on 26 Feb 2026 03:15:09 UTC.

Swift 6 data race errors: 44

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=iOS OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures

Build Log

    static let shared = EncryptedUserDefaultsClientImplementation()
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Environment.swift:10:5: warning: var 'Current' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
var Current: Environment = .init()
    ^
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Environment.swift:10:5: note: convert 'Current' to a 'let' constant to make 'Sendable' shared state immutable
var Current: Environment = .init()
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Environment.swift:10:5: note: add '@MainActor' to make var 'Current' part of global actor 'MainActor'
var Current: Environment = .init()
    ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Environment.swift:10:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
var Current: Environment = .init()
    ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Environment.swift:127:46: warning: passing non-sendable parameter '$2' to function expecting a @Sendable closure
        $0.asyncAfter(deadline: $1, execute: $2)
                                             ^
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Environment.swift:126:83: note: parameter '$2' is implicitly non-sendable
    var asyncAfter: (DispatchQueue, DispatchTime, @escaping () -> Void) -> Void = {
                                                                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/EventsClient.swift:15:16: warning: static property 'router' is not concurrency-safe because non-'Sendable' type 'NetworkingRouter<EventsClientRoute>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let router: NetworkingRouter<EventsClientRoute> = .init { Current.localStorage.stytchClientConfiguration }
               ^
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Networking/NetworkingRouter.swift:10:15: note: consider making generic struct 'NetworkingRouter' conform to the 'Sendable' protocol
public struct NetworkingRouter<Route: RouteType> {
              ^
                                                 : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/EventsClient.swift:15:16: note: add '@MainActor' to make static property 'router' part of global actor 'MainActor'
    static let router: NetworkingRouter<EventsClientRoute> = .init { Current.localStorage.stytchClientConfiguration }
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/EventsClient.swift:15:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let router: NetworkingRouter<EventsClientRoute> = .init { Current.localStorage.stytchClientConfiguration }
               ^
    nonisolated(unsafe)
/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)
/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)
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Networking/NetworkingClient.swift:95:16: warning: static property 'live' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    static var live = NetworkingClientImplementation(networkRequestHandler: NetworkRequestHandlerImplementation(urlSession: .init(configuration: .default)))
               ^
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Networking/NetworkingClient.swift:95:16: note: convert 'live' to a 'let' constant to make 'Sendable' shared state immutable
    static var live = NetworkingClientImplementation(networkRequestHandler: NetworkRequestHandlerImplementation(urlSession: .init(configuration: .default)))
           ~~~ ^
           let
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Networking/NetworkingClient.swift:95:16: note: add '@MainActor' to make static property 'live' part of global actor 'MainActor'
    static var live = NetworkingClientImplementation(networkRequestHandler: NetworkRequestHandlerImplementation(urlSession: .init(configuration: .default)))
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Networking/NetworkingClient.swift:95:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static var live = NetworkingClientImplementation(networkRequestHandler: NetworkRequestHandlerImplementation(urlSession: .init(configuration: .default)))
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/PasskeysClient/PasskeysClient+Live.swift:6:16: warning: static property 'live' is not concurrency-safe because non-'Sendable' type 'PasskeysClient' may have shared mutable state; this is an error in the Swift 6 language mode
    static let live: Self = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/PasskeysClient/PasskeysClient.swift:5:8: note: consider making struct 'PasskeysClient' conform to the 'Sendable' protocol
struct PasskeysClient {
       ^
                      : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/PasskeysClient/PasskeysClient+Live.swift:6:16: note: add '@MainActor' to make static property 'live' part of global actor 'MainActor'
    static let live: Self = .init(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/PasskeysClient/PasskeysClient+Live.swift:6:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let live: Self = .init(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/PasskeysClient/PasskeysClient+Live.swift:6:16: warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
    static let live: Self = .init(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/PasskeysClient/PasskeysClient+Live.swift:17:28: warning: no 'async' operations occur within 'await' expression
            let delegate = await Delegate()
                           ^
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/PasskeysClient/PasskeysClient+Live.swift:40:28: warning: no 'async' operations occur within 'await' expression
            let delegate = await Delegate()
                           ^
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/PollingClient/PollingClient+Live.swift:5:16: warning: static property 'sessions' is not concurrency-safe because non-'Sendable' type 'PollingClient' may have shared mutable state; this is an error in the Swift 6 language mode
    static let sessions: PollingClient = .init(interval: 180, maxRetries: 5, queue: .sessionsPolling) { onSuccess, onFailure in
               ^
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/PollingClient/PollingClient.swift:3:13: note: class 'PollingClient' does not conform to the 'Sendable' protocol
final class PollingClient {
            ^
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/PollingClient/PollingClient+Live.swift:5:16: note: add '@MainActor' to make static property 'sessions' part of global actor 'MainActor'
    static let sessions: PollingClient = .init(interval: 180, maxRetries: 5, queue: .sessionsPolling) { onSuccess, onFailure in
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/PollingClient/PollingClient+Live.swift:5:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let sessions: PollingClient = .init(interval: 180, maxRetries: 5, queue: .sessionsPolling) { onSuccess, onFailure in
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/PollingClient/PollingClient+Live.swift:24:16: warning: static property 'memberSessions' is not concurrency-safe because non-'Sendable' type 'PollingClient' may have shared mutable state; this is an error in the Swift 6 language mode
    static let memberSessions: PollingClient = .init(interval: 180, maxRetries: 5, queue: .sessionsPolling) { onSuccess, onFailure in
               ^
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/PollingClient/PollingClient.swift:3:13: note: class 'PollingClient' does not conform to the 'Sendable' protocol
final class PollingClient {
            ^
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/PollingClient/PollingClient+Live.swift:24:16: note: add '@MainActor' to make static property 'memberSessions' part of global actor 'MainActor'
    static let memberSessions: PollingClient = .init(interval: 180, maxRetries: 5, queue: .sessionsPolling) { onSuccess, onFailure in
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/PollingClient/PollingClient+Live.swift:24:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let memberSessions: PollingClient = .init(interval: 180, maxRetries: 5, queue: .sessionsPolling) { onSuccess, onFailure in
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SharedModels/ClientInfo+Version.swift:2:16: warning: static property 'current' is not concurrency-safe because non-'Sendable' type 'Version' may have shared mutable state; this is an error in the Swift 6 language mode
    static let current: Self = .init(major: 0, minor: 104, patch: 0)
               ^
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SharedModels/Version.swift:3:15: note: consider making struct 'Version' conform to the 'Sendable' protocol
public struct Version: Encodable {
              ^
                                , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SharedModels/ClientInfo+Version.swift:2:16: note: add '@MainActor' to make static property 'current' part of global actor 'MainActor'
    static let current: Self = .init(major: 0, minor: 104, patch: 0)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SharedModels/ClientInfo+Version.swift:2:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let current: Self = .init(major: 0, minor: 104, patch: 0)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SharedModels/Errors/StytchAPIError.swift:4:14: warning: non-final class 'StytchAPIError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
public class StytchAPIError: StytchError, Decodable {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SharedModels/Errors/StytchAPIError.swift:18:16: warning: stored property 'errorType' of 'Sendable'-conforming class 'StytchAPIError' has non-sendable type 'StytchAPIErrorType'; this is an error in the Swift 6 language mode
    public let errorType: StytchAPIErrorType
               ^
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SharedModels/Errors/StytchAPIErrorType.swift:4:13: note: consider making enum 'StytchAPIErrorType' conform to the 'Sendable' protocol
public enum StytchAPIErrorType: String, Codable {
            ^
                                               , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SharedModels/Errors/StytchError.swift:4:14: warning: non-final class 'StytchError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
public class StytchError: Error, Equatable {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SharedModels/Errors/StytchError.swift:5:16: warning: stored property 'name' of 'Sendable'-conforming class 'StytchError' is mutable; this is an error in the Swift 6 language mode
    public var name: String
               ^
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SharedModels/Errors/StytchError.swift:22:14: warning: non-final class 'StytchAPIUnreachableError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
public class StytchAPIUnreachableError: StytchError {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SharedModels/Errors/StytchError.swift:29:14: warning: non-final class 'StytchAPISchemaError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
public class StytchAPISchemaError: StytchError {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SharedModels/Errors/StytchError.swift:36:14: warning: non-final class 'StytchSDKUsageError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
public class StytchSDKUsageError: StytchError {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SharedModels/Errors/StytchSDKError.swift:9:14: warning: non-final class 'StytchSDKError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
public class StytchSDKError: StytchError {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SharedModels/Errors/StytchSDKError.swift:170:14: warning: non-final class 'StytchSDKNotConfiguredError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
public class StytchSDKNotConfiguredError: StytchSDKError {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SharedModels/Errors/StytchSDKError.swift:185:14: warning: non-final class 'StytchUIError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
public class StytchUIError: StytchSDKError {}
             ^
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SharedModels/Errors/StytchSDKError.swift:187:14: warning: non-final class 'StytchUIInvalidConfiguration' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
public class StytchUIInvalidConfiguration: StytchUIError {}
             ^
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/SharedModels/Errors/StytchSDKError.swift:189:14: warning: non-final class 'StytchDeeplinkError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
public class StytchDeeplinkError: StytchSDKError {}
             ^
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StartupClient.swift:21:16: warning: static property 'router' is not concurrency-safe because non-'Sendable' type 'NetworkingRouter<StartupClient.BootstrapRoute>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let router: NetworkingRouter<BootstrapRoute> = .init {
               ^
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Networking/NetworkingRouter.swift:10:15: note: consider making generic struct 'NetworkingRouter' conform to the 'Sendable' protocol
public struct NetworkingRouter<Route: RouteType> {
              ^
                                                 : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StartupClient.swift:21:16: note: add '@MainActor' to make static property 'router' part of global actor 'MainActor'
    static let router: NetworkingRouter<BootstrapRoute> = .init {
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StartupClient.swift:21:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let router: NetworkingRouter<BootstrapRoute> = .init {
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StartupClient.swift:25:16: warning: static property 'expectedClientType' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    static var expectedClientType: ClientType?
               ^
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StartupClient.swift:25:16: note: convert 'expectedClientType' to a 'let' constant to make 'Sendable' shared state immutable
    static var expectedClientType: ClientType?
           ~~~ ^
           let
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StartupClient.swift:25:16: note: add '@MainActor' to make static property 'expectedClientType' part of global actor 'MainActor'
    static var expectedClientType: ClientType?
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StartupClient.swift:25:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static var expectedClientType: ClientType?
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StartupClient.swift:31:24: warning: static property 'isInitializedPublisher' is not concurrency-safe because non-'Sendable' type 'PassthroughSubject<InitializationStatus, Never>' may have shared mutable state; this is an error in the Swift 6 language mode
    private static let isInitializedPublisher = PassthroughSubject<InitializationStatus, Never>()
                       ^
Combine.PassthroughSubject:2:20: note: generic class 'PassthroughSubject' does not conform to the 'Sendable' protocol
final public class PassthroughSubject<Output, Failure> : Subject where Failure : Error {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StartupClient.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Combine'
import Combine
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StartupClient.swift:31:24: note: add '@MainActor' to make static property 'isInitializedPublisher' part of global actor 'MainActor'
    private static let isInitializedPublisher = PassthroughSubject<InitializationStatus, Never>()
                       ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StartupClient.swift:31:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    private static let isInitializedPublisher = PassthroughSubject<InitializationStatus, Never>()
                       ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StartupClient.swift:32:24: warning: static property 'bootstrapError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    private static var bootstrapError: Error?
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StartupClient.swift:32:24: note: convert 'bootstrapError' to a 'let' constant to make 'Sendable' shared state immutable
    private static var bootstrapError: Error?
                   ~~~ ^
                   let
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StartupClient.swift:32:24: note: add '@MainActor' to make static property 'bootstrapError' part of global actor 'MainActor'
    private static var bootstrapError: Error?
                       ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StartupClient.swift:32:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    private static var bootstrapError: Error?
                       ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StartupClient.swift:33:24: warning: static property 'sessionHydrationError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    private static var sessionHydrationError: Error?
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StartupClient.swift:33:24: note: convert 'sessionHydrationError' to a 'let' constant to make 'Sendable' shared state immutable
    private static var sessionHydrationError: Error?
                   ~~~ ^
                   let
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StartupClient.swift:33:24: note: add '@MainActor' to make static property 'sessionHydrationError' part of global actor 'MainActor'
    private static var sessionHydrationError: Error?
                       ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StartupClient.swift:33:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    private static var sessionHydrationError: Error?
                       ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchB2BClient/StytchB2BClient+DFP.swift:4:16: warning: static property 'dfp' is not concurrency-safe because non-'Sendable' type 'StytchB2BClient.DFP' may have shared mutable state; this is an error in the Swift 6 language mode
    static let dfp: DFP = .init()
               ^
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchB2BClient/StytchB2BClient+DFP.swift:8:12: note: consider making struct 'DFP' conform to the 'Sendable' protocol
    struct DFP {
           ^
               : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchB2BClient/StytchB2BClient+DFP.swift:4:16: note: add '@MainActor' to make static property 'dfp' part of global actor 'MainActor'
    static let dfp: DFP = .init()
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchB2BClient/StytchB2BClient+DFP.swift:4:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let dfp: DFP = .init()
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchB2BClient/StytchB2BClient.swift:18:25: warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    internal static var shared = StytchB2BClient()
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchB2BClient/StytchB2BClient.swift:18:25: note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
    internal static var shared = StytchB2BClient()
                    ~~~ ^
                    let
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchB2BClient/StytchB2BClient.swift:18:25: note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
    internal static var shared = StytchB2BClient()
                        ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchB2BClient/StytchB2BClient.swift:18:25: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    internal static var shared = StytchB2BClient()
                        ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchB2BClient/StytchB2BClient.swift:20:16: warning: static property 'router' is not concurrency-safe because non-'Sendable' type 'NetworkingRouter<StytchB2BClient.BaseRoute>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let router: NetworkingRouter<BaseRoute> = .init {
               ^
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Networking/NetworkingRouter.swift:10:15: note: consider making generic struct 'NetworkingRouter' conform to the 'Sendable' protocol
public struct NetworkingRouter<Route: RouteType> {
              ^
                                                 : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchB2BClient/StytchB2BClient.swift:20:16: note: add '@MainActor' to make static property 'router' part of global actor 'MainActor'
    static let router: NetworkingRouter<BaseRoute> = .init {
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchB2BClient/StytchB2BClient.swift:20:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let router: NetworkingRouter<BaseRoute> = .init {
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/Biometrics/LocalAuthenticationContextManager.swift:9:23: warning: static property 'laContext' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var laContext = LAContext()
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/Biometrics/LocalAuthenticationContextManager.swift:9:23: note: convert 'laContext' to a 'let' constant to make 'Sendable' shared state immutable
    public static var laContext = LAContext()
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/Biometrics/LocalAuthenticationContextManager.swift:9:23: note: add '@MainActor' to make static property 'laContext' part of global actor 'MainActor'
    public static var laContext = LAContext()
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/Biometrics/LocalAuthenticationContextManager.swift:9:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var laContext = LAContext()
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/Biometrics/LocalAuthenticationContextManager.swift:13:23: warning: static property 'localAuthenticationContext' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var localAuthenticationContext: LAContextEvaluating = laContext
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/Biometrics/LocalAuthenticationContextManager.swift:13:23: note: convert 'localAuthenticationContext' to a 'let' constant to make 'Sendable' shared state immutable
    public static var localAuthenticationContext: LAContextEvaluating = laContext
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/Biometrics/LocalAuthenticationContextManager.swift:13:23: note: add '@MainActor' to make static property 'localAuthenticationContext' part of global actor 'MainActor'
    public static var localAuthenticationContext: LAContextEvaluating = laContext
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/Biometrics/LocalAuthenticationContextManager.swift:13:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var localAuthenticationContext: LAContextEvaluating = laContext
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/DFP/StytchClient+DFP.swift:4:16: warning: static property 'dfp' is not concurrency-safe because non-'Sendable' type 'StytchClient.DFP' may have shared mutable state; this is an error in the Swift 6 language mode
    static let dfp: DFP = .init()
               ^
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/DFP/StytchClient+DFP.swift:8:12: note: consider making struct 'DFP' conform to the 'Sendable' protocol
    struct DFP {
           ^
               : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/DFP/StytchClient+DFP.swift:4:16: note: add '@MainActor' to make static property 'dfp' part of global actor 'MainActor'
    static let dfp: DFP = .init()
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/DFP/StytchClient+DFP.swift:4:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let dfp: DFP = .init()
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/StytchClient.swift:18:25: warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    internal static var shared = StytchClient()
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/StytchClient.swift:18:25: note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
    internal static var shared = StytchClient()
                    ~~~ ^
                    let
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/StytchClient.swift:18:25: note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
    internal static var shared = StytchClient()
                        ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/StytchClient.swift:18:25: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    internal static var shared = StytchClient()
                        ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/StytchClient.swift:20:16: warning: static property 'router' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    static var router: NetworkingRouter<BaseRoute> = .init {
               ^
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/StytchClient.swift:20:16: note: convert 'router' to a 'let' constant to make 'Sendable' shared state immutable
    static var router: NetworkingRouter<BaseRoute> = .init {
           ~~~ ^
           let
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/StytchClient.swift:20:16: note: add '@MainActor' to make static property 'router' part of global actor 'MainActor'
    static var router: NetworkingRouter<BaseRoute> = .init {
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/StytchClient.swift:20:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static var router: NetworkingRouter<BaseRoute> = .init {
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/WebAuthenticationSessionClient/WebAuthenticationSessionClient+Live.swift:6:16: warning: static property 'live' is not concurrency-safe because non-'Sendable' type 'WebAuthenticationSessionClient' may have shared mutable state; this is an error in the Swift 6 language mode
    static let live: Self = .init { parameters in
               ^
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/WebAuthenticationSessionClient/WebAuthenticationSessionClient.swift:5:8: note: consider making struct 'WebAuthenticationSessionClient' conform to the 'Sendable' protocol
struct WebAuthenticationSessionClient {
       ^
                                      : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/WebAuthenticationSessionClient/WebAuthenticationSessionClient+Live.swift:6:16: note: add '@MainActor' to make static property 'live' part of global actor 'MainActor'
    static let live: Self = .init { parameters in
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/WebAuthenticationSessionClient/WebAuthenticationSessionClient+Live.swift:6:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let live: Self = .init { parameters in
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/AppleOAuthClient/AppleOAuthClient+Live.swift:18:17: warning: sending 'controller' risks causing data races; this is an error in the Swift 6 language mode
                controller.performRequests()
~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/AppleOAuthClient/AppleOAuthClient+Live.swift:18:17: note: task-isolated 'controller' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
                controller.performRequests()
                ^~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/PasskeysClient/PasskeysClient+Live.swift:24:21: warning: sending 'controller' risks causing data races; this is an error in the Swift 6 language mode
                    controller.performRequests()
~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/PasskeysClient/PasskeysClient+Live.swift:24:21: note: task-isolated 'controller' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
                    controller.performRequests()
                    ^~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/PasskeysClient/PasskeysClient+Live.swift:49:25: warning: sending 'controller' risks causing data races; this is an error in the Swift 6 language mode
                        controller.performAutoFillAssistedRequests()
~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/PasskeysClient/PasskeysClient+Live.swift:49:25: note: task-isolated 'controller' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
                        controller.performAutoFillAssistedRequests()
                        ^~~~~~~~~~
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

/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/StytchClient.swift:18:25: warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    internal static var shared = StytchClient()
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/StytchClient.swift:18:25: note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
    internal static var shared = StytchClient()
                    ~~~ ^
                    let
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/StytchClient.swift:18:25: note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
    internal static var shared = StytchClient()
                        ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/StytchClient.swift:18:25: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    internal static var shared = StytchClient()
                        ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/StytchClient.swift:20:16: warning: static property 'router' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    static var router: NetworkingRouter<BaseRoute> = .init {
               ^
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/StytchClient.swift:20:16: note: convert 'router' to a 'let' constant to make 'Sendable' shared state immutable
    static var router: NetworkingRouter<BaseRoute> = .init {
           ~~~ ^
           let
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/StytchClient.swift:20:16: note: add '@MainActor' to make static property 'router' part of global actor 'MainActor'
    static var router: NetworkingRouter<BaseRoute> = .init {
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/StytchClient.swift:20:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static var router: NetworkingRouter<BaseRoute> = .init {
               ^
    nonisolated(unsafe)
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

/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/WebAuthenticationSessionClient/WebAuthenticationSessionClient+Live.swift:6:16: warning: static property 'live' is not concurrency-safe because non-'Sendable' type 'WebAuthenticationSessionClient' may have shared mutable state; this is an error in the Swift 6 language mode
    static let live: Self = .init { parameters in
               ^
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/WebAuthenticationSessionClient/WebAuthenticationSessionClient.swift:5:8: note: consider making struct 'WebAuthenticationSessionClient' conform to the 'Sendable' protocol
struct WebAuthenticationSessionClient {
       ^
                                      : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/WebAuthenticationSessionClient/WebAuthenticationSessionClient+Live.swift:6:16: note: add '@MainActor' to make static property 'live' part of global actor 'MainActor'
    static let live: Self = .init { parameters in
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/WebAuthenticationSessionClient/WebAuthenticationSessionClient+Live.swift:6:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let live: Self = .init { parameters in
               ^
    nonisolated(unsafe)
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

/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/WebAuthenticationSessionClient/WebAuthenticationSessionClientConfiguration.swift:25:104: warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            presentationContextProvider: presentationContextProvider ?? WebAuthenticationSessionClient.DefaultPresentationProvider(),
                                                                                                       ^
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/WebAuthenticationSessionClient/WebAuthenticationSessionClient+Live.swift:46:104: note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
    final class DefaultPresentationProvider: NSObject, ASWebAuthenticationPresentationContextProviding {
                                                                                                       ^
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/WebAuthenticationSessionClient/WebAuthenticationSessionClient+Live.swift:46:104: note: main actor isolation inferred from conformance to protocol 'ASWebAuthenticationPresentationContextProviding'
    final class DefaultPresentationProvider: NSObject, ASWebAuthenticationPresentationContextProviding {
                                                                                                       ^
SwiftDriverJobDiscovery normal arm64 Compiling RecaptchaInteropBidings.swift (in target 'RecaptchaEnterprise' from project 'RecaptchaEnterprise')
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

/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchB2BClient/StytchB2BClient+SSO/StytchB2BClient+SSO.swift:85:69: warning: sending 'parameters' risks causing data races; this is an error in the Swift 6 language mode
            return try await Current.webAuthenticationSessionClient.initiate(parameters: parameters)
                             ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchB2BClient/StytchB2BClient+SSO/StytchB2BClient+SSO.swift:85:69: note: sending task-isolated 'parameters' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
            return try await Current.webAuthenticationSessionClient.initiate(parameters: parameters)
                                                                    ^
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

/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchB2BClient/StytchB2BClient.swift:18:25: warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    internal static var shared = StytchB2BClient()
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchB2BClient/StytchB2BClient.swift:18:25: note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
    internal static var shared = StytchB2BClient()
                    ~~~ ^
                    let
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchB2BClient/StytchB2BClient.swift:18:25: note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
    internal static var shared = StytchB2BClient()
                        ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchB2BClient/StytchB2BClient.swift:18:25: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    internal static var shared = StytchB2BClient()
                        ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchB2BClient/StytchB2BClient.swift:20:16: warning: static property 'router' is not concurrency-safe because non-'Sendable' type 'NetworkingRouter<StytchB2BClient.BaseRoute>' may have shared mutable state; this is an error in the Swift 6 language mode
    static let router: NetworkingRouter<BaseRoute> = .init {
               ^
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Networking/NetworkingRouter.swift:10:15: note: consider making generic struct 'NetworkingRouter' conform to the 'Sendable' protocol
public struct NetworkingRouter<Route: RouteType> {
              ^
                                                 : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchB2BClient/StytchB2BClient.swift:20:16: note: add '@MainActor' to make static property 'router' part of global actor 'MainActor'
    static let router: NetworkingRouter<BaseRoute> = .init {
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchB2BClient/StytchB2BClient.swift:20:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let router: NetworkingRouter<BaseRoute> = .init {
               ^
    nonisolated(unsafe)
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

/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/Biometrics/LocalAuthenticationContextManager.swift:9:23: warning: static property 'laContext' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var laContext = LAContext()
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/Biometrics/LocalAuthenticationContextManager.swift:9:23: note: convert 'laContext' to a 'let' constant to make 'Sendable' shared state immutable
    public static var laContext = LAContext()
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/Biometrics/LocalAuthenticationContextManager.swift:9:23: note: add '@MainActor' to make static property 'laContext' part of global actor 'MainActor'
    public static var laContext = LAContext()
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/Biometrics/LocalAuthenticationContextManager.swift:9:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var laContext = LAContext()
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/Biometrics/LocalAuthenticationContextManager.swift:13:23: warning: static property 'localAuthenticationContext' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var localAuthenticationContext: LAContextEvaluating = laContext
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/Biometrics/LocalAuthenticationContextManager.swift:13:23: note: convert 'localAuthenticationContext' to a 'let' constant to make 'Sendable' shared state immutable
    public static var localAuthenticationContext: LAContextEvaluating = laContext
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/Biometrics/LocalAuthenticationContextManager.swift:13:23: note: add '@MainActor' to make static property 'localAuthenticationContext' part of global actor 'MainActor'
    public static var localAuthenticationContext: LAContextEvaluating = laContext
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/Biometrics/LocalAuthenticationContextManager.swift:13:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var localAuthenticationContext: LAContextEvaluating = laContext
                      ^
    nonisolated(unsafe)
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

/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/DFP/StytchClient+DFP.swift:4:16: warning: static property 'dfp' is not concurrency-safe because non-'Sendable' type 'StytchClient.DFP' may have shared mutable state; this is an error in the Swift 6 language mode
    static let dfp: DFP = .init()
               ^
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/DFP/StytchClient+DFP.swift:8:12: note: consider making struct 'DFP' conform to the 'Sendable' protocol
    struct DFP {
           ^
               : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/DFP/StytchClient+DFP.swift:4:16: note: add '@MainActor' to make static property 'dfp' part of global actor 'MainActor'
    static let dfp: DFP = .init()
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/StytchClient/DFP/StytchClient+DFP.swift:4:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let dfp: DFP = .init()
               ^
    nonisolated(unsafe)
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.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\ 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

/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.Organizations.Members.reactivate+AsyncVariants.generated.swift:10: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/StytchB2BClient.Organizations.Members.reactivate+AsyncVariants.generated.swift:12:47: note: closure captures 'self' which is accessible to code in the current task
                completion(.success(try await reactivate(memberId: memberId)))
                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.Organizations.Members.reactivate+AsyncVariants.generated.swift:24: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/StytchB2BClient.Organizations.Members.reactivate+AsyncVariants.generated.swift:26:52: note: closure captures 'self' which is accessible to code in the current task
                        promise(.success(try await reactivate(memberId: memberId)))
                                                   ^
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

/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.Organizations.Members.update+AsyncVariants.generated.swift:9: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/StytchB2BClient.Organizations.Members.update+AsyncVariants.generated.swift:11: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/StytchB2BClient.Organizations.Members.update+AsyncVariants.generated.swift:22: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/StytchB2BClient.Organizations.Members.update+AsyncVariants.generated.swift:24: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/StytchB2BClient.Organizations.delete+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/StytchB2BClient.Organizations.delete+AsyncVariants.generated.swift:9: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/StytchB2BClient.Organizations.delete+AsyncVariants.generated.swift:11:47: note: closure captures 'self' which is accessible to code in the current task
                completion(.success(try await delete()))
                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.Organizations.delete+AsyncVariants.generated.swift:22: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/StytchB2BClient.Organizations.delete+AsyncVariants.generated.swift:24:52: note: closure captures 'self' which is accessible to code in the current task
                        promise(.success(try await delete()))
                                                   ^
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

/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.Organizations.get+AsyncVariants.generated.swift:9: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/StytchB2BClient.Organizations.get+AsyncVariants.generated.swift:11:47: note: closure captures 'self' which is accessible to code in the current task
                completion(.success(try await get()))
                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.Organizations.get+AsyncVariants.generated.swift:22: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/StytchB2BClient.Organizations.get+AsyncVariants.generated.swift:24:52: note: closure captures 'self' which is accessible to code in the current task
                        promise(.success(try await get()))
                                                   ^
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

/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.Organizations.searchMembers+AsyncVariants.generated.swift:11: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/StytchB2BClient.Organizations.searchMembers+AsyncVariants.generated.swift:13:47: note: closure captures 'self' which is accessible to code in the current task
                completion(.success(try await searchMembers(parameters: parameters)))
                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.Organizations.searchMembers+AsyncVariants.generated.swift:26: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/StytchB2BClient.Organizations.searchMembers+AsyncVariants.generated.swift:28:52: note: closure captures 'self' which is accessible to code in the current task
                        promise(.success(try await searchMembers(parameters: parameters)))
                                                   ^
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

/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.Organizations.update+AsyncVariants.generated.swift:9: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/StytchB2BClient.Organizations.update+AsyncVariants.generated.swift:11:47: note: closure captures 'self' which is accessible to code in the current task
                completion(.success(try await update(updateParameters: updateParameters)))
                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.Organizations.update+AsyncVariants.generated.swift:22: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/StytchB2BClient.Organizations.update+AsyncVariants.generated.swift:24:77: note: closure captures 'updateParameters' which is accessible to code in the current task
                        promise(.success(try await update(updateParameters: updateParameters)))
                                                                            ^
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

/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.Passwords.Discovery.authenticate+AsyncVariants.generated.swift:10: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/StytchB2BClient.Passwords.Discovery.authenticate+AsyncVariants.generated.swift:12:47: note: closure captures 'self' which is accessible to code in the current task
                completion(.success(try await authenticate(parameters: parameters)))
                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.Passwords.Discovery.authenticate+AsyncVariants.generated.swift:24: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/StytchB2BClient.Passwords.Discovery.authenticate+AsyncVariants.generated.swift:26:52: note: closure captures 'self' which is accessible to code in the current task
                        promise(.success(try await authenticate(parameters: parameters)))
                                                   ^
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

/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.Passwords.Discovery.resetByEmail+AsyncVariants.generated.swift:10: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/StytchB2BClient.Passwords.Discovery.resetByEmail+AsyncVariants.generated.swift:12:47: note: closure captures 'self' which is accessible to code in the current task
                completion(.success(try await resetByEmail(parameters: parameters)))
                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.Passwords.Discovery.resetByEmail+AsyncVariants.generated.swift:24: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/StytchB2BClient.Passwords.Discovery.resetByEmail+AsyncVariants.generated.swift:26:52: note: closure captures 'self' which is accessible to code in the current task
                        promise(.success(try await resetByEmail(parameters: parameters)))
                                                   ^
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

/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.Passwords.Discovery.resetByEmailStart+AsyncVariants.generated.swift:10: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/StytchB2BClient.Passwords.Discovery.resetByEmailStart+AsyncVariants.generated.swift:12:47: note: closure captures 'self' which is accessible to code in the current task
                completion(.success(try await resetByEmailStart(parameters: parameters)))
                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.Passwords.Discovery.resetByEmailStart+AsyncVariants.generated.swift:24: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/StytchB2BClient.Passwords.Discovery.resetByEmailStart+AsyncVariants.generated.swift:26:52: note: closure captures 'self' which is accessible to code in the current task
                        promise(.success(try await resetByEmailStart(parameters: parameters)))
                                                   ^
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

/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.Passwords.authenticate+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/StytchB2BClient.Passwords.authenticate+AsyncVariants.generated.swift:17:47: note: closure captures 'self' which is accessible to code in the current task
                completion(.success(try await authenticate(parameters: parameters)))
                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.Passwords.authenticate+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/StytchB2BClient.Passwords.authenticate+AsyncVariants.generated.swift:36:52: note: closure captures 'self' which is accessible to code in the current task
                        promise(.success(try await authenticate(parameters: parameters)))
                                                   ^
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

/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.Passwords.resetByEmail+AsyncVariants.generated.swift:11: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/StytchB2BClient.Passwords.resetByEmail+AsyncVariants.generated.swift:13:47: note: closure captures 'self' which is accessible to code in the current task
                completion(.success(try await resetByEmail(parameters: parameters)))
                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.Passwords.resetByEmail+AsyncVariants.generated.swift:26: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/StytchB2BClient.Passwords.resetByEmail+AsyncVariants.generated.swift:28:52: note: closure captures 'self' which is accessible to code in the current task
                        promise(.success(try await resetByEmail(parameters: parameters)))
                                                   ^
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

/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.Passwords.resetByEmailStart+AsyncVariants.generated.swift:9: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/StytchB2BClient.Passwords.resetByEmailStart+AsyncVariants.generated.swift:11:47: note: closure captures 'self' which is accessible to code in the current task
                completion(.success(try await resetByEmailStart(parameters: parameters)))
                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.Passwords.resetByEmailStart+AsyncVariants.generated.swift:22: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/StytchB2BClient.Passwords.resetByEmailStart+AsyncVariants.generated.swift:24:52: note: closure captures 'self' which is accessible to code in the current task
                        promise(.success(try await resetByEmailStart(parameters: parameters)))
                                                   ^
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

/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.Passwords.resetByExistingPassword+AsyncVariants.generated.swift:11: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/StytchB2BClient.Passwords.resetByExistingPassword+AsyncVariants.generated.swift:13:47: note: closure captures 'self' which is accessible to code in the current task
                completion(.success(try await resetByExistingPassword(parameters: parameters)))
                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.Passwords.resetByExistingPassword+AsyncVariants.generated.swift:26: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/StytchB2BClient.Passwords.resetByExistingPassword+AsyncVariants.generated.swift:28:52: note: closure captures 'self' which is accessible to code in the current task
                        promise(.success(try await resetByExistingPassword(parameters: parameters)))
                                                   ^
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

/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.Passwords.resetBySession+AsyncVariants.generated.swift:11: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/StytchB2BClient.Passwords.resetBySession+AsyncVariants.generated.swift:13:47: note: closure captures 'self' which is accessible to code in the current task
                completion(.success(try await resetBySession(parameters: parameters)))
                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.Passwords.resetBySession+AsyncVariants.generated.swift:26: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/StytchB2BClient.Passwords.resetBySession+AsyncVariants.generated.swift:28:52: note: closure captures 'self' which is accessible to code in the current task
                        promise(.success(try await resetBySession(parameters: parameters)))
                                                   ^
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

/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.Passwords.strengthCheck+AsyncVariants.generated.swift:18: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/StytchB2BClient.Passwords.strengthCheck+AsyncVariants.generated.swift:20:47: note: closure captures 'self' which is accessible to code in the current task
                completion(.success(try await strengthCheck(parameters: parameters)))
                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.Passwords.strengthCheck+AsyncVariants.generated.swift:40: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/StytchB2BClient.Passwords.strengthCheck+AsyncVariants.generated.swift:42:52: note: closure captures 'self' which is accessible to code in the current task
                        promise(.success(try await strengthCheck(parameters: parameters)))
                                                   ^
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

/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.RBAC.allPermissions+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/StytchB2BClient.RBAC.allPermissions+AsyncVariants.generated.swift:17:47: note: closure captures 'self' which is accessible to code in the current task
                completion(.success(try await allPermissions()))
                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.RBAC.allPermissions+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/StytchB2BClient.RBAC.allPermissions+AsyncVariants.generated.swift:36:52: note: closure captures 'self' which is accessible to code in the current task
                        promise(.success(try await allPermissions()))
                                                   ^
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

/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.RBAC.isAuthorized+AsyncVariants.generated.swift:16: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/StytchB2BClient.RBAC.isAuthorized+AsyncVariants.generated.swift:18:47: note: closure captures 'self' which is accessible to code in the current task
                completion(.success(try await isAuthorized(resourceId: resourceId, action: action)))
                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.RBAC.isAuthorized+AsyncVariants.generated.swift:36: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/StytchB2BClient.RBAC.isAuthorized+AsyncVariants.generated.swift:38:52: note: closure captures 'self' which is accessible to code in the current task
                        promise(.success(try await isAuthorized(resourceId: resourceId, action: action)))
                                                   ^
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

/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.RecoveryCodes.get+AsyncVariants.generated.swift:9: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/StytchB2BClient.RecoveryCodes.get+AsyncVariants.generated.swift:11:47: note: closure captures 'self' which is accessible to code in the current task
                completion(.success(try await get()))
                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.RecoveryCodes.get+AsyncVariants.generated.swift:22: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/StytchB2BClient.RecoveryCodes.get+AsyncVariants.generated.swift:24:52: note: closure captures 'self' which is accessible to code in the current task
                        promise(.success(try await get()))
                                                   ^
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

/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.RecoveryCodes.recover+AsyncVariants.generated.swift:9: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/StytchB2BClient.RecoveryCodes.recover+AsyncVariants.generated.swift:11:47: note: closure captures 'self' which is accessible to code in the current task
                completion(.success(try await recover(parameters: parameters)))
                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.RecoveryCodes.recover+AsyncVariants.generated.swift:22: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/StytchB2BClient.RecoveryCodes.recover+AsyncVariants.generated.swift:24:52: note: closure captures 'self' which is accessible to code in the current task
                        promise(.success(try await recover(parameters: parameters)))
                                                   ^
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

/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.RecoveryCodes.rotate+AsyncVariants.generated.swift:9: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/StytchB2BClient.RecoveryCodes.rotate+AsyncVariants.generated.swift:11:47: note: closure captures 'self' which is accessible to code in the current task
                completion(.success(try await rotate()))
                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.RecoveryCodes.rotate+AsyncVariants.generated.swift:22: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/StytchB2BClient.RecoveryCodes.rotate+AsyncVariants.generated.swift:24:52: note: closure captures 'self' which is accessible to code in the current task
                        promise(.success(try await rotate()))
                                                   ^
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

/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.SCIM.createConnection+AsyncVariants.generated.swift:11: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/StytchB2BClient.SCIM.createConnection+AsyncVariants.generated.swift:13:47: note: closure captures 'self' which is accessible to code in the current task
                completion(.success(try await createConnection(parameters: parameters)))
                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.SCIM.createConnection+AsyncVariants.generated.swift:26: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/StytchB2BClient.SCIM.createConnection+AsyncVariants.generated.swift:28:52: note: closure captures 'self' which is accessible to code in the current task
                        promise(.success(try await createConnection(parameters: parameters)))
                                                   ^
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

/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.SCIM.deleteConnection+AsyncVariants.generated.swift:11: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/StytchB2BClient.SCIM.deleteConnection+AsyncVariants.generated.swift:13:47: note: closure captures 'self' which is accessible to code in the current task
                completion(.success(try await deleteConnection(connectionId: connectionId)))
                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.SCIM.deleteConnection+AsyncVariants.generated.swift:26: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/StytchB2BClient.SCIM.deleteConnection+AsyncVariants.generated.swift:28:52: note: closure captures 'self' which is accessible to code in the current task
                        promise(.success(try await deleteConnection(connectionId: connectionId)))
                                                   ^
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

/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.SCIM.getConnection+AsyncVariants.generated.swift:11: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/StytchB2BClient.SCIM.getConnection+AsyncVariants.generated.swift:13:47: note: closure captures 'self' which is accessible to code in the current task
                completion(.success(try await getConnection()))
                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.SCIM.getConnection+AsyncVariants.generated.swift:26: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/StytchB2BClient.SCIM.getConnection+AsyncVariants.generated.swift:28:52: note: closure captures 'self' which is accessible to code in the current task
                        promise(.success(try await getConnection()))
                                                   ^
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

/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.SCIM.getConnectionGroups+AsyncVariants.generated.swift:11: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/StytchB2BClient.SCIM.getConnectionGroups+AsyncVariants.generated.swift:13:47: note: closure captures 'self' which is accessible to code in the current task
                completion(.success(try await getConnectionGroups(parameters: parameters)))
                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/Generated/StytchB2BClient.SCIM.getConnectionGroups+AsyncVariants.generated.swift:26: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/StytchB2BClient.SCIM.getConnectionGroups+AsyncVariants.generated.swift:28:52: note: closure captures 'self' which is accessible to code in the current task
                        promise(.success(try await getConnectionGroups(parameters: parameters)))
                                                   ^
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')
SwiftDriver\ Compilation RecaptchaEnterprise normal arm64 com.apple.xcode.tools.swift.compiler (in target 'RecaptchaEnterprise' from project 'RecaptchaEnterprise')
    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 RecaptchaEnterprise -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RecaptchaEnterprise.build/Debug-iphoneos/RecaptchaEnterprise.build/Objects-normal/arm64/RecaptchaEnterprise.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/RecaptchaInterop.modulemap -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/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -target arm64-apple-ios15.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-iphoneos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -parse-as-library -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RecaptchaEnterprise.build/Debug-iphoneos/RecaptchaEnterprise.build/Objects-normal/arm64/RecaptchaEnterprise-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/RecaptchaEnterprise.build/Debug-iphoneos/RecaptchaEnterprise.build/Objects-normal/arm64/RecaptchaEnterprise.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/RecaptchaEnterprise.build/Debug-iphoneos/RecaptchaEnterprise.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RecaptchaEnterprise.build/Debug-iphoneos/RecaptchaEnterprise.build/Objects-normal/arm64/RecaptchaEnterprise_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/interop-ios-for-google-sdks/RecaptchaEnterprise/RecaptchaInterop/Public -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RecaptchaEnterprise.build/Debug-iphoneos/RecaptchaEnterprise.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RecaptchaEnterprise.build/Debug-iphoneos/RecaptchaEnterprise.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RecaptchaEnterprise.build/Debug-iphoneos/RecaptchaEnterprise.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/RecaptchaEnterprise.build/Debug-iphoneos/RecaptchaEnterprise.build/Objects-normal/arm64/RecaptchaEnterprise-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')
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/RecaptchaEnterprise.o normal (in target 'RecaptchaEnterprise' from project 'RecaptchaEnterprise')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/recaptcha-enterprise-mobile-sdk
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-ios15.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -O0 -w -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RecaptchaEnterprise.build/Debug-iphoneos/RecaptchaEnterprise.build/Objects-normal/arm64/RecaptchaEnterprise.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RecaptchaEnterprise.build/Debug-iphoneos/RecaptchaEnterprise.build/Objects-normal/arm64/RecaptchaEnterprise_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RecaptchaEnterprise.build/Debug-iphoneos/RecaptchaEnterprise.build/Objects-normal/arm64/RecaptchaEnterprise_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RecaptchaEnterprise.build/Debug-iphoneos/RecaptchaEnterprise.build/Objects-normal/arm64/RecaptchaEnterprise.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/RecaptchaEnterprise.o
ExtractAppIntentsMetadata (in target 'RecaptchaEnterprise' from project 'RecaptchaEnterprise')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/recaptcha-enterprise-mobile-sdk
    /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 RecaptchaEnterprise --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk --xcode-version 16E140 --platform-family iOS --deployment-target 15.0 --bundle-identifier recaptcha-enterprise-mobile-sdk.RecaptchaEnterprise --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/RecaptchaEnterprise.appintents --target-triple arm64-apple-ios15.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/RecaptchaEnterprise.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RecaptchaEnterprise.build/Debug-iphoneos/RecaptchaEnterprise.build/Objects-normal/arm64/RecaptchaEnterprise_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RecaptchaEnterprise.build/Debug-iphoneos/RecaptchaEnterprise.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RecaptchaEnterprise.build/Debug-iphoneos/RecaptchaEnterprise.build/Objects-normal/arm64/RecaptchaEnterprise.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RecaptchaEnterprise.build/Debug-iphoneos/RecaptchaEnterprise.build/RecaptchaEnterprise.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RecaptchaEnterprise.build/Debug-iphoneos/RecaptchaEnterprise.build/RecaptchaEnterprise.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RecaptchaEnterprise.build/Debug-iphoneos/RecaptchaEnterprise.build/Objects-normal/arm64/RecaptchaEnterprise.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2026-02-25 19:15:05.974 appintentsmetadataprocessor[980:5452] Starting appintentsmetadataprocessor export
2026-02-25 19:15:06.015 appintentsmetadataprocessor[980:5452] Extracted no relevant App Intents symbols, skipping writing output
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/RecaptchaEnterprise.o (in target 'RecaptchaEnterprise' from project 'RecaptchaEnterprise')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/recaptcha-enterprise-mobile-sdk
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/RecaptchaEnterprise.o
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/RecaptchaEnterpriseWrapper.o normal (in target 'RecaptchaEnterpriseWrapper' from project 'RecaptchaEnterprise')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/recaptcha-enterprise-mobile-sdk
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-ios15.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -O0 -w -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RecaptchaEnterprise.build/Debug-iphoneos/RecaptchaEnterpriseWrapper.build/Objects-normal/arm64/RecaptchaEnterpriseWrapper.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RecaptchaEnterprise.build/Debug-iphoneos/RecaptchaEnterpriseWrapper.build/Objects-normal/arm64/RecaptchaEnterpriseWrapper_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/RecaptchaEnterprise.build/Debug-iphoneos/RecaptchaEnterpriseWrapper.build/Objects-normal/arm64/RecaptchaEnterpriseWrapper_dependency_info.dat -fobjc-arc -fobjc-link-runtime -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/RecaptchaEnterpriseWrapper.o
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/RecaptchaEnterpriseWrapper.o (in target 'RecaptchaEnterpriseWrapper' from project 'RecaptchaEnterprise')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/recaptcha-enterprise-mobile-sdk
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/RecaptchaEnterpriseWrapper.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')
SwiftDriverJobDiscovery 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 (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 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 (in target 'StytchCore' from project 'Stytch')
SwiftDriverJobDiscovery normal arm64 Emitting module for StytchCore (in target 'StytchCore' from project 'Stytch')
SwiftDriver\ Compilation\ Requirements 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-Swift-Compilation-Requirements -- /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-iphoneos/StytchCore.build/Objects-normal/arm64/StytchCore.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/RecaptchaInterop.modulemap -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/RecaptchaEnterpriseWrapper.modulemap -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/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -target arm64-apple-ios15.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-iphoneos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Stytch.build/Debug-iphoneos/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-iphoneos/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-iphoneos/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-iphoneos/StytchCore.build/Objects-normal/arm64/StytchCore_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/interop-ios-for-google-sdks/RecaptchaEnterprise/RecaptchaInterop/Public -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/recaptcha-enterprise-mobile-sdk/Sources/Public -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Stytch.build/Debug-iphoneos/StytchCore.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Stytch.build/Debug-iphoneos/StytchCore.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Stytch.build/Debug-iphoneos/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-iphoneos/StytchCore.build/Objects-normal/arm64/StytchCore-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/StytchCore-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Stytch.build/Debug-iphoneos/StytchCore.build/Objects-normal/arm64/StytchCore-Swift.h (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Stytch.build/Debug-iphoneos/StytchCore.build/Objects-normal/arm64/StytchCore-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/StytchCore-Swift.h
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/StytchCore.swiftmodule/arm64-apple-ios.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Stytch.build/Debug-iphoneos/StytchCore.build/Objects-normal/arm64/StytchCore.swiftdoc (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace
    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/Stytch.build/Debug-iphoneos/StytchCore.build/Objects-normal/arm64/StytchCore.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/StytchCore.swiftmodule/arm64-apple-ios.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/StytchCore.swiftmodule/arm64-apple-ios.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Stytch.build/Debug-iphoneos/StytchCore.build/Objects-normal/arm64/StytchCore.abi.json (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace
    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/Stytch.build/Debug-iphoneos/StytchCore.build/Objects-normal/arm64/StytchCore.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/StytchCore.swiftmodule/arm64-apple-ios.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/StytchCore.swiftmodule/arm64-apple-ios.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Stytch.build/Debug-iphoneos/StytchCore.build/Objects-normal/arm64/StytchCore.swiftmodule (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace
    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/Stytch.build/Debug-iphoneos/StytchCore.build/Objects-normal/arm64/StytchCore.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/StytchCore.swiftmodule/arm64-apple-ios.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/StytchCore.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Stytch.build/Debug-iphoneos/StytchCore.build/Objects-normal/arm64/StytchCore.swiftsourceinfo (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace
    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/Stytch.build/Debug-iphoneos/StytchCore.build/Objects-normal/arm64/StytchCore.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/StytchCore.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo
SwiftDriverJobDiscovery 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 (in target 'StytchCore' from project 'Stytch')
SwiftDriverJobDiscovery 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 (in target 'StytchCore' from project 'Stytch')
SwiftDriverJobDiscovery 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 (in target 'StytchCore' from project 'Stytch')
SwiftDriverJobDiscovery 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 (in target 'StytchCore' from project 'Stytch')
SwiftDriver\ Compilation 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-Swift-Compilation -- /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-iphoneos/StytchCore.build/Objects-normal/arm64/StytchCore.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/RecaptchaInterop.modulemap -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/RecaptchaEnterpriseWrapper.modulemap -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/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -target arm64-apple-ios15.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-iphoneos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Stytch.build/Debug-iphoneos/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-iphoneos/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-iphoneos/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-iphoneos/StytchCore.build/Objects-normal/arm64/StytchCore_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/interop-ios-for-google-sdks/RecaptchaEnterprise/RecaptchaInterop/Public -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/recaptcha-enterprise-mobile-sdk/Sources/Public -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Stytch.build/Debug-iphoneos/StytchCore.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Stytch.build/Debug-iphoneos/StytchCore.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Stytch.build/Debug-iphoneos/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-iphoneos/StytchCore.build/Objects-normal/arm64/StytchCore-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/StytchCore.o normal (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-ios15.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Stytch.build/Debug-iphoneos/StytchCore.build/Objects-normal/arm64/StytchCore.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Stytch.build/Debug-iphoneos/StytchCore.build/Objects-normal/arm64/StytchCore_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Stytch.build/Debug-iphoneos/StytchCore.build/Objects-normal/arm64/StytchCore_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Stytch.build/Debug-iphoneos/StytchCore.build/Objects-normal/arm64/StytchCore.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/StytchCore.o
ExtractAppIntentsMetadata (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace
    /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 StytchCore --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk --xcode-version 16E140 --platform-family iOS --deployment-target 15.0 --bundle-identifier spi-builder-workspace.StytchCore --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/StytchCore.appintents --target-triple arm64-apple-ios15.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/StytchCore.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Stytch.build/Debug-iphoneos/StytchCore.build/Objects-normal/arm64/StytchCore_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Stytch.build/Debug-iphoneos/StytchCore.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Stytch.build/Debug-iphoneos/StytchCore.build/Objects-normal/arm64/StytchCore.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Stytch.build/Debug-iphoneos/StytchCore.build/StytchCore.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Stytch.build/Debug-iphoneos/StytchCore.build/StytchCore.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Stytch.build/Debug-iphoneos/StytchCore.build/Objects-normal/arm64/StytchCore.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2026-02-25 19:15:08.288 appintentsmetadataprocessor[985:5616] Starting appintentsmetadataprocessor export
2026-02-25 19:15:08.324 appintentsmetadataprocessor[985:5616] Extracted no relevant App Intents symbols, skipping writing output
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/StytchCore.o (in target 'StytchCore' from project 'Stytch')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/StytchCore.o
** BUILD SUCCEEDED **
Build complete.
{
  "dependencies" : [
    {
      "identity" : "phonenumberkit",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "4.1.4",
            "upper_bound" : "5.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/marmelroy/PhoneNumberKit"
    },
    {
      "identity" : "recaptcha-enterprise-mobile-sdk",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "18.8.1",
            "upper_bound" : "19.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/GoogleCloudPlatform/recaptcha-enterprise-mobile-sdk"
    },
    {
      "identity" : "swiftyjson",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "5.0.2",
            "upper_bound" : "6.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/SwiftyJSON/SwiftyJSON.git"
    },
    {
      "identity" : "stytch-ios-dfp",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.0.5",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/stytchauth/stytch-ios-dfp.git"
    }
  ],
  "manifest_display_name" : "Stytch",
  "name" : "Stytch",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "15.0"
    },
    {
      "name" : "macos",
      "version" : "12.0"
    },
    {
      "name" : "tvos",
      "version" : "15.0"
    },
    {
      "name" : "watchos",
      "version" : "8.0"
    }
  ],
  "products" : [
    {
      "name" : "StytchCore",
      "targets" : [
        "StytchCore"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "StytchUI",
      "targets" : [
        "StytchUI"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "StytchUIUnitTests",
      "module_type" : "SwiftTarget",
      "name" : "StytchUIUnitTests",
      "path" : "Tests/StytchUIUnitTests",
      "sources" : [
        "StytchB2BUIClientTests/B2BBaseTestCase.swift",
        "StytchB2BUIClientTests/StytchB2BUIClient+ProductOrderingTests.swift",
        "StytchB2BUIClientTests/StytchB2BUIClient+ValidProductsTests.swift",
        "StytchUIClientTests/AuthInputViewModelTests.swift",
        "StytchUIClientTests/BaseTestCase.swift",
        "StytchUIClientTests/EmailConfirmationStateTests.swift",
        "StytchUIClientTests/EmailConfirmationViewModelTests.swift",
        "StytchUIClientTests/OAuthViewModelTests.swift",
        "StytchUIClientTests/OTPCodeViewModelTest.swift",
        "StytchUIClientTests/PasswordViewModelTests.swift",
        "StytchUIClientTests/Spies.swift"
      ],
      "target_dependencies" : [
        "StytchCore",
        "StytchUI"
      ],
      "type" : "test"
    },
    {
      "c99name" : "StytchUI",
      "module_type" : "SwiftTarget",
      "name" : "StytchUI",
      "path" : "Sources/StytchUI",
      "product_dependencies" : [
        "PhoneNumberKit"
      ],
      "product_memberships" : [
        "StytchUI"
      ],
      "resources" : [
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/StytchUI/PrivacyInfo.xcprivacy",
          "rule" : {
            "process" : {
            }
          }
        }
      ],
      "sources" : [
        "Components/AttrStringComponent.swift",
        "Components/Button.swift",
        "Components/ImageAsset.swift",
        "Components/LUDSIndicator.swift",
        "Components/LabelSeparatorView.swift",
        "Components/OTPCodeEntryView.swift",
        "Components/ProgressBar.swift",
        "Components/SpacerView.swift",
        "Components/ZXCVBNIndicator.swift",
        "Extensions/Array+StytchUI.swift",
        "Extensions/CGFloat+StytchUI.swift",
        "Extensions/StytchError+StytchUI.swift",
        "Extensions/UIColor+StytchUI.swift",
        "Extensions/UIEdgeInsets+StytchUI.swift",
        "Extensions/UIFont+IBMPlexSans.swift",
        "Extensions/UILabel+StytchUI.swift",
        "Extensions/UIViewController+StytchUI.swift",
        "Inputs/BorderedTextField.swift",
        "Inputs/EmailInput.swift",
        "Inputs/PhoneNumberInput.swift",
        "Inputs/SecureTextInput.swift",
        "Inputs/TextInputView.swift",
        "Localization/LocalizationManager.swift",
        "Previews.swift",
        "Shared/BaseViewController.swift",
        "Shared/ErrorPublisher.swift",
        "Shared/EventsClient+UI.swift",
        "Shared/FontLoader.swift",
        "Shared/Navigation.swift",
        "Shared/OTPEntryViewControllerProtocol.swift",
        "Shared/SelectionViewController/SelectionTableViewCell.swift",
        "Shared/SelectionViewController/SelectionViewController.swift",
        "Shared/StytchTheme.swift",
        "StytchB2BUIClient/Shared/AuthenticationOperations.swift",
        "StytchB2BUIClient/Shared/B2BMFAAuthenticateResponseDataType+MFA.swift",
        "StytchB2BUIClient/Shared/B2BPasswordsViewModel.swift",
        "StytchB2BUIClient/Shared/BaseViewController/BaseViewController+B2B-Helpers.swift",
        "StytchB2BUIClient/Shared/BaseViewController/BaseViewController+Discovery.swift",
        "StytchB2BUIClient/Shared/BaseViewController/BaseViewController+MFA.swift",
        "StytchB2BUIClient/Shared/BaseViewController/BaseViewController+SSO.swift",
        "StytchB2BUIClient/Shared/StateManagement/B2BAuthenticationManager.swift",
        "StytchB2BUIClient/Shared/StateManagement/DiscoveryManager.swift",
        "StytchB2BUIClient/Shared/StateManagement/MemberManager.swift",
        "StytchB2BUIClient/Shared/StateManagement/OrganizationManager.swift",
        "StytchB2BUIClient/Shared/StateManagement/SSODiscoveryManager.swift",
        "StytchB2BUIClient/StytchB2BUIClient/StytchB2BUIClient+Configuration.swift",
        "StytchB2BUIClient/StytchB2BUIClient/StytchB2BUIClient+ProductOrdering.swift",
        "StytchB2BUIClient/StytchB2BUIClient/StytchB2BUIClient+ValidProducts.swift",
        "StytchB2BUIClient/StytchB2BUIClient/StytchB2BUIClient.swift",
        "StytchB2BUIClient/ViewControllers/B2BAuthHomeViewController/B2BAuthHomeViewController.swift",
        "StytchB2BUIClient/ViewControllers/B2BAuthHomeViewController/B2BAuthHomeViewModel.swift",
        "StytchB2BUIClient/ViewControllers/B2BAuthHomeViewController/B2BEmailViewController/B2BEmailViewController.swift",
        "StytchB2BUIClient/ViewControllers/B2BAuthHomeViewController/B2BEmailViewController/B2BEmailViewModel.swift",
        "StytchB2BUIClient/ViewControllers/B2BAuthHomeViewController/B2BOAuthViewController/B2BOAuthViewController.swift",
        "StytchB2BUIClient/ViewControllers/B2BAuthHomeViewController/B2BOAuthViewController/B2BOAuthViewModel.swift",
        "StytchB2BUIClient/ViewControllers/B2BAuthHomeViewController/B2BPasswordsHomeViewController/B2BPasswordsHomeViewController.swift",
        "StytchB2BUIClient/ViewControllers/B2BAuthHomeViewController/B2BSSOViewController/B2BSSOViewController.swift",
        "StytchB2BUIClient/ViewControllers/B2BAuthHomeViewController/B2BSSOViewController/B2BSSOViewModel.swift",
        "StytchB2BUIClient/ViewControllers/B2BAuthRootViewController.swift",
        "StytchB2BUIClient/ViewControllers/B2BEmailConfirmationViewController/B2BEmailConfirmationViewController.swift",
        "StytchB2BUIClient/ViewControllers/B2BEmailConfirmationViewController/B2BEmailConfirmationViewModel.swift",
        "StytchB2BUIClient/ViewControllers/Discovery/CreateOrganizationsViewController/CreateOrganizationsViewController.swift",
        "StytchB2BUIClient/ViewControllers/Discovery/CreateOrganizationsViewController/CreateOrganizationsViewModel.swift",
        "StytchB2BUIClient/ViewControllers/Discovery/DiscoveredOrganizations/DiscoveredOrganizationTableViewCell.swift",
        "StytchB2BUIClient/ViewControllers/Discovery/DiscoveredOrganizations/DiscoveredOrganizationsViewController.swift",
        "StytchB2BUIClient/ViewControllers/Discovery/DiscoveredOrganizations/DiscoveredOrganizationsViewModel.swift",
        "StytchB2BUIClient/ViewControllers/Discovery/NoDiscoveredOrganizationsViewController/NoDiscoveredOrganizationsViewController.swift",
        "StytchB2BUIClient/ViewControllers/Discovery/NoDiscoveredOrganizationsViewController/NoDiscoveredOrganizationsViewModel.swift",
        "StytchB2BUIClient/ViewControllers/EmailMethodSelectionViewController/EmailMethodSelectionViewController.swift",
        "StytchB2BUIClient/ViewControllers/EmailMethodSelectionViewController/EmailMethodSelectionViewModel.swift",
        "StytchB2BUIClient/ViewControllers/EmailOTPEntryViewController/EmailOTPEntryViewController.swift",
        "StytchB2BUIClient/ViewControllers/EmailOTPEntryViewController/EmailOTPEntryViewModel.swift",
        "StytchB2BUIClient/ViewControllers/ErrorViewController/ErrorViewController.swift",
        "StytchB2BUIClient/ViewControllers/ErrorViewController/ErrorViewModel.swift",
        "StytchB2BUIClient/ViewControllers/MFAEnrollmentSelectionViewController/MFAEnrollmentSelectionViewController.swift",
        "StytchB2BUIClient/ViewControllers/MFAEnrollmentSelectionViewController/MFAEnrollmentSelectionViewModel.swift",
        "StytchB2BUIClient/ViewControllers/PasswordAuthenticateViewController/PasswordAuthenticateViewController.swift",
        "StytchB2BUIClient/ViewControllers/PasswordForgotViewController/PasswordForgotViewController.swift",
        "StytchB2BUIClient/ViewControllers/PasswordForgotViewController/PasswordForgotViewModel.swift",
        "StytchB2BUIClient/ViewControllers/PasswordResetViewController/PasswordResetViewController.swift",
        "StytchB2BUIClient/ViewControllers/PasswordResetViewController/PasswordResetViewModel.swift",
        "StytchB2BUIClient/ViewControllers/RecoveryCodeEntryViewController/RecoveryCodeEntryViewController.swift",
        "StytchB2BUIClient/ViewControllers/RecoveryCodeEntryViewController/RecoveryCodeEntryViewModel.swift",
        "StytchB2BUIClient/ViewControllers/RecoveryCodeEntryViewController/RecoveryCodeInput.swift",
        "StytchB2BUIClient/ViewControllers/RecoveryCodeSaveViewController/RecoveryCodeSaveViewController.swift",
        "StytchB2BUIClient/ViewControllers/RecoveryCodeSaveViewController/RecoveryCodeSaveViewModel.swift",
        "StytchB2BUIClient/ViewControllers/RecoveryCodeSaveViewController/RecoveryCodesListView.swift",
        "StytchB2BUIClient/ViewControllers/SMSOTPEnrollmentViewController/SMSOTPEnrollmentViewController.swift",
        "StytchB2BUIClient/ViewControllers/SMSOTPEnrollmentViewController/SMSOTPEnrollmentViewModel.swift",
        "StytchB2BUIClient/ViewControllers/SMSOTPEntryViewController/SMSOTPEntryViewController.swift",
        "StytchB2BUIClient/ViewControllers/SMSOTPEntryViewController/SMSOTPEntryViewModel.swift",
        "StytchB2BUIClient/ViewControllers/SSODiscovery/SSODiscoveryEmailViewController/SSODiscoveryEmailViewController.swift",
        "StytchB2BUIClient/ViewControllers/SSODiscovery/SSODiscoveryEmailViewController/SSODiscoveryEmailViewModel.swift",
        "StytchB2BUIClient/ViewControllers/SSODiscovery/SSODiscoveryFallbackViewController/OrganizationSlugInput.swift",
        "StytchB2BUIClient/ViewControllers/SSODiscovery/SSODiscoveryFallbackViewController/SSODiscoveryFallbackViewController.swift",
        "StytchB2BUIClient/ViewControllers/SSODiscovery/SSODiscoveryFallbackViewController/SSODiscoveryFallbackViewModel.swift",
        "StytchB2BUIClient/ViewControllers/SSODiscovery/SSODiscoveryMenuViewController/SSODiscoveryMenuViewController.swift",
        "StytchB2BUIClient/ViewControllers/SSODiscovery/SSODiscoveryMenuViewController/SSODiscoveryMenuViewModel.swift",
        "StytchB2BUIClient/ViewControllers/TOTPEnrollmentManualViewController/TOTPEnrollmentViewController.swift",
        "StytchB2BUIClient/ViewControllers/TOTPEnrollmentManualViewController/TOTPEnrollmentViewModel.swift",
        "StytchB2BUIClient/ViewControllers/TOTPEnrollmentManualViewController/TOTPSecretView.swift",
        "StytchB2BUIClient/ViewControllers/TOTPEntryViewController/TOTPEntryViewController.swift",
        "StytchB2BUIClient/ViewControllers/TOTPEntryViewController/TOTPEntryViewModel.swift",
        "StytchUIClient/StytchUIClient+Configuration.swift",
        "StytchUIClient/StytchUIClient.swift",
        "StytchUIClient/ViewControllers/AuthHomeViewController/AuthHomeViewController.swift",
        "StytchUIClient/ViewControllers/AuthHomeViewController/AuthHomeViewModel.swift",
        "StytchUIClient/ViewControllers/AuthInputViewController/AuthInputViewController.swift",
        "StytchUIClient/ViewControllers/AuthInputViewController/AuthInputViewModel.swift",
        "StytchUIClient/ViewControllers/AuthRootViewController.swift",
        "StytchUIClient/ViewControllers/BiometricsRegistrationViewController/BiometricsRegistrationViewController.swift",
        "StytchUIClient/ViewControllers/BiometricsRegistrationViewController/BiometricsRegistrationViewModel.swift",
        "StytchUIClient/ViewControllers/EmailConfirmationViewController/EmailConfirmationViewController.swift",
        "StytchUIClient/ViewControllers/EmailConfirmationViewController/EmailConfirmationViewModel.swift",
        "StytchUIClient/ViewControllers/OAuthViewController/OAuthViewController.swift",
        "StytchUIClient/ViewControllers/OAuthViewController/OAuthViewModel.swift",
        "StytchUIClient/ViewControllers/OTPCodeViewController/OTPCodeViewController.swift",
        "StytchUIClient/ViewControllers/OTPCodeViewController/OTPCodeViewModel.swift",
        "StytchUIClient/ViewControllers/PasswordViewController/PasswordViewController.swift",
        "StytchUIClient/ViewControllers/PasswordViewController/PasswordViewModel.swift"
      ],
      "target_dependencies" : [
        "StytchCore"
      ],
      "type" : "library"
    },
    {
      "c99name" : "StytchCoreTests",
      "module_type" : "SwiftTarget",
      "name" : "StytchCoreTests",
      "path" : "Tests/StytchCoreTests",
      "sources" : [
        "B2BDiscoveryTestCase.swift",
        "B2BMagicLinksTestCase.swift",
        "B2BMembersTestCase.swift",
        "B2BOAuthTestCase.swift",
        "B2BOTPTestCase.swift",
        "B2BOrganizationsMembersTestCase.swift",
        "B2BOrganizationsTestCase.swift",
        "B2BPasswordsTestCase.swift",
        "B2BRBACTestCase.swift",
        "B2BRecoveryCodesTestCase.swift",
        "B2BSCIMTestCase.swift",
        "B2BSSOTestCase.swift",
        "B2BSearchManagerTestCase.swift",
        "B2BSessionsTestCase.swift",
        "B2BTOTPTestCase.swift",
        "BaseTestCase.swift",
        "BiometricsTestCase.swift",
        "CryptoClientTestCase.swift",
        "CryptoWalletsTestCase.swift",
        "DeeplinkHandlerTestCase.swift",
        "EncryptedUserDefaultsClientMock.swift",
        "ExtensionsTestCase.swift",
        "JSONTestCase.swift",
        "KeychainClient+Mock.swift",
        "KeychainClientTestCase.swift",
        "MagicLinksTestCase.swift",
        "ModelsTestCase.swift",
        "NetworkRequestHandlerTestCase.swift",
        "NetworkingClient+LiveTestCase.swift",
        "NetworkingClientInterceptor.swift",
        "NetworkingClientTestCase.swift",
        "OAuthTestCase.swift",
        "OTPTestCase.swift",
        "PasskeysTestCase.swift",
        "PasswordsTestCase.swift",
        "PollingClientTestCase.swift",
        "RBACPolicyMocks.swift",
        "RBACTestCase.swift",
        "SessionManagerTestCase.swift",
        "SessionStorageTestCase.swift",
        "StytchClientTestCase.swift",
        "TOTPTestCase.swift",
        "UserDefaults+Mock.swift",
        "UserManagementTestCase.swift",
        "XCTestHelpers.swift"
      ],
      "target_dependencies" : [
        "StytchCore"
      ],
      "type" : "test"
    },
    {
      "c99name" : "StytchCore",
      "module_type" : "SwiftTarget",
      "name" : "StytchCore",
      "path" : "Sources/StytchCore",
      "product_dependencies" : [
        "RecaptchaEnterprise",
        "StytchDFP",
        "SwiftyJSON"
      ],
      "product_memberships" : [
        "StytchCore",
        "StytchUI"
      ],
      "resources" : [
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/StytchCore/PrivacyInfo.xcprivacy",
          "rule" : {
            "process" : {
            }
          }
        }
      ],
      "sources" : [
        "AppleOAuthClient/AppleOAuthClient+Live.swift",
        "AppleOAuthClient/AppleOAuthClient.swift",
        "CaptchaClient.swift",
        "CryptoClient/CryptoClient+Live.swift",
        "CryptoClient/CryptoClient.swift",
        "DFPClient.swift",
        "Dependency.swift",
        "EncryptedUserDefaultsClient/EncryptedUserDefaultsClient.swift",
        "EncryptedUserDefaultsClient/EncryptedUserDefaultsClientImplementation.swift",
        "EncryptedUserDefaultsClient/EncryptedUserDefaultsItem.swift",
        "Environment.swift",
        "EventsClient.swift",
        "Extensions/CFError+Stytch.swift",
        "Extensions/Codable+Stytch.swift",
        "Extensions/Data+Stytch.swift",
        "Extensions/Dictionary+Stytch.swift",
        "Extensions/Error+StytchErrorInfo.swift",
        "Extensions/NSLock+Stytch.swift",
        "Extensions/Sequence+Stytch.swift",
        "Extensions/String+Stytch.swift",
        "Extensions/URL+Stytch.swift",
        "Extensions/URLComponents+Stytch.swift",
        "Generated/StytchB2BClient.DFP.getTelemetryID+AsyncVariants.generated.swift",
        "Generated/StytchB2BClient.Discovery.createOrganization+AsyncVariants.generated.swift",
        "Generated/StytchB2BClient.Discovery.exchangeIntermediateSession+AsyncVariants.generated.swift",
        "Generated/StytchB2BClient.Discovery.listOrganizations+AsyncVariants.generated.swift",
        "Generated/StytchB2BClient.MagicLinks.Email.discoverySend+AsyncVariants.generated.swift",
        "Generated/StytchB2BClient.MagicLinks.Email.inviteSend+AsyncVariants.generated.swift",
        "Generated/StytchB2BClient.MagicLinks.Email.loginOrSignup+AsyncVariants.generated.swift",
        "Generated/StytchB2BClient.MagicLinks.authenticate+AsyncVariants.generated.swift",
        "Generated/StytchB2BClient.MagicLinks.discoveryAuthenticate+AsyncVariants.generated.swift",
        "Generated/StytchB2BClient.Members.deleteFactor+AsyncVariants.generated.swift",
        "Generated/StytchB2BClient.Members.get+AsyncVariants.generated.swift",
        "Generated/StytchB2BClient.Members.update+AsyncVariants.generated.swift",
        "Generated/StytchB2BClient.OAuth.Discovery.authenticate+AsyncVariants.generated.swift",
        "Generated/StytchB2BClient.OAuth.ThirdParty.Discovery.start+AsyncVariants.generated.swift",
        "Generated/StytchB2BClient.OAuth.ThirdParty.start+AsyncVariants.generated.swift",
        "Generated/StytchB2BClient.OAuth.authenticate+AsyncVariants.generated.swift",
        "Generated/StytchB2BClient.OTP.Email.Discovery.authenticate+AsyncVariants.generated.swift",
        "Generated/StytchB2BClient.OTP.Email.Discovery.send+AsyncVariants.generated.swift",
        "Generated/StytchB2BClient.OTP.Email.authenticate+AsyncVariants.generated.swift",
        "Generated/StytchB2BClient.OTP.Email.loginOrSignup+AsyncVariants.generated.swift",
        "Generated/StytchB2BClient.OTP.SMS.authenticate+AsyncVariants.generated.swift",
        "Generated/StytchB2BClient.OTP.SMS.send+AsyncVariants.generated.swift",
        "Generated/StytchB2BClient.Organizations.Members.create+AsyncVariants.generated.swift",
        "Generated/StytchB2BClient.Organizations.Members.delete+AsyncVariants.generated.swift",
        "Generated/StytchB2BClient.Organizations.Members.deleteFactor+AsyncVariants.generated.swift",
        "Generated/StytchB2BClient.Organizations.Members.reactivate+AsyncVariants.generated.swift",
        "Generated/StytchB2BClient.Organizations.Members.update+AsyncVariants.generated.swift",
        "Generated/StytchB2BClient.Organizations.delete+AsyncVariants.generated.swift",
        "Generated/StytchB2BClient.Organizations.get+AsyncVariants.generated.swift",
        "Generated/StytchB2BClient.Organizations.searchMembers+AsyncVariants.generated.swift",
        "Generated/StytchB2BClient.Organizations.update+AsyncVariants.generated.swift",
        "Generated/StytchB2BClient.Passwords.Discovery.authenticate+AsyncVariants.generated.swift",
        "Generated/StytchB2BClient.Passwords.Discovery.resetByEmail+AsyncVariants.generated.swift",
        "Generated/StytchB2BClient.Passwords.Discovery.resetByEmailStart+AsyncVariants.generated.swift",
        "Generated/StytchB2BClient.Passwords.authenticate+AsyncVariants.generated.swift",
        "Generated/StytchB2BClient.Passwords.resetByEmail+AsyncVariants.generated.swift",
        "Generated/StytchB2BClient.Passwords.resetByEmailStart+AsyncVariants.generated.swift",
        "Generated/StytchB2BClient.Passwords.resetByExistingPassword+AsyncVariants.generated.swift",
        "Generated/StytchB2BClient.Passwords.resetBySession+AsyncVariants.generated.swift",
        "Generated/StytchB2BClient.Passwords.strengthCheck+AsyncVariants.generated.swift",
        "Generated/StytchB2BClient.RBAC.allPermissions+AsyncVariants.generated.swift",
        "Generated/StytchB2BClient.RBAC.isAuthorized+AsyncVariants.generated.swift",
        "Generated/StytchB2BClient.RecoveryCodes.get+AsyncVariants.generated.swift",
        "Generated/StytchB2BClient.RecoveryCodes.recover+AsyncVariants.generated.swift",
        "Generated/StytchB2BClient.RecoveryCodes.rotate+AsyncVariants.generated.swift",
        "Generated/StytchB2BClient.SCIM.createConnection+AsyncVariants.generated.swift",
        "Generated/StytchB2BClient.SCIM.deleteConnection+AsyncVariants.generated.swift",
        "Generated/StytchB2BClient.SCIM.getConnection+AsyncVariants.generated.swift",
        "Generated/StytchB2BClient.SCIM.getConnectionGroups+AsyncVariants.generated.swift",
        "Generated/StytchB2BClient.SCIM.rotateCancel+AsyncVariants.generated.swift",
        "Generated/StytchB2BClient.SCIM.rotateComplete+AsyncVariants.generated.swift",
        "Generated/StytchB2BClient.SCIM.rotateStart+AsyncVariants.generated.swift",
        "Generated/StytchB2BClient.SCIM.updateConnection+AsyncVariants.generated.swift",
        "Generated/StytchB2BClient.SSO.OIDC.createConnection+AsyncVariants.generated.swift",
        "Generated/StytchB2BClient.SSO.OIDC.updateConnection+AsyncVariants.generated.swift",
        "Generated/StytchB2BClient.SSO.SAML.createConnection+AsyncVariants.generated.swift",
        "Generated/StytchB2BClient.SSO.SAML.deleteVerificationCertificate+AsyncVariants.generated.swift",
        "Generated/StytchB2BClient.SSO.SAML.updateConnection+AsyncVariants.generated.swift",
        "Generated/StytchB2BClient.SSO.SAML.updateConnectionByURL+AsyncVariants.generated.swift",
        "Generated/StytchB2BClient.SSO.authenticate+AsyncVariants.generated.swift",
        "Generated/StytchB2BClient.SSO.deleteConnection+AsyncVariants.generated.swift",
        "Generated/StytchB2BClient.SSO.discoverConnections+AsyncVariants.generated.swift",
        "Generated/StytchB2BClient.SSO.getConnections+AsyncVariants.generated.swift",
        "Generated/StytchB2BClient.SSO.start+AsyncVariants.generated.swift",
        "Generated/StytchB2BClient.SearchManager.searchMember+AsyncVariants.generated.swift",
        "Generated/StytchB2BClient.SearchManager.searchOrganization+AsyncVariants.generated.swift",
        "Generated/StytchB2BClient.Sessions.attest+AsyncVariants.generated.swift",
        "Generated/StytchB2BClient.Sessions.authenticate+AsyncVariants.generated.swift",
        "Generated/StytchB2BClient.Sessions.exchange+AsyncVariants.generated.swift",
        "Generated/StytchB2BClient.Sessions.revoke+AsyncVariants.generated.swift",
        "Generated/StytchB2BClient.TOTP.authenticate+AsyncVariants.generated.swift",
        "Generated/StytchB2BClient.TOTP.create+AsyncVariants.generated.swift",
        "Generated/StytchB2BClient.handle+AsyncVariants.generated.swift",
        "Generated/StytchClient.Biometrics.authenticate+AsyncVariants.generated.swift",
        "Generated/StytchClient.Biometrics.register+AsyncVariants.generated.swift",
        "Generated/StytchClient.Biometrics.removeRegistration+AsyncVariants.generated.swift",
        "Generated/StytchClient.CryptoWallets.authenticate+AsyncVariants.generated.swift",
        "Generated/StytchClient.CryptoWallets.authenticateStart+AsyncVariants.generated.swift",
        "Generated/StytchClient.DFP.getTelemetryID+AsyncVariants.generated.swift",
        "Generated/StytchClient.MagicLinks.Email.loginOrCreate+AsyncVariants.generated.swift",
        "Generated/StytchClient.MagicLinks.Email.send+AsyncVariants.generated.swift",
        "Generated/StytchClient.MagicLinks.authenticate+AsyncVariants.generated.swift",
        "Generated/StytchClient.OAuth.Apple.start+AsyncVariants.generated.swift",
        "Generated/StytchClient.OAuth.ThirdParty.start+AsyncVariants.generated.swift",
        "Generated/StytchClient.OAuth.attach+AsyncVariants.generated.swift",
        "Generated/StytchClient.OAuth.authenticate+AsyncVariants.generated.swift",
        "Generated/StytchClient.OTP.authenticate+AsyncVariants.generated.swift",
        "Generated/StytchClient.OTP.loginOrCreate+AsyncVariants.generated.swift",
        "Generated/StytchClient.OTP.send+AsyncVariants.generated.swift",
        "Generated/StytchClient.Passkeys.authenticate+AsyncVariants.generated.swift",
        "Generated/StytchClient.Passkeys.register+AsyncVariants.generated.swift",
        "Generated/StytchClient.Passkeys.update+AsyncVariants.generated.swift",
        "Generated/StytchClient.Passwords.authenticate+AsyncVariants.generated.swift",
        "Generated/StytchClient.Passwords.create+AsyncVariants.generated.swift",
        "Generated/StytchClient.Passwords.resetByEmail+AsyncVariants.generated.swift",
        "Generated/StytchClient.Passwords.resetByEmailStart+AsyncVariants.generated.swift",
        "Generated/StytchClient.Passwords.resetByExistingPassword+AsyncVariants.generated.swift",
        "Generated/StytchClient.Passwords.resetBySession+AsyncVariants.generated.swift",
        "Generated/StytchClient.Passwords.strengthCheck+AsyncVariants.generated.swift",
        "Generated/StytchClient.Sessions.attest+AsyncVariants.generated.swift",
        "Generated/StytchClient.Sessions.authenticate+AsyncVariants.generated.swift",
        "Generated/StytchClient.Sessions.revoke+AsyncVariants.generated.swift",
        "Generated/StytchClient.TOTP.authenticate+AsyncVariants.generated.swift",
        "Generated/StytchClient.TOTP.create+AsyncVariants.generated.swift",
        "Generated/StytchClient.TOTP.recover+AsyncVariants.generated.swift",
        "Generated/StytchClient.TOTP.recoveryCodes+AsyncVariants.generated.swift",
        "Generated/StytchClient.UserManagement.deleteFactor+AsyncVariants.generated.swift",
        "Generated/StytchClient.UserManagement.get+AsyncVariants.generated.swift",
        "Generated/StytchClient.UserManagement.searchUser+AsyncVariants.generated.swift",
        "Generated/StytchClient.UserManagement.update+AsyncVariants.generated.swift",
        "Generated/StytchClient.handle+AsyncVariants.generated.swift",
        "KeychainClient/KeychainClient.swift",
        "KeychainClient/KeychainClientImplementation.swift",
        "KeychainClient/KeychainItem.swift",
        "KeychainClient/KeychainMigrations/KeychainMigration.swift",
        "KeychainClient/KeychainMigrations/KeychainMigration1.swift",
        "KeychainClient/KeychainMigrations/KeychainMigration2.swift",
        "KeychainClient/KeychainMigrations/KeychainMigration3.swift",
        "KeychainClient/KeychainMigrations/KeychainMigration4.swift",
        "LocalStorage.swift",
        "Networking/NetworkMonitor.swift",
        "Networking/NetworkRequestHandler.swift",
        "Networking/NetworkingClient.swift",
        "Networking/NetworkingRouter.swift",
        "ObjectStorage.swift",
        "PKCE/CodeChallengedParameters.swift",
        "PKCE/CodeVerifierParameters.swift",
        "PKCE/PKCEPairManager.swift",
        "PasskeysClient/PasskeysClient+Live.swift",
        "PasskeysClient/PasskeysClient.swift",
        "PollingClient/PollingClient+Live.swift",
        "PollingClient/PollingClient.swift",
        "SessionManager.swift",
        "SharedModels/AuthenticationFactor.swift",
        "SharedModels/BootstrapResponse.swift",
        "SharedModels/ClientInfo+Version.swift",
        "SharedModels/ClientInfo.swift",
        "SharedModels/ClientType.swift",
        "SharedModels/Completion.swift",
        "SharedModels/DataContainer.swift",
        "SharedModels/DeeplinkHandledStatus.swift",
        "SharedModels/DeviceHistory.swift",
        "SharedModels/Errors/StytchAPIError.swift",
        "SharedModels/Errors/StytchAPIErrorType.swift",
        "SharedModels/Errors/StytchError.swift",
        "SharedModels/Errors/StytchSDKError.swift",
        "SharedModels/Identifier.swift",
        "SharedModels/IntermediateSessionTokenParameters.swift",
        "SharedModels/Minutes.swift",
        "SharedModels/OAuthProviderValues.swift",
        "SharedModels/Path.swift",
        "SharedModels/RBACPolicy.swift",
        "SharedModels/Regex.swift",
        "SharedModels/Response.swift",
        "SharedModels/SessionToken.swift",
        "SharedModels/StytchClientConfiguration.swift",
        "SharedModels/StytchLocale.swift",
        "SharedModels/Union.swift",
        "SharedModels/Version.swift",
        "StartupClient.swift",
        "StytchB2BClient/Models/B2BAuthenticateResponse.swift",
        "StytchB2BClient/Models/B2BMFAAuthenticateResponse.swift",
        "StytchB2BClient/Models/Member.swift",
        "StytchB2BClient/Models/MemberSession.swift",
        "StytchB2BClient/Models/Organization.swift",
        "StytchB2BClient/Models/OrganizationType.swift",
        "StytchB2BClient/StytchB2BClient+AuthMethod.swift",
        "StytchB2BClient/StytchB2BClient+Common.swift",
        "StytchB2BClient/StytchB2BClient+DFP.swift",
        "StytchB2BClient/StytchB2BClient+Discovery.swift",
        "StytchB2BClient/StytchB2BClient+MagicLinks.swift",
        "StytchB2BClient/StytchB2BClient+Members.swift",
        "StytchB2BClient/StytchB2BClient+OAuth/StytchB2BClient+OAuth+Discovery.swift",
        "StytchB2BClient/StytchB2BClient+OAuth/StytchB2BClient+OAuth+ThirdParty+Discovery.swift",
        "StytchB2BClient/StytchB2BClient+OAuth/StytchB2BClient+OAuth+ThirdParty.swift",
        "StytchB2BClient/StytchB2BClient+OAuth/StytchB2BClient+OAuth.swift",
        "StytchB2BClient/StytchB2BClient+OTP/StytchB2BClient+OTP+Email+Discovery.swift",
        "StytchB2BClient/StytchB2BClient+OTP/StytchB2BClient+OTP+Email.swift",
        "StytchB2BClient/StytchB2BClient+OTP/StytchB2BClient+OTP+SMS.swift",
        "StytchB2BClient/StytchB2BClient+OTP/StytchB2BClient+OTP.swift",
        "StytchB2BClient/StytchB2BClient+Organizations/Organization Members/StytchB2BClient+Organizations+Members+CreateParameters.swift",
        "StytchB2BClient/StytchB2BClient+Organizations/Organization Members/StytchB2BClient+Organizations+Members+UpdateParameters.swift",
        "StytchB2BClient/StytchB2BClient+Organizations/Organization Members/StytchB2BClient+Organizations+Members.swift",
        "StytchB2BClient/StytchB2BClient+Organizations/StytchB2BClient+Organizations+SearchParameters.swift",
        "StytchB2BClient/StytchB2BClient+Organizations/StytchB2BClient+Organizations+UpdateParameters.swift",
        "StytchB2BClient/StytchB2BClient+Organizations/StytchB2BClient+Organizations.swift",
        "StytchB2BClient/StytchB2BClient+Passwords/StytchB2BClient+Passwords+Discovery.swift",
        "StytchB2BClient/StytchB2BClient+Passwords/StytchB2BClient+Passwords.swift",
        "StytchB2BClient/StytchB2BClient+RBAC.swift",
        "StytchB2BClient/StytchB2BClient+RecoveryCodes.swift",
        "StytchB2BClient/StytchB2BClient+Routes.swift",
        "StytchB2BClient/StytchB2BClient+SCIM/StytchB2BClient+SCIM+Parameters.swift",
        "StytchB2BClient/StytchB2BClient+SCIM/StytchB2BClient+SCIM+Responses.swift",
        "StytchB2BClient/StytchB2BClient+SCIM/StytchB2BClient+SCIM.swift",
        "StytchB2BClient/StytchB2BClient+SSO/StytchB2BClient+SSO+OIDC.swift",
        "StytchB2BClient/StytchB2BClient+SSO/StytchB2BClient+SSO+OIDCConnection.swift",
        "StytchB2BClient/StytchB2BClient+SSO/StytchB2BClient+SSO+SAML.swift",
        "StytchB2BClient/StytchB2BClient+SSO/StytchB2BClient+SSO+SAMLConnection.swift",
        "StytchB2BClient/StytchB2BClient+SSO/StytchB2BClient+SSO.swift",
        "StytchB2BClient/StytchB2BClient+SearchManager.swift",
        "StytchB2BClient/StytchB2BClient+Sessions.swift",
        "StytchB2BClient/StytchB2BClient+TOTP.swift",
        "StytchB2BClient/StytchB2BClient.swift",
        "StytchClient/BaseRoute.swift",
        "StytchClient/Biometrics/BiometricsRoute.swift",
        "StytchClient/Biometrics/LAContextEvaluating.swift",
        "StytchClient/Biometrics/LocalAuthenticationContextManager.swift",
        "StytchClient/Biometrics/StytchClient+Biometrics.swift",
        "StytchClient/CryptoWallets/CryptoWalletsRoute.swift",
        "StytchClient/CryptoWallets/StytchClient+CryptoWallets.swift",
        "StytchClient/DFP/StytchClient+DFP.swift",
        "StytchClient/MagicLinks/MagicLinksRoute.swift",
        "StytchClient/MagicLinks/StytchClient+MagicLinks.swift",
        "StytchClient/MagicLinks/StytchClient.MagicLinks+Email.swift",
        "StytchClient/Models/AuthenticateResponse.swift",
        "StytchClient/Models/Session.swift",
        "StytchClient/Models/User.swift",
        "StytchClient/OAuth/OAuth+Apple.swift",
        "StytchClient/OAuth/OAuth+ThirdParty.swift",
        "StytchClient/OAuth/OAuthRoute.swift",
        "StytchClient/OAuth/StytchClient+OAuth.swift",
        "StytchClient/OTP/OTPRoute.swift",
        "StytchClient/OTP/SytchClient+OTP.swift",
        "StytchClient/Passkeys/PasskeysRoute.swift",
        "StytchClient/Passkeys/StytchClient+Passkeys.swift",
        "StytchClient/Passwords/PasswordsRoute.swift",
        "StytchClient/Passwords/StytchClient+Passwords.swift",
        "StytchClient/StytchClient+AuthMethod.swift",
        "StytchClient/StytchClient+Sessions.swift",
        "StytchClient/StytchClient.swift",
        "StytchClient/TOTP/StytchClient+TOTP.swift",
        "StytchClient/TOTP/TOTPRoute.swift",
        "StytchClient/User/StytchClient+User.swift",
        "StytchClient/User/UsersRoute.swift",
        "StytchClientCommon.swift",
        "StytchConsoleLogger.swift",
        "WebAuthenticationSessionClient/WebAuthenticationSessionClient+Live.swift",
        "WebAuthenticationSessionClient/WebAuthenticationSessionClient.swift",
        "WebAuthenticationSessionClient/WebAuthenticationSessionClientConfiguration.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.5"
}
Done.