The Swift Package Index logo.Swift Package Index

Build Information

Failed to build swift-network-request, reference 0.1.0 (8cf48a), with Swift 6.1 for Android on 29 Jul 2025 14:25:30 UTC.

Build Command

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

Build Log

========================================
RunAll
========================================
Builder version: 4.64.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/vadimkrutovlv/swift-network-request.git
Reference: 0.1.0
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/vadimkrutovlv/swift-network-request
 * tag               0.1.0      -> FETCH_HEAD
HEAD is now at 8cf48a9 Initial commit
Cloned https://github.com/vadimkrutovlv/swift-network-request.git
Revision (git rev-parse @):
8cf48a9822d49595943ff3337c1eee4b0427a495
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/vadimkrutovlv/swift-network-request.git at 0.1.0
========================================
Build
========================================
Selected platform:         android
Swift version:             6.1
Building package at path:  $PWD
https://github.com/vadimkrutovlv/swift-network-request.git
https://github.com/vadimkrutovlv/swift-network-request.git
WARNING: environment variable SUPPRESS_SWIFT_6_FLAGS is not set
{
  "dependencies" : [
    {
      "identity" : "swift-syntax",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "601.0.1",
            "upper_bound" : "602.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/swiftlang/swift-syntax.git"
    },
    {
      "identity" : "swift-macro-testing",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "0.6.3",
            "upper_bound" : "1.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/pointfreeco/swift-macro-testing"
    },
    {
      "identity" : "swift-dependencies",
      "requirement" : {
        "exact" : [
          "1.9.2"
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/pointfreeco/swift-dependencies"
    },
    {
      "identity" : "swift-docc-plugin",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.1.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/swiftlang/swift-docc-plugin"
    }
  ],
  "manifest_display_name" : "swift-network-request",
  "name" : "swift-network-request",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "13.0"
    },
    {
      "name" : "ios",
      "version" : "15.0"
    },
    {
      "name" : "tvos",
      "version" : "13.0"
    },
    {
      "name" : "watchos",
      "version" : "8.0"
    }
  ],
  "products" : [
    {
      "name" : "SwiftNetworkRequest",
      "targets" : [
        "SwiftNetworkRequest"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "SwiftNetworkRequestMacros",
      "targets" : [
        "SwiftNetworkRequestMacros"
      ],
      "type" : {
        "macro" : null
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "SwiftNetworkRequestTests",
      "module_type" : "SwiftTarget",
      "name" : "SwiftNetworkRequestTests",
      "path" : "Tests/SwiftNetworkRequestTests",
      "product_dependencies" : [
        "SwiftSyntaxMacrosTestSupport",
        "MacroTesting"
      ],
      "sources" : [
        "BaseNetworkRequest.swift",
        "DefaultAuthorizationTests.swift",
        "DeleteMacroTests.swift",
        "DynamicResponsesTests.swift",
        "GetMacroTests.swift",
        "Mocks/URLSessionMock.swift",
        "PostMacroTests.swift",
        "PutMacroTests.swift"
      ],
      "target_dependencies" : [
        "SwiftNetworkRequest",
        "SwiftNetworkRequestMacros"
      ],
      "type" : "test"
    },
    {
      "c99name" : "SwiftNetworkRequestMacros",
      "module_type" : "SwiftTarget",
      "name" : "SwiftNetworkRequestMacros",
      "path" : "Sources/SwiftNetworkRequestMacros",
      "product_dependencies" : [
        "SwiftSyntaxMacros",
        "SwiftCompilerPlugin"
      ],
      "product_memberships" : [
        "SwiftNetworkRequest",
        "SwiftNetworkRequestMacros"
      ],
      "sources" : [
        "Helpers.swift",
        "Models.swift",
        "Plugin.swift",
        "RequestBuilder.swift",
        "RequestMacros.swift"
      ],
      "type" : "macro"
    },
    {
      "c99name" : "SwiftNetworkRequest",
      "module_type" : "SwiftTarget",
      "name" : "SwiftNetworkRequest",
      "path" : "Sources/SwiftNetworkRequest",
      "product_dependencies" : [
        "Dependencies"
      ],
      "product_memberships" : [
        "SwiftNetworkRequest"
      ],
      "sources" : [
        "DI/RequestAuthorization.swift",
        "DI/URLSession.swift",
        "Helpers/URLSession+Request.swift",
        "Macros/Delete.swift",
        "Macros/Get.swift",
        "Macros/HelperMacros.swift",
        "Macros/Post.swift",
        "Macros/Put.swift",
        "Models/DynamicAPIResponse.swift",
        "Models/KeyValuePair.swift",
        "Models/RequestConfig.swift"
      ],
      "target_dependencies" : [
        "SwiftNetworkRequestMacros"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "6.0"
}
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-3":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:android-6.1-latest swift build --swift-sdk aarch64-unknown-linux-android24 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats 2>&1
android-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:873b43b7be6289c04a5a3fd4b2c372c2a5abf90643451079297d3dc6dc0b7d36
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:android-6.1-latest
Fetching https://github.com/swiftlang/swift-docc-plugin
Fetching https://github.com/pointfreeco/swift-dependencies
Fetching https://github.com/pointfreeco/swift-macro-testing
Fetching https://github.com/swiftlang/swift-syntax.git
[1/908] Fetching swift-macro-testing
[909/3002] Fetching swift-macro-testing, swift-docc-plugin
[1056/9293] Fetching swift-macro-testing, swift-docc-plugin, swift-dependencies
[4097/80659] Fetching swift-macro-testing, swift-docc-plugin, swift-dependencies, swift-syntax
Fetched https://github.com/swiftlang/swift-docc-plugin from cache (0.99s)
[13622/78565] Fetching swift-macro-testing, swift-dependencies, swift-syntax
Fetched https://github.com/pointfreeco/swift-dependencies from cache (1.01s)
[8045/72274] Fetching swift-macro-testing, swift-syntax
Fetched https://github.com/pointfreeco/swift-macro-testing from cache (8.26s)
Fetched https://github.com/swiftlang/swift-syntax.git from cache (8.37s)
Computing version for https://github.com/pointfreeco/swift-dependencies
Computed https://github.com/pointfreeco/swift-dependencies at 1.9.2 (9.34s)
Fetching https://github.com/pointfreeco/swift-clocks
Fetching https://github.com/pointfreeco/combine-schedulers
Fetching https://github.com/pointfreeco/xctest-dynamic-overlay
[1/2410] Fetching combine-schedulers
[2363/3702] Fetching combine-schedulers, swift-clocks
[3655/9184] Fetching combine-schedulers, swift-clocks, xctest-dynamic-overlay
Fetched https://github.com/pointfreeco/swift-clocks from cache (0.58s)
Fetching https://github.com/pointfreeco/swift-concurrency-extras
[4720/7892] Fetching combine-schedulers, xctest-dynamic-overlay
[5927/8770] Fetching combine-schedulers, xctest-dynamic-overlay, swift-concurrency-extras
Fetched https://github.com/pointfreeco/swift-concurrency-extras from cache (0.41s)
Fetched https://github.com/pointfreeco/combine-schedulers from cache (1.22s)
Fetched https://github.com/pointfreeco/xctest-dynamic-overlay from cache (1.23s)
Computing version for https://github.com/pointfreeco/swift-macro-testing
Computed https://github.com/pointfreeco/swift-macro-testing at 0.6.3 (2.11s)
Fetching https://github.com/pointfreeco/swift-snapshot-testing
[1/15341] Fetching swift-snapshot-testing
Fetched https://github.com/pointfreeco/swift-snapshot-testing from cache (3.85s)
Computing version for https://github.com/swiftlang/swift-syntax.git
Computed https://github.com/swiftlang/swift-syntax.git at 601.0.1 (7.40s)
Computing version for https://github.com/pointfreeco/combine-schedulers
Computed https://github.com/pointfreeco/combine-schedulers at 1.0.3 (0.85s)
Computing version for https://github.com/pointfreeco/swift-clocks
Computed https://github.com/pointfreeco/swift-clocks at 1.0.6 (3.16s)
Computing version for https://github.com/pointfreeco/swift-concurrency-extras
Computed https://github.com/pointfreeco/swift-concurrency-extras at 1.3.1 (1.31s)
Computing version for https://github.com/pointfreeco/xctest-dynamic-overlay
Computed https://github.com/pointfreeco/xctest-dynamic-overlay at 1.6.0 (0.83s)
Computing version for https://github.com/swiftlang/swift-docc-plugin
Computed https://github.com/swiftlang/swift-docc-plugin at 1.4.5 (0.59s)
Fetching https://github.com/swiftlang/swift-docc-symbolkit
[1/3437] Fetching swift-docc-symbolkit
Fetched https://github.com/swiftlang/swift-docc-symbolkit from cache (0.55s)
Computing version for https://github.com/swiftlang/swift-docc-symbolkit
Computed https://github.com/swiftlang/swift-docc-symbolkit at 1.0.0 (1.13s)
Computing version for https://github.com/pointfreeco/swift-snapshot-testing
Computed https://github.com/pointfreeco/swift-snapshot-testing at 1.18.6 (0.58s)
Fetching https://github.com/pointfreeco/swift-custom-dump
[1/4581] Fetching swift-custom-dump
Fetched https://github.com/pointfreeco/swift-custom-dump from cache (0.45s)
Computing version for https://github.com/pointfreeco/swift-custom-dump
Computed https://github.com/pointfreeco/swift-custom-dump at 1.3.3 (1.02s)
Creating working copy for https://github.com/swiftlang/swift-docc-symbolkit
Working copy of https://github.com/swiftlang/swift-docc-symbolkit resolved at 1.0.0
Creating working copy for https://github.com/pointfreeco/swift-snapshot-testing
Working copy of https://github.com/pointfreeco/swift-snapshot-testing resolved at 1.18.6
Creating working copy for https://github.com/pointfreeco/swift-macro-testing
Working copy of https://github.com/pointfreeco/swift-macro-testing resolved at 0.6.3
Creating working copy for https://github.com/pointfreeco/xctest-dynamic-overlay
Working copy of https://github.com/pointfreeco/xctest-dynamic-overlay resolved at 1.6.0
Creating working copy for https://github.com/pointfreeco/swift-custom-dump
Working copy of https://github.com/pointfreeco/swift-custom-dump resolved at 1.3.3
Creating working copy for https://github.com/swiftlang/swift-syntax.git
Working copy of https://github.com/swiftlang/swift-syntax.git resolved at 601.0.1
Creating working copy for https://github.com/swiftlang/swift-docc-plugin
Working copy of https://github.com/swiftlang/swift-docc-plugin resolved at 1.4.5
Creating working copy for https://github.com/pointfreeco/swift-dependencies
Working copy of https://github.com/pointfreeco/swift-dependencies resolved at 1.9.2
Creating working copy for https://github.com/pointfreeco/combine-schedulers
Working copy of https://github.com/pointfreeco/combine-schedulers resolved at 1.0.3
Creating working copy for https://github.com/pointfreeco/swift-clocks
Working copy of https://github.com/pointfreeco/swift-clocks resolved at 1.0.6
Creating working copy for https://github.com/pointfreeco/swift-concurrency-extras
Working copy of https://github.com/pointfreeco/swift-concurrency-extras resolved at 1.3.1
[1/1] Compiling plugin Swift-DocC Preview
[2/2] Compiling plugin Swift-DocC
Building for debugging...
[2/54] Write sources
[34/54] Compiling _SwiftSyntaxCShims dummy.c
[35/54] Write swift-version-24593BA9C3E375BF.txt
[37/88] Emitting module IssueReportingPackageSupport
[38/88] Emitting module ConcurrencyExtras
[39/89] Compiling IssueReportingPackageSupport _Test.swift
[40/89] Emitting module IssueReportingPackageSupport
[41/90] Compiling IssueReportingPackageSupport _Test.swift
[42/91] Compiling ConcurrencyExtras UncheckedSendable.swift
[43/91] Compiling SwiftSyntax510 Empty.swift
[44/91] Emitting module SwiftSyntax510
[45/91] Compiling SwiftSyntax601 Empty.swift
[46/91] Emitting module SwiftSyntax601
[47/93] Emitting module SwiftSyntax600
[48/93] Compiling SwiftSyntax600 Empty.swift
[49/94] Compiling SwiftSyntax509 Empty.swift
[50/94] Emitting module SwiftSyntax509
[56/95] Wrapping AST for SwiftSyntax510 for debugging
[57/95] Wrapping AST for SwiftSyntax509 for debugging
[58/95] Wrapping AST for SwiftSyntax600 for debugging
[59/133] Wrapping AST for SwiftSyntax601 for debugging
[61/197] Compiling SwiftSyntax RawSyntaxTokenView.swift
[62/197] Compiling SwiftSyntax SourceEdit.swift
[63/199] Compiling ConcurrencyExtras MainSerialExecutor.swift
[64/199] Compiling ConcurrencyExtras Result.swift
[65/200] Compiling SwiftSyntax CommonAncestor.swift
[66/200] Compiling SwiftSyntax Convenience.swift
[67/200] Compiling SwiftSyntax Identifier.swift
[68/200] Compiling SwiftSyntax MemoryLayout.swift
[69/200] Compiling SwiftSyntax CustomTraits.swift
[70/200] Compiling SwiftSyntax EditorPlaceholder.swift
[71/200] Compiling ConcurrencyExtras UncheckedSendable.swift
[72/202] Emitting module IssueReporting
[73/202] Compiling IssueReporting WithExpectedIssue.swift
[74/202] Compiling IssueReporting WithIssueContext.swift
[75/202] Emitting module IssueReporting
[80/202] Compiling SwiftSyntax RawSyntaxLayoutView.swift
[81/202] Compiling SwiftSyntax RawSyntaxNodeProtocol.swift
[82/202] Compiling SwiftSyntax MissingNodeInitializers.swift
[83/202] Compiling SwiftSyntax RawSyntax.swift
[86/202] Compiling ConcurrencyExtras Result.swift
[87/202] Compiling ConcurrencyExtras LockIsolated.swift
[88/202] Compiling ConcurrencyExtras Task.swift
[89/202] Compiling ConcurrencyExtras MainSerialExecutor.swift
[94/203] Compiling SwiftSyntax SourceLength.swift
[95/203] Compiling SwiftSyntax AbsolutePosition.swift
[96/203] Compiling SwiftSyntax AbsoluteRawSyntax.swift
[100/203] Compiling SwiftSyntax AbsoluteSyntaxInfo.swift
[101/203] Compiling SwiftSyntax Assert.swift
[102/203] Compiling SwiftSyntax BumpPtrAllocator.swift
[104/227] Compiling CombineSchedulers UIScheduler.swift
[105/228] Compiling XCTestDynamicOverlay Exports.swift
[106/228] Compiling CombineSchedulers UIKit.swift
[107/228] Emitting module CombineSchedulers
[108/228] Compiling CombineSchedulers AnyScheduler.swift
[109/228] Compiling CombineSchedulers Concurrency.swift
[110/228] Compiling CombineSchedulers Timer.swift
[111/228] Compiling CombineSchedulers Lock.swift
[112/228] Compiling CombineSchedulers NSRecursiveLock.swift
[113/228] Compiling CombineSchedulers ImmediateScheduler.swift
[114/228] Compiling CombineSchedulers Deprecations.swift
[115/228] Compiling CombineSchedulers SwiftUI.swift
[116/228] Compiling CombineSchedulers TestScheduler.swift
[117/228] Compiling Clocks Timer.swift
[118/229] Compiling CombineSchedulers UnimplementedScheduler.swift
[119/230] Compiling Clocks AnyClock.swift
[120/230] Emitting module Clocks
[122/230] Compiling Clocks _AsyncTimerSequence.swift
[123/230] Compiling Clocks ImmediateClock.swift
[124/230] Compiling Clocks Lock.swift
[125/230] Compiling Clocks UnimplementedClock.swift
[126/230] Emitting module XCTestDynamicOverlay
[127/230] Compiling XCTestDynamicOverlay Deprecations.swift
[128/231] Compiling Clocks SwiftUI.swift
[129/231] Compiling Clocks TestClock.swift
[132/255] Compiling ConcurrencyExtras Task.swift
[133/255] Compiling ConcurrencyExtras LockIsolated.swift
[134/255] Compiling Dependencies DependencyKey.swift
[135/255] Compiling Dependencies DependencyValues.swift
[136/255] Compiling Dependencies TimeZone.swift
[137/255] Compiling Dependencies URLSession.swift
[138/255] Compiling Dependencies Clocks.swift
[139/255] Compiling Dependencies OpenURL.swift
[140/255] Emitting module ConcurrencyExtras
[141/255] Compiling Dependencies Context.swift
[142/255] Compiling Dependencies Date.swift
[146/255] Compiling Dependencies MainRunLoop.swift
[147/255] Compiling Dependencies Assert.swift
[148/255] Compiling Dependencies Calendar.swift
[149/256] Compiling Dependencies FireAndForget.swift
[150/256] Compiling Dependencies Locale.swift
[151/256] Compiling Dependencies MainQueue.swift
[152/256] Compiling Dependencies Dependency.swift
[153/256] Compiling Dependencies DependencyContext.swift
[169/269] Emitting module Dependencies
[173/278] Compiling Dependencies Deprecations.swift
[174/278] Compiling Dependencies Exports.swift
[175/278] Compiling Dependencies TypeName.swift
[182/292] Compiling Dependencies UUID.swift
[183/292] Compiling Dependencies WithRandomNumberGenerator.swift
[184/292] Compiling Dependencies AppEntryPoint.swift
[185/292] Compiling Clocks Timer.swift
[186/293] Compiling XCTestDynamicOverlay Exports.swift
[187/293] Emitting module CombineSchedulers
[188/293] Compiling CombineSchedulers AnyScheduler.swift
[189/293] Compiling CombineSchedulers Concurrency.swift
[190/293] Compiling CombineSchedulers ImmediateScheduler.swift
[191/293] Compiling CombineSchedulers Deprecations.swift
[192/294] Compiling CombineSchedulers SwiftUI.swift
[193/294] Compiling CombineSchedulers TestScheduler.swift
[194/294] Compiling CombineSchedulers Lock.swift
[195/294] Compiling CombineSchedulers NSRecursiveLock.swift
[196/294] Compiling CombineSchedulers UIKit.swift
[197/294] Compiling CombineSchedulers Timer.swift
[198/294] Compiling CombineSchedulers UIScheduler.swift
[199/294] Compiling Clocks ImmediateClock.swift
[200/294] Compiling Clocks Lock.swift
[201/294] Compiling Clocks AnyClock.swift
[202/294] Compiling Clocks _AsyncTimerSequence.swift
[203/294] Emitting module Clocks
[204/294] Compiling CombineSchedulers UnimplementedScheduler.swift
[205/295] Compiling Dependencies PreviewTrait.swift
[206/295] Compiling Dependencies TestTrait.swift
[207/295] Compiling Dependencies WithDependencies.swift
[209/295] Compiling Clocks UnimplementedClock.swift
[210/295] Compiling Clocks SwiftUI.swift
[211/295] Compiling Clocks TestClock.swift
[212/296] Emitting module XCTestDynamicOverlay
[213/296] Compiling XCTestDynamicOverlay Deprecations.swift
[221/321] Compiling Dependencies Context.swift
[222/321] Compiling Dependencies Date.swift
[223/321] Compiling Dependencies FireAndForget.swift
[224/324] Compiling Dependencies Assert.swift
[225/324] Compiling Dependencies Calendar.swift
[226/324] Compiling Dependencies Clocks.swift
[227/324] Compiling Dependencies UUID.swift
[228/324] Compiling Dependencies WithRandomNumberGenerator.swift
[229/324] Compiling Dependencies AppEntryPoint.swift
[230/324] Compiling Dependencies Deprecations.swift
[231/324] Compiling Dependencies Exports.swift
[232/324] Compiling Dependencies TypeName.swift
[233/324] Compiling Dependencies Locale.swift
[234/324] Compiling Dependencies MainQueue.swift
[235/324] Compiling Dependencies MainRunLoop.swift
[236/324] Compiling Dependencies OpenURL.swift
[237/324] Compiling Dependencies TimeZone.swift
[238/324] Compiling Dependencies URLSession.swift
[239/324] Compiling Dependencies PreviewTrait.swift
[240/324] Compiling Dependencies TestTrait.swift
[241/324] Compiling Dependencies WithDependencies.swift
[242/324] Emitting module Dependencies
[243/324] Compiling Dependencies Dependency.swift
[244/324] Compiling Dependencies DependencyContext.swift
[245/324] Compiling Dependencies DependencyKey.swift
[246/324] Compiling Dependencies DependencyValues.swift
[248/325] Emitting module SwiftSyntax
[249/325] Compiling SwiftSyntax SyntaxEnum.swift
[250/325] Compiling SwiftSyntax SyntaxKind.swift
[251/325] Compiling SwiftSyntax SyntaxRewriter.swift
[252/325] Compiling SwiftSyntax SyntaxTraits.swift
[253/325] Compiling SwiftSyntax SyntaxVisitor.swift
[254/325] Compiling SwiftSyntax TokenKind.swift
[255/325] Compiling SwiftSyntax Tokens.swift
[256/325] Compiling SwiftSyntax TriviaPieces.swift
[257/325] Compiling SwiftSyntax RawSyntaxNodesAB.swift
[258/325] Compiling SwiftSyntax RawSyntaxNodesC.swift
[259/325] Compiling SwiftSyntax RawSyntaxNodesD.swift
[260/325] Compiling SwiftSyntax RawSyntaxNodesEF.swift
[261/325] Compiling SwiftSyntax RawSyntaxNodesGHI.swift
[262/325] Compiling SwiftSyntax RawSyntaxNodesJKLMN.swift
[263/325] Compiling SwiftSyntax RawSyntaxNodesOP.swift
[264/325] Compiling SwiftSyntax RawSyntaxNodesQRS.swift
[265/325] Compiling SwiftSyntax RawSyntaxNodesTUVWXYZ.swift
[266/325] Compiling SwiftSyntax RawSyntaxValidation.swift
[283/325] Compiling SwiftSyntax SyntaxCollection.swift
[284/325] Compiling SwiftSyntax SyntaxHashable.swift
[285/325] Compiling SwiftSyntax SyntaxIdentifier.swift
[286/325] Compiling SwiftSyntax SyntaxNodeFactory.swift
[287/325] Compiling SwiftSyntax SyntaxNodeStructure.swift
[288/325] Compiling SwiftSyntax SyntaxProtocol.swift
[289/325] Compiling SwiftSyntax SyntaxText.swift
[290/325] Compiling SwiftSyntax SyntaxTreeViewMode.swift
[291/325] Compiling SwiftSyntax TokenDiagnostic.swift
[292/325] Compiling SwiftSyntax TokenSequence.swift
[293/325] Compiling SwiftSyntax TokenSyntax.swift
[294/325] Compiling SwiftSyntax Trivia.swift
[295/325] Compiling SwiftSyntax Utils.swift
[296/325] Compiling SwiftSyntax ChildNameForKeyPath.swift
[297/325] Compiling SwiftSyntax Keyword.swift
[298/325] Compiling SwiftSyntax RenamedChildrenCompatibility.swift
[299/325] Compiling SwiftSyntax RenamedNodesCompatibility.swift
[300/325] Compiling SwiftSyntax SyntaxAnyVisitor.swift
[301/325] Compiling SwiftSyntax SyntaxBaseNodes.swift
[302/325] Compiling SwiftSyntax SyntaxCollections.swift
[303/325] Compiling SwiftSyntax SyntaxNodesAB.swift
[304/325] Compiling SwiftSyntax SyntaxNodesC.swift
[305/325] Compiling SwiftSyntax SyntaxNodesD.swift
[306/325] Compiling SwiftSyntax SyntaxNodesEF.swift
[307/325] Compiling SwiftSyntax SyntaxNodesGHI.swift
[308/325] Compiling SwiftSyntax SyntaxNodesJKLMN.swift
[309/325] Compiling SwiftSyntax SyntaxNodesOP.swift
[310/325] Compiling SwiftSyntax SyntaxNodesQRS.swift
[311/325] Compiling SwiftSyntax SyntaxNodesTUVWXYZ.swift
[312/326] Wrapping AST for SwiftSyntax for debugging
[314/384] Compiling SwiftDiagnostics Message.swift
[315/385] Compiling SwiftBasicFormat Syntax+Extensions.swift
[316/385] Emitting module SwiftBasicFormat
[317/385] Compiling SwiftBasicFormat InferIndentation.swift
[318/385] Compiling SwiftBasicFormat Indenter.swift
[319/385] Compiling SwiftBasicFormat BasicFormat.swift
[320/385] Compiling SwiftBasicFormat Trivia+FormatExtensions.swift
[321/385] Compiling SwiftBasicFormat SyntaxProtocol+Formatted.swift
[322/386] Emitting module SwiftDiagnostics
[324/386] Compiling SwiftDiagnostics Note.swift
[325/386] Compiling SwiftDiagnostics FixIt.swift
[326/386] Compiling SwiftDiagnostics GroupedDiagnostics.swift
[326/386] Wrapping AST for SwiftBasicFormat for debugging
[328/386] Compiling SwiftDiagnostics DiagnosticDecorator.swift
[329/386] Compiling SwiftDiagnostics DiagnosticsFormatter.swift
[330/386] Compiling SwiftParser IncrementalParseTransition.swift
[331/386] Compiling SwiftParser IsValidIdentifier.swift
[332/386] Compiling SwiftParser ExpressionInterpretedAsVersionTuple.swift
[333/386] Compiling SwiftParser Expressions.swift
[334/387] Wrapping AST for SwiftDiagnostics for debugging
[336/387] Emitting module SwiftParser
[337/392] Compiling SwiftParser SwiftParserCompatibility.swift
[338/392] Compiling SwiftParser SwiftVersion.swift
[339/392] Compiling SwiftParser SyntaxUtils.swift
[340/392] Compiling SwiftParser TokenConsumer.swift
[341/392] Compiling SwiftParser TokenPrecedence.swift
[342/392] Compiling SwiftParser TokenSpec.swift
[343/392] Compiling SwiftParser TokenSpecSet.swift
[344/392] Compiling SwiftParser TopLevel.swift
[345/392] Compiling SwiftParser TriviaParser.swift
[346/392] Compiling SwiftParser Types.swift
[347/392] Compiling SwiftParser Attributes.swift
[348/392] Compiling SwiftParser Availability.swift
[349/392] Compiling SwiftParser CharacterInfo.swift
[350/392] Compiling SwiftParser CollectionNodes+Parsable.swift
[351/392] Compiling SwiftParser Declarations.swift
[352/392] Compiling SwiftParser Directives.swift
[353/392] Compiling SwiftParser LexemeSequence.swift
[354/392] Compiling SwiftParser Lexer.swift
[355/392] Compiling SwiftParser RegexLiteralLexer.swift
[356/392] Compiling SwiftParser UnicodeScalarExtensions.swift
[357/392] Compiling SwiftParser Lookahead.swift
[358/392] Compiling SwiftParser LoopProgressCondition.swift
[359/392] Compiling SwiftParser Patterns.swift
[360/392] Compiling SwiftParser Recovery.swift
[361/392] Compiling SwiftParser Specifiers.swift
[362/392] Compiling SwiftParser Statements.swift
[363/392] Compiling SwiftParser StringLiteralRepresentedLiteralValue.swift
[364/392] Compiling SwiftParser StringLiterals.swift
[365/392] Compiling SwiftParser Modifiers.swift
[366/392] Compiling SwiftParser Names.swift
[367/392] Compiling SwiftParser Nominals.swift
[368/392] Compiling SwiftParser Parameters.swift
[369/392] Compiling SwiftParser ParseSourceFile.swift
[370/392] Compiling SwiftParser Parser.swift
[375/392] Compiling SwiftParser Cursor.swift
[376/392] Compiling SwiftParser Lexeme.swift
[377/392] Compiling SwiftParser ExperimentalFeatures.swift
[378/392] Compiling SwiftParser IsLexerClassified.swift
[379/392] Compiling SwiftParser LayoutNodes+Parsable.swift
[380/392] Compiling SwiftParser Parser+TokenSpecSet.swift
[381/392] Compiling SwiftParser TokenSpecStaticMembers.swift
[382/393] Wrapping AST for SwiftParser for debugging
[384/416] Compiling SwiftOperators PrecedenceGroup.swift
[385/417] Compiling SwiftParserDiagnostics DiagnosticExtensions.swift
[386/417] Compiling SwiftParserDiagnostics LexerDiagnosticMessages.swift
[387/417] Compiling SwiftParserDiagnostics SyntaxKindNameForDiagnostics.swift
[388/418] Compiling SwiftOperators OperatorTable.swift
[389/418] Compiling SwiftOperators PrecedenceGraph.swift
[390/418] Compiling SwiftOperators SyntaxSynthesis.swift
[391/418] Compiling SwiftParserDiagnostics TokenNameForDiagnostics.swift
[392/418] Emitting module SwiftOperators
[393/418] Compiling SwiftOperators OperatorTable+Semantics.swift
[394/418] Compiling SwiftParserDiagnostics MultiLineStringLiteralDiagnosticsGenerator.swift
[395/418] Compiling SwiftParserDiagnostics ParseDiagnosticsGenerator.swift
[396/418] Compiling SwiftOperators OperatorTable+Folding.swift
[398/419] Compiling SwiftParserDiagnostics ChildNameForDiagnostics.swift
[398/419] Wrapping AST for SwiftOperators for debugging
[400/419] Compiling SwiftParserDiagnostics SyntaxExtensions.swift
[401/419] Compiling SwiftParserDiagnostics Utils.swift
[402/419] Compiling SwiftParserDiagnostics ParserDiagnosticMessages.swift
[403/419] Compiling SwiftParserDiagnostics PresenceUtils.swift
[404/419] Compiling SwiftParserDiagnostics MissingNodesError.swift
[405/419] Compiling SwiftParserDiagnostics MissingTokenError.swift
[406/419] Emitting module SwiftParserDiagnostics
[411/420] Wrapping AST for SwiftParserDiagnostics for debugging
[413/435] Emitting module SwiftSyntaxBuilder
[414/435] Compiling SwiftSyntaxBuilder ConvenienceInitializers.swift
[415/435] Compiling SwiftSyntaxBuilder DeclSyntaxParseable.swift
[416/436] Compiling SwiftSyntaxBuilder SyntaxExpressibleByStringInterpolationConformances.swift
[417/436] Compiling SwiftSyntaxBuilder SyntaxParsable+ExpressibleByStringInterpolation.swift
[418/436] Compiling SwiftSyntaxBuilder ValidatingSyntaxNodes.swift
[419/436] Compiling SwiftSyntaxBuilder Syntax+StringInterpolation.swift
[420/436] Compiling SwiftSyntaxBuilder SyntaxNodeWithBody.swift
[421/436] Compiling SwiftSyntaxBuilder WithTrailingCommaSyntax+EnsuringTrailingComma.swift
[422/436] Compiling SwiftSyntaxBuilder BuildableNodes.swift
[423/436] Compiling SwiftSyntaxBuilder RenamedChildrenBuilderCompatibility.swift
[424/436] Compiling SwiftSyntaxBuilder ResultBuilders.swift
[425/436] Compiling SwiftSyntaxBuilder ResultBuilderExtensions.swift
[426/436] Compiling SwiftSyntaxBuilder SwiftSyntaxBuilderCompatibility.swift
[427/436] Compiling SwiftSyntaxBuilder Indenter.swift
[428/436] Compiling SwiftSyntaxBuilder ListBuilder.swift
[429/437] Wrapping AST for SwiftSyntaxBuilder for debugging
[431/454] Compiling SwiftSyntaxMacros Macro.swift
[432/454] Compiling SwiftSyntaxMacros MemberAttributeMacro.swift
[433/456] Compiling SwiftSyntaxMacros CodeItemMacro.swift
[434/456] Compiling SwiftSyntaxMacros DeclarationMacro.swift
[435/456] Compiling SwiftSyntaxMacros AccessorMacro.swift
[436/456] Compiling SwiftSyntaxMacros AttachedMacro.swift
[437/456] Compiling SwiftSyntaxMacros BodyMacro.swift
[438/456] Compiling SwiftSyntaxMacros ExpressionMacro.swift
[439/456] Compiling SwiftSyntaxMacros ExtensionMacro.swift
[440/456] Compiling SwiftSyntaxMacros FreestandingMacro.swift
[441/456] Compiling SwiftSyntaxMacros Macro+Format.swift
[442/456] Compiling SwiftSyntaxMacros MemberMacro.swift
[443/456] Compiling SwiftSyntaxMacros PeerMacro.swift
[444/456] Emitting module SwiftSyntaxMacros
[445/456] Compiling SwiftSyntaxMacros AbstractSourceLocation.swift
[446/456] Compiling SwiftSyntaxMacros MacroExpansionContext.swift
[447/456] Compiling SwiftSyntaxMacros MacroExpansionDiagnosticMessages.swift
[448/456] Compiling SwiftSyntaxMacros PreambleMacro.swift
[449/456] Compiling SwiftSyntaxMacros Syntax+LexicalContext.swift
[450/457] Wrapping AST for SwiftSyntaxMacros for debugging
[452/466] Compiling SwiftSyntaxMacroExpansion MacroSpec.swift
[453/467] Compiling SwiftSyntaxMacroExpansion BasicMacroExpansionContext.swift
[454/467] Compiling SwiftSyntaxMacroExpansion FunctionParameterUtils.swift
[455/467] Emitting module SwiftSyntaxMacroExpansion
[456/467] Compiling SwiftSyntaxMacroExpansion MacroExpansion.swift
[457/467] Compiling SwiftSyntaxMacroExpansion MacroArgument.swift
[458/467] Compiling SwiftSyntaxMacroExpansion IndentationUtils.swift
[459/467] Compiling SwiftSyntaxMacroExpansion MacroExpansionDiagnosticMessages.swift
[460/467] Compiling SwiftSyntaxMacroExpansion MacroReplacement.swift
[461/467] Compiling SwiftSyntaxMacroExpansion MacroSystem.swift
[462/468] Wrapping AST for SwiftSyntaxMacroExpansion for debugging
[464/480] Compiling SwiftCompilerPluginMessageHandling CodingUtilities.swift
[465/480] Compiling SwiftCompilerPluginMessageHandling JSON.swift
[466/480] Compiling SwiftCompilerPluginMessageHandling LRUCache.swift
[467/480] Compiling SwiftCompilerPluginMessageHandling Macros.swift
[468/481] Compiling SwiftCompilerPluginMessageHandling PluginMacroExpansionContext.swift
[469/481] Compiling SwiftCompilerPluginMessageHandling CompilerPluginMessageHandler.swift
[470/481] Compiling SwiftCompilerPluginMessageHandling Diagnostics.swift
[471/481] Compiling SwiftCompilerPluginMessageHandling StandardIOMessageConnection.swift
[472/481] Emitting module SwiftCompilerPluginMessageHandling
[473/481] Compiling SwiftCompilerPluginMessageHandling PluginMessageCompatibility.swift
[474/481] Compiling SwiftCompilerPluginMessageHandling PluginMessages.swift
[475/481] Compiling SwiftCompilerPluginMessageHandling JSONDecoding.swift
[476/481] Compiling SwiftCompilerPluginMessageHandling JSONEncoding.swift
[477/482] Wrapping AST for SwiftCompilerPluginMessageHandling for debugging
[479/484] Emitting module SwiftCompilerPlugin
[480/484] Compiling SwiftCompilerPlugin CompilerPlugin.swift
[481/485] Wrapping AST for SwiftCompilerPlugin for debugging
[483/491] Compiling SwiftNetworkRequestMacros Plugin.swift
[484/491] Emitting module SwiftNetworkRequestMacros
[485/491] Compiling SwiftNetworkRequestMacros Helpers.swift
[486/491] Compiling SwiftNetworkRequestMacros Models.swift
[487/491] Compiling SwiftNetworkRequestMacros RequestMacros.swift
[488/491] Compiling SwiftNetworkRequestMacros RequestBuilder.swift
[489/492] Wrapping AST for SwiftNetworkRequestMacros for debugging
[490/492] Write Objects.LinkFileList
[491/492] Linking SwiftNetworkRequestMacros-tool
[493/514] Compiling SwiftNetworkRequest Put.swift
[494/515] Compiling SwiftNetworkRequest KeyValuePair.swift
error: emit-module command failed with exit code 1 (use -v to see invocation)
[495/516] Emitting module SwiftNetworkRequest
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:50:28: error: cannot find type 'URLRequest' in scope
 48 | /// - [`swift-dependencies`](https://github.com/pointfreeco/swift-dependencies)
 49 | public protocol HTTPSession: Sendable {
 50 |     func data(for request: URLRequest) async throws -> (Data, URLResponse)
    |                            `- error: cannot find type 'URLRequest' in scope
 51 |     func upload(for request: URLRequest, from bodyData: Data) async throws -> (Data, URLResponse)
 52 |     func download(for request: URLRequest) async throws -> (URL, URLResponse)
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:51:30: error: cannot find type 'URLRequest' in scope
 49 | public protocol HTTPSession: Sendable {
 50 |     func data(for request: URLRequest) async throws -> (Data, URLResponse)
 51 |     func upload(for request: URLRequest, from bodyData: Data) async throws -> (Data, URLResponse)
    |                              `- error: cannot find type 'URLRequest' in scope
 52 |     func download(for request: URLRequest) async throws -> (URL, URLResponse)
 53 | }
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:52:32: error: cannot find type 'URLRequest' in scope
 50 |     func data(for request: URLRequest) async throws -> (Data, URLResponse)
 51 |     func upload(for request: URLRequest, from bodyData: Data) async throws -> (Data, URLResponse)
 52 |     func download(for request: URLRequest) async throws -> (URL, URLResponse)
    |                                `- error: cannot find type 'URLRequest' in scope
 53 | }
 54 |
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/DI/URLSession.swift:35:56: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
33 |
34 | private enum URLSessionKey: DependencyKey {
35 |     static let liveValue: any HTTPSession = URLSession.shared
   |                                                        `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
36 | }
37 |
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:50:63: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 48 | /// - [`swift-dependencies`](https://github.com/pointfreeco/swift-dependencies)
 49 | public protocol HTTPSession: Sendable {
 50 |     func data(for request: URLRequest) async throws -> (Data, URLResponse)
    |                                                               `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 51 |     func upload(for request: URLRequest, from bodyData: Data) async throws -> (Data, URLResponse)
 52 |     func download(for request: URLRequest) async throws -> (URL, URLResponse)
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
  |                  `- note: 'URLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:51:86: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 49 | public protocol HTTPSession: Sendable {
 50 |     func data(for request: URLRequest) async throws -> (Data, URLResponse)
 51 |     func upload(for request: URLRequest, from bodyData: Data) async throws -> (Data, URLResponse)
    |                                                                                      `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 52 |     func download(for request: URLRequest) async throws -> (URL, URLResponse)
 53 | }
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
  |                  `- note: 'URLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:52:66: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 50 |     func data(for request: URLRequest) async throws -> (Data, URLResponse)
 51 |     func upload(for request: URLRequest, from bodyData: Data) async throws -> (Data, URLResponse)
 52 |     func download(for request: URLRequest) async throws -> (URL, URLResponse)
    |                                                                  `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 53 | }
 54 |
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
  |                  `- note: 'URLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:81:1: error: non-nominal type 'URLSession' (aka 'AnyObject') cannot be extended
 79 | }
 80 |
 81 | extension URLSession: HTTPSession {
    | `- error: non-nominal type 'URLSession' (aka 'AnyObject') cannot be extended
 82 |     public func download(for request: URLRequest) async throws -> (URL, URLResponse) {
 83 |         try await self.download(for: request, delegate: nil)
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:129:61: error: cannot find type 'URLRequest' in scope
127 |     }
128 |
129 |     func createURLRequest(apiRequest: ApiRequest) throws -> URLRequest {
    |                                                             `- error: cannot find type 'URLRequest' in scope
130 |         var components = URLComponents(string: apiRequest.path)
131 |
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:156:47: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
154 |     }
155 |
156 |     func handleResponse(data: Data, response: URLResponse) throws {
    |                                               `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
157 |         guard let httpResponse = response as? HTTPURLResponse else {
158 |             throw ApiRequestError(message: "Invalid Response")
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
[496/516] Compiling SwiftNetworkRequest URLSession+Request.swift
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:50:28: error: cannot find type 'URLRequest' in scope
 48 | /// - [`swift-dependencies`](https://github.com/pointfreeco/swift-dependencies)
 49 | public protocol HTTPSession: Sendable {
 50 |     func data(for request: URLRequest) async throws -> (Data, URLResponse)
    |                            `- error: cannot find type 'URLRequest' in scope
 51 |     func upload(for request: URLRequest, from bodyData: Data) async throws -> (Data, URLResponse)
 52 |     func download(for request: URLRequest) async throws -> (URL, URLResponse)
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:50:63: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 48 | /// - [`swift-dependencies`](https://github.com/pointfreeco/swift-dependencies)
 49 | public protocol HTTPSession: Sendable {
 50 |     func data(for request: URLRequest) async throws -> (Data, URLResponse)
    |                                                               `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 51 |     func upload(for request: URLRequest, from bodyData: Data) async throws -> (Data, URLResponse)
 52 |     func download(for request: URLRequest) async throws -> (URL, URLResponse)
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
  |                  `- note: 'URLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:51:30: error: cannot find type 'URLRequest' in scope
 49 | public protocol HTTPSession: Sendable {
 50 |     func data(for request: URLRequest) async throws -> (Data, URLResponse)
 51 |     func upload(for request: URLRequest, from bodyData: Data) async throws -> (Data, URLResponse)
    |                              `- error: cannot find type 'URLRequest' in scope
 52 |     func download(for request: URLRequest) async throws -> (URL, URLResponse)
 53 | }
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:51:86: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 49 | public protocol HTTPSession: Sendable {
 50 |     func data(for request: URLRequest) async throws -> (Data, URLResponse)
 51 |     func upload(for request: URLRequest, from bodyData: Data) async throws -> (Data, URLResponse)
    |                                                                                      `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 52 |     func download(for request: URLRequest) async throws -> (URL, URLResponse)
 53 | }
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
  |                  `- note: 'URLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:52:32: error: cannot find type 'URLRequest' in scope
 50 |     func data(for request: URLRequest) async throws -> (Data, URLResponse)
 51 |     func upload(for request: URLRequest, from bodyData: Data) async throws -> (Data, URLResponse)
 52 |     func download(for request: URLRequest) async throws -> (URL, URLResponse)
    |                                `- error: cannot find type 'URLRequest' in scope
 53 | }
 54 |
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:52:66: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 50 |     func data(for request: URLRequest) async throws -> (Data, URLResponse)
 51 |     func upload(for request: URLRequest, from bodyData: Data) async throws -> (Data, URLResponse)
 52 |     func download(for request: URLRequest) async throws -> (URL, URLResponse)
    |                                                                  `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 53 | }
 54 |
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
  |                  `- note: 'URLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:81:1: error: non-nominal type 'URLSession' (aka 'AnyObject') cannot be extended
 79 | }
 80 |
 81 | extension URLSession: HTTPSession {
    | `- error: non-nominal type 'URLSession' (aka 'AnyObject') cannot be extended
 82 |     public func download(for request: URLRequest) async throws -> (URL, URLResponse) {
 83 |         try await self.download(for: request, delegate: nil)
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:129:61: error: cannot find type 'URLRequest' in scope
127 |     }
128 |
129 |     func createURLRequest(apiRequest: ApiRequest) throws -> URLRequest {
    |                                                             `- error: cannot find type 'URLRequest' in scope
130 |         var components = URLComponents(string: apiRequest.path)
131 |
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:156:47: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
154 |     }
155 |
156 |     func handleResponse(data: Data, response: URLResponse) throws {
    |                                               `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
157 |         guard let httpResponse = response as? HTTPURLResponse else {
158 |             throw ApiRequestError(message: "Invalid Response")
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
  |                  `- note: 'URLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:115:26: error: cannot infer contextual base in reference to member 'init'
113 |     ) async throws -> Data {
114 |         let urlRequest = try createURLRequest(
115 |             apiRequest: .init(
    |                          `- error: cannot infer contextual base in reference to member 'init'
116 |                 path: path,
117 |                 httpMethod: httpMethod,
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:142:23: error: cannot find 'URLRequest' in scope
140 |         }
141 |
142 |         var request = URLRequest(url: url)
    |                       `- error: cannot find 'URLRequest' in scope
143 |         request.httpMethod = apiRequest.httpMethod
144 |
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:157:43: warning: conditional cast from 'URLResponse' (aka 'AnyObject') to 'HTTPURLResponse' (aka 'AnyObject') always succeeds
155 |
156 |     func handleResponse(data: Data, response: URLResponse) throws {
157 |         guard let httpResponse = response as? HTTPURLResponse else {
    |                                           `- warning: conditional cast from 'URLResponse' (aka 'AnyObject') to 'HTTPURLResponse' (aka 'AnyObject') always succeeds
158 |             throw ApiRequestError(message: "Invalid Response")
159 |         }
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:157:47: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
155 |
156 |     func handleResponse(data: Data, response: URLResponse) throws {
157 |         guard let httpResponse = response as? HTTPURLResponse else {
    |                                               `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
158 |             throw ApiRequestError(message: "Invalid Response")
159 |         }
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' 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 HTTPURLResponse = AnyObject
  |                  `- note: 'HTTPURLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:161:49: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
159 |         }
160 |
161 |         guard (200...299).contains(httpResponse.statusCode) else {
    |                                                 `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
162 |             throw URLError(.badServerResponse)
163 |         }
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:82:39: error: cannot find type 'URLRequest' in scope
 80 |
 81 | extension URLSession: HTTPSession {
 82 |     public func download(for request: URLRequest) async throws -> (URL, URLResponse) {
    |                                       `- error: cannot find type 'URLRequest' in scope
 83 |         try await self.download(for: request, delegate: nil)
 84 |     }
[497/516] Compiling SwiftNetworkRequest Delete.swift
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:50:28: error: cannot find type 'URLRequest' in scope
 48 | /// - [`swift-dependencies`](https://github.com/pointfreeco/swift-dependencies)
 49 | public protocol HTTPSession: Sendable {
 50 |     func data(for request: URLRequest) async throws -> (Data, URLResponse)
    |                            `- error: cannot find type 'URLRequest' in scope
 51 |     func upload(for request: URLRequest, from bodyData: Data) async throws -> (Data, URLResponse)
 52 |     func download(for request: URLRequest) async throws -> (URL, URLResponse)
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:50:63: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 48 | /// - [`swift-dependencies`](https://github.com/pointfreeco/swift-dependencies)
 49 | public protocol HTTPSession: Sendable {
 50 |     func data(for request: URLRequest) async throws -> (Data, URLResponse)
    |                                                               `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 51 |     func upload(for request: URLRequest, from bodyData: Data) async throws -> (Data, URLResponse)
 52 |     func download(for request: URLRequest) async throws -> (URL, URLResponse)
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
  |                  `- note: 'URLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:51:30: error: cannot find type 'URLRequest' in scope
 49 | public protocol HTTPSession: Sendable {
 50 |     func data(for request: URLRequest) async throws -> (Data, URLResponse)
 51 |     func upload(for request: URLRequest, from bodyData: Data) async throws -> (Data, URLResponse)
    |                              `- error: cannot find type 'URLRequest' in scope
 52 |     func download(for request: URLRequest) async throws -> (URL, URLResponse)
 53 | }
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:51:86: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 49 | public protocol HTTPSession: Sendable {
 50 |     func data(for request: URLRequest) async throws -> (Data, URLResponse)
 51 |     func upload(for request: URLRequest, from bodyData: Data) async throws -> (Data, URLResponse)
    |                                                                                      `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 52 |     func download(for request: URLRequest) async throws -> (URL, URLResponse)
 53 | }
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
  |                  `- note: 'URLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:52:32: error: cannot find type 'URLRequest' in scope
 50 |     func data(for request: URLRequest) async throws -> (Data, URLResponse)
 51 |     func upload(for request: URLRequest, from bodyData: Data) async throws -> (Data, URLResponse)
 52 |     func download(for request: URLRequest) async throws -> (URL, URLResponse)
    |                                `- error: cannot find type 'URLRequest' in scope
 53 | }
 54 |
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:52:66: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 50 |     func data(for request: URLRequest) async throws -> (Data, URLResponse)
 51 |     func upload(for request: URLRequest, from bodyData: Data) async throws -> (Data, URLResponse)
 52 |     func download(for request: URLRequest) async throws -> (URL, URLResponse)
    |                                                                  `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 53 | }
 54 |
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
  |                  `- note: 'URLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:81:1: error: non-nominal type 'URLSession' (aka 'AnyObject') cannot be extended
 79 | }
 80 |
 81 | extension URLSession: HTTPSession {
    | `- error: non-nominal type 'URLSession' (aka 'AnyObject') cannot be extended
 82 |     public func download(for request: URLRequest) async throws -> (URL, URLResponse) {
 83 |         try await self.download(for: request, delegate: nil)
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:129:61: error: cannot find type 'URLRequest' in scope
127 |     }
128 |
129 |     func createURLRequest(apiRequest: ApiRequest) throws -> URLRequest {
    |                                                             `- error: cannot find type 'URLRequest' in scope
130 |         var components = URLComponents(string: apiRequest.path)
131 |
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:156:47: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
154 |     }
155 |
156 |     func handleResponse(data: Data, response: URLResponse) throws {
    |                                               `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
157 |         guard let httpResponse = response as? HTTPURLResponse else {
158 |             throw ApiRequestError(message: "Invalid Response")
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
  |                  `- note: 'URLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:115:26: error: cannot infer contextual base in reference to member 'init'
113 |     ) async throws -> Data {
114 |         let urlRequest = try createURLRequest(
115 |             apiRequest: .init(
    |                          `- error: cannot infer contextual base in reference to member 'init'
116 |                 path: path,
117 |                 httpMethod: httpMethod,
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:142:23: error: cannot find 'URLRequest' in scope
140 |         }
141 |
142 |         var request = URLRequest(url: url)
    |                       `- error: cannot find 'URLRequest' in scope
143 |         request.httpMethod = apiRequest.httpMethod
144 |
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:157:43: warning: conditional cast from 'URLResponse' (aka 'AnyObject') to 'HTTPURLResponse' (aka 'AnyObject') always succeeds
155 |
156 |     func handleResponse(data: Data, response: URLResponse) throws {
157 |         guard let httpResponse = response as? HTTPURLResponse else {
    |                                           `- warning: conditional cast from 'URLResponse' (aka 'AnyObject') to 'HTTPURLResponse' (aka 'AnyObject') always succeeds
158 |             throw ApiRequestError(message: "Invalid Response")
159 |         }
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:157:47: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
155 |
156 |     func handleResponse(data: Data, response: URLResponse) throws {
157 |         guard let httpResponse = response as? HTTPURLResponse else {
    |                                               `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
158 |             throw ApiRequestError(message: "Invalid Response")
159 |         }
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' 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 HTTPURLResponse = AnyObject
  |                  `- note: 'HTTPURLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:161:49: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
159 |         }
160 |
161 |         guard (200...299).contains(httpResponse.statusCode) else {
    |                                                 `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
162 |             throw URLError(.badServerResponse)
163 |         }
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:82:39: error: cannot find type 'URLRequest' in scope
 80 |
 81 | extension URLSession: HTTPSession {
 82 |     public func download(for request: URLRequest) async throws -> (URL, URLResponse) {
    |                                       `- error: cannot find type 'URLRequest' in scope
 83 |         try await self.download(for: request, delegate: nil)
 84 |     }
[498/516] Compiling SwiftNetworkRequest RequestAuthorization.swift
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:50:28: error: cannot find type 'URLRequest' in scope
 48 | /// - [`swift-dependencies`](https://github.com/pointfreeco/swift-dependencies)
 49 | public protocol HTTPSession: Sendable {
 50 |     func data(for request: URLRequest) async throws -> (Data, URLResponse)
    |                            `- error: cannot find type 'URLRequest' in scope
 51 |     func upload(for request: URLRequest, from bodyData: Data) async throws -> (Data, URLResponse)
 52 |     func download(for request: URLRequest) async throws -> (URL, URLResponse)
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:51:30: error: cannot find type 'URLRequest' in scope
 49 | public protocol HTTPSession: Sendable {
 50 |     func data(for request: URLRequest) async throws -> (Data, URLResponse)
 51 |     func upload(for request: URLRequest, from bodyData: Data) async throws -> (Data, URLResponse)
    |                              `- error: cannot find type 'URLRequest' in scope
 52 |     func download(for request: URLRequest) async throws -> (URL, URLResponse)
 53 | }
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:52:32: error: cannot find type 'URLRequest' in scope
 50 |     func data(for request: URLRequest) async throws -> (Data, URLResponse)
 51 |     func upload(for request: URLRequest, from bodyData: Data) async throws -> (Data, URLResponse)
 52 |     func download(for request: URLRequest) async throws -> (URL, URLResponse)
    |                                `- error: cannot find type 'URLRequest' in scope
 53 | }
 54 |
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/DI/URLSession.swift:35:56: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
33 |
34 | private enum URLSessionKey: DependencyKey {
35 |     static let liveValue: any HTTPSession = URLSession.shared
   |                                                        `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
36 | }
37 |
[499/516] Compiling SwiftNetworkRequest URLSession.swift
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:50:28: error: cannot find type 'URLRequest' in scope
 48 | /// - [`swift-dependencies`](https://github.com/pointfreeco/swift-dependencies)
 49 | public protocol HTTPSession: Sendable {
 50 |     func data(for request: URLRequest) async throws -> (Data, URLResponse)
    |                            `- error: cannot find type 'URLRequest' in scope
 51 |     func upload(for request: URLRequest, from bodyData: Data) async throws -> (Data, URLResponse)
 52 |     func download(for request: URLRequest) async throws -> (URL, URLResponse)
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:51:30: error: cannot find type 'URLRequest' in scope
 49 | public protocol HTTPSession: Sendable {
 50 |     func data(for request: URLRequest) async throws -> (Data, URLResponse)
 51 |     func upload(for request: URLRequest, from bodyData: Data) async throws -> (Data, URLResponse)
    |                              `- error: cannot find type 'URLRequest' in scope
 52 |     func download(for request: URLRequest) async throws -> (URL, URLResponse)
 53 | }
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:52:32: error: cannot find type 'URLRequest' in scope
 50 |     func data(for request: URLRequest) async throws -> (Data, URLResponse)
 51 |     func upload(for request: URLRequest, from bodyData: Data) async throws -> (Data, URLResponse)
 52 |     func download(for request: URLRequest) async throws -> (URL, URLResponse)
    |                                `- error: cannot find type 'URLRequest' in scope
 53 | }
 54 |
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/DI/URLSession.swift:35:56: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
33 |
34 | private enum URLSessionKey: DependencyKey {
35 |     static let liveValue: any HTTPSession = URLSession.shared
   |                                                        `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
36 | }
37 |
[500/516] Compiling SwiftNetworkRequest KeyValuePair.swift
[501/516] Compiling SwiftNetworkRequest Get.swift
[502/516] Compiling SwiftNetworkRequest HelperMacros.swift
error: emit-module command failed with exit code 1 (use -v to see invocation)
[505/516] Emitting module SwiftNetworkRequest
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:50:28: error: cannot find type 'URLRequest' in scope
 48 | /// - [`swift-dependencies`](https://github.com/pointfreeco/swift-dependencies)
 49 | public protocol HTTPSession: Sendable {
 50 |     func data(for request: URLRequest) async throws -> (Data, URLResponse)
    |                            `- error: cannot find type 'URLRequest' in scope
 51 |     func upload(for request: URLRequest, from bodyData: Data) async throws -> (Data, URLResponse)
 52 |     func download(for request: URLRequest) async throws -> (URL, URLResponse)
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:51:30: error: cannot find type 'URLRequest' in scope
 49 | public protocol HTTPSession: Sendable {
 50 |     func data(for request: URLRequest) async throws -> (Data, URLResponse)
 51 |     func upload(for request: URLRequest, from bodyData: Data) async throws -> (Data, URLResponse)
    |                              `- error: cannot find type 'URLRequest' in scope
 52 |     func download(for request: URLRequest) async throws -> (URL, URLResponse)
 53 | }
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:52:32: error: cannot find type 'URLRequest' in scope
 50 |     func data(for request: URLRequest) async throws -> (Data, URLResponse)
 51 |     func upload(for request: URLRequest, from bodyData: Data) async throws -> (Data, URLResponse)
 52 |     func download(for request: URLRequest) async throws -> (URL, URLResponse)
    |                                `- error: cannot find type 'URLRequest' in scope
 53 | }
 54 |
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/DI/URLSession.swift:35:56: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
33 |
34 | private enum URLSessionKey: DependencyKey {
35 |     static let liveValue: any HTTPSession = URLSession.shared
   |                                                        `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
36 | }
37 |
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:50:63: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 48 | /// - [`swift-dependencies`](https://github.com/pointfreeco/swift-dependencies)
 49 | public protocol HTTPSession: Sendable {
 50 |     func data(for request: URLRequest) async throws -> (Data, URLResponse)
    |                                                               `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 51 |     func upload(for request: URLRequest, from bodyData: Data) async throws -> (Data, URLResponse)
 52 |     func download(for request: URLRequest) async throws -> (URL, URLResponse)
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
  |                  `- note: 'URLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:51:86: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 49 | public protocol HTTPSession: Sendable {
 50 |     func data(for request: URLRequest) async throws -> (Data, URLResponse)
 51 |     func upload(for request: URLRequest, from bodyData: Data) async throws -> (Data, URLResponse)
    |                                                                                      `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 52 |     func download(for request: URLRequest) async throws -> (URL, URLResponse)
 53 | }
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
  |                  `- note: 'URLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:52:66: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 50 |     func data(for request: URLRequest) async throws -> (Data, URLResponse)
 51 |     func upload(for request: URLRequest, from bodyData: Data) async throws -> (Data, URLResponse)
 52 |     func download(for request: URLRequest) async throws -> (URL, URLResponse)
    |                                                                  `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 53 | }
 54 |
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
  |                  `- note: 'URLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:81:1: error: non-nominal type 'URLSession' (aka 'AnyObject') cannot be extended
 79 | }
 80 |
 81 | extension URLSession: HTTPSession {
    | `- error: non-nominal type 'URLSession' (aka 'AnyObject') cannot be extended
 82 |     public func download(for request: URLRequest) async throws -> (URL, URLResponse) {
 83 |         try await self.download(for: request, delegate: nil)
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:129:61: error: cannot find type 'URLRequest' in scope
127 |     }
128 |
129 |     func createURLRequest(apiRequest: ApiRequest) throws -> URLRequest {
    |                                                             `- error: cannot find type 'URLRequest' in scope
130 |         var components = URLComponents(string: apiRequest.path)
131 |
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:156:47: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
154 |     }
155 |
156 |     func handleResponse(data: Data, response: URLResponse) throws {
    |                                               `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
157 |         guard let httpResponse = response as? HTTPURLResponse else {
158 |             throw ApiRequestError(message: "Invalid Response")
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
  |                  `- note: 'URLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:50:28: error: cannot find type 'URLRequest' in scope
 48 | /// - [`swift-dependencies`](https://github.com/pointfreeco/swift-dependencies)
 49 | public protocol HTTPSession: Sendable {
 50 |     func data(for request: URLRequest) async throws -> (Data, URLResponse)
    |                            `- error: cannot find type 'URLRequest' in scope
 51 |     func upload(for request: URLRequest, from bodyData: Data) async throws -> (Data, URLResponse)
 52 |     func download(for request: URLRequest) async throws -> (URL, URLResponse)
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:51:30: error: cannot find type 'URLRequest' in scope
 49 | public protocol HTTPSession: Sendable {
 50 |     func data(for request: URLRequest) async throws -> (Data, URLResponse)
 51 |     func upload(for request: URLRequest, from bodyData: Data) async throws -> (Data, URLResponse)
    |                              `- error: cannot find type 'URLRequest' in scope
 52 |     func download(for request: URLRequest) async throws -> (URL, URLResponse)
 53 | }
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:52:32: error: cannot find type 'URLRequest' in scope
 50 |     func data(for request: URLRequest) async throws -> (Data, URLResponse)
 51 |     func upload(for request: URLRequest, from bodyData: Data) async throws -> (Data, URLResponse)
 52 |     func download(for request: URLRequest) async throws -> (URL, URLResponse)
    |                                `- error: cannot find type 'URLRequest' in scope
 53 | }
 54 |
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/DI/URLSession.swift:35:56: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
33 |
34 | private enum URLSessionKey: DependencyKey {
35 |     static let liveValue: any HTTPSession = URLSession.shared
   |                                                        `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
36 | }
37 |
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:50:28: error: cannot find type 'URLRequest' in scope
 48 | /// - [`swift-dependencies`](https://github.com/pointfreeco/swift-dependencies)
 49 | public protocol HTTPSession: Sendable {
 50 |     func data(for request: URLRequest) async throws -> (Data, URLResponse)
    |                            `- error: cannot find type 'URLRequest' in scope
 51 |     func upload(for request: URLRequest, from bodyData: Data) async throws -> (Data, URLResponse)
 52 |     func download(for request: URLRequest) async throws -> (URL, URLResponse)
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:51:30: error: cannot find type 'URLRequest' in scope
 49 | public protocol HTTPSession: Sendable {
 50 |     func data(for request: URLRequest) async throws -> (Data, URLResponse)
 51 |     func upload(for request: URLRequest, from bodyData: Data) async throws -> (Data, URLResponse)
    |                              `- error: cannot find type 'URLRequest' in scope
 52 |     func download(for request: URLRequest) async throws -> (URL, URLResponse)
 53 | }
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:52:32: error: cannot find type 'URLRequest' in scope
 50 |     func data(for request: URLRequest) async throws -> (Data, URLResponse)
 51 |     func upload(for request: URLRequest, from bodyData: Data) async throws -> (Data, URLResponse)
 52 |     func download(for request: URLRequest) async throws -> (URL, URLResponse)
    |                                `- error: cannot find type 'URLRequest' in scope
 53 | }
 54 |
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/DI/URLSession.swift:35:56: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
33 |
34 | private enum URLSessionKey: DependencyKey {
35 |     static let liveValue: any HTTPSession = URLSession.shared
   |                                                        `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
36 | }
37 |
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:50:28: error: cannot find type 'URLRequest' in scope
 48 | /// - [`swift-dependencies`](https://github.com/pointfreeco/swift-dependencies)
 49 | public protocol HTTPSession: Sendable {
 50 |     func data(for request: URLRequest) async throws -> (Data, URLResponse)
    |                            `- error: cannot find type 'URLRequest' in scope
 51 |     func upload(for request: URLRequest, from bodyData: Data) async throws -> (Data, URLResponse)
 52 |     func download(for request: URLRequest) async throws -> (URL, URLResponse)
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:50:63: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 48 | /// - [`swift-dependencies`](https://github.com/pointfreeco/swift-dependencies)
 49 | public protocol HTTPSession: Sendable {
 50 |     func data(for request: URLRequest) async throws -> (Data, URLResponse)
    |                                                               `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 51 |     func upload(for request: URLRequest, from bodyData: Data) async throws -> (Data, URLResponse)
 52 |     func download(for request: URLRequest) async throws -> (URL, URLResponse)
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
  |                  `- note: 'URLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:51:30: error: cannot find type 'URLRequest' in scope
 49 | public protocol HTTPSession: Sendable {
 50 |     func data(for request: URLRequest) async throws -> (Data, URLResponse)
 51 |     func upload(for request: URLRequest, from bodyData: Data) async throws -> (Data, URLResponse)
    |                              `- error: cannot find type 'URLRequest' in scope
 52 |     func download(for request: URLRequest) async throws -> (URL, URLResponse)
 53 | }
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:51:86: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 49 | public protocol HTTPSession: Sendable {
 50 |     func data(for request: URLRequest) async throws -> (Data, URLResponse)
 51 |     func upload(for request: URLRequest, from bodyData: Data) async throws -> (Data, URLResponse)
    |                                                                                      `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 52 |     func download(for request: URLRequest) async throws -> (URL, URLResponse)
 53 | }
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
  |                  `- note: 'URLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:52:32: error: cannot find type 'URLRequest' in scope
 50 |     func data(for request: URLRequest) async throws -> (Data, URLResponse)
 51 |     func upload(for request: URLRequest, from bodyData: Data) async throws -> (Data, URLResponse)
 52 |     func download(for request: URLRequest) async throws -> (URL, URLResponse)
    |                                `- error: cannot find type 'URLRequest' in scope
 53 | }
 54 |
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:52:66: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 50 |     func data(for request: URLRequest) async throws -> (Data, URLResponse)
 51 |     func upload(for request: URLRequest, from bodyData: Data) async throws -> (Data, URLResponse)
 52 |     func download(for request: URLRequest) async throws -> (URL, URLResponse)
    |                                                                  `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 53 | }
 54 |
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
  |                  `- note: 'URLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:81:1: error: non-nominal type 'URLSession' (aka 'AnyObject') cannot be extended
 79 | }
 80 |
 81 | extension URLSession: HTTPSession {
    | `- error: non-nominal type 'URLSession' (aka 'AnyObject') cannot be extended
 82 |     public func download(for request: URLRequest) async throws -> (URL, URLResponse) {
 83 |         try await self.download(for: request, delegate: nil)
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:129:61: error: cannot find type 'URLRequest' in scope
127 |     }
128 |
129 |     func createURLRequest(apiRequest: ApiRequest) throws -> URLRequest {
    |                                                             `- error: cannot find type 'URLRequest' in scope
130 |         var components = URLComponents(string: apiRequest.path)
131 |
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:156:47: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
154 |     }
155 |
156 |     func handleResponse(data: Data, response: URLResponse) throws {
    |                                               `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
157 |         guard let httpResponse = response as? HTTPURLResponse else {
158 |             throw ApiRequestError(message: "Invalid Response")
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
  |                  `- note: 'URLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:115:26: error: cannot infer contextual base in reference to member 'init'
113 |     ) async throws -> Data {
114 |         let urlRequest = try createURLRequest(
115 |             apiRequest: .init(
    |                          `- error: cannot infer contextual base in reference to member 'init'
116 |                 path: path,
117 |                 httpMethod: httpMethod,
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:142:23: error: cannot find 'URLRequest' in scope
140 |         }
141 |
142 |         var request = URLRequest(url: url)
    |                       `- error: cannot find 'URLRequest' in scope
143 |         request.httpMethod = apiRequest.httpMethod
144 |
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:157:43: warning: conditional cast from 'URLResponse' (aka 'AnyObject') to 'HTTPURLResponse' (aka 'AnyObject') always succeeds
155 |
156 |     func handleResponse(data: Data, response: URLResponse) throws {
157 |         guard let httpResponse = response as? HTTPURLResponse else {
    |                                           `- warning: conditional cast from 'URLResponse' (aka 'AnyObject') to 'HTTPURLResponse' (aka 'AnyObject') always succeeds
158 |             throw ApiRequestError(message: "Invalid Response")
159 |         }
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:157:47: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
155 |
156 |     func handleResponse(data: Data, response: URLResponse) throws {
157 |         guard let httpResponse = response as? HTTPURLResponse else {
    |                                               `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
158 |             throw ApiRequestError(message: "Invalid Response")
159 |         }
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' 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 HTTPURLResponse = AnyObject
  |                  `- note: 'HTTPURLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:161:49: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
159 |         }
160 |
161 |         guard (200...299).contains(httpResponse.statusCode) else {
    |                                                 `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
162 |             throw URLError(.badServerResponse)
163 |         }
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:82:39: error: cannot find type 'URLRequest' in scope
 80 |
 81 | extension URLSession: HTTPSession {
 82 |     public func download(for request: URLRequest) async throws -> (URL, URLResponse) {
    |                                       `- error: cannot find type 'URLRequest' in scope
 83 |         try await self.download(for: request, delegate: nil)
 84 |     }
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:50:28: error: cannot find type 'URLRequest' in scope
 48 | /// - [`swift-dependencies`](https://github.com/pointfreeco/swift-dependencies)
 49 | public protocol HTTPSession: Sendable {
 50 |     func data(for request: URLRequest) async throws -> (Data, URLResponse)
    |                            `- error: cannot find type 'URLRequest' in scope
 51 |     func upload(for request: URLRequest, from bodyData: Data) async throws -> (Data, URLResponse)
 52 |     func download(for request: URLRequest) async throws -> (URL, URLResponse)
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:50:63: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 48 | /// - [`swift-dependencies`](https://github.com/pointfreeco/swift-dependencies)
 49 | public protocol HTTPSession: Sendable {
 50 |     func data(for request: URLRequest) async throws -> (Data, URLResponse)
    |                                                               `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 51 |     func upload(for request: URLRequest, from bodyData: Data) async throws -> (Data, URLResponse)
 52 |     func download(for request: URLRequest) async throws -> (URL, URLResponse)
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
  |                  `- note: 'URLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:51:30: error: cannot find type 'URLRequest' in scope
 49 | public protocol HTTPSession: Sendable {
 50 |     func data(for request: URLRequest) async throws -> (Data, URLResponse)
 51 |     func upload(for request: URLRequest, from bodyData: Data) async throws -> (Data, URLResponse)
    |                              `- error: cannot find type 'URLRequest' in scope
 52 |     func download(for request: URLRequest) async throws -> (URL, URLResponse)
 53 | }
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:51:86: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 49 | public protocol HTTPSession: Sendable {
 50 |     func data(for request: URLRequest) async throws -> (Data, URLResponse)
 51 |     func upload(for request: URLRequest, from bodyData: Data) async throws -> (Data, URLResponse)
    |                                                                                      `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 52 |     func download(for request: URLRequest) async throws -> (URL, URLResponse)
 53 | }
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
  |                  `- note: 'URLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:52:32: error: cannot find type 'URLRequest' in scope
 50 |     func data(for request: URLRequest) async throws -> (Data, URLResponse)
 51 |     func upload(for request: URLRequest, from bodyData: Data) async throws -> (Data, URLResponse)
 52 |     func download(for request: URLRequest) async throws -> (URL, URLResponse)
    |                                `- error: cannot find type 'URLRequest' in scope
 53 | }
 54 |
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:52:66: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 50 |     func data(for request: URLRequest) async throws -> (Data, URLResponse)
 51 |     func upload(for request: URLRequest, from bodyData: Data) async throws -> (Data, URLResponse)
 52 |     func download(for request: URLRequest) async throws -> (URL, URLResponse)
    |                                                                  `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 53 | }
 54 |
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
  |                  `- note: 'URLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:81:1: error: non-nominal type 'URLSession' (aka 'AnyObject') cannot be extended
 79 | }
 80 |
 81 | extension URLSession: HTTPSession {
    | `- error: non-nominal type 'URLSession' (aka 'AnyObject') cannot be extended
 82 |     public func download(for request: URLRequest) async throws -> (URL, URLResponse) {
 83 |         try await self.download(for: request, delegate: nil)
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:129:61: error: cannot find type 'URLRequest' in scope
127 |     }
128 |
129 |     func createURLRequest(apiRequest: ApiRequest) throws -> URLRequest {
    |                                                             `- error: cannot find type 'URLRequest' in scope
130 |         var components = URLComponents(string: apiRequest.path)
131 |
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:156:47: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
154 |     }
155 |
156 |     func handleResponse(data: Data, response: URLResponse) throws {
    |                                               `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
157 |         guard let httpResponse = response as? HTTPURLResponse else {
158 |             throw ApiRequestError(message: "Invalid Response")
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
  |                  `- note: 'URLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:115:26: error: cannot infer contextual base in reference to member 'init'
113 |     ) async throws -> Data {
114 |         let urlRequest = try createURLRequest(
115 |             apiRequest: .init(
    |                          `- error: cannot infer contextual base in reference to member 'init'
116 |                 path: path,
117 |                 httpMethod: httpMethod,
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:142:23: error: cannot find 'URLRequest' in scope
140 |         }
141 |
142 |         var request = URLRequest(url: url)
    |                       `- error: cannot find 'URLRequest' in scope
143 |         request.httpMethod = apiRequest.httpMethod
144 |
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:157:43: warning: conditional cast from 'URLResponse' (aka 'AnyObject') to 'HTTPURLResponse' (aka 'AnyObject') always succeeds
155 |
156 |     func handleResponse(data: Data, response: URLResponse) throws {
157 |         guard let httpResponse = response as? HTTPURLResponse else {
    |                                           `- warning: conditional cast from 'URLResponse' (aka 'AnyObject') to 'HTTPURLResponse' (aka 'AnyObject') always succeeds
158 |             throw ApiRequestError(message: "Invalid Response")
159 |         }
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:157:47: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
155 |
156 |     func handleResponse(data: Data, response: URLResponse) throws {
157 |         guard let httpResponse = response as? HTTPURLResponse else {
    |                                               `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
158 |             throw ApiRequestError(message: "Invalid Response")
159 |         }
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' 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 HTTPURLResponse = AnyObject
  |                  `- note: 'HTTPURLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:161:49: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
159 |         }
160 |
161 |         guard (200...299).contains(httpResponse.statusCode) else {
    |                                                 `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
162 |             throw URLError(.badServerResponse)
163 |         }
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:82:39: error: cannot find type 'URLRequest' in scope
 80 |
 81 | extension URLSession: HTTPSession {
 82 |     public func download(for request: URLRequest) async throws -> (URL, URLResponse) {
    |                                       `- error: cannot find type 'URLRequest' in scope
 83 |         try await self.download(for: request, delegate: nil)
 84 |     }
[510/516] Compiling SwiftNetworkRequest DynamicAPIResponse.swift
[511/516] Compiling SwiftNetworkRequest Post.swift
[512/516] Compiling SwiftNetworkRequest RequestConfig.swift
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:50:28: error: cannot find type 'URLRequest' in scope
 48 | /// - [`swift-dependencies`](https://github.com/pointfreeco/swift-dependencies)
 49 | public protocol HTTPSession: Sendable {
 50 |     func data(for request: URLRequest) async throws -> (Data, URLResponse)
    |                            `- error: cannot find type 'URLRequest' in scope
 51 |     func upload(for request: URLRequest, from bodyData: Data) async throws -> (Data, URLResponse)
 52 |     func download(for request: URLRequest) async throws -> (URL, URLResponse)
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:51:30: error: cannot find type 'URLRequest' in scope
 49 | public protocol HTTPSession: Sendable {
 50 |     func data(for request: URLRequest) async throws -> (Data, URLResponse)
 51 |     func upload(for request: URLRequest, from bodyData: Data) async throws -> (Data, URLResponse)
    |                              `- error: cannot find type 'URLRequest' in scope
 52 |     func download(for request: URLRequest) async throws -> (URL, URLResponse)
 53 | }
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:52:32: error: cannot find type 'URLRequest' in scope
 50 |     func data(for request: URLRequest) async throws -> (Data, URLResponse)
 51 |     func upload(for request: URLRequest, from bodyData: Data) async throws -> (Data, URLResponse)
 52 |     func download(for request: URLRequest) async throws -> (URL, URLResponse)
    |                                `- error: cannot find type 'URLRequest' in scope
 53 | }
 54 |
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:50:28: error: cannot find type 'URLRequest' in scope
 48 | /// - [`swift-dependencies`](https://github.com/pointfreeco/swift-dependencies)
 49 | public protocol HTTPSession: Sendable {
 50 |     func data(for request: URLRequest) async throws -> (Data, URLResponse)
    |                            `- error: cannot find type 'URLRequest' in scope
 51 |     func upload(for request: URLRequest, from bodyData: Data) async throws -> (Data, URLResponse)
 52 |     func download(for request: URLRequest) async throws -> (URL, URLResponse)
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:51:30: error: cannot find type 'URLRequest' in scope
 49 | public protocol HTTPSession: Sendable {
 50 |     func data(for request: URLRequest) async throws -> (Data, URLResponse)
 51 |     func upload(for request: URLRequest, from bodyData: Data) async throws -> (Data, URLResponse)
    |                              `- error: cannot find type 'URLRequest' in scope
 52 |     func download(for request: URLRequest) async throws -> (URL, URLResponse)
 53 | }
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:52:32: error: cannot find type 'URLRequest' in scope
 50 |     func data(for request: URLRequest) async throws -> (Data, URLResponse)
 51 |     func upload(for request: URLRequest, from bodyData: Data) async throws -> (Data, URLResponse)
 52 |     func download(for request: URLRequest) async throws -> (URL, URLResponse)
    |                                `- error: cannot find type 'URLRequest' in scope
 53 | }
 54 |
[514/516] Compiling SwiftNetworkRequest Put.swift
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-3":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:android-6.1-latest swift build --swift-sdk aarch64-unknown-linux-android24 2>&1
android-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:873b43b7be6289c04a5a3fd4b2c372c2a5abf90643451079297d3dc6dc0b7d36
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:android-6.1-latest
[0/1] Planning build
[1/1] Compiling plugin Swift-DocC Preview
[2/2] Compiling plugin Swift-DocC
Building for debugging...
[2/21] Write swift-version-24593BA9C3E375BF.txt
[4/55] Emitting module SwiftSyntax600
[5/55] Compiling SwiftSyntax600 Empty.swift
[6/56] Compiling IssueReportingPackageSupport _Test.swift
[8/56] Emitting module SwiftSyntax509
[9/56] Compiling SwiftSyntax509 Empty.swift
[10/56] Compiling SwiftSyntax601 Empty.swift
[11/56] Compiling ConcurrencyExtras Locking.swift
[12/56] Compiling ConcurrencyExtras UncheckedBox.swift
[13/56] Compiling ConcurrencyExtras LockIsolated.swift
[14/56] Emitting module SwiftSyntax601
[15/56] Emitting module IssueReportingPackageSupport
[16/59] Emitting module SwiftSyntax510
[17/59] Compiling SwiftSyntax510 Empty.swift
[18/60] Compiling ConcurrencyExtras ActorIsolated.swift
[19/60] Compiling ConcurrencyExtras AnyHashableSendable.swift
[20/60] Compiling IssueReportingPackageSupport _Test.swift
[21/60] Emitting module IssueReportingPackageSupport
[22/61] Compiling ConcurrencyExtras Result.swift
[25/60] Compiling ConcurrencyExtras MainSerialExecutor.swift
[32/61] Compiling ConcurrencyExtras Task.swift
[33/61] Compiling ConcurrencyExtras AsyncStream.swift
[34/61] Compiling ConcurrencyExtras AsyncThrowingStream.swift
[35/61] Emitting module ConcurrencyExtras
[39/60] Compiling ConcurrencyExtras Result.swift
[40/60] Compiling ConcurrencyExtras LockIsolated.swift
[43/60] Compiling ConcurrencyExtras Task.swift
[44/60] Compiling ConcurrencyExtras UncheckedSendable.swift
[48/99] Compiling IssueReporting SwiftTesting.swift
[49/99] Compiling IssueReporting UncheckedSendable.swift
[50/101] Compiling IssueReporting ErrorReporting.swift
[51/101] Compiling IssueReporting AppHostWarning.swift
[52/101] Compiling IssueReporting Deprecations.swift
[53/101] Compiling IssueReporting FailureObserver.swift
[54/101] Compiling IssueReporting LockIsolated.swift
[55/101] Compiling IssueReporting Rethrows.swift
[56/101] Compiling IssueReporting TestContext.swift
[57/101] Compiling IssueReporting Unimplemented.swift
[58/167] Compiling SwiftSyntax Assert.swift
[59/167] Compiling SwiftSyntax BumpPtrAllocator.swift
[60/167] Compiling SwiftSyntax CommonAncestor.swift
[61/167] Compiling SwiftSyntax Convenience.swift
[62/167] Compiling SwiftSyntax AbsolutePosition.swift
[63/167] Compiling SwiftSyntax AbsoluteRawSyntax.swift
[64/167] Compiling SwiftSyntax AbsoluteSyntaxInfo.swift
[65/167] Compiling SwiftSyntax CustomTraits.swift
[66/167] Compiling SwiftSyntax EditorPlaceholder.swift
[69/167] Compiling SwiftSyntax SourceLength.swift
[72/167] Compiling SwiftSyntax RawSyntaxTokenView.swift
[73/167] Compiling SwiftSyntax SourceEdit.swift
[75/167] Compiling SwiftSyntax Identifier.swift
[76/167] Compiling SwiftSyntax MemoryLayout.swift
[77/167] Compiling SwiftSyntax MissingNodeInitializers.swift
[78/167] Compiling SwiftSyntax RawSyntax.swift
[79/167] Compiling SwiftSyntax RawSyntaxLayoutView.swift
[80/167] Compiling SwiftSyntax RawSyntaxNodeProtocol.swift
[81/167] Emitting module IssueReporting
[83/167] Compiling SwiftSyntax SyntaxIdentifier.swift
[84/167] Compiling SwiftSyntax SyntaxNodeFactory.swift
[94/169] Compiling SwiftSyntax SyntaxNodeStructure.swift
[95/169] Compiling SwiftSyntax SyntaxProtocol.swift
[96/169] Compiling SwiftSyntax SyntaxText.swift
[97/169] Compiling SwiftSyntax SyntaxTreeViewMode.swift
[98/169] Compiling SwiftSyntax TokenDiagnostic.swift
[99/169] Compiling SwiftSyntax TokenSequence.swift
[100/169] Compiling SwiftSyntax TokenSyntax.swift
[101/224] Compiling CombineSchedulers UIScheduler.swift
[102/225] Compiling CombineSchedulers AnyScheduler.swift
[103/225] Compiling CombineSchedulers Concurrency.swift
[104/225] Compiling Clocks SwiftUI.swift
[105/226] Compiling Clocks Timer.swift
[106/226] Compiling CombineSchedulers Lock.swift
[107/226] Compiling CombineSchedulers NSRecursiveLock.swift
[108/226] Compiling CombineSchedulers UIKit.swift
[109/226] Emitting module CombineSchedulers
[110/226] Compiling CombineSchedulers ImmediateScheduler.swift
[111/226] Compiling CombineSchedulers Deprecations.swift
[114/226] Compiling XCTestDynamicOverlay Exports.swift
[115/226] Emitting module CombineSchedulers
[116/226] Compiling CombineSchedulers SwiftUI.swift
[117/226] Compiling CombineSchedulers TestScheduler.swift
[118/226] Compiling CombineSchedulers Timer.swift
[119/226] Compiling CombineSchedulers UIScheduler.swift
[120/227] Compiling Clocks Lock.swift
[121/227] Compiling XCTestDynamicOverlay Exports.swift
[124/227] Compiling CombineSchedulers UIKit.swift
[129/227] Compiling CombineSchedulers Timer.swift
[130/227] Compiling CombineSchedulers UnimplementedScheduler.swift
[131/228] Compiling Clocks Timer.swift
[132/229] Compiling Clocks Lock.swift
[133/229] Compiling Clocks AnyClock.swift
[135/229] Compiling Clocks ImmediateClock.swift
[136/229] Compiling Clocks _AsyncTimerSequence.swift
[137/229] Emitting module Clocks
[140/229] Compiling Clocks _AsyncTimerSequence.swift
[141/229] Compiling CombineSchedulers UnimplementedScheduler.swift
[142/230] Emitting module XCTestDynamicOverlay
[143/230] Compiling XCTestDynamicOverlay Deprecations.swift
[144/231] Compiling Clocks UnimplementedClock.swift
[145/231] Emitting module XCTestDynamicOverlay
[146/231] Compiling XCTestDynamicOverlay Deprecations.swift
[147/231] Compiling Clocks ImmediateClock.swift
[148/232] Compiling Clocks TestClock.swift
[150/233] Compiling Clocks SwiftUI.swift
[151/233] Compiling Clocks TestClock.swift
[152/233] Compiling Clocks UnimplementedClock.swift
[157/280] Compiling Dependencies FireAndForget.swift
[158/280] Compiling Dependencies Locale.swift
[159/280] Compiling Dependencies MainQueue.swift
[160/280] Compiling Dependencies MainRunLoop.swift
[161/280] Compiling Dependencies OpenURL.swift
[162/280] Compiling Dependencies TimeZone.swift
[163/280] Compiling Dependencies URLSession.swift
[164/280] Compiling Dependencies UUID.swift
[165/280] Compiling Dependencies WithRandomNumberGenerator.swift
[166/280] Compiling Dependencies Assert.swift
[167/280] Compiling Dependencies Calendar.swift
[168/280] Compiling Dependencies Clocks.swift
[169/280] Compiling Dependencies Dependency.swift
[170/280] Compiling Dependencies DependencyContext.swift
[171/280] Compiling Dependencies DependencyKey.swift
[172/280] Compiling Dependencies DependencyValues.swift
[173/280] Compiling Dependencies Context.swift
[174/280] Compiling Dependencies Date.swift
[187/286] Compiling Dependencies Deprecations.swift
[188/286] Compiling Dependencies Exports.swift
[189/286] Compiling Dependencies TypeName.swift
[195/286] Compiling Dependencies AppEntryPoint.swift
[215/286] Emitting module Dependencies
[221/286] Compiling Dependencies PreviewTrait.swift
[222/286] Compiling Dependencies TestTrait.swift
[223/286] Compiling Dependencies WithDependencies.swift
[229/288] Emitting module SwiftSyntax
[230/288] Compiling SwiftSyntax SyntaxEnum.swift
[231/288] Compiling SwiftSyntax SyntaxKind.swift
[232/288] Compiling SwiftSyntax SyntaxRewriter.swift
[233/288] Compiling SwiftSyntax SyntaxTraits.swift
[234/288] Compiling SwiftSyntax SyntaxVisitor.swift
[235/288] Compiling SwiftSyntax TokenKind.swift
[236/288] Compiling SwiftSyntax Tokens.swift
[237/288] Compiling SwiftSyntax TriviaPieces.swift
[238/288] Compiling SwiftSyntax RawSyntaxNodesAB.swift
[239/288] Compiling SwiftSyntax RawSyntaxNodesC.swift
[240/288] Compiling SwiftSyntax RawSyntaxNodesD.swift
[241/288] Compiling SwiftSyntax RawSyntaxNodesEF.swift
[242/288] Compiling SwiftSyntax RawSyntaxNodesGHI.swift
[243/288] Compiling SwiftSyntax RawSyntaxNodesJKLMN.swift
[244/288] Compiling SwiftSyntax RawSyntaxNodesOP.swift
[245/288] Compiling SwiftSyntax RawSyntaxNodesQRS.swift
[246/288] Compiling SwiftSyntax RawSyntaxNodesTUVWXYZ.swift
[247/288] Compiling SwiftSyntax RawSyntaxValidation.swift
[248/288] Compiling SwiftSyntax SyntaxNodesAB.swift
[249/288] Compiling SwiftSyntax SyntaxNodesC.swift
[250/288] Compiling SwiftSyntax SyntaxNodesD.swift
[251/288] Compiling SwiftSyntax SyntaxNodesEF.swift
[252/288] Compiling SwiftSyntax SyntaxNodesGHI.swift
[253/288] Compiling SwiftSyntax SyntaxNodesJKLMN.swift
[254/288] Compiling SwiftSyntax SyntaxNodesOP.swift
[255/288] Compiling SwiftSyntax SyntaxNodesQRS.swift
[256/288] Compiling SwiftSyntax SyntaxNodesTUVWXYZ.swift
[257/288] Compiling SwiftSyntax SourceLocation.swift
[258/288] Compiling SwiftSyntax SourcePresence.swift
[259/288] Compiling SwiftSyntax SwiftSyntaxCompatibility.swift
[260/288] Compiling SwiftSyntax Syntax.swift
[261/288] Compiling SwiftSyntax SyntaxArena.swift
[262/288] Compiling SwiftSyntax SyntaxArenaAllocatedBuffer.swift
[263/288] Compiling SwiftSyntax SyntaxChildren.swift
[264/288] Compiling SwiftSyntax SyntaxCollection.swift
[265/288] Compiling SwiftSyntax SyntaxHashable.swift
[266/288] Compiling SwiftSyntax Trivia.swift
[267/288] Compiling SwiftSyntax Utils.swift
[268/288] Compiling SwiftSyntax ChildNameForKeyPath.swift
[269/288] Compiling SwiftSyntax Keyword.swift
[270/288] Compiling SwiftSyntax RenamedChildrenCompatibility.swift
[271/288] Compiling SwiftSyntax RenamedNodesCompatibility.swift
[272/288] Compiling SwiftSyntax SyntaxAnyVisitor.swift
[273/288] Compiling SwiftSyntax SyntaxBaseNodes.swift
[274/288] Compiling SwiftSyntax SyntaxCollections.swift
[276/346] Compiling SwiftBasicFormat Trivia+FormatExtensions.swift
[277/346] Emitting module SwiftDiagnostics
[278/347] Compiling SwiftParser ExpressionInterpretedAsVersionTuple.swift
[279/347] Compiling SwiftParser Expressions.swift
[280/347] Compiling SwiftDiagnostics FixIt.swift
[281/347] Compiling SwiftBasicFormat SyntaxProtocol+Formatted.swift
[282/347] Compiling SwiftBasicFormat Syntax+Extensions.swift
[283/347] Compiling SwiftBasicFormat Indenter.swift
[284/347] Compiling SwiftDiagnostics Message.swift
[285/347] Compiling SwiftBasicFormat InferIndentation.swift
[286/347] Compiling SwiftDiagnostics DiagnosticDecorator.swift
[287/347] Compiling SwiftParser IncrementalParseTransition.swift
[288/347] Compiling SwiftParser IsValidIdentifier.swift
[289/347] Compiling SwiftDiagnostics Note.swift
[290/347] Compiling SwiftDiagnostics GroupedDiagnostics.swift
[291/347] Compiling SwiftDiagnostics DiagnosticsFormatter.swift
[293/348] Emitting module SwiftBasicFormat
[294/348] Compiling SwiftBasicFormat BasicFormat.swift
[296/347] Emitting module SwiftParser
[297/352] Compiling SwiftParser LexemeSequence.swift
[298/352] Compiling SwiftParser Lexer.swift
[299/352] Compiling SwiftParser RegexLiteralLexer.swift
[300/352] Compiling SwiftParser UnicodeScalarExtensions.swift
[301/352] Compiling SwiftParser Lookahead.swift
[302/352] Compiling SwiftParser LoopProgressCondition.swift
[303/352] Compiling SwiftParser Patterns.swift
[304/352] Compiling SwiftParser Recovery.swift
[305/352] Compiling SwiftParser Specifiers.swift
[306/352] Compiling SwiftParser Statements.swift
[307/352] Compiling SwiftParser StringLiteralRepresentedLiteralValue.swift
[308/352] Compiling SwiftParser StringLiterals.swift
[309/352] Compiling SwiftParser SwiftParserCompatibility.swift
[310/352] Compiling SwiftParser SwiftVersion.swift
[311/352] Compiling SwiftParser SyntaxUtils.swift
[312/352] Compiling SwiftParser TokenConsumer.swift
[313/352] Compiling SwiftParser TokenPrecedence.swift
[314/352] Compiling SwiftParser Modifiers.swift
[315/352] Compiling SwiftParser Names.swift
[316/352] Compiling SwiftParser Nominals.swift
[317/352] Compiling SwiftParser Parameters.swift
[318/352] Compiling SwiftParser ParseSourceFile.swift
[319/352] Compiling SwiftParser Parser.swift
[320/352] Compiling SwiftParser TokenSpec.swift
[321/352] Compiling SwiftParser TokenSpecSet.swift
[322/352] Compiling SwiftParser TopLevel.swift
[323/352] Compiling SwiftParser TriviaParser.swift
[324/352] Compiling SwiftParser Types.swift
[325/352] Compiling SwiftParser Attributes.swift
[326/352] Compiling SwiftParser Availability.swift
[327/352] Compiling SwiftParser CharacterInfo.swift
[328/352] Compiling SwiftParser CollectionNodes+Parsable.swift
[329/352] Compiling SwiftParser Declarations.swift
[330/352] Compiling SwiftParser Directives.swift
[335/352] Compiling SwiftParser Cursor.swift
[336/352] Compiling SwiftParser Lexeme.swift
[337/352] Compiling SwiftParser ExperimentalFeatures.swift
[338/352] Compiling SwiftParser IsLexerClassified.swift
[339/352] Compiling SwiftParser LayoutNodes+Parsable.swift
[340/352] Compiling SwiftParser Parser+TokenSpecSet.swift
[341/352] Compiling SwiftParser TokenSpecStaticMembers.swift
[343/375] Compiling SwiftOperators PrecedenceGroup.swift
[344/376] Compiling SwiftOperators OperatorTable.swift
[345/376] Compiling SwiftOperators PrecedenceGraph.swift
[346/376] Compiling SwiftOperators OperatorTable+Semantics.swift
[347/376] Compiling SwiftParserDiagnostics SyntaxKindNameForDiagnostics.swift
[348/377] Compiling SwiftOperators SyntaxSynthesis.swift
[349/377] Compiling SwiftParserDiagnostics TokenNameForDiagnostics.swift
[350/377] Compiling SwiftParserDiagnostics DiagnosticExtensions.swift
[351/377] Compiling SwiftParserDiagnostics LexerDiagnosticMessages.swift
[352/377] Emitting module SwiftOperators
[353/377] Compiling SwiftParserDiagnostics ChildNameForDiagnostics.swift
[354/377] Compiling SwiftParserDiagnostics MissingNodesError.swift
[355/377] Compiling SwiftParserDiagnostics MissingTokenError.swift
[356/377] Compiling SwiftOperators OperatorTable+Folding.swift
[358/377] Emitting module SwiftParserDiagnostics
[361/377] Compiling SwiftParserDiagnostics SyntaxExtensions.swift
[362/377] Compiling SwiftParserDiagnostics Utils.swift
[363/377] Compiling SwiftParserDiagnostics ParserDiagnosticMessages.swift
[364/377] Compiling SwiftParserDiagnostics PresenceUtils.swift
[365/377] Compiling SwiftParserDiagnostics MultiLineStringLiteralDiagnosticsGenerator.swift
[366/377] Compiling SwiftParserDiagnostics ParseDiagnosticsGenerator.swift
[370/392] Compiling SwiftSyntaxBuilder SyntaxParsable+ExpressibleByStringInterpolation.swift
[371/392] Compiling SwiftSyntaxBuilder ValidatingSyntaxNodes.swift
[372/393] Compiling SwiftSyntaxBuilder SyntaxExpressibleByStringInterpolationConformances.swift
[373/393] Compiling SwiftSyntaxBuilder ConvenienceInitializers.swift
[374/393] Compiling SwiftSyntaxBuilder DeclSyntaxParseable.swift
[375/393] Emitting module SwiftSyntaxBuilder
[376/393] Compiling SwiftSyntaxBuilder ResultBuilderExtensions.swift
[377/393] Compiling SwiftSyntaxBuilder SwiftSyntaxBuilderCompatibility.swift
[378/393] Compiling SwiftSyntaxBuilder Indenter.swift
[379/393] Compiling SwiftSyntaxBuilder ListBuilder.swift
[380/393] Compiling SwiftSyntaxBuilder Syntax+StringInterpolation.swift
[381/393] Compiling SwiftSyntaxBuilder SyntaxNodeWithBody.swift
[382/393] Compiling SwiftSyntaxBuilder WithTrailingCommaSyntax+EnsuringTrailingComma.swift
[383/393] Compiling SwiftSyntaxBuilder BuildableNodes.swift
[384/393] Compiling SwiftSyntaxBuilder RenamedChildrenBuilderCompatibility.swift
[385/393] Compiling SwiftSyntaxBuilder ResultBuilders.swift
[387/410] Compiling SwiftSyntaxMacros AbstractSourceLocation.swift
[388/410] Compiling SwiftSyntaxMacros MacroExpansionContext.swift
[389/410] Compiling SwiftSyntaxMacros MacroExpansionDiagnosticMessages.swift
[390/412] Compiling SwiftSyntaxMacros CodeItemMacro.swift
[391/412] Compiling SwiftSyntaxMacros DeclarationMacro.swift
[392/412] Compiling SwiftSyntaxMacros MemberMacro.swift
[393/412] Compiling SwiftSyntaxMacros PeerMacro.swift
[394/412] Compiling SwiftSyntaxMacros Macro.swift
[395/412] Compiling SwiftSyntaxMacros MemberAttributeMacro.swift
[396/412] Compiling SwiftSyntaxMacros FreestandingMacro.swift
[397/412] Compiling SwiftSyntaxMacros Macro+Format.swift
[398/412] Compiling SwiftSyntaxMacros ExpressionMacro.swift
[399/412] Compiling SwiftSyntaxMacros ExtensionMacro.swift
[400/412] Compiling SwiftSyntaxMacros AccessorMacro.swift
[401/412] Compiling SwiftSyntaxMacros AttachedMacro.swift
[402/412] Compiling SwiftSyntaxMacros BodyMacro.swift
[403/412] Emitting module SwiftSyntaxMacros
[404/412] Compiling SwiftSyntaxMacros PreambleMacro.swift
[405/412] Compiling SwiftSyntaxMacros Syntax+LexicalContext.swift
[407/421] Compiling SwiftSyntaxMacroExpansion MacroSpec.swift
[408/422] Compiling SwiftSyntaxMacroExpansion MacroExpansion.swift
[409/422] Compiling SwiftSyntaxMacroExpansion IndentationUtils.swift
[410/422] Compiling SwiftSyntaxMacroExpansion BasicMacroExpansionContext.swift
[411/422] Compiling SwiftSyntaxMacroExpansion FunctionParameterUtils.swift
[412/422] Emitting module SwiftSyntaxMacroExpansion
[413/422] Compiling SwiftSyntaxMacroExpansion MacroArgument.swift
[414/422] Compiling SwiftSyntaxMacroExpansion MacroExpansionDiagnosticMessages.swift
[415/422] Compiling SwiftSyntaxMacroExpansion MacroReplacement.swift
[416/422] Compiling SwiftSyntaxMacroExpansion MacroSystem.swift
[418/434] Compiling SwiftCompilerPluginMessageHandling PluginMessageCompatibility.swift
[419/434] Compiling SwiftCompilerPluginMessageHandling PluginMessages.swift
[420/435] Compiling SwiftCompilerPluginMessageHandling StandardIOMessageConnection.swift
[421/435] Compiling SwiftCompilerPluginMessageHandling LRUCache.swift
[422/435] Compiling SwiftCompilerPluginMessageHandling Macros.swift
[423/435] Compiling SwiftCompilerPluginMessageHandling CodingUtilities.swift
[424/435] Compiling SwiftCompilerPluginMessageHandling JSON.swift
[425/435] Emitting module SwiftCompilerPluginMessageHandling
[426/435] Compiling SwiftCompilerPluginMessageHandling CompilerPluginMessageHandler.swift
[427/435] Compiling SwiftCompilerPluginMessageHandling Diagnostics.swift
[428/435] Compiling SwiftCompilerPluginMessageHandling JSONDecoding.swift
[429/435] Compiling SwiftCompilerPluginMessageHandling JSONEncoding.swift
[430/435] Compiling SwiftCompilerPluginMessageHandling PluginMacroExpansionContext.swift
[432/437] Emitting module SwiftCompilerPlugin
[433/437] Compiling SwiftCompilerPlugin CompilerPlugin.swift
[435/443] Compiling SwiftNetworkRequestMacros Models.swift
[436/443] Emitting module SwiftNetworkRequestMacros
[437/443] Compiling SwiftNetworkRequestMacros Helpers.swift
[438/443] Compiling SwiftNetworkRequestMacros Plugin.swift
[439/443] Compiling SwiftNetworkRequestMacros RequestBuilder.swift
[440/443] Compiling SwiftNetworkRequestMacros RequestMacros.swift
[441/443] Write Objects.LinkFileList
[442/443] Linking SwiftNetworkRequestMacros-tool
[444/465] Compiling SwiftNetworkRequest Post.swift
[445/466] Compiling SwiftNetworkRequest KeyValuePair.swift
[447/467] Compiling SwiftNetworkRequest RequestConfig.swift
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:50:28: error: cannot find type 'URLRequest' in scope
 48 | /// - [`swift-dependencies`](https://github.com/pointfreeco/swift-dependencies)
 49 | public protocol HTTPSession: Sendable {
 50 |     func data(for request: URLRequest) async throws -> (Data, URLResponse)
    |                            `- error: cannot find type 'URLRequest' in scope
 51 |     func upload(for request: URLRequest, from bodyData: Data) async throws -> (Data, URLResponse)
 52 |     func download(for request: URLRequest) async throws -> (URL, URLResponse)
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:51:30: error: cannot find type 'URLRequest' in scope
 49 | public protocol HTTPSession: Sendable {
 50 |     func data(for request: URLRequest) async throws -> (Data, URLResponse)
 51 |     func upload(for request: URLRequest, from bodyData: Data) async throws -> (Data, URLResponse)
    |                              `- error: cannot find type 'URLRequest' in scope
 52 |     func download(for request: URLRequest) async throws -> (URL, URLResponse)
 53 | }
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:52:32: error: cannot find type 'URLRequest' in scope
 50 |     func data(for request: URLRequest) async throws -> (Data, URLResponse)
 51 |     func upload(for request: URLRequest, from bodyData: Data) async throws -> (Data, URLResponse)
 52 |     func download(for request: URLRequest) async throws -> (URL, URLResponse)
    |                                `- error: cannot find type 'URLRequest' in scope
 53 | }
 54 |
[448/467] Compiling SwiftNetworkRequest Put.swift
[449/467] Compiling SwiftNetworkRequest Get.swift
[450/467] Compiling SwiftNetworkRequest HelperMacros.swift
[451/467] Compiling SwiftNetworkRequest DynamicAPIResponse.swift
[452/467] Compiling SwiftNetworkRequest Post.swift
[453/467] Compiling SwiftNetworkRequest Put.swift
[454/467] Compiling SwiftNetworkRequest DynamicAPIResponse.swift
[457/467] Compiling SwiftNetworkRequest RequestConfig.swift
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:50:28: error: cannot find type 'URLRequest' in scope
 48 | /// - [`swift-dependencies`](https://github.com/pointfreeco/swift-dependencies)
 49 | public protocol HTTPSession: Sendable {
 50 |     func data(for request: URLRequest) async throws -> (Data, URLResponse)
    |                            `- error: cannot find type 'URLRequest' in scope
 51 |     func upload(for request: URLRequest, from bodyData: Data) async throws -> (Data, URLResponse)
 52 |     func download(for request: URLRequest) async throws -> (URL, URLResponse)
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:51:30: error: cannot find type 'URLRequest' in scope
 49 | public protocol HTTPSession: Sendable {
 50 |     func data(for request: URLRequest) async throws -> (Data, URLResponse)
 51 |     func upload(for request: URLRequest, from bodyData: Data) async throws -> (Data, URLResponse)
    |                              `- error: cannot find type 'URLRequest' in scope
 52 |     func download(for request: URLRequest) async throws -> (URL, URLResponse)
 53 | }
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:52:32: error: cannot find type 'URLRequest' in scope
 50 |     func data(for request: URLRequest) async throws -> (Data, URLResponse)
 51 |     func upload(for request: URLRequest, from bodyData: Data) async throws -> (Data, URLResponse)
 52 |     func download(for request: URLRequest) async throws -> (URL, URLResponse)
    |                                `- error: cannot find type 'URLRequest' in scope
 53 | }
 54 |
error: emit-module command failed with exit code 1 (use -v to see invocation)
[458/467] Emitting module SwiftNetworkRequest
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:50:28: error: cannot find type 'URLRequest' in scope
 48 | /// - [`swift-dependencies`](https://github.com/pointfreeco/swift-dependencies)
 49 | public protocol HTTPSession: Sendable {
 50 |     func data(for request: URLRequest) async throws -> (Data, URLResponse)
    |                            `- error: cannot find type 'URLRequest' in scope
 51 |     func upload(for request: URLRequest, from bodyData: Data) async throws -> (Data, URLResponse)
 52 |     func download(for request: URLRequest) async throws -> (URL, URLResponse)
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:51:30: error: cannot find type 'URLRequest' in scope
 49 | public protocol HTTPSession: Sendable {
 50 |     func data(for request: URLRequest) async throws -> (Data, URLResponse)
 51 |     func upload(for request: URLRequest, from bodyData: Data) async throws -> (Data, URLResponse)
    |                              `- error: cannot find type 'URLRequest' in scope
 52 |     func download(for request: URLRequest) async throws -> (URL, URLResponse)
 53 | }
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:52:32: error: cannot find type 'URLRequest' in scope
 50 |     func data(for request: URLRequest) async throws -> (Data, URLResponse)
 51 |     func upload(for request: URLRequest, from bodyData: Data) async throws -> (Data, URLResponse)
 52 |     func download(for request: URLRequest) async throws -> (URL, URLResponse)
    |                                `- error: cannot find type 'URLRequest' in scope
 53 | }
 54 |
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/DI/URLSession.swift:35:56: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
33 |
34 | private enum URLSessionKey: DependencyKey {
35 |     static let liveValue: any HTTPSession = URLSession.shared
   |                                                        `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
36 | }
37 |
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:50:63: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 48 | /// - [`swift-dependencies`](https://github.com/pointfreeco/swift-dependencies)
 49 | public protocol HTTPSession: Sendable {
 50 |     func data(for request: URLRequest) async throws -> (Data, URLResponse)
    |                                                               `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 51 |     func upload(for request: URLRequest, from bodyData: Data) async throws -> (Data, URLResponse)
 52 |     func download(for request: URLRequest) async throws -> (URL, URLResponse)
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
  |                  `- note: 'URLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:51:86: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 49 | public protocol HTTPSession: Sendable {
 50 |     func data(for request: URLRequest) async throws -> (Data, URLResponse)
 51 |     func upload(for request: URLRequest, from bodyData: Data) async throws -> (Data, URLResponse)
    |                                                                                      `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 52 |     func download(for request: URLRequest) async throws -> (URL, URLResponse)
 53 | }
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
  |                  `- note: 'URLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:52:66: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 50 |     func data(for request: URLRequest) async throws -> (Data, URLResponse)
 51 |     func upload(for request: URLRequest, from bodyData: Data) async throws -> (Data, URLResponse)
 52 |     func download(for request: URLRequest) async throws -> (URL, URLResponse)
    |                                                                  `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 53 | }
 54 |
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
  |                  `- note: 'URLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:81:1: error: non-nominal type 'URLSession' (aka 'AnyObject') cannot be extended
 79 | }
 80 |
 81 | extension URLSession: HTTPSession {
    | `- error: non-nominal type 'URLSession' (aka 'AnyObject') cannot be extended
 82 |     public func download(for request: URLRequest) async throws -> (URL, URLResponse) {
 83 |         try await self.download(for: request, delegate: nil)
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:129:61: error: cannot find type 'URLRequest' in scope
127 |     }
128 |
129 |     func createURLRequest(apiRequest: ApiRequest) throws -> URLRequest {
    |                                                             `- error: cannot find type 'URLRequest' in scope
130 |         var components = URLComponents(string: apiRequest.path)
131 |
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:156:47: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
154 |     }
155 |
156 |     func handleResponse(data: Data, response: URLResponse) throws {
    |                                               `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
157 |         guard let httpResponse = response as? HTTPURLResponse else {
158 |             throw ApiRequestError(message: "Invalid Response")
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
[459/467] Compiling SwiftNetworkRequest URLSession+Request.swift
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:50:28: error: cannot find type 'URLRequest' in scope
 48 | /// - [`swift-dependencies`](https://github.com/pointfreeco/swift-dependencies)
 49 | public protocol HTTPSession: Sendable {
 50 |     func data(for request: URLRequest) async throws -> (Data, URLResponse)
    |                            `- error: cannot find type 'URLRequest' in scope
 51 |     func upload(for request: URLRequest, from bodyData: Data) async throws -> (Data, URLResponse)
 52 |     func download(for request: URLRequest) async throws -> (URL, URLResponse)
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:51:30: error: cannot find type 'URLRequest' in scope
 49 | public protocol HTTPSession: Sendable {
 50 |     func data(for request: URLRequest) async throws -> (Data, URLResponse)
 51 |     func upload(for request: URLRequest, from bodyData: Data) async throws -> (Data, URLResponse)
    |                              `- error: cannot find type 'URLRequest' in scope
 52 |     func download(for request: URLRequest) async throws -> (URL, URLResponse)
 53 | }
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:52:32: error: cannot find type 'URLRequest' in scope
 50 |     func data(for request: URLRequest) async throws -> (Data, URLResponse)
 51 |     func upload(for request: URLRequest, from bodyData: Data) async throws -> (Data, URLResponse)
 52 |     func download(for request: URLRequest) async throws -> (URL, URLResponse)
    |                                `- error: cannot find type 'URLRequest' in scope
 53 | }
 54 |
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/DI/URLSession.swift:35:56: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
33 |
34 | private enum URLSessionKey: DependencyKey {
35 |     static let liveValue: any HTTPSession = URLSession.shared
   |                                                        `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
36 | }
37 |
[460/467] Compiling SwiftNetworkRequest Delete.swift
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:50:28: error: cannot find type 'URLRequest' in scope
 48 | /// - [`swift-dependencies`](https://github.com/pointfreeco/swift-dependencies)
 49 | public protocol HTTPSession: Sendable {
 50 |     func data(for request: URLRequest) async throws -> (Data, URLResponse)
    |                            `- error: cannot find type 'URLRequest' in scope
 51 |     func upload(for request: URLRequest, from bodyData: Data) async throws -> (Data, URLResponse)
 52 |     func download(for request: URLRequest) async throws -> (URL, URLResponse)
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:51:30: error: cannot find type 'URLRequest' in scope
 49 | public protocol HTTPSession: Sendable {
 50 |     func data(for request: URLRequest) async throws -> (Data, URLResponse)
 51 |     func upload(for request: URLRequest, from bodyData: Data) async throws -> (Data, URLResponse)
    |                              `- error: cannot find type 'URLRequest' in scope
 52 |     func download(for request: URLRequest) async throws -> (URL, URLResponse)
 53 | }
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:52:32: error: cannot find type 'URLRequest' in scope
 50 |     func data(for request: URLRequest) async throws -> (Data, URLResponse)
 51 |     func upload(for request: URLRequest, from bodyData: Data) async throws -> (Data, URLResponse)
 52 |     func download(for request: URLRequest) async throws -> (URL, URLResponse)
    |                                `- error: cannot find type 'URLRequest' in scope
 53 | }
 54 |
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/DI/URLSession.swift:35:56: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
33 |
34 | private enum URLSessionKey: DependencyKey {
35 |     static let liveValue: any HTTPSession = URLSession.shared
   |                                                        `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
36 | }
37 |
error: emit-module command failed with exit code 1 (use -v to see invocation)
[461/467] Emitting module SwiftNetworkRequest
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:50:28: error: cannot find type 'URLRequest' in scope
 48 | /// - [`swift-dependencies`](https://github.com/pointfreeco/swift-dependencies)
 49 | public protocol HTTPSession: Sendable {
 50 |     func data(for request: URLRequest) async throws -> (Data, URLResponse)
    |                            `- error: cannot find type 'URLRequest' in scope
 51 |     func upload(for request: URLRequest, from bodyData: Data) async throws -> (Data, URLResponse)
 52 |     func download(for request: URLRequest) async throws -> (URL, URLResponse)
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:51:30: error: cannot find type 'URLRequest' in scope
 49 | public protocol HTTPSession: Sendable {
 50 |     func data(for request: URLRequest) async throws -> (Data, URLResponse)
 51 |     func upload(for request: URLRequest, from bodyData: Data) async throws -> (Data, URLResponse)
    |                              `- error: cannot find type 'URLRequest' in scope
 52 |     func download(for request: URLRequest) async throws -> (URL, URLResponse)
 53 | }
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:52:32: error: cannot find type 'URLRequest' in scope
 50 |     func data(for request: URLRequest) async throws -> (Data, URLResponse)
 51 |     func upload(for request: URLRequest, from bodyData: Data) async throws -> (Data, URLResponse)
 52 |     func download(for request: URLRequest) async throws -> (URL, URLResponse)
    |                                `- error: cannot find type 'URLRequest' in scope
 53 | }
 54 |
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/DI/URLSession.swift:35:56: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
33 |
34 | private enum URLSessionKey: DependencyKey {
35 |     static let liveValue: any HTTPSession = URLSession.shared
   |                                                        `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
36 | }
37 |
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:50:63: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 48 | /// - [`swift-dependencies`](https://github.com/pointfreeco/swift-dependencies)
 49 | public protocol HTTPSession: Sendable {
 50 |     func data(for request: URLRequest) async throws -> (Data, URLResponse)
    |                                                               `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 51 |     func upload(for request: URLRequest, from bodyData: Data) async throws -> (Data, URLResponse)
 52 |     func download(for request: URLRequest) async throws -> (URL, URLResponse)
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
  |                  `- note: 'URLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:51:86: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 49 | public protocol HTTPSession: Sendable {
 50 |     func data(for request: URLRequest) async throws -> (Data, URLResponse)
 51 |     func upload(for request: URLRequest, from bodyData: Data) async throws -> (Data, URLResponse)
    |                                                                                      `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 52 |     func download(for request: URLRequest) async throws -> (URL, URLResponse)
 53 | }
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
  |                  `- note: 'URLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:52:66: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 50 |     func data(for request: URLRequest) async throws -> (Data, URLResponse)
 51 |     func upload(for request: URLRequest, from bodyData: Data) async throws -> (Data, URLResponse)
 52 |     func download(for request: URLRequest) async throws -> (URL, URLResponse)
    |                                                                  `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 53 | }
 54 |
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
  |                  `- note: 'URLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:81:1: error: non-nominal type 'URLSession' (aka 'AnyObject') cannot be extended
 79 | }
 80 |
 81 | extension URLSession: HTTPSession {
    | `- error: non-nominal type 'URLSession' (aka 'AnyObject') cannot be extended
 82 |     public func download(for request: URLRequest) async throws -> (URL, URLResponse) {
 83 |         try await self.download(for: request, delegate: nil)
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:129:61: error: cannot find type 'URLRequest' in scope
127 |     }
128 |
129 |     func createURLRequest(apiRequest: ApiRequest) throws -> URLRequest {
    |                                                             `- error: cannot find type 'URLRequest' in scope
130 |         var components = URLComponents(string: apiRequest.path)
131 |
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:156:47: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
154 |     }
155 |
156 |     func handleResponse(data: Data, response: URLResponse) throws {
    |                                               `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
157 |         guard let httpResponse = response as? HTTPURLResponse else {
158 |             throw ApiRequestError(message: "Invalid Response")
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
[462/467] Compiling SwiftNetworkRequest RequestAuthorization.swift
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:50:28: error: cannot find type 'URLRequest' in scope
 48 | /// - [`swift-dependencies`](https://github.com/pointfreeco/swift-dependencies)
 49 | public protocol HTTPSession: Sendable {
 50 |     func data(for request: URLRequest) async throws -> (Data, URLResponse)
    |                            `- error: cannot find type 'URLRequest' in scope
 51 |     func upload(for request: URLRequest, from bodyData: Data) async throws -> (Data, URLResponse)
 52 |     func download(for request: URLRequest) async throws -> (URL, URLResponse)
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:50:63: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 48 | /// - [`swift-dependencies`](https://github.com/pointfreeco/swift-dependencies)
 49 | public protocol HTTPSession: Sendable {
 50 |     func data(for request: URLRequest) async throws -> (Data, URLResponse)
    |                                                               `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 51 |     func upload(for request: URLRequest, from bodyData: Data) async throws -> (Data, URLResponse)
 52 |     func download(for request: URLRequest) async throws -> (URL, URLResponse)
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
  |                  `- note: 'URLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:51:30: error: cannot find type 'URLRequest' in scope
 49 | public protocol HTTPSession: Sendable {
 50 |     func data(for request: URLRequest) async throws -> (Data, URLResponse)
 51 |     func upload(for request: URLRequest, from bodyData: Data) async throws -> (Data, URLResponse)
    |                              `- error: cannot find type 'URLRequest' in scope
 52 |     func download(for request: URLRequest) async throws -> (URL, URLResponse)
 53 | }
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:51:86: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 49 | public protocol HTTPSession: Sendable {
 50 |     func data(for request: URLRequest) async throws -> (Data, URLResponse)
 51 |     func upload(for request: URLRequest, from bodyData: Data) async throws -> (Data, URLResponse)
    |                                                                                      `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 52 |     func download(for request: URLRequest) async throws -> (URL, URLResponse)
 53 | }
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
  |                  `- note: 'URLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:52:32: error: cannot find type 'URLRequest' in scope
 50 |     func data(for request: URLRequest) async throws -> (Data, URLResponse)
 51 |     func upload(for request: URLRequest, from bodyData: Data) async throws -> (Data, URLResponse)
 52 |     func download(for request: URLRequest) async throws -> (URL, URLResponse)
    |                                `- error: cannot find type 'URLRequest' in scope
 53 | }
 54 |
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:52:66: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 50 |     func data(for request: URLRequest) async throws -> (Data, URLResponse)
 51 |     func upload(for request: URLRequest, from bodyData: Data) async throws -> (Data, URLResponse)
 52 |     func download(for request: URLRequest) async throws -> (URL, URLResponse)
    |                                                                  `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 53 | }
 54 |
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
  |                  `- note: 'URLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:81:1: error: non-nominal type 'URLSession' (aka 'AnyObject') cannot be extended
 79 | }
 80 |
 81 | extension URLSession: HTTPSession {
    | `- error: non-nominal type 'URLSession' (aka 'AnyObject') cannot be extended
 82 |     public func download(for request: URLRequest) async throws -> (URL, URLResponse) {
 83 |         try await self.download(for: request, delegate: nil)
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:129:61: error: cannot find type 'URLRequest' in scope
127 |     }
128 |
129 |     func createURLRequest(apiRequest: ApiRequest) throws -> URLRequest {
    |                                                             `- error: cannot find type 'URLRequest' in scope
130 |         var components = URLComponents(string: apiRequest.path)
131 |
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:156:47: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
154 |     }
155 |
156 |     func handleResponse(data: Data, response: URLResponse) throws {
    |                                               `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
157 |         guard let httpResponse = response as? HTTPURLResponse else {
158 |             throw ApiRequestError(message: "Invalid Response")
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
  |                  `- note: 'URLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:115:26: error: cannot infer contextual base in reference to member 'init'
113 |     ) async throws -> Data {
114 |         let urlRequest = try createURLRequest(
115 |             apiRequest: .init(
    |                          `- error: cannot infer contextual base in reference to member 'init'
116 |                 path: path,
117 |                 httpMethod: httpMethod,
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:142:23: error: cannot find 'URLRequest' in scope
140 |         }
141 |
142 |         var request = URLRequest(url: url)
    |                       `- error: cannot find 'URLRequest' in scope
143 |         request.httpMethod = apiRequest.httpMethod
144 |
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:157:43: warning: conditional cast from 'URLResponse' (aka 'AnyObject') to 'HTTPURLResponse' (aka 'AnyObject') always succeeds
155 |
156 |     func handleResponse(data: Data, response: URLResponse) throws {
157 |         guard let httpResponse = response as? HTTPURLResponse else {
    |                                           `- warning: conditional cast from 'URLResponse' (aka 'AnyObject') to 'HTTPURLResponse' (aka 'AnyObject') always succeeds
158 |             throw ApiRequestError(message: "Invalid Response")
159 |         }
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:157:47: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
155 |
156 |     func handleResponse(data: Data, response: URLResponse) throws {
157 |         guard let httpResponse = response as? HTTPURLResponse else {
    |                                               `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
158 |             throw ApiRequestError(message: "Invalid Response")
159 |         }
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' 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 HTTPURLResponse = AnyObject
  |                  `- note: 'HTTPURLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:161:49: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
159 |         }
160 |
161 |         guard (200...299).contains(httpResponse.statusCode) else {
    |                                                 `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
162 |             throw URLError(.badServerResponse)
163 |         }
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:82:39: error: cannot find type 'URLRequest' in scope
 80 |
 81 | extension URLSession: HTTPSession {
 82 |     public func download(for request: URLRequest) async throws -> (URL, URLResponse) {
    |                                       `- error: cannot find type 'URLRequest' in scope
 83 |         try await self.download(for: request, delegate: nil)
 84 |     }
[463/467] Compiling SwiftNetworkRequest URLSession.swift
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:50:28: error: cannot find type 'URLRequest' in scope
 48 | /// - [`swift-dependencies`](https://github.com/pointfreeco/swift-dependencies)
 49 | public protocol HTTPSession: Sendable {
 50 |     func data(for request: URLRequest) async throws -> (Data, URLResponse)
    |                            `- error: cannot find type 'URLRequest' in scope
 51 |     func upload(for request: URLRequest, from bodyData: Data) async throws -> (Data, URLResponse)
 52 |     func download(for request: URLRequest) async throws -> (URL, URLResponse)
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:50:63: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 48 | /// - [`swift-dependencies`](https://github.com/pointfreeco/swift-dependencies)
 49 | public protocol HTTPSession: Sendable {
 50 |     func data(for request: URLRequest) async throws -> (Data, URLResponse)
    |                                                               `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 51 |     func upload(for request: URLRequest, from bodyData: Data) async throws -> (Data, URLResponse)
 52 |     func download(for request: URLRequest) async throws -> (URL, URLResponse)
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
  |                  `- note: 'URLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:51:30: error: cannot find type 'URLRequest' in scope
 49 | public protocol HTTPSession: Sendable {
 50 |     func data(for request: URLRequest) async throws -> (Data, URLResponse)
 51 |     func upload(for request: URLRequest, from bodyData: Data) async throws -> (Data, URLResponse)
    |                              `- error: cannot find type 'URLRequest' in scope
 52 |     func download(for request: URLRequest) async throws -> (URL, URLResponse)
 53 | }
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:51:86: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 49 | public protocol HTTPSession: Sendable {
 50 |     func data(for request: URLRequest) async throws -> (Data, URLResponse)
 51 |     func upload(for request: URLRequest, from bodyData: Data) async throws -> (Data, URLResponse)
    |                                                                                      `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 52 |     func download(for request: URLRequest) async throws -> (URL, URLResponse)
 53 | }
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
  |                  `- note: 'URLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:52:32: error: cannot find type 'URLRequest' in scope
 50 |     func data(for request: URLRequest) async throws -> (Data, URLResponse)
 51 |     func upload(for request: URLRequest, from bodyData: Data) async throws -> (Data, URLResponse)
 52 |     func download(for request: URLRequest) async throws -> (URL, URLResponse)
    |                                `- error: cannot find type 'URLRequest' in scope
 53 | }
 54 |
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:52:66: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 50 |     func data(for request: URLRequest) async throws -> (Data, URLResponse)
 51 |     func upload(for request: URLRequest, from bodyData: Data) async throws -> (Data, URLResponse)
 52 |     func download(for request: URLRequest) async throws -> (URL, URLResponse)
    |                                                                  `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 53 | }
 54 |
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
  |                  `- note: 'URLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:81:1: error: non-nominal type 'URLSession' (aka 'AnyObject') cannot be extended
 79 | }
 80 |
 81 | extension URLSession: HTTPSession {
    | `- error: non-nominal type 'URLSession' (aka 'AnyObject') cannot be extended
 82 |     public func download(for request: URLRequest) async throws -> (URL, URLResponse) {
 83 |         try await self.download(for: request, delegate: nil)
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:129:61: error: cannot find type 'URLRequest' in scope
127 |     }
128 |
129 |     func createURLRequest(apiRequest: ApiRequest) throws -> URLRequest {
    |                                                             `- error: cannot find type 'URLRequest' in scope
130 |         var components = URLComponents(string: apiRequest.path)
131 |
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:156:47: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
154 |     }
155 |
156 |     func handleResponse(data: Data, response: URLResponse) throws {
    |                                               `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
157 |         guard let httpResponse = response as? HTTPURLResponse else {
158 |             throw ApiRequestError(message: "Invalid Response")
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
  |                  `- note: 'URLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:115:26: error: cannot infer contextual base in reference to member 'init'
113 |     ) async throws -> Data {
114 |         let urlRequest = try createURLRequest(
115 |             apiRequest: .init(
    |                          `- error: cannot infer contextual base in reference to member 'init'
116 |                 path: path,
117 |                 httpMethod: httpMethod,
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:142:23: error: cannot find 'URLRequest' in scope
140 |         }
141 |
142 |         var request = URLRequest(url: url)
    |                       `- error: cannot find 'URLRequest' in scope
143 |         request.httpMethod = apiRequest.httpMethod
144 |
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:157:43: warning: conditional cast from 'URLResponse' (aka 'AnyObject') to 'HTTPURLResponse' (aka 'AnyObject') always succeeds
155 |
156 |     func handleResponse(data: Data, response: URLResponse) throws {
157 |         guard let httpResponse = response as? HTTPURLResponse else {
    |                                           `- warning: conditional cast from 'URLResponse' (aka 'AnyObject') to 'HTTPURLResponse' (aka 'AnyObject') always succeeds
158 |             throw ApiRequestError(message: "Invalid Response")
159 |         }
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:157:47: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
155 |
156 |     func handleResponse(data: Data, response: URLResponse) throws {
157 |         guard let httpResponse = response as? HTTPURLResponse else {
    |                                               `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
158 |             throw ApiRequestError(message: "Invalid Response")
159 |         }
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' 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 HTTPURLResponse = AnyObject
  |                  `- note: 'HTTPURLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:161:49: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
159 |         }
160 |
161 |         guard (200...299).contains(httpResponse.statusCode) else {
    |                                                 `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
162 |             throw URLError(.badServerResponse)
163 |         }
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:82:39: error: cannot find type 'URLRequest' in scope
 80 |
 81 | extension URLSession: HTTPSession {
 82 |     public func download(for request: URLRequest) async throws -> (URL, URLResponse) {
    |                                       `- error: cannot find type 'URLRequest' in scope
 83 |         try await self.download(for: request, delegate: nil)
 84 |     }
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:50:28: error: cannot find type 'URLRequest' in scope
 48 | /// - [`swift-dependencies`](https://github.com/pointfreeco/swift-dependencies)
 49 | public protocol HTTPSession: Sendable {
 50 |     func data(for request: URLRequest) async throws -> (Data, URLResponse)
    |                            `- error: cannot find type 'URLRequest' in scope
 51 |     func upload(for request: URLRequest, from bodyData: Data) async throws -> (Data, URLResponse)
 52 |     func download(for request: URLRequest) async throws -> (URL, URLResponse)
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:50:63: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 48 | /// - [`swift-dependencies`](https://github.com/pointfreeco/swift-dependencies)
 49 | public protocol HTTPSession: Sendable {
 50 |     func data(for request: URLRequest) async throws -> (Data, URLResponse)
    |                                                               `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 51 |     func upload(for request: URLRequest, from bodyData: Data) async throws -> (Data, URLResponse)
 52 |     func download(for request: URLRequest) async throws -> (URL, URLResponse)
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
  |                  `- note: 'URLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:51:30: error: cannot find type 'URLRequest' in scope
 49 | public protocol HTTPSession: Sendable {
 50 |     func data(for request: URLRequest) async throws -> (Data, URLResponse)
 51 |     func upload(for request: URLRequest, from bodyData: Data) async throws -> (Data, URLResponse)
    |                              `- error: cannot find type 'URLRequest' in scope
 52 |     func download(for request: URLRequest) async throws -> (URL, URLResponse)
 53 | }
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:51:86: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 49 | public protocol HTTPSession: Sendable {
 50 |     func data(for request: URLRequest) async throws -> (Data, URLResponse)
 51 |     func upload(for request: URLRequest, from bodyData: Data) async throws -> (Data, URLResponse)
    |                                                                                      `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 52 |     func download(for request: URLRequest) async throws -> (URL, URLResponse)
 53 | }
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
  |                  `- note: 'URLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:52:32: error: cannot find type 'URLRequest' in scope
 50 |     func data(for request: URLRequest) async throws -> (Data, URLResponse)
 51 |     func upload(for request: URLRequest, from bodyData: Data) async throws -> (Data, URLResponse)
 52 |     func download(for request: URLRequest) async throws -> (URL, URLResponse)
    |                                `- error: cannot find type 'URLRequest' in scope
 53 | }
 54 |
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:52:66: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 50 |     func data(for request: URLRequest) async throws -> (Data, URLResponse)
 51 |     func upload(for request: URLRequest, from bodyData: Data) async throws -> (Data, URLResponse)
 52 |     func download(for request: URLRequest) async throws -> (URL, URLResponse)
    |                                                                  `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 53 | }
 54 |
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
  |                  `- note: 'URLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:81:1: error: non-nominal type 'URLSession' (aka 'AnyObject') cannot be extended
 79 | }
 80 |
 81 | extension URLSession: HTTPSession {
    | `- error: non-nominal type 'URLSession' (aka 'AnyObject') cannot be extended
 82 |     public func download(for request: URLRequest) async throws -> (URL, URLResponse) {
 83 |         try await self.download(for: request, delegate: nil)
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:129:61: error: cannot find type 'URLRequest' in scope
127 |     }
128 |
129 |     func createURLRequest(apiRequest: ApiRequest) throws -> URLRequest {
    |                                                             `- error: cannot find type 'URLRequest' in scope
130 |         var components = URLComponents(string: apiRequest.path)
131 |
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:156:47: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
154 |     }
155 |
156 |     func handleResponse(data: Data, response: URLResponse) throws {
    |                                               `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
157 |         guard let httpResponse = response as? HTTPURLResponse else {
158 |             throw ApiRequestError(message: "Invalid Response")
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
  |                  `- note: 'URLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:115:26: error: cannot infer contextual base in reference to member 'init'
113 |     ) async throws -> Data {
114 |         let urlRequest = try createURLRequest(
115 |             apiRequest: .init(
    |                          `- error: cannot infer contextual base in reference to member 'init'
116 |                 path: path,
117 |                 httpMethod: httpMethod,
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:142:23: error: cannot find 'URLRequest' in scope
140 |         }
141 |
142 |         var request = URLRequest(url: url)
    |                       `- error: cannot find 'URLRequest' in scope
143 |         request.httpMethod = apiRequest.httpMethod
144 |
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:157:43: warning: conditional cast from 'URLResponse' (aka 'AnyObject') to 'HTTPURLResponse' (aka 'AnyObject') always succeeds
155 |
156 |     func handleResponse(data: Data, response: URLResponse) throws {
157 |         guard let httpResponse = response as? HTTPURLResponse else {
    |                                           `- warning: conditional cast from 'URLResponse' (aka 'AnyObject') to 'HTTPURLResponse' (aka 'AnyObject') always succeeds
158 |             throw ApiRequestError(message: "Invalid Response")
159 |         }
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:157:47: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
155 |
156 |     func handleResponse(data: Data, response: URLResponse) throws {
157 |         guard let httpResponse = response as? HTTPURLResponse else {
    |                                               `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
158 |             throw ApiRequestError(message: "Invalid Response")
159 |         }
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' 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 HTTPURLResponse = AnyObject
  |                  `- note: 'HTTPURLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:161:49: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
159 |         }
160 |
161 |         guard (200...299).contains(httpResponse.statusCode) else {
    |                                                 `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
162 |             throw URLError(.badServerResponse)
163 |         }
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:82:39: error: cannot find type 'URLRequest' in scope
 80 |
 81 | extension URLSession: HTTPSession {
 82 |     public func download(for request: URLRequest) async throws -> (URL, URLResponse) {
    |                                       `- error: cannot find type 'URLRequest' in scope
 83 |         try await self.download(for: request, delegate: nil)
 84 |     }
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:50:28: error: cannot find type 'URLRequest' in scope
 48 | /// - [`swift-dependencies`](https://github.com/pointfreeco/swift-dependencies)
 49 | public protocol HTTPSession: Sendable {
 50 |     func data(for request: URLRequest) async throws -> (Data, URLResponse)
    |                            `- error: cannot find type 'URLRequest' in scope
 51 |     func upload(for request: URLRequest, from bodyData: Data) async throws -> (Data, URLResponse)
 52 |     func download(for request: URLRequest) async throws -> (URL, URLResponse)
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:50:63: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 48 | /// - [`swift-dependencies`](https://github.com/pointfreeco/swift-dependencies)
 49 | public protocol HTTPSession: Sendable {
 50 |     func data(for request: URLRequest) async throws -> (Data, URLResponse)
    |                                                               `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 51 |     func upload(for request: URLRequest, from bodyData: Data) async throws -> (Data, URLResponse)
 52 |     func download(for request: URLRequest) async throws -> (URL, URLResponse)
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
  |                  `- note: 'URLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:51:30: error: cannot find type 'URLRequest' in scope
 49 | public protocol HTTPSession: Sendable {
 50 |     func data(for request: URLRequest) async throws -> (Data, URLResponse)
 51 |     func upload(for request: URLRequest, from bodyData: Data) async throws -> (Data, URLResponse)
    |                              `- error: cannot find type 'URLRequest' in scope
 52 |     func download(for request: URLRequest) async throws -> (URL, URLResponse)
 53 | }
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:51:86: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 49 | public protocol HTTPSession: Sendable {
 50 |     func data(for request: URLRequest) async throws -> (Data, URLResponse)
 51 |     func upload(for request: URLRequest, from bodyData: Data) async throws -> (Data, URLResponse)
    |                                                                                      `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 52 |     func download(for request: URLRequest) async throws -> (URL, URLResponse)
 53 | }
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
  |                  `- note: 'URLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:52:32: error: cannot find type 'URLRequest' in scope
 50 |     func data(for request: URLRequest) async throws -> (Data, URLResponse)
 51 |     func upload(for request: URLRequest, from bodyData: Data) async throws -> (Data, URLResponse)
 52 |     func download(for request: URLRequest) async throws -> (URL, URLResponse)
    |                                `- error: cannot find type 'URLRequest' in scope
 53 | }
 54 |
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:52:66: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 50 |     func data(for request: URLRequest) async throws -> (Data, URLResponse)
 51 |     func upload(for request: URLRequest, from bodyData: Data) async throws -> (Data, URLResponse)
 52 |     func download(for request: URLRequest) async throws -> (URL, URLResponse)
    |                                                                  `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 53 | }
 54 |
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
  |                  `- note: 'URLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:81:1: error: non-nominal type 'URLSession' (aka 'AnyObject') cannot be extended
 79 | }
 80 |
 81 | extension URLSession: HTTPSession {
    | `- error: non-nominal type 'URLSession' (aka 'AnyObject') cannot be extended
 82 |     public func download(for request: URLRequest) async throws -> (URL, URLResponse) {
 83 |         try await self.download(for: request, delegate: nil)
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:129:61: error: cannot find type 'URLRequest' in scope
127 |     }
128 |
129 |     func createURLRequest(apiRequest: ApiRequest) throws -> URLRequest {
    |                                                             `- error: cannot find type 'URLRequest' in scope
130 |         var components = URLComponents(string: apiRequest.path)
131 |
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:156:47: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
154 |     }
155 |
156 |     func handleResponse(data: Data, response: URLResponse) throws {
    |                                               `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
157 |         guard let httpResponse = response as? HTTPURLResponse else {
158 |             throw ApiRequestError(message: "Invalid Response")
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
  |                  `- note: 'URLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:115:26: error: cannot infer contextual base in reference to member 'init'
113 |     ) async throws -> Data {
114 |         let urlRequest = try createURLRequest(
115 |             apiRequest: .init(
    |                          `- error: cannot infer contextual base in reference to member 'init'
116 |                 path: path,
117 |                 httpMethod: httpMethod,
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:142:23: error: cannot find 'URLRequest' in scope
140 |         }
141 |
142 |         var request = URLRequest(url: url)
    |                       `- error: cannot find 'URLRequest' in scope
143 |         request.httpMethod = apiRequest.httpMethod
144 |
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:157:43: warning: conditional cast from 'URLResponse' (aka 'AnyObject') to 'HTTPURLResponse' (aka 'AnyObject') always succeeds
155 |
156 |     func handleResponse(data: Data, response: URLResponse) throws {
157 |         guard let httpResponse = response as? HTTPURLResponse else {
    |                                           `- warning: conditional cast from 'URLResponse' (aka 'AnyObject') to 'HTTPURLResponse' (aka 'AnyObject') always succeeds
158 |             throw ApiRequestError(message: "Invalid Response")
159 |         }
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:157:47: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
155 |
156 |     func handleResponse(data: Data, response: URLResponse) throws {
157 |         guard let httpResponse = response as? HTTPURLResponse else {
    |                                               `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
158 |             throw ApiRequestError(message: "Invalid Response")
159 |         }
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' 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 HTTPURLResponse = AnyObject
  |                  `- note: 'HTTPURLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:161:49: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
159 |         }
160 |
161 |         guard (200...299).contains(httpResponse.statusCode) else {
    |                                                 `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
162 |             throw URLError(.badServerResponse)
163 |         }
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:82:39: error: cannot find type 'URLRequest' in scope
 80 |
 81 | extension URLSession: HTTPSession {
 82 |     public func download(for request: URLRequest) async throws -> (URL, URLResponse) {
    |                                       `- error: cannot find type 'URLRequest' in scope
 83 |         try await self.download(for: request, delegate: nil)
 84 |     }
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:50:28: error: cannot find type 'URLRequest' in scope
 48 | /// - [`swift-dependencies`](https://github.com/pointfreeco/swift-dependencies)
 49 | public protocol HTTPSession: Sendable {
 50 |     func data(for request: URLRequest) async throws -> (Data, URLResponse)
    |                            `- error: cannot find type 'URLRequest' in scope
 51 |     func upload(for request: URLRequest, from bodyData: Data) async throws -> (Data, URLResponse)
 52 |     func download(for request: URLRequest) async throws -> (URL, URLResponse)
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:51:30: error: cannot find type 'URLRequest' in scope
 49 | public protocol HTTPSession: Sendable {
 50 |     func data(for request: URLRequest) async throws -> (Data, URLResponse)
 51 |     func upload(for request: URLRequest, from bodyData: Data) async throws -> (Data, URLResponse)
    |                              `- error: cannot find type 'URLRequest' in scope
 52 |     func download(for request: URLRequest) async throws -> (URL, URLResponse)
 53 | }
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:52:32: error: cannot find type 'URLRequest' in scope
 50 |     func data(for request: URLRequest) async throws -> (Data, URLResponse)
 51 |     func upload(for request: URLRequest, from bodyData: Data) async throws -> (Data, URLResponse)
 52 |     func download(for request: URLRequest) async throws -> (URL, URLResponse)
    |                                `- error: cannot find type 'URLRequest' in scope
 53 | }
 54 |
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/DI/URLSession.swift:35:56: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
33 |
34 | private enum URLSessionKey: DependencyKey {
35 |     static let liveValue: any HTTPSession = URLSession.shared
   |                                                        `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
36 | }
37 |
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:50:28: error: cannot find type 'URLRequest' in scope
 48 | /// - [`swift-dependencies`](https://github.com/pointfreeco/swift-dependencies)
 49 | public protocol HTTPSession: Sendable {
 50 |     func data(for request: URLRequest) async throws -> (Data, URLResponse)
    |                            `- error: cannot find type 'URLRequest' in scope
 51 |     func upload(for request: URLRequest, from bodyData: Data) async throws -> (Data, URLResponse)
 52 |     func download(for request: URLRequest) async throws -> (URL, URLResponse)
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:51:30: error: cannot find type 'URLRequest' in scope
 49 | public protocol HTTPSession: Sendable {
 50 |     func data(for request: URLRequest) async throws -> (Data, URLResponse)
 51 |     func upload(for request: URLRequest, from bodyData: Data) async throws -> (Data, URLResponse)
    |                              `- error: cannot find type 'URLRequest' in scope
 52 |     func download(for request: URLRequest) async throws -> (URL, URLResponse)
 53 | }
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/Helpers/URLSession+Request.swift:52:32: error: cannot find type 'URLRequest' in scope
 50 |     func data(for request: URLRequest) async throws -> (Data, URLResponse)
 51 |     func upload(for request: URLRequest, from bodyData: Data) async throws -> (Data, URLResponse)
 52 |     func download(for request: URLRequest) async throws -> (URL, URLResponse)
    |                                `- error: cannot find type 'URLRequest' in scope
 53 | }
 54 |
/host/spi-builder-workspace/Sources/SwiftNetworkRequest/DI/URLSession.swift:35:56: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
33 |
34 | private enum URLSessionKey: DependencyKey {
35 |     static let liveValue: any HTTPSession = URLSession.shared
   |                                                        `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
36 | }
37 |
BUILD FAILURE 6.1 android