The Swift Package Index logo.Swift Package Index

Track the adoption of Swift 6 strict concurrency checks for data race safety. How many packages are Ready for Swift 6?

Build Information

Failed to build HealthKitToFhir, reference master (3193ec), with Swift 6.0 for Linux on 28 Nov 2024 00:07:47 UTC.

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4609320-1":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.0-latest swift build --triple x86_64-unknown-linux-gnu -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures 2>&1

Build Log

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