The Swift Package Index logo.Swift Package Index

Build Information

Successful build of EventTracker, reference 2.0.0 (7b9172), with Swift 6.1 for Wasm on 29 May 2025 17:15:26 UTC.

Swift 6 data race errors: 190

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4606859-1":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest swift build --swift-sdk wasm32-unknown-wasi -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures 2>&1

Build Log

 248 |     public static var trackEventEventNameStringWithPropertiesPropertiesStringStringVoidReceivedArguments: (eventName: String, properties: [String: String]?)?
 249 |     public static var trackEventEventNameStringWithPropertiesPropertiesStringStringVoidReceivedInvocations: [(eventName: String, properties: [String: String]?)] = []
 250 |     public static var trackEventEventNameStringWithPropertiesPropertiesStringStringVoidClosure: ((String, [String: String]?) -> Void)?
     |                       |- warning: static property 'trackEventEventNameStringWithPropertiesPropertiesStringStringVoidClosure' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'trackEventEventNameStringWithPropertiesPropertiesStringStringVoidClosure' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'trackEventEventNameStringWithPropertiesPropertiesStringStringVoidClosure' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 251 |
 252 |     public static func trackEvent(_ eventName: String, withProperties properties: [String: String]?) {
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:409:23: warning: static property 'clearAllAttributeBoolCallsCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 407 |     //MARK: - clearAllAttribute
 408 |
 409 |     public static var clearAllAttributeBoolCallsCount = 0
     |                       |- warning: static property 'clearAllAttributeBoolCallsCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'clearAllAttributeBoolCallsCount' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'clearAllAttributeBoolCallsCount' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 410 |     public static var clearAllAttributeBoolCalled: Bool {
 411 |         return clearAllAttributeBoolCallsCount > 0
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:413:23: warning: static property 'clearAllAttributeBoolReturnValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 411 |         return clearAllAttributeBoolCallsCount > 0
 412 |     }
 413 |     public static var clearAllAttributeBoolReturnValue: Bool!
     |                       |- warning: static property 'clearAllAttributeBoolReturnValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'clearAllAttributeBoolReturnValue' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'clearAllAttributeBoolReturnValue' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 414 |     public static var clearAllAttributeBoolClosure: (() -> Bool)?
 415 |
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:414:23: warning: static property 'clearAllAttributeBoolClosure' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 412 |     }
 413 |     public static var clearAllAttributeBoolReturnValue: Bool!
 414 |     public static var clearAllAttributeBoolClosure: (() -> Bool)?
     |                       |- warning: static property 'clearAllAttributeBoolClosure' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'clearAllAttributeBoolClosure' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'clearAllAttributeBoolClosure' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 415 |
 416 |     public static func clearAllAttribute() -> Bool {
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:427:23: warning: static property 'eventEventNameStringParamsAnyHashableAnyVoidCallsCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 425 |     //MARK: - event
 426 |
 427 |     public static var eventEventNameStringParamsAnyHashableAnyVoidCallsCount = 0
     |                       |- warning: static property 'eventEventNameStringParamsAnyHashableAnyVoidCallsCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'eventEventNameStringParamsAnyHashableAnyVoidCallsCount' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'eventEventNameStringParamsAnyHashableAnyVoidCallsCount' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 428 |     public static var eventEventNameStringParamsAnyHashableAnyVoidCalled: Bool {
 429 |         return eventEventNameStringParamsAnyHashableAnyVoidCallsCount > 0
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:431:23: warning: static property 'eventEventNameStringParamsAnyHashableAnyVoidReceivedArguments' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 429 |         return eventEventNameStringParamsAnyHashableAnyVoidCallsCount > 0
 430 |     }
 431 |     public static var eventEventNameStringParamsAnyHashableAnyVoidReceivedArguments: (eventName: String, params: [AnyHashable: Any])?
     |                       |- warning: static property 'eventEventNameStringParamsAnyHashableAnyVoidReceivedArguments' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'eventEventNameStringParamsAnyHashableAnyVoidReceivedArguments' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'eventEventNameStringParamsAnyHashableAnyVoidReceivedArguments' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 432 |     public static var eventEventNameStringParamsAnyHashableAnyVoidReceivedInvocations: [(eventName: String, params: [AnyHashable: Any])] = []
 433 |     public static var eventEventNameStringParamsAnyHashableAnyVoidClosure: ((String, [AnyHashable: Any]) -> Void)?
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:432:23: warning: static property 'eventEventNameStringParamsAnyHashableAnyVoidReceivedInvocations' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 430 |     }
 431 |     public static var eventEventNameStringParamsAnyHashableAnyVoidReceivedArguments: (eventName: String, params: [AnyHashable: Any])?
 432 |     public static var eventEventNameStringParamsAnyHashableAnyVoidReceivedInvocations: [(eventName: String, params: [AnyHashable: Any])] = []
     |                       |- warning: static property 'eventEventNameStringParamsAnyHashableAnyVoidReceivedInvocations' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'eventEventNameStringParamsAnyHashableAnyVoidReceivedInvocations' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'eventEventNameStringParamsAnyHashableAnyVoidReceivedInvocations' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 433 |     public static var eventEventNameStringParamsAnyHashableAnyVoidClosure: ((String, [AnyHashable: Any]) -> Void)?
 434 |
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:433:23: warning: static property 'eventEventNameStringParamsAnyHashableAnyVoidClosure' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 431 |     public static var eventEventNameStringParamsAnyHashableAnyVoidReceivedArguments: (eventName: String, params: [AnyHashable: Any])?
 432 |     public static var eventEventNameStringParamsAnyHashableAnyVoidReceivedInvocations: [(eventName: String, params: [AnyHashable: Any])] = []
 433 |     public static var eventEventNameStringParamsAnyHashableAnyVoidClosure: ((String, [AnyHashable: Any]) -> Void)?
     |                       |- warning: static property 'eventEventNameStringParamsAnyHashableAnyVoidClosure' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'eventEventNameStringParamsAnyHashableAnyVoidClosure' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'eventEventNameStringParamsAnyHashableAnyVoidClosure' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 434 |
 435 |     public static func event(_ eventName: String, params: [AnyHashable: Any]) {
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:444:23: warning: static property 'pauseVoidCallsCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 442 |     //MARK: - pause
 443 |
 444 |     public static var pauseVoidCallsCount = 0
     |                       |- warning: static property 'pauseVoidCallsCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'pauseVoidCallsCount' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'pauseVoidCallsCount' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 445 |     public static var pauseVoidCalled: Bool {
 446 |         return pauseVoidCallsCount > 0
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:448:23: warning: static property 'pauseVoidClosure' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 446 |         return pauseVoidCallsCount > 0
 447 |     }
 448 |     public static var pauseVoidClosure: (() -> Void)?
     |                       |- warning: static property 'pauseVoidClosure' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'pauseVoidClosure' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'pauseVoidClosure' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 449 |
 450 |     public static func pause() {
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:457:23: warning: static property 'resumeVoidCallsCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 455 |     //MARK: - resume
 456 |
 457 |     public static var resumeVoidCallsCount = 0
     |                       |- warning: static property 'resumeVoidCallsCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'resumeVoidCallsCount' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'resumeVoidCallsCount' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 458 |     public static var resumeVoidCalled: Bool {
 459 |         return resumeVoidCallsCount > 0
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:461:23: warning: static property 'resumeVoidClosure' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 459 |         return resumeVoidCallsCount > 0
 460 |     }
 461 |     public static var resumeVoidClosure: (() -> Void)?
     |                       |- warning: static property 'resumeVoidClosure' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'resumeVoidClosure' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'resumeVoidClosure' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 462 |
 463 |     public static func resume() {
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:470:23: warning: static property 'setAttributeKeyStringValueAnyBoolCallsCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 468 |     //MARK: - setAttribute
 469 |
 470 |     public static var setAttributeKeyStringValueAnyBoolCallsCount = 0
     |                       |- warning: static property 'setAttributeKeyStringValueAnyBoolCallsCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'setAttributeKeyStringValueAnyBoolCallsCount' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'setAttributeKeyStringValueAnyBoolCallsCount' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 471 |     public static var setAttributeKeyStringValueAnyBoolCalled: Bool {
 472 |         return setAttributeKeyStringValueAnyBoolCallsCount > 0
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:474:23: warning: static property 'setAttributeKeyStringValueAnyBoolReceivedArguments' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 472 |         return setAttributeKeyStringValueAnyBoolCallsCount > 0
 473 |     }
 474 |     public static var setAttributeKeyStringValueAnyBoolReceivedArguments: (key: String, value: Any)?
     |                       |- warning: static property 'setAttributeKeyStringValueAnyBoolReceivedArguments' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'setAttributeKeyStringValueAnyBoolReceivedArguments' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'setAttributeKeyStringValueAnyBoolReceivedArguments' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 475 |     public static var setAttributeKeyStringValueAnyBoolReceivedInvocations: [(key: String, value: Any)] = []
 476 |     public static var setAttributeKeyStringValueAnyBoolReturnValue: Bool!
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:475:23: warning: static property 'setAttributeKeyStringValueAnyBoolReceivedInvocations' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 473 |     }
 474 |     public static var setAttributeKeyStringValueAnyBoolReceivedArguments: (key: String, value: Any)?
 475 |     public static var setAttributeKeyStringValueAnyBoolReceivedInvocations: [(key: String, value: Any)] = []
     |                       |- warning: static property 'setAttributeKeyStringValueAnyBoolReceivedInvocations' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'setAttributeKeyStringValueAnyBoolReceivedInvocations' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'setAttributeKeyStringValueAnyBoolReceivedInvocations' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 476 |     public static var setAttributeKeyStringValueAnyBoolReturnValue: Bool!
 477 |     public static var setAttributeKeyStringValueAnyBoolClosure: ((String, Any) -> Bool)?
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:476:23: warning: static property 'setAttributeKeyStringValueAnyBoolReturnValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 474 |     public static var setAttributeKeyStringValueAnyBoolReceivedArguments: (key: String, value: Any)?
 475 |     public static var setAttributeKeyStringValueAnyBoolReceivedInvocations: [(key: String, value: Any)] = []
 476 |     public static var setAttributeKeyStringValueAnyBoolReturnValue: Bool!
     |                       |- warning: static property 'setAttributeKeyStringValueAnyBoolReturnValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'setAttributeKeyStringValueAnyBoolReturnValue' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'setAttributeKeyStringValueAnyBoolReturnValue' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 477 |     public static var setAttributeKeyStringValueAnyBoolClosure: ((String, Any) -> Bool)?
 478 |
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:477:23: warning: static property 'setAttributeKeyStringValueAnyBoolClosure' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 475 |     public static var setAttributeKeyStringValueAnyBoolReceivedInvocations: [(key: String, value: Any)] = []
 476 |     public static var setAttributeKeyStringValueAnyBoolReturnValue: Bool!
 477 |     public static var setAttributeKeyStringValueAnyBoolClosure: ((String, Any) -> Bool)?
     |                       |- warning: static property 'setAttributeKeyStringValueAnyBoolClosure' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'setAttributeKeyStringValueAnyBoolClosure' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'setAttributeKeyStringValueAnyBoolClosure' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 478 |
 479 |     public static func setAttribute(_ key: String, value: Any) -> Bool {
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:896:23: warning: static property 'logEventNameStringParametersStringAnyVoidCallsCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 894 |     //MARK: - logEvent
 895 |
 896 |     public static var logEventNameStringParametersStringAnyVoidCallsCount = 0
     |                       |- warning: static property 'logEventNameStringParametersStringAnyVoidCallsCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'logEventNameStringParametersStringAnyVoidCallsCount' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'logEventNameStringParametersStringAnyVoidCallsCount' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 897 |     public static var logEventNameStringParametersStringAnyVoidCalled: Bool {
 898 |         return logEventNameStringParametersStringAnyVoidCallsCount > 0
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:900:23: warning: static property 'logEventNameStringParametersStringAnyVoidReceivedArguments' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 898 |         return logEventNameStringParametersStringAnyVoidCallsCount > 0
 899 |     }
 900 |     public static var logEventNameStringParametersStringAnyVoidReceivedArguments: (name: String, parameters: [String: Any]?)?
     |                       |- warning: static property 'logEventNameStringParametersStringAnyVoidReceivedArguments' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'logEventNameStringParametersStringAnyVoidReceivedArguments' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'logEventNameStringParametersStringAnyVoidReceivedArguments' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 901 |     public static var logEventNameStringParametersStringAnyVoidReceivedInvocations: [(name: String, parameters: [String: Any]?)] = []
 902 |     public static var logEventNameStringParametersStringAnyVoidClosure: ((String, [String: Any]?) -> Void)?
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:901:23: warning: static property 'logEventNameStringParametersStringAnyVoidReceivedInvocations' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 899 |     }
 900 |     public static var logEventNameStringParametersStringAnyVoidReceivedArguments: (name: String, parameters: [String: Any]?)?
 901 |     public static var logEventNameStringParametersStringAnyVoidReceivedInvocations: [(name: String, parameters: [String: Any]?)] = []
     |                       |- warning: static property 'logEventNameStringParametersStringAnyVoidReceivedInvocations' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'logEventNameStringParametersStringAnyVoidReceivedInvocations' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'logEventNameStringParametersStringAnyVoidReceivedInvocations' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 902 |     public static var logEventNameStringParametersStringAnyVoidClosure: ((String, [String: Any]?) -> Void)?
 903 |
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:902:23: warning: static property 'logEventNameStringParametersStringAnyVoidClosure' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 900 |     public static var logEventNameStringParametersStringAnyVoidReceivedArguments: (name: String, parameters: [String: Any]?)?
 901 |     public static var logEventNameStringParametersStringAnyVoidReceivedInvocations: [(name: String, parameters: [String: Any]?)] = []
 902 |     public static var logEventNameStringParametersStringAnyVoidClosure: ((String, [String: Any]?) -> Void)?
     |                       |- warning: static property 'logEventNameStringParametersStringAnyVoidClosure' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'logEventNameStringParametersStringAnyVoidClosure' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'logEventNameStringParametersStringAnyVoidClosure' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 903 |
 904 |     public static func logEvent(_ name: String, parameters: [String: Any]?) {
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:913:23: warning: static property 'setAnalyticsCollectionEnabledEnabledBoolVoidCallsCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 911 |     //MARK: - setAnalyticsCollectionEnabled
 912 |
 913 |     public static var setAnalyticsCollectionEnabledEnabledBoolVoidCallsCount = 0
     |                       |- warning: static property 'setAnalyticsCollectionEnabledEnabledBoolVoidCallsCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'setAnalyticsCollectionEnabledEnabledBoolVoidCallsCount' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'setAnalyticsCollectionEnabledEnabledBoolVoidCallsCount' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 914 |     public static var setAnalyticsCollectionEnabledEnabledBoolVoidCalled: Bool {
 915 |         return setAnalyticsCollectionEnabledEnabledBoolVoidCallsCount > 0
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:917:23: warning: static property 'setAnalyticsCollectionEnabledEnabledBoolVoidReceivedEnabled' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 915 |         return setAnalyticsCollectionEnabledEnabledBoolVoidCallsCount > 0
 916 |     }
 917 |     public static var setAnalyticsCollectionEnabledEnabledBoolVoidReceivedEnabled: (Bool)?
     |                       |- warning: static property 'setAnalyticsCollectionEnabledEnabledBoolVoidReceivedEnabled' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'setAnalyticsCollectionEnabledEnabledBoolVoidReceivedEnabled' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'setAnalyticsCollectionEnabledEnabledBoolVoidReceivedEnabled' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 918 |     public static var setAnalyticsCollectionEnabledEnabledBoolVoidReceivedInvocations: [(Bool)] = []
 919 |     public static var setAnalyticsCollectionEnabledEnabledBoolVoidClosure: ((Bool) -> Void)?
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:918:23: warning: static property 'setAnalyticsCollectionEnabledEnabledBoolVoidReceivedInvocations' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 916 |     }
 917 |     public static var setAnalyticsCollectionEnabledEnabledBoolVoidReceivedEnabled: (Bool)?
 918 |     public static var setAnalyticsCollectionEnabledEnabledBoolVoidReceivedInvocations: [(Bool)] = []
     |                       |- warning: static property 'setAnalyticsCollectionEnabledEnabledBoolVoidReceivedInvocations' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'setAnalyticsCollectionEnabledEnabledBoolVoidReceivedInvocations' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'setAnalyticsCollectionEnabledEnabledBoolVoidReceivedInvocations' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 919 |     public static var setAnalyticsCollectionEnabledEnabledBoolVoidClosure: ((Bool) -> Void)?
 920 |
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:919:23: warning: static property 'setAnalyticsCollectionEnabledEnabledBoolVoidClosure' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 917 |     public static var setAnalyticsCollectionEnabledEnabledBoolVoidReceivedEnabled: (Bool)?
 918 |     public static var setAnalyticsCollectionEnabledEnabledBoolVoidReceivedInvocations: [(Bool)] = []
 919 |     public static var setAnalyticsCollectionEnabledEnabledBoolVoidClosure: ((Bool) -> Void)?
     |                       |- warning: static property 'setAnalyticsCollectionEnabledEnabledBoolVoidClosure' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'setAnalyticsCollectionEnabledEnabledBoolVoidClosure' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'setAnalyticsCollectionEnabledEnabledBoolVoidClosure' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 920 |
 921 |     public static func setAnalyticsCollectionEnabled(_ enabled: Bool) {
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:930:23: warning: static property 'setUserIDUserIdStringVoidCallsCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 928 |     //MARK: - setUserID
 929 |
 930 |     public static var setUserIDUserIdStringVoidCallsCount = 0
     |                       |- warning: static property 'setUserIDUserIdStringVoidCallsCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'setUserIDUserIdStringVoidCallsCount' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'setUserIDUserIdStringVoidCallsCount' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 931 |     public static var setUserIDUserIdStringVoidCalled: Bool {
 932 |         return setUserIDUserIdStringVoidCallsCount > 0
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:934:23: warning: static property 'setUserIDUserIdStringVoidReceivedUserId' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 932 |         return setUserIDUserIdStringVoidCallsCount > 0
 933 |     }
 934 |     public static var setUserIDUserIdStringVoidReceivedUserId: (String)?
     |                       |- warning: static property 'setUserIDUserIdStringVoidReceivedUserId' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'setUserIDUserIdStringVoidReceivedUserId' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'setUserIDUserIdStringVoidReceivedUserId' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 935 |     public static var setUserIDUserIdStringVoidReceivedInvocations: [(String)?] = []
 936 |     public static var setUserIDUserIdStringVoidClosure: ((String?) -> Void)?
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:935:23: warning: static property 'setUserIDUserIdStringVoidReceivedInvocations' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 933 |     }
 934 |     public static var setUserIDUserIdStringVoidReceivedUserId: (String)?
 935 |     public static var setUserIDUserIdStringVoidReceivedInvocations: [(String)?] = []
     |                       |- warning: static property 'setUserIDUserIdStringVoidReceivedInvocations' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'setUserIDUserIdStringVoidReceivedInvocations' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'setUserIDUserIdStringVoidReceivedInvocations' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 936 |     public static var setUserIDUserIdStringVoidClosure: ((String?) -> Void)?
 937 |
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:936:23: warning: static property 'setUserIDUserIdStringVoidClosure' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 934 |     public static var setUserIDUserIdStringVoidReceivedUserId: (String)?
 935 |     public static var setUserIDUserIdStringVoidReceivedInvocations: [(String)?] = []
 936 |     public static var setUserIDUserIdStringVoidClosure: ((String?) -> Void)?
     |                       |- warning: static property 'setUserIDUserIdStringVoidClosure' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'setUserIDUserIdStringVoidClosure' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'setUserIDUserIdStringVoidClosure' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 937 |
 938 |     public static func setUserID(_ userId: String?) {
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:947:23: warning: static property 'setUserPropertyValueStringForNameStringVoidCallsCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 945 |     //MARK: - setUserProperty
 946 |
 947 |     public static var setUserPropertyValueStringForNameStringVoidCallsCount = 0
     |                       |- warning: static property 'setUserPropertyValueStringForNameStringVoidCallsCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'setUserPropertyValueStringForNameStringVoidCallsCount' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'setUserPropertyValueStringForNameStringVoidCallsCount' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 948 |     public static var setUserPropertyValueStringForNameStringVoidCalled: Bool {
 949 |         return setUserPropertyValueStringForNameStringVoidCallsCount > 0
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:951:23: warning: static property 'setUserPropertyValueStringForNameStringVoidReceivedArguments' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 949 |         return setUserPropertyValueStringForNameStringVoidCallsCount > 0
 950 |     }
 951 |     public static var setUserPropertyValueStringForNameStringVoidReceivedArguments: (value: String?, forName: String)?
     |                       |- warning: static property 'setUserPropertyValueStringForNameStringVoidReceivedArguments' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'setUserPropertyValueStringForNameStringVoidReceivedArguments' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'setUserPropertyValueStringForNameStringVoidReceivedArguments' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 952 |     public static var setUserPropertyValueStringForNameStringVoidReceivedInvocations: [(value: String?, forName: String)] = []
 953 |     public static var setUserPropertyValueStringForNameStringVoidClosure: ((String?, String) -> Void)?
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:952:23: warning: static property 'setUserPropertyValueStringForNameStringVoidReceivedInvocations' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 950 |     }
 951 |     public static var setUserPropertyValueStringForNameStringVoidReceivedArguments: (value: String?, forName: String)?
 952 |     public static var setUserPropertyValueStringForNameStringVoidReceivedInvocations: [(value: String?, forName: String)] = []
     |                       |- warning: static property 'setUserPropertyValueStringForNameStringVoidReceivedInvocations' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'setUserPropertyValueStringForNameStringVoidReceivedInvocations' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'setUserPropertyValueStringForNameStringVoidReceivedInvocations' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 953 |     public static var setUserPropertyValueStringForNameStringVoidClosure: ((String?, String) -> Void)?
 954 |
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:953:23: warning: static property 'setUserPropertyValueStringForNameStringVoidClosure' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 951 |     public static var setUserPropertyValueStringForNameStringVoidReceivedArguments: (value: String?, forName: String)?
 952 |     public static var setUserPropertyValueStringForNameStringVoidReceivedInvocations: [(value: String?, forName: String)] = []
 953 |     public static var setUserPropertyValueStringForNameStringVoidClosure: ((String?, String) -> Void)?
     |                       |- warning: static property 'setUserPropertyValueStringForNameStringVoidClosure' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'setUserPropertyValueStringForNameStringVoidClosure' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'setUserPropertyValueStringForNameStringVoidClosure' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 954 |
 955 |     public static func setUserProperty(_ value: String?, forName: String) {
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:1013:23: warning: static property 'setTrackingEnabledTrackingEnabledBoolVoidCallsCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
1011 |     //MARK: - setTrackingEnabled
1012 |
1013 |     public static var setTrackingEnabledTrackingEnabledBoolVoidCallsCount = 0
     |                       |- warning: static property 'setTrackingEnabledTrackingEnabledBoolVoidCallsCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'setTrackingEnabledTrackingEnabledBoolVoidCallsCount' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'setTrackingEnabledTrackingEnabledBoolVoidCallsCount' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1014 |     public static var setTrackingEnabledTrackingEnabledBoolVoidCalled: Bool {
1015 |         return setTrackingEnabledTrackingEnabledBoolVoidCallsCount > 0
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:1017:23: warning: static property 'setTrackingEnabledTrackingEnabledBoolVoidReceivedTrackingEnabled' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
1015 |         return setTrackingEnabledTrackingEnabledBoolVoidCallsCount > 0
1016 |     }
1017 |     public static var setTrackingEnabledTrackingEnabledBoolVoidReceivedTrackingEnabled: (Bool)?
     |                       |- warning: static property 'setTrackingEnabledTrackingEnabledBoolVoidReceivedTrackingEnabled' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'setTrackingEnabledTrackingEnabledBoolVoidReceivedTrackingEnabled' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'setTrackingEnabledTrackingEnabledBoolVoidReceivedTrackingEnabled' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1018 |     public static var setTrackingEnabledTrackingEnabledBoolVoidReceivedInvocations: [(Bool)] = []
1019 |     public static var setTrackingEnabledTrackingEnabledBoolVoidClosure: ((Bool) -> Void)?
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:1018:23: warning: static property 'setTrackingEnabledTrackingEnabledBoolVoidReceivedInvocations' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
1016 |     }
1017 |     public static var setTrackingEnabledTrackingEnabledBoolVoidReceivedTrackingEnabled: (Bool)?
1018 |     public static var setTrackingEnabledTrackingEnabledBoolVoidReceivedInvocations: [(Bool)] = []
     |                       |- warning: static property 'setTrackingEnabledTrackingEnabledBoolVoidReceivedInvocations' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'setTrackingEnabledTrackingEnabledBoolVoidReceivedInvocations' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'setTrackingEnabledTrackingEnabledBoolVoidReceivedInvocations' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1019 |     public static var setTrackingEnabledTrackingEnabledBoolVoidClosure: ((Bool) -> Void)?
1020 |
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:1019:23: warning: static property 'setTrackingEnabledTrackingEnabledBoolVoidClosure' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
1017 |     public static var setTrackingEnabledTrackingEnabledBoolVoidReceivedTrackingEnabled: (Bool)?
1018 |     public static var setTrackingEnabledTrackingEnabledBoolVoidReceivedInvocations: [(Bool)] = []
1019 |     public static var setTrackingEnabledTrackingEnabledBoolVoidClosure: ((Bool) -> Void)?
     |                       |- warning: static property 'setTrackingEnabledTrackingEnabledBoolVoidClosure' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'setTrackingEnabledTrackingEnabledBoolVoidClosure' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'setTrackingEnabledTrackingEnabledBoolVoidClosure' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1020 |
1021 |     public static func setTrackingEnabled(_ trackingEnabled: Bool) {
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:1030:23: warning: static property 'isTrackingEnabledBoolCallsCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
1028 |     //MARK: - isTrackingEnabled
1029 |
1030 |     public static var isTrackingEnabledBoolCallsCount = 0
     |                       |- warning: static property 'isTrackingEnabledBoolCallsCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'isTrackingEnabledBoolCallsCount' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'isTrackingEnabledBoolCallsCount' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1031 |     public static var isTrackingEnabledBoolCalled: Bool {
1032 |         return isTrackingEnabledBoolCallsCount > 0
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:1034:23: warning: static property 'isTrackingEnabledBoolReturnValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
1032 |         return isTrackingEnabledBoolCallsCount > 0
1033 |     }
1034 |     public static var isTrackingEnabledBoolReturnValue: Bool!
     |                       |- warning: static property 'isTrackingEnabledBoolReturnValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'isTrackingEnabledBoolReturnValue' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'isTrackingEnabledBoolReturnValue' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1035 |     public static var isTrackingEnabledBoolClosure: (() -> Bool)?
1036 |
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:1035:23: warning: static property 'isTrackingEnabledBoolClosure' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
1033 |     }
1034 |     public static var isTrackingEnabledBoolReturnValue: Bool!
1035 |     public static var isTrackingEnabledBoolClosure: (() -> Bool)?
     |                       |- warning: static property 'isTrackingEnabledBoolClosure' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'isTrackingEnabledBoolClosure' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'isTrackingEnabledBoolClosure' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1036 |
1037 |     public static func isTrackingEnabled() -> Bool {
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:1048:23: warning: static property 'identifyIdentityStringVoidCallsCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
1046 |     //MARK: - identify
1047 |
1048 |     public static var identifyIdentityStringVoidCallsCount = 0
     |                       |- warning: static property 'identifyIdentityStringVoidCallsCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'identifyIdentityStringVoidCallsCount' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'identifyIdentityStringVoidCallsCount' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1049 |     public static var identifyIdentityStringVoidCalled: Bool {
1050 |         return identifyIdentityStringVoidCallsCount > 0
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:1052:23: warning: static property 'identifyIdentityStringVoidReceivedIdentity' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
1050 |         return identifyIdentityStringVoidCallsCount > 0
1051 |     }
1052 |     public static var identifyIdentityStringVoidReceivedIdentity: (String)?
     |                       |- warning: static property 'identifyIdentityStringVoidReceivedIdentity' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'identifyIdentityStringVoidReceivedIdentity' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'identifyIdentityStringVoidReceivedIdentity' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1053 |     public static var identifyIdentityStringVoidReceivedInvocations: [(String)] = []
1054 |     public static var identifyIdentityStringVoidClosure: ((String) -> Void)?
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:1053:23: warning: static property 'identifyIdentityStringVoidReceivedInvocations' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
1051 |     }
1052 |     public static var identifyIdentityStringVoidReceivedIdentity: (String)?
1053 |     public static var identifyIdentityStringVoidReceivedInvocations: [(String)] = []
     |                       |- warning: static property 'identifyIdentityStringVoidReceivedInvocations' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'identifyIdentityStringVoidReceivedInvocations' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'identifyIdentityStringVoidReceivedInvocations' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1054 |     public static var identifyIdentityStringVoidClosure: ((String) -> Void)?
1055 |
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:1054:23: warning: static property 'identifyIdentityStringVoidClosure' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
1052 |     public static var identifyIdentityStringVoidReceivedIdentity: (String)?
1053 |     public static var identifyIdentityStringVoidReceivedInvocations: [(String)] = []
1054 |     public static var identifyIdentityStringVoidClosure: ((String) -> Void)?
     |                       |- warning: static property 'identifyIdentityStringVoidClosure' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'identifyIdentityStringVoidClosure' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'identifyIdentityStringVoidClosure' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1055 |
1056 |     public static func identify(_ identity: String) {
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:1065:23: warning: static property 'addUserPropertiesPropertiesStringAnyVoidCallsCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
1063 |     //MARK: - addUserProperties
1064 |
1065 |     public static var addUserPropertiesPropertiesStringAnyVoidCallsCount = 0
     |                       |- warning: static property 'addUserPropertiesPropertiesStringAnyVoidCallsCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'addUserPropertiesPropertiesStringAnyVoidCallsCount' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'addUserPropertiesPropertiesStringAnyVoidCallsCount' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1066 |     public static var addUserPropertiesPropertiesStringAnyVoidCalled: Bool {
1067 |         return addUserPropertiesPropertiesStringAnyVoidCallsCount > 0
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:1069:23: warning: static property 'addUserPropertiesPropertiesStringAnyVoidReceivedProperties' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
1067 |         return addUserPropertiesPropertiesStringAnyVoidCallsCount > 0
1068 |     }
1069 |     public static var addUserPropertiesPropertiesStringAnyVoidReceivedProperties: ([String: Any])?
     |                       |- warning: static property 'addUserPropertiesPropertiesStringAnyVoidReceivedProperties' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'addUserPropertiesPropertiesStringAnyVoidReceivedProperties' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'addUserPropertiesPropertiesStringAnyVoidReceivedProperties' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1070 |     public static var addUserPropertiesPropertiesStringAnyVoidReceivedInvocations: [([String: Any])] = []
1071 |     public static var addUserPropertiesPropertiesStringAnyVoidClosure: (([String: Any]) -> Void)?
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:1070:23: warning: static property 'addUserPropertiesPropertiesStringAnyVoidReceivedInvocations' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
1068 |     }
1069 |     public static var addUserPropertiesPropertiesStringAnyVoidReceivedProperties: ([String: Any])?
1070 |     public static var addUserPropertiesPropertiesStringAnyVoidReceivedInvocations: [([String: Any])] = []
     |                       |- warning: static property 'addUserPropertiesPropertiesStringAnyVoidReceivedInvocations' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'addUserPropertiesPropertiesStringAnyVoidReceivedInvocations' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'addUserPropertiesPropertiesStringAnyVoidReceivedInvocations' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1071 |     public static var addUserPropertiesPropertiesStringAnyVoidClosure: (([String: Any]) -> Void)?
1072 |
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:1071:23: warning: static property 'addUserPropertiesPropertiesStringAnyVoidClosure' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
1069 |     public static var addUserPropertiesPropertiesStringAnyVoidReceivedProperties: ([String: Any])?
1070 |     public static var addUserPropertiesPropertiesStringAnyVoidReceivedInvocations: [([String: Any])] = []
1071 |     public static var addUserPropertiesPropertiesStringAnyVoidClosure: (([String: Any]) -> Void)?
     |                       |- warning: static property 'addUserPropertiesPropertiesStringAnyVoidClosure' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'addUserPropertiesPropertiesStringAnyVoidClosure' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'addUserPropertiesPropertiesStringAnyVoidClosure' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1072 |
1073 |     public static func addUserProperties(_ properties: [String: Any]) {
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:1082:23: warning: static property 'trackEventStringWithPropertiesPropertiesAnyHashableAnyVoidCallsCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
1080 |     //MARK: - track
1081 |
1082 |     public static var trackEventStringWithPropertiesPropertiesAnyHashableAnyVoidCallsCount = 0
     |                       |- warning: static property 'trackEventStringWithPropertiesPropertiesAnyHashableAnyVoidCallsCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'trackEventStringWithPropertiesPropertiesAnyHashableAnyVoidCallsCount' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'trackEventStringWithPropertiesPropertiesAnyHashableAnyVoidCallsCount' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1083 |     public static var trackEventStringWithPropertiesPropertiesAnyHashableAnyVoidCalled: Bool {
1084 |         return trackEventStringWithPropertiesPropertiesAnyHashableAnyVoidCallsCount > 0
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:1086:23: warning: static property 'trackEventStringWithPropertiesPropertiesAnyHashableAnyVoidReceivedArguments' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
1084 |         return trackEventStringWithPropertiesPropertiesAnyHashableAnyVoidCallsCount > 0
1085 |     }
1086 |     public static var trackEventStringWithPropertiesPropertiesAnyHashableAnyVoidReceivedArguments: (event: String, properties: [AnyHashable: Any]?)?
     |                       |- warning: static property 'trackEventStringWithPropertiesPropertiesAnyHashableAnyVoidReceivedArguments' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'trackEventStringWithPropertiesPropertiesAnyHashableAnyVoidReceivedArguments' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'trackEventStringWithPropertiesPropertiesAnyHashableAnyVoidReceivedArguments' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1087 |     public static var trackEventStringWithPropertiesPropertiesAnyHashableAnyVoidReceivedInvocations: [(event: String, properties: [AnyHashable: Any]?)] = []
1088 |     public static var trackEventStringWithPropertiesPropertiesAnyHashableAnyVoidClosure: ((String, [AnyHashable: Any]?) -> Void)?
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:1087:23: warning: static property 'trackEventStringWithPropertiesPropertiesAnyHashableAnyVoidReceivedInvocations' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
1085 |     }
1086 |     public static var trackEventStringWithPropertiesPropertiesAnyHashableAnyVoidReceivedArguments: (event: String, properties: [AnyHashable: Any]?)?
1087 |     public static var trackEventStringWithPropertiesPropertiesAnyHashableAnyVoidReceivedInvocations: [(event: String, properties: [AnyHashable: Any]?)] = []
     |                       |- warning: static property 'trackEventStringWithPropertiesPropertiesAnyHashableAnyVoidReceivedInvocations' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'trackEventStringWithPropertiesPropertiesAnyHashableAnyVoidReceivedInvocations' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'trackEventStringWithPropertiesPropertiesAnyHashableAnyVoidReceivedInvocations' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1088 |     public static var trackEventStringWithPropertiesPropertiesAnyHashableAnyVoidClosure: ((String, [AnyHashable: Any]?) -> Void)?
1089 |
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:1088:23: warning: static property 'trackEventStringWithPropertiesPropertiesAnyHashableAnyVoidClosure' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
1086 |     public static var trackEventStringWithPropertiesPropertiesAnyHashableAnyVoidReceivedArguments: (event: String, properties: [AnyHashable: Any]?)?
1087 |     public static var trackEventStringWithPropertiesPropertiesAnyHashableAnyVoidReceivedInvocations: [(event: String, properties: [AnyHashable: Any]?)] = []
1088 |     public static var trackEventStringWithPropertiesPropertiesAnyHashableAnyVoidClosure: ((String, [AnyHashable: Any]?) -> Void)?
     |                       |- warning: static property 'trackEventStringWithPropertiesPropertiesAnyHashableAnyVoidClosure' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'trackEventStringWithPropertiesPropertiesAnyHashableAnyVoidClosure' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'trackEventStringWithPropertiesPropertiesAnyHashableAnyVoidClosure' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1089 |
1090 |     public static func track(_ event: String, withProperties properties: [AnyHashable: Any]?) {
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:1099:23: warning: static property 'resetIdentityVoidCallsCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
1097 |     //MARK: - resetIdentity
1098 |
1099 |     public static var resetIdentityVoidCallsCount = 0
     |                       |- warning: static property 'resetIdentityVoidCallsCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'resetIdentityVoidCallsCount' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'resetIdentityVoidCallsCount' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1100 |     public static var resetIdentityVoidCalled: Bool {
1101 |         return resetIdentityVoidCallsCount > 0
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:1103:23: warning: static property 'resetIdentityVoidClosure' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
1101 |         return resetIdentityVoidCallsCount > 0
1102 |     }
1103 |     public static var resetIdentityVoidClosure: (() -> Void)?
     |                       |- warning: static property 'resetIdentityVoidClosure' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'resetIdentityVoidClosure' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'resetIdentityVoidClosure' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1104 |
1105 |     public static func resetIdentity() {
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:1144:23: warning: static property 'logUserEventWithNameStringVoidCallsCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
1142 |     //MARK: - logUserEvent
1143 |
1144 |     public static var logUserEventWithNameStringVoidCallsCount = 0
     |                       |- warning: static property 'logUserEventWithNameStringVoidCallsCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'logUserEventWithNameStringVoidCallsCount' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'logUserEventWithNameStringVoidCallsCount' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1145 |     public static var logUserEventWithNameStringVoidCalled: Bool {
1146 |         return logUserEventWithNameStringVoidCallsCount > 0
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:1148:23: warning: static property 'logUserEventWithNameStringVoidReceivedWithName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
1146 |         return logUserEventWithNameStringVoidCallsCount > 0
1147 |     }
1148 |     public static var logUserEventWithNameStringVoidReceivedWithName: (String)?
     |                       |- warning: static property 'logUserEventWithNameStringVoidReceivedWithName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'logUserEventWithNameStringVoidReceivedWithName' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'logUserEventWithNameStringVoidReceivedWithName' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1149 |     public static var logUserEventWithNameStringVoidReceivedInvocations: [(String)] = []
1150 |     public static var logUserEventWithNameStringVoidClosure: ((String) -> Void)?
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:1149:23: warning: static property 'logUserEventWithNameStringVoidReceivedInvocations' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
1147 |     }
1148 |     public static var logUserEventWithNameStringVoidReceivedWithName: (String)?
1149 |     public static var logUserEventWithNameStringVoidReceivedInvocations: [(String)] = []
     |                       |- warning: static property 'logUserEventWithNameStringVoidReceivedInvocations' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'logUserEventWithNameStringVoidReceivedInvocations' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'logUserEventWithNameStringVoidReceivedInvocations' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1150 |     public static var logUserEventWithNameStringVoidClosure: ((String) -> Void)?
1151 |
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:1150:23: warning: static property 'logUserEventWithNameStringVoidClosure' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
1148 |     public static var logUserEventWithNameStringVoidReceivedWithName: (String)?
1149 |     public static var logUserEventWithNameStringVoidReceivedInvocations: [(String)] = []
1150 |     public static var logUserEventWithNameStringVoidClosure: ((String) -> Void)?
     |                       |- warning: static property 'logUserEventWithNameStringVoidClosure' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'logUserEventWithNameStringVoidClosure' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'logUserEventWithNameStringVoidClosure' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1151 |
1152 |     public static func logUserEvent(withName: String) {
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:1161:23: warning: static property 'removeUserAttributeForKeyStringVoidCallsCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
1159 |     //MARK: - removeUserAttribute
1160 |
1161 |     public static var removeUserAttributeForKeyStringVoidCallsCount = 0
     |                       |- warning: static property 'removeUserAttributeForKeyStringVoidCallsCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'removeUserAttributeForKeyStringVoidCallsCount' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'removeUserAttributeForKeyStringVoidCallsCount' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1162 |     public static var removeUserAttributeForKeyStringVoidCalled: Bool {
1163 |         return removeUserAttributeForKeyStringVoidCallsCount > 0
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:1165:23: warning: static property 'removeUserAttributeForKeyStringVoidReceivedForKey' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
1163 |         return removeUserAttributeForKeyStringVoidCallsCount > 0
1164 |     }
1165 |     public static var removeUserAttributeForKeyStringVoidReceivedForKey: (String)?
     |                       |- warning: static property 'removeUserAttributeForKeyStringVoidReceivedForKey' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'removeUserAttributeForKeyStringVoidReceivedForKey' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'removeUserAttributeForKeyStringVoidReceivedForKey' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1166 |     public static var removeUserAttributeForKeyStringVoidReceivedInvocations: [(String)] = []
1167 |     public static var removeUserAttributeForKeyStringVoidClosure: ((String) -> Void)?
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:1166:23: warning: static property 'removeUserAttributeForKeyStringVoidReceivedInvocations' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
1164 |     }
1165 |     public static var removeUserAttributeForKeyStringVoidReceivedForKey: (String)?
1166 |     public static var removeUserAttributeForKeyStringVoidReceivedInvocations: [(String)] = []
     |                       |- warning: static property 'removeUserAttributeForKeyStringVoidReceivedInvocations' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'removeUserAttributeForKeyStringVoidReceivedInvocations' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'removeUserAttributeForKeyStringVoidReceivedInvocations' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1167 |     public static var removeUserAttributeForKeyStringVoidClosure: ((String) -> Void)?
1168 |
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:1167:23: warning: static property 'removeUserAttributeForKeyStringVoidClosure' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
1165 |     public static var removeUserAttributeForKeyStringVoidReceivedForKey: (String)?
1166 |     public static var removeUserAttributeForKeyStringVoidReceivedInvocations: [(String)] = []
1167 |     public static var removeUserAttributeForKeyStringVoidClosure: ((String) -> Void)?
     |                       |- warning: static property 'removeUserAttributeForKeyStringVoidClosure' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'removeUserAttributeForKeyStringVoidClosure' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'removeUserAttributeForKeyStringVoidClosure' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1168 |
1169 |     public static func removeUserAttribute(forKey: String) {
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:1178:23: warning: static property 'setUserAttributeValueStringWithKeyStringVoidCallsCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
1176 |     //MARK: - setUserAttribute
1177 |
1178 |     public static var setUserAttributeValueStringWithKeyStringVoidCallsCount = 0
     |                       |- warning: static property 'setUserAttributeValueStringWithKeyStringVoidCallsCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'setUserAttributeValueStringWithKeyStringVoidCallsCount' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'setUserAttributeValueStringWithKeyStringVoidCallsCount' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1179 |     public static var setUserAttributeValueStringWithKeyStringVoidCalled: Bool {
1180 |         return setUserAttributeValueStringWithKeyStringVoidCallsCount > 0
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:1182:23: warning: static property 'setUserAttributeValueStringWithKeyStringVoidReceivedArguments' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
1180 |         return setUserAttributeValueStringWithKeyStringVoidCallsCount > 0
1181 |     }
1182 |     public static var setUserAttributeValueStringWithKeyStringVoidReceivedArguments: (value: String, withKey: String)?
     |                       |- warning: static property 'setUserAttributeValueStringWithKeyStringVoidReceivedArguments' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'setUserAttributeValueStringWithKeyStringVoidReceivedArguments' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'setUserAttributeValueStringWithKeyStringVoidReceivedArguments' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1183 |     public static var setUserAttributeValueStringWithKeyStringVoidReceivedInvocations: [(value: String, withKey: String)] = []
1184 |     public static var setUserAttributeValueStringWithKeyStringVoidClosure: ((String, String) -> Void)?
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:1183:23: warning: static property 'setUserAttributeValueStringWithKeyStringVoidReceivedInvocations' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
1181 |     }
1182 |     public static var setUserAttributeValueStringWithKeyStringVoidReceivedArguments: (value: String, withKey: String)?
1183 |     public static var setUserAttributeValueStringWithKeyStringVoidReceivedInvocations: [(value: String, withKey: String)] = []
     |                       |- warning: static property 'setUserAttributeValueStringWithKeyStringVoidReceivedInvocations' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'setUserAttributeValueStringWithKeyStringVoidReceivedInvocations' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'setUserAttributeValueStringWithKeyStringVoidReceivedInvocations' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1184 |     public static var setUserAttributeValueStringWithKeyStringVoidClosure: ((String, String) -> Void)?
1185 |
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:1184:23: warning: static property 'setUserAttributeValueStringWithKeyStringVoidClosure' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
1182 |     public static var setUserAttributeValueStringWithKeyStringVoidReceivedArguments: (value: String, withKey: String)?
1183 |     public static var setUserAttributeValueStringWithKeyStringVoidReceivedInvocations: [(value: String, withKey: String)] = []
1184 |     public static var setUserAttributeValueStringWithKeyStringVoidClosure: ((String, String) -> Void)?
     |                       |- warning: static property 'setUserAttributeValueStringWithKeyStringVoidClosure' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'setUserAttributeValueStringWithKeyStringVoidClosure' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'setUserAttributeValueStringWithKeyStringVoidClosure' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1185 |
1186 |     public static func setUserAttribute(_ value: String, withKey: String) {
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:1307:23: warning: static property 'tagEventEventNameStringAttributesStringStringVoidCallsCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
1305 |     //MARK: - tagEvent
1306 |
1307 |     public static var tagEventEventNameStringAttributesStringStringVoidCallsCount = 0
     |                       |- warning: static property 'tagEventEventNameStringAttributesStringStringVoidCallsCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'tagEventEventNameStringAttributesStringStringVoidCallsCount' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'tagEventEventNameStringAttributesStringStringVoidCallsCount' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1308 |     public static var tagEventEventNameStringAttributesStringStringVoidCalled: Bool {
1309 |         return tagEventEventNameStringAttributesStringStringVoidCallsCount > 0
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:1311:23: warning: static property 'tagEventEventNameStringAttributesStringStringVoidReceivedArguments' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
1309 |         return tagEventEventNameStringAttributesStringStringVoidCallsCount > 0
1310 |     }
1311 |     public static var tagEventEventNameStringAttributesStringStringVoidReceivedArguments: (eventName: String, attributes: [String: String]?)?
     |                       |- warning: static property 'tagEventEventNameStringAttributesStringStringVoidReceivedArguments' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'tagEventEventNameStringAttributesStringStringVoidReceivedArguments' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'tagEventEventNameStringAttributesStringStringVoidReceivedArguments' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1312 |     public static var tagEventEventNameStringAttributesStringStringVoidReceivedInvocations: [(eventName: String, attributes: [String: String]?)] = []
1313 |     public static var tagEventEventNameStringAttributesStringStringVoidClosure: ((String, [String: String]?) -> Void)?
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:1312:23: warning: static property 'tagEventEventNameStringAttributesStringStringVoidReceivedInvocations' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
1310 |     }
1311 |     public static var tagEventEventNameStringAttributesStringStringVoidReceivedArguments: (eventName: String, attributes: [String: String]?)?
1312 |     public static var tagEventEventNameStringAttributesStringStringVoidReceivedInvocations: [(eventName: String, attributes: [String: String]?)] = []
     |                       |- warning: static property 'tagEventEventNameStringAttributesStringStringVoidReceivedInvocations' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'tagEventEventNameStringAttributesStringStringVoidReceivedInvocations' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'tagEventEventNameStringAttributesStringStringVoidReceivedInvocations' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1313 |     public static var tagEventEventNameStringAttributesStringStringVoidClosure: ((String, [String: String]?) -> Void)?
1314 |
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:1313:23: warning: static property 'tagEventEventNameStringAttributesStringStringVoidClosure' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
1311 |     public static var tagEventEventNameStringAttributesStringStringVoidReceivedArguments: (eventName: String, attributes: [String: String]?)?
1312 |     public static var tagEventEventNameStringAttributesStringStringVoidReceivedInvocations: [(eventName: String, attributes: [String: String]?)] = []
1313 |     public static var tagEventEventNameStringAttributesStringStringVoidClosure: ((String, [String: String]?) -> Void)?
     |                       |- warning: static property 'tagEventEventNameStringAttributesStringStringVoidClosure' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'tagEventEventNameStringAttributesStringStringVoidClosure' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'tagEventEventNameStringAttributesStringStringVoidClosure' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1314 |
1315 |     public static func tagEvent(_ eventName: String, attributes: [String: String]?) {
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:1324:23: warning: static property 'tagScreenScreenNameStringVoidCallsCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
1322 |     //MARK: - tagScreen
1323 |
1324 |     public static var tagScreenScreenNameStringVoidCallsCount = 0
     |                       |- warning: static property 'tagScreenScreenNameStringVoidCallsCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'tagScreenScreenNameStringVoidCallsCount' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'tagScreenScreenNameStringVoidCallsCount' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1325 |     public static var tagScreenScreenNameStringVoidCalled: Bool {
1326 |         return tagScreenScreenNameStringVoidCallsCount > 0
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:1328:23: warning: static property 'tagScreenScreenNameStringVoidReceivedScreenName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
1326 |         return tagScreenScreenNameStringVoidCallsCount > 0
1327 |     }
1328 |     public static var tagScreenScreenNameStringVoidReceivedScreenName: (String)?
     |                       |- warning: static property 'tagScreenScreenNameStringVoidReceivedScreenName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'tagScreenScreenNameStringVoidReceivedScreenName' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'tagScreenScreenNameStringVoidReceivedScreenName' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1329 |     public static var tagScreenScreenNameStringVoidReceivedInvocations: [(String)] = []
1330 |     public static var tagScreenScreenNameStringVoidClosure: ((String) -> Void)?
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:1329:23: warning: static property 'tagScreenScreenNameStringVoidReceivedInvocations' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
1327 |     }
1328 |     public static var tagScreenScreenNameStringVoidReceivedScreenName: (String)?
1329 |     public static var tagScreenScreenNameStringVoidReceivedInvocations: [(String)] = []
     |                       |- warning: static property 'tagScreenScreenNameStringVoidReceivedInvocations' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'tagScreenScreenNameStringVoidReceivedInvocations' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'tagScreenScreenNameStringVoidReceivedInvocations' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1330 |     public static var tagScreenScreenNameStringVoidClosure: ((String) -> Void)?
1331 |
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:1330:23: warning: static property 'tagScreenScreenNameStringVoidClosure' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
1328 |     public static var tagScreenScreenNameStringVoidReceivedScreenName: (String)?
1329 |     public static var tagScreenScreenNameStringVoidReceivedInvocations: [(String)] = []
1330 |     public static var tagScreenScreenNameStringVoidClosure: ((String) -> Void)?
     |                       |- warning: static property 'tagScreenScreenNameStringVoidClosure' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'tagScreenScreenNameStringVoidClosure' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'tagScreenScreenNameStringVoidClosure' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1331 |
1332 |     public static func tagScreen(_ screenName: String) {
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:1341:23: warning: static property 'setLoggingEnabledLoggingEnabledBoolVoidCallsCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
1339 |     //MARK: - setLoggingEnabled
1340 |
1341 |     public static var setLoggingEnabledLoggingEnabledBoolVoidCallsCount = 0
     |                       |- warning: static property 'setLoggingEnabledLoggingEnabledBoolVoidCallsCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'setLoggingEnabledLoggingEnabledBoolVoidCallsCount' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'setLoggingEnabledLoggingEnabledBoolVoidCallsCount' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1342 |     public static var setLoggingEnabledLoggingEnabledBoolVoidCalled: Bool {
1343 |         return setLoggingEnabledLoggingEnabledBoolVoidCallsCount > 0
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:1345:23: warning: static property 'setLoggingEnabledLoggingEnabledBoolVoidReceivedLoggingEnabled' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
1343 |         return setLoggingEnabledLoggingEnabledBoolVoidCallsCount > 0
1344 |     }
1345 |     public static var setLoggingEnabledLoggingEnabledBoolVoidReceivedLoggingEnabled: (Bool)?
     |                       |- warning: static property 'setLoggingEnabledLoggingEnabledBoolVoidReceivedLoggingEnabled' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'setLoggingEnabledLoggingEnabledBoolVoidReceivedLoggingEnabled' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'setLoggingEnabledLoggingEnabledBoolVoidReceivedLoggingEnabled' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1346 |     public static var setLoggingEnabledLoggingEnabledBoolVoidReceivedInvocations: [(Bool)] = []
1347 |     public static var setLoggingEnabledLoggingEnabledBoolVoidClosure: ((Bool) -> Void)?
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:1346:23: warning: static property 'setLoggingEnabledLoggingEnabledBoolVoidReceivedInvocations' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
1344 |     }
1345 |     public static var setLoggingEnabledLoggingEnabledBoolVoidReceivedLoggingEnabled: (Bool)?
1346 |     public static var setLoggingEnabledLoggingEnabledBoolVoidReceivedInvocations: [(Bool)] = []
     |                       |- warning: static property 'setLoggingEnabledLoggingEnabledBoolVoidReceivedInvocations' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'setLoggingEnabledLoggingEnabledBoolVoidReceivedInvocations' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'setLoggingEnabledLoggingEnabledBoolVoidReceivedInvocations' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1347 |     public static var setLoggingEnabledLoggingEnabledBoolVoidClosure: ((Bool) -> Void)?
1348 |
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:1347:23: warning: static property 'setLoggingEnabledLoggingEnabledBoolVoidClosure' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
1345 |     public static var setLoggingEnabledLoggingEnabledBoolVoidReceivedLoggingEnabled: (Bool)?
1346 |     public static var setLoggingEnabledLoggingEnabledBoolVoidReceivedInvocations: [(Bool)] = []
1347 |     public static var setLoggingEnabledLoggingEnabledBoolVoidClosure: ((Bool) -> Void)?
     |                       |- warning: static property 'setLoggingEnabledLoggingEnabledBoolVoidClosure' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'setLoggingEnabledLoggingEnabledBoolVoidClosure' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'setLoggingEnabledLoggingEnabledBoolVoidClosure' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1348 |
1349 |     public static func setLoggingEnabled(_ loggingEnabled: Bool) {
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:1358:23: warning: static property 'setCustomerIdCustomerIdStringVoidCallsCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
1356 |     //MARK: - setCustomerId
1357 |
1358 |     public static var setCustomerIdCustomerIdStringVoidCallsCount = 0
     |                       |- warning: static property 'setCustomerIdCustomerIdStringVoidCallsCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'setCustomerIdCustomerIdStringVoidCallsCount' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'setCustomerIdCustomerIdStringVoidCallsCount' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1359 |     public static var setCustomerIdCustomerIdStringVoidCalled: Bool {
1360 |         return setCustomerIdCustomerIdStringVoidCallsCount > 0
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:1362:23: warning: static property 'setCustomerIdCustomerIdStringVoidReceivedCustomerId' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
1360 |         return setCustomerIdCustomerIdStringVoidCallsCount > 0
1361 |     }
1362 |     public static var setCustomerIdCustomerIdStringVoidReceivedCustomerId: (String)?
     |                       |- warning: static property 'setCustomerIdCustomerIdStringVoidReceivedCustomerId' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'setCustomerIdCustomerIdStringVoidReceivedCustomerId' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'setCustomerIdCustomerIdStringVoidReceivedCustomerId' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1363 |     public static var setCustomerIdCustomerIdStringVoidReceivedInvocations: [(String)?] = []
1364 |     public static var setCustomerIdCustomerIdStringVoidClosure: ((String?) -> Void)?
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:1363:23: warning: static property 'setCustomerIdCustomerIdStringVoidReceivedInvocations' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
1361 |     }
1362 |     public static var setCustomerIdCustomerIdStringVoidReceivedCustomerId: (String)?
1363 |     public static var setCustomerIdCustomerIdStringVoidReceivedInvocations: [(String)?] = []
     |                       |- warning: static property 'setCustomerIdCustomerIdStringVoidReceivedInvocations' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'setCustomerIdCustomerIdStringVoidReceivedInvocations' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'setCustomerIdCustomerIdStringVoidReceivedInvocations' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1364 |     public static var setCustomerIdCustomerIdStringVoidClosure: ((String?) -> Void)?
1365 |
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:1364:23: warning: static property 'setCustomerIdCustomerIdStringVoidClosure' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
1362 |     public static var setCustomerIdCustomerIdStringVoidReceivedCustomerId: (String)?
1363 |     public static var setCustomerIdCustomerIdStringVoidReceivedInvocations: [(String)?] = []
1364 |     public static var setCustomerIdCustomerIdStringVoidClosure: ((String?) -> Void)?
     |                       |- warning: static property 'setCustomerIdCustomerIdStringVoidClosure' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'setCustomerIdCustomerIdStringVoidClosure' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'setCustomerIdCustomerIdStringVoidClosure' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1365 |
1366 |     public static func setCustomerId(_ customerId: String?) {
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:1375:23: warning: static property 'setValueValueStringForIdentifierStringVoidCallsCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
1373 |     //MARK: - setValue
1374 |
1375 |     public static var setValueValueStringForIdentifierStringVoidCallsCount = 0
     |                       |- warning: static property 'setValueValueStringForIdentifierStringVoidCallsCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'setValueValueStringForIdentifierStringVoidCallsCount' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'setValueValueStringForIdentifierStringVoidCallsCount' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1376 |     public static var setValueValueStringForIdentifierStringVoidCalled: Bool {
1377 |         return setValueValueStringForIdentifierStringVoidCallsCount > 0
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:1379:23: warning: static property 'setValueValueStringForIdentifierStringVoidReceivedArguments' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
1377 |         return setValueValueStringForIdentifierStringVoidCallsCount > 0
1378 |     }
1379 |     public static var setValueValueStringForIdentifierStringVoidReceivedArguments: (value: String?, forIdentifier: String)?
     |                       |- warning: static property 'setValueValueStringForIdentifierStringVoidReceivedArguments' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'setValueValueStringForIdentifierStringVoidReceivedArguments' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'setValueValueStringForIdentifierStringVoidReceivedArguments' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1380 |     public static var setValueValueStringForIdentifierStringVoidReceivedInvocations: [(value: String?, forIdentifier: String)] = []
1381 |     public static var setValueValueStringForIdentifierStringVoidClosure: ((String?, String) -> Void)?
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:1380:23: warning: static property 'setValueValueStringForIdentifierStringVoidReceivedInvocations' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
1378 |     }
1379 |     public static var setValueValueStringForIdentifierStringVoidReceivedArguments: (value: String?, forIdentifier: String)?
1380 |     public static var setValueValueStringForIdentifierStringVoidReceivedInvocations: [(value: String?, forIdentifier: String)] = []
     |                       |- warning: static property 'setValueValueStringForIdentifierStringVoidReceivedInvocations' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'setValueValueStringForIdentifierStringVoidReceivedInvocations' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'setValueValueStringForIdentifierStringVoidReceivedInvocations' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1381 |     public static var setValueValueStringForIdentifierStringVoidClosure: ((String?, String) -> Void)?
1382 |
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:1381:23: warning: static property 'setValueValueStringForIdentifierStringVoidClosure' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
1379 |     public static var setValueValueStringForIdentifierStringVoidReceivedArguments: (value: String?, forIdentifier: String)?
1380 |     public static var setValueValueStringForIdentifierStringVoidReceivedInvocations: [(value: String?, forIdentifier: String)] = []
1381 |     public static var setValueValueStringForIdentifierStringVoidClosure: ((String?, String) -> Void)?
     |                       |- warning: static property 'setValueValueStringForIdentifierStringVoidClosure' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'setValueValueStringForIdentifierStringVoidClosure' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'setValueValueStringForIdentifierStringVoidClosure' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1382 |
1383 |     public static func setValue(_ value: String?, forIdentifier: String) {
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:1392:23: warning: static property 'isOptedOutBoolCallsCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
1390 |     //MARK: - isOptedOut
1391 |
1392 |     public static var isOptedOutBoolCallsCount = 0
     |                       |- warning: static property 'isOptedOutBoolCallsCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'isOptedOutBoolCallsCount' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'isOptedOutBoolCallsCount' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1393 |     public static var isOptedOutBoolCalled: Bool {
1394 |         return isOptedOutBoolCallsCount > 0
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:1396:23: warning: static property 'isOptedOutBoolReturnValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
1394 |         return isOptedOutBoolCallsCount > 0
1395 |     }
1396 |     public static var isOptedOutBoolReturnValue: Bool!
     |                       |- warning: static property 'isOptedOutBoolReturnValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'isOptedOutBoolReturnValue' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'isOptedOutBoolReturnValue' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1397 |     public static var isOptedOutBoolClosure: (() -> Bool)?
1398 |
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:1397:23: warning: static property 'isOptedOutBoolClosure' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
1395 |     }
1396 |     public static var isOptedOutBoolReturnValue: Bool!
1397 |     public static var isOptedOutBoolClosure: (() -> Bool)?
     |                       |- warning: static property 'isOptedOutBoolClosure' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'isOptedOutBoolClosure' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'isOptedOutBoolClosure' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1398 |
1399 |     public static func isOptedOut() -> Bool {
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:1410:23: warning: static property 'setOptedOutOptedOutBoolVoidCallsCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
1408 |     //MARK: - setOptedOut
1409 |
1410 |     public static var setOptedOutOptedOutBoolVoidCallsCount = 0
     |                       |- warning: static property 'setOptedOutOptedOutBoolVoidCallsCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'setOptedOutOptedOutBoolVoidCallsCount' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'setOptedOutOptedOutBoolVoidCallsCount' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1411 |     public static var setOptedOutOptedOutBoolVoidCalled: Bool {
1412 |         return setOptedOutOptedOutBoolVoidCallsCount > 0
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:1414:23: warning: static property 'setOptedOutOptedOutBoolVoidReceivedOptedOut' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
1412 |         return setOptedOutOptedOutBoolVoidCallsCount > 0
1413 |     }
1414 |     public static var setOptedOutOptedOutBoolVoidReceivedOptedOut: (Bool)?
     |                       |- warning: static property 'setOptedOutOptedOutBoolVoidReceivedOptedOut' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'setOptedOutOptedOutBoolVoidReceivedOptedOut' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'setOptedOutOptedOutBoolVoidReceivedOptedOut' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1415 |     public static var setOptedOutOptedOutBoolVoidReceivedInvocations: [(Bool)] = []
1416 |     public static var setOptedOutOptedOutBoolVoidClosure: ((Bool) -> Void)?
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:1415:23: warning: static property 'setOptedOutOptedOutBoolVoidReceivedInvocations' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
1413 |     }
1414 |     public static var setOptedOutOptedOutBoolVoidReceivedOptedOut: (Bool)?
1415 |     public static var setOptedOutOptedOutBoolVoidReceivedInvocations: [(Bool)] = []
     |                       |- warning: static property 'setOptedOutOptedOutBoolVoidReceivedInvocations' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'setOptedOutOptedOutBoolVoidReceivedInvocations' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'setOptedOutOptedOutBoolVoidReceivedInvocations' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1416 |     public static var setOptedOutOptedOutBoolVoidClosure: ((Bool) -> Void)?
1417 |
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:1416:23: warning: static property 'setOptedOutOptedOutBoolVoidClosure' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
1414 |     public static var setOptedOutOptedOutBoolVoidReceivedOptedOut: (Bool)?
1415 |     public static var setOptedOutOptedOutBoolVoidReceivedInvocations: [(Bool)] = []
1416 |     public static var setOptedOutOptedOutBoolVoidClosure: ((Bool) -> Void)?
     |                       |- warning: static property 'setOptedOutOptedOutBoolVoidClosure' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'setOptedOutOptedOutBoolVoidClosure' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'setOptedOutOptedOutBoolVoidClosure' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1417 |
1418 |     public static func setOptedOut(_ optedOut: Bool) {
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:1427:23: warning: static property 'isPrivacyOptedOutBoolCallsCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
1425 |     //MARK: - isPrivacyOptedOut
1426 |
1427 |     public static var isPrivacyOptedOutBoolCallsCount = 0
     |                       |- warning: static property 'isPrivacyOptedOutBoolCallsCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'isPrivacyOptedOutBoolCallsCount' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'isPrivacyOptedOutBoolCallsCount' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1428 |     public static var isPrivacyOptedOutBoolCalled: Bool {
1429 |         return isPrivacyOptedOutBoolCallsCount > 0
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:1431:23: warning: static property 'isPrivacyOptedOutBoolReturnValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
1429 |         return isPrivacyOptedOutBoolCallsCount > 0
1430 |     }
1431 |     public static var isPrivacyOptedOutBoolReturnValue: Bool!
     |                       |- warning: static property 'isPrivacyOptedOutBoolReturnValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'isPrivacyOptedOutBoolReturnValue' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'isPrivacyOptedOutBoolReturnValue' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1432 |     public static var isPrivacyOptedOutBoolClosure: (() -> Bool)?
1433 |
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:1432:23: warning: static property 'isPrivacyOptedOutBoolClosure' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
1430 |     }
1431 |     public static var isPrivacyOptedOutBoolReturnValue: Bool!
1432 |     public static var isPrivacyOptedOutBoolClosure: (() -> Bool)?
     |                       |- warning: static property 'isPrivacyOptedOutBoolClosure' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'isPrivacyOptedOutBoolClosure' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'isPrivacyOptedOutBoolClosure' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1433 |
1434 |     public static func isPrivacyOptedOut() -> Bool {
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:1445:23: warning: static property 'setPrivacyOptedOutOptedOutBoolVoidCallsCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
1443 |     //MARK: - setPrivacyOptedOut
1444 |
1445 |     public static var setPrivacyOptedOutOptedOutBoolVoidCallsCount = 0
     |                       |- warning: static property 'setPrivacyOptedOutOptedOutBoolVoidCallsCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'setPrivacyOptedOutOptedOutBoolVoidCallsCount' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'setPrivacyOptedOutOptedOutBoolVoidCallsCount' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1446 |     public static var setPrivacyOptedOutOptedOutBoolVoidCalled: Bool {
1447 |         return setPrivacyOptedOutOptedOutBoolVoidCallsCount > 0
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:1449:23: warning: static property 'setPrivacyOptedOutOptedOutBoolVoidReceivedOptedOut' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
1447 |         return setPrivacyOptedOutOptedOutBoolVoidCallsCount > 0
1448 |     }
1449 |     public static var setPrivacyOptedOutOptedOutBoolVoidReceivedOptedOut: (Bool)?
     |                       |- warning: static property 'setPrivacyOptedOutOptedOutBoolVoidReceivedOptedOut' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'setPrivacyOptedOutOptedOutBoolVoidReceivedOptedOut' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'setPrivacyOptedOutOptedOutBoolVoidReceivedOptedOut' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1450 |     public static var setPrivacyOptedOutOptedOutBoolVoidReceivedInvocations: [(Bool)] = []
1451 |     public static var setPrivacyOptedOutOptedOutBoolVoidClosure: ((Bool) -> Void)?
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:1450:23: warning: static property 'setPrivacyOptedOutOptedOutBoolVoidReceivedInvocations' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
1448 |     }
1449 |     public static var setPrivacyOptedOutOptedOutBoolVoidReceivedOptedOut: (Bool)?
1450 |     public static var setPrivacyOptedOutOptedOutBoolVoidReceivedInvocations: [(Bool)] = []
     |                       |- warning: static property 'setPrivacyOptedOutOptedOutBoolVoidReceivedInvocations' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'setPrivacyOptedOutOptedOutBoolVoidReceivedInvocations' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'setPrivacyOptedOutOptedOutBoolVoidReceivedInvocations' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1451 |     public static var setPrivacyOptedOutOptedOutBoolVoidClosure: ((Bool) -> Void)?
1452 |
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:1451:23: warning: static property 'setPrivacyOptedOutOptedOutBoolVoidClosure' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
1449 |     public static var setPrivacyOptedOutOptedOutBoolVoidReceivedOptedOut: (Bool)?
1450 |     public static var setPrivacyOptedOutOptedOutBoolVoidReceivedInvocations: [(Bool)] = []
1451 |     public static var setPrivacyOptedOutOptedOutBoolVoidClosure: ((Bool) -> Void)?
     |                       |- warning: static property 'setPrivacyOptedOutOptedOutBoolVoidClosure' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'setPrivacyOptedOutOptedOutBoolVoidClosure' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'setPrivacyOptedOutOptedOutBoolVoidClosure' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
1452 |
1453 |     public static func setPrivacyOptedOut(_ optedOut: Bool) {
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:2109:23: warning: static property 'incrementCounterLabelStringDimensionsStringStringVoidCallsCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
2107 |     //MARK: - incrementCounter
2108 |
2109 |     public static var incrementCounterLabelStringDimensionsStringStringVoidCallsCount = 0
     |                       |- warning: static property 'incrementCounterLabelStringDimensionsStringStringVoidCallsCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'incrementCounterLabelStringDimensionsStringStringVoidCallsCount' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'incrementCounterLabelStringDimensionsStringStringVoidCallsCount' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2110 |     public static var incrementCounterLabelStringDimensionsStringStringVoidCalled: Bool {
2111 |         return incrementCounterLabelStringDimensionsStringStringVoidCallsCount > 0
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:2113:23: warning: static property 'incrementCounterLabelStringDimensionsStringStringVoidReceivedArguments' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
2111 |         return incrementCounterLabelStringDimensionsStringStringVoidCallsCount > 0
2112 |     }
2113 |     public static var incrementCounterLabelStringDimensionsStringStringVoidReceivedArguments: (label: String, dimensions: [(String, String)])?
     |                       |- warning: static property 'incrementCounterLabelStringDimensionsStringStringVoidReceivedArguments' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'incrementCounterLabelStringDimensionsStringStringVoidReceivedArguments' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'incrementCounterLabelStringDimensionsStringStringVoidReceivedArguments' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2114 |     public static var incrementCounterLabelStringDimensionsStringStringVoidReceivedInvocations: [(label: String, dimensions: [(String, String)])] = []
2115 |     public static var incrementCounterLabelStringDimensionsStringStringVoidClosure: ((String, [(String, String)]) -> Void)?
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:2114:23: warning: static property 'incrementCounterLabelStringDimensionsStringStringVoidReceivedInvocations' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
2112 |     }
2113 |     public static var incrementCounterLabelStringDimensionsStringStringVoidReceivedArguments: (label: String, dimensions: [(String, String)])?
2114 |     public static var incrementCounterLabelStringDimensionsStringStringVoidReceivedInvocations: [(label: String, dimensions: [(String, String)])] = []
     |                       |- warning: static property 'incrementCounterLabelStringDimensionsStringStringVoidReceivedInvocations' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'incrementCounterLabelStringDimensionsStringStringVoidReceivedInvocations' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'incrementCounterLabelStringDimensionsStringStringVoidReceivedInvocations' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2115 |     public static var incrementCounterLabelStringDimensionsStringStringVoidClosure: ((String, [(String, String)]) -> Void)?
2116 |
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:2115:23: warning: static property 'incrementCounterLabelStringDimensionsStringStringVoidClosure' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
2113 |     public static var incrementCounterLabelStringDimensionsStringStringVoidReceivedArguments: (label: String, dimensions: [(String, String)])?
2114 |     public static var incrementCounterLabelStringDimensionsStringStringVoidReceivedInvocations: [(label: String, dimensions: [(String, String)])] = []
2115 |     public static var incrementCounterLabelStringDimensionsStringStringVoidClosure: ((String, [(String, String)]) -> Void)?
     |                       |- warning: static property 'incrementCounterLabelStringDimensionsStringStringVoidClosure' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'incrementCounterLabelStringDimensionsStringStringVoidClosure' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'incrementCounterLabelStringDimensionsStringStringVoidClosure' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2116 |
2117 |     public static func incrementCounter(_ label: String, dimensions: [(String, String)]) {
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:2176:23: warning: static property 'hasUserOptedOutTrackingBoolCallsCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
2174 |     //MARK: - hasUserOptedOutTracking
2175 |
2176 |     public static var hasUserOptedOutTrackingBoolCallsCount = 0
     |                       |- warning: static property 'hasUserOptedOutTrackingBoolCallsCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'hasUserOptedOutTrackingBoolCallsCount' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'hasUserOptedOutTrackingBoolCallsCount' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2177 |     public static var hasUserOptedOutTrackingBoolCalled: Bool {
2178 |         return hasUserOptedOutTrackingBoolCallsCount > 0
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:2180:23: warning: static property 'hasUserOptedOutTrackingBoolReturnValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
2178 |         return hasUserOptedOutTrackingBoolCallsCount > 0
2179 |     }
2180 |     public static var hasUserOptedOutTrackingBoolReturnValue: Bool!
     |                       |- warning: static property 'hasUserOptedOutTrackingBoolReturnValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'hasUserOptedOutTrackingBoolReturnValue' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'hasUserOptedOutTrackingBoolReturnValue' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2181 |     public static var hasUserOptedOutTrackingBoolClosure: (() -> Bool)?
2182 |
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:2181:23: warning: static property 'hasUserOptedOutTrackingBoolClosure' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
2179 |     }
2180 |     public static var hasUserOptedOutTrackingBoolReturnValue: Bool!
2181 |     public static var hasUserOptedOutTrackingBoolClosure: (() -> Bool)?
     |                       |- warning: static property 'hasUserOptedOutTrackingBoolClosure' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'hasUserOptedOutTrackingBoolClosure' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'hasUserOptedOutTrackingBoolClosure' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2182 |
2183 |     public static func hasUserOptedOutTracking() -> Bool {
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:2194:23: warning: static property 'logEventEventNameStringVoidCallsCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
2192 |     //MARK: - logEvent
2193 |
2194 |     public static var logEventEventNameStringVoidCallsCount = 0
     |                       |- warning: static property 'logEventEventNameStringVoidCallsCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'logEventEventNameStringVoidCallsCount' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'logEventEventNameStringVoidCallsCount' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2195 |     public static var logEventEventNameStringVoidCalled: Bool {
2196 |         return logEventEventNameStringVoidCallsCount > 0
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:2198:23: warning: static property 'logEventEventNameStringVoidReceivedEventName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
2196 |         return logEventEventNameStringVoidCallsCount > 0
2197 |     }
2198 |     public static var logEventEventNameStringVoidReceivedEventName: (String)?
     |                       |- warning: static property 'logEventEventNameStringVoidReceivedEventName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'logEventEventNameStringVoidReceivedEventName' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'logEventEventNameStringVoidReceivedEventName' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2199 |     public static var logEventEventNameStringVoidReceivedInvocations: [(String)] = []
2200 |     public static var logEventEventNameStringVoidClosure: ((String) -> Void)?
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:2199:23: warning: static property 'logEventEventNameStringVoidReceivedInvocations' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
2197 |     }
2198 |     public static var logEventEventNameStringVoidReceivedEventName: (String)?
2199 |     public static var logEventEventNameStringVoidReceivedInvocations: [(String)] = []
     |                       |- warning: static property 'logEventEventNameStringVoidReceivedInvocations' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'logEventEventNameStringVoidReceivedInvocations' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'logEventEventNameStringVoidReceivedInvocations' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2200 |     public static var logEventEventNameStringVoidClosure: ((String) -> Void)?
2201 |
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:2200:23: warning: static property 'logEventEventNameStringVoidClosure' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
2198 |     public static var logEventEventNameStringVoidReceivedEventName: (String)?
2199 |     public static var logEventEventNameStringVoidReceivedInvocations: [(String)] = []
2200 |     public static var logEventEventNameStringVoidClosure: ((String) -> Void)?
     |                       |- warning: static property 'logEventEventNameStringVoidClosure' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'logEventEventNameStringVoidClosure' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'logEventEventNameStringVoidClosure' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2201 |
2202 |     public static func logEvent(_ eventName: String) {
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:2211:23: warning: static property 'optOutUserTrackingVoidCallsCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
2209 |     //MARK: - optOutUserTracking
2210 |
2211 |     public static var optOutUserTrackingVoidCallsCount = 0
     |                       |- warning: static property 'optOutUserTrackingVoidCallsCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'optOutUserTrackingVoidCallsCount' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'optOutUserTrackingVoidCallsCount' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2212 |     public static var optOutUserTrackingVoidCalled: Bool {
2213 |         return optOutUserTrackingVoidCallsCount > 0
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:2215:23: warning: static property 'optOutUserTrackingVoidClosure' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
2213 |         return optOutUserTrackingVoidCallsCount > 0
2214 |     }
2215 |     public static var optOutUserTrackingVoidClosure: (() -> Void)?
     |                       |- warning: static property 'optOutUserTrackingVoidClosure' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'optOutUserTrackingVoidClosure' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'optOutUserTrackingVoidClosure' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2216 |
2217 |     public static func optOutUserTracking() {
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:2224:23: warning: static property 'optInUserTrackingVoidCallsCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
2222 |     //MARK: - optInUserTracking
2223 |
2224 |     public static var optInUserTrackingVoidCallsCount = 0
     |                       |- warning: static property 'optInUserTrackingVoidCallsCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'optInUserTrackingVoidCallsCount' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'optInUserTrackingVoidCallsCount' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2225 |     public static var optInUserTrackingVoidCalled: Bool {
2226 |         return optInUserTrackingVoidCallsCount > 0
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:2228:23: warning: static property 'optInUserTrackingVoidClosure' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
2226 |         return optInUserTrackingVoidCallsCount > 0
2227 |     }
2228 |     public static var optInUserTrackingVoidClosure: (() -> Void)?
     |                       |- warning: static property 'optInUserTrackingVoidClosure' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'optInUserTrackingVoidClosure' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'optInUserTrackingVoidClosure' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2229 |
2230 |     public static func optInUserTracking() {
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:2237:23: warning: static property 'setUserAttributesAttributesAnyHashableAnyVoidCallsCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
2235 |     //MARK: - setUserAttributes
2236 |
2237 |     public static var setUserAttributesAttributesAnyHashableAnyVoidCallsCount = 0
     |                       |- warning: static property 'setUserAttributesAttributesAnyHashableAnyVoidCallsCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'setUserAttributesAttributesAnyHashableAnyVoidCallsCount' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'setUserAttributesAttributesAnyHashableAnyVoidCallsCount' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2238 |     public static var setUserAttributesAttributesAnyHashableAnyVoidCalled: Bool {
2239 |         return setUserAttributesAttributesAnyHashableAnyVoidCallsCount > 0
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:2241:23: warning: static property 'setUserAttributesAttributesAnyHashableAnyVoidReceivedAttributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
2239 |         return setUserAttributesAttributesAnyHashableAnyVoidCallsCount > 0
2240 |     }
2241 |     public static var setUserAttributesAttributesAnyHashableAnyVoidReceivedAttributes: ([AnyHashable: Any])?
     |                       |- warning: static property 'setUserAttributesAttributesAnyHashableAnyVoidReceivedAttributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'setUserAttributesAttributesAnyHashableAnyVoidReceivedAttributes' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'setUserAttributesAttributesAnyHashableAnyVoidReceivedAttributes' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2242 |     public static var setUserAttributesAttributesAnyHashableAnyVoidReceivedInvocations: [([AnyHashable: Any])?] = []
2243 |     public static var setUserAttributesAttributesAnyHashableAnyVoidClosure: (([AnyHashable: Any]?) -> Void)?
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:2242:23: warning: static property 'setUserAttributesAttributesAnyHashableAnyVoidReceivedInvocations' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
2240 |     }
2241 |     public static var setUserAttributesAttributesAnyHashableAnyVoidReceivedAttributes: ([AnyHashable: Any])?
2242 |     public static var setUserAttributesAttributesAnyHashableAnyVoidReceivedInvocations: [([AnyHashable: Any])?] = []
     |                       |- warning: static property 'setUserAttributesAttributesAnyHashableAnyVoidReceivedInvocations' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'setUserAttributesAttributesAnyHashableAnyVoidReceivedInvocations' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'setUserAttributesAttributesAnyHashableAnyVoidReceivedInvocations' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2243 |     public static var setUserAttributesAttributesAnyHashableAnyVoidClosure: (([AnyHashable: Any]?) -> Void)?
2244 |
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:2243:23: warning: static property 'setUserAttributesAttributesAnyHashableAnyVoidClosure' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
2241 |     public static var setUserAttributesAttributesAnyHashableAnyVoidReceivedAttributes: ([AnyHashable: Any])?
2242 |     public static var setUserAttributesAttributesAnyHashableAnyVoidReceivedInvocations: [([AnyHashable: Any])?] = []
2243 |     public static var setUserAttributesAttributesAnyHashableAnyVoidClosure: (([AnyHashable: Any]?) -> Void)?
     |                       |- warning: static property 'setUserAttributesAttributesAnyHashableAnyVoidClosure' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'setUserAttributesAttributesAnyHashableAnyVoidClosure' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'setUserAttributesAttributesAnyHashableAnyVoidClosure' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2244 |
2245 |     public static func setUserAttributes(_ attributes: [AnyHashable: Any]?) {
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:2308:23: warning: static property 'logEventEventNameStringWithPropertiesStringAnyVoidCallsCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
2306 |     //MARK: - logEvent
2307 |
2308 |     public static var logEventEventNameStringWithPropertiesStringAnyVoidCallsCount = 0
     |                       |- warning: static property 'logEventEventNameStringWithPropertiesStringAnyVoidCallsCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'logEventEventNameStringWithPropertiesStringAnyVoidCallsCount' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'logEventEventNameStringWithPropertiesStringAnyVoidCallsCount' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2309 |     public static var logEventEventNameStringWithPropertiesStringAnyVoidCalled: Bool {
2310 |         return logEventEventNameStringWithPropertiesStringAnyVoidCallsCount > 0
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:2312:23: warning: static property 'logEventEventNameStringWithPropertiesStringAnyVoidReceivedArguments' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
2310 |         return logEventEventNameStringWithPropertiesStringAnyVoidCallsCount > 0
2311 |     }
2312 |     public static var logEventEventNameStringWithPropertiesStringAnyVoidReceivedArguments: (eventName: String, withProperties: [String: Any]?)?
     |                       |- warning: static property 'logEventEventNameStringWithPropertiesStringAnyVoidReceivedArguments' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'logEventEventNameStringWithPropertiesStringAnyVoidReceivedArguments' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'logEventEventNameStringWithPropertiesStringAnyVoidReceivedArguments' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2313 |     public static var logEventEventNameStringWithPropertiesStringAnyVoidReceivedInvocations: [(eventName: String, withProperties: [String: Any]?)] = []
2314 |     public static var logEventEventNameStringWithPropertiesStringAnyVoidClosure: ((String, [String: Any]?) -> Void)?
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:2313:23: warning: static property 'logEventEventNameStringWithPropertiesStringAnyVoidReceivedInvocations' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
2311 |     }
2312 |     public static var logEventEventNameStringWithPropertiesStringAnyVoidReceivedArguments: (eventName: String, withProperties: [String: Any]?)?
2313 |     public static var logEventEventNameStringWithPropertiesStringAnyVoidReceivedInvocations: [(eventName: String, withProperties: [String: Any]?)] = []
     |                       |- warning: static property 'logEventEventNameStringWithPropertiesStringAnyVoidReceivedInvocations' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'logEventEventNameStringWithPropertiesStringAnyVoidReceivedInvocations' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'logEventEventNameStringWithPropertiesStringAnyVoidReceivedInvocations' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2314 |     public static var logEventEventNameStringWithPropertiesStringAnyVoidClosure: ((String, [String: Any]?) -> Void)?
2315 |
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:2314:23: warning: static property 'logEventEventNameStringWithPropertiesStringAnyVoidClosure' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
2312 |     public static var logEventEventNameStringWithPropertiesStringAnyVoidReceivedArguments: (eventName: String, withProperties: [String: Any]?)?
2313 |     public static var logEventEventNameStringWithPropertiesStringAnyVoidReceivedInvocations: [(eventName: String, withProperties: [String: Any]?)] = []
2314 |     public static var logEventEventNameStringWithPropertiesStringAnyVoidClosure: ((String, [String: Any]?) -> Void)?
     |                       |- warning: static property 'logEventEventNameStringWithPropertiesStringAnyVoidClosure' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'logEventEventNameStringWithPropertiesStringAnyVoidClosure' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'logEventEventNameStringWithPropertiesStringAnyVoidClosure' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2315 |
2316 |     public static func logEvent(_ eventName: String, withProperties: [String: Any]?) {
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:2325:23: warning: static property 'optInOverallVoidCallsCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
2323 |     //MARK: - optInOverall
2324 |
2325 |     public static var optInOverallVoidCallsCount = 0
     |                       |- warning: static property 'optInOverallVoidCallsCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'optInOverallVoidCallsCount' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'optInOverallVoidCallsCount' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2326 |     public static var optInOverallVoidCalled: Bool {
2327 |         return optInOverallVoidCallsCount > 0
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:2329:23: warning: static property 'optInOverallVoidClosure' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
2327 |         return optInOverallVoidCallsCount > 0
2328 |     }
2329 |     public static var optInOverallVoidClosure: (() -> Void)?
     |                       |- warning: static property 'optInOverallVoidClosure' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'optInOverallVoidClosure' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'optInOverallVoidClosure' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2330 |
2331 |     public static func optInOverall() {
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:2338:23: warning: static property 'optInOverallStatusBoolCallsCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
2336 |     //MARK: - optInOverallStatus
2337 |
2338 |     public static var optInOverallStatusBoolCallsCount = 0
     |                       |- warning: static property 'optInOverallStatusBoolCallsCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'optInOverallStatusBoolCallsCount' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'optInOverallStatusBoolCallsCount' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2339 |     public static var optInOverallStatusBoolCalled: Bool {
2340 |         return optInOverallStatusBoolCallsCount > 0
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:2342:23: warning: static property 'optInOverallStatusBoolReturnValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
2340 |         return optInOverallStatusBoolCallsCount > 0
2341 |     }
2342 |     public static var optInOverallStatusBoolReturnValue: Bool!
     |                       |- warning: static property 'optInOverallStatusBoolReturnValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'optInOverallStatusBoolReturnValue' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'optInOverallStatusBoolReturnValue' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2343 |     public static var optInOverallStatusBoolClosure: (() -> Bool)?
2344 |
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:2343:23: warning: static property 'optInOverallStatusBoolClosure' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
2341 |     }
2342 |     public static var optInOverallStatusBoolReturnValue: Bool!
2343 |     public static var optInOverallStatusBoolClosure: (() -> Bool)?
     |                       |- warning: static property 'optInOverallStatusBoolClosure' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'optInOverallStatusBoolClosure' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'optInOverallStatusBoolClosure' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2344 |
2345 |     public static func optInOverallStatus() -> Bool {
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:2356:23: warning: static property 'optOutOverallVoidCallsCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
2354 |     //MARK: - optOutOverall
2355 |
2356 |     public static var optOutOverallVoidCallsCount = 0
     |                       |- warning: static property 'optOutOverallVoidCallsCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'optOutOverallVoidCallsCount' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'optOutOverallVoidCallsCount' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2357 |     public static var optOutOverallVoidCalled: Bool {
2358 |         return optOutOverallVoidCallsCount > 0
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:2360:23: warning: static property 'optOutOverallVoidClosure' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
2358 |         return optOutOverallVoidCallsCount > 0
2359 |     }
2360 |     public static var optOutOverallVoidClosure: (() -> Void)?
     |                       |- warning: static property 'optOutOverallVoidClosure' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'optOutOverallVoidClosure' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'optOutOverallVoidClosure' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2361 |
2362 |     public static func optOutOverall() {
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:2369:23: warning: static property 'setUserIdentityUserIdentityStringVoidCallsCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
2367 |     //MARK: - setUserIdentity
2368 |
2369 |     public static var setUserIdentityUserIdentityStringVoidCallsCount = 0
     |                       |- warning: static property 'setUserIdentityUserIdentityStringVoidCallsCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'setUserIdentityUserIdentityStringVoidCallsCount' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'setUserIdentityUserIdentityStringVoidCallsCount' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2370 |     public static var setUserIdentityUserIdentityStringVoidCalled: Bool {
2371 |         return setUserIdentityUserIdentityStringVoidCallsCount > 0
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:2373:23: warning: static property 'setUserIdentityUserIdentityStringVoidReceivedUserIdentity' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
2371 |         return setUserIdentityUserIdentityStringVoidCallsCount > 0
2372 |     }
2373 |     public static var setUserIdentityUserIdentityStringVoidReceivedUserIdentity: (String)?
     |                       |- warning: static property 'setUserIdentityUserIdentityStringVoidReceivedUserIdentity' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'setUserIdentityUserIdentityStringVoidReceivedUserIdentity' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'setUserIdentityUserIdentityStringVoidReceivedUserIdentity' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2374 |     public static var setUserIdentityUserIdentityStringVoidReceivedInvocations: [(String)] = []
2375 |     public static var setUserIdentityUserIdentityStringVoidClosure: ((String) -> Void)?
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:2374:23: warning: static property 'setUserIdentityUserIdentityStringVoidReceivedInvocations' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
2372 |     }
2373 |     public static var setUserIdentityUserIdentityStringVoidReceivedUserIdentity: (String)?
2374 |     public static var setUserIdentityUserIdentityStringVoidReceivedInvocations: [(String)] = []
     |                       |- warning: static property 'setUserIdentityUserIdentityStringVoidReceivedInvocations' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'setUserIdentityUserIdentityStringVoidReceivedInvocations' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'setUserIdentityUserIdentityStringVoidReceivedInvocations' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2375 |     public static var setUserIdentityUserIdentityStringVoidClosure: ((String) -> Void)?
2376 |
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:2375:23: warning: static property 'setUserIdentityUserIdentityStringVoidClosure' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
2373 |     public static var setUserIdentityUserIdentityStringVoidReceivedUserIdentity: (String)?
2374 |     public static var setUserIdentityUserIdentityStringVoidReceivedInvocations: [(String)] = []
2375 |     public static var setUserIdentityUserIdentityStringVoidClosure: ((String) -> Void)?
     |                       |- warning: static property 'setUserIdentityUserIdentityStringVoidClosure' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'setUserIdentityUserIdentityStringVoidClosure' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'setUserIdentityUserIdentityStringVoidClosure' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2376 |
2377 |     public static func setUserIdentity(_ userIdentity: String) {
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:2386:23: warning: static property 'setUserPropertyPropertyNameStringValueAnyVoidCallsCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
2384 |     //MARK: - setUserProperty
2385 |
2386 |     public static var setUserPropertyPropertyNameStringValueAnyVoidCallsCount = 0
     |                       |- warning: static property 'setUserPropertyPropertyNameStringValueAnyVoidCallsCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'setUserPropertyPropertyNameStringValueAnyVoidCallsCount' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'setUserPropertyPropertyNameStringValueAnyVoidCallsCount' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2387 |     public static var setUserPropertyPropertyNameStringValueAnyVoidCalled: Bool {
2388 |         return setUserPropertyPropertyNameStringValueAnyVoidCallsCount > 0
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:2390:23: warning: static property 'setUserPropertyPropertyNameStringValueAnyVoidReceivedArguments' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
2388 |         return setUserPropertyPropertyNameStringValueAnyVoidCallsCount > 0
2389 |     }
2390 |     public static var setUserPropertyPropertyNameStringValueAnyVoidReceivedArguments: (propertyName: String, value: Any)?
     |                       |- warning: static property 'setUserPropertyPropertyNameStringValueAnyVoidReceivedArguments' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'setUserPropertyPropertyNameStringValueAnyVoidReceivedArguments' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'setUserPropertyPropertyNameStringValueAnyVoidReceivedArguments' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2391 |     public static var setUserPropertyPropertyNameStringValueAnyVoidReceivedInvocations: [(propertyName: String, value: Any)] = []
2392 |     public static var setUserPropertyPropertyNameStringValueAnyVoidClosure: ((String, Any) -> Void)?
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:2391:23: warning: static property 'setUserPropertyPropertyNameStringValueAnyVoidReceivedInvocations' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
2389 |     }
2390 |     public static var setUserPropertyPropertyNameStringValueAnyVoidReceivedArguments: (propertyName: String, value: Any)?
2391 |     public static var setUserPropertyPropertyNameStringValueAnyVoidReceivedInvocations: [(propertyName: String, value: Any)] = []
     |                       |- warning: static property 'setUserPropertyPropertyNameStringValueAnyVoidReceivedInvocations' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'setUserPropertyPropertyNameStringValueAnyVoidReceivedInvocations' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'setUserPropertyPropertyNameStringValueAnyVoidReceivedInvocations' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2392 |     public static var setUserPropertyPropertyNameStringValueAnyVoidClosure: ((String, Any) -> Void)?
2393 |
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:2392:23: warning: static property 'setUserPropertyPropertyNameStringValueAnyVoidClosure' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
2390 |     public static var setUserPropertyPropertyNameStringValueAnyVoidReceivedArguments: (propertyName: String, value: Any)?
2391 |     public static var setUserPropertyPropertyNameStringValueAnyVoidReceivedInvocations: [(propertyName: String, value: Any)] = []
2392 |     public static var setUserPropertyPropertyNameStringValueAnyVoidClosure: ((String, Any) -> Void)?
     |                       |- warning: static property 'setUserPropertyPropertyNameStringValueAnyVoidClosure' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'setUserPropertyPropertyNameStringValueAnyVoidClosure' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'setUserPropertyPropertyNameStringValueAnyVoidClosure' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2393 |
2394 |     public static func setUserProperty(_ propertyName: String, value: Any) {
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:2403:23: warning: static property 'tagScreenNameScreenNameStringVoidCallsCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
2401 |     //MARK: - tagScreenName
2402 |
2403 |     public static var tagScreenNameScreenNameStringVoidCallsCount = 0
     |                       |- warning: static property 'tagScreenNameScreenNameStringVoidCallsCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'tagScreenNameScreenNameStringVoidCallsCount' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'tagScreenNameScreenNameStringVoidCallsCount' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2404 |     public static var tagScreenNameScreenNameStringVoidCalled: Bool {
2405 |         return tagScreenNameScreenNameStringVoidCallsCount > 0
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:2407:23: warning: static property 'tagScreenNameScreenNameStringVoidReceivedScreenName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
2405 |         return tagScreenNameScreenNameStringVoidCallsCount > 0
2406 |     }
2407 |     public static var tagScreenNameScreenNameStringVoidReceivedScreenName: (String)?
     |                       |- warning: static property 'tagScreenNameScreenNameStringVoidReceivedScreenName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'tagScreenNameScreenNameStringVoidReceivedScreenName' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'tagScreenNameScreenNameStringVoidReceivedScreenName' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2408 |     public static var tagScreenNameScreenNameStringVoidReceivedInvocations: [(String)] = []
2409 |     public static var tagScreenNameScreenNameStringVoidClosure: ((String) -> Void)?
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:2408:23: warning: static property 'tagScreenNameScreenNameStringVoidReceivedInvocations' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
2406 |     }
2407 |     public static var tagScreenNameScreenNameStringVoidReceivedScreenName: (String)?
2408 |     public static var tagScreenNameScreenNameStringVoidReceivedInvocations: [(String)] = []
     |                       |- warning: static property 'tagScreenNameScreenNameStringVoidReceivedInvocations' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'tagScreenNameScreenNameStringVoidReceivedInvocations' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'tagScreenNameScreenNameStringVoidReceivedInvocations' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2409 |     public static var tagScreenNameScreenNameStringVoidClosure: ((String) -> Void)?
2410 |
/host/spi-builder-workspace/Sources/TrackerTesting/mocks/Tracker_mocks.generated.swift:2409:23: warning: static property 'tagScreenNameScreenNameStringVoidClosure' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
2407 |     public static var tagScreenNameScreenNameStringVoidReceivedScreenName: (String)?
2408 |     public static var tagScreenNameScreenNameStringVoidReceivedInvocations: [(String)] = []
2409 |     public static var tagScreenNameScreenNameStringVoidClosure: ((String) -> Void)?
     |                       |- warning: static property 'tagScreenNameScreenNameStringVoidClosure' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: convert 'tagScreenNameScreenNameStringVoidClosure' to a 'let' constant to make 'Sendable' shared state immutable
     |                       |- note: add '@MainActor' to make static property 'tagScreenNameScreenNameStringVoidClosure' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
2410 |
2411 |     public static func tagScreenName(_ screenName: String) {
Build complete! (51.65s)
Build complete.
{
  "dependencies" : [
    {
      "identity" : "swift-analytics",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.9.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/dankinsoid/swift-analytics.git"
    },
    {
      "identity" : "swiftanalyticskit",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.0.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/SwiftyLab/SwiftAnalyticsKit.git"
    },
    {
      "identity" : "swift-docc-plugin",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.1.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/swiftlang/swift-docc-plugin.git"
    }
  ],
  "manifest_display_name" : "EventTracker",
  "name" : "EventTracker",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "12.0"
    },
    {
      "name" : "macos",
      "version" : "10.13"
    },
    {
      "name" : "watchos",
      "version" : "5.0"
    },
    {
      "name" : "tvos",
      "version" : "13.0"
    }
  ],
  "products" : [
    {
      "name" : "SwiftAnalyticsKitTracking",
      "targets" : [
        "SwiftAnalyticsKitTracking"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "SwiftAnalyticsTracking",
      "targets" : [
        "SwiftAnalyticsTracking"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "Tracker",
      "targets" : [
        "Tracker"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "TrackerTesting",
      "targets" : [
        "TrackerTesting"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "TrackerTests",
      "module_type" : "SwiftTarget",
      "name" : "TrackerTests",
      "path" : "Tests/TrackerTests",
      "sources" : [
        "EventTrackerShould.swift",
        "events/NamedEventShould.swift",
        "events/NamedScreenShould.swift",
        "events/ParameterizedEventShould.swift",
        "events/TaggedEventShould.swift",
        "events/TaggedScreenShould.swift",
        "helpers/ArrayAppendingTests.swift",
        "helpers/ArrayRemovingTests.swift",
        "services/AbstractProviderServiceShould.swift",
        "services/AbstractProviderShould.swift",
        "services/ServiceShould.swift",
        "services/concrete/PrintServiceProviderShould.swift",
        "services/vendor/AdjustServiceProviderShould.swift",
        "services/vendor/AmplitudeServiceProviderShould.swift",
        "services/vendor/AppCenterAnalyticsServiceProviderShould.swift",
        "services/vendor/AppsFlyerServiceProviderShould.swift",
        "services/vendor/BrazeServiceProviderShould.swift",
        "services/vendor/BugseeServiceProviderShould.swift",
        "services/vendor/CountlyServiceProviderShould.swift",
        "services/vendor/CrashlyticsServiceProviderShould.swift",
        "services/vendor/FacebookServiceProviderShould.swift",
        "services/vendor/FirebaseAnalyticsServiceProviderShould.swift",
        "services/vendor/HeapFlyerServiceProviderShould.swift",
        "services/vendor/InstabugServiceProviderShould.swift",
        "services/vendor/KochavaServiceProviderShould.swift",
        "services/vendor/LocalyticsServiceProviderShould.swift",
        "services/vendor/MixpanelServiceProviderShould.swift",
        "services/vendor/PostHogServiceProviderShould.swift",
        "services/vendor/SegmentServiceProviderShould.swift",
        "services/vendor/SwiftAnalyticsServiceProviderShould.swift",
        "services/vendor/SwiftLoggerServiceProviderShould.swift",
        "services/vendor/SwiftMetricsServiceProviderShould.swift",
        "services/vendor/TaplyticsServiceProviderShould.swift",
        "services/vendor/UXCamServiceProviderShould.swift",
        "tags/TagShould.swift"
      ],
      "target_dependencies" : [
        "Tracker",
        "TrackerTesting"
      ],
      "type" : "test"
    },
    {
      "c99name" : "TrackerTesting",
      "module_type" : "SwiftTarget",
      "name" : "TrackerTesting",
      "path" : "Sources/TrackerTesting",
      "product_memberships" : [
        "TrackerTesting"
      ],
      "sources" : [
        "Assert+Optional.swift",
        "AssertEvent.swift",
        "mocks/EventMock+init.swift",
        "mocks/ScreenMock+init.swift",
        "mocks/ServiceMock+init.swift",
        "mocks/Tracker_mocks.generated.swift"
      ],
      "target_dependencies" : [
        "Tracker"
      ],
      "type" : "library"
    },
    {
      "c99name" : "Tracker",
      "module_type" : "SwiftTarget",
      "name" : "Tracker",
      "path" : "Sources/Tracker",
      "product_memberships" : [
        "SwiftAnalyticsKitTracking",
        "SwiftAnalyticsTracking",
        "Tracker",
        "TrackerTesting"
      ],
      "sources" : [
        "EventTracker.swift",
        "events/Event+operators.swift",
        "events/Event.swift",
        "events/Screen+operators.swift",
        "events/Screen.swift",
        "events/Taggable.swift",
        "events/concrete/NamedEvent.swift",
        "events/concrete/NamedScreen.swift",
        "events/concrete/ParameterizedEvent.swift",
        "events/concrete/TaggedEvent.swift",
        "events/concrete/TaggedScreen.swift",
        "events/vendor/CountlyScreen.swift",
        "events/vendor/PostHogScreen.swift",
        "events/vendor/SegmentScreen.swift",
        "helpers/Array+appending.swift",
        "helpers/Array+removing.swift",
        "services/AbstractProvider.swift",
        "services/Service+AbstractProvider.swift",
        "services/Service+NamedEvent.swift",
        "services/Service+contains.swift",
        "services/Service.swift",
        "services/concrete/PrintServiceProvider.swift",
        "services/vendor/AdjustServiceProvider.swift",
        "services/vendor/AmplitudeServiceProvider.swift",
        "services/vendor/AppCenterAnalyticsServiceProvider.swift",
        "services/vendor/AppsFlyerServiceProvider.swift",
        "services/vendor/BrazeServiceProvider.swift",
        "services/vendor/BugseeServiceProvider.swift",
        "services/vendor/CountlyServiceProvider.swift",
        "services/vendor/CrashlyticsServiceProvider.swift",
        "services/vendor/FacebookServiceProvider.swift",
        "services/vendor/FirebaseAnalyticsServiceProvider.swift",
        "services/vendor/HeapServiceProvider.swift",
        "services/vendor/InstabugServiceProvider.swift",
        "services/vendor/KochavaServiceProvider.swift",
        "services/vendor/LocalyticsServiceProvider.swift",
        "services/vendor/MixpanelServiceProvider.swift",
        "services/vendor/PostHogServiceProvider.swift",
        "services/vendor/SegmentServiceProvider.swift",
        "services/vendor/SwiftAnalyticsKitServiceProvider.swift",
        "services/vendor/SwiftAnalyticsServiceProvider.swift",
        "services/vendor/SwiftLoggerServiceProvider.swift",
        "services/vendor/SwiftMetricsServiceProvider.swift",
        "services/vendor/TaplyticsServiceProvider.swift",
        "services/vendor/UXCamServiceProvider.swift",
        "services/vendor/adapters/AdjustServiceAdapter.swift",
        "services/vendor/adapters/AmplitudeServiceAdapter.swift",
        "services/vendor/adapters/AppCenterAnalyticsServiceAdapter.swift",
        "services/vendor/adapters/AppsFlyerServiceAdapter.swift",
        "services/vendor/adapters/BrazeServiceAdapter.swift",
        "services/vendor/adapters/BugseeServiceAdapter.swift",
        "services/vendor/adapters/CountlyServiceAdapter.swift",
        "services/vendor/adapters/CrashlyticsServiceAdapter.swift",
        "services/vendor/adapters/FacebookServiceAdapter.swift",
        "services/vendor/adapters/FirebaseAnalyticsServiceAdapter.swift",
        "services/vendor/adapters/HeapServiceAdapter.swift",
        "services/vendor/adapters/InstabugServiceAdapter.swift",
        "services/vendor/adapters/KochavaServiceAdapter.swift",
        "services/vendor/adapters/LocalyticsServiceAdapter.swift",
        "services/vendor/adapters/MixpanelServiceAdapter.swift",
        "services/vendor/adapters/PostHogServiceAdapter.swift",
        "services/vendor/adapters/SegmentServiceAdapter.swift",
        "services/vendor/adapters/SwiftAnalyticsKitServiceAdapter.swift",
        "services/vendor/adapters/SwiftAnalyticsServiceAdapter.swift",
        "services/vendor/adapters/SwiftLoggerServiceAdapter.swift",
        "services/vendor/adapters/SwiftMetricsServiceAdapter.swift",
        "services/vendor/adapters/TaplyticsServiceAdapter.swift",
        "services/vendor/adapters/UXCamServiceAdapter.swift",
        "tags/Tag.swift",
        "tags/vendor/Tag+adjust.swift",
        "tags/vendor/Tag+amplitude.swift",
        "tags/vendor/Tag+appCenterAnalytics.swift",
        "tags/vendor/Tag+appsFlyer.swift",
        "tags/vendor/Tag+braze.swift",
        "tags/vendor/Tag+bugsee.swift",
        "tags/vendor/Tag+countly.swift",
        "tags/vendor/Tag+crashlytics.swift",
        "tags/vendor/Tag+facebook.swift",
        "tags/vendor/Tag+firebaseAnalytics.swift",
        "tags/vendor/Tag+heap.swift",
        "tags/vendor/Tag+instabug.swift",
        "tags/vendor/Tag+kochava.swift",
        "tags/vendor/Tag+localytics.swift",
        "tags/vendor/Tag+mixpanel.swift",
        "tags/vendor/Tag+postHog.swift",
        "tags/vendor/Tag+segment.swift",
        "tags/vendor/Tag+swiftAnalytics.swift",
        "tags/vendor/Tag+swiftAnalyticsKit.swift",
        "tags/vendor/Tag+swiftLogger.swift",
        "tags/vendor/Tag+swiftMetrics.swift",
        "tags/vendor/Tag+taplytics.swift",
        "tags/vendor/Tag+uxCam.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "SwiftAnalyticsTrackingTests",
      "module_type" : "SwiftTarget",
      "name" : "SwiftAnalyticsTrackingTests",
      "path" : "Tests/SwiftAnalyticsTrackingTests",
      "sources" : [
        "backend/SwiftAnalyticsHandlerAdapterShould.swift",
        "consumer/SwiftAnalyticsServiceAdapterShould.swift"
      ],
      "target_dependencies" : [
        "SwiftAnalyticsTracking",
        "TrackerTesting"
      ],
      "type" : "test"
    },
    {
      "c99name" : "SwiftAnalyticsTracking",
      "module_type" : "SwiftTarget",
      "name" : "SwiftAnalyticsTracking",
      "path" : "Sources/SwiftAnalyticsTracking",
      "product_dependencies" : [
        "SwiftAnalytics"
      ],
      "product_memberships" : [
        "SwiftAnalyticsTracking"
      ],
      "sources" : [
        "backend/SwiftAnalyticsHandlerAdapter.swift",
        "consumer/Analytics+SwiftAnalyticsServiceAdapter.swift"
      ],
      "target_dependencies" : [
        "Tracker"
      ],
      "type" : "library"
    },
    {
      "c99name" : "SwiftAnalyticsKitTrackingTests",
      "module_type" : "SwiftTarget",
      "name" : "SwiftAnalyticsKitTrackingTests",
      "path" : "Tests/SwiftAnalyticsKitTrackingTests",
      "product_dependencies" : [
        "AnalyticsMock"
      ],
      "sources" : [
        "backend/SwiftAnalyticsKitHandlerAdapterShould.swift",
        "consumer/SwiftAnalyticsKitServiceAdapterShould.swift"
      ],
      "target_dependencies" : [
        "SwiftAnalyticsKitTracking",
        "TrackerTesting"
      ],
      "type" : "test"
    },
    {
      "c99name" : "SwiftAnalyticsKitTracking",
      "module_type" : "SwiftTarget",
      "name" : "SwiftAnalyticsKitTracking",
      "path" : "Sources/SwiftAnalyticsKitTracking",
      "product_dependencies" : [
        "Analytics"
      ],
      "product_memberships" : [
        "SwiftAnalyticsKitTracking"
      ],
      "sources" : [
        "backend/SwiftAnalyticsKitHandlerAdapter.swift",
        "consumer/MultiplexAnalyticsHandler+SwiftAnalyticsKitServiceAdapter.swift"
      ],
      "target_dependencies" : [
        "Tracker"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.10"
}
wasm-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:7e37457820e5f17452a98118754f345f2619722c485f2db0d8b666940a83afd2
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest
Done.