Build Information
Failed to build FHIR, reference master (b68fb5
), with Swift 6.2 (beta) for Linux on 18 Jun 2025 10:47:08 UTC.
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4609320-0":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.2-latest swift build --triple x86_64-unknown-linux-gnu 2>&1
Build Log
========================================
RunAll
========================================
Builder version: 4.64.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/smart-on-fhir/Swift-FHIR.git
Reference: master
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/smart-on-fhir/Swift-FHIR
* branch master -> FETCH_HEAD
* [new branch] master -> origin/master
HEAD is now at b68fb5d Fixed issue where only a summary version of the capability statement is fetched (#28)
Submodule path 'fhir-parser': checked out '505e283afaa047dcb2e8fe0860f0427d54033d70'
Submodule 'fhir-parser' (https://github.com/smart-on-fhir/fhir-parser.git) registered for path 'fhir-parser'
Cloning into '/host/spi-builder-workspace/fhir-parser'...
Cloned https://github.com/smart-on-fhir/Swift-FHIR.git
Revision (git rev-parse @):
b68fb5d6c8137de4a06894e683dc1a726a832907
SUCCESS checkout https://github.com/smart-on-fhir/Swift-FHIR.git at master
========================================
Build
========================================
Selected platform: linux
Swift version: 6.2
Building package at path: $PWD
https://github.com/smart-on-fhir/Swift-FHIR.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-0":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.2-latest swift build --triple x86_64-unknown-linux-gnu 2>&1
basic-6.2-latest: Pulling from finestructure/spi-images
Digest: sha256:f81a7bd7aa87a0f81848d48c5bcc03f5f78deebd37fa5f9be9913077205d3687
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.2-latest
Building for debugging...
[0/4] Write sources
[3/4] Write swift-version-24593BA9C3E375BF.txt
[5/171] Compiling Models MedicationDispense.swift
[6/171] Compiling Models MedicationKnowledge.swift
[7/171] Compiling Models MedicationRequest.swift
[8/171] Compiling Models MedicationStatement.swift
[9/171] Compiling Models MedicinalProduct.swift
[10/171] Compiling Models MedicinalProductAuthorization.swift
[11/171] Compiling Models MedicinalProductContraindication.swift
[12/171] Compiling Models MedicinalProductIndication.swift
[13/171] Compiling Models MedicinalProductIngredient.swift
[14/171] Compiling Models MedicinalProductInteraction.swift
[15/171] Compiling Models MedicinalProductManufactured.swift
[16/171] Compiling Models MedicinalProductPackaged.swift
[17/171] Compiling Models MedicinalProductPharmaceutical.swift
[18/171] Compiling Models MedicinalProductUndesirableEffect.swift
[19/171] Compiling Models MessageDefinition.swift
[20/171] Compiling Models MessageHeader.swift
[21/171] Compiling Models Meta.swift
[22/171] Compiling Models MetadataResource.swift
[23/171] Compiling Models MolecularSequence.swift
[24/171] Compiling Models Money.swift
[25/171] Compiling Models NamingSystem.swift
[26/171] Compiling Models Narrative.swift
[27/171] Compiling Models NutritionOrder.swift
[28/194] Compiling Models Observation.swift
[29/194] Compiling Models ObservationDefinition.swift
[30/194] Compiling Models OperationDefinition.swift
[31/194] Compiling Models OperationOutcome.swift
[32/194] Compiling Models Organization.swift
[33/194] Compiling Models OrganizationAffiliation.swift
[34/194] Compiling Models ParameterDefinition.swift
[35/194] Compiling Models Parameters.swift
[36/194] Compiling Models Patient.swift
[37/194] Compiling Models PaymentNotice.swift
[38/194] Compiling Models PaymentReconciliation.swift
[39/194] Compiling Models Period.swift
[40/194] Compiling Models Person.swift
[41/194] Compiling Models PlanDefinition.swift
[42/194] Compiling Models Population.swift
[43/194] Compiling Models Practitioner.swift
[44/194] Compiling Models PractitionerRole.swift
[45/194] Compiling Models Procedure.swift
[46/194] Compiling Models ProdCharacteristic.swift
[47/194] Compiling Models ProductShelfLife.swift
[48/194] Compiling Models Provenance.swift
[49/194] Compiling Models Quantity.swift
[50/194] Compiling Models Questionnaire.swift
[51/194] Compiling Models Claim.swift
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:963:10: error: cannot find 'atEnd' in scope
961 | public var fhir_isAtEnd: Bool {
962 | #if os(Linux)
963 | return atEnd
| `- error: cannot find 'atEnd' in scope
964 | #else
965 | return isAtEnd
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:971:20: error: extraneous argument label 'string:' in call
969 | public func fhir_scanString(_ searchString: String) -> String? {
970 | #if os(Linux)
971 | return scanString(string: searchString)
| `- error: extraneous argument label 'string:' in call
972 | #else
973 | var str: NSString?
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:983:10: warning: 'scanCharactersFromSet' is deprecated: renamed to 'scanCharacters(from:)' [#DeprecatedDeclaration]
981 | public func fhir_scanCharacters(from set: CharacterSet) -> String? {
982 | #if os(Linux)
983 | return scanCharactersFromSet(set)
| |- warning: 'scanCharactersFromSet' is deprecated: renamed to 'scanCharacters(from:)' [#DeprecatedDeclaration]
| `- note: use 'scanCharacters(from:)' instead
984 | #else
985 | var str: NSString?
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:996:14: error: cannot find 'scanInteger' in scope
994 | var int = 0
995 | #if os(Linux)
996 | let flag = scanInteger(&int)
| `- error: cannot find 'scanInteger' in scope
997 | #else
998 | let flag = scanInt(&int)
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[52/194] Compiling Models ClaimResponse.swift
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:963:10: error: cannot find 'atEnd' in scope
961 | public var fhir_isAtEnd: Bool {
962 | #if os(Linux)
963 | return atEnd
| `- error: cannot find 'atEnd' in scope
964 | #else
965 | return isAtEnd
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:971:20: error: extraneous argument label 'string:' in call
969 | public func fhir_scanString(_ searchString: String) -> String? {
970 | #if os(Linux)
971 | return scanString(string: searchString)
| `- error: extraneous argument label 'string:' in call
972 | #else
973 | var str: NSString?
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:983:10: warning: 'scanCharactersFromSet' is deprecated: renamed to 'scanCharacters(from:)' [#DeprecatedDeclaration]
981 | public func fhir_scanCharacters(from set: CharacterSet) -> String? {
982 | #if os(Linux)
983 | return scanCharactersFromSet(set)
| |- warning: 'scanCharactersFromSet' is deprecated: renamed to 'scanCharacters(from:)' [#DeprecatedDeclaration]
| `- note: use 'scanCharacters(from:)' instead
984 | #else
985 | var str: NSString?
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:996:14: error: cannot find 'scanInteger' in scope
994 | var int = 0
995 | #if os(Linux)
996 | let flag = scanInteger(&int)
| `- error: cannot find 'scanInteger' in scope
997 | #else
998 | let flag = scanInt(&int)
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[53/194] Compiling Models ClinicalImpression.swift
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:963:10: error: cannot find 'atEnd' in scope
961 | public var fhir_isAtEnd: Bool {
962 | #if os(Linux)
963 | return atEnd
| `- error: cannot find 'atEnd' in scope
964 | #else
965 | return isAtEnd
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:971:20: error: extraneous argument label 'string:' in call
969 | public func fhir_scanString(_ searchString: String) -> String? {
970 | #if os(Linux)
971 | return scanString(string: searchString)
| `- error: extraneous argument label 'string:' in call
972 | #else
973 | var str: NSString?
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:983:10: warning: 'scanCharactersFromSet' is deprecated: renamed to 'scanCharacters(from:)' [#DeprecatedDeclaration]
981 | public func fhir_scanCharacters(from set: CharacterSet) -> String? {
982 | #if os(Linux)
983 | return scanCharactersFromSet(set)
| |- warning: 'scanCharactersFromSet' is deprecated: renamed to 'scanCharacters(from:)' [#DeprecatedDeclaration]
| `- note: use 'scanCharacters(from:)' instead
984 | #else
985 | var str: NSString?
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:996:14: error: cannot find 'scanInteger' in scope
994 | var int = 0
995 | #if os(Linux)
996 | let flag = scanInteger(&int)
| `- error: cannot find 'scanInteger' in scope
997 | #else
998 | let flag = scanInt(&int)
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[54/194] Compiling Models CodeSystem.swift
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:963:10: error: cannot find 'atEnd' in scope
961 | public var fhir_isAtEnd: Bool {
962 | #if os(Linux)
963 | return atEnd
| `- error: cannot find 'atEnd' in scope
964 | #else
965 | return isAtEnd
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:971:20: error: extraneous argument label 'string:' in call
969 | public func fhir_scanString(_ searchString: String) -> String? {
970 | #if os(Linux)
971 | return scanString(string: searchString)
| `- error: extraneous argument label 'string:' in call
972 | #else
973 | var str: NSString?
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:983:10: warning: 'scanCharactersFromSet' is deprecated: renamed to 'scanCharacters(from:)' [#DeprecatedDeclaration]
981 | public func fhir_scanCharacters(from set: CharacterSet) -> String? {
982 | #if os(Linux)
983 | return scanCharactersFromSet(set)
| |- warning: 'scanCharactersFromSet' is deprecated: renamed to 'scanCharacters(from:)' [#DeprecatedDeclaration]
| `- note: use 'scanCharacters(from:)' instead
984 | #else
985 | var str: NSString?
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:996:14: error: cannot find 'scanInteger' in scope
994 | var int = 0
995 | #if os(Linux)
996 | let flag = scanInteger(&int)
| `- error: cannot find 'scanInteger' in scope
997 | #else
998 | let flag = scanInt(&int)
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[55/194] Compiling Models CodeSystems.swift
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:963:10: error: cannot find 'atEnd' in scope
961 | public var fhir_isAtEnd: Bool {
962 | #if os(Linux)
963 | return atEnd
| `- error: cannot find 'atEnd' in scope
964 | #else
965 | return isAtEnd
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:971:20: error: extraneous argument label 'string:' in call
969 | public func fhir_scanString(_ searchString: String) -> String? {
970 | #if os(Linux)
971 | return scanString(string: searchString)
| `- error: extraneous argument label 'string:' in call
972 | #else
973 | var str: NSString?
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:983:10: warning: 'scanCharactersFromSet' is deprecated: renamed to 'scanCharacters(from:)' [#DeprecatedDeclaration]
981 | public func fhir_scanCharacters(from set: CharacterSet) -> String? {
982 | #if os(Linux)
983 | return scanCharactersFromSet(set)
| |- warning: 'scanCharactersFromSet' is deprecated: renamed to 'scanCharacters(from:)' [#DeprecatedDeclaration]
| `- note: use 'scanCharacters(from:)' instead
984 | #else
985 | var str: NSString?
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:996:14: error: cannot find 'scanInteger' in scope
994 | var int = 0
995 | #if os(Linux)
996 | let flag = scanInteger(&int)
| `- error: cannot find 'scanInteger' in scope
997 | #else
998 | let flag = scanInt(&int)
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[56/194] Compiling Models CodeableConcept.swift
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:963:10: error: cannot find 'atEnd' in scope
961 | public var fhir_isAtEnd: Bool {
962 | #if os(Linux)
963 | return atEnd
| `- error: cannot find 'atEnd' in scope
964 | #else
965 | return isAtEnd
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:971:20: error: extraneous argument label 'string:' in call
969 | public func fhir_scanString(_ searchString: String) -> String? {
970 | #if os(Linux)
971 | return scanString(string: searchString)
| `- error: extraneous argument label 'string:' in call
972 | #else
973 | var str: NSString?
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:983:10: warning: 'scanCharactersFromSet' is deprecated: renamed to 'scanCharacters(from:)' [#DeprecatedDeclaration]
981 | public func fhir_scanCharacters(from set: CharacterSet) -> String? {
982 | #if os(Linux)
983 | return scanCharactersFromSet(set)
| |- warning: 'scanCharactersFromSet' is deprecated: renamed to 'scanCharacters(from:)' [#DeprecatedDeclaration]
| `- note: use 'scanCharacters(from:)' instead
984 | #else
985 | var str: NSString?
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:996:14: error: cannot find 'scanInteger' in scope
994 | var int = 0
995 | #if os(Linux)
996 | let flag = scanInteger(&int)
| `- error: cannot find 'scanInteger' in scope
997 | #else
998 | let flag = scanInt(&int)
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[57/194] Compiling Models Coding.swift
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:963:10: error: cannot find 'atEnd' in scope
961 | public var fhir_isAtEnd: Bool {
962 | #if os(Linux)
963 | return atEnd
| `- error: cannot find 'atEnd' in scope
964 | #else
965 | return isAtEnd
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:971:20: error: extraneous argument label 'string:' in call
969 | public func fhir_scanString(_ searchString: String) -> String? {
970 | #if os(Linux)
971 | return scanString(string: searchString)
| `- error: extraneous argument label 'string:' in call
972 | #else
973 | var str: NSString?
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:983:10: warning: 'scanCharactersFromSet' is deprecated: renamed to 'scanCharacters(from:)' [#DeprecatedDeclaration]
981 | public func fhir_scanCharacters(from set: CharacterSet) -> String? {
982 | #if os(Linux)
983 | return scanCharactersFromSet(set)
| |- warning: 'scanCharactersFromSet' is deprecated: renamed to 'scanCharacters(from:)' [#DeprecatedDeclaration]
| `- note: use 'scanCharacters(from:)' instead
984 | #else
985 | var str: NSString?
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:996:14: error: cannot find 'scanInteger' in scope
994 | var int = 0
995 | #if os(Linux)
996 | let flag = scanInteger(&int)
| `- error: cannot find 'scanInteger' in scope
997 | #else
998 | let flag = scanInt(&int)
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[58/194] Compiling Models Communication.swift
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:963:10: error: cannot find 'atEnd' in scope
961 | public var fhir_isAtEnd: Bool {
962 | #if os(Linux)
963 | return atEnd
| `- error: cannot find 'atEnd' in scope
964 | #else
965 | return isAtEnd
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:971:20: error: extraneous argument label 'string:' in call
969 | public func fhir_scanString(_ searchString: String) -> String? {
970 | #if os(Linux)
971 | return scanString(string: searchString)
| `- error: extraneous argument label 'string:' in call
972 | #else
973 | var str: NSString?
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:983:10: warning: 'scanCharactersFromSet' is deprecated: renamed to 'scanCharacters(from:)' [#DeprecatedDeclaration]
981 | public func fhir_scanCharacters(from set: CharacterSet) -> String? {
982 | #if os(Linux)
983 | return scanCharactersFromSet(set)
| |- warning: 'scanCharactersFromSet' is deprecated: renamed to 'scanCharacters(from:)' [#DeprecatedDeclaration]
| `- note: use 'scanCharacters(from:)' instead
984 | #else
985 | var str: NSString?
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:996:14: error: cannot find 'scanInteger' in scope
994 | var int = 0
995 | #if os(Linux)
996 | let flag = scanInteger(&int)
| `- error: cannot find 'scanInteger' in scope
997 | #else
998 | let flag = scanInt(&int)
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[59/194] Compiling Models CommunicationRequest.swift
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:963:10: error: cannot find 'atEnd' in scope
961 | public var fhir_isAtEnd: Bool {
962 | #if os(Linux)
963 | return atEnd
| `- error: cannot find 'atEnd' in scope
964 | #else
965 | return isAtEnd
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:971:20: error: extraneous argument label 'string:' in call
969 | public func fhir_scanString(_ searchString: String) -> String? {
970 | #if os(Linux)
971 | return scanString(string: searchString)
| `- error: extraneous argument label 'string:' in call
972 | #else
973 | var str: NSString?
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:983:10: warning: 'scanCharactersFromSet' is deprecated: renamed to 'scanCharacters(from:)' [#DeprecatedDeclaration]
981 | public func fhir_scanCharacters(from set: CharacterSet) -> String? {
982 | #if os(Linux)
983 | return scanCharactersFromSet(set)
| |- warning: 'scanCharactersFromSet' is deprecated: renamed to 'scanCharacters(from:)' [#DeprecatedDeclaration]
| `- note: use 'scanCharacters(from:)' instead
984 | #else
985 | var str: NSString?
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:996:14: error: cannot find 'scanInteger' in scope
994 | var int = 0
995 | #if os(Linux)
996 | let flag = scanInteger(&int)
| `- error: cannot find 'scanInteger' in scope
997 | #else
998 | let flag = scanInt(&int)
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[60/194] Compiling Models CompartmentDefinition.swift
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:963:10: error: cannot find 'atEnd' in scope
961 | public var fhir_isAtEnd: Bool {
962 | #if os(Linux)
963 | return atEnd
| `- error: cannot find 'atEnd' in scope
964 | #else
965 | return isAtEnd
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:971:20: error: extraneous argument label 'string:' in call
969 | public func fhir_scanString(_ searchString: String) -> String? {
970 | #if os(Linux)
971 | return scanString(string: searchString)
| `- error: extraneous argument label 'string:' in call
972 | #else
973 | var str: NSString?
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:983:10: warning: 'scanCharactersFromSet' is deprecated: renamed to 'scanCharacters(from:)' [#DeprecatedDeclaration]
981 | public func fhir_scanCharacters(from set: CharacterSet) -> String? {
982 | #if os(Linux)
983 | return scanCharactersFromSet(set)
| |- warning: 'scanCharactersFromSet' is deprecated: renamed to 'scanCharacters(from:)' [#DeprecatedDeclaration]
| `- note: use 'scanCharacters(from:)' instead
984 | #else
985 | var str: NSString?
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:996:14: error: cannot find 'scanInteger' in scope
994 | var int = 0
995 | #if os(Linux)
996 | let flag = scanInteger(&int)
| `- error: cannot find 'scanInteger' in scope
997 | #else
998 | let flag = scanInt(&int)
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[61/194] Compiling Models Composition.swift
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:963:10: error: cannot find 'atEnd' in scope
961 | public var fhir_isAtEnd: Bool {
962 | #if os(Linux)
963 | return atEnd
| `- error: cannot find 'atEnd' in scope
964 | #else
965 | return isAtEnd
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:971:20: error: extraneous argument label 'string:' in call
969 | public func fhir_scanString(_ searchString: String) -> String? {
970 | #if os(Linux)
971 | return scanString(string: searchString)
| `- error: extraneous argument label 'string:' in call
972 | #else
973 | var str: NSString?
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:983:10: warning: 'scanCharactersFromSet' is deprecated: renamed to 'scanCharacters(from:)' [#DeprecatedDeclaration]
981 | public func fhir_scanCharacters(from set: CharacterSet) -> String? {
982 | #if os(Linux)
983 | return scanCharactersFromSet(set)
| |- warning: 'scanCharactersFromSet' is deprecated: renamed to 'scanCharacters(from:)' [#DeprecatedDeclaration]
| `- note: use 'scanCharacters(from:)' instead
984 | #else
985 | var str: NSString?
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:996:14: error: cannot find 'scanInteger' in scope
994 | var int = 0
995 | #if os(Linux)
996 | let flag = scanInteger(&int)
| `- error: cannot find 'scanInteger' in scope
997 | #else
998 | let flag = scanInt(&int)
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[62/194] Compiling Models ConceptMap.swift
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:963:10: error: cannot find 'atEnd' in scope
961 | public var fhir_isAtEnd: Bool {
962 | #if os(Linux)
963 | return atEnd
| `- error: cannot find 'atEnd' in scope
964 | #else
965 | return isAtEnd
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:971:20: error: extraneous argument label 'string:' in call
969 | public func fhir_scanString(_ searchString: String) -> String? {
970 | #if os(Linux)
971 | return scanString(string: searchString)
| `- error: extraneous argument label 'string:' in call
972 | #else
973 | var str: NSString?
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:983:10: warning: 'scanCharactersFromSet' is deprecated: renamed to 'scanCharacters(from:)' [#DeprecatedDeclaration]
981 | public func fhir_scanCharacters(from set: CharacterSet) -> String? {
982 | #if os(Linux)
983 | return scanCharactersFromSet(set)
| |- warning: 'scanCharactersFromSet' is deprecated: renamed to 'scanCharacters(from:)' [#DeprecatedDeclaration]
| `- note: use 'scanCharacters(from:)' instead
984 | #else
985 | var str: NSString?
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:996:14: error: cannot find 'scanInteger' in scope
994 | var int = 0
995 | #if os(Linux)
996 | let flag = scanInteger(&int)
| `- error: cannot find 'scanInteger' in scope
997 | #else
998 | let flag = scanInt(&int)
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[63/194] Compiling Models Condition.swift
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:963:10: error: cannot find 'atEnd' in scope
961 | public var fhir_isAtEnd: Bool {
962 | #if os(Linux)
963 | return atEnd
| `- error: cannot find 'atEnd' in scope
964 | #else
965 | return isAtEnd
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:971:20: error: extraneous argument label 'string:' in call
969 | public func fhir_scanString(_ searchString: String) -> String? {
970 | #if os(Linux)
971 | return scanString(string: searchString)
| `- error: extraneous argument label 'string:' in call
972 | #else
973 | var str: NSString?
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:983:10: warning: 'scanCharactersFromSet' is deprecated: renamed to 'scanCharacters(from:)' [#DeprecatedDeclaration]
981 | public func fhir_scanCharacters(from set: CharacterSet) -> String? {
982 | #if os(Linux)
983 | return scanCharactersFromSet(set)
| |- warning: 'scanCharactersFromSet' is deprecated: renamed to 'scanCharacters(from:)' [#DeprecatedDeclaration]
| `- note: use 'scanCharacters(from:)' instead
984 | #else
985 | var str: NSString?
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:996:14: error: cannot find 'scanInteger' in scope
994 | var int = 0
995 | #if os(Linux)
996 | let flag = scanInteger(&int)
| `- error: cannot find 'scanInteger' in scope
997 | #else
998 | let flag = scanInt(&int)
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[64/194] Compiling Models Consent.swift
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:963:10: error: cannot find 'atEnd' in scope
961 | public var fhir_isAtEnd: Bool {
962 | #if os(Linux)
963 | return atEnd
| `- error: cannot find 'atEnd' in scope
964 | #else
965 | return isAtEnd
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:971:20: error: extraneous argument label 'string:' in call
969 | public func fhir_scanString(_ searchString: String) -> String? {
970 | #if os(Linux)
971 | return scanString(string: searchString)
| `- error: extraneous argument label 'string:' in call
972 | #else
973 | var str: NSString?
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:983:10: warning: 'scanCharactersFromSet' is deprecated: renamed to 'scanCharacters(from:)' [#DeprecatedDeclaration]
981 | public func fhir_scanCharacters(from set: CharacterSet) -> String? {
982 | #if os(Linux)
983 | return scanCharactersFromSet(set)
| |- warning: 'scanCharactersFromSet' is deprecated: renamed to 'scanCharacters(from:)' [#DeprecatedDeclaration]
| `- note: use 'scanCharacters(from:)' instead
984 | #else
985 | var str: NSString?
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:996:14: error: cannot find 'scanInteger' in scope
994 | var int = 0
995 | #if os(Linux)
996 | let flag = scanInteger(&int)
| `- error: cannot find 'scanInteger' in scope
997 | #else
998 | let flag = scanInt(&int)
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[65/194] Compiling Models ContactDetail.swift
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:963:10: error: cannot find 'atEnd' in scope
961 | public var fhir_isAtEnd: Bool {
962 | #if os(Linux)
963 | return atEnd
| `- error: cannot find 'atEnd' in scope
964 | #else
965 | return isAtEnd
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:971:20: error: extraneous argument label 'string:' in call
969 | public func fhir_scanString(_ searchString: String) -> String? {
970 | #if os(Linux)
971 | return scanString(string: searchString)
| `- error: extraneous argument label 'string:' in call
972 | #else
973 | var str: NSString?
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:983:10: warning: 'scanCharactersFromSet' is deprecated: renamed to 'scanCharacters(from:)' [#DeprecatedDeclaration]
981 | public func fhir_scanCharacters(from set: CharacterSet) -> String? {
982 | #if os(Linux)
983 | return scanCharactersFromSet(set)
| |- warning: 'scanCharactersFromSet' is deprecated: renamed to 'scanCharacters(from:)' [#DeprecatedDeclaration]
| `- note: use 'scanCharacters(from:)' instead
984 | #else
985 | var str: NSString?
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:996:14: error: cannot find 'scanInteger' in scope
994 | var int = 0
995 | #if os(Linux)
996 | let flag = scanInteger(&int)
| `- error: cannot find 'scanInteger' in scope
997 | #else
998 | let flag = scanInt(&int)
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[66/194] Compiling Models ContactPoint.swift
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:963:10: error: cannot find 'atEnd' in scope
961 | public var fhir_isAtEnd: Bool {
962 | #if os(Linux)
963 | return atEnd
| `- error: cannot find 'atEnd' in scope
964 | #else
965 | return isAtEnd
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:971:20: error: extraneous argument label 'string:' in call
969 | public func fhir_scanString(_ searchString: String) -> String? {
970 | #if os(Linux)
971 | return scanString(string: searchString)
| `- error: extraneous argument label 'string:' in call
972 | #else
973 | var str: NSString?
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:983:10: warning: 'scanCharactersFromSet' is deprecated: renamed to 'scanCharacters(from:)' [#DeprecatedDeclaration]
981 | public func fhir_scanCharacters(from set: CharacterSet) -> String? {
982 | #if os(Linux)
983 | return scanCharactersFromSet(set)
| |- warning: 'scanCharactersFromSet' is deprecated: renamed to 'scanCharacters(from:)' [#DeprecatedDeclaration]
| `- note: use 'scanCharacters(from:)' instead
984 | #else
985 | var str: NSString?
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:996:14: error: cannot find 'scanInteger' in scope
994 | var int = 0
995 | #if os(Linux)
996 | let flag = scanInteger(&int)
| `- error: cannot find 'scanInteger' in scope
997 | #else
998 | let flag = scanInt(&int)
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[67/194] Compiling Models Contract.swift
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:963:10: error: cannot find 'atEnd' in scope
961 | public var fhir_isAtEnd: Bool {
962 | #if os(Linux)
963 | return atEnd
| `- error: cannot find 'atEnd' in scope
964 | #else
965 | return isAtEnd
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:971:20: error: extraneous argument label 'string:' in call
969 | public func fhir_scanString(_ searchString: String) -> String? {
970 | #if os(Linux)
971 | return scanString(string: searchString)
| `- error: extraneous argument label 'string:' in call
972 | #else
973 | var str: NSString?
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:983:10: warning: 'scanCharactersFromSet' is deprecated: renamed to 'scanCharacters(from:)' [#DeprecatedDeclaration]
981 | public func fhir_scanCharacters(from set: CharacterSet) -> String? {
982 | #if os(Linux)
983 | return scanCharactersFromSet(set)
| |- warning: 'scanCharactersFromSet' is deprecated: renamed to 'scanCharacters(from:)' [#DeprecatedDeclaration]
| `- note: use 'scanCharacters(from:)' instead
984 | #else
985 | var str: NSString?
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:996:14: error: cannot find 'scanInteger' in scope
994 | var int = 0
995 | #if os(Linux)
996 | let flag = scanInteger(&int)
| `- error: cannot find 'scanInteger' in scope
997 | #else
998 | let flag = scanInt(&int)
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[68/194] Compiling Models Contributor.swift
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:963:10: error: cannot find 'atEnd' in scope
961 | public var fhir_isAtEnd: Bool {
962 | #if os(Linux)
963 | return atEnd
| `- error: cannot find 'atEnd' in scope
964 | #else
965 | return isAtEnd
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:971:20: error: extraneous argument label 'string:' in call
969 | public func fhir_scanString(_ searchString: String) -> String? {
970 | #if os(Linux)
971 | return scanString(string: searchString)
| `- error: extraneous argument label 'string:' in call
972 | #else
973 | var str: NSString?
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:983:10: warning: 'scanCharactersFromSet' is deprecated: renamed to 'scanCharacters(from:)' [#DeprecatedDeclaration]
981 | public func fhir_scanCharacters(from set: CharacterSet) -> String? {
982 | #if os(Linux)
983 | return scanCharactersFromSet(set)
| |- warning: 'scanCharactersFromSet' is deprecated: renamed to 'scanCharacters(from:)' [#DeprecatedDeclaration]
| `- note: use 'scanCharacters(from:)' instead
984 | #else
985 | var str: NSString?
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:996:14: error: cannot find 'scanInteger' in scope
994 | var int = 0
995 | #if os(Linux)
996 | let flag = scanInteger(&int)
| `- error: cannot find 'scanInteger' in scope
997 | #else
998 | let flag = scanInt(&int)
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[69/194] Compiling Models Count.swift
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:963:10: error: cannot find 'atEnd' in scope
961 | public var fhir_isAtEnd: Bool {
962 | #if os(Linux)
963 | return atEnd
| `- error: cannot find 'atEnd' in scope
964 | #else
965 | return isAtEnd
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:971:20: error: extraneous argument label 'string:' in call
969 | public func fhir_scanString(_ searchString: String) -> String? {
970 | #if os(Linux)
971 | return scanString(string: searchString)
| `- error: extraneous argument label 'string:' in call
972 | #else
973 | var str: NSString?
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:983:10: warning: 'scanCharactersFromSet' is deprecated: renamed to 'scanCharacters(from:)' [#DeprecatedDeclaration]
981 | public func fhir_scanCharacters(from set: CharacterSet) -> String? {
982 | #if os(Linux)
983 | return scanCharactersFromSet(set)
| |- warning: 'scanCharactersFromSet' is deprecated: renamed to 'scanCharacters(from:)' [#DeprecatedDeclaration]
| `- note: use 'scanCharacters(from:)' instead
984 | #else
985 | var str: NSString?
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:996:14: error: cannot find 'scanInteger' in scope
994 | var int = 0
995 | #if os(Linux)
996 | let flag = scanInteger(&int)
| `- error: cannot find 'scanInteger' in scope
997 | #else
998 | let flag = scanInt(&int)
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[70/194] Compiling Models Coverage.swift
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:963:10: error: cannot find 'atEnd' in scope
961 | public var fhir_isAtEnd: Bool {
962 | #if os(Linux)
963 | return atEnd
| `- error: cannot find 'atEnd' in scope
964 | #else
965 | return isAtEnd
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:971:20: error: extraneous argument label 'string:' in call
969 | public func fhir_scanString(_ searchString: String) -> String? {
970 | #if os(Linux)
971 | return scanString(string: searchString)
| `- error: extraneous argument label 'string:' in call
972 | #else
973 | var str: NSString?
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:983:10: warning: 'scanCharactersFromSet' is deprecated: renamed to 'scanCharacters(from:)' [#DeprecatedDeclaration]
981 | public func fhir_scanCharacters(from set: CharacterSet) -> String? {
982 | #if os(Linux)
983 | return scanCharactersFromSet(set)
| |- warning: 'scanCharactersFromSet' is deprecated: renamed to 'scanCharacters(from:)' [#DeprecatedDeclaration]
| `- note: use 'scanCharacters(from:)' instead
984 | #else
985 | var str: NSString?
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:996:14: error: cannot find 'scanInteger' in scope
994 | var int = 0
995 | #if os(Linux)
996 | let flag = scanInteger(&int)
| `- error: cannot find 'scanInteger' in scope
997 | #else
998 | let flag = scanInt(&int)
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[71/194] Compiling Models CoverageEligibilityRequest.swift
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:963:10: error: cannot find 'atEnd' in scope
961 | public var fhir_isAtEnd: Bool {
962 | #if os(Linux)
963 | return atEnd
| `- error: cannot find 'atEnd' in scope
964 | #else
965 | return isAtEnd
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:971:20: error: extraneous argument label 'string:' in call
969 | public func fhir_scanString(_ searchString: String) -> String? {
970 | #if os(Linux)
971 | return scanString(string: searchString)
| `- error: extraneous argument label 'string:' in call
972 | #else
973 | var str: NSString?
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:983:10: warning: 'scanCharactersFromSet' is deprecated: renamed to 'scanCharacters(from:)' [#DeprecatedDeclaration]
981 | public func fhir_scanCharacters(from set: CharacterSet) -> String? {
982 | #if os(Linux)
983 | return scanCharactersFromSet(set)
| |- warning: 'scanCharactersFromSet' is deprecated: renamed to 'scanCharacters(from:)' [#DeprecatedDeclaration]
| `- note: use 'scanCharacters(from:)' instead
984 | #else
985 | var str: NSString?
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:996:14: error: cannot find 'scanInteger' in scope
994 | var int = 0
995 | #if os(Linux)
996 | let flag = scanInteger(&int)
| `- error: cannot find 'scanInteger' in scope
997 | #else
998 | let flag = scanInt(&int)
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[72/194] Compiling Models CoverageEligibilityResponse.swift
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:963:10: error: cannot find 'atEnd' in scope
961 | public var fhir_isAtEnd: Bool {
962 | #if os(Linux)
963 | return atEnd
| `- error: cannot find 'atEnd' in scope
964 | #else
965 | return isAtEnd
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:971:20: error: extraneous argument label 'string:' in call
969 | public func fhir_scanString(_ searchString: String) -> String? {
970 | #if os(Linux)
971 | return scanString(string: searchString)
| `- error: extraneous argument label 'string:' in call
972 | #else
973 | var str: NSString?
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:983:10: warning: 'scanCharactersFromSet' is deprecated: renamed to 'scanCharacters(from:)' [#DeprecatedDeclaration]
981 | public func fhir_scanCharacters(from set: CharacterSet) -> String? {
982 | #if os(Linux)
983 | return scanCharactersFromSet(set)
| |- warning: 'scanCharactersFromSet' is deprecated: renamed to 'scanCharacters(from:)' [#DeprecatedDeclaration]
| `- note: use 'scanCharacters(from:)' instead
984 | #else
985 | var str: NSString?
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:996:14: error: cannot find 'scanInteger' in scope
994 | var int = 0
995 | #if os(Linux)
996 | let flag = scanInteger(&int)
| `- error: cannot find 'scanInteger' in scope
997 | #else
998 | let flag = scanInt(&int)
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[73/194] Compiling Models DataRequirement.swift
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:963:10: error: cannot find 'atEnd' in scope
961 | public var fhir_isAtEnd: Bool {
962 | #if os(Linux)
963 | return atEnd
| `- error: cannot find 'atEnd' in scope
964 | #else
965 | return isAtEnd
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:971:20: error: extraneous argument label 'string:' in call
969 | public func fhir_scanString(_ searchString: String) -> String? {
970 | #if os(Linux)
971 | return scanString(string: searchString)
| `- error: extraneous argument label 'string:' in call
972 | #else
973 | var str: NSString?
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:983:10: warning: 'scanCharactersFromSet' is deprecated: renamed to 'scanCharacters(from:)' [#DeprecatedDeclaration]
981 | public func fhir_scanCharacters(from set: CharacterSet) -> String? {
982 | #if os(Linux)
983 | return scanCharactersFromSet(set)
| |- warning: 'scanCharactersFromSet' is deprecated: renamed to 'scanCharacters(from:)' [#DeprecatedDeclaration]
| `- note: use 'scanCharacters(from:)' instead
984 | #else
985 | var str: NSString?
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:996:14: error: cannot find 'scanInteger' in scope
994 | var int = 0
995 | #if os(Linux)
996 | let flag = scanInteger(&int)
| `- error: cannot find 'scanInteger' in scope
997 | #else
998 | let flag = scanInt(&int)
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[74/194] Compiling Models DateAndTime.swift
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:963:10: error: cannot find 'atEnd' in scope
961 | public var fhir_isAtEnd: Bool {
962 | #if os(Linux)
963 | return atEnd
| `- error: cannot find 'atEnd' in scope
964 | #else
965 | return isAtEnd
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:971:20: error: extraneous argument label 'string:' in call
969 | public func fhir_scanString(_ searchString: String) -> String? {
970 | #if os(Linux)
971 | return scanString(string: searchString)
| `- error: extraneous argument label 'string:' in call
972 | #else
973 | var str: NSString?
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:983:10: warning: 'scanCharactersFromSet' is deprecated: renamed to 'scanCharacters(from:)' [#DeprecatedDeclaration]
981 | public func fhir_scanCharacters(from set: CharacterSet) -> String? {
982 | #if os(Linux)
983 | return scanCharactersFromSet(set)
| |- warning: 'scanCharactersFromSet' is deprecated: renamed to 'scanCharacters(from:)' [#DeprecatedDeclaration]
| `- note: use 'scanCharacters(from:)' instead
984 | #else
985 | var str: NSString?
/host/spi-builder-workspace/Sources/Models/DateAndTime.swift:996:14: error: cannot find 'scanInteger' in scope
994 | var int = 0
995 | #if os(Linux)
996 | let flag = scanInteger(&int)
| `- error: cannot find 'scanInteger' in scope
997 | #else
998 | let flag = scanInt(&int)
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[75/217] Compiling Models Account.swift
[76/217] Compiling Models ActivityDefinition.swift
[77/217] Compiling Models Address.swift
[78/217] Compiling Models AdverseEvent.swift
[79/217] Compiling Models Age.swift
[80/217] Compiling Models AllergyIntolerance.swift
[81/217] Compiling Models Annotation.swift
[82/217] Compiling Models Appointment.swift
[83/217] Compiling Models AppointmentResponse.swift
[84/217] Compiling Models Attachment.swift
[85/217] Compiling Models AuditEvent.swift
[86/217] Compiling Models BackboneElement.swift
[87/217] Compiling Models Base64Binary.swift
[88/217] Compiling Models Basic.swift
[89/217] Compiling Models Binary.swift
[90/217] Compiling Models BiologicallyDerivedProduct.swift
[91/217] Compiling Models BodyStructure.swift
[92/217] Compiling Models Bundle.swift
[93/217] Compiling Models CapabilityStatement.swift
[94/217] Compiling Models CarePlan.swift
[95/217] Compiling Models CareTeam.swift
[96/217] Compiling Models CatalogEntry.swift
[97/217] Compiling Models ChargeItem.swift
[98/217] Compiling Models ChargeItemDefinition.swift
[99/217] Compiling Models Goal.swift
[100/217] Compiling Models GraphDefinition.swift
[101/217] Compiling Models Group.swift
[102/217] Compiling Models GuidanceResponse.swift
[103/217] Compiling Models HealthcareService.swift
[104/217] Compiling Models HumanName.swift
[105/217] Compiling Models Identifier.swift
[106/217] Compiling Models ImagingStudy.swift
[107/217] Compiling Models Immunization.swift
[108/217] Compiling Models ImmunizationEvaluation.swift
[109/217] Compiling Models ImmunizationRecommendation.swift
[110/217] Compiling Models ImplementationGuide.swift
[111/217] Compiling Models InsurancePlan.swift
[112/217] Compiling Models Invoice.swift
[113/217] Compiling Models Library.swift
[114/217] Compiling Models Linkage.swift
[115/217] Compiling Models List.swift
[116/217] Compiling Models Location.swift
[117/217] Compiling Models MarketingStatus.swift
[118/217] Compiling Models Measure.swift
[119/217] Compiling Models MeasureReport.swift
[120/217] Compiling Models Media.swift
[121/217] Compiling Models Medication.swift
[122/217] Compiling Models MedicationAdministration.swift
error: emit-module command failed with exit code 1 (use -v to see invocation)
[123/217] Compiling Models DetectedIssue.swift
[124/217] Compiling Models Device.swift
[125/217] Compiling Models DeviceDefinition.swift
[126/217] Compiling Models DeviceMetric.swift
[127/217] Compiling Models DeviceRequest.swift
[128/217] Compiling Models DeviceUseStatement.swift
[129/217] Compiling Models DiagnosticReport.swift
[130/217] Compiling Models Distance.swift
[131/217] Compiling Models DocumentManifest.swift
[132/217] Compiling Models DocumentReference.swift
[133/217] Compiling Models DomainResource.swift
[134/217] Compiling Models Dosage.swift
[135/217] Compiling Models Duration.swift
[136/217] Compiling Models EffectEvidenceSynthesis.swift
[137/217] Compiling Models Element.swift
[138/217] Compiling Models ElementDefinition.swift
[139/217] Compiling Models Encounter.swift
[140/217] Compiling Models Endpoint.swift
[141/217] Compiling Models EnrollmentRequest.swift
[142/217] Compiling Models EnrollmentResponse.swift
[143/217] Compiling Models EpisodeOfCare.swift
[144/217] Compiling Models EventDefinition.swift
[145/217] Compiling Models Evidence.swift
[146/217] Compiling Models EvidenceVariable.swift
[147/217] Emitting module Models
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:26:37: error: cannot find type 'URLRequest' in scope
24 | Prepare a given mutable URL request with the respective method and body values.
25 | */
26 | public func prepare(request: inout URLRequest, body: Data? = nil) {
| `- error: cannot find type 'URLRequest' in scope
27 | request.httpMethod = rawValue
28 |
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:81:37: error: cannot find type 'URLRequest' in scope
79 | Prepare a given mutable URL request with the receiver's values.
80 | */
81 | public func prepare(request: inout URLRequest) {
| `- error: cannot find type 'URLRequest' in scope
82 | headers.forEach {
83 | request.setValue($1, forHTTPHeaderField: $0.rawValue)
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:131:37: error: cannot find type 'URLRequest' in scope
129 | Prepare a given mutable URL request with the receiver's parameters.
130 | */
131 | public func prepare(request: inout URLRequest) {
| `- error: cannot find type 'URLRequest' in scope
132 | guard parameters.count > 0 else {
133 | return
/host/spi-builder-workspace/Sources/Models/FHIRRequestHandler.swift:59:30: error: cannot find type 'URLRequest' in scope
57 | - parameter request: The request to decorate
58 | */
59 | func prepare(request: inout URLRequest) throws
| `- error: cannot find type 'URLRequest' in scope
60 |
61 |
/host/spi-builder-workspace/Sources/Models/FHIRRequestHandler.swift:72:26: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
70 | - returns: An appropriately configured `FHIRServerResponse` instance
71 | */
72 | func response(response: URLResponse?, data: Data?, error: Error?) -> FHIRServerResponse
| `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
73 |
74 | /**
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
| `- note: 'URLResponse' has been explicitly marked unavailable here
[148/217] Compiling Models ExampleScenario.swift
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:26:37: error: cannot find type 'URLRequest' in scope
24 | Prepare a given mutable URL request with the respective method and body values.
25 | */
26 | public func prepare(request: inout URLRequest, body: Data? = nil) {
| `- error: cannot find type 'URLRequest' in scope
27 | request.httpMethod = rawValue
28 |
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:81:37: error: cannot find type 'URLRequest' in scope
79 | Prepare a given mutable URL request with the receiver's values.
80 | */
81 | public func prepare(request: inout URLRequest) {
| `- error: cannot find type 'URLRequest' in scope
82 | headers.forEach {
83 | request.setValue($1, forHTTPHeaderField: $0.rawValue)
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:131:37: error: cannot find type 'URLRequest' in scope
129 | Prepare a given mutable URL request with the receiver's parameters.
130 | */
131 | public func prepare(request: inout URLRequest) {
| `- error: cannot find type 'URLRequest' in scope
132 | guard parameters.count > 0 else {
133 | return
/host/spi-builder-workspace/Sources/Models/FHIRRequestHandler.swift:59:30: error: cannot find type 'URLRequest' in scope
57 | - parameter request: The request to decorate
58 | */
59 | func prepare(request: inout URLRequest) throws
| `- error: cannot find type 'URLRequest' in scope
60 |
61 |
/host/spi-builder-workspace/Sources/Models/FHIRRequestHandler.swift:72:26: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
70 | - returns: An appropriately configured `FHIRServerResponse` instance
71 | */
72 | func response(response: URLResponse?, data: Data?, error: Error?) -> FHIRServerResponse
| `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
73 |
74 | /**
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
| `- note: 'URLResponse' has been explicitly marked unavailable here
[149/217] Compiling Models ExplanationOfBenefit.swift
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:26:37: error: cannot find type 'URLRequest' in scope
24 | Prepare a given mutable URL request with the respective method and body values.
25 | */
26 | public func prepare(request: inout URLRequest, body: Data? = nil) {
| `- error: cannot find type 'URLRequest' in scope
27 | request.httpMethod = rawValue
28 |
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:81:37: error: cannot find type 'URLRequest' in scope
79 | Prepare a given mutable URL request with the receiver's values.
80 | */
81 | public func prepare(request: inout URLRequest) {
| `- error: cannot find type 'URLRequest' in scope
82 | headers.forEach {
83 | request.setValue($1, forHTTPHeaderField: $0.rawValue)
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:131:37: error: cannot find type 'URLRequest' in scope
129 | Prepare a given mutable URL request with the receiver's parameters.
130 | */
131 | public func prepare(request: inout URLRequest) {
| `- error: cannot find type 'URLRequest' in scope
132 | guard parameters.count > 0 else {
133 | return
/host/spi-builder-workspace/Sources/Models/FHIRRequestHandler.swift:59:30: error: cannot find type 'URLRequest' in scope
57 | - parameter request: The request to decorate
58 | */
59 | func prepare(request: inout URLRequest) throws
| `- error: cannot find type 'URLRequest' in scope
60 |
61 |
/host/spi-builder-workspace/Sources/Models/FHIRRequestHandler.swift:72:26: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
70 | - returns: An appropriately configured `FHIRServerResponse` instance
71 | */
72 | func response(response: URLResponse?, data: Data?, error: Error?) -> FHIRServerResponse
| `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
73 |
74 | /**
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
| `- note: 'URLResponse' has been explicitly marked unavailable here
[150/217] Compiling Models Expression.swift
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:26:37: error: cannot find type 'URLRequest' in scope
24 | Prepare a given mutable URL request with the respective method and body values.
25 | */
26 | public func prepare(request: inout URLRequest, body: Data? = nil) {
| `- error: cannot find type 'URLRequest' in scope
27 | request.httpMethod = rawValue
28 |
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:81:37: error: cannot find type 'URLRequest' in scope
79 | Prepare a given mutable URL request with the receiver's values.
80 | */
81 | public func prepare(request: inout URLRequest) {
| `- error: cannot find type 'URLRequest' in scope
82 | headers.forEach {
83 | request.setValue($1, forHTTPHeaderField: $0.rawValue)
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:131:37: error: cannot find type 'URLRequest' in scope
129 | Prepare a given mutable URL request with the receiver's parameters.
130 | */
131 | public func prepare(request: inout URLRequest) {
| `- error: cannot find type 'URLRequest' in scope
132 | guard parameters.count > 0 else {
133 | return
/host/spi-builder-workspace/Sources/Models/FHIRRequestHandler.swift:59:30: error: cannot find type 'URLRequest' in scope
57 | - parameter request: The request to decorate
58 | */
59 | func prepare(request: inout URLRequest) throws
| `- error: cannot find type 'URLRequest' in scope
60 |
61 |
/host/spi-builder-workspace/Sources/Models/FHIRRequestHandler.swift:72:26: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
70 | - returns: An appropriately configured `FHIRServerResponse` instance
71 | */
72 | func response(response: URLResponse?, data: Data?, error: Error?) -> FHIRServerResponse
| `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
73 |
74 | /**
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
| `- note: 'URLResponse' has been explicitly marked unavailable here
[151/217] Compiling Models Extension.swift
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:26:37: error: cannot find type 'URLRequest' in scope
24 | Prepare a given mutable URL request with the respective method and body values.
25 | */
26 | public func prepare(request: inout URLRequest, body: Data? = nil) {
| `- error: cannot find type 'URLRequest' in scope
27 | request.httpMethod = rawValue
28 |
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:81:37: error: cannot find type 'URLRequest' in scope
79 | Prepare a given mutable URL request with the receiver's values.
80 | */
81 | public func prepare(request: inout URLRequest) {
| `- error: cannot find type 'URLRequest' in scope
82 | headers.forEach {
83 | request.setValue($1, forHTTPHeaderField: $0.rawValue)
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:131:37: error: cannot find type 'URLRequest' in scope
129 | Prepare a given mutable URL request with the receiver's parameters.
130 | */
131 | public func prepare(request: inout URLRequest) {
| `- error: cannot find type 'URLRequest' in scope
132 | guard parameters.count > 0 else {
133 | return
/host/spi-builder-workspace/Sources/Models/FHIRRequestHandler.swift:59:30: error: cannot find type 'URLRequest' in scope
57 | - parameter request: The request to decorate
58 | */
59 | func prepare(request: inout URLRequest) throws
| `- error: cannot find type 'URLRequest' in scope
60 |
61 |
/host/spi-builder-workspace/Sources/Models/FHIRRequestHandler.swift:72:26: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
70 | - returns: An appropriately configured `FHIRServerResponse` instance
71 | */
72 | func response(response: URLResponse?, data: Data?, error: Error?) -> FHIRServerResponse
| `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
73 |
74 | /**
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
| `- note: 'URLResponse' has been explicitly marked unavailable here
[152/217] Compiling Models FHIRAbstractBase+Factory.swift
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:26:37: error: cannot find type 'URLRequest' in scope
24 | Prepare a given mutable URL request with the respective method and body values.
25 | */
26 | public func prepare(request: inout URLRequest, body: Data? = nil) {
| `- error: cannot find type 'URLRequest' in scope
27 | request.httpMethod = rawValue
28 |
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:81:37: error: cannot find type 'URLRequest' in scope
79 | Prepare a given mutable URL request with the receiver's values.
80 | */
81 | public func prepare(request: inout URLRequest) {
| `- error: cannot find type 'URLRequest' in scope
82 | headers.forEach {
83 | request.setValue($1, forHTTPHeaderField: $0.rawValue)
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:131:37: error: cannot find type 'URLRequest' in scope
129 | Prepare a given mutable URL request with the receiver's parameters.
130 | */
131 | public func prepare(request: inout URLRequest) {
| `- error: cannot find type 'URLRequest' in scope
132 | guard parameters.count > 0 else {
133 | return
/host/spi-builder-workspace/Sources/Models/FHIRRequestHandler.swift:59:30: error: cannot find type 'URLRequest' in scope
57 | - parameter request: The request to decorate
58 | */
59 | func prepare(request: inout URLRequest) throws
| `- error: cannot find type 'URLRequest' in scope
60 |
61 |
/host/spi-builder-workspace/Sources/Models/FHIRRequestHandler.swift:72:26: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
70 | - returns: An appropriately configured `FHIRServerResponse` instance
71 | */
72 | func response(response: URLResponse?, data: Data?, error: Error?) -> FHIRServerResponse
| `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
73 |
74 | /**
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
| `- note: 'URLResponse' has been explicitly marked unavailable here
[153/217] Compiling Models FHIRAbstractBase.swift
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:26:37: error: cannot find type 'URLRequest' in scope
24 | Prepare a given mutable URL request with the respective method and body values.
25 | */
26 | public func prepare(request: inout URLRequest, body: Data? = nil) {
| `- error: cannot find type 'URLRequest' in scope
27 | request.httpMethod = rawValue
28 |
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:81:37: error: cannot find type 'URLRequest' in scope
79 | Prepare a given mutable URL request with the receiver's values.
80 | */
81 | public func prepare(request: inout URLRequest) {
| `- error: cannot find type 'URLRequest' in scope
82 | headers.forEach {
83 | request.setValue($1, forHTTPHeaderField: $0.rawValue)
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:131:37: error: cannot find type 'URLRequest' in scope
129 | Prepare a given mutable URL request with the receiver's parameters.
130 | */
131 | public func prepare(request: inout URLRequest) {
| `- error: cannot find type 'URLRequest' in scope
132 | guard parameters.count > 0 else {
133 | return
/host/spi-builder-workspace/Sources/Models/FHIRRequestHandler.swift:59:30: error: cannot find type 'URLRequest' in scope
57 | - parameter request: The request to decorate
58 | */
59 | func prepare(request: inout URLRequest) throws
| `- error: cannot find type 'URLRequest' in scope
60 |
61 |
/host/spi-builder-workspace/Sources/Models/FHIRRequestHandler.swift:72:26: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
70 | - returns: An appropriately configured `FHIRServerResponse` instance
71 | */
72 | func response(response: URLResponse?, data: Data?, error: Error?) -> FHIRServerResponse
| `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
73 |
74 | /**
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
| `- note: 'URLResponse' has been explicitly marked unavailable here
[154/217] Compiling Models FHIRAbstractResource.swift
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:26:37: error: cannot find type 'URLRequest' in scope
24 | Prepare a given mutable URL request with the respective method and body values.
25 | */
26 | public func prepare(request: inout URLRequest, body: Data? = nil) {
| `- error: cannot find type 'URLRequest' in scope
27 | request.httpMethod = rawValue
28 |
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:81:37: error: cannot find type 'URLRequest' in scope
79 | Prepare a given mutable URL request with the receiver's values.
80 | */
81 | public func prepare(request: inout URLRequest) {
| `- error: cannot find type 'URLRequest' in scope
82 | headers.forEach {
83 | request.setValue($1, forHTTPHeaderField: $0.rawValue)
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:131:37: error: cannot find type 'URLRequest' in scope
129 | Prepare a given mutable URL request with the receiver's parameters.
130 | */
131 | public func prepare(request: inout URLRequest) {
| `- error: cannot find type 'URLRequest' in scope
132 | guard parameters.count > 0 else {
133 | return
/host/spi-builder-workspace/Sources/Models/FHIRRequestHandler.swift:59:30: error: cannot find type 'URLRequest' in scope
57 | - parameter request: The request to decorate
58 | */
59 | func prepare(request: inout URLRequest) throws
| `- error: cannot find type 'URLRequest' in scope
60 |
61 |
/host/spi-builder-workspace/Sources/Models/FHIRRequestHandler.swift:72:26: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
70 | - returns: An appropriately configured `FHIRServerResponse` instance
71 | */
72 | func response(response: URLResponse?, data: Data?, error: Error?) -> FHIRServerResponse
| `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
73 |
74 | /**
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
| `- note: 'URLResponse' has been explicitly marked unavailable here
[155/217] Compiling Models FHIRBool.swift
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:26:37: error: cannot find type 'URLRequest' in scope
24 | Prepare a given mutable URL request with the respective method and body values.
25 | */
26 | public func prepare(request: inout URLRequest, body: Data? = nil) {
| `- error: cannot find type 'URLRequest' in scope
27 | request.httpMethod = rawValue
28 |
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:81:37: error: cannot find type 'URLRequest' in scope
79 | Prepare a given mutable URL request with the receiver's values.
80 | */
81 | public func prepare(request: inout URLRequest) {
| `- error: cannot find type 'URLRequest' in scope
82 | headers.forEach {
83 | request.setValue($1, forHTTPHeaderField: $0.rawValue)
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:131:37: error: cannot find type 'URLRequest' in scope
129 | Prepare a given mutable URL request with the receiver's parameters.
130 | */
131 | public func prepare(request: inout URLRequest) {
| `- error: cannot find type 'URLRequest' in scope
132 | guard parameters.count > 0 else {
133 | return
/host/spi-builder-workspace/Sources/Models/FHIRRequestHandler.swift:59:30: error: cannot find type 'URLRequest' in scope
57 | - parameter request: The request to decorate
58 | */
59 | func prepare(request: inout URLRequest) throws
| `- error: cannot find type 'URLRequest' in scope
60 |
61 |
/host/spi-builder-workspace/Sources/Models/FHIRRequestHandler.swift:72:26: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
70 | - returns: An appropriately configured `FHIRServerResponse` instance
71 | */
72 | func response(response: URLResponse?, data: Data?, error: Error?) -> FHIRServerResponse
| `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
73 |
74 | /**
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
| `- note: 'URLResponse' has been explicitly marked unavailable here
[156/217] Compiling Models FHIRCanonical.swift
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:26:37: error: cannot find type 'URLRequest' in scope
24 | Prepare a given mutable URL request with the respective method and body values.
25 | */
26 | public func prepare(request: inout URLRequest, body: Data? = nil) {
| `- error: cannot find type 'URLRequest' in scope
27 | request.httpMethod = rawValue
28 |
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:81:37: error: cannot find type 'URLRequest' in scope
79 | Prepare a given mutable URL request with the receiver's values.
80 | */
81 | public func prepare(request: inout URLRequest) {
| `- error: cannot find type 'URLRequest' in scope
82 | headers.forEach {
83 | request.setValue($1, forHTTPHeaderField: $0.rawValue)
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:131:37: error: cannot find type 'URLRequest' in scope
129 | Prepare a given mutable URL request with the receiver's parameters.
130 | */
131 | public func prepare(request: inout URLRequest) {
| `- error: cannot find type 'URLRequest' in scope
132 | guard parameters.count > 0 else {
133 | return
/host/spi-builder-workspace/Sources/Models/FHIRRequestHandler.swift:59:30: error: cannot find type 'URLRequest' in scope
57 | - parameter request: The request to decorate
58 | */
59 | func prepare(request: inout URLRequest) throws
| `- error: cannot find type 'URLRequest' in scope
60 |
61 |
/host/spi-builder-workspace/Sources/Models/FHIRRequestHandler.swift:72:26: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
70 | - returns: An appropriately configured `FHIRServerResponse` instance
71 | */
72 | func response(response: URLResponse?, data: Data?, error: Error?) -> FHIRServerResponse
| `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
73 |
74 | /**
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
| `- note: 'URLResponse' has been explicitly marked unavailable here
[157/217] Compiling Models FHIRDecimal.swift
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:26:37: error: cannot find type 'URLRequest' in scope
24 | Prepare a given mutable URL request with the respective method and body values.
25 | */
26 | public func prepare(request: inout URLRequest, body: Data? = nil) {
| `- error: cannot find type 'URLRequest' in scope
27 | request.httpMethod = rawValue
28 |
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:81:37: error: cannot find type 'URLRequest' in scope
79 | Prepare a given mutable URL request with the receiver's values.
80 | */
81 | public func prepare(request: inout URLRequest) {
| `- error: cannot find type 'URLRequest' in scope
82 | headers.forEach {
83 | request.setValue($1, forHTTPHeaderField: $0.rawValue)
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:131:37: error: cannot find type 'URLRequest' in scope
129 | Prepare a given mutable URL request with the receiver's parameters.
130 | */
131 | public func prepare(request: inout URLRequest) {
| `- error: cannot find type 'URLRequest' in scope
132 | guard parameters.count > 0 else {
133 | return
/host/spi-builder-workspace/Sources/Models/FHIRRequestHandler.swift:59:30: error: cannot find type 'URLRequest' in scope
57 | - parameter request: The request to decorate
58 | */
59 | func prepare(request: inout URLRequest) throws
| `- error: cannot find type 'URLRequest' in scope
60 |
61 |
/host/spi-builder-workspace/Sources/Models/FHIRRequestHandler.swift:72:26: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
70 | - returns: An appropriately configured `FHIRServerResponse` instance
71 | */
72 | func response(response: URLResponse?, data: Data?, error: Error?) -> FHIRServerResponse
| `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
73 |
74 | /**
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
| `- note: 'URLResponse' has been explicitly marked unavailable here
[158/217] Compiling Models FHIREnum.swift
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:26:37: error: cannot find type 'URLRequest' in scope
24 | Prepare a given mutable URL request with the respective method and body values.
25 | */
26 | public func prepare(request: inout URLRequest, body: Data? = nil) {
| `- error: cannot find type 'URLRequest' in scope
27 | request.httpMethod = rawValue
28 |
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:81:37: error: cannot find type 'URLRequest' in scope
79 | Prepare a given mutable URL request with the receiver's values.
80 | */
81 | public func prepare(request: inout URLRequest) {
| `- error: cannot find type 'URLRequest' in scope
82 | headers.forEach {
83 | request.setValue($1, forHTTPHeaderField: $0.rawValue)
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:131:37: error: cannot find type 'URLRequest' in scope
129 | Prepare a given mutable URL request with the receiver's parameters.
130 | */
131 | public func prepare(request: inout URLRequest) {
| `- error: cannot find type 'URLRequest' in scope
132 | guard parameters.count > 0 else {
133 | return
/host/spi-builder-workspace/Sources/Models/FHIRRequestHandler.swift:59:30: error: cannot find type 'URLRequest' in scope
57 | - parameter request: The request to decorate
58 | */
59 | func prepare(request: inout URLRequest) throws
| `- error: cannot find type 'URLRequest' in scope
60 |
61 |
/host/spi-builder-workspace/Sources/Models/FHIRRequestHandler.swift:72:26: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
70 | - returns: An appropriately configured `FHIRServerResponse` instance
71 | */
72 | func response(response: URLResponse?, data: Data?, error: Error?) -> FHIRServerResponse
| `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
73 |
74 | /**
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
| `- note: 'URLResponse' has been explicitly marked unavailable here
[159/217] Compiling Models FHIRError.swift
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:26:37: error: cannot find type 'URLRequest' in scope
24 | Prepare a given mutable URL request with the respective method and body values.
25 | */
26 | public func prepare(request: inout URLRequest, body: Data? = nil) {
| `- error: cannot find type 'URLRequest' in scope
27 | request.httpMethod = rawValue
28 |
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:81:37: error: cannot find type 'URLRequest' in scope
79 | Prepare a given mutable URL request with the receiver's values.
80 | */
81 | public func prepare(request: inout URLRequest) {
| `- error: cannot find type 'URLRequest' in scope
82 | headers.forEach {
83 | request.setValue($1, forHTTPHeaderField: $0.rawValue)
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:131:37: error: cannot find type 'URLRequest' in scope
129 | Prepare a given mutable URL request with the receiver's parameters.
130 | */
131 | public func prepare(request: inout URLRequest) {
| `- error: cannot find type 'URLRequest' in scope
132 | guard parameters.count > 0 else {
133 | return
/host/spi-builder-workspace/Sources/Models/FHIRRequestHandler.swift:59:30: error: cannot find type 'URLRequest' in scope
57 | - parameter request: The request to decorate
58 | */
59 | func prepare(request: inout URLRequest) throws
| `- error: cannot find type 'URLRequest' in scope
60 |
61 |
/host/spi-builder-workspace/Sources/Models/FHIRRequestHandler.swift:72:26: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
70 | - returns: An appropriately configured `FHIRServerResponse` instance
71 | */
72 | func response(response: URLResponse?, data: Data?, error: Error?) -> FHIRServerResponse
| `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
73 |
74 | /**
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
| `- note: 'URLResponse' has been explicitly marked unavailable here
[160/217] Compiling Models FHIRInteger.swift
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:26:37: error: cannot find type 'URLRequest' in scope
24 | Prepare a given mutable URL request with the respective method and body values.
25 | */
26 | public func prepare(request: inout URLRequest, body: Data? = nil) {
| `- error: cannot find type 'URLRequest' in scope
27 | request.httpMethod = rawValue
28 |
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:81:37: error: cannot find type 'URLRequest' in scope
79 | Prepare a given mutable URL request with the receiver's values.
80 | */
81 | public func prepare(request: inout URLRequest) {
| `- error: cannot find type 'URLRequest' in scope
82 | headers.forEach {
83 | request.setValue($1, forHTTPHeaderField: $0.rawValue)
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:131:37: error: cannot find type 'URLRequest' in scope
129 | Prepare a given mutable URL request with the receiver's parameters.
130 | */
131 | public func prepare(request: inout URLRequest) {
| `- error: cannot find type 'URLRequest' in scope
132 | guard parameters.count > 0 else {
133 | return
/host/spi-builder-workspace/Sources/Models/FHIRRequestHandler.swift:59:30: error: cannot find type 'URLRequest' in scope
57 | - parameter request: The request to decorate
58 | */
59 | func prepare(request: inout URLRequest) throws
| `- error: cannot find type 'URLRequest' in scope
60 |
61 |
/host/spi-builder-workspace/Sources/Models/FHIRRequestHandler.swift:72:26: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
70 | - returns: An appropriately configured `FHIRServerResponse` instance
71 | */
72 | func response(response: URLResponse?, data: Data?, error: Error?) -> FHIRServerResponse
| `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
73 |
74 | /**
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
| `- note: 'URLResponse' has been explicitly marked unavailable here
[161/217] Compiling Models FHIRPrimitive.swift
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:26:37: error: cannot find type 'URLRequest' in scope
24 | Prepare a given mutable URL request with the respective method and body values.
25 | */
26 | public func prepare(request: inout URLRequest, body: Data? = nil) {
| `- error: cannot find type 'URLRequest' in scope
27 | request.httpMethod = rawValue
28 |
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:81:37: error: cannot find type 'URLRequest' in scope
79 | Prepare a given mutable URL request with the receiver's values.
80 | */
81 | public func prepare(request: inout URLRequest) {
| `- error: cannot find type 'URLRequest' in scope
82 | headers.forEach {
83 | request.setValue($1, forHTTPHeaderField: $0.rawValue)
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:131:37: error: cannot find type 'URLRequest' in scope
129 | Prepare a given mutable URL request with the receiver's parameters.
130 | */
131 | public func prepare(request: inout URLRequest) {
| `- error: cannot find type 'URLRequest' in scope
132 | guard parameters.count > 0 else {
133 | return
/host/spi-builder-workspace/Sources/Models/FHIRRequestHandler.swift:59:30: error: cannot find type 'URLRequest' in scope
57 | - parameter request: The request to decorate
58 | */
59 | func prepare(request: inout URLRequest) throws
| `- error: cannot find type 'URLRequest' in scope
60 |
61 |
/host/spi-builder-workspace/Sources/Models/FHIRRequestHandler.swift:72:26: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
70 | - returns: An appropriately configured `FHIRServerResponse` instance
71 | */
72 | func response(response: URLResponse?, data: Data?, error: Error?) -> FHIRServerResponse
| `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
73 |
74 | /**
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
| `- note: 'URLResponse' has been explicitly marked unavailable here
[162/217] Compiling Models FHIRRequest.swift
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:26:37: error: cannot find type 'URLRequest' in scope
24 | Prepare a given mutable URL request with the respective method and body values.
25 | */
26 | public func prepare(request: inout URLRequest, body: Data? = nil) {
| `- error: cannot find type 'URLRequest' in scope
27 | request.httpMethod = rawValue
28 |
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:81:37: error: cannot find type 'URLRequest' in scope
79 | Prepare a given mutable URL request with the receiver's values.
80 | */
81 | public func prepare(request: inout URLRequest) {
| `- error: cannot find type 'URLRequest' in scope
82 | headers.forEach {
83 | request.setValue($1, forHTTPHeaderField: $0.rawValue)
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:131:37: error: cannot find type 'URLRequest' in scope
129 | Prepare a given mutable URL request with the receiver's parameters.
130 | */
131 | public func prepare(request: inout URLRequest) {
| `- error: cannot find type 'URLRequest' in scope
132 | guard parameters.count > 0 else {
133 | return
/host/spi-builder-workspace/Sources/Models/FHIRRequestHandler.swift:59:30: error: cannot find type 'URLRequest' in scope
57 | - parameter request: The request to decorate
58 | */
59 | func prepare(request: inout URLRequest) throws
| `- error: cannot find type 'URLRequest' in scope
60 |
61 |
/host/spi-builder-workspace/Sources/Models/FHIRRequestHandler.swift:72:26: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
70 | - returns: An appropriately configured `FHIRServerResponse` instance
71 | */
72 | func response(response: URLResponse?, data: Data?, error: Error?) -> FHIRServerResponse
| `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
73 |
74 | /**
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
| `- note: 'URLResponse' has been explicitly marked unavailable here
[163/217] Compiling Models FHIRRequestHandler.swift
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:26:37: error: cannot find type 'URLRequest' in scope
24 | Prepare a given mutable URL request with the respective method and body values.
25 | */
26 | public func prepare(request: inout URLRequest, body: Data? = nil) {
| `- error: cannot find type 'URLRequest' in scope
27 | request.httpMethod = rawValue
28 |
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:81:37: error: cannot find type 'URLRequest' in scope
79 | Prepare a given mutable URL request with the receiver's values.
80 | */
81 | public func prepare(request: inout URLRequest) {
| `- error: cannot find type 'URLRequest' in scope
82 | headers.forEach {
83 | request.setValue($1, forHTTPHeaderField: $0.rawValue)
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:131:37: error: cannot find type 'URLRequest' in scope
129 | Prepare a given mutable URL request with the receiver's parameters.
130 | */
131 | public func prepare(request: inout URLRequest) {
| `- error: cannot find type 'URLRequest' in scope
132 | guard parameters.count > 0 else {
133 | return
/host/spi-builder-workspace/Sources/Models/FHIRRequestHandler.swift:59:30: error: cannot find type 'URLRequest' in scope
57 | - parameter request: The request to decorate
58 | */
59 | func prepare(request: inout URLRequest) throws
| `- error: cannot find type 'URLRequest' in scope
60 |
61 |
/host/spi-builder-workspace/Sources/Models/FHIRRequestHandler.swift:72:26: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
70 | - returns: An appropriately configured `FHIRServerResponse` instance
71 | */
72 | func response(response: URLResponse?, data: Data?, error: Error?) -> FHIRServerResponse
| `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
73 |
74 | /**
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
| `- note: 'URLResponse' has been explicitly marked unavailable here
[164/217] Compiling Models FHIRServer.swift
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:26:37: error: cannot find type 'URLRequest' in scope
24 | Prepare a given mutable URL request with the respective method and body values.
25 | */
26 | public func prepare(request: inout URLRequest, body: Data? = nil) {
| `- error: cannot find type 'URLRequest' in scope
27 | request.httpMethod = rawValue
28 |
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:81:37: error: cannot find type 'URLRequest' in scope
79 | Prepare a given mutable URL request with the receiver's values.
80 | */
81 | public func prepare(request: inout URLRequest) {
| `- error: cannot find type 'URLRequest' in scope
82 | headers.forEach {
83 | request.setValue($1, forHTTPHeaderField: $0.rawValue)
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:131:37: error: cannot find type 'URLRequest' in scope
129 | Prepare a given mutable URL request with the receiver's parameters.
130 | */
131 | public func prepare(request: inout URLRequest) {
| `- error: cannot find type 'URLRequest' in scope
132 | guard parameters.count > 0 else {
133 | return
/host/spi-builder-workspace/Sources/Models/FHIRRequestHandler.swift:59:30: error: cannot find type 'URLRequest' in scope
57 | - parameter request: The request to decorate
58 | */
59 | func prepare(request: inout URLRequest) throws
| `- error: cannot find type 'URLRequest' in scope
60 |
61 |
/host/spi-builder-workspace/Sources/Models/FHIRRequestHandler.swift:72:26: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
70 | - returns: An appropriately configured `FHIRServerResponse` instance
71 | */
72 | func response(response: URLResponse?, data: Data?, error: Error?) -> FHIRServerResponse
| `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
73 |
74 | /**
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
| `- note: 'URLResponse' has been explicitly marked unavailable here
[165/217] Compiling Models FHIRServerResponse.swift
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:26:37: error: cannot find type 'URLRequest' in scope
24 | Prepare a given mutable URL request with the respective method and body values.
25 | */
26 | public func prepare(request: inout URLRequest, body: Data? = nil) {
| `- error: cannot find type 'URLRequest' in scope
27 | request.httpMethod = rawValue
28 |
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:81:37: error: cannot find type 'URLRequest' in scope
79 | Prepare a given mutable URL request with the receiver's values.
80 | */
81 | public func prepare(request: inout URLRequest) {
| `- error: cannot find type 'URLRequest' in scope
82 | headers.forEach {
83 | request.setValue($1, forHTTPHeaderField: $0.rawValue)
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:131:37: error: cannot find type 'URLRequest' in scope
129 | Prepare a given mutable URL request with the receiver's parameters.
130 | */
131 | public func prepare(request: inout URLRequest) {
| `- error: cannot find type 'URLRequest' in scope
132 | guard parameters.count > 0 else {
133 | return
/host/spi-builder-workspace/Sources/Models/FHIRRequestHandler.swift:59:30: error: cannot find type 'URLRequest' in scope
57 | - parameter request: The request to decorate
58 | */
59 | func prepare(request: inout URLRequest) throws
| `- error: cannot find type 'URLRequest' in scope
60 |
61 |
/host/spi-builder-workspace/Sources/Models/FHIRRequestHandler.swift:72:26: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
70 | - returns: An appropriately configured `FHIRServerResponse` instance
71 | */
72 | func response(response: URLResponse?, data: Data?, error: Error?) -> FHIRServerResponse
| `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
73 |
74 | /**
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
| `- note: 'URLResponse' has been explicitly marked unavailable here
[166/217] Compiling Models FHIRString.swift
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:26:37: error: cannot find type 'URLRequest' in scope
24 | Prepare a given mutable URL request with the respective method and body values.
25 | */
26 | public func prepare(request: inout URLRequest, body: Data? = nil) {
| `- error: cannot find type 'URLRequest' in scope
27 | request.httpMethod = rawValue
28 |
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:81:37: error: cannot find type 'URLRequest' in scope
79 | Prepare a given mutable URL request with the receiver's values.
80 | */
81 | public func prepare(request: inout URLRequest) {
| `- error: cannot find type 'URLRequest' in scope
82 | headers.forEach {
83 | request.setValue($1, forHTTPHeaderField: $0.rawValue)
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:131:37: error: cannot find type 'URLRequest' in scope
129 | Prepare a given mutable URL request with the receiver's parameters.
130 | */
131 | public func prepare(request: inout URLRequest) {
| `- error: cannot find type 'URLRequest' in scope
132 | guard parameters.count > 0 else {
133 | return
/host/spi-builder-workspace/Sources/Models/FHIRRequestHandler.swift:59:30: error: cannot find type 'URLRequest' in scope
57 | - parameter request: The request to decorate
58 | */
59 | func prepare(request: inout URLRequest) throws
| `- error: cannot find type 'URLRequest' in scope
60 |
61 |
/host/spi-builder-workspace/Sources/Models/FHIRRequestHandler.swift:72:26: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
70 | - returns: An appropriately configured `FHIRServerResponse` instance
71 | */
72 | func response(response: URLResponse?, data: Data?, error: Error?) -> FHIRServerResponse
| `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
73 |
74 | /**
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
| `- note: 'URLResponse' has been explicitly marked unavailable here
[167/217] Compiling Models FHIRType.swift
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:26:37: error: cannot find type 'URLRequest' in scope
24 | Prepare a given mutable URL request with the respective method and body values.
25 | */
26 | public func prepare(request: inout URLRequest, body: Data? = nil) {
| `- error: cannot find type 'URLRequest' in scope
27 | request.httpMethod = rawValue
28 |
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:81:37: error: cannot find type 'URLRequest' in scope
79 | Prepare a given mutable URL request with the receiver's values.
80 | */
81 | public func prepare(request: inout URLRequest) {
| `- error: cannot find type 'URLRequest' in scope
82 | headers.forEach {
83 | request.setValue($1, forHTTPHeaderField: $0.rawValue)
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:131:37: error: cannot find type 'URLRequest' in scope
129 | Prepare a given mutable URL request with the receiver's parameters.
130 | */
131 | public func prepare(request: inout URLRequest) {
| `- error: cannot find type 'URLRequest' in scope
132 | guard parameters.count > 0 else {
133 | return
/host/spi-builder-workspace/Sources/Models/FHIRRequestHandler.swift:59:30: error: cannot find type 'URLRequest' in scope
57 | - parameter request: The request to decorate
58 | */
59 | func prepare(request: inout URLRequest) throws
| `- error: cannot find type 'URLRequest' in scope
60 |
61 |
/host/spi-builder-workspace/Sources/Models/FHIRRequestHandler.swift:72:26: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
70 | - returns: An appropriately configured `FHIRServerResponse` instance
71 | */
72 | func response(response: URLResponse?, data: Data?, error: Error?) -> FHIRServerResponse
| `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
73 |
74 | /**
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
| `- note: 'URLResponse' has been explicitly marked unavailable here
[168/217] Compiling Models FHIRURL.swift
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:26:37: error: cannot find type 'URLRequest' in scope
24 | Prepare a given mutable URL request with the respective method and body values.
25 | */
26 | public func prepare(request: inout URLRequest, body: Data? = nil) {
| `- error: cannot find type 'URLRequest' in scope
27 | request.httpMethod = rawValue
28 |
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:81:37: error: cannot find type 'URLRequest' in scope
79 | Prepare a given mutable URL request with the receiver's values.
80 | */
81 | public func prepare(request: inout URLRequest) {
| `- error: cannot find type 'URLRequest' in scope
82 | headers.forEach {
83 | request.setValue($1, forHTTPHeaderField: $0.rawValue)
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:131:37: error: cannot find type 'URLRequest' in scope
129 | Prepare a given mutable URL request with the receiver's parameters.
130 | */
131 | public func prepare(request: inout URLRequest) {
| `- error: cannot find type 'URLRequest' in scope
132 | guard parameters.count > 0 else {
133 | return
/host/spi-builder-workspace/Sources/Models/FHIRRequestHandler.swift:59:30: error: cannot find type 'URLRequest' in scope
57 | - parameter request: The request to decorate
58 | */
59 | func prepare(request: inout URLRequest) throws
| `- error: cannot find type 'URLRequest' in scope
60 |
61 |
/host/spi-builder-workspace/Sources/Models/FHIRRequestHandler.swift:72:26: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
70 | - returns: An appropriately configured `FHIRServerResponse` instance
71 | */
72 | func response(response: URLResponse?, data: Data?, error: Error?) -> FHIRServerResponse
| `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
73 |
74 | /**
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
| `- note: 'URLResponse' has been explicitly marked unavailable here
[169/217] Compiling Models FHIRValidationError.swift
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:26:37: error: cannot find type 'URLRequest' in scope
24 | Prepare a given mutable URL request with the respective method and body values.
25 | */
26 | public func prepare(request: inout URLRequest, body: Data? = nil) {
| `- error: cannot find type 'URLRequest' in scope
27 | request.httpMethod = rawValue
28 |
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:81:37: error: cannot find type 'URLRequest' in scope
79 | Prepare a given mutable URL request with the receiver's values.
80 | */
81 | public func prepare(request: inout URLRequest) {
| `- error: cannot find type 'URLRequest' in scope
82 | headers.forEach {
83 | request.setValue($1, forHTTPHeaderField: $0.rawValue)
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:131:37: error: cannot find type 'URLRequest' in scope
129 | Prepare a given mutable URL request with the receiver's parameters.
130 | */
131 | public func prepare(request: inout URLRequest) {
| `- error: cannot find type 'URLRequest' in scope
132 | guard parameters.count > 0 else {
133 | return
/host/spi-builder-workspace/Sources/Models/FHIRRequestHandler.swift:59:30: error: cannot find type 'URLRequest' in scope
57 | - parameter request: The request to decorate
58 | */
59 | func prepare(request: inout URLRequest) throws
| `- error: cannot find type 'URLRequest' in scope
60 |
61 |
/host/spi-builder-workspace/Sources/Models/FHIRRequestHandler.swift:72:26: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
70 | - returns: An appropriately configured `FHIRServerResponse` instance
71 | */
72 | func response(response: URLResponse?, data: Data?, error: Error?) -> FHIRServerResponse
| `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
73 |
74 | /**
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
| `- note: 'URLResponse' has been explicitly marked unavailable here
[170/217] Compiling Models FamilyMemberHistory.swift
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:26:37: error: cannot find type 'URLRequest' in scope
24 | Prepare a given mutable URL request with the respective method and body values.
25 | */
26 | public func prepare(request: inout URLRequest, body: Data? = nil) {
| `- error: cannot find type 'URLRequest' in scope
27 | request.httpMethod = rawValue
28 |
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:81:37: error: cannot find type 'URLRequest' in scope
79 | Prepare a given mutable URL request with the receiver's values.
80 | */
81 | public func prepare(request: inout URLRequest) {
| `- error: cannot find type 'URLRequest' in scope
82 | headers.forEach {
83 | request.setValue($1, forHTTPHeaderField: $0.rawValue)
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:131:37: error: cannot find type 'URLRequest' in scope
129 | Prepare a given mutable URL request with the receiver's parameters.
130 | */
131 | public func prepare(request: inout URLRequest) {
| `- error: cannot find type 'URLRequest' in scope
132 | guard parameters.count > 0 else {
133 | return
/host/spi-builder-workspace/Sources/Models/FHIRRequestHandler.swift:59:30: error: cannot find type 'URLRequest' in scope
57 | - parameter request: The request to decorate
58 | */
59 | func prepare(request: inout URLRequest) throws
| `- error: cannot find type 'URLRequest' in scope
60 |
61 |
/host/spi-builder-workspace/Sources/Models/FHIRRequestHandler.swift:72:26: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
70 | - returns: An appropriately configured `FHIRServerResponse` instance
71 | */
72 | func response(response: URLResponse?, data: Data?, error: Error?) -> FHIRServerResponse
| `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
73 |
74 | /**
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
| `- note: 'URLResponse' has been explicitly marked unavailable here
[171/217] Compiling Models Flag.swift
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:26:37: error: cannot find type 'URLRequest' in scope
24 | Prepare a given mutable URL request with the respective method and body values.
25 | */
26 | public func prepare(request: inout URLRequest, body: Data? = nil) {
| `- error: cannot find type 'URLRequest' in scope
27 | request.httpMethod = rawValue
28 |
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:81:37: error: cannot find type 'URLRequest' in scope
79 | Prepare a given mutable URL request with the receiver's values.
80 | */
81 | public func prepare(request: inout URLRequest) {
| `- error: cannot find type 'URLRequest' in scope
82 | headers.forEach {
83 | request.setValue($1, forHTTPHeaderField: $0.rawValue)
/host/spi-builder-workspace/Sources/Models/FHIRRequest.swift:131:37: error: cannot find type 'URLRequest' in scope
129 | Prepare a given mutable URL request with the receiver's parameters.
130 | */
131 | public func prepare(request: inout URLRequest) {
| `- error: cannot find type 'URLRequest' in scope
132 | guard parameters.count > 0 else {
133 | return
/host/spi-builder-workspace/Sources/Models/FHIRRequestHandler.swift:59:30: error: cannot find type 'URLRequest' in scope
57 | - parameter request: The request to decorate
58 | */
59 | func prepare(request: inout URLRequest) throws
| `- error: cannot find type 'URLRequest' in scope
60 |
61 |
/host/spi-builder-workspace/Sources/Models/FHIRRequestHandler.swift:72:26: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
70 | - returns: An appropriately configured `FHIRServerResponse` instance
71 | */
72 | func response(response: URLResponse?, data: Data?, error: Error?) -> FHIRServerResponse
| `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
73 |
74 | /**
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
| `- note: 'URLResponse' has been explicitly marked unavailable here
[172/217] Compiling Models QuestionnaireResponse.swift
[173/217] Compiling Models Range.swift
[174/217] Compiling Models Ratio.swift
[175/217] Compiling Models Reference.swift
[176/217] Compiling Models RelatedArtifact.swift
[177/217] Compiling Models RelatedPerson.swift
[178/217] Compiling Models RequestGroup.swift
[179/217] Compiling Models ResearchDefinition.swift
[180/217] Compiling Models ResearchElementDefinition.swift
[181/217] Compiling Models ResearchStudy.swift
[182/217] Compiling Models ResearchSubject.swift
[183/217] Compiling Models Resource+Meta.swift
[184/217] Compiling Models Resource.swift
[185/217] Compiling Models RiskAssessment.swift
[186/217] Compiling Models RiskEvidenceSynthesis.swift
[187/217] Compiling Models SampledData.swift
[188/217] Compiling Models Schedule.swift
[189/217] Compiling Models SearchParameter.swift
[190/217] Compiling Models ServiceRequest.swift
[191/217] Compiling Models Signature.swift
[192/217] Compiling Models Slot.swift
[193/217] Compiling Models Specimen.swift
[194/217] Compiling Models SpecimenDefinition.swift
[195/217] Compiling Models StructureDefinition.swift
[196/217] Compiling Models StructureMap.swift
[197/217] Compiling Models Subscription.swift
[198/217] Compiling Models Substance.swift
[199/217] Compiling Models SubstanceAmount.swift
[200/217] Compiling Models SubstanceNucleicAcid.swift
[201/217] Compiling Models SubstancePolymer.swift
[202/217] Compiling Models SubstanceProtein.swift
[203/217] Compiling Models SubstanceReferenceInformation.swift
[204/217] Compiling Models SubstanceSourceMaterial.swift
[205/217] Compiling Models SubstanceSpecification.swift
[206/217] Compiling Models SupplyDelivery.swift
[207/217] Compiling Models SupplyRequest.swift
[208/217] Compiling Models Task.swift
[209/217] Compiling Models TerminologyCapabilities.swift
[210/217] Compiling Models TestReport.swift
[211/217] Compiling Models TestScript.swift
[212/217] Compiling Models Timing.swift
[213/217] Compiling Models TriggerDefinition.swift
[214/217] Compiling Models UsageContext.swift
[215/217] Compiling Models ValueSet.swift
[216/217] Compiling Models VerificationResult.swift
[217/217] Compiling Models VisionPrescription.swift
BUILD FAILURE 6.2 linux