The Swift Package Index logo.Swift Package Index

Has it really been five years since Swift Package Index launched? Read our anniversary blog post!

Build Information

Failed to build FHIR, reference master (b68fb5), with Swift 6.1 for Android on 27 May 2025 17:21:23 UTC.

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4609320-1":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:android-6.1-latest swift build --swift-sdk aarch64-unknown-linux-android24 2>&1

Build Log

73 |
74 | 	/**
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
  |                  `- note: 'URLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Models/FHIRValidationError.swift:40:13: warning: stored property 'code' of 'Sendable'-conforming struct 'FHIRValidationError' has non-sendable type 'FHIRValidationErrorType'; this is an error in the Swift 6 language mode
 13 | The type of the validation error.
 14 | */
 15 | public enum FHIRValidationErrorType: Int {
    |             `- note: consider making enum 'FHIRValidationErrorType' conform to the 'Sendable' protocol
 16 |
 17 | 	/// The key is mandatory but missing.
    :
 38 |
 39 | 	/// The error type.
 40 | 	public var code: FHIRValidationErrorType
    |             `- warning: stored property 'code' of 'Sendable'-conforming struct 'FHIRValidationError' has non-sendable type 'FHIRValidationErrorType'; this is an error in the Swift 6 language mode
 41 |
 42 | 	/// The property key to which the error applies; may be empty for errors raised by primitives.
[75/217] Compiling Models FamilyMemberHistory.swift
/host/spi-builder-workspace/Sources/Models/FHIRError.swift:33:7: warning: associated value 'noRequestHandlerAvailable' of 'Sendable'-conforming enum 'FHIRError' has non-sendable type 'FHIRRequestMethod'; this is an error in the Swift 6 language mode
 31 | 	case requestNotSent(String)
 32 | 	case requestError(Int, String)
 33 | 	case noRequestHandlerAvailable(FHIRRequestMethod)
    |       `- warning: associated value 'noRequestHandlerAvailable' of 'Sendable'-conforming enum 'FHIRError' has non-sendable type 'FHIRRequestMethod'; this is an error in the Swift 6 language mode
 34 | 	case noResponseReceived
 35 |
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:15:13: note: consider making enum 'FHIRRequestMethod' conform to the 'Sendable' protocol
 13 | Struct to describe REST request types, with a convenience method to make a request FHIR compliant.
 14 | */
 15 | public enum FHIRRequestMethod: String {
    |             `- note: consider making enum 'FHIRRequestMethod' conform to the 'Sendable' protocol
 16 | 	case GET = "GET"
 17 | 	case PUT = "PUT"
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:26:37: error: cannot find type 'URLRequest' in scope
 24 | 	Prepare a given mutable URL request with the respective method and body values.
 25 | 	*/
 26 | 	public func prepare(request: inout URLRequest, body: Data? = nil) {
    |                                     `- error: cannot find type 'URLRequest' in scope
 27 | 		request.httpMethod = rawValue
 28 |
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:81:37: error: cannot find type 'URLRequest' in scope
 79 | 	Prepare a given mutable URL request with the receiver's values.
 80 | 	*/
 81 | 	public func prepare(request: inout URLRequest) {
    |                                     `- error: cannot find type 'URLRequest' in scope
 82 | 		headers.forEach {
 83 | 			request.setValue($1, forHTTPHeaderField: $0.rawValue)
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:131:37: error: cannot find type 'URLRequest' in scope
129 | 	Prepare a given mutable URL request with the receiver's parameters.
130 | 	*/
131 | 	public func prepare(request: inout URLRequest) {
    |                                     `- error: cannot find type 'URLRequest' in scope
132 | 		guard parameters.count > 0 else {
133 | 			return
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:185:20: warning: static property 'summary' is not concurrency-safe because non-'Sendable' type 'FHIRRequestOption' may have shared mutable state; this is an error in the Swift 6 language mode
174 | Options to pass along to request handlers.
175 | */
176 | public struct FHIRRequestOption: OptionSet {
    |               `- note: consider making struct 'FHIRRequestOption' conform to the 'Sendable' protocol
177 | 	public let rawValue: Int
178 |
    :
183 |
184 | 	/// Add a `_summary=true` parameter to only receive a summary of the resource.
185 | 	public static let summary = FHIRRequestOption(rawValue: 1)
    |                    |- warning: static property 'summary' is not concurrency-safe because non-'Sendable' type 'FHIRRequestOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'summary' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
186 |
187 | 	/// Tolerate JSON validation errors when receiving a response, i.e. don't throw upon instantiation, use what's provided.
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:188:20: warning: static property 'lenient' is not concurrency-safe because non-'Sendable' type 'FHIRRequestOption' may have shared mutable state; this is an error in the Swift 6 language mode
174 | Options to pass along to request handlers.
175 | */
176 | public struct FHIRRequestOption: OptionSet {
    |               `- note: consider making struct 'FHIRRequestOption' conform to the 'Sendable' protocol
177 | 	public let rawValue: Int
178 |
    :
186 |
187 | 	/// Tolerate JSON validation errors when receiving a response, i.e. don't throw upon instantiation, use what's provided.
188 | 	public static let lenient = FHIRRequestOption(rawValue: 2)
    |                    |- warning: static property 'lenient' is not concurrency-safe because non-'Sendable' type 'FHIRRequestOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'lenient' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
189 | }
190 |
/host/spi-builder-workspace/Sources/Models/FHIRRequestHandler.swift:59:30: error: cannot find type 'URLRequest' in scope
57 | 	- parameter request: The request to decorate
58 | 	*/
59 | 	func prepare(request: inout URLRequest) throws
   |                              `- error: cannot find type 'URLRequest' in scope
60 |
61 |
/host/spi-builder-workspace/Sources/Models/FHIRRequestHandler.swift:72:26: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
70 | 	- returns:            An appropriately configured `FHIRServerResponse` instance
71 | 	*/
72 | 	func response(response: URLResponse?, data: Data?, error: Error?) -> FHIRServerResponse
   |                          `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
73 |
74 | 	/**
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
  |                  `- note: 'URLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Models/FHIRValidationError.swift:40:13: warning: stored property 'code' of 'Sendable'-conforming struct 'FHIRValidationError' has non-sendable type 'FHIRValidationErrorType'; this is an error in the Swift 6 language mode
 13 | The type of the validation error.
 14 | */
 15 | public enum FHIRValidationErrorType: Int {
    |             `- note: consider making enum 'FHIRValidationErrorType' conform to the 'Sendable' protocol
 16 |
 17 | 	/// The key is mandatory but missing.
    :
 38 |
 39 | 	/// The error type.
 40 | 	public var code: FHIRValidationErrorType
    |             `- warning: stored property 'code' of 'Sendable'-conforming struct 'FHIRValidationError' has non-sendable type 'FHIRValidationErrorType'; this is an error in the Swift 6 language mode
 41 |
 42 | 	/// The property key to which the error applies; may be empty for errors raised by primitives.
[76/217] Compiling Models Flag.swift
/host/spi-builder-workspace/Sources/Models/FHIRError.swift:33:7: warning: associated value 'noRequestHandlerAvailable' of 'Sendable'-conforming enum 'FHIRError' has non-sendable type 'FHIRRequestMethod'; this is an error in the Swift 6 language mode
 31 | 	case requestNotSent(String)
 32 | 	case requestError(Int, String)
 33 | 	case noRequestHandlerAvailable(FHIRRequestMethod)
    |       `- warning: associated value 'noRequestHandlerAvailable' of 'Sendable'-conforming enum 'FHIRError' has non-sendable type 'FHIRRequestMethod'; this is an error in the Swift 6 language mode
 34 | 	case noResponseReceived
 35 |
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:15:13: note: consider making enum 'FHIRRequestMethod' conform to the 'Sendable' protocol
 13 | Struct to describe REST request types, with a convenience method to make a request FHIR compliant.
 14 | */
 15 | public enum FHIRRequestMethod: String {
    |             `- note: consider making enum 'FHIRRequestMethod' conform to the 'Sendable' protocol
 16 | 	case GET = "GET"
 17 | 	case PUT = "PUT"
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:26:37: error: cannot find type 'URLRequest' in scope
 24 | 	Prepare a given mutable URL request with the respective method and body values.
 25 | 	*/
 26 | 	public func prepare(request: inout URLRequest, body: Data? = nil) {
    |                                     `- error: cannot find type 'URLRequest' in scope
 27 | 		request.httpMethod = rawValue
 28 |
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:81:37: error: cannot find type 'URLRequest' in scope
 79 | 	Prepare a given mutable URL request with the receiver's values.
 80 | 	*/
 81 | 	public func prepare(request: inout URLRequest) {
    |                                     `- error: cannot find type 'URLRequest' in scope
 82 | 		headers.forEach {
 83 | 			request.setValue($1, forHTTPHeaderField: $0.rawValue)
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:131:37: error: cannot find type 'URLRequest' in scope
129 | 	Prepare a given mutable URL request with the receiver's parameters.
130 | 	*/
131 | 	public func prepare(request: inout URLRequest) {
    |                                     `- error: cannot find type 'URLRequest' in scope
132 | 		guard parameters.count > 0 else {
133 | 			return
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:185:20: warning: static property 'summary' is not concurrency-safe because non-'Sendable' type 'FHIRRequestOption' may have shared mutable state; this is an error in the Swift 6 language mode
174 | Options to pass along to request handlers.
175 | */
176 | public struct FHIRRequestOption: OptionSet {
    |               `- note: consider making struct 'FHIRRequestOption' conform to the 'Sendable' protocol
177 | 	public let rawValue: Int
178 |
    :
183 |
184 | 	/// Add a `_summary=true` parameter to only receive a summary of the resource.
185 | 	public static let summary = FHIRRequestOption(rawValue: 1)
    |                    |- warning: static property 'summary' is not concurrency-safe because non-'Sendable' type 'FHIRRequestOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'summary' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
186 |
187 | 	/// Tolerate JSON validation errors when receiving a response, i.e. don't throw upon instantiation, use what's provided.
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:188:20: warning: static property 'lenient' is not concurrency-safe because non-'Sendable' type 'FHIRRequestOption' may have shared mutable state; this is an error in the Swift 6 language mode
174 | Options to pass along to request handlers.
175 | */
176 | public struct FHIRRequestOption: OptionSet {
    |               `- note: consider making struct 'FHIRRequestOption' conform to the 'Sendable' protocol
177 | 	public let rawValue: Int
178 |
    :
186 |
187 | 	/// Tolerate JSON validation errors when receiving a response, i.e. don't throw upon instantiation, use what's provided.
188 | 	public static let lenient = FHIRRequestOption(rawValue: 2)
    |                    |- warning: static property 'lenient' is not concurrency-safe because non-'Sendable' type 'FHIRRequestOption' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'lenient' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
189 | }
190 |
/host/spi-builder-workspace/Sources/Models/FHIRRequestHandler.swift:59:30: error: cannot find type 'URLRequest' in scope
57 | 	- parameter request: The request to decorate
58 | 	*/
59 | 	func prepare(request: inout URLRequest) throws
   |                              `- error: cannot find type 'URLRequest' in scope
60 |
61 |
/host/spi-builder-workspace/Sources/Models/FHIRRequestHandler.swift:72:26: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
70 | 	- returns:            An appropriately configured `FHIRServerResponse` instance
71 | 	*/
72 | 	func response(response: URLResponse?, data: Data?, error: Error?) -> FHIRServerResponse
   |                          `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
73 |
74 | 	/**
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
  |                  `- note: 'URLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Models/FHIRValidationError.swift:40:13: warning: stored property 'code' of 'Sendable'-conforming struct 'FHIRValidationError' has non-sendable type 'FHIRValidationErrorType'; this is an error in the Swift 6 language mode
 13 | The type of the validation error.
 14 | */
 15 | public enum FHIRValidationErrorType: Int {
    |             `- note: consider making enum 'FHIRValidationErrorType' conform to the 'Sendable' protocol
 16 |
 17 | 	/// The key is mandatory but missing.
    :
 38 |
 39 | 	/// The error type.
 40 | 	public var code: FHIRValidationErrorType
    |             `- warning: stored property 'code' of 'Sendable'-conforming struct 'FHIRValidationError' has non-sendable type 'FHIRValidationErrorType'; this is an error in the Swift 6 language mode
 41 |
 42 | 	/// The property key to which the error applies; may be empty for errors raised by primitives.
[77/217] Compiling Models Goal.swift
[78/217] Compiling Models GraphDefinition.swift
[79/217] Compiling Models Group.swift
[80/217] Compiling Models GuidanceResponse.swift
[81/217] Compiling Models HealthcareService.swift
[82/217] Compiling Models HumanName.swift
[83/217] Compiling Models Identifier.swift
[84/217] Compiling Models ImagingStudy.swift
[85/217] Compiling Models Immunization.swift
[86/217] Compiling Models ImmunizationEvaluation.swift
[87/217] Compiling Models ImmunizationRecommendation.swift
[88/217] Compiling Models ImplementationGuide.swift
[89/217] Compiling Models InsurancePlan.swift
[90/217] Compiling Models Invoice.swift
[91/217] Compiling Models Library.swift
[92/217] Compiling Models Linkage.swift
[93/217] Compiling Models List.swift
[94/217] Compiling Models Location.swift
[95/217] Compiling Models MarketingStatus.swift
[96/217] Compiling Models Measure.swift
[97/217] Compiling Models MeasureReport.swift
[98/217] Compiling Models Media.swift
[99/217] Compiling Models Medication.swift
[100/217] Compiling Models MedicationAdministration.swift
[101/217] Compiling Models Observation.swift
[102/217] Compiling Models ObservationDefinition.swift
[103/217] Compiling Models OperationDefinition.swift
[104/217] Compiling Models OperationOutcome.swift
[105/217] Compiling Models Organization.swift
[106/217] Compiling Models OrganizationAffiliation.swift
[107/217] Compiling Models ParameterDefinition.swift
[108/217] Compiling Models Parameters.swift
[109/217] Compiling Models Patient.swift
[110/217] Compiling Models PaymentNotice.swift
[111/217] Compiling Models PaymentReconciliation.swift
[112/217] Compiling Models Period.swift
[113/217] Compiling Models Person.swift
[114/217] Compiling Models PlanDefinition.swift
[115/217] Compiling Models Population.swift
[116/217] Compiling Models Practitioner.swift
[117/217] Compiling Models PractitionerRole.swift
[118/217] Compiling Models Procedure.swift
[119/217] Compiling Models ProdCharacteristic.swift
[120/217] Compiling Models ProductShelfLife.swift
[121/217] Compiling Models Provenance.swift
[122/217] Compiling Models Quantity.swift
[123/217] Compiling Models Questionnaire.swift
[124/217] Compiling Models Claim.swift
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:714:13: warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 712 |
 713 | 	/// The singleton instance
 714 | 	static var shared = DateNSDateConverter()
     |             |- warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |             |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
     |             |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
     |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 715 |
 716 | 	let calendar: Calendar
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:808:13: warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 806 |
 807 | 	/// The singleton instance
 808 | 	static var shared = DateAndTimeParser()
     |             |- warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |             |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
     |             |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
     |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 809 |
 810 | 	/**
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:974:37: error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
 972 | 		#else
 973 | 		var str: NSString?
 974 | 		if scanString(searchString, into: &str) {
     |                                     |- error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
     |                                     `- note: arguments to generic parameter 'Pointee' ('NSString?' and 'String?') are expected to be equal
 975 | 			return str as String?
 976 | 		}
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:986:38: error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
 984 | 		#else
 985 | 		var str: NSString?
 986 | 		if scanCharacters(from: set, into: &str) {
     |                                      |- error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
     |                                      `- note: arguments to generic parameter 'Pointee' ('NSString?' and 'String?') are expected to be equal
 987 | 			return str as String?
 988 | 		}
[125/217] Compiling Models ClaimResponse.swift
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:714:13: warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 712 |
 713 | 	/// The singleton instance
 714 | 	static var shared = DateNSDateConverter()
     |             |- warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |             |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
     |             |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
     |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 715 |
 716 | 	let calendar: Calendar
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:808:13: warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 806 |
 807 | 	/// The singleton instance
 808 | 	static var shared = DateAndTimeParser()
     |             |- warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |             |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
     |             |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
     |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 809 |
 810 | 	/**
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:974:37: error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
 972 | 		#else
 973 | 		var str: NSString?
 974 | 		if scanString(searchString, into: &str) {
     |                                     |- error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
     |                                     `- note: arguments to generic parameter 'Pointee' ('NSString?' and 'String?') are expected to be equal
 975 | 			return str as String?
 976 | 		}
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:986:38: error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
 984 | 		#else
 985 | 		var str: NSString?
 986 | 		if scanCharacters(from: set, into: &str) {
     |                                      |- error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
     |                                      `- note: arguments to generic parameter 'Pointee' ('NSString?' and 'String?') are expected to be equal
 987 | 			return str as String?
 988 | 		}
[126/217] Compiling Models ClinicalImpression.swift
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:714:13: warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 712 |
 713 | 	/// The singleton instance
 714 | 	static var shared = DateNSDateConverter()
     |             |- warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |             |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
     |             |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
     |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 715 |
 716 | 	let calendar: Calendar
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:808:13: warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 806 |
 807 | 	/// The singleton instance
 808 | 	static var shared = DateAndTimeParser()
     |             |- warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |             |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
     |             |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
     |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 809 |
 810 | 	/**
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:974:37: error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
 972 | 		#else
 973 | 		var str: NSString?
 974 | 		if scanString(searchString, into: &str) {
     |                                     |- error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
     |                                     `- note: arguments to generic parameter 'Pointee' ('NSString?' and 'String?') are expected to be equal
 975 | 			return str as String?
 976 | 		}
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:986:38: error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
 984 | 		#else
 985 | 		var str: NSString?
 986 | 		if scanCharacters(from: set, into: &str) {
     |                                      |- error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
     |                                      `- note: arguments to generic parameter 'Pointee' ('NSString?' and 'String?') are expected to be equal
 987 | 			return str as String?
 988 | 		}
[127/217] Compiling Models CodeSystem.swift
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:714:13: warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 712 |
 713 | 	/// The singleton instance
 714 | 	static var shared = DateNSDateConverter()
     |             |- warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |             |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
     |             |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
     |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 715 |
 716 | 	let calendar: Calendar
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:808:13: warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 806 |
 807 | 	/// The singleton instance
 808 | 	static var shared = DateAndTimeParser()
     |             |- warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |             |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
     |             |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
     |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 809 |
 810 | 	/**
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:974:37: error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
 972 | 		#else
 973 | 		var str: NSString?
 974 | 		if scanString(searchString, into: &str) {
     |                                     |- error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
     |                                     `- note: arguments to generic parameter 'Pointee' ('NSString?' and 'String?') are expected to be equal
 975 | 			return str as String?
 976 | 		}
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:986:38: error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
 984 | 		#else
 985 | 		var str: NSString?
 986 | 		if scanCharacters(from: set, into: &str) {
     |                                      |- error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
     |                                      `- note: arguments to generic parameter 'Pointee' ('NSString?' and 'String?') are expected to be equal
 987 | 			return str as String?
 988 | 		}
[128/217] Compiling Models CodeSystems.swift
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:714:13: warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 712 |
 713 | 	/// The singleton instance
 714 | 	static var shared = DateNSDateConverter()
     |             |- warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |             |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
     |             |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
     |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 715 |
 716 | 	let calendar: Calendar
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:808:13: warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 806 |
 807 | 	/// The singleton instance
 808 | 	static var shared = DateAndTimeParser()
     |             |- warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |             |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
     |             |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
     |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 809 |
 810 | 	/**
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:974:37: error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
 972 | 		#else
 973 | 		var str: NSString?
 974 | 		if scanString(searchString, into: &str) {
     |                                     |- error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
     |                                     `- note: arguments to generic parameter 'Pointee' ('NSString?' and 'String?') are expected to be equal
 975 | 			return str as String?
 976 | 		}
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:986:38: error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
 984 | 		#else
 985 | 		var str: NSString?
 986 | 		if scanCharacters(from: set, into: &str) {
     |                                      |- error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
     |                                      `- note: arguments to generic parameter 'Pointee' ('NSString?' and 'String?') are expected to be equal
 987 | 			return str as String?
 988 | 		}
[129/217] Compiling Models CodeableConcept.swift
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:714:13: warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 712 |
 713 | 	/// The singleton instance
 714 | 	static var shared = DateNSDateConverter()
     |             |- warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |             |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
     |             |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
     |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 715 |
 716 | 	let calendar: Calendar
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:808:13: warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 806 |
 807 | 	/// The singleton instance
 808 | 	static var shared = DateAndTimeParser()
     |             |- warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |             |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
     |             |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
     |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 809 |
 810 | 	/**
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:974:37: error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
 972 | 		#else
 973 | 		var str: NSString?
 974 | 		if scanString(searchString, into: &str) {
     |                                     |- error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
     |                                     `- note: arguments to generic parameter 'Pointee' ('NSString?' and 'String?') are expected to be equal
 975 | 			return str as String?
 976 | 		}
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:986:38: error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
 984 | 		#else
 985 | 		var str: NSString?
 986 | 		if scanCharacters(from: set, into: &str) {
     |                                      |- error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
     |                                      `- note: arguments to generic parameter 'Pointee' ('NSString?' and 'String?') are expected to be equal
 987 | 			return str as String?
 988 | 		}
[130/217] Compiling Models Coding.swift
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:714:13: warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 712 |
 713 | 	/// The singleton instance
 714 | 	static var shared = DateNSDateConverter()
     |             |- warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |             |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
     |             |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
     |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 715 |
 716 | 	let calendar: Calendar
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:808:13: warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 806 |
 807 | 	/// The singleton instance
 808 | 	static var shared = DateAndTimeParser()
     |             |- warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |             |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
     |             |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
     |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 809 |
 810 | 	/**
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:974:37: error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
 972 | 		#else
 973 | 		var str: NSString?
 974 | 		if scanString(searchString, into: &str) {
     |                                     |- error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
     |                                     `- note: arguments to generic parameter 'Pointee' ('NSString?' and 'String?') are expected to be equal
 975 | 			return str as String?
 976 | 		}
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:986:38: error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
 984 | 		#else
 985 | 		var str: NSString?
 986 | 		if scanCharacters(from: set, into: &str) {
     |                                      |- error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
     |                                      `- note: arguments to generic parameter 'Pointee' ('NSString?' and 'String?') are expected to be equal
 987 | 			return str as String?
 988 | 		}
[131/217] Compiling Models Communication.swift
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:714:13: warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 712 |
 713 | 	/// The singleton instance
 714 | 	static var shared = DateNSDateConverter()
     |             |- warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |             |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
     |             |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
     |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 715 |
 716 | 	let calendar: Calendar
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:808:13: warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 806 |
 807 | 	/// The singleton instance
 808 | 	static var shared = DateAndTimeParser()
     |             |- warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |             |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
     |             |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
     |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 809 |
 810 | 	/**
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:974:37: error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
 972 | 		#else
 973 | 		var str: NSString?
 974 | 		if scanString(searchString, into: &str) {
     |                                     |- error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
     |                                     `- note: arguments to generic parameter 'Pointee' ('NSString?' and 'String?') are expected to be equal
 975 | 			return str as String?
 976 | 		}
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:986:38: error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
 984 | 		#else
 985 | 		var str: NSString?
 986 | 		if scanCharacters(from: set, into: &str) {
     |                                      |- error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
     |                                      `- note: arguments to generic parameter 'Pointee' ('NSString?' and 'String?') are expected to be equal
 987 | 			return str as String?
 988 | 		}
[132/217] Compiling Models CommunicationRequest.swift
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:714:13: warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 712 |
 713 | 	/// The singleton instance
 714 | 	static var shared = DateNSDateConverter()
     |             |- warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |             |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
     |             |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
     |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 715 |
 716 | 	let calendar: Calendar
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:808:13: warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 806 |
 807 | 	/// The singleton instance
 808 | 	static var shared = DateAndTimeParser()
     |             |- warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |             |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
     |             |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
     |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 809 |
 810 | 	/**
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:974:37: error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
 972 | 		#else
 973 | 		var str: NSString?
 974 | 		if scanString(searchString, into: &str) {
     |                                     |- error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
     |                                     `- note: arguments to generic parameter 'Pointee' ('NSString?' and 'String?') are expected to be equal
 975 | 			return str as String?
 976 | 		}
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:986:38: error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
 984 | 		#else
 985 | 		var str: NSString?
 986 | 		if scanCharacters(from: set, into: &str) {
     |                                      |- error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
     |                                      `- note: arguments to generic parameter 'Pointee' ('NSString?' and 'String?') are expected to be equal
 987 | 			return str as String?
 988 | 		}
[133/217] Compiling Models CompartmentDefinition.swift
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:714:13: warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 712 |
 713 | 	/// The singleton instance
 714 | 	static var shared = DateNSDateConverter()
     |             |- warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |             |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
     |             |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
     |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 715 |
 716 | 	let calendar: Calendar
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:808:13: warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 806 |
 807 | 	/// The singleton instance
 808 | 	static var shared = DateAndTimeParser()
     |             |- warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |             |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
     |             |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
     |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 809 |
 810 | 	/**
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:974:37: error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
 972 | 		#else
 973 | 		var str: NSString?
 974 | 		if scanString(searchString, into: &str) {
     |                                     |- error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
     |                                     `- note: arguments to generic parameter 'Pointee' ('NSString?' and 'String?') are expected to be equal
 975 | 			return str as String?
 976 | 		}
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:986:38: error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
 984 | 		#else
 985 | 		var str: NSString?
 986 | 		if scanCharacters(from: set, into: &str) {
     |                                      |- error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
     |                                      `- note: arguments to generic parameter 'Pointee' ('NSString?' and 'String?') are expected to be equal
 987 | 			return str as String?
 988 | 		}
[134/217] Compiling Models Composition.swift
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:714:13: warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 712 |
 713 | 	/// The singleton instance
 714 | 	static var shared = DateNSDateConverter()
     |             |- warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |             |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
     |             |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
     |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 715 |
 716 | 	let calendar: Calendar
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:808:13: warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 806 |
 807 | 	/// The singleton instance
 808 | 	static var shared = DateAndTimeParser()
     |             |- warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |             |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
     |             |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
     |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 809 |
 810 | 	/**
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:974:37: error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
 972 | 		#else
 973 | 		var str: NSString?
 974 | 		if scanString(searchString, into: &str) {
     |                                     |- error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
     |                                     `- note: arguments to generic parameter 'Pointee' ('NSString?' and 'String?') are expected to be equal
 975 | 			return str as String?
 976 | 		}
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:986:38: error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
 984 | 		#else
 985 | 		var str: NSString?
 986 | 		if scanCharacters(from: set, into: &str) {
     |                                      |- error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
     |                                      `- note: arguments to generic parameter 'Pointee' ('NSString?' and 'String?') are expected to be equal
 987 | 			return str as String?
 988 | 		}
[135/217] Compiling Models ConceptMap.swift
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:714:13: warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 712 |
 713 | 	/// The singleton instance
 714 | 	static var shared = DateNSDateConverter()
     |             |- warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |             |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
     |             |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
     |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 715 |
 716 | 	let calendar: Calendar
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:808:13: warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 806 |
 807 | 	/// The singleton instance
 808 | 	static var shared = DateAndTimeParser()
     |             |- warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |             |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
     |             |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
     |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 809 |
 810 | 	/**
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:974:37: error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
 972 | 		#else
 973 | 		var str: NSString?
 974 | 		if scanString(searchString, into: &str) {
     |                                     |- error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
     |                                     `- note: arguments to generic parameter 'Pointee' ('NSString?' and 'String?') are expected to be equal
 975 | 			return str as String?
 976 | 		}
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:986:38: error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
 984 | 		#else
 985 | 		var str: NSString?
 986 | 		if scanCharacters(from: set, into: &str) {
     |                                      |- error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
     |                                      `- note: arguments to generic parameter 'Pointee' ('NSString?' and 'String?') are expected to be equal
 987 | 			return str as String?
 988 | 		}
[136/217] Compiling Models Condition.swift
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:714:13: warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 712 |
 713 | 	/// The singleton instance
 714 | 	static var shared = DateNSDateConverter()
     |             |- warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |             |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
     |             |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
     |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 715 |
 716 | 	let calendar: Calendar
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:808:13: warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 806 |
 807 | 	/// The singleton instance
 808 | 	static var shared = DateAndTimeParser()
     |             |- warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |             |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
     |             |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
     |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 809 |
 810 | 	/**
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:974:37: error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
 972 | 		#else
 973 | 		var str: NSString?
 974 | 		if scanString(searchString, into: &str) {
     |                                     |- error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
     |                                     `- note: arguments to generic parameter 'Pointee' ('NSString?' and 'String?') are expected to be equal
 975 | 			return str as String?
 976 | 		}
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:986:38: error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
 984 | 		#else
 985 | 		var str: NSString?
 986 | 		if scanCharacters(from: set, into: &str) {
     |                                      |- error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
     |                                      `- note: arguments to generic parameter 'Pointee' ('NSString?' and 'String?') are expected to be equal
 987 | 			return str as String?
 988 | 		}
[137/217] Compiling Models Consent.swift
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:714:13: warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 712 |
 713 | 	/// The singleton instance
 714 | 	static var shared = DateNSDateConverter()
     |             |- warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |             |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
     |             |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
     |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 715 |
 716 | 	let calendar: Calendar
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:808:13: warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 806 |
 807 | 	/// The singleton instance
 808 | 	static var shared = DateAndTimeParser()
     |             |- warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |             |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
     |             |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
     |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 809 |
 810 | 	/**
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:974:37: error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
 972 | 		#else
 973 | 		var str: NSString?
 974 | 		if scanString(searchString, into: &str) {
     |                                     |- error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
     |                                     `- note: arguments to generic parameter 'Pointee' ('NSString?' and 'String?') are expected to be equal
 975 | 			return str as String?
 976 | 		}
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:986:38: error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
 984 | 		#else
 985 | 		var str: NSString?
 986 | 		if scanCharacters(from: set, into: &str) {
     |                                      |- error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
     |                                      `- note: arguments to generic parameter 'Pointee' ('NSString?' and 'String?') are expected to be equal
 987 | 			return str as String?
 988 | 		}
[138/217] Compiling Models ContactDetail.swift
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:714:13: warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 712 |
 713 | 	/// The singleton instance
 714 | 	static var shared = DateNSDateConverter()
     |             |- warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |             |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
     |             |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
     |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 715 |
 716 | 	let calendar: Calendar
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:808:13: warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 806 |
 807 | 	/// The singleton instance
 808 | 	static var shared = DateAndTimeParser()
     |             |- warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |             |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
     |             |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
     |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 809 |
 810 | 	/**
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:974:37: error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
 972 | 		#else
 973 | 		var str: NSString?
 974 | 		if scanString(searchString, into: &str) {
     |                                     |- error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
     |                                     `- note: arguments to generic parameter 'Pointee' ('NSString?' and 'String?') are expected to be equal
 975 | 			return str as String?
 976 | 		}
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:986:38: error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
 984 | 		#else
 985 | 		var str: NSString?
 986 | 		if scanCharacters(from: set, into: &str) {
     |                                      |- error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
     |                                      `- note: arguments to generic parameter 'Pointee' ('NSString?' and 'String?') are expected to be equal
 987 | 			return str as String?
 988 | 		}
[139/217] Compiling Models ContactPoint.swift
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:714:13: warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 712 |
 713 | 	/// The singleton instance
 714 | 	static var shared = DateNSDateConverter()
     |             |- warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |             |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
     |             |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
     |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 715 |
 716 | 	let calendar: Calendar
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:808:13: warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 806 |
 807 | 	/// The singleton instance
 808 | 	static var shared = DateAndTimeParser()
     |             |- warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |             |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
     |             |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
     |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 809 |
 810 | 	/**
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:974:37: error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
 972 | 		#else
 973 | 		var str: NSString?
 974 | 		if scanString(searchString, into: &str) {
     |                                     |- error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
     |                                     `- note: arguments to generic parameter 'Pointee' ('NSString?' and 'String?') are expected to be equal
 975 | 			return str as String?
 976 | 		}
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:986:38: error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
 984 | 		#else
 985 | 		var str: NSString?
 986 | 		if scanCharacters(from: set, into: &str) {
     |                                      |- error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
     |                                      `- note: arguments to generic parameter 'Pointee' ('NSString?' and 'String?') are expected to be equal
 987 | 			return str as String?
 988 | 		}
[140/217] Compiling Models Contract.swift
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:714:13: warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 712 |
 713 | 	/// The singleton instance
 714 | 	static var shared = DateNSDateConverter()
     |             |- warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |             |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
     |             |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
     |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 715 |
 716 | 	let calendar: Calendar
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:808:13: warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 806 |
 807 | 	/// The singleton instance
 808 | 	static var shared = DateAndTimeParser()
     |             |- warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |             |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
     |             |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
     |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 809 |
 810 | 	/**
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:974:37: error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
 972 | 		#else
 973 | 		var str: NSString?
 974 | 		if scanString(searchString, into: &str) {
     |                                     |- error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
     |                                     `- note: arguments to generic parameter 'Pointee' ('NSString?' and 'String?') are expected to be equal
 975 | 			return str as String?
 976 | 		}
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:986:38: error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
 984 | 		#else
 985 | 		var str: NSString?
 986 | 		if scanCharacters(from: set, into: &str) {
     |                                      |- error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
     |                                      `- note: arguments to generic parameter 'Pointee' ('NSString?' and 'String?') are expected to be equal
 987 | 			return str as String?
 988 | 		}
[141/217] Compiling Models Contributor.swift
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:714:13: warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 712 |
 713 | 	/// The singleton instance
 714 | 	static var shared = DateNSDateConverter()
     |             |- warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |             |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
     |             |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
     |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 715 |
 716 | 	let calendar: Calendar
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:808:13: warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 806 |
 807 | 	/// The singleton instance
 808 | 	static var shared = DateAndTimeParser()
     |             |- warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |             |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
     |             |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
     |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 809 |
 810 | 	/**
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:974:37: error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
 972 | 		#else
 973 | 		var str: NSString?
 974 | 		if scanString(searchString, into: &str) {
     |                                     |- error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
     |                                     `- note: arguments to generic parameter 'Pointee' ('NSString?' and 'String?') are expected to be equal
 975 | 			return str as String?
 976 | 		}
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:986:38: error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
 984 | 		#else
 985 | 		var str: NSString?
 986 | 		if scanCharacters(from: set, into: &str) {
     |                                      |- error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
     |                                      `- note: arguments to generic parameter 'Pointee' ('NSString?' and 'String?') are expected to be equal
 987 | 			return str as String?
 988 | 		}
[142/217] Compiling Models Count.swift
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:714:13: warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 712 |
 713 | 	/// The singleton instance
 714 | 	static var shared = DateNSDateConverter()
     |             |- warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |             |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
     |             |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
     |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 715 |
 716 | 	let calendar: Calendar
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:808:13: warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 806 |
 807 | 	/// The singleton instance
 808 | 	static var shared = DateAndTimeParser()
     |             |- warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |             |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
     |             |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
     |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 809 |
 810 | 	/**
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:974:37: error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
 972 | 		#else
 973 | 		var str: NSString?
 974 | 		if scanString(searchString, into: &str) {
     |                                     |- error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
     |                                     `- note: arguments to generic parameter 'Pointee' ('NSString?' and 'String?') are expected to be equal
 975 | 			return str as String?
 976 | 		}
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:986:38: error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
 984 | 		#else
 985 | 		var str: NSString?
 986 | 		if scanCharacters(from: set, into: &str) {
     |                                      |- error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
     |                                      `- note: arguments to generic parameter 'Pointee' ('NSString?' and 'String?') are expected to be equal
 987 | 			return str as String?
 988 | 		}
[143/217] Compiling Models Coverage.swift
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:714:13: warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 712 |
 713 | 	/// The singleton instance
 714 | 	static var shared = DateNSDateConverter()
     |             |- warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |             |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
     |             |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
     |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 715 |
 716 | 	let calendar: Calendar
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:808:13: warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 806 |
 807 | 	/// The singleton instance
 808 | 	static var shared = DateAndTimeParser()
     |             |- warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |             |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
     |             |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
     |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 809 |
 810 | 	/**
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:974:37: error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
 972 | 		#else
 973 | 		var str: NSString?
 974 | 		if scanString(searchString, into: &str) {
     |                                     |- error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
     |                                     `- note: arguments to generic parameter 'Pointee' ('NSString?' and 'String?') are expected to be equal
 975 | 			return str as String?
 976 | 		}
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:986:38: error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
 984 | 		#else
 985 | 		var str: NSString?
 986 | 		if scanCharacters(from: set, into: &str) {
     |                                      |- error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
     |                                      `- note: arguments to generic parameter 'Pointee' ('NSString?' and 'String?') are expected to be equal
 987 | 			return str as String?
 988 | 		}
[144/217] Compiling Models CoverageEligibilityRequest.swift
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:714:13: warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 712 |
 713 | 	/// The singleton instance
 714 | 	static var shared = DateNSDateConverter()
     |             |- warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |             |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
     |             |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
     |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 715 |
 716 | 	let calendar: Calendar
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:808:13: warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 806 |
 807 | 	/// The singleton instance
 808 | 	static var shared = DateAndTimeParser()
     |             |- warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |             |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
     |             |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
     |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 809 |
 810 | 	/**
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:974:37: error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
 972 | 		#else
 973 | 		var str: NSString?
 974 | 		if scanString(searchString, into: &str) {
     |                                     |- error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
     |                                     `- note: arguments to generic parameter 'Pointee' ('NSString?' and 'String?') are expected to be equal
 975 | 			return str as String?
 976 | 		}
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:986:38: error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
 984 | 		#else
 985 | 		var str: NSString?
 986 | 		if scanCharacters(from: set, into: &str) {
     |                                      |- error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
     |                                      `- note: arguments to generic parameter 'Pointee' ('NSString?' and 'String?') are expected to be equal
 987 | 			return str as String?
 988 | 		}
[145/217] Compiling Models CoverageEligibilityResponse.swift
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:714:13: warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 712 |
 713 | 	/// The singleton instance
 714 | 	static var shared = DateNSDateConverter()
     |             |- warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |             |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
     |             |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
     |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 715 |
 716 | 	let calendar: Calendar
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:808:13: warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 806 |
 807 | 	/// The singleton instance
 808 | 	static var shared = DateAndTimeParser()
     |             |- warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |             |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
     |             |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
     |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 809 |
 810 | 	/**
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:974:37: error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
 972 | 		#else
 973 | 		var str: NSString?
 974 | 		if scanString(searchString, into: &str) {
     |                                     |- error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
     |                                     `- note: arguments to generic parameter 'Pointee' ('NSString?' and 'String?') are expected to be equal
 975 | 			return str as String?
 976 | 		}
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:986:38: error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
 984 | 		#else
 985 | 		var str: NSString?
 986 | 		if scanCharacters(from: set, into: &str) {
     |                                      |- error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
     |                                      `- note: arguments to generic parameter 'Pointee' ('NSString?' and 'String?') are expected to be equal
 987 | 			return str as String?
 988 | 		}
[146/217] Compiling Models DataRequirement.swift
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:714:13: warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 712 |
 713 | 	/// The singleton instance
 714 | 	static var shared = DateNSDateConverter()
     |             |- warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |             |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
     |             |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
     |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 715 |
 716 | 	let calendar: Calendar
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:808:13: warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 806 |
 807 | 	/// The singleton instance
 808 | 	static var shared = DateAndTimeParser()
     |             |- warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |             |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
     |             |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
     |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 809 |
 810 | 	/**
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:974:37: error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
 972 | 		#else
 973 | 		var str: NSString?
 974 | 		if scanString(searchString, into: &str) {
     |                                     |- error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
     |                                     `- note: arguments to generic parameter 'Pointee' ('NSString?' and 'String?') are expected to be equal
 975 | 			return str as String?
 976 | 		}
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:986:38: error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
 984 | 		#else
 985 | 		var str: NSString?
 986 | 		if scanCharacters(from: set, into: &str) {
     |                                      |- error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
     |                                      `- note: arguments to generic parameter 'Pointee' ('NSString?' and 'String?') are expected to be equal
 987 | 			return str as String?
 988 | 		}
[147/217] Compiling Models DateAndTime.swift
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:714:13: warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 712 |
 713 | 	/// The singleton instance
 714 | 	static var shared = DateNSDateConverter()
     |             |- warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |             |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
     |             |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
     |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 715 |
 716 | 	let calendar: Calendar
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:808:13: warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 806 |
 807 | 	/// The singleton instance
 808 | 	static var shared = DateAndTimeParser()
     |             |- warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |             |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
     |             |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
     |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 809 |
 810 | 	/**
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:974:37: error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
 972 | 		#else
 973 | 		var str: NSString?
 974 | 		if scanString(searchString, into: &str) {
     |                                     |- error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
     |                                     `- note: arguments to generic parameter 'Pointee' ('NSString?' and 'String?') are expected to be equal
 975 | 			return str as String?
 976 | 		}
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:986:38: error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
 984 | 		#else
 985 | 		var str: NSString?
 986 | 		if scanCharacters(from: set, into: &str) {
     |                                      |- error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
     |                                      `- note: arguments to generic parameter 'Pointee' ('NSString?' and 'String?') are expected to be equal
 987 | 			return str as String?
 988 | 		}
[148/217] Compiling Models DetectedIssue.swift
[149/217] Compiling Models Device.swift
[150/217] Compiling Models DeviceDefinition.swift
[151/217] Compiling Models DeviceMetric.swift
[152/217] Compiling Models DeviceRequest.swift
[153/217] Compiling Models DeviceUseStatement.swift
[154/217] Compiling Models DiagnosticReport.swift
[155/217] Compiling Models Distance.swift
[156/217] Compiling Models DocumentManifest.swift
[157/217] Compiling Models DocumentReference.swift
[158/217] Compiling Models DomainResource.swift
[159/217] Compiling Models Dosage.swift
[160/217] Compiling Models Duration.swift
[161/217] Compiling Models EffectEvidenceSynthesis.swift
[162/217] Compiling Models Element.swift
[163/217] Compiling Models ElementDefinition.swift
[164/217] Compiling Models Encounter.swift
[165/217] Compiling Models Endpoint.swift
[166/217] Compiling Models EnrollmentRequest.swift
[167/217] Compiling Models EnrollmentResponse.swift
[168/217] Compiling Models EpisodeOfCare.swift
[169/217] Compiling Models EventDefinition.swift
[170/217] Compiling Models Evidence.swift
[171/217] Compiling Models EvidenceVariable.swift
[172/217] Compiling Models QuestionnaireResponse.swift
[173/217] Compiling Models Range.swift
[174/217] Compiling Models Ratio.swift
[175/217] Compiling Models Reference.swift
[176/217] Compiling Models RelatedArtifact.swift
[177/217] Compiling Models RelatedPerson.swift
[178/217] Compiling Models RequestGroup.swift
[179/217] Compiling Models ResearchDefinition.swift
[180/217] Compiling Models ResearchElementDefinition.swift
[181/217] Compiling Models ResearchStudy.swift
[182/217] Compiling Models ResearchSubject.swift
[183/217] Compiling Models Resource+Meta.swift
[184/217] Compiling Models Resource.swift
[185/217] Compiling Models RiskAssessment.swift
[186/217] Compiling Models RiskEvidenceSynthesis.swift
[187/217] Compiling Models SampledData.swift
[188/217] Compiling Models Schedule.swift
[189/217] Compiling Models SearchParameter.swift
[190/217] Compiling Models ServiceRequest.swift
[191/217] Compiling Models Signature.swift
[192/217] Compiling Models Slot.swift
[193/217] Compiling Models Specimen.swift
[194/217] Compiling Models SpecimenDefinition.swift
[195/217] Compiling Models StructureDefinition.swift
[196/217] Compiling Models StructureMap.swift
[197/217] Compiling Models Subscription.swift
[198/217] Compiling Models Substance.swift
[199/217] Compiling Models SubstanceAmount.swift
[200/217] Compiling Models SubstanceNucleicAcid.swift
[201/217] Compiling Models SubstancePolymer.swift
[202/217] Compiling Models SubstanceProtein.swift
[203/217] Compiling Models SubstanceReferenceInformation.swift
[204/217] Compiling Models SubstanceSourceMaterial.swift
[205/217] Compiling Models SubstanceSpecification.swift
[206/217] Compiling Models SupplyDelivery.swift
[207/217] Compiling Models SupplyRequest.swift
[208/217] Compiling Models Task.swift
[209/217] Compiling Models TerminologyCapabilities.swift
[210/217] Compiling Models TestReport.swift
[211/217] Compiling Models TestScript.swift
[212/217] Compiling Models Timing.swift
[213/217] Compiling Models TriggerDefinition.swift
[214/217] Compiling Models UsageContext.swift
[215/217] Compiling Models ValueSet.swift
[216/217] Compiling Models VerificationResult.swift
[217/217] Compiling Models VisionPrescription.swift
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-1":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:android-6.1-latest swift build --swift-sdk aarch64-unknown-linux-android24 2>&1
android-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:fe1962677657b2408c217cb5cceb3c09bc1d91486e360cebbc6eee461a5945d8
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:android-6.1-latest
[0/1] Planning build
Building for debugging...
[0/1] Write swift-version-24593BA9C3E375BF.txt
[2/168] Compiling Models Observation.swift
[3/168] Compiling Models ObservationDefinition.swift
[4/168] Compiling Models OperationDefinition.swift
[5/168] Compiling Models OperationOutcome.swift
[6/168] Compiling Models Organization.swift
[7/168] Compiling Models OrganizationAffiliation.swift
[8/168] Compiling Models ParameterDefinition.swift
[9/168] Compiling Models Parameters.swift
[10/168] Compiling Models Patient.swift
[11/168] Compiling Models PaymentNotice.swift
[12/168] Compiling Models PaymentReconciliation.swift
[13/168] Compiling Models Period.swift
[14/168] Compiling Models Person.swift
[15/168] Compiling Models PlanDefinition.swift
[16/168] Compiling Models Population.swift
[17/168] Compiling Models Practitioner.swift
[18/168] Compiling Models PractitionerRole.swift
[19/168] Compiling Models Procedure.swift
[20/168] Compiling Models ProdCharacteristic.swift
[21/168] Compiling Models ProductShelfLife.swift
[22/168] Compiling Models Provenance.swift
[23/168] Compiling Models Quantity.swift
[24/168] Compiling Models Questionnaire.swift
[25/191] Compiling Models MedicationDispense.swift
[26/191] Compiling Models MedicationKnowledge.swift
[27/191] Compiling Models MedicationRequest.swift
[28/191] Compiling Models MedicationStatement.swift
[29/191] Compiling Models MedicinalProduct.swift
[30/191] Compiling Models MedicinalProductAuthorization.swift
[31/191] Compiling Models MedicinalProductContraindication.swift
[32/191] Compiling Models MedicinalProductIndication.swift
[33/191] Compiling Models MedicinalProductIngredient.swift
[34/191] Compiling Models MedicinalProductInteraction.swift
[35/191] Compiling Models MedicinalProductManufactured.swift
[36/191] Compiling Models MedicinalProductPackaged.swift
[37/191] Compiling Models MedicinalProductPharmaceutical.swift
[38/191] Compiling Models MedicinalProductUndesirableEffect.swift
[39/191] Compiling Models MessageDefinition.swift
[40/191] Compiling Models MessageHeader.swift
[41/191] Compiling Models Meta.swift
[42/191] Compiling Models MetadataResource.swift
[43/191] Compiling Models MolecularSequence.swift
[44/191] Compiling Models Money.swift
[45/191] Compiling Models NamingSystem.swift
[46/191] Compiling Models Narrative.swift
[47/191] Compiling Models NutritionOrder.swift
[48/214] Compiling Models Goal.swift
[49/214] Compiling Models GraphDefinition.swift
[50/214] Compiling Models Group.swift
[51/214] Compiling Models GuidanceResponse.swift
[52/214] Compiling Models HealthcareService.swift
[53/214] Compiling Models HumanName.swift
[54/214] Compiling Models Identifier.swift
[55/214] Compiling Models ImagingStudy.swift
[56/214] Compiling Models Immunization.swift
[57/214] Compiling Models ImmunizationEvaluation.swift
[58/214] Compiling Models ImmunizationRecommendation.swift
[59/214] Compiling Models ImplementationGuide.swift
[60/214] Compiling Models InsurancePlan.swift
[61/214] Compiling Models Invoice.swift
[62/214] Compiling Models Library.swift
[63/214] Compiling Models Linkage.swift
[64/214] Compiling Models List.swift
[65/214] Compiling Models Location.swift
[66/214] Compiling Models MarketingStatus.swift
[67/214] Compiling Models Measure.swift
[68/214] Compiling Models MeasureReport.swift
[69/214] Compiling Models Media.swift
[70/214] Compiling Models Medication.swift
[71/214] Compiling Models MedicationAdministration.swift
[72/214] Compiling Models ExampleScenario.swift
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:26:37: error: cannot find type 'URLRequest' in scope
 24 | 	Prepare a given mutable URL request with the respective method and body values.
 25 | 	*/
 26 | 	public func prepare(request: inout URLRequest, body: Data? = nil) {
    |                                     `- error: cannot find type 'URLRequest' in scope
 27 | 		request.httpMethod = rawValue
 28 |
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:81:37: error: cannot find type 'URLRequest' in scope
 79 | 	Prepare a given mutable URL request with the receiver's values.
 80 | 	*/
 81 | 	public func prepare(request: inout URLRequest) {
    |                                     `- error: cannot find type 'URLRequest' in scope
 82 | 		headers.forEach {
 83 | 			request.setValue($1, forHTTPHeaderField: $0.rawValue)
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:131:37: error: cannot find type 'URLRequest' in scope
129 | 	Prepare a given mutable URL request with the receiver's parameters.
130 | 	*/
131 | 	public func prepare(request: inout URLRequest) {
    |                                     `- error: cannot find type 'URLRequest' in scope
132 | 		guard parameters.count > 0 else {
133 | 			return
/host/spi-builder-workspace/Sources/Models/FHIRRequestHandler.swift:59:30: error: cannot find type 'URLRequest' in scope
57 | 	- parameter request: The request to decorate
58 | 	*/
59 | 	func prepare(request: inout URLRequest) throws
   |                              `- error: cannot find type 'URLRequest' in scope
60 |
61 |
/host/spi-builder-workspace/Sources/Models/FHIRRequestHandler.swift:72:26: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
70 | 	- returns:            An appropriately configured `FHIRServerResponse` instance
71 | 	*/
72 | 	func response(response: URLResponse?, data: Data?, error: Error?) -> FHIRServerResponse
   |                          `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
73 |
74 | 	/**
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
  |                  `- note: 'URLResponse' has been explicitly marked unavailable here
[73/214] Compiling Models ExplanationOfBenefit.swift
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:26:37: error: cannot find type 'URLRequest' in scope
 24 | 	Prepare a given mutable URL request with the respective method and body values.
 25 | 	*/
 26 | 	public func prepare(request: inout URLRequest, body: Data? = nil) {
    |                                     `- error: cannot find type 'URLRequest' in scope
 27 | 		request.httpMethod = rawValue
 28 |
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:81:37: error: cannot find type 'URLRequest' in scope
 79 | 	Prepare a given mutable URL request with the receiver's values.
 80 | 	*/
 81 | 	public func prepare(request: inout URLRequest) {
    |                                     `- error: cannot find type 'URLRequest' in scope
 82 | 		headers.forEach {
 83 | 			request.setValue($1, forHTTPHeaderField: $0.rawValue)
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:131:37: error: cannot find type 'URLRequest' in scope
129 | 	Prepare a given mutable URL request with the receiver's parameters.
130 | 	*/
131 | 	public func prepare(request: inout URLRequest) {
    |                                     `- error: cannot find type 'URLRequest' in scope
132 | 		guard parameters.count > 0 else {
133 | 			return
/host/spi-builder-workspace/Sources/Models/FHIRRequestHandler.swift:59:30: error: cannot find type 'URLRequest' in scope
57 | 	- parameter request: The request to decorate
58 | 	*/
59 | 	func prepare(request: inout URLRequest) throws
   |                              `- error: cannot find type 'URLRequest' in scope
60 |
61 |
/host/spi-builder-workspace/Sources/Models/FHIRRequestHandler.swift:72:26: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
70 | 	- returns:            An appropriately configured `FHIRServerResponse` instance
71 | 	*/
72 | 	func response(response: URLResponse?, data: Data?, error: Error?) -> FHIRServerResponse
   |                          `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
73 |
74 | 	/**
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
  |                  `- note: 'URLResponse' has been explicitly marked unavailable here
[74/214] Compiling Models Expression.swift
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:26:37: error: cannot find type 'URLRequest' in scope
 24 | 	Prepare a given mutable URL request with the respective method and body values.
 25 | 	*/
 26 | 	public func prepare(request: inout URLRequest, body: Data? = nil) {
    |                                     `- error: cannot find type 'URLRequest' in scope
 27 | 		request.httpMethod = rawValue
 28 |
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:81:37: error: cannot find type 'URLRequest' in scope
 79 | 	Prepare a given mutable URL request with the receiver's values.
 80 | 	*/
 81 | 	public func prepare(request: inout URLRequest) {
    |                                     `- error: cannot find type 'URLRequest' in scope
 82 | 		headers.forEach {
 83 | 			request.setValue($1, forHTTPHeaderField: $0.rawValue)
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:131:37: error: cannot find type 'URLRequest' in scope
129 | 	Prepare a given mutable URL request with the receiver's parameters.
130 | 	*/
131 | 	public func prepare(request: inout URLRequest) {
    |                                     `- error: cannot find type 'URLRequest' in scope
132 | 		guard parameters.count > 0 else {
133 | 			return
/host/spi-builder-workspace/Sources/Models/FHIRRequestHandler.swift:59:30: error: cannot find type 'URLRequest' in scope
57 | 	- parameter request: The request to decorate
58 | 	*/
59 | 	func prepare(request: inout URLRequest) throws
   |                              `- error: cannot find type 'URLRequest' in scope
60 |
61 |
/host/spi-builder-workspace/Sources/Models/FHIRRequestHandler.swift:72:26: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
70 | 	- returns:            An appropriately configured `FHIRServerResponse` instance
71 | 	*/
72 | 	func response(response: URLResponse?, data: Data?, error: Error?) -> FHIRServerResponse
   |                          `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
73 |
74 | 	/**
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
  |                  `- note: 'URLResponse' has been explicitly marked unavailable here
[75/214] Compiling Models Extension.swift
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:26:37: error: cannot find type 'URLRequest' in scope
 24 | 	Prepare a given mutable URL request with the respective method and body values.
 25 | 	*/
 26 | 	public func prepare(request: inout URLRequest, body: Data? = nil) {
    |                                     `- error: cannot find type 'URLRequest' in scope
 27 | 		request.httpMethod = rawValue
 28 |
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:81:37: error: cannot find type 'URLRequest' in scope
 79 | 	Prepare a given mutable URL request with the receiver's values.
 80 | 	*/
 81 | 	public func prepare(request: inout URLRequest) {
    |                                     `- error: cannot find type 'URLRequest' in scope
 82 | 		headers.forEach {
 83 | 			request.setValue($1, forHTTPHeaderField: $0.rawValue)
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:131:37: error: cannot find type 'URLRequest' in scope
129 | 	Prepare a given mutable URL request with the receiver's parameters.
130 | 	*/
131 | 	public func prepare(request: inout URLRequest) {
    |                                     `- error: cannot find type 'URLRequest' in scope
132 | 		guard parameters.count > 0 else {
133 | 			return
/host/spi-builder-workspace/Sources/Models/FHIRRequestHandler.swift:59:30: error: cannot find type 'URLRequest' in scope
57 | 	- parameter request: The request to decorate
58 | 	*/
59 | 	func prepare(request: inout URLRequest) throws
   |                              `- error: cannot find type 'URLRequest' in scope
60 |
61 |
/host/spi-builder-workspace/Sources/Models/FHIRRequestHandler.swift:72:26: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
70 | 	- returns:            An appropriately configured `FHIRServerResponse` instance
71 | 	*/
72 | 	func response(response: URLResponse?, data: Data?, error: Error?) -> FHIRServerResponse
   |                          `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
73 |
74 | 	/**
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
  |                  `- note: 'URLResponse' has been explicitly marked unavailable here
[76/214] Compiling Models FHIRAbstractBase+Factory.swift
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:26:37: error: cannot find type 'URLRequest' in scope
 24 | 	Prepare a given mutable URL request with the respective method and body values.
 25 | 	*/
 26 | 	public func prepare(request: inout URLRequest, body: Data? = nil) {
    |                                     `- error: cannot find type 'URLRequest' in scope
 27 | 		request.httpMethod = rawValue
 28 |
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:81:37: error: cannot find type 'URLRequest' in scope
 79 | 	Prepare a given mutable URL request with the receiver's values.
 80 | 	*/
 81 | 	public func prepare(request: inout URLRequest) {
    |                                     `- error: cannot find type 'URLRequest' in scope
 82 | 		headers.forEach {
 83 | 			request.setValue($1, forHTTPHeaderField: $0.rawValue)
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:131:37: error: cannot find type 'URLRequest' in scope
129 | 	Prepare a given mutable URL request with the receiver's parameters.
130 | 	*/
131 | 	public func prepare(request: inout URLRequest) {
    |                                     `- error: cannot find type 'URLRequest' in scope
132 | 		guard parameters.count > 0 else {
133 | 			return
/host/spi-builder-workspace/Sources/Models/FHIRRequestHandler.swift:59:30: error: cannot find type 'URLRequest' in scope
57 | 	- parameter request: The request to decorate
58 | 	*/
59 | 	func prepare(request: inout URLRequest) throws
   |                              `- error: cannot find type 'URLRequest' in scope
60 |
61 |
/host/spi-builder-workspace/Sources/Models/FHIRRequestHandler.swift:72:26: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
70 | 	- returns:            An appropriately configured `FHIRServerResponse` instance
71 | 	*/
72 | 	func response(response: URLResponse?, data: Data?, error: Error?) -> FHIRServerResponse
   |                          `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
73 |
74 | 	/**
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
  |                  `- note: 'URLResponse' has been explicitly marked unavailable here
[77/214] Compiling Models FHIRAbstractBase.swift
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:26:37: error: cannot find type 'URLRequest' in scope
 24 | 	Prepare a given mutable URL request with the respective method and body values.
 25 | 	*/
 26 | 	public func prepare(request: inout URLRequest, body: Data? = nil) {
    |                                     `- error: cannot find type 'URLRequest' in scope
 27 | 		request.httpMethod = rawValue
 28 |
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:81:37: error: cannot find type 'URLRequest' in scope
 79 | 	Prepare a given mutable URL request with the receiver's values.
 80 | 	*/
 81 | 	public func prepare(request: inout URLRequest) {
    |                                     `- error: cannot find type 'URLRequest' in scope
 82 | 		headers.forEach {
 83 | 			request.setValue($1, forHTTPHeaderField: $0.rawValue)
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:131:37: error: cannot find type 'URLRequest' in scope
129 | 	Prepare a given mutable URL request with the receiver's parameters.
130 | 	*/
131 | 	public func prepare(request: inout URLRequest) {
    |                                     `- error: cannot find type 'URLRequest' in scope
132 | 		guard parameters.count > 0 else {
133 | 			return
/host/spi-builder-workspace/Sources/Models/FHIRRequestHandler.swift:59:30: error: cannot find type 'URLRequest' in scope
57 | 	- parameter request: The request to decorate
58 | 	*/
59 | 	func prepare(request: inout URLRequest) throws
   |                              `- error: cannot find type 'URLRequest' in scope
60 |
61 |
/host/spi-builder-workspace/Sources/Models/FHIRRequestHandler.swift:72:26: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
70 | 	- returns:            An appropriately configured `FHIRServerResponse` instance
71 | 	*/
72 | 	func response(response: URLResponse?, data: Data?, error: Error?) -> FHIRServerResponse
   |                          `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
73 |
74 | 	/**
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
  |                  `- note: 'URLResponse' has been explicitly marked unavailable here
[78/214] Compiling Models FHIRAbstractResource.swift
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:26:37: error: cannot find type 'URLRequest' in scope
 24 | 	Prepare a given mutable URL request with the respective method and body values.
 25 | 	*/
 26 | 	public func prepare(request: inout URLRequest, body: Data? = nil) {
    |                                     `- error: cannot find type 'URLRequest' in scope
 27 | 		request.httpMethod = rawValue
 28 |
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:81:37: error: cannot find type 'URLRequest' in scope
 79 | 	Prepare a given mutable URL request with the receiver's values.
 80 | 	*/
 81 | 	public func prepare(request: inout URLRequest) {
    |                                     `- error: cannot find type 'URLRequest' in scope
 82 | 		headers.forEach {
 83 | 			request.setValue($1, forHTTPHeaderField: $0.rawValue)
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:131:37: error: cannot find type 'URLRequest' in scope
129 | 	Prepare a given mutable URL request with the receiver's parameters.
130 | 	*/
131 | 	public func prepare(request: inout URLRequest) {
    |                                     `- error: cannot find type 'URLRequest' in scope
132 | 		guard parameters.count > 0 else {
133 | 			return
/host/spi-builder-workspace/Sources/Models/FHIRRequestHandler.swift:59:30: error: cannot find type 'URLRequest' in scope
57 | 	- parameter request: The request to decorate
58 | 	*/
59 | 	func prepare(request: inout URLRequest) throws
   |                              `- error: cannot find type 'URLRequest' in scope
60 |
61 |
/host/spi-builder-workspace/Sources/Models/FHIRRequestHandler.swift:72:26: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
70 | 	- returns:            An appropriately configured `FHIRServerResponse` instance
71 | 	*/
72 | 	func response(response: URLResponse?, data: Data?, error: Error?) -> FHIRServerResponse
   |                          `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
73 |
74 | 	/**
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
  |                  `- note: 'URLResponse' has been explicitly marked unavailable here
[79/214] Compiling Models FHIRBool.swift
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:26:37: error: cannot find type 'URLRequest' in scope
 24 | 	Prepare a given mutable URL request with the respective method and body values.
 25 | 	*/
 26 | 	public func prepare(request: inout URLRequest, body: Data? = nil) {
    |                                     `- error: cannot find type 'URLRequest' in scope
 27 | 		request.httpMethod = rawValue
 28 |
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:81:37: error: cannot find type 'URLRequest' in scope
 79 | 	Prepare a given mutable URL request with the receiver's values.
 80 | 	*/
 81 | 	public func prepare(request: inout URLRequest) {
    |                                     `- error: cannot find type 'URLRequest' in scope
 82 | 		headers.forEach {
 83 | 			request.setValue($1, forHTTPHeaderField: $0.rawValue)
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:131:37: error: cannot find type 'URLRequest' in scope
129 | 	Prepare a given mutable URL request with the receiver's parameters.
130 | 	*/
131 | 	public func prepare(request: inout URLRequest) {
    |                                     `- error: cannot find type 'URLRequest' in scope
132 | 		guard parameters.count > 0 else {
133 | 			return
/host/spi-builder-workspace/Sources/Models/FHIRRequestHandler.swift:59:30: error: cannot find type 'URLRequest' in scope
57 | 	- parameter request: The request to decorate
58 | 	*/
59 | 	func prepare(request: inout URLRequest) throws
   |                              `- error: cannot find type 'URLRequest' in scope
60 |
61 |
/host/spi-builder-workspace/Sources/Models/FHIRRequestHandler.swift:72:26: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
70 | 	- returns:            An appropriately configured `FHIRServerResponse` instance
71 | 	*/
72 | 	func response(response: URLResponse?, data: Data?, error: Error?) -> FHIRServerResponse
   |                          `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
73 |
74 | 	/**
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
  |                  `- note: 'URLResponse' has been explicitly marked unavailable here
[80/214] Compiling Models FHIRCanonical.swift
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:26:37: error: cannot find type 'URLRequest' in scope
 24 | 	Prepare a given mutable URL request with the respective method and body values.
 25 | 	*/
 26 | 	public func prepare(request: inout URLRequest, body: Data? = nil) {
    |                                     `- error: cannot find type 'URLRequest' in scope
 27 | 		request.httpMethod = rawValue
 28 |
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:81:37: error: cannot find type 'URLRequest' in scope
 79 | 	Prepare a given mutable URL request with the receiver's values.
 80 | 	*/
 81 | 	public func prepare(request: inout URLRequest) {
    |                                     `- error: cannot find type 'URLRequest' in scope
 82 | 		headers.forEach {
 83 | 			request.setValue($1, forHTTPHeaderField: $0.rawValue)
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:131:37: error: cannot find type 'URLRequest' in scope
129 | 	Prepare a given mutable URL request with the receiver's parameters.
130 | 	*/
131 | 	public func prepare(request: inout URLRequest) {
    |                                     `- error: cannot find type 'URLRequest' in scope
132 | 		guard parameters.count > 0 else {
133 | 			return
/host/spi-builder-workspace/Sources/Models/FHIRRequestHandler.swift:59:30: error: cannot find type 'URLRequest' in scope
57 | 	- parameter request: The request to decorate
58 | 	*/
59 | 	func prepare(request: inout URLRequest) throws
   |                              `- error: cannot find type 'URLRequest' in scope
60 |
61 |
/host/spi-builder-workspace/Sources/Models/FHIRRequestHandler.swift:72:26: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
70 | 	- returns:            An appropriately configured `FHIRServerResponse` instance
71 | 	*/
72 | 	func response(response: URLResponse?, data: Data?, error: Error?) -> FHIRServerResponse
   |                          `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
73 |
74 | 	/**
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
  |                  `- note: 'URLResponse' has been explicitly marked unavailable here
[81/214] Compiling Models FHIRDecimal.swift
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:26:37: error: cannot find type 'URLRequest' in scope
 24 | 	Prepare a given mutable URL request with the respective method and body values.
 25 | 	*/
 26 | 	public func prepare(request: inout URLRequest, body: Data? = nil) {
    |                                     `- error: cannot find type 'URLRequest' in scope
 27 | 		request.httpMethod = rawValue
 28 |
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:81:37: error: cannot find type 'URLRequest' in scope
 79 | 	Prepare a given mutable URL request with the receiver's values.
 80 | 	*/
 81 | 	public func prepare(request: inout URLRequest) {
    |                                     `- error: cannot find type 'URLRequest' in scope
 82 | 		headers.forEach {
 83 | 			request.setValue($1, forHTTPHeaderField: $0.rawValue)
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:131:37: error: cannot find type 'URLRequest' in scope
129 | 	Prepare a given mutable URL request with the receiver's parameters.
130 | 	*/
131 | 	public func prepare(request: inout URLRequest) {
    |                                     `- error: cannot find type 'URLRequest' in scope
132 | 		guard parameters.count > 0 else {
133 | 			return
/host/spi-builder-workspace/Sources/Models/FHIRRequestHandler.swift:59:30: error: cannot find type 'URLRequest' in scope
57 | 	- parameter request: The request to decorate
58 | 	*/
59 | 	func prepare(request: inout URLRequest) throws
   |                              `- error: cannot find type 'URLRequest' in scope
60 |
61 |
/host/spi-builder-workspace/Sources/Models/FHIRRequestHandler.swift:72:26: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
70 | 	- returns:            An appropriately configured `FHIRServerResponse` instance
71 | 	*/
72 | 	func response(response: URLResponse?, data: Data?, error: Error?) -> FHIRServerResponse
   |                          `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
73 |
74 | 	/**
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
  |                  `- note: 'URLResponse' has been explicitly marked unavailable here
[82/214] Compiling Models FHIREnum.swift
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:26:37: error: cannot find type 'URLRequest' in scope
 24 | 	Prepare a given mutable URL request with the respective method and body values.
 25 | 	*/
 26 | 	public func prepare(request: inout URLRequest, body: Data? = nil) {
    |                                     `- error: cannot find type 'URLRequest' in scope
 27 | 		request.httpMethod = rawValue
 28 |
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:81:37: error: cannot find type 'URLRequest' in scope
 79 | 	Prepare a given mutable URL request with the receiver's values.
 80 | 	*/
 81 | 	public func prepare(request: inout URLRequest) {
    |                                     `- error: cannot find type 'URLRequest' in scope
 82 | 		headers.forEach {
 83 | 			request.setValue($1, forHTTPHeaderField: $0.rawValue)
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:131:37: error: cannot find type 'URLRequest' in scope
129 | 	Prepare a given mutable URL request with the receiver's parameters.
130 | 	*/
131 | 	public func prepare(request: inout URLRequest) {
    |                                     `- error: cannot find type 'URLRequest' in scope
132 | 		guard parameters.count > 0 else {
133 | 			return
/host/spi-builder-workspace/Sources/Models/FHIRRequestHandler.swift:59:30: error: cannot find type 'URLRequest' in scope
57 | 	- parameter request: The request to decorate
58 | 	*/
59 | 	func prepare(request: inout URLRequest) throws
   |                              `- error: cannot find type 'URLRequest' in scope
60 |
61 |
/host/spi-builder-workspace/Sources/Models/FHIRRequestHandler.swift:72:26: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
70 | 	- returns:            An appropriately configured `FHIRServerResponse` instance
71 | 	*/
72 | 	func response(response: URLResponse?, data: Data?, error: Error?) -> FHIRServerResponse
   |                          `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
73 |
74 | 	/**
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
  |                  `- note: 'URLResponse' has been explicitly marked unavailable here
[83/214] Compiling Models FHIRError.swift
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:26:37: error: cannot find type 'URLRequest' in scope
 24 | 	Prepare a given mutable URL request with the respective method and body values.
 25 | 	*/
 26 | 	public func prepare(request: inout URLRequest, body: Data? = nil) {
    |                                     `- error: cannot find type 'URLRequest' in scope
 27 | 		request.httpMethod = rawValue
 28 |
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:81:37: error: cannot find type 'URLRequest' in scope
 79 | 	Prepare a given mutable URL request with the receiver's values.
 80 | 	*/
 81 | 	public func prepare(request: inout URLRequest) {
    |                                     `- error: cannot find type 'URLRequest' in scope
 82 | 		headers.forEach {
 83 | 			request.setValue($1, forHTTPHeaderField: $0.rawValue)
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:131:37: error: cannot find type 'URLRequest' in scope
129 | 	Prepare a given mutable URL request with the receiver's parameters.
130 | 	*/
131 | 	public func prepare(request: inout URLRequest) {
    |                                     `- error: cannot find type 'URLRequest' in scope
132 | 		guard parameters.count > 0 else {
133 | 			return
/host/spi-builder-workspace/Sources/Models/FHIRRequestHandler.swift:59:30: error: cannot find type 'URLRequest' in scope
57 | 	- parameter request: The request to decorate
58 | 	*/
59 | 	func prepare(request: inout URLRequest) throws
   |                              `- error: cannot find type 'URLRequest' in scope
60 |
61 |
/host/spi-builder-workspace/Sources/Models/FHIRRequestHandler.swift:72:26: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
70 | 	- returns:            An appropriately configured `FHIRServerResponse` instance
71 | 	*/
72 | 	func response(response: URLResponse?, data: Data?, error: Error?) -> FHIRServerResponse
   |                          `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
73 |
74 | 	/**
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
  |                  `- note: 'URLResponse' has been explicitly marked unavailable here
[84/214] Compiling Models FHIRInteger.swift
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:26:37: error: cannot find type 'URLRequest' in scope
 24 | 	Prepare a given mutable URL request with the respective method and body values.
 25 | 	*/
 26 | 	public func prepare(request: inout URLRequest, body: Data? = nil) {
    |                                     `- error: cannot find type 'URLRequest' in scope
 27 | 		request.httpMethod = rawValue
 28 |
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:81:37: error: cannot find type 'URLRequest' in scope
 79 | 	Prepare a given mutable URL request with the receiver's values.
 80 | 	*/
 81 | 	public func prepare(request: inout URLRequest) {
    |                                     `- error: cannot find type 'URLRequest' in scope
 82 | 		headers.forEach {
 83 | 			request.setValue($1, forHTTPHeaderField: $0.rawValue)
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:131:37: error: cannot find type 'URLRequest' in scope
129 | 	Prepare a given mutable URL request with the receiver's parameters.
130 | 	*/
131 | 	public func prepare(request: inout URLRequest) {
    |                                     `- error: cannot find type 'URLRequest' in scope
132 | 		guard parameters.count > 0 else {
133 | 			return
/host/spi-builder-workspace/Sources/Models/FHIRRequestHandler.swift:59:30: error: cannot find type 'URLRequest' in scope
57 | 	- parameter request: The request to decorate
58 | 	*/
59 | 	func prepare(request: inout URLRequest) throws
   |                              `- error: cannot find type 'URLRequest' in scope
60 |
61 |
/host/spi-builder-workspace/Sources/Models/FHIRRequestHandler.swift:72:26: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
70 | 	- returns:            An appropriately configured `FHIRServerResponse` instance
71 | 	*/
72 | 	func response(response: URLResponse?, data: Data?, error: Error?) -> FHIRServerResponse
   |                          `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
73 |
74 | 	/**
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
  |                  `- note: 'URLResponse' has been explicitly marked unavailable here
[85/214] Compiling Models FHIRPrimitive.swift
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:26:37: error: cannot find type 'URLRequest' in scope
 24 | 	Prepare a given mutable URL request with the respective method and body values.
 25 | 	*/
 26 | 	public func prepare(request: inout URLRequest, body: Data? = nil) {
    |                                     `- error: cannot find type 'URLRequest' in scope
 27 | 		request.httpMethod = rawValue
 28 |
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:81:37: error: cannot find type 'URLRequest' in scope
 79 | 	Prepare a given mutable URL request with the receiver's values.
 80 | 	*/
 81 | 	public func prepare(request: inout URLRequest) {
    |                                     `- error: cannot find type 'URLRequest' in scope
 82 | 		headers.forEach {
 83 | 			request.setValue($1, forHTTPHeaderField: $0.rawValue)
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:131:37: error: cannot find type 'URLRequest' in scope
129 | 	Prepare a given mutable URL request with the receiver's parameters.
130 | 	*/
131 | 	public func prepare(request: inout URLRequest) {
    |                                     `- error: cannot find type 'URLRequest' in scope
132 | 		guard parameters.count > 0 else {
133 | 			return
/host/spi-builder-workspace/Sources/Models/FHIRRequestHandler.swift:59:30: error: cannot find type 'URLRequest' in scope
57 | 	- parameter request: The request to decorate
58 | 	*/
59 | 	func prepare(request: inout URLRequest) throws
   |                              `- error: cannot find type 'URLRequest' in scope
60 |
61 |
/host/spi-builder-workspace/Sources/Models/FHIRRequestHandler.swift:72:26: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
70 | 	- returns:            An appropriately configured `FHIRServerResponse` instance
71 | 	*/
72 | 	func response(response: URLResponse?, data: Data?, error: Error?) -> FHIRServerResponse
   |                          `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
73 |
74 | 	/**
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
  |                  `- note: 'URLResponse' has been explicitly marked unavailable here
[86/214] Compiling Models FHIRRequest.swift
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:26:37: error: cannot find type 'URLRequest' in scope
 24 | 	Prepare a given mutable URL request with the respective method and body values.
 25 | 	*/
 26 | 	public func prepare(request: inout URLRequest, body: Data? = nil) {
    |                                     `- error: cannot find type 'URLRequest' in scope
 27 | 		request.httpMethod = rawValue
 28 |
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:81:37: error: cannot find type 'URLRequest' in scope
 79 | 	Prepare a given mutable URL request with the receiver's values.
 80 | 	*/
 81 | 	public func prepare(request: inout URLRequest) {
    |                                     `- error: cannot find type 'URLRequest' in scope
 82 | 		headers.forEach {
 83 | 			request.setValue($1, forHTTPHeaderField: $0.rawValue)
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:131:37: error: cannot find type 'URLRequest' in scope
129 | 	Prepare a given mutable URL request with the receiver's parameters.
130 | 	*/
131 | 	public func prepare(request: inout URLRequest) {
    |                                     `- error: cannot find type 'URLRequest' in scope
132 | 		guard parameters.count > 0 else {
133 | 			return
/host/spi-builder-workspace/Sources/Models/FHIRRequestHandler.swift:59:30: error: cannot find type 'URLRequest' in scope
57 | 	- parameter request: The request to decorate
58 | 	*/
59 | 	func prepare(request: inout URLRequest) throws
   |                              `- error: cannot find type 'URLRequest' in scope
60 |
61 |
/host/spi-builder-workspace/Sources/Models/FHIRRequestHandler.swift:72:26: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
70 | 	- returns:            An appropriately configured `FHIRServerResponse` instance
71 | 	*/
72 | 	func response(response: URLResponse?, data: Data?, error: Error?) -> FHIRServerResponse
   |                          `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
73 |
74 | 	/**
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
  |                  `- note: 'URLResponse' has been explicitly marked unavailable here
[87/214] Compiling Models FHIRRequestHandler.swift
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:26:37: error: cannot find type 'URLRequest' in scope
 24 | 	Prepare a given mutable URL request with the respective method and body values.
 25 | 	*/
 26 | 	public func prepare(request: inout URLRequest, body: Data? = nil) {
    |                                     `- error: cannot find type 'URLRequest' in scope
 27 | 		request.httpMethod = rawValue
 28 |
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:81:37: error: cannot find type 'URLRequest' in scope
 79 | 	Prepare a given mutable URL request with the receiver's values.
 80 | 	*/
 81 | 	public func prepare(request: inout URLRequest) {
    |                                     `- error: cannot find type 'URLRequest' in scope
 82 | 		headers.forEach {
 83 | 			request.setValue($1, forHTTPHeaderField: $0.rawValue)
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:131:37: error: cannot find type 'URLRequest' in scope
129 | 	Prepare a given mutable URL request with the receiver's parameters.
130 | 	*/
131 | 	public func prepare(request: inout URLRequest) {
    |                                     `- error: cannot find type 'URLRequest' in scope
132 | 		guard parameters.count > 0 else {
133 | 			return
/host/spi-builder-workspace/Sources/Models/FHIRRequestHandler.swift:59:30: error: cannot find type 'URLRequest' in scope
57 | 	- parameter request: The request to decorate
58 | 	*/
59 | 	func prepare(request: inout URLRequest) throws
   |                              `- error: cannot find type 'URLRequest' in scope
60 |
61 |
/host/spi-builder-workspace/Sources/Models/FHIRRequestHandler.swift:72:26: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
70 | 	- returns:            An appropriately configured `FHIRServerResponse` instance
71 | 	*/
72 | 	func response(response: URLResponse?, data: Data?, error: Error?) -> FHIRServerResponse
   |                          `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
73 |
74 | 	/**
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
  |                  `- note: 'URLResponse' has been explicitly marked unavailable here
[88/214] Compiling Models FHIRServer.swift
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:26:37: error: cannot find type 'URLRequest' in scope
 24 | 	Prepare a given mutable URL request with the respective method and body values.
 25 | 	*/
 26 | 	public func prepare(request: inout URLRequest, body: Data? = nil) {
    |                                     `- error: cannot find type 'URLRequest' in scope
 27 | 		request.httpMethod = rawValue
 28 |
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:81:37: error: cannot find type 'URLRequest' in scope
 79 | 	Prepare a given mutable URL request with the receiver's values.
 80 | 	*/
 81 | 	public func prepare(request: inout URLRequest) {
    |                                     `- error: cannot find type 'URLRequest' in scope
 82 | 		headers.forEach {
 83 | 			request.setValue($1, forHTTPHeaderField: $0.rawValue)
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:131:37: error: cannot find type 'URLRequest' in scope
129 | 	Prepare a given mutable URL request with the receiver's parameters.
130 | 	*/
131 | 	public func prepare(request: inout URLRequest) {
    |                                     `- error: cannot find type 'URLRequest' in scope
132 | 		guard parameters.count > 0 else {
133 | 			return
/host/spi-builder-workspace/Sources/Models/FHIRRequestHandler.swift:59:30: error: cannot find type 'URLRequest' in scope
57 | 	- parameter request: The request to decorate
58 | 	*/
59 | 	func prepare(request: inout URLRequest) throws
   |                              `- error: cannot find type 'URLRequest' in scope
60 |
61 |
/host/spi-builder-workspace/Sources/Models/FHIRRequestHandler.swift:72:26: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
70 | 	- returns:            An appropriately configured `FHIRServerResponse` instance
71 | 	*/
72 | 	func response(response: URLResponse?, data: Data?, error: Error?) -> FHIRServerResponse
   |                          `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
73 |
74 | 	/**
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
  |                  `- note: 'URLResponse' has been explicitly marked unavailable here
[89/214] Compiling Models FHIRServerResponse.swift
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:26:37: error: cannot find type 'URLRequest' in scope
 24 | 	Prepare a given mutable URL request with the respective method and body values.
 25 | 	*/
 26 | 	public func prepare(request: inout URLRequest, body: Data? = nil) {
    |                                     `- error: cannot find type 'URLRequest' in scope
 27 | 		request.httpMethod = rawValue
 28 |
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:81:37: error: cannot find type 'URLRequest' in scope
 79 | 	Prepare a given mutable URL request with the receiver's values.
 80 | 	*/
 81 | 	public func prepare(request: inout URLRequest) {
    |                                     `- error: cannot find type 'URLRequest' in scope
 82 | 		headers.forEach {
 83 | 			request.setValue($1, forHTTPHeaderField: $0.rawValue)
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:131:37: error: cannot find type 'URLRequest' in scope
129 | 	Prepare a given mutable URL request with the receiver's parameters.
130 | 	*/
131 | 	public func prepare(request: inout URLRequest) {
    |                                     `- error: cannot find type 'URLRequest' in scope
132 | 		guard parameters.count > 0 else {
133 | 			return
/host/spi-builder-workspace/Sources/Models/FHIRRequestHandler.swift:59:30: error: cannot find type 'URLRequest' in scope
57 | 	- parameter request: The request to decorate
58 | 	*/
59 | 	func prepare(request: inout URLRequest) throws
   |                              `- error: cannot find type 'URLRequest' in scope
60 |
61 |
/host/spi-builder-workspace/Sources/Models/FHIRRequestHandler.swift:72:26: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
70 | 	- returns:            An appropriately configured `FHIRServerResponse` instance
71 | 	*/
72 | 	func response(response: URLResponse?, data: Data?, error: Error?) -> FHIRServerResponse
   |                          `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
73 |
74 | 	/**
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
  |                  `- note: 'URLResponse' has been explicitly marked unavailable here
[90/214] Compiling Models FHIRString.swift
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:26:37: error: cannot find type 'URLRequest' in scope
 24 | 	Prepare a given mutable URL request with the respective method and body values.
 25 | 	*/
 26 | 	public func prepare(request: inout URLRequest, body: Data? = nil) {
    |                                     `- error: cannot find type 'URLRequest' in scope
 27 | 		request.httpMethod = rawValue
 28 |
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:81:37: error: cannot find type 'URLRequest' in scope
 79 | 	Prepare a given mutable URL request with the receiver's values.
 80 | 	*/
 81 | 	public func prepare(request: inout URLRequest) {
    |                                     `- error: cannot find type 'URLRequest' in scope
 82 | 		headers.forEach {
 83 | 			request.setValue($1, forHTTPHeaderField: $0.rawValue)
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:131:37: error: cannot find type 'URLRequest' in scope
129 | 	Prepare a given mutable URL request with the receiver's parameters.
130 | 	*/
131 | 	public func prepare(request: inout URLRequest) {
    |                                     `- error: cannot find type 'URLRequest' in scope
132 | 		guard parameters.count > 0 else {
133 | 			return
/host/spi-builder-workspace/Sources/Models/FHIRRequestHandler.swift:59:30: error: cannot find type 'URLRequest' in scope
57 | 	- parameter request: The request to decorate
58 | 	*/
59 | 	func prepare(request: inout URLRequest) throws
   |                              `- error: cannot find type 'URLRequest' in scope
60 |
61 |
/host/spi-builder-workspace/Sources/Models/FHIRRequestHandler.swift:72:26: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
70 | 	- returns:            An appropriately configured `FHIRServerResponse` instance
71 | 	*/
72 | 	func response(response: URLResponse?, data: Data?, error: Error?) -> FHIRServerResponse
   |                          `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
73 |
74 | 	/**
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
  |                  `- note: 'URLResponse' has been explicitly marked unavailable here
[91/214] Compiling Models FHIRType.swift
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:26:37: error: cannot find type 'URLRequest' in scope
 24 | 	Prepare a given mutable URL request with the respective method and body values.
 25 | 	*/
 26 | 	public func prepare(request: inout URLRequest, body: Data? = nil) {
    |                                     `- error: cannot find type 'URLRequest' in scope
 27 | 		request.httpMethod = rawValue
 28 |
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:81:37: error: cannot find type 'URLRequest' in scope
 79 | 	Prepare a given mutable URL request with the receiver's values.
 80 | 	*/
 81 | 	public func prepare(request: inout URLRequest) {
    |                                     `- error: cannot find type 'URLRequest' in scope
 82 | 		headers.forEach {
 83 | 			request.setValue($1, forHTTPHeaderField: $0.rawValue)
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:131:37: error: cannot find type 'URLRequest' in scope
129 | 	Prepare a given mutable URL request with the receiver's parameters.
130 | 	*/
131 | 	public func prepare(request: inout URLRequest) {
    |                                     `- error: cannot find type 'URLRequest' in scope
132 | 		guard parameters.count > 0 else {
133 | 			return
/host/spi-builder-workspace/Sources/Models/FHIRRequestHandler.swift:59:30: error: cannot find type 'URLRequest' in scope
57 | 	- parameter request: The request to decorate
58 | 	*/
59 | 	func prepare(request: inout URLRequest) throws
   |                              `- error: cannot find type 'URLRequest' in scope
60 |
61 |
/host/spi-builder-workspace/Sources/Models/FHIRRequestHandler.swift:72:26: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
70 | 	- returns:            An appropriately configured `FHIRServerResponse` instance
71 | 	*/
72 | 	func response(response: URLResponse?, data: Data?, error: Error?) -> FHIRServerResponse
   |                          `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
73 |
74 | 	/**
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
  |                  `- note: 'URLResponse' has been explicitly marked unavailable here
[92/214] Compiling Models FHIRURL.swift
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:26:37: error: cannot find type 'URLRequest' in scope
 24 | 	Prepare a given mutable URL request with the respective method and body values.
 25 | 	*/
 26 | 	public func prepare(request: inout URLRequest, body: Data? = nil) {
    |                                     `- error: cannot find type 'URLRequest' in scope
 27 | 		request.httpMethod = rawValue
 28 |
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:81:37: error: cannot find type 'URLRequest' in scope
 79 | 	Prepare a given mutable URL request with the receiver's values.
 80 | 	*/
 81 | 	public func prepare(request: inout URLRequest) {
    |                                     `- error: cannot find type 'URLRequest' in scope
 82 | 		headers.forEach {
 83 | 			request.setValue($1, forHTTPHeaderField: $0.rawValue)
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:131:37: error: cannot find type 'URLRequest' in scope
129 | 	Prepare a given mutable URL request with the receiver's parameters.
130 | 	*/
131 | 	public func prepare(request: inout URLRequest) {
    |                                     `- error: cannot find type 'URLRequest' in scope
132 | 		guard parameters.count > 0 else {
133 | 			return
/host/spi-builder-workspace/Sources/Models/FHIRRequestHandler.swift:59:30: error: cannot find type 'URLRequest' in scope
57 | 	- parameter request: The request to decorate
58 | 	*/
59 | 	func prepare(request: inout URLRequest) throws
   |                              `- error: cannot find type 'URLRequest' in scope
60 |
61 |
/host/spi-builder-workspace/Sources/Models/FHIRRequestHandler.swift:72:26: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
70 | 	- returns:            An appropriately configured `FHIRServerResponse` instance
71 | 	*/
72 | 	func response(response: URLResponse?, data: Data?, error: Error?) -> FHIRServerResponse
   |                          `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
73 |
74 | 	/**
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
  |                  `- note: 'URLResponse' has been explicitly marked unavailable here
[93/214] Compiling Models FHIRValidationError.swift
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:26:37: error: cannot find type 'URLRequest' in scope
 24 | 	Prepare a given mutable URL request with the respective method and body values.
 25 | 	*/
 26 | 	public func prepare(request: inout URLRequest, body: Data? = nil) {
    |                                     `- error: cannot find type 'URLRequest' in scope
 27 | 		request.httpMethod = rawValue
 28 |
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:81:37: error: cannot find type 'URLRequest' in scope
 79 | 	Prepare a given mutable URL request with the receiver's values.
 80 | 	*/
 81 | 	public func prepare(request: inout URLRequest) {
    |                                     `- error: cannot find type 'URLRequest' in scope
 82 | 		headers.forEach {
 83 | 			request.setValue($1, forHTTPHeaderField: $0.rawValue)
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:131:37: error: cannot find type 'URLRequest' in scope
129 | 	Prepare a given mutable URL request with the receiver's parameters.
130 | 	*/
131 | 	public func prepare(request: inout URLRequest) {
    |                                     `- error: cannot find type 'URLRequest' in scope
132 | 		guard parameters.count > 0 else {
133 | 			return
/host/spi-builder-workspace/Sources/Models/FHIRRequestHandler.swift:59:30: error: cannot find type 'URLRequest' in scope
57 | 	- parameter request: The request to decorate
58 | 	*/
59 | 	func prepare(request: inout URLRequest) throws
   |                              `- error: cannot find type 'URLRequest' in scope
60 |
61 |
/host/spi-builder-workspace/Sources/Models/FHIRRequestHandler.swift:72:26: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
70 | 	- returns:            An appropriately configured `FHIRServerResponse` instance
71 | 	*/
72 | 	func response(response: URLResponse?, data: Data?, error: Error?) -> FHIRServerResponse
   |                          `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
73 |
74 | 	/**
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
  |                  `- note: 'URLResponse' has been explicitly marked unavailable here
[94/214] Compiling Models FamilyMemberHistory.swift
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:26:37: error: cannot find type 'URLRequest' in scope
 24 | 	Prepare a given mutable URL request with the respective method and body values.
 25 | 	*/
 26 | 	public func prepare(request: inout URLRequest, body: Data? = nil) {
    |                                     `- error: cannot find type 'URLRequest' in scope
 27 | 		request.httpMethod = rawValue
 28 |
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:81:37: error: cannot find type 'URLRequest' in scope
 79 | 	Prepare a given mutable URL request with the receiver's values.
 80 | 	*/
 81 | 	public func prepare(request: inout URLRequest) {
    |                                     `- error: cannot find type 'URLRequest' in scope
 82 | 		headers.forEach {
 83 | 			request.setValue($1, forHTTPHeaderField: $0.rawValue)
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:131:37: error: cannot find type 'URLRequest' in scope
129 | 	Prepare a given mutable URL request with the receiver's parameters.
130 | 	*/
131 | 	public func prepare(request: inout URLRequest) {
    |                                     `- error: cannot find type 'URLRequest' in scope
132 | 		guard parameters.count > 0 else {
133 | 			return
/host/spi-builder-workspace/Sources/Models/FHIRRequestHandler.swift:59:30: error: cannot find type 'URLRequest' in scope
57 | 	- parameter request: The request to decorate
58 | 	*/
59 | 	func prepare(request: inout URLRequest) throws
   |                              `- error: cannot find type 'URLRequest' in scope
60 |
61 |
/host/spi-builder-workspace/Sources/Models/FHIRRequestHandler.swift:72:26: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
70 | 	- returns:            An appropriately configured `FHIRServerResponse` instance
71 | 	*/
72 | 	func response(response: URLResponse?, data: Data?, error: Error?) -> FHIRServerResponse
   |                          `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
73 |
74 | 	/**
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
  |                  `- note: 'URLResponse' has been explicitly marked unavailable here
[95/214] Compiling Models Flag.swift
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:26:37: error: cannot find type 'URLRequest' in scope
 24 | 	Prepare a given mutable URL request with the respective method and body values.
 25 | 	*/
 26 | 	public func prepare(request: inout URLRequest, body: Data? = nil) {
    |                                     `- error: cannot find type 'URLRequest' in scope
 27 | 		request.httpMethod = rawValue
 28 |
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:81:37: error: cannot find type 'URLRequest' in scope
 79 | 	Prepare a given mutable URL request with the receiver's values.
 80 | 	*/
 81 | 	public func prepare(request: inout URLRequest) {
    |                                     `- error: cannot find type 'URLRequest' in scope
 82 | 		headers.forEach {
 83 | 			request.setValue($1, forHTTPHeaderField: $0.rawValue)
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:131:37: error: cannot find type 'URLRequest' in scope
129 | 	Prepare a given mutable URL request with the receiver's parameters.
130 | 	*/
131 | 	public func prepare(request: inout URLRequest) {
    |                                     `- error: cannot find type 'URLRequest' in scope
132 | 		guard parameters.count > 0 else {
133 | 			return
/host/spi-builder-workspace/Sources/Models/FHIRRequestHandler.swift:59:30: error: cannot find type 'URLRequest' in scope
57 | 	- parameter request: The request to decorate
58 | 	*/
59 | 	func prepare(request: inout URLRequest) throws
   |                              `- error: cannot find type 'URLRequest' in scope
60 |
61 |
/host/spi-builder-workspace/Sources/Models/FHIRRequestHandler.swift:72:26: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
70 | 	- returns:            An appropriately configured `FHIRServerResponse` instance
71 | 	*/
72 | 	func response(response: URLResponse?, data: Data?, error: Error?) -> FHIRServerResponse
   |                          `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
73 |
74 | 	/**
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
  |                  `- note: 'URLResponse' has been explicitly marked unavailable here
[96/214] Compiling Models Claim.swift
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:974:37: error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
 972 | 		#else
 973 | 		var str: NSString?
 974 | 		if scanString(searchString, into: &str) {
     |                                     |- error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
     |                                     `- note: arguments to generic parameter 'Pointee' ('NSString?' and 'String?') are expected to be equal
 975 | 			return str as String?
 976 | 		}
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:986:38: error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
 984 | 		#else
 985 | 		var str: NSString?
 986 | 		if scanCharacters(from: set, into: &str) {
     |                                      |- error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
     |                                      `- note: arguments to generic parameter 'Pointee' ('NSString?' and 'String?') are expected to be equal
 987 | 			return str as String?
 988 | 		}
[97/214] Compiling Models ClaimResponse.swift
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:974:37: error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
 972 | 		#else
 973 | 		var str: NSString?
 974 | 		if scanString(searchString, into: &str) {
     |                                     |- error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
     |                                     `- note: arguments to generic parameter 'Pointee' ('NSString?' and 'String?') are expected to be equal
 975 | 			return str as String?
 976 | 		}
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:986:38: error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
 984 | 		#else
 985 | 		var str: NSString?
 986 | 		if scanCharacters(from: set, into: &str) {
     |                                      |- error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
     |                                      `- note: arguments to generic parameter 'Pointee' ('NSString?' and 'String?') are expected to be equal
 987 | 			return str as String?
 988 | 		}
[98/214] Compiling Models ClinicalImpression.swift
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:974:37: error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
 972 | 		#else
 973 | 		var str: NSString?
 974 | 		if scanString(searchString, into: &str) {
     |                                     |- error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
     |                                     `- note: arguments to generic parameter 'Pointee' ('NSString?' and 'String?') are expected to be equal
 975 | 			return str as String?
 976 | 		}
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:986:38: error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
 984 | 		#else
 985 | 		var str: NSString?
 986 | 		if scanCharacters(from: set, into: &str) {
     |                                      |- error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
     |                                      `- note: arguments to generic parameter 'Pointee' ('NSString?' and 'String?') are expected to be equal
 987 | 			return str as String?
 988 | 		}
[99/214] Compiling Models CodeSystem.swift
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:974:37: error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
 972 | 		#else
 973 | 		var str: NSString?
 974 | 		if scanString(searchString, into: &str) {
     |                                     |- error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
     |                                     `- note: arguments to generic parameter 'Pointee' ('NSString?' and 'String?') are expected to be equal
 975 | 			return str as String?
 976 | 		}
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:986:38: error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
 984 | 		#else
 985 | 		var str: NSString?
 986 | 		if scanCharacters(from: set, into: &str) {
     |                                      |- error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
     |                                      `- note: arguments to generic parameter 'Pointee' ('NSString?' and 'String?') are expected to be equal
 987 | 			return str as String?
 988 | 		}
[100/214] Compiling Models CodeSystems.swift
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:974:37: error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
 972 | 		#else
 973 | 		var str: NSString?
 974 | 		if scanString(searchString, into: &str) {
     |                                     |- error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
     |                                     `- note: arguments to generic parameter 'Pointee' ('NSString?' and 'String?') are expected to be equal
 975 | 			return str as String?
 976 | 		}
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:986:38: error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
 984 | 		#else
 985 | 		var str: NSString?
 986 | 		if scanCharacters(from: set, into: &str) {
     |                                      |- error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
     |                                      `- note: arguments to generic parameter 'Pointee' ('NSString?' and 'String?') are expected to be equal
 987 | 			return str as String?
 988 | 		}
[101/214] Compiling Models CodeableConcept.swift
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:974:37: error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
 972 | 		#else
 973 | 		var str: NSString?
 974 | 		if scanString(searchString, into: &str) {
     |                                     |- error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
     |                                     `- note: arguments to generic parameter 'Pointee' ('NSString?' and 'String?') are expected to be equal
 975 | 			return str as String?
 976 | 		}
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:986:38: error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
 984 | 		#else
 985 | 		var str: NSString?
 986 | 		if scanCharacters(from: set, into: &str) {
     |                                      |- error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
     |                                      `- note: arguments to generic parameter 'Pointee' ('NSString?' and 'String?') are expected to be equal
 987 | 			return str as String?
 988 | 		}
[102/214] Compiling Models Coding.swift
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:974:37: error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
 972 | 		#else
 973 | 		var str: NSString?
 974 | 		if scanString(searchString, into: &str) {
     |                                     |- error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
     |                                     `- note: arguments to generic parameter 'Pointee' ('NSString?' and 'String?') are expected to be equal
 975 | 			return str as String?
 976 | 		}
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:986:38: error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
 984 | 		#else
 985 | 		var str: NSString?
 986 | 		if scanCharacters(from: set, into: &str) {
     |                                      |- error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
     |                                      `- note: arguments to generic parameter 'Pointee' ('NSString?' and 'String?') are expected to be equal
 987 | 			return str as String?
 988 | 		}
[103/214] Compiling Models Communication.swift
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:974:37: error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
 972 | 		#else
 973 | 		var str: NSString?
 974 | 		if scanString(searchString, into: &str) {
     |                                     |- error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
     |                                     `- note: arguments to generic parameter 'Pointee' ('NSString?' and 'String?') are expected to be equal
 975 | 			return str as String?
 976 | 		}
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:986:38: error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
 984 | 		#else
 985 | 		var str: NSString?
 986 | 		if scanCharacters(from: set, into: &str) {
     |                                      |- error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
     |                                      `- note: arguments to generic parameter 'Pointee' ('NSString?' and 'String?') are expected to be equal
 987 | 			return str as String?
 988 | 		}
[104/214] Compiling Models CommunicationRequest.swift
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:974:37: error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
 972 | 		#else
 973 | 		var str: NSString?
 974 | 		if scanString(searchString, into: &str) {
     |                                     |- error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
     |                                     `- note: arguments to generic parameter 'Pointee' ('NSString?' and 'String?') are expected to be equal
 975 | 			return str as String?
 976 | 		}
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:986:38: error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
 984 | 		#else
 985 | 		var str: NSString?
 986 | 		if scanCharacters(from: set, into: &str) {
     |                                      |- error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
     |                                      `- note: arguments to generic parameter 'Pointee' ('NSString?' and 'String?') are expected to be equal
 987 | 			return str as String?
 988 | 		}
[105/214] Compiling Models CompartmentDefinition.swift
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:974:37: error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
 972 | 		#else
 973 | 		var str: NSString?
 974 | 		if scanString(searchString, into: &str) {
     |                                     |- error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
     |                                     `- note: arguments to generic parameter 'Pointee' ('NSString?' and 'String?') are expected to be equal
 975 | 			return str as String?
 976 | 		}
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:986:38: error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
 984 | 		#else
 985 | 		var str: NSString?
 986 | 		if scanCharacters(from: set, into: &str) {
     |                                      |- error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
     |                                      `- note: arguments to generic parameter 'Pointee' ('NSString?' and 'String?') are expected to be equal
 987 | 			return str as String?
 988 | 		}
[106/214] Compiling Models Composition.swift
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:974:37: error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
 972 | 		#else
 973 | 		var str: NSString?
 974 | 		if scanString(searchString, into: &str) {
     |                                     |- error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
     |                                     `- note: arguments to generic parameter 'Pointee' ('NSString?' and 'String?') are expected to be equal
 975 | 			return str as String?
 976 | 		}
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:986:38: error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
 984 | 		#else
 985 | 		var str: NSString?
 986 | 		if scanCharacters(from: set, into: &str) {
     |                                      |- error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
     |                                      `- note: arguments to generic parameter 'Pointee' ('NSString?' and 'String?') are expected to be equal
 987 | 			return str as String?
 988 | 		}
[107/214] Compiling Models ConceptMap.swift
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:974:37: error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
 972 | 		#else
 973 | 		var str: NSString?
 974 | 		if scanString(searchString, into: &str) {
     |                                     |- error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
     |                                     `- note: arguments to generic parameter 'Pointee' ('NSString?' and 'String?') are expected to be equal
 975 | 			return str as String?
 976 | 		}
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:986:38: error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
 984 | 		#else
 985 | 		var str: NSString?
 986 | 		if scanCharacters(from: set, into: &str) {
     |                                      |- error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
     |                                      `- note: arguments to generic parameter 'Pointee' ('NSString?' and 'String?') are expected to be equal
 987 | 			return str as String?
 988 | 		}
[108/214] Compiling Models Condition.swift
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:974:37: error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
 972 | 		#else
 973 | 		var str: NSString?
 974 | 		if scanString(searchString, into: &str) {
     |                                     |- error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
     |                                     `- note: arguments to generic parameter 'Pointee' ('NSString?' and 'String?') are expected to be equal
 975 | 			return str as String?
 976 | 		}
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:986:38: error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
 984 | 		#else
 985 | 		var str: NSString?
 986 | 		if scanCharacters(from: set, into: &str) {
     |                                      |- error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
     |                                      `- note: arguments to generic parameter 'Pointee' ('NSString?' and 'String?') are expected to be equal
 987 | 			return str as String?
 988 | 		}
[109/214] Compiling Models Consent.swift
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:974:37: error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
 972 | 		#else
 973 | 		var str: NSString?
 974 | 		if scanString(searchString, into: &str) {
     |                                     |- error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
     |                                     `- note: arguments to generic parameter 'Pointee' ('NSString?' and 'String?') are expected to be equal
 975 | 			return str as String?
 976 | 		}
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:986:38: error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
 984 | 		#else
 985 | 		var str: NSString?
 986 | 		if scanCharacters(from: set, into: &str) {
     |                                      |- error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
     |                                      `- note: arguments to generic parameter 'Pointee' ('NSString?' and 'String?') are expected to be equal
 987 | 			return str as String?
 988 | 		}
[110/214] Compiling Models ContactDetail.swift
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:974:37: error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
 972 | 		#else
 973 | 		var str: NSString?
 974 | 		if scanString(searchString, into: &str) {
     |                                     |- error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
     |                                     `- note: arguments to generic parameter 'Pointee' ('NSString?' and 'String?') are expected to be equal
 975 | 			return str as String?
 976 | 		}
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:986:38: error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
 984 | 		#else
 985 | 		var str: NSString?
 986 | 		if scanCharacters(from: set, into: &str) {
     |                                      |- error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
     |                                      `- note: arguments to generic parameter 'Pointee' ('NSString?' and 'String?') are expected to be equal
 987 | 			return str as String?
 988 | 		}
[111/214] Compiling Models ContactPoint.swift
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:974:37: error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
 972 | 		#else
 973 | 		var str: NSString?
 974 | 		if scanString(searchString, into: &str) {
     |                                     |- error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
     |                                     `- note: arguments to generic parameter 'Pointee' ('NSString?' and 'String?') are expected to be equal
 975 | 			return str as String?
 976 | 		}
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:986:38: error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
 984 | 		#else
 985 | 		var str: NSString?
 986 | 		if scanCharacters(from: set, into: &str) {
     |                                      |- error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
     |                                      `- note: arguments to generic parameter 'Pointee' ('NSString?' and 'String?') are expected to be equal
 987 | 			return str as String?
 988 | 		}
[112/214] Compiling Models Contract.swift
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:974:37: error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
 972 | 		#else
 973 | 		var str: NSString?
 974 | 		if scanString(searchString, into: &str) {
     |                                     |- error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
     |                                     `- note: arguments to generic parameter 'Pointee' ('NSString?' and 'String?') are expected to be equal
 975 | 			return str as String?
 976 | 		}
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:986:38: error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
 984 | 		#else
 985 | 		var str: NSString?
 986 | 		if scanCharacters(from: set, into: &str) {
     |                                      |- error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
     |                                      `- note: arguments to generic parameter 'Pointee' ('NSString?' and 'String?') are expected to be equal
 987 | 			return str as String?
 988 | 		}
[113/214] Compiling Models Contributor.swift
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:974:37: error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
 972 | 		#else
 973 | 		var str: NSString?
 974 | 		if scanString(searchString, into: &str) {
     |                                     |- error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
     |                                     `- note: arguments to generic parameter 'Pointee' ('NSString?' and 'String?') are expected to be equal
 975 | 			return str as String?
 976 | 		}
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:986:38: error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
 984 | 		#else
 985 | 		var str: NSString?
 986 | 		if scanCharacters(from: set, into: &str) {
     |                                      |- error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
     |                                      `- note: arguments to generic parameter 'Pointee' ('NSString?' and 'String?') are expected to be equal
 987 | 			return str as String?
 988 | 		}
[114/214] Compiling Models Count.swift
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:974:37: error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
 972 | 		#else
 973 | 		var str: NSString?
 974 | 		if scanString(searchString, into: &str) {
     |                                     |- error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
     |                                     `- note: arguments to generic parameter 'Pointee' ('NSString?' and 'String?') are expected to be equal
 975 | 			return str as String?
 976 | 		}
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:986:38: error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
 984 | 		#else
 985 | 		var str: NSString?
 986 | 		if scanCharacters(from: set, into: &str) {
     |                                      |- error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
     |                                      `- note: arguments to generic parameter 'Pointee' ('NSString?' and 'String?') are expected to be equal
 987 | 			return str as String?
 988 | 		}
[115/214] Compiling Models Coverage.swift
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:974:37: error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
 972 | 		#else
 973 | 		var str: NSString?
 974 | 		if scanString(searchString, into: &str) {
     |                                     |- error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
     |                                     `- note: arguments to generic parameter 'Pointee' ('NSString?' and 'String?') are expected to be equal
 975 | 			return str as String?
 976 | 		}
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:986:38: error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
 984 | 		#else
 985 | 		var str: NSString?
 986 | 		if scanCharacters(from: set, into: &str) {
     |                                      |- error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
     |                                      `- note: arguments to generic parameter 'Pointee' ('NSString?' and 'String?') are expected to be equal
 987 | 			return str as String?
 988 | 		}
[116/214] Compiling Models CoverageEligibilityRequest.swift
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:974:37: error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
 972 | 		#else
 973 | 		var str: NSString?
 974 | 		if scanString(searchString, into: &str) {
     |                                     |- error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
     |                                     `- note: arguments to generic parameter 'Pointee' ('NSString?' and 'String?') are expected to be equal
 975 | 			return str as String?
 976 | 		}
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:986:38: error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
 984 | 		#else
 985 | 		var str: NSString?
 986 | 		if scanCharacters(from: set, into: &str) {
     |                                      |- error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
     |                                      `- note: arguments to generic parameter 'Pointee' ('NSString?' and 'String?') are expected to be equal
 987 | 			return str as String?
 988 | 		}
[117/214] Compiling Models CoverageEligibilityResponse.swift
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:974:37: error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
 972 | 		#else
 973 | 		var str: NSString?
 974 | 		if scanString(searchString, into: &str) {
     |                                     |- error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
     |                                     `- note: arguments to generic parameter 'Pointee' ('NSString?' and 'String?') are expected to be equal
 975 | 			return str as String?
 976 | 		}
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:986:38: error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
 984 | 		#else
 985 | 		var str: NSString?
 986 | 		if scanCharacters(from: set, into: &str) {
     |                                      |- error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
     |                                      `- note: arguments to generic parameter 'Pointee' ('NSString?' and 'String?') are expected to be equal
 987 | 			return str as String?
 988 | 		}
[118/214] Compiling Models DataRequirement.swift
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:974:37: error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
 972 | 		#else
 973 | 		var str: NSString?
 974 | 		if scanString(searchString, into: &str) {
     |                                     |- error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
     |                                     `- note: arguments to generic parameter 'Pointee' ('NSString?' and 'String?') are expected to be equal
 975 | 			return str as String?
 976 | 		}
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:986:38: error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
 984 | 		#else
 985 | 		var str: NSString?
 986 | 		if scanCharacters(from: set, into: &str) {
     |                                      |- error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
     |                                      `- note: arguments to generic parameter 'Pointee' ('NSString?' and 'String?') are expected to be equal
 987 | 			return str as String?
 988 | 		}
[119/214] Compiling Models DateAndTime.swift
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:974:37: error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
 972 | 		#else
 973 | 		var str: NSString?
 974 | 		if scanString(searchString, into: &str) {
     |                                     |- error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
     |                                     `- note: arguments to generic parameter 'Pointee' ('NSString?' and 'String?') are expected to be equal
 975 | 			return str as String?
 976 | 		}
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:986:38: error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
 984 | 		#else
 985 | 		var str: NSString?
 986 | 		if scanCharacters(from: set, into: &str) {
     |                                      |- error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
     |                                      `- note: arguments to generic parameter 'Pointee' ('NSString?' and 'String?') are expected to be equal
 987 | 			return str as String?
 988 | 		}
error: emit-module command failed with exit code 1 (use -v to see invocation)
[120/214] Compiling Models Account.swift
[121/214] Compiling Models ActivityDefinition.swift
[122/214] Compiling Models Address.swift
[123/214] Compiling Models AdverseEvent.swift
[124/214] Compiling Models Age.swift
[125/214] Compiling Models AllergyIntolerance.swift
[126/214] Compiling Models Annotation.swift
[127/214] Compiling Models Appointment.swift
[128/214] Compiling Models AppointmentResponse.swift
[129/214] Compiling Models Attachment.swift
[130/214] Compiling Models AuditEvent.swift
[131/214] Compiling Models BackboneElement.swift
[132/214] Compiling Models Base64Binary.swift
[133/214] Compiling Models Basic.swift
[134/214] Compiling Models Binary.swift
[135/214] Compiling Models BiologicallyDerivedProduct.swift
[136/214] Compiling Models BodyStructure.swift
[137/214] Compiling Models Bundle.swift
[138/214] Compiling Models CapabilityStatement.swift
[139/214] Compiling Models CarePlan.swift
[140/214] Compiling Models CareTeam.swift
[141/214] Compiling Models CatalogEntry.swift
[142/214] Compiling Models ChargeItem.swift
[143/214] Compiling Models ChargeItemDefinition.swift
[144/214] Emitting module Models
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:26:37: error: cannot find type 'URLRequest' in scope
 24 | 	Prepare a given mutable URL request with the respective method and body values.
 25 | 	*/
 26 | 	public func prepare(request: inout URLRequest, body: Data? = nil) {
    |                                     `- error: cannot find type 'URLRequest' in scope
 27 | 		request.httpMethod = rawValue
 28 |
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:81:37: error: cannot find type 'URLRequest' in scope
 79 | 	Prepare a given mutable URL request with the receiver's values.
 80 | 	*/
 81 | 	public func prepare(request: inout URLRequest) {
    |                                     `- error: cannot find type 'URLRequest' in scope
 82 | 		headers.forEach {
 83 | 			request.setValue($1, forHTTPHeaderField: $0.rawValue)
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:131:37: error: cannot find type 'URLRequest' in scope
129 | 	Prepare a given mutable URL request with the receiver's parameters.
130 | 	*/
131 | 	public func prepare(request: inout URLRequest) {
    |                                     `- error: cannot find type 'URLRequest' in scope
132 | 		guard parameters.count > 0 else {
133 | 			return
/host/spi-builder-workspace/Sources/Models/FHIRRequestHandler.swift:59:30: error: cannot find type 'URLRequest' in scope
57 | 	- parameter request: The request to decorate
58 | 	*/
59 | 	func prepare(request: inout URLRequest) throws
   |                              `- error: cannot find type 'URLRequest' in scope
60 |
61 |
/host/spi-builder-workspace/Sources/Models/FHIRRequestHandler.swift:72:26: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
70 | 	- returns:            An appropriately configured `FHIRServerResponse` instance
71 | 	*/
72 | 	func response(response: URLResponse?, data: Data?, error: Error?) -> FHIRServerResponse
   |                          `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
73 |
74 | 	/**
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
  |                  `- note: 'URLResponse' has been explicitly marked unavailable here
[145/214] Compiling Models DetectedIssue.swift
[146/214] Compiling Models Device.swift
[147/214] Compiling Models DeviceDefinition.swift
[148/214] Compiling Models DeviceMetric.swift
[149/214] Compiling Models DeviceRequest.swift
[150/214] Compiling Models DeviceUseStatement.swift
[151/214] Compiling Models DiagnosticReport.swift
[152/214] Compiling Models Distance.swift
[153/214] Compiling Models DocumentManifest.swift
[154/214] Compiling Models DocumentReference.swift
[155/214] Compiling Models DomainResource.swift
[156/214] Compiling Models Dosage.swift
[157/214] Compiling Models Duration.swift
[158/214] Compiling Models EffectEvidenceSynthesis.swift
[159/214] Compiling Models Element.swift
[160/214] Compiling Models ElementDefinition.swift
[161/214] Compiling Models Encounter.swift
[162/214] Compiling Models Endpoint.swift
[163/214] Compiling Models EnrollmentRequest.swift
[164/214] Compiling Models EnrollmentResponse.swift
[165/214] Compiling Models EpisodeOfCare.swift
[166/214] Compiling Models EventDefinition.swift
[167/214] Compiling Models Evidence.swift
[168/214] Compiling Models EvidenceVariable.swift
[169/214] Compiling Models QuestionnaireResponse.swift
[170/214] Compiling Models Range.swift
[171/214] Compiling Models Ratio.swift
[172/214] Compiling Models Reference.swift
[173/214] Compiling Models RelatedArtifact.swift
[174/214] Compiling Models RelatedPerson.swift
[175/214] Compiling Models RequestGroup.swift
[176/214] Compiling Models ResearchDefinition.swift
[177/214] Compiling Models ResearchElementDefinition.swift
[178/214] Compiling Models ResearchStudy.swift
[179/214] Compiling Models ResearchSubject.swift
[180/214] Compiling Models Resource+Meta.swift
[181/214] Compiling Models Resource.swift
[182/214] Compiling Models RiskAssessment.swift
[183/214] Compiling Models RiskEvidenceSynthesis.swift
[184/214] Compiling Models SampledData.swift
[185/214] Compiling Models Schedule.swift
[186/214] Compiling Models SearchParameter.swift
[187/214] Compiling Models ServiceRequest.swift
[188/214] Compiling Models Signature.swift
[189/214] Compiling Models Slot.swift
[190/214] Compiling Models Specimen.swift
[191/214] Compiling Models SpecimenDefinition.swift
[192/214] Compiling Models StructureDefinition.swift
[193/214] Compiling Models StructureMap.swift
[194/214] Compiling Models Subscription.swift
[195/214] Compiling Models Substance.swift
[196/214] Compiling Models SubstanceAmount.swift
[197/214] Compiling Models SubstanceNucleicAcid.swift
[198/214] Compiling Models SubstancePolymer.swift
[199/214] Compiling Models SubstanceProtein.swift
[200/214] Compiling Models SubstanceReferenceInformation.swift
[201/214] Compiling Models SubstanceSourceMaterial.swift
[202/214] Compiling Models SubstanceSpecification.swift
[203/214] Compiling Models SupplyDelivery.swift
[204/214] Compiling Models SupplyRequest.swift
[205/214] Compiling Models Task.swift
[206/214] Compiling Models TerminologyCapabilities.swift
[207/214] Compiling Models TestReport.swift
[208/214] Compiling Models TestScript.swift
[209/214] Compiling Models Timing.swift
[210/214] Compiling Models TriggerDefinition.swift
[211/214] Compiling Models UsageContext.swift
[212/214] Compiling Models ValueSet.swift
[213/214] Compiling Models VerificationResult.swift
[214/214] Compiling Models VisionPrescription.swift
BUILD FAILURE 6.1 android