Build Information
Failed to build TMDB, reference main (cad88f), with Swift 6.3 for Wasm on 21 Apr 2026 19:37:32 UTC.
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4609320-0":/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>&1Build Log
========================================
RunAll
========================================
Builder version: 4.70.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/igorcamilo/tmdb-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/igorcamilo/tmdb-swift
* branch main -> FETCH_HEAD
* [new branch] main -> origin/main
HEAD is now at cad88f3 Add Sonar and more data (#20)
Cloned https://github.com/igorcamilo/tmdb-swift.git
Revision (git rev-parse @):
cad88f358b0b81fd0b5417f004b2a8057c6000e6
SUCCESS checkout https://github.com/igorcamilo/tmdb-swift.git at main
========================================
Build
========================================
Selected platform: wasm
Swift version: 6.3
Building package at path: $PWD
https://github.com/igorcamilo/tmdb-swift.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-0":/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
error: emit-module command failed with exit code 1 (use -v to see invocation)
[3/30] Emitting module TMDB
/host/spi-builder-workspace/Sources/TMDB/Response.swift:20:24: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
18 |
19 | public init(
20 | _ response: (Data, URLResponse)
| `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
21 | ) {
22 | self.data = response.0
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/TMDB/TMDBClient.swift:44:48: error: cannot find type 'URLRequest' in scope
42 | }
43 |
44 | public typealias PerformRequest = @Sendable (URLRequest) async throws -> Response
| `- error: cannot find type 'URLRequest' in scope
45 | }
46 |
/host/spi-builder-workspace/Sources/TMDB/TMDBClient.swift:8:33: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
6 |
7 | private let defaultPerformRequest: TMDBClient.PerformRequest = { request in
8 | try await Response(URLSession.shared.data(for: request))
| `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
9 | }
10 |
/host/spi-builder-workspace/Sources/TMDB/TMDBClient.swift:28:15: error: cannot find type 'URLRequest' in scope
26 | relativePath: String,
27 | queryItems: [URLQueryItem]? = nil
28 | ) throws -> URLRequest {
| `- error: cannot find type 'URLRequest' in scope
29 | let baseURLString = "https://api.themoviedb.org/3/"
30 | var components = URLComponents(string: baseURLString)!
[4/33] Compiling TMDB MovieCollection.swift
[5/33] Compiling TMDB MovieDetails.swift
[6/33] Compiling TMDB MovieDetailsAppendingOptions.swift
[7/33] Compiling TMDB MovieList.swift
[8/33] Compiling TMDB TVShowDetailsAppendingOptions.swift
[9/33] Compiling TMDB TVShowList.swift
[10/33] Compiling TMDB TrendingTimeWindow.swift
[11/33] Compiling TMDB ImagePath.swift
[12/33] Compiling TMDB Keyword.swift
[13/33] Compiling TMDB Language.swift
[14/33] Compiling TMDB Movie.swift
[15/33] Compiling TMDB BackdropPath.swift
[16/33] Compiling TMDB BackdropSize.swift
[17/33] Compiling TMDB Configuration.swift
[18/33] Compiling TMDB Images.swift
[19/33] Compiling TMDB PosterSize.swift
/host/spi-builder-workspace/Sources/TMDB/TMDBClient.swift:28:15: error: cannot find type 'URLRequest' in scope
26 | relativePath: String,
27 | queryItems: [URLQueryItem]? = nil
28 | ) throws -> URLRequest {
| `- error: cannot find type 'URLRequest' in scope
29 | let baseURLString = "https://api.themoviedb.org/3/"
30 | var components = URLComponents(string: baseURLString)!
/host/spi-builder-workspace/Sources/TMDB/TMDBClient.swift:44:48: error: cannot find type 'URLRequest' in scope
42 | }
43 |
44 | public typealias PerformRequest = @Sendable (URLRequest) async throws -> Response
| `- error: cannot find type 'URLRequest' in scope
45 | }
46 |
[20/33] Compiling TMDB TMDBClient+Configuration.swift
/host/spi-builder-workspace/Sources/TMDB/TMDBClient.swift:28:15: error: cannot find type 'URLRequest' in scope
26 | relativePath: String,
27 | queryItems: [URLQueryItem]? = nil
28 | ) throws -> URLRequest {
| `- error: cannot find type 'URLRequest' in scope
29 | let baseURLString = "https://api.themoviedb.org/3/"
30 | var components = URLComponents(string: baseURLString)!
/host/spi-builder-workspace/Sources/TMDB/TMDBClient.swift:44:48: error: cannot find type 'URLRequest' in scope
42 | }
43 |
44 | public typealias PerformRequest = @Sendable (URLRequest) async throws -> Response
| `- error: cannot find type 'URLRequest' in scope
45 | }
46 |
[21/33] Compiling TMDB Country.swift
/host/spi-builder-workspace/Sources/TMDB/TMDBClient.swift:28:15: error: cannot find type 'URLRequest' in scope
26 | relativePath: String,
27 | queryItems: [URLQueryItem]? = nil
28 | ) throws -> URLRequest {
| `- error: cannot find type 'URLRequest' in scope
29 | let baseURLString = "https://api.themoviedb.org/3/"
30 | var components = URLComponents(string: baseURLString)!
/host/spi-builder-workspace/Sources/TMDB/TMDBClient.swift:44:48: error: cannot find type 'URLRequest' in scope
42 | }
43 |
44 | public typealias PerformRequest = @Sendable (URLRequest) async throws -> Response
| `- error: cannot find type 'URLRequest' in scope
45 | }
46 |
[22/33] Compiling TMDB Genre.swift
/host/spi-builder-workspace/Sources/TMDB/TMDBClient.swift:28:15: error: cannot find type 'URLRequest' in scope
26 | relativePath: String,
27 | queryItems: [URLQueryItem]? = nil
28 | ) throws -> URLRequest {
| `- error: cannot find type 'URLRequest' in scope
29 | let baseURLString = "https://api.themoviedb.org/3/"
30 | var components = URLComponents(string: baseURLString)!
/host/spi-builder-workspace/Sources/TMDB/TMDBClient.swift:44:48: error: cannot find type 'URLRequest' in scope
42 | }
43 |
44 | public typealias PerformRequest = @Sendable (URLRequest) async throws -> Response
| `- error: cannot find type 'URLRequest' in scope
45 | }
46 |
[23/33] Compiling TMDB Response.swift
/host/spi-builder-workspace/Sources/TMDB/Response.swift:20:24: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
18 |
19 | public init(
20 | _ response: (Data, URLResponse)
| `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
21 | ) {
22 | self.data = response.0
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/TMDB/Response.swift:23:35: warning: conditional cast from 'URLResponse' (aka 'AnyObject') to 'HTTPURLResponse' (aka 'AnyObject') always succeeds
21 | ) {
22 | self.data = response.0
23 | self.statusCode = (response.1 as? HTTPURLResponse)?.statusCode
| `- warning: conditional cast from 'URLResponse' (aka 'AnyObject') to 'HTTPURLResponse' (aka 'AnyObject') always succeeds
24 | }
25 | }
/host/spi-builder-workspace/Sources/TMDB/Response.swift:23:57: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
21 | ) {
22 | self.data = response.0
23 | self.statusCode = (response.1 as? HTTPURLResponse)?.statusCode
| `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
24 | }
25 | }
/host/spi-builder-workspace/Sources/TMDB/TMDBClient.swift:44:48: error: cannot find type 'URLRequest' in scope
42 | }
43 |
44 | public typealias PerformRequest = @Sendable (URLRequest) async throws -> Response
| `- error: cannot find type 'URLRequest' in scope
45 | }
46 |
/host/spi-builder-workspace/Sources/TMDB/TMDBClient.swift:8:33: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
6 |
7 | private let defaultPerformRequest: TMDBClient.PerformRequest = { request in
8 | try await Response(URLSession.shared.data(for: request))
| `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
9 | }
10 |
/host/spi-builder-workspace/Sources/TMDB/TMDBClient.swift:28:15: error: cannot find type 'URLRequest' in scope
26 | relativePath: String,
27 | queryItems: [URLQueryItem]? = nil
28 | ) throws -> URLRequest {
| `- error: cannot find type 'URLRequest' in scope
29 | let baseURLString = "https://api.themoviedb.org/3/"
30 | var components = URLComponents(string: baseURLString)!
/host/spi-builder-workspace/Sources/TMDB/TMDBClient.swift:36:22: error: cannot find 'URLRequest' in scope
34 | throw TMDBClientError.invalidURL(components)
35 | }
36 | var urlRequest = URLRequest(url: url)
| `- error: cannot find 'URLRequest' in scope
37 | urlRequest.allHTTPHeaderFields = [
38 | "Accept": "application/json",
[24/33] Compiling TMDB TMDBClient.swift
/host/spi-builder-workspace/Sources/TMDB/Response.swift:20:24: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
18 |
19 | public init(
20 | _ response: (Data, URLResponse)
| `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
21 | ) {
22 | self.data = response.0
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/TMDB/Response.swift:23:35: warning: conditional cast from 'URLResponse' (aka 'AnyObject') to 'HTTPURLResponse' (aka 'AnyObject') always succeeds
21 | ) {
22 | self.data = response.0
23 | self.statusCode = (response.1 as? HTTPURLResponse)?.statusCode
| `- warning: conditional cast from 'URLResponse' (aka 'AnyObject') to 'HTTPURLResponse' (aka 'AnyObject') always succeeds
24 | }
25 | }
/host/spi-builder-workspace/Sources/TMDB/Response.swift:23:57: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
21 | ) {
22 | self.data = response.0
23 | self.statusCode = (response.1 as? HTTPURLResponse)?.statusCode
| `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
24 | }
25 | }
/host/spi-builder-workspace/Sources/TMDB/TMDBClient.swift:44:48: error: cannot find type 'URLRequest' in scope
42 | }
43 |
44 | public typealias PerformRequest = @Sendable (URLRequest) async throws -> Response
| `- error: cannot find type 'URLRequest' in scope
45 | }
46 |
/host/spi-builder-workspace/Sources/TMDB/TMDBClient.swift:8:33: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
6 |
7 | private let defaultPerformRequest: TMDBClient.PerformRequest = { request in
8 | try await Response(URLSession.shared.data(for: request))
| `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
9 | }
10 |
/host/spi-builder-workspace/Sources/TMDB/TMDBClient.swift:28:15: error: cannot find type 'URLRequest' in scope
26 | relativePath: String,
27 | queryItems: [URLQueryItem]? = nil
28 | ) throws -> URLRequest {
| `- error: cannot find type 'URLRequest' in scope
29 | let baseURLString = "https://api.themoviedb.org/3/"
30 | var components = URLComponents(string: baseURLString)!
/host/spi-builder-workspace/Sources/TMDB/TMDBClient.swift:36:22: error: cannot find 'URLRequest' in scope
34 | throw TMDBClientError.invalidURL(components)
35 | }
36 | var urlRequest = URLRequest(url: url)
| `- error: cannot find 'URLRequest' in scope
37 | urlRequest.allHTTPHeaderFields = [
38 | "Accept": "application/json",
[25/33] Compiling TMDB TMDBClientError.swift
/host/spi-builder-workspace/Sources/TMDB/Response.swift:20:24: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
18 |
19 | public init(
20 | _ response: (Data, URLResponse)
| `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
21 | ) {
22 | self.data = response.0
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/TMDB/Response.swift:23:35: warning: conditional cast from 'URLResponse' (aka 'AnyObject') to 'HTTPURLResponse' (aka 'AnyObject') always succeeds
21 | ) {
22 | self.data = response.0
23 | self.statusCode = (response.1 as? HTTPURLResponse)?.statusCode
| `- warning: conditional cast from 'URLResponse' (aka 'AnyObject') to 'HTTPURLResponse' (aka 'AnyObject') always succeeds
24 | }
25 | }
/host/spi-builder-workspace/Sources/TMDB/Response.swift:23:57: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
21 | ) {
22 | self.data = response.0
23 | self.statusCode = (response.1 as? HTTPURLResponse)?.statusCode
| `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
24 | }
25 | }
/host/spi-builder-workspace/Sources/TMDB/TMDBClient.swift:44:48: error: cannot find type 'URLRequest' in scope
42 | }
43 |
44 | public typealias PerformRequest = @Sendable (URLRequest) async throws -> Response
| `- error: cannot find type 'URLRequest' in scope
45 | }
46 |
/host/spi-builder-workspace/Sources/TMDB/TMDBClient.swift:8:33: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
6 |
7 | private let defaultPerformRequest: TMDBClient.PerformRequest = { request in
8 | try await Response(URLSession.shared.data(for: request))
| `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
9 | }
10 |
/host/spi-builder-workspace/Sources/TMDB/TMDBClient.swift:28:15: error: cannot find type 'URLRequest' in scope
26 | relativePath: String,
27 | queryItems: [URLQueryItem]? = nil
28 | ) throws -> URLRequest {
| `- error: cannot find type 'URLRequest' in scope
29 | let baseURLString = "https://api.themoviedb.org/3/"
30 | var components = URLComponents(string: baseURLString)!
/host/spi-builder-workspace/Sources/TMDB/TMDBClient.swift:36:22: error: cannot find 'URLRequest' in scope
34 | throw TMDBClientError.invalidURL(components)
35 | }
36 | var urlRequest = URLRequest(url: url)
| `- error: cannot find 'URLRequest' in scope
37 | urlRequest.allHTTPHeaderFields = [
38 | "Accept": "application/json",
[26/33] Compiling TMDB TMDBError.swift
/host/spi-builder-workspace/Sources/TMDB/Response.swift:20:24: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
18 |
19 | public init(
20 | _ response: (Data, URLResponse)
| `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
21 | ) {
22 | self.data = response.0
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/TMDB/Response.swift:23:35: warning: conditional cast from 'URLResponse' (aka 'AnyObject') to 'HTTPURLResponse' (aka 'AnyObject') always succeeds
21 | ) {
22 | self.data = response.0
23 | self.statusCode = (response.1 as? HTTPURLResponse)?.statusCode
| `- warning: conditional cast from 'URLResponse' (aka 'AnyObject') to 'HTTPURLResponse' (aka 'AnyObject') always succeeds
24 | }
25 | }
/host/spi-builder-workspace/Sources/TMDB/Response.swift:23:57: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
21 | ) {
22 | self.data = response.0
23 | self.statusCode = (response.1 as? HTTPURLResponse)?.statusCode
| `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
24 | }
25 | }
/host/spi-builder-workspace/Sources/TMDB/TMDBClient.swift:44:48: error: cannot find type 'URLRequest' in scope
42 | }
43 |
44 | public typealias PerformRequest = @Sendable (URLRequest) async throws -> Response
| `- error: cannot find type 'URLRequest' in scope
45 | }
46 |
/host/spi-builder-workspace/Sources/TMDB/TMDBClient.swift:8:33: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
6 |
7 | private let defaultPerformRequest: TMDBClient.PerformRequest = { request in
8 | try await Response(URLSession.shared.data(for: request))
| `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
9 | }
10 |
/host/spi-builder-workspace/Sources/TMDB/TMDBClient.swift:28:15: error: cannot find type 'URLRequest' in scope
26 | relativePath: String,
27 | queryItems: [URLQueryItem]? = nil
28 | ) throws -> URLRequest {
| `- error: cannot find type 'URLRequest' in scope
29 | let baseURLString = "https://api.themoviedb.org/3/"
30 | var components = URLComponents(string: baseURLString)!
/host/spi-builder-workspace/Sources/TMDB/TMDBClient.swift:36:22: error: cannot find 'URLRequest' in scope
34 | throw TMDBClientError.invalidURL(components)
35 | }
36 | var urlRequest = URLRequest(url: url)
| `- error: cannot find 'URLRequest' in scope
37 | urlRequest.allHTTPHeaderFields = [
38 | "Accept": "application/json",
[27/33] Compiling TMDB TMDBClient+TVShows.swift
/host/spi-builder-workspace/Sources/TMDB/TMDBClient.swift:28:15: error: cannot find type 'URLRequest' in scope
26 | relativePath: String,
27 | queryItems: [URLQueryItem]? = nil
28 | ) throws -> URLRequest {
| `- error: cannot find type 'URLRequest' in scope
29 | let baseURLString = "https://api.themoviedb.org/3/"
30 | var components = URLComponents(string: baseURLString)!
/host/spi-builder-workspace/Sources/TMDB/TMDBClient.swift:44:48: error: cannot find type 'URLRequest' in scope
42 | }
43 |
44 | public typealias PerformRequest = @Sendable (URLRequest) async throws -> Response
| `- error: cannot find type 'URLRequest' in scope
45 | }
46 |
[28/33] Compiling TMDB TVShow.swift
/host/spi-builder-workspace/Sources/TMDB/TMDBClient.swift:28:15: error: cannot find type 'URLRequest' in scope
26 | relativePath: String,
27 | queryItems: [URLQueryItem]? = nil
28 | ) throws -> URLRequest {
| `- error: cannot find type 'URLRequest' in scope
29 | let baseURLString = "https://api.themoviedb.org/3/"
30 | var components = URLComponents(string: baseURLString)!
/host/spi-builder-workspace/Sources/TMDB/TMDBClient.swift:44:48: error: cannot find type 'URLRequest' in scope
42 | }
43 |
44 | public typealias PerformRequest = @Sendable (URLRequest) async throws -> Response
| `- error: cannot find type 'URLRequest' in scope
45 | }
46 |
[29/33] Compiling TMDB TVShowDetails.swift
/host/spi-builder-workspace/Sources/TMDB/TMDBClient.swift:28:15: error: cannot find type 'URLRequest' in scope
26 | relativePath: String,
27 | queryItems: [URLQueryItem]? = nil
28 | ) throws -> URLRequest {
| `- error: cannot find type 'URLRequest' in scope
29 | let baseURLString = "https://api.themoviedb.org/3/"
30 | var components = URLComponents(string: baseURLString)!
/host/spi-builder-workspace/Sources/TMDB/TMDBClient.swift:44:48: error: cannot find type 'URLRequest' in scope
42 | }
43 |
44 | public typealias PerformRequest = @Sendable (URLRequest) async throws -> Response
| `- error: cannot find type 'URLRequest' in scope
45 | }
46 |
[30/33] Compiling TMDB TMDBClient+Movies.swift
/host/spi-builder-workspace/Sources/TMDB/TMDBClient.swift:28:15: error: cannot find type 'URLRequest' in scope
26 | relativePath: String,
27 | queryItems: [URLQueryItem]? = nil
28 | ) throws -> URLRequest {
| `- error: cannot find type 'URLRequest' in scope
29 | let baseURLString = "https://api.themoviedb.org/3/"
30 | var components = URLComponents(string: baseURLString)!
/host/spi-builder-workspace/Sources/TMDB/TMDBClient.swift:44:48: error: cannot find type 'URLRequest' in scope
42 | }
43 |
44 | public typealias PerformRequest = @Sendable (URLRequest) async throws -> Response
| `- error: cannot find type 'URLRequest' in scope
45 | }
46 |
[31/33] Compiling TMDB Page.swift
/host/spi-builder-workspace/Sources/TMDB/TMDBClient.swift:28:15: error: cannot find type 'URLRequest' in scope
26 | relativePath: String,
27 | queryItems: [URLQueryItem]? = nil
28 | ) throws -> URLRequest {
| `- error: cannot find type 'URLRequest' in scope
29 | let baseURLString = "https://api.themoviedb.org/3/"
30 | var components = URLComponents(string: baseURLString)!
/host/spi-builder-workspace/Sources/TMDB/TMDBClient.swift:44:48: error: cannot find type 'URLRequest' in scope
42 | }
43 |
44 | public typealias PerformRequest = @Sendable (URLRequest) async throws -> Response
| `- error: cannot find type 'URLRequest' in scope
45 | }
46 |
[32/33] Compiling TMDB PosterPath.swift
/host/spi-builder-workspace/Sources/TMDB/TMDBClient.swift:28:15: error: cannot find type 'URLRequest' in scope
26 | relativePath: String,
27 | queryItems: [URLQueryItem]? = nil
28 | ) throws -> URLRequest {
| `- error: cannot find type 'URLRequest' in scope
29 | let baseURLString = "https://api.themoviedb.org/3/"
30 | var components = URLComponents(string: baseURLString)!
/host/spi-builder-workspace/Sources/TMDB/TMDBClient.swift:44:48: error: cannot find type 'URLRequest' in scope
42 | }
43 |
44 | public typealias PerformRequest = @Sendable (URLRequest) async throws -> Response
| `- error: cannot find type 'URLRequest' in scope
45 | }
46 |
[33/33] Compiling TMDB ProductionCompany.swift
/host/spi-builder-workspace/Sources/TMDB/TMDBClient.swift:28:15: error: cannot find type 'URLRequest' in scope
26 | relativePath: String,
27 | queryItems: [URLQueryItem]? = nil
28 | ) throws -> URLRequest {
| `- error: cannot find type 'URLRequest' in scope
29 | let baseURLString = "https://api.themoviedb.org/3/"
30 | var components = URLComponents(string: baseURLString)!
/host/spi-builder-workspace/Sources/TMDB/TMDBClient.swift:44:48: error: cannot find type 'URLRequest' in scope
42 | }
43 |
44 | public typealias PerformRequest = @Sendable (URLRequest) async throws -> Response
| `- error: cannot find type 'URLRequest' in scope
45 | }
46 |
BUILD FAILURE 6.3 wasm