The Swift Package Index logo.Swift Package Index

Build Information

Failed to build SupabaseStorage, reference main (efb9c7), with Swift 6.3 for Wasm on 13 Apr 2026 19:18:06 UTC.

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4609320-2":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/swiftpackageindex/spi-images:wasm-6.3-latest swift build --swift-sdk swift-6.3-RELEASE_wasm 2>&1

Build Log

========================================
RunAll
========================================
Builder version: 4.70.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/supabase-community/storage-swift.git
Reference: main
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/supabase-community/storage-swift
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at efb9c7c Update README.md
Cloned https://github.com/supabase-community/storage-swift.git
Revision (git rev-parse @):
efb9c7c225cdc4a82787c3984ff66d2bceb97167
SUCCESS checkout https://github.com/supabase-community/storage-swift.git at main
========================================
Build
========================================
Selected platform:         wasm
Swift version:             6.3
Building package at path:  $PWD
https://github.com/supabase-community/storage-swift.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-2":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/swiftpackageindex/spi-images:wasm-6.3-latest swift build --swift-sdk swift-6.3-RELEASE_wasm 2>&1
wasm-6.3-latest: Pulling from swiftpackageindex/spi-images
Digest: sha256:d69f4e7582c319245442d62a08b2d7c7fd5a0c0c69f5d2ef11d1530cd8d3329b
Status: Image is up to date for registry.gitlab.com/swiftpackageindex/spi-images:wasm-6.3-latest
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-24593BA9C3E375BF.txt
[3/16] Compiling SupabaseStorage SupabaseStorage.swift
/host/spi-builder-workspace/Sources/SupabaseStorage/StorageHTTPClient.swift:8:25: error: cannot find type 'URLRequest' in scope
 6 |
 7 | public protocol StorageHTTPClient {
 8 |   func fetch(_ request: URLRequest) async throws -> (Data, HTTPURLResponse)
   |                         `- error: cannot find type 'URLRequest' in scope
 9 |   func upload(_ request: URLRequest, from data: Data) async throws -> (Data, HTTPURLResponse)
10 | }
/host/spi-builder-workspace/Sources/SupabaseStorage/StorageHTTPClient.swift:9:26: error: cannot find type 'URLRequest' in scope
 7 | public protocol StorageHTTPClient {
 8 |   func fetch(_ request: URLRequest) async throws -> (Data, HTTPURLResponse)
 9 |   func upload(_ request: URLRequest, from data: Data) async throws -> (Data, HTTPURLResponse)
   |                          `- error: cannot find type 'URLRequest' in scope
10 | }
11 |
error: emit-module command failed with exit code 1 (use -v to see invocation)
[4/17] Compiling SupabaseStorage FileObject.swift
[5/17] Compiling SupabaseStorage FileOptions.swift
[6/17] Emitting module SupabaseStorage
/host/spi-builder-workspace/Sources/SupabaseStorage/StorageHTTPClient.swift:8:25: error: cannot find type 'URLRequest' in scope
 6 |
 7 | public protocol StorageHTTPClient {
 8 |   func fetch(_ request: URLRequest) async throws -> (Data, HTTPURLResponse)
   |                         `- error: cannot find type 'URLRequest' in scope
 9 |   func upload(_ request: URLRequest, from data: Data) async throws -> (Data, HTTPURLResponse)
10 | }
/host/spi-builder-workspace/Sources/SupabaseStorage/StorageHTTPClient.swift:9:26: error: cannot find type 'URLRequest' in scope
 7 | public protocol StorageHTTPClient {
 8 |   func fetch(_ request: URLRequest) async throws -> (Data, HTTPURLResponse)
 9 |   func upload(_ request: URLRequest, from data: Data) async throws -> (Data, HTTPURLResponse)
   |                          `- error: cannot find type 'URLRequest' in scope
10 | }
11 |
/host/spi-builder-workspace/Sources/SupabaseStorage/StorageHTTPClient.swift:8:60: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 6 |
 7 | public protocol StorageHTTPClient {
 8 |   func fetch(_ request: URLRequest) async throws -> (Data, HTTPURLResponse)
   |                                                            `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 9 |   func upload(_ request: URLRequest, from data: Data) async throws -> (Data, HTTPURLResponse)
10 | }
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/SupabaseStorage/StorageHTTPClient.swift:9:78: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 7 | public protocol StorageHTTPClient {
 8 |   func fetch(_ request: URLRequest) async throws -> (Data, HTTPURLResponse)
 9 |   func upload(_ request: URLRequest, from data: Data) async throws -> (Data, HTTPURLResponse)
   |                                                                              `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
10 | }
11 |
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/SupabaseStorage/StorageHTTPClient.swift:15:32: error: cannot find type 'URLRequest' in scope
13 |   public init() {}
14 |
15 |   public func fetch(_ request: URLRequest) async throws -> (Data, HTTPURLResponse) {
   |                                `- error: cannot find type 'URLRequest' in scope
16 |     try await withCheckedThrowingContinuation { continuation in
17 |       let dataTask = URLSession.shared.dataTask(with: request) { data, response, error in
/host/spi-builder-workspace/Sources/SupabaseStorage/StorageHTTPClient.swift:15:67: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
13 |   public init() {}
14 |
15 |   public func fetch(_ request: URLRequest) async throws -> (Data, HTTPURLResponse) {
   |                                                                   `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
16 |     try await withCheckedThrowingContinuation { continuation in
17 |       let dataTask = URLSession.shared.dataTask(with: request) { data, response, error in
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/SupabaseStorage/StorageHTTPClient.swift:39:16: error: cannot find type 'URLRequest' in scope
37 |
38 |   public func upload(
39 |     _ request: URLRequest,
   |                `- error: cannot find type 'URLRequest' in scope
40 |     from data: Data
41 |   ) async throws -> (Data, HTTPURLResponse) {
/host/spi-builder-workspace/Sources/SupabaseStorage/StorageHTTPClient.swift:41:28: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
39 |     _ request: URLRequest,
40 |     from data: Data
41 |   ) async throws -> (Data, HTTPURLResponse) {
   |                            `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
42 |     try await withCheckedThrowingContinuation { continuation in
43 |       let task = URLSession.shared.uploadTask(with: request, from: data) { data, response, error in
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
[7/17] Compiling SupabaseStorage MultipartFile.swift
[8/17] Compiling SupabaseStorage SearchOptions.swift
[9/17] Compiling SupabaseStorage Bucket.swift
[10/17] Compiling SupabaseStorage BucketOptions.swift
[11/17] Compiling SupabaseStorage StorageBucketApi.swift
/host/spi-builder-workspace/Sources/SupabaseStorage/StorageHTTPClient.swift:8:25: error: cannot find type 'URLRequest' in scope
 6 |
 7 | public protocol StorageHTTPClient {
 8 |   func fetch(_ request: URLRequest) async throws -> (Data, HTTPURLResponse)
   |                         `- error: cannot find type 'URLRequest' in scope
 9 |   func upload(_ request: URLRequest, from data: Data) async throws -> (Data, HTTPURLResponse)
10 | }
/host/spi-builder-workspace/Sources/SupabaseStorage/StorageHTTPClient.swift:9:26: error: cannot find type 'URLRequest' in scope
 7 | public protocol StorageHTTPClient {
 8 |   func fetch(_ request: URLRequest) async throws -> (Data, HTTPURLResponse)
 9 |   func upload(_ request: URLRequest, from data: Data) async throws -> (Data, HTTPURLResponse)
   |                          `- error: cannot find type 'URLRequest' in scope
10 | }
11 |
[12/17] Compiling SupabaseStorage StorageError.swift
/host/spi-builder-workspace/Sources/SupabaseStorage/StorageHTTPClient.swift:8:25: error: cannot find type 'URLRequest' in scope
 6 |
 7 | public protocol StorageHTTPClient {
 8 |   func fetch(_ request: URLRequest) async throws -> (Data, HTTPURLResponse)
   |                         `- error: cannot find type 'URLRequest' in scope
 9 |   func upload(_ request: URLRequest, from data: Data) async throws -> (Data, HTTPURLResponse)
10 | }
/host/spi-builder-workspace/Sources/SupabaseStorage/StorageHTTPClient.swift:9:26: error: cannot find type 'URLRequest' in scope
 7 | public protocol StorageHTTPClient {
 8 |   func fetch(_ request: URLRequest) async throws -> (Data, HTTPURLResponse)
 9 |   func upload(_ request: URLRequest, from data: Data) async throws -> (Data, HTTPURLResponse)
   |                          `- error: cannot find type 'URLRequest' in scope
10 | }
11 |
[13/17] Compiling SupabaseStorage StorageFileApi.swift
/host/spi-builder-workspace/Sources/SupabaseStorage/StorageHTTPClient.swift:8:25: error: cannot find type 'URLRequest' in scope
 6 |
 7 | public protocol StorageHTTPClient {
 8 |   func fetch(_ request: URLRequest) async throws -> (Data, HTTPURLResponse)
   |                         `- error: cannot find type 'URLRequest' in scope
 9 |   func upload(_ request: URLRequest, from data: Data) async throws -> (Data, HTTPURLResponse)
10 | }
/host/spi-builder-workspace/Sources/SupabaseStorage/StorageHTTPClient.swift:9:26: error: cannot find type 'URLRequest' in scope
 7 | public protocol StorageHTTPClient {
 8 |   func fetch(_ request: URLRequest) async throws -> (Data, HTTPURLResponse)
 9 |   func upload(_ request: URLRequest, from data: Data) async throws -> (Data, HTTPURLResponse)
   |                          `- error: cannot find type 'URLRequest' in scope
10 | }
11 |
/host/spi-builder-workspace/Sources/SupabaseStorage/StorageHTTPClient.swift:8:60: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 6 |
 7 | public protocol StorageHTTPClient {
 8 |   func fetch(_ request: URLRequest) async throws -> (Data, HTTPURLResponse)
   |                                                            `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 9 |   func upload(_ request: URLRequest, from data: Data) async throws -> (Data, HTTPURLResponse)
10 | }
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/SupabaseStorage/StorageHTTPClient.swift:9:78: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 7 | public protocol StorageHTTPClient {
 8 |   func fetch(_ request: URLRequest) async throws -> (Data, HTTPURLResponse)
 9 |   func upload(_ request: URLRequest, from data: Data) async throws -> (Data, HTTPURLResponse)
   |                                                                              `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
10 | }
11 |
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/SupabaseStorage/StorageHTTPClient.swift:15:32: error: cannot find type 'URLRequest' in scope
13 |   public init() {}
14 |
15 |   public func fetch(_ request: URLRequest) async throws -> (Data, HTTPURLResponse) {
   |                                `- error: cannot find type 'URLRequest' in scope
16 |     try await withCheckedThrowingContinuation { continuation in
17 |       let dataTask = URLSession.shared.dataTask(with: request) { data, response, error in
/host/spi-builder-workspace/Sources/SupabaseStorage/StorageHTTPClient.swift:15:67: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
13 |   public init() {}
14 |
15 |   public func fetch(_ request: URLRequest) async throws -> (Data, HTTPURLResponse) {
   |                                                                   `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
16 |     try await withCheckedThrowingContinuation { continuation in
17 |       let dataTask = URLSession.shared.dataTask(with: request) { data, response, error in
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/SupabaseStorage/StorageHTTPClient.swift:39:16: error: cannot find type 'URLRequest' in scope
37 |
38 |   public func upload(
39 |     _ request: URLRequest,
   |                `- error: cannot find type 'URLRequest' in scope
40 |     from data: Data
41 |   ) async throws -> (Data, HTTPURLResponse) {
/host/spi-builder-workspace/Sources/SupabaseStorage/StorageHTTPClient.swift:41:28: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
39 |     _ request: URLRequest,
40 |     from data: Data
41 |   ) async throws -> (Data, HTTPURLResponse) {
   |                            `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
42 |     try await withCheckedThrowingContinuation { continuation in
43 |       let task = URLSession.shared.uploadTask(with: request, from: data) { data, response, error in
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/SupabaseStorage/StorageHTTPClient.swift:17:33: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
15 |   public func fetch(_ request: URLRequest) async throws -> (Data, HTTPURLResponse) {
16 |     try await withCheckedThrowingContinuation { continuation in
17 |       let dataTask = URLSession.shared.dataTask(with: request) { data, response, error in
   |                                 `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
18 |         if let error = error {
19 |           continuation.resume(throwing: error)
/host/spi-builder-workspace/Sources/SupabaseStorage/StorageHTTPClient.swift:43:29: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
41 |   ) async throws -> (Data, HTTPURLResponse) {
42 |     try await withCheckedThrowingContinuation { continuation in
43 |       let task = URLSession.shared.uploadTask(with: request, from: data) { data, response, error in
   |                             `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
44 |         if let error = error {
45 |           continuation.resume(throwing: error)
[14/17] Compiling SupabaseStorage StorageHTTPClient.swift
/host/spi-builder-workspace/Sources/SupabaseStorage/StorageHTTPClient.swift:8:25: error: cannot find type 'URLRequest' in scope
 6 |
 7 | public protocol StorageHTTPClient {
 8 |   func fetch(_ request: URLRequest) async throws -> (Data, HTTPURLResponse)
   |                         `- error: cannot find type 'URLRequest' in scope
 9 |   func upload(_ request: URLRequest, from data: Data) async throws -> (Data, HTTPURLResponse)
10 | }
/host/spi-builder-workspace/Sources/SupabaseStorage/StorageHTTPClient.swift:9:26: error: cannot find type 'URLRequest' in scope
 7 | public protocol StorageHTTPClient {
 8 |   func fetch(_ request: URLRequest) async throws -> (Data, HTTPURLResponse)
 9 |   func upload(_ request: URLRequest, from data: Data) async throws -> (Data, HTTPURLResponse)
   |                          `- error: cannot find type 'URLRequest' in scope
10 | }
11 |
/host/spi-builder-workspace/Sources/SupabaseStorage/StorageHTTPClient.swift:8:60: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 6 |
 7 | public protocol StorageHTTPClient {
 8 |   func fetch(_ request: URLRequest) async throws -> (Data, HTTPURLResponse)
   |                                                            `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 9 |   func upload(_ request: URLRequest, from data: Data) async throws -> (Data, HTTPURLResponse)
10 | }
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/SupabaseStorage/StorageHTTPClient.swift:9:78: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 7 | public protocol StorageHTTPClient {
 8 |   func fetch(_ request: URLRequest) async throws -> (Data, HTTPURLResponse)
 9 |   func upload(_ request: URLRequest, from data: Data) async throws -> (Data, HTTPURLResponse)
   |                                                                              `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
10 | }
11 |
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/SupabaseStorage/StorageHTTPClient.swift:15:32: error: cannot find type 'URLRequest' in scope
13 |   public init() {}
14 |
15 |   public func fetch(_ request: URLRequest) async throws -> (Data, HTTPURLResponse) {
   |                                `- error: cannot find type 'URLRequest' in scope
16 |     try await withCheckedThrowingContinuation { continuation in
17 |       let dataTask = URLSession.shared.dataTask(with: request) { data, response, error in
/host/spi-builder-workspace/Sources/SupabaseStorage/StorageHTTPClient.swift:15:67: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
13 |   public init() {}
14 |
15 |   public func fetch(_ request: URLRequest) async throws -> (Data, HTTPURLResponse) {
   |                                                                   `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
16 |     try await withCheckedThrowingContinuation { continuation in
17 |       let dataTask = URLSession.shared.dataTask(with: request) { data, response, error in
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/SupabaseStorage/StorageHTTPClient.swift:39:16: error: cannot find type 'URLRequest' in scope
37 |
38 |   public func upload(
39 |     _ request: URLRequest,
   |                `- error: cannot find type 'URLRequest' in scope
40 |     from data: Data
41 |   ) async throws -> (Data, HTTPURLResponse) {
/host/spi-builder-workspace/Sources/SupabaseStorage/StorageHTTPClient.swift:41:28: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
39 |     _ request: URLRequest,
40 |     from data: Data
41 |   ) async throws -> (Data, HTTPURLResponse) {
   |                            `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
42 |     try await withCheckedThrowingContinuation { continuation in
43 |       let task = URLSession.shared.uploadTask(with: request, from: data) { data, response, error in
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/SupabaseStorage/StorageHTTPClient.swift:17:33: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
15 |   public func fetch(_ request: URLRequest) async throws -> (Data, HTTPURLResponse) {
16 |     try await withCheckedThrowingContinuation { continuation in
17 |       let dataTask = URLSession.shared.dataTask(with: request) { data, response, error in
   |                                 `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
18 |         if let error = error {
19 |           continuation.resume(throwing: error)
/host/spi-builder-workspace/Sources/SupabaseStorage/StorageHTTPClient.swift:43:29: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
41 |   ) async throws -> (Data, HTTPURLResponse) {
42 |     try await withCheckedThrowingContinuation { continuation in
43 |       let task = URLSession.shared.uploadTask(with: request, from: data) { data, response, error in
   |                             `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
44 |         if let error = error {
45 |           continuation.resume(throwing: error)
[15/17] Compiling SupabaseStorage SortBy.swift
/host/spi-builder-workspace/Sources/SupabaseStorage/StorageHTTPClient.swift:8:25: error: cannot find type 'URLRequest' in scope
 6 |
 7 | public protocol StorageHTTPClient {
 8 |   func fetch(_ request: URLRequest) async throws -> (Data, HTTPURLResponse)
   |                         `- error: cannot find type 'URLRequest' in scope
 9 |   func upload(_ request: URLRequest, from data: Data) async throws -> (Data, HTTPURLResponse)
10 | }
/host/spi-builder-workspace/Sources/SupabaseStorage/StorageHTTPClient.swift:9:26: error: cannot find type 'URLRequest' in scope
 7 | public protocol StorageHTTPClient {
 8 |   func fetch(_ request: URLRequest) async throws -> (Data, HTTPURLResponse)
 9 |   func upload(_ request: URLRequest, from data: Data) async throws -> (Data, HTTPURLResponse)
   |                          `- error: cannot find type 'URLRequest' in scope
10 | }
11 |
/host/spi-builder-workspace/Sources/SupabaseStorage/StorageApi.swift:38:19: error: cannot find 'URLRequest' in scope
 36 |     headers: [String: String]? = nil
 37 |   ) async throws -> Any {
 38 |     var request = URLRequest(url: url)
    |                   `- error: cannot find 'URLRequest' in scope
 39 |     request.httpMethod = method.rawValue
 40 |
/host/spi-builder-workspace/Sources/SupabaseStorage/StorageApi.swift:74:19: error: cannot find 'URLRequest' in scope
 72 |     jsonSerialization: Bool = true
 73 |   ) async throws -> Any {
 74 |     var request = URLRequest(url: url)
    |                   `- error: cannot find 'URLRequest' in scope
 75 |     request.httpMethod = method.rawValue
 76 |
[16/17] Compiling SupabaseStorage StorageApi.swift
/host/spi-builder-workspace/Sources/SupabaseStorage/StorageHTTPClient.swift:8:25: error: cannot find type 'URLRequest' in scope
 6 |
 7 | public protocol StorageHTTPClient {
 8 |   func fetch(_ request: URLRequest) async throws -> (Data, HTTPURLResponse)
   |                         `- error: cannot find type 'URLRequest' in scope
 9 |   func upload(_ request: URLRequest, from data: Data) async throws -> (Data, HTTPURLResponse)
10 | }
/host/spi-builder-workspace/Sources/SupabaseStorage/StorageHTTPClient.swift:9:26: error: cannot find type 'URLRequest' in scope
 7 | public protocol StorageHTTPClient {
 8 |   func fetch(_ request: URLRequest) async throws -> (Data, HTTPURLResponse)
 9 |   func upload(_ request: URLRequest, from data: Data) async throws -> (Data, HTTPURLResponse)
   |                          `- error: cannot find type 'URLRequest' in scope
10 | }
11 |
/host/spi-builder-workspace/Sources/SupabaseStorage/StorageApi.swift:38:19: error: cannot find 'URLRequest' in scope
 36 |     headers: [String: String]? = nil
 37 |   ) async throws -> Any {
 38 |     var request = URLRequest(url: url)
    |                   `- error: cannot find 'URLRequest' in scope
 39 |     request.httpMethod = method.rawValue
 40 |
/host/spi-builder-workspace/Sources/SupabaseStorage/StorageApi.swift:74:19: error: cannot find 'URLRequest' in scope
 72 |     jsonSerialization: Bool = true
 73 |   ) async throws -> Any {
 74 |     var request = URLRequest(url: url)
    |                   `- error: cannot find 'URLRequest' in scope
 75 |     request.httpMethod = method.rawValue
 76 |
[17/17] Compiling SupabaseStorage TransformOptions.swift
BUILD FAILURE 6.3 wasm