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 HealthKitToFhir, reference 1.0.3 (3193ec), with Swift 6.2 (beta) for Android on 18 Jun 2025 21:57:04 UTC.

Build Command

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

Build Log

========================================
RunAll
========================================
Builder version: 4.64.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/microsoft/healthkit-to-fhir.git
Reference: 1.0.3
Initialized empty Git repository in /host/spi-builder-workspace/.git/
hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: 	git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint: 	git branch -m <name>
From https://github.com/microsoft/healthkit-to-fhir
 * tag               1.0.3      -> FETCH_HEAD
HEAD is now at 3193ec9 Fixed issue with OS Version (#6)
Cloned https://github.com/microsoft/healthkit-to-fhir.git
Revision (git rev-parse @):
3193ec9772d21a0e7df3a917b8a7ed1d541ea20f
SUCCESS checkout https://github.com/microsoft/healthkit-to-fhir.git at 1.0.3
========================================
Build
========================================
Selected platform:         android
Swift version:             6.2
Building package at path:  $PWD
https://github.com/microsoft/healthkit-to-fhir.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-2":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:android-6.2-latest swift build --swift-sdk aarch64-unknown-linux-android28 2>&1
android-6.2-latest: Pulling from finestructure/spi-images
Digest: sha256:b7c4a6b4153ff40ef9277e2157e708f835b8eb011095d53bd8db4594eb2b7798
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:android-6.2-latest
Fetching https://github.com/smart-on-fhir/Swift-FHIR
[1/18089] Fetching swift-fhir
Fetched https://github.com/smart-on-fhir/Swift-FHIR from cache (2.93s)
Computing version for https://github.com/smart-on-fhir/Swift-FHIR
Computed https://github.com/smart-on-fhir/Swift-FHIR at 4.2.1 (3.80s)
Creating working copy for https://github.com/smart-on-fhir/Swift-FHIR
Working copy of https://github.com/smart-on-fhir/Swift-FHIR resolved at 4.2.1
Building for debugging...
[0/5] Write sources
[4/5] Write swift-version-8C5A4AE7A8CE2BA.txt
error: emit-module command failed with exit code 1 (use -v to see invocation)
[6/172] Compiling Models Account.swift
[7/172] Compiling Models ActivityDefinition.swift
[8/172] Compiling Models Address.swift
[9/172] Compiling Models AdverseEvent.swift
[10/172] Compiling Models Age.swift
[11/172] Compiling Models AllergyIntolerance.swift
[12/172] Compiling Models Annotation.swift
[13/172] Compiling Models Appointment.swift
[14/172] Compiling Models AppointmentResponse.swift
[15/172] Compiling Models Attachment.swift
[16/172] Compiling Models AuditEvent.swift
[17/172] Compiling Models BackboneElement.swift
[18/172] Compiling Models Base64Binary.swift
[19/172] Compiling Models Basic.swift
[20/172] Compiling Models Binary.swift
[21/172] Compiling Models BiologicallyDerivedProduct.swift
[22/172] Compiling Models BodyStructure.swift
[23/172] Compiling Models Bundle.swift
[24/172] Compiling Models CapabilityStatement.swift
[25/172] Compiling Models CarePlan.swift
[26/172] Compiling Models CareTeam.swift
[27/172] Compiling Models CatalogEntry.swift
[28/172] Compiling Models ChargeItem.swift
[29/172] Compiling Models ChargeItemDefinition.swift
[30/172] Emitting module Models
/host/spi-builder-workspace/.build/checkouts/Swift-FHIR/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/.build/checkouts/Swift-FHIR/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/.build/checkouts/Swift-FHIR/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/.build/checkouts/Swift-FHIR/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/.build/checkouts/Swift-FHIR/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
[31/218] Compiling Models MedicationDispense.swift
[32/218] Compiling Models MedicationKnowledge.swift
[33/218] Compiling Models MedicationRequest.swift
[34/218] Compiling Models MedicationStatement.swift
[35/218] Compiling Models MedicinalProduct.swift
[36/218] Compiling Models MedicinalProductAuthorization.swift
[37/218] Compiling Models MedicinalProductContraindication.swift
[38/218] Compiling Models MedicinalProductIndication.swift
[39/218] Compiling Models MedicinalProductIngredient.swift
[40/218] Compiling Models MedicinalProductInteraction.swift
[41/218] Compiling Models MedicinalProductManufactured.swift
[42/218] Compiling Models MedicinalProductPackaged.swift
[43/218] Compiling Models MedicinalProductPharmaceutical.swift
[44/218] Compiling Models MedicinalProductUndesirableEffect.swift
[45/218] Compiling Models MessageDefinition.swift
[46/218] Compiling Models MessageHeader.swift
[47/218] Compiling Models Meta.swift
[48/218] Compiling Models MetadataResource.swift
[49/218] Compiling Models MolecularSequence.swift
[50/218] Compiling Models Money.swift
[51/218] Compiling Models NamingSystem.swift
[52/218] Compiling Models Narrative.swift
[53/218] Compiling Models NutritionOrder.swift
[54/218] Compiling Models Observation.swift
[55/218] Compiling Models ObservationDefinition.swift
[56/218] Compiling Models OperationDefinition.swift
[57/218] Compiling Models OperationOutcome.swift
[58/218] Compiling Models Organization.swift
[59/218] Compiling Models OrganizationAffiliation.swift
[60/218] Compiling Models ParameterDefinition.swift
[61/218] Compiling Models Parameters.swift
[62/218] Compiling Models Patient.swift
[63/218] Compiling Models PaymentNotice.swift
[64/218] Compiling Models PaymentReconciliation.swift
[65/218] Compiling Models Period.swift
[66/218] Compiling Models Person.swift
[67/218] Compiling Models PlanDefinition.swift
[68/218] Compiling Models Population.swift
[69/218] Compiling Models Practitioner.swift
[70/218] Compiling Models PractitionerRole.swift
[71/218] Compiling Models Procedure.swift
[72/218] Compiling Models ProdCharacteristic.swift
[73/218] Compiling Models ProductShelfLife.swift
[74/218] Compiling Models Provenance.swift
[75/218] Compiling Models Quantity.swift
[76/218] Compiling Models Questionnaire.swift
[77/218] Compiling Models Goal.swift
[78/218] Compiling Models GraphDefinition.swift
[79/218] Compiling Models Group.swift
[80/218] Compiling Models GuidanceResponse.swift
[81/218] Compiling Models HealthcareService.swift
[82/218] Compiling Models HumanName.swift
[83/218] Compiling Models Identifier.swift
[84/218] Compiling Models ImagingStudy.swift
[85/218] Compiling Models Immunization.swift
[86/218] Compiling Models ImmunizationEvaluation.swift
[87/218] Compiling Models ImmunizationRecommendation.swift
[88/218] Compiling Models ImplementationGuide.swift
[89/218] Compiling Models InsurancePlan.swift
[90/218] Compiling Models Invoice.swift
[91/218] Compiling Models Library.swift
[92/218] Compiling Models Linkage.swift
[93/218] Compiling Models List.swift
[94/218] Compiling Models Location.swift
[95/218] Compiling Models MarketingStatus.swift
[96/218] Compiling Models Measure.swift
[97/218] Compiling Models MeasureReport.swift
[98/218] Compiling Models Media.swift
[99/218] Compiling Models Medication.swift
[100/218] Compiling Models MedicationAdministration.swift
[101/218] Compiling Models ExampleScenario.swift
/host/spi-builder-workspace/.build/checkouts/Swift-FHIR/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/.build/checkouts/Swift-FHIR/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/.build/checkouts/Swift-FHIR/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/.build/checkouts/Swift-FHIR/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/.build/checkouts/Swift-FHIR/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
[102/218] Compiling Models ExplanationOfBenefit.swift
/host/spi-builder-workspace/.build/checkouts/Swift-FHIR/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/.build/checkouts/Swift-FHIR/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/.build/checkouts/Swift-FHIR/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/.build/checkouts/Swift-FHIR/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/.build/checkouts/Swift-FHIR/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
[103/218] Compiling Models Expression.swift
/host/spi-builder-workspace/.build/checkouts/Swift-FHIR/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/.build/checkouts/Swift-FHIR/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/.build/checkouts/Swift-FHIR/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/.build/checkouts/Swift-FHIR/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/.build/checkouts/Swift-FHIR/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
[104/218] Compiling Models Extension.swift
/host/spi-builder-workspace/.build/checkouts/Swift-FHIR/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/.build/checkouts/Swift-FHIR/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/.build/checkouts/Swift-FHIR/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/.build/checkouts/Swift-FHIR/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/.build/checkouts/Swift-FHIR/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
[105/218] Compiling Models FHIRAbstractBase+Factory.swift
/host/spi-builder-workspace/.build/checkouts/Swift-FHIR/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/.build/checkouts/Swift-FHIR/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/.build/checkouts/Swift-FHIR/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/.build/checkouts/Swift-FHIR/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/.build/checkouts/Swift-FHIR/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
[106/218] Compiling Models FHIRAbstractBase.swift
/host/spi-builder-workspace/.build/checkouts/Swift-FHIR/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/.build/checkouts/Swift-FHIR/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/.build/checkouts/Swift-FHIR/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/.build/checkouts/Swift-FHIR/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/.build/checkouts/Swift-FHIR/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
[107/218] Compiling Models FHIRAbstractResource.swift
/host/spi-builder-workspace/.build/checkouts/Swift-FHIR/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/.build/checkouts/Swift-FHIR/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/.build/checkouts/Swift-FHIR/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/.build/checkouts/Swift-FHIR/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/.build/checkouts/Swift-FHIR/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
[108/218] Compiling Models FHIRBool.swift
/host/spi-builder-workspace/.build/checkouts/Swift-FHIR/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/.build/checkouts/Swift-FHIR/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/.build/checkouts/Swift-FHIR/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/.build/checkouts/Swift-FHIR/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/.build/checkouts/Swift-FHIR/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
[109/218] Compiling Models FHIRCanonical.swift
/host/spi-builder-workspace/.build/checkouts/Swift-FHIR/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/.build/checkouts/Swift-FHIR/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/.build/checkouts/Swift-FHIR/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/.build/checkouts/Swift-FHIR/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/.build/checkouts/Swift-FHIR/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
[110/218] Compiling Models FHIRDecimal.swift
/host/spi-builder-workspace/.build/checkouts/Swift-FHIR/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/.build/checkouts/Swift-FHIR/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/.build/checkouts/Swift-FHIR/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/.build/checkouts/Swift-FHIR/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/.build/checkouts/Swift-FHIR/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
[111/218] Compiling Models FHIREnum.swift
/host/spi-builder-workspace/.build/checkouts/Swift-FHIR/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/.build/checkouts/Swift-FHIR/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/.build/checkouts/Swift-FHIR/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/.build/checkouts/Swift-FHIR/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/.build/checkouts/Swift-FHIR/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
[112/218] Compiling Models FHIRError.swift
/host/spi-builder-workspace/.build/checkouts/Swift-FHIR/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/.build/checkouts/Swift-FHIR/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/.build/checkouts/Swift-FHIR/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/.build/checkouts/Swift-FHIR/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/.build/checkouts/Swift-FHIR/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
[113/218] Compiling Models FHIRInteger.swift
/host/spi-builder-workspace/.build/checkouts/Swift-FHIR/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/.build/checkouts/Swift-FHIR/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/.build/checkouts/Swift-FHIR/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/.build/checkouts/Swift-FHIR/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/.build/checkouts/Swift-FHIR/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
[114/218] Compiling Models FHIRPrimitive.swift
/host/spi-builder-workspace/.build/checkouts/Swift-FHIR/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/.build/checkouts/Swift-FHIR/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/.build/checkouts/Swift-FHIR/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/.build/checkouts/Swift-FHIR/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/.build/checkouts/Swift-FHIR/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
[115/218] Compiling Models FHIRRequest.swift
/host/spi-builder-workspace/.build/checkouts/Swift-FHIR/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/.build/checkouts/Swift-FHIR/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/.build/checkouts/Swift-FHIR/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/.build/checkouts/Swift-FHIR/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/.build/checkouts/Swift-FHIR/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
[116/218] Compiling Models FHIRRequestHandler.swift
/host/spi-builder-workspace/.build/checkouts/Swift-FHIR/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/.build/checkouts/Swift-FHIR/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/.build/checkouts/Swift-FHIR/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/.build/checkouts/Swift-FHIR/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/.build/checkouts/Swift-FHIR/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
[117/218] Compiling Models FHIRServer.swift
/host/spi-builder-workspace/.build/checkouts/Swift-FHIR/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/.build/checkouts/Swift-FHIR/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/.build/checkouts/Swift-FHIR/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/.build/checkouts/Swift-FHIR/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/.build/checkouts/Swift-FHIR/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
[118/218] Compiling Models FHIRServerResponse.swift
/host/spi-builder-workspace/.build/checkouts/Swift-FHIR/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/.build/checkouts/Swift-FHIR/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/.build/checkouts/Swift-FHIR/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/.build/checkouts/Swift-FHIR/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/.build/checkouts/Swift-FHIR/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
[119/218] Compiling Models FHIRString.swift
/host/spi-builder-workspace/.build/checkouts/Swift-FHIR/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/.build/checkouts/Swift-FHIR/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/.build/checkouts/Swift-FHIR/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/.build/checkouts/Swift-FHIR/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/.build/checkouts/Swift-FHIR/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
[120/218] Compiling Models FHIRType.swift
/host/spi-builder-workspace/.build/checkouts/Swift-FHIR/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/.build/checkouts/Swift-FHIR/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/.build/checkouts/Swift-FHIR/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/.build/checkouts/Swift-FHIR/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/.build/checkouts/Swift-FHIR/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
[121/218] Compiling Models FHIRURL.swift
/host/spi-builder-workspace/.build/checkouts/Swift-FHIR/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/.build/checkouts/Swift-FHIR/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/.build/checkouts/Swift-FHIR/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/.build/checkouts/Swift-FHIR/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/.build/checkouts/Swift-FHIR/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
[122/218] Compiling Models FHIRValidationError.swift
/host/spi-builder-workspace/.build/checkouts/Swift-FHIR/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/.build/checkouts/Swift-FHIR/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/.build/checkouts/Swift-FHIR/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/.build/checkouts/Swift-FHIR/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/.build/checkouts/Swift-FHIR/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
[123/218] Compiling Models FamilyMemberHistory.swift
/host/spi-builder-workspace/.build/checkouts/Swift-FHIR/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/.build/checkouts/Swift-FHIR/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/.build/checkouts/Swift-FHIR/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/.build/checkouts/Swift-FHIR/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/.build/checkouts/Swift-FHIR/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
[124/218] Compiling Models Flag.swift
/host/spi-builder-workspace/.build/checkouts/Swift-FHIR/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/.build/checkouts/Swift-FHIR/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/.build/checkouts/Swift-FHIR/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/.build/checkouts/Swift-FHIR/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/.build/checkouts/Swift-FHIR/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
[125/218] Compiling Models DetectedIssue.swift
[126/218] Compiling Models Device.swift
[127/218] Compiling Models DeviceDefinition.swift
[128/218] Compiling Models DeviceMetric.swift
[129/218] Compiling Models DeviceRequest.swift
[130/218] Compiling Models DeviceUseStatement.swift
[131/218] Compiling Models DiagnosticReport.swift
[132/218] Compiling Models Distance.swift
[133/218] Compiling Models DocumentManifest.swift
[134/218] Compiling Models DocumentReference.swift
[135/218] Compiling Models DomainResource.swift
[136/218] Compiling Models Dosage.swift
[137/218] Compiling Models Duration.swift
[138/218] Compiling Models EffectEvidenceSynthesis.swift
[139/218] Compiling Models Element.swift
[140/218] Compiling Models ElementDefinition.swift
[141/218] Compiling Models Encounter.swift
[142/218] Compiling Models Endpoint.swift
[143/218] Compiling Models EnrollmentRequest.swift
[144/218] Compiling Models EnrollmentResponse.swift
[145/218] Compiling Models EpisodeOfCare.swift
[146/218] Compiling Models EventDefinition.swift
[147/218] Compiling Models Evidence.swift
[148/218] Compiling Models EvidenceVariable.swift
[149/218] Compiling Models Claim.swift
/host/spi-builder-workspace/.build/checkouts/Swift-FHIR/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/.build/checkouts/Swift-FHIR/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 | 		}
[150/218] Compiling Models ClaimResponse.swift
/host/spi-builder-workspace/.build/checkouts/Swift-FHIR/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/.build/checkouts/Swift-FHIR/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 | 		}
[151/218] Compiling Models ClinicalImpression.swift
/host/spi-builder-workspace/.build/checkouts/Swift-FHIR/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/.build/checkouts/Swift-FHIR/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 | 		}
[152/218] Compiling Models CodeSystem.swift
/host/spi-builder-workspace/.build/checkouts/Swift-FHIR/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/.build/checkouts/Swift-FHIR/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 | 		}
[153/218] Compiling Models CodeSystems.swift
/host/spi-builder-workspace/.build/checkouts/Swift-FHIR/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/.build/checkouts/Swift-FHIR/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 | 		}
[154/218] Compiling Models CodeableConcept.swift
/host/spi-builder-workspace/.build/checkouts/Swift-FHIR/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/.build/checkouts/Swift-FHIR/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 | 		}
[155/218] Compiling Models Coding.swift
/host/spi-builder-workspace/.build/checkouts/Swift-FHIR/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/.build/checkouts/Swift-FHIR/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 | 		}
[156/218] Compiling Models Communication.swift
/host/spi-builder-workspace/.build/checkouts/Swift-FHIR/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/.build/checkouts/Swift-FHIR/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 | 		}
[157/218] Compiling Models CommunicationRequest.swift
/host/spi-builder-workspace/.build/checkouts/Swift-FHIR/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/.build/checkouts/Swift-FHIR/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 | 		}
[158/218] Compiling Models CompartmentDefinition.swift
/host/spi-builder-workspace/.build/checkouts/Swift-FHIR/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/.build/checkouts/Swift-FHIR/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 | 		}
[159/218] Compiling Models Composition.swift
/host/spi-builder-workspace/.build/checkouts/Swift-FHIR/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/.build/checkouts/Swift-FHIR/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 | 		}
[160/218] Compiling Models ConceptMap.swift
/host/spi-builder-workspace/.build/checkouts/Swift-FHIR/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/.build/checkouts/Swift-FHIR/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 | 		}
[161/218] Compiling Models Condition.swift
/host/spi-builder-workspace/.build/checkouts/Swift-FHIR/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/.build/checkouts/Swift-FHIR/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 | 		}
[162/218] Compiling Models Consent.swift
/host/spi-builder-workspace/.build/checkouts/Swift-FHIR/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/.build/checkouts/Swift-FHIR/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 | 		}
[163/218] Compiling Models ContactDetail.swift
/host/spi-builder-workspace/.build/checkouts/Swift-FHIR/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/.build/checkouts/Swift-FHIR/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 | 		}
[164/218] Compiling Models ContactPoint.swift
/host/spi-builder-workspace/.build/checkouts/Swift-FHIR/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/.build/checkouts/Swift-FHIR/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 | 		}
[165/218] Compiling Models Contract.swift
/host/spi-builder-workspace/.build/checkouts/Swift-FHIR/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/.build/checkouts/Swift-FHIR/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 | 		}
[166/218] Compiling Models Contributor.swift
/host/spi-builder-workspace/.build/checkouts/Swift-FHIR/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/.build/checkouts/Swift-FHIR/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 | 		}
[167/218] Compiling Models Count.swift
/host/spi-builder-workspace/.build/checkouts/Swift-FHIR/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/.build/checkouts/Swift-FHIR/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 | 		}
[168/218] Compiling Models Coverage.swift
/host/spi-builder-workspace/.build/checkouts/Swift-FHIR/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/.build/checkouts/Swift-FHIR/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 | 		}
[169/218] Compiling Models CoverageEligibilityRequest.swift
/host/spi-builder-workspace/.build/checkouts/Swift-FHIR/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/.build/checkouts/Swift-FHIR/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 | 		}
[170/218] Compiling Models CoverageEligibilityResponse.swift
/host/spi-builder-workspace/.build/checkouts/Swift-FHIR/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/.build/checkouts/Swift-FHIR/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 | 		}
[171/218] Compiling Models DataRequirement.swift
/host/spi-builder-workspace/.build/checkouts/Swift-FHIR/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/.build/checkouts/Swift-FHIR/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 | 		}
[172/218] Compiling Models DateAndTime.swift
/host/spi-builder-workspace/.build/checkouts/Swift-FHIR/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/.build/checkouts/Swift-FHIR/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 | 		}
[173/218] Compiling Models QuestionnaireResponse.swift
[174/218] Compiling Models Range.swift
[175/218] Compiling Models Ratio.swift
[176/218] Compiling Models Reference.swift
[177/218] Compiling Models RelatedArtifact.swift
[178/218] Compiling Models RelatedPerson.swift
[179/218] Compiling Models RequestGroup.swift
[180/218] Compiling Models ResearchDefinition.swift
[181/218] Compiling Models ResearchElementDefinition.swift
[182/218] Compiling Models ResearchStudy.swift
[183/218] Compiling Models ResearchSubject.swift
[184/218] Compiling Models Resource+Meta.swift
[185/218] Compiling Models Resource.swift
[186/218] Compiling Models RiskAssessment.swift
[187/218] Compiling Models RiskEvidenceSynthesis.swift
[188/218] Compiling Models SampledData.swift
[189/218] Compiling Models Schedule.swift
[190/218] Compiling Models SearchParameter.swift
[191/218] Compiling Models ServiceRequest.swift
[192/218] Compiling Models Signature.swift
[193/218] Compiling Models Slot.swift
[194/218] Compiling Models Specimen.swift
[195/218] Compiling Models SpecimenDefinition.swift
[196/218] Compiling Models StructureDefinition.swift
[197/218] Compiling Models StructureMap.swift
[198/218] Compiling Models Subscription.swift
[199/218] Compiling Models Substance.swift
[200/218] Compiling Models SubstanceAmount.swift
[201/218] Compiling Models SubstanceNucleicAcid.swift
[202/218] Compiling Models SubstancePolymer.swift
[203/218] Compiling Models SubstanceProtein.swift
[204/218] Compiling Models SubstanceReferenceInformation.swift
[205/218] Compiling Models SubstanceSourceMaterial.swift
[206/218] Compiling Models SubstanceSpecification.swift
[207/218] Compiling Models SupplyDelivery.swift
[208/218] Compiling Models SupplyRequest.swift
[209/218] Compiling Models Task.swift
[210/218] Compiling Models TerminologyCapabilities.swift
[211/218] Compiling Models TestReport.swift
[212/218] Compiling Models TestScript.swift
[213/218] Compiling Models Timing.swift
[214/218] Compiling Models TriggerDefinition.swift
[215/218] Compiling Models UsageContext.swift
[216/218] Compiling Models ValueSet.swift
[217/218] Compiling Models VerificationResult.swift
[218/218] Compiling Models VisionPrescription.swift
BUILD FAILURE 6.2 android