The Swift Package Index logo.Swift Package Index

Build Information

Failed to build BoxSdkGen, reference 0.5.0-cryptomator (b2bb9d), with Swift 6.3 for Wasm on 15 Apr 2026 01:07:21 UTC.

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4606859-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

Build Log

16 |     public let session: URLSession
   |                         `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
17 |
18 |     /// url session configuration.
Foundation.URLSession:2:18: note: 'URLSession' 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 URLSession = AnyObject
  |                  `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Networking/NetworkSession.swift:19:31: error: 'URLSessionConfiguration' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
17 |
18 |     /// url session configuration.
19 |     public let configuration: URLSessionConfiguration
   |                               `- error: 'URLSessionConfiguration' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
20 |
21 |     /// Additional network settings.
Foundation.URLSessionConfiguration:2:18: note: 'URLSessionConfiguration' 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 URLSessionConfiguration = AnyObject
  |                  `- note: 'URLSessionConfiguration' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Networking/NetworkSession.swift:32:24: error: 'URLSessionConfiguration' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
30 |     public init(
31 |         additionalHeaders: [String: String] = [:],
32 |         configuration: URLSessionConfiguration = URLSessionConfiguration.default,
   |                        `- error: 'URLSessionConfiguration' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
33 |         networkSettings: NetworkSettings = NetworkSettings(),
34 |         baseUrls: BaseUrls = BaseUrls()
Foundation.URLSessionConfiguration:2:18: note: 'URLSessionConfiguration' 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 URLSessionConfiguration = AnyObject
  |                  `- note: 'URLSessionConfiguration' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Networking/NetworkSession.swift:38:24: error: 'URLSession' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
36 |         self.additionalHeaders = additionalHeaders
37 |         self.configuration = configuration
38 |         self.session = URLSession(configuration: configuration, delegate: NetworkClient.shared, delegateQueue: nil)
   |                        `- error: 'URLSession' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
39 |         self.networkSettings = networkSettings
40 |         self.baseUrls = baseUrls
/host/spi-builder-workspace/Sources/Networking/NetworkSession.swift:38:112: error: 'nil' requires a contextual type
36 |         self.additionalHeaders = additionalHeaders
37 |         self.configuration = configuration
38 |         self.session = URLSession(configuration: configuration, delegate: NetworkClient.shared, delegateQueue: nil)
   |                                                                                                                `- error: 'nil' requires a contextual type
39 |         self.networkSettings = networkSettings
40 |         self.baseUrls = baseUrls
[826/1004] Compiling BoxSdkGen FetchResponse.swift
/host/spi-builder-workspace/Sources/Networking/NetworkSession.swift:32:74: error: type 'URLSessionConfiguration' (aka 'AnyObject') has no member 'default'
30 |     public init(
31 |         additionalHeaders: [String: String] = [:],
32 |         configuration: URLSessionConfiguration = URLSessionConfiguration.default,
   |                                                                          `- error: type 'URLSessionConfiguration' (aka 'AnyObject') has no member 'default'
33 |         networkSettings: NetworkSettings = NetworkSettings(),
34 |         baseUrls: BaseUrls = BaseUrls()
/host/spi-builder-workspace/Sources/Networking/NetworkSession.swift:32:74: error: default argument value of type '_' cannot be converted to type 'AnyObject'
30 |     public init(
31 |         additionalHeaders: [String: String] = [:],
32 |         configuration: URLSessionConfiguration = URLSessionConfiguration.default,
   |                                                                          `- error: default argument value of type '_' cannot be converted to type 'AnyObject'
33 |         networkSettings: NetworkSettings = NetworkSettings(),
34 |         baseUrls: BaseUrls = BaseUrls()
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:17:39: error: cannot find type 'URLSessionDelegate' in scope
 15 |
 16 | /// Networking layer interface
 17 | public class NetworkClient: NSObject, URLSessionDelegate, URLSessionTaskDelegate, URLSessionDataDelegate, URLSessionDownloadDelegate {
    |                                       `- error: cannot find type 'URLSessionDelegate' in scope
 18 |     public static let shared = NetworkClient()
 19 |
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:17:59: error: cannot find type 'URLSessionTaskDelegate' in scope
 15 |
 16 | /// Networking layer interface
 17 | public class NetworkClient: NSObject, URLSessionDelegate, URLSessionTaskDelegate, URLSessionDataDelegate, URLSessionDownloadDelegate {
    |                                                           `- error: cannot find type 'URLSessionTaskDelegate' in scope
 18 |     public static let shared = NetworkClient()
 19 |
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:17:83: error: cannot find type 'URLSessionDataDelegate' in scope
 15 |
 16 | /// Networking layer interface
 17 | public class NetworkClient: NSObject, URLSessionDelegate, URLSessionTaskDelegate, URLSessionDataDelegate, URLSessionDownloadDelegate {
    |                                                                                   `- error: cannot find type 'URLSessionDataDelegate' in scope
 18 |     public static let shared = NetworkClient()
 19 |
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:17:107: error: cannot find type 'URLSessionDownloadDelegate' in scope
 15 |
 16 | /// Networking layer interface
 17 | public class NetworkClient: NSObject, URLSessionDelegate, URLSessionTaskDelegate, URLSessionDataDelegate, URLSessionDownloadDelegate {
    |                                                                                                           `- error: cannot find type 'URLSessionDownloadDelegate' in scope
 18 |     public static let shared = NetworkClient()
 19 |
/host/spi-builder-workspace/Sources/Managers/Webhooks/WebhooksManager.swift:83:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it [#no-usage]
81 |     public func deleteWebhookById(webhookId: String, headers: DeleteWebhookByIdHeaders = DeleteWebhookByIdHeaders()) async throws {
82 |         let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
83 |         let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/webhooks/")\(webhookId)", method: "DELETE", headers: headersMap, responseFormat: nil, auth: self.auth, networkSession: self.networkSession))
   |             `- warning: immutable value 'response' was never used; consider replacing with '_' or removing it [#no-usage]
84 |     }
85 |
/host/spi-builder-workspace/Sources/Managers/Workflows/WorkflowsManager.swift:44:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it [#no-usage]
42 |     public func startWorkflow(workflowId: String, requestBody: StartWorkflowRequestBody, headers: StartWorkflowHeaders = StartWorkflowHeaders()) async throws {
43 |         let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
44 |         let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/workflows/")\(workflowId)\("/start")", method: "POST", headers: headersMap, data: try requestBody.serialize(), contentType: "application/json", responseFormat: nil, auth: self.auth, networkSession: self.networkSession))
   |             `- warning: immutable value 'response' was never used; consider replacing with '_' or removing it [#no-usage]
45 |     }
46 |
/host/spi-builder-workspace/Sources/Networking/FetchConversation.swift:17:21: error: cannot find type 'URLRequest' in scope
15 |     let options: FetchOptions
16 |     /// Represents an URL request.
17 |     let urlRequest: URLRequest
   |                     `- error: cannot find type 'URLRequest' in scope
18 |     /// Represents a response to an HTTP URL.
19 |     let urlResponse: HTTPURLResponse
/host/spi-builder-workspace/Sources/Networking/FetchConversation.swift:19:22: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
17 |     let urlRequest: URLRequest
18 |     /// Represents a response to an HTTP URL.
19 |     let urlResponse: HTTPURLResponse
   |                      `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
20 |     /// Represents response type, either data or downloaded file
21 |     let responseType: ResponseType
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/Networking/FetchConversation.swift:30:45: error: cannot find type 'URLRequest' in scope
28 |     ///   - urlResponse: Represents a response to an HTTP URL
29 |     ///   - responseType: Represents response type, either data or downloaded file
30 |     init(options: FetchOptions, urlRequest: URLRequest, urlResponse: HTTPURLResponse, responseType: ResponseType) {
   |                                             `- error: cannot find type 'URLRequest' in scope
31 |         self.options = options
32 |         self.urlRequest = urlRequest
/host/spi-builder-workspace/Sources/Networking/FetchConversation.swift:30:70: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
28 |     ///   - urlResponse: Represents a response to an HTTP URL
29 |     ///   - responseType: Represents response type, either data or downloaded file
30 |     init(options: FetchOptions, urlRequest: URLRequest, urlResponse: HTTPURLResponse, responseType: ResponseType) {
   |                                                                      `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
31 |         self.options = options
32 |         self.urlRequest = urlRequest
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/Networking/FetchConversation.swift:43:54: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
41 |         switch self.responseType {
42 |         case let .data(data):
43 |             return FetchResponse(status: urlResponse.statusCode, data: SerializedData(data: data))
   |                                                      `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
44 |         case let .url(url):
45 |             return FetchResponse(status: urlResponse.statusCode, data: SerializedData(data: Data()), downloadDestinationURL: url)
/host/spi-builder-workspace/Sources/Networking/FetchConversation.swift:45:54: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
43 |             return FetchResponse(status: urlResponse.statusCode, data: SerializedData(data: data))
44 |         case let .url(url):
45 |             return FetchResponse(status: urlResponse.statusCode, data: SerializedData(data: Data()), downloadDestinationURL: url)
   |                                                      `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
46 |         }
47 |     }
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:20:32: error: cannot find 'DispatchQueue' in scope
 18 |     public static let shared = NetworkClient()
 19 |
 20 |     private let utilityQueue = DispatchQueue.global(qos: .utility)
    |                                `- error: cannot find 'DispatchQueue' in scope
 21 |     private let continuationQueue = DispatchQueue(label: "BoxSdkGen.NetworkClient.continuationQueue.\(UUID().uuidString)")
 22 |     private var taskInfos: [Int: TaskInfo] = [:]
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:20:59: error: cannot infer contextual base in reference to member 'utility'
 18 |     public static let shared = NetworkClient()
 19 |
 20 |     private let utilityQueue = DispatchQueue.global(qos: .utility)
    |                                                           `- error: cannot infer contextual base in reference to member 'utility'
 21 |     private let continuationQueue = DispatchQueue(label: "BoxSdkGen.NetworkClient.continuationQueue.\(UUID().uuidString)")
 22 |     private var taskInfos: [Int: TaskInfo] = [:]
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:21:37: error: cannot find 'DispatchQueue' in scope
 19 |
 20 |     private let utilityQueue = DispatchQueue.global(qos: .utility)
 21 |     private let continuationQueue = DispatchQueue(label: "BoxSdkGen.NetworkClient.continuationQueue.\(UUID().uuidString)")
    |                                     `- error: cannot find 'DispatchQueue' in scope
 22 |     private var taskInfos: [Int: TaskInfo] = [:]
 23 |
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:86:48: error: cannot find type 'URLRequest' in scope
 84 |     /// - Returns: Tuple of (Data, URLResponse)
 85 |     /// - Throws: An error if the request fails for any reason.
 86 |     private func sendDataRequest(_ urlRequest: URLRequest, networkSession: NetworkSession) async throws -> (Data, URLResponse) {
    |                                                `- error: cannot find type 'URLRequest' in scope
 87 |         return try await withCheckedThrowingContinuation { continuation in
 88 |             continuationQueue.sync {
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:86:115: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 84 |     /// - Returns: Tuple of (Data, URLResponse)
 85 |     /// - Throws: An error if the request fails for any reason.
 86 |     private func sendDataRequest(_ urlRequest: URLRequest, networkSession: NetworkSession) async throws -> (Data, URLResponse) {
    |                                                                                                                   `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 87 |         return try await withCheckedThrowingContinuation { continuation in
 88 |             continuationQueue.sync {
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/Networking/NetworkClient.swift:105:52: error: cannot find type 'URLRequest' in scope
103 |     /// - Returns: Tuple of (URL, URLResponse)
104 |     /// - Throws: An error if the request fails for any reason.
105 |     private func sendDownloadRequest(_ urlRequest: URLRequest, downloadDestinationURL: URL, networkSession: NetworkSession) async throws -> (URL, URLResponse) {
    |                                                    `- error: cannot find type 'URLRequest' in scope
106 |         return try await withCheckedThrowingContinuation { continuation in
107 |             continuationQueue.sync {
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:105:147: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
103 |     /// - Returns: Tuple of (URL, URLResponse)
104 |     /// - Throws: An error if the request fails for any reason.
105 |     private func sendDownloadRequest(_ urlRequest: URLRequest, downloadDestinationURL: URL, networkSession: NetworkSession) async throws -> (URL, URLResponse) {
    |                                                                                                                                                   `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
106 |         return try await withCheckedThrowingContinuation { continuation in
107 |             continuationQueue.sync {
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/Networking/NetworkClient.swift:123:50: error: cannot find type 'URLRequest' in scope
121 |     /// - Returns: Tuple of (Data, URLResponse)
122 |     /// - Throws: An error if the request fails for any reason.
123 |     private func sendUploadRequest(_ urlRequest: URLRequest, options: FetchOptions, networkSession: NetworkSession) async throws -> (Data, URLResponse) {
    |                                                  `- error: cannot find type 'URLRequest' in scope
124 |         return try await withCheckedThrowingContinuation { continuation in
125 |             continuationQueue.sync {
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:123:140: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
121 |     /// - Returns: Tuple of (Data, URLResponse)
122 |     /// - Throws: An error if the request fails for any reason.
123 |     private func sendUploadRequest(_ urlRequest: URLRequest, options: FetchOptions, networkSession: NetworkSession) async throws -> (Data, URLResponse) {
    |                                                                                                                                            `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
124 |         return try await withCheckedThrowingContinuation { continuation in
125 |             continuationQueue.sync {
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/Networking/NetworkClient.swift:160:69: error: cannot find type 'URLRequest' in scope
158 |     /// - Returns: The URL of the multipart file created.
159 |     /// - Throws: An error if writing fails.
160 |     private func updateRequestWithMultipartData(_ urlRequest: inout URLRequest, multipartData: [MultipartItem]) throws -> URL {
    |                                                                     `- error: cannot find type 'URLRequest' in scope
161 |         let boundary = "Boundary-\(UUID().uuidString)"
162 |         urlRequest.setValue("multipart/form-data; boundary=\(boundary)", forHTTPHeaderField: HTTPHeaderKey.contentType)
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:206:23: error: cannot find type 'URLRequest' in scope
204 |         options: FetchOptions,
205 |         networkSession: NetworkSession
206 |     ) async throws -> URLRequest {
    |                       `- error: cannot find type 'URLRequest' in scope
207 |         var urlRequest = URLRequest(url: createEndpointUrl(url: options.url, params: options.params))
208 |         urlRequest.httpMethod = options.method.rawValue
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:232:63: error: cannot find type 'URLRequest' in scope
230 |     ///   - networkSession: The Networking Session object which provides the URLSession object along with a network configuration parameters used in network communication.
231 |     /// - Throws: An error if the operation fails for any reason.
232 |     private func updateRequestWithHeaders(_ urlRequest: inout URLRequest, options: FetchOptions, networkSession: NetworkSession) async throws {
    |                                                               `- error: cannot find type 'URLRequest' in scope
233 |         urlRequest.allHTTPHeaderFields = options.headers.compactMapValues { $0?.paramValue }
234 |
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:257:75: error: cannot find type 'URLRequest' in scope
255 |     ///   - networkSession: The Networking Session object which provides the URLSession object along with a network configuration parameters used in network communication.
256 |     /// - Throws: An error if the operation fails for any reason.
257 |     private func updateRequestWithAuthorizationHeader(_ urlRequest: inout URLRequest, options: FetchOptions, networkSession: NetworkSession) async throws {
    |                                                                           `- error: cannot find type 'URLRequest' in scope
258 |         if let auth = options.auth, let token = (try await auth.retrieveToken(networkSession: networkSession)).accessToken {
259 |             urlRequest.setValue("Bearer \(token)", forHTTPHeaderField: HTTPHeaderKey.authorization)
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:345:39: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
343 |
344 | extension NetworkClient {
345 |     public func urlSession(_ session: URLSession, task: URLSessionTask, didCompleteWithError error: Error?) {
    |                                       `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
346 |         continuationQueue.sync {
347 |             guard let taskInfo = taskInfos[task.taskIdentifier] else { return }
Foundation.URLSession:2:18: note: 'URLSession' 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 URLSession = AnyObject
  |                  `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:345:57: error: 'URLSessionTask' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
343 |
344 | extension NetworkClient {
345 |     public func urlSession(_ session: URLSession, task: URLSessionTask, didCompleteWithError error: Error?) {
    |                                                         `- error: 'URLSessionTask' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
346 |         continuationQueue.sync {
347 |             guard let taskInfo = taskInfos[task.taskIdentifier] else { return }
Foundation.URLSessionTask:2:18: note: 'URLSessionTask' 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 URLSessionTask = AnyObject
  |                  `- note: 'URLSessionTask' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:374:39: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
372 |     }
373 |
374 |     public func urlSession(_ session: URLSession, dataTask: URLSessionDataTask, didReceive data: Data) {
    |                                       `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
375 |         continuationQueue.sync {
376 |             guard let dataTaskInfo = taskInfos[dataTask.taskIdentifier] as? DataTaskInfo else { return }
Foundation.URLSession:2:18: note: 'URLSession' 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 URLSession = AnyObject
  |                  `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:374:61: error: 'URLSessionDataTask' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
372 |     }
373 |
374 |     public func urlSession(_ session: URLSession, dataTask: URLSessionDataTask, didReceive data: Data) {
    |                                                             `- error: 'URLSessionDataTask' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
375 |         continuationQueue.sync {
376 |             guard let dataTaskInfo = taskInfos[dataTask.taskIdentifier] as? DataTaskInfo else { return }
Foundation.URLSessionDataTask:2:18: note: 'URLSessionDataTask' 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 URLSessionDataTask = AnyObject
  |                  `- note: 'URLSessionDataTask' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:381:39: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
379 |     }
380 |
381 |     public func urlSession(_ session: URLSession, downloadTask: URLSessionDownloadTask, didFinishDownloadingTo location: URL) {
    |                                       `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
382 |         continuationQueue.sync {
383 |             guard let downloadTaskInfo = taskInfos[downloadTask.taskIdentifier] as? DownloadTaskInfo else { return }
Foundation.URLSession:2:18: note: 'URLSession' 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 URLSession = AnyObject
  |                  `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:381:65: error: 'URLSessionDownloadTask' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
379 |     }
380 |
381 |     public func urlSession(_ session: URLSession, downloadTask: URLSessionDownloadTask, didFinishDownloadingTo location: URL) {
    |                                                                 `- error: 'URLSessionDownloadTask' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
382 |         continuationQueue.sync {
383 |             guard let downloadTaskInfo = taskInfos[downloadTask.taskIdentifier] as? DownloadTaskInfo else { return }
Foundation.URLSessionDownloadTask:2:18: note: 'URLSessionDownloadTask' 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 URLSessionDownloadTask = AnyObject
  |                  `- note: 'URLSessionDownloadTask' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:66:153: error: cannot infer contextual base in reference to member 'url'
 64 |         if let downloadDestinationURL = options.downloadDestinationURL {
 65 |             let (downloadUrl, urlResponse) = try await sendDownloadRequest(urlRequest, downloadDestinationURL: downloadDestinationURL, networkSession: networkSession)
 66 |             let conversation = FetchConversation(options: options, urlRequest: urlRequest, urlResponse: urlResponse as! HTTPURLResponse, responseType: .url(downloadUrl))
    |                                                                                                                                                         `- error: cannot infer contextual base in reference to member 'url'
 67 |             return try await processResponse(using: conversation, networkSession: networkSession, attempt: attempt, isUpload: isUpload)
 68 |         } else if isUpload {
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:70:153: error: cannot infer contextual base in reference to member 'data'
 68 |         } else if isUpload {
 69 |             let (data, urlResponse) = try await sendUploadRequest(urlRequest, options: options, networkSession: networkSession)
 70 |             let conversation = FetchConversation(options: options, urlRequest: urlRequest, urlResponse: urlResponse as! HTTPURLResponse, responseType: .data(data))
    |                                                                                                                                                         `- error: cannot infer contextual base in reference to member 'data'
 71 |             return try await processResponse(using: conversation, networkSession: networkSession, attempt: attempt, isUpload: isUpload)
 72 |         } else {
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:74:153: error: cannot infer contextual base in reference to member 'data'
 72 |         } else {
 73 |             let (data, urlResponse) = try await sendDataRequest(urlRequest, networkSession: networkSession)
 74 |             let conversation = FetchConversation(options: options, urlRequest: urlRequest, urlResponse: urlResponse as! HTTPURLResponse, responseType: .data(data))
    |                                                                                                                                                         `- error: cannot infer contextual base in reference to member 'data'
 75 |             return try await processResponse(using: conversation, networkSession: networkSession, attempt: attempt, isUpload: isUpload)
 76 |         }
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:89:51: error: value of type 'URLSession' (aka 'AnyObject') has no member 'dataTask'
 87 |         return try await withCheckedThrowingContinuation { continuation in
 88 |             continuationQueue.sync {
 89 |                 let task = networkSession.session.dataTask(with: urlRequest)
    |                                                   `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'dataTask'
 90 |                 let taskInfo = DataTaskInfo(continuation: continuation)
 91 |                 taskInfos[task.taskIdentifier] = taskInfo
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:108:51: error: value of type 'URLSession' (aka 'AnyObject') has no member 'downloadTask'
106 |         return try await withCheckedThrowingContinuation { continuation in
107 |             continuationQueue.sync {
108 |                 let task = networkSession.session.downloadTask(with: urlRequest)
    |                                                   `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'downloadTask'
109 |                 let taskInfo = DownloadTaskInfo(continuation: continuation, destinationURL: downloadDestinationURL)
110 |                 taskInfos[task.taskIdentifier] = taskInfo
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:127:55: error: value of type 'URLSession' (aka 'AnyObject') has no member 'uploadTask'
125 |             continuationQueue.sync {
126 |                 if let serializedData = options.data {
127 |                     let task = networkSession.session.uploadTask(with: urlRequest, from: serializedData.data)
    |                                                       `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'uploadTask'
128 |                     let taskInfo = DataTaskInfo(continuation: continuation)
129 |                     taskInfos[task.taskIdentifier] = taskInfo
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:207:26: error: cannot find 'URLRequest' in scope
205 |         networkSession: NetworkSession
206 |     ) async throws -> URLRequest {
207 |         var urlRequest = URLRequest(url: createEndpointUrl(url: options.url, params: options.params))
    |                          `- error: cannot find 'URLRequest' in scope
208 |         urlRequest.httpMethod = options.method.rawValue
209 |
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:295:51: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
293 |         isUpload: Bool
294 |     ) async throws -> FetchResponse {
295 |         let statusCode = conversation.urlResponse.statusCode
    |                                                   `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
296 |         let isStatusCodeAcceptedWithRetryAfterHeader = statusCode == 202 && conversation.urlResponse.value(forHTTPHeaderField: HTTPHeaderKey.retryAfter) != nil
297 |
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:296:102: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'value'
294 |     ) async throws -> FetchResponse {
295 |         let statusCode = conversation.urlResponse.statusCode
296 |         let isStatusCodeAcceptedWithRetryAfterHeader = statusCode == 202 && conversation.urlResponse.value(forHTTPHeaderField: HTTPHeaderKey.retryAfter) != nil
    |                                                                                                      `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'value'
297 |
298 |         // OK
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:316:64: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'value'
314 |         // Retryable
315 |         if statusCode == 429 || statusCode >= 500 || isStatusCodeAcceptedWithRetryAfterHeader {
316 |             let retryTimeout = Double(conversation.urlResponse.value(forHTTPHeaderField: HTTPHeaderKey.retryAfter) ?? "")
    |                                                                `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'value'
317 |             ?? networkSession.networkSettings.retryStrategy.getRetryTimeout(attempt: attempt)
318 |             try await wait(seconds: retryTimeout)
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:334:28: error: cannot call value of non-function type 'ContinuousClock.Instant'
332 |         return try await withCheckedThrowingContinuation { continuation in
333 |             utilityQueue.asyncAfter(
334 |                 deadline: .now() + .milliseconds(Int(delay * 1000))
    |                            `- error: cannot call value of non-function type 'ContinuousClock.Instant'
335 |             ) {
336 |                 continuation.resume()
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:347:49: error: value of type 'URLSessionTask' (aka 'AnyObject') has no member 'taskIdentifier'
345 |     public func urlSession(_ session: URLSession, task: URLSessionTask, didCompleteWithError error: Error?) {
346 |         continuationQueue.sync {
347 |             guard let taskInfo = taskInfos[task.taskIdentifier] else { return }
    |                                                 `- error: value of type 'URLSessionTask' (aka 'AnyObject') has no member 'taskIdentifier'
348 |             switch taskInfo {
349 |             case let dataTaskInfo as DataTaskInfo:
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:376:57: error: value of type 'URLSessionDataTask' (aka 'AnyObject') has no member 'taskIdentifier'
374 |     public func urlSession(_ session: URLSession, dataTask: URLSessionDataTask, didReceive data: Data) {
375 |         continuationQueue.sync {
376 |             guard let dataTaskInfo = taskInfos[dataTask.taskIdentifier] as? DataTaskInfo else { return }
    |                                                         `- error: value of type 'URLSessionDataTask' (aka 'AnyObject') has no member 'taskIdentifier'
377 |             dataTaskInfo.accumulatedData.append(data)
378 |         }
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:383:65: error: value of type 'URLSessionDownloadTask' (aka 'AnyObject') has no member 'taskIdentifier'
381 |     public func urlSession(_ session: URLSession, downloadTask: URLSessionDownloadTask, didFinishDownloadingTo location: URL) {
382 |         continuationQueue.sync {
383 |             guard let downloadTaskInfo = taskInfos[downloadTask.taskIdentifier] as? DownloadTaskInfo else { return }
    |                                                                 `- error: value of type 'URLSessionDownloadTask' (aka 'AnyObject') has no member 'taskIdentifier'
384 |             do {
385 |                 try FileManager.default.moveItem(at: location, to: downloadTaskInfo.destinationURL)
/host/spi-builder-workspace/Sources/Networking/NetworkSession.swift:16:25: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
14 |
15 |     /// Provides an API  for downloading data from and uploading data to endpoints indicated by URL.
16 |     public let session: URLSession
   |                         `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
17 |
18 |     /// url session configuration.
Foundation.URLSession:2:18: note: 'URLSession' 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 URLSession = AnyObject
  |                  `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Networking/NetworkSession.swift:19:31: error: 'URLSessionConfiguration' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
17 |
18 |     /// url session configuration.
19 |     public let configuration: URLSessionConfiguration
   |                               `- error: 'URLSessionConfiguration' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
20 |
21 |     /// Additional network settings.
Foundation.URLSessionConfiguration:2:18: note: 'URLSessionConfiguration' 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 URLSessionConfiguration = AnyObject
  |                  `- note: 'URLSessionConfiguration' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Networking/NetworkSession.swift:32:24: error: 'URLSessionConfiguration' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
30 |     public init(
31 |         additionalHeaders: [String: String] = [:],
32 |         configuration: URLSessionConfiguration = URLSessionConfiguration.default,
   |                        `- error: 'URLSessionConfiguration' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
33 |         networkSettings: NetworkSettings = NetworkSettings(),
34 |         baseUrls: BaseUrls = BaseUrls()
Foundation.URLSessionConfiguration:2:18: note: 'URLSessionConfiguration' 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 URLSessionConfiguration = AnyObject
  |                  `- note: 'URLSessionConfiguration' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Networking/NetworkSession.swift:38:24: error: 'URLSession' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
36 |         self.additionalHeaders = additionalHeaders
37 |         self.configuration = configuration
38 |         self.session = URLSession(configuration: configuration, delegate: NetworkClient.shared, delegateQueue: nil)
   |                        `- error: 'URLSession' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
39 |         self.networkSettings = networkSettings
40 |         self.baseUrls = baseUrls
/host/spi-builder-workspace/Sources/Networking/NetworkSession.swift:38:112: error: 'nil' requires a contextual type
36 |         self.additionalHeaders = additionalHeaders
37 |         self.configuration = configuration
38 |         self.session = URLSession(configuration: configuration, delegate: NetworkClient.shared, delegateQueue: nil)
   |                                                                                                                `- error: 'nil' requires a contextual type
39 |         self.networkSettings = networkSettings
40 |         self.baseUrls = baseUrls
[827/1004] Compiling BoxSdkGen MultipartItem.swift
/host/spi-builder-workspace/Sources/Networking/NetworkSession.swift:32:74: error: type 'URLSessionConfiguration' (aka 'AnyObject') has no member 'default'
30 |     public init(
31 |         additionalHeaders: [String: String] = [:],
32 |         configuration: URLSessionConfiguration = URLSessionConfiguration.default,
   |                                                                          `- error: type 'URLSessionConfiguration' (aka 'AnyObject') has no member 'default'
33 |         networkSettings: NetworkSettings = NetworkSettings(),
34 |         baseUrls: BaseUrls = BaseUrls()
/host/spi-builder-workspace/Sources/Networking/NetworkSession.swift:32:74: error: default argument value of type '_' cannot be converted to type 'AnyObject'
30 |     public init(
31 |         additionalHeaders: [String: String] = [:],
32 |         configuration: URLSessionConfiguration = URLSessionConfiguration.default,
   |                                                                          `- error: default argument value of type '_' cannot be converted to type 'AnyObject'
33 |         networkSettings: NetworkSettings = NetworkSettings(),
34 |         baseUrls: BaseUrls = BaseUrls()
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:17:39: error: cannot find type 'URLSessionDelegate' in scope
 15 |
 16 | /// Networking layer interface
 17 | public class NetworkClient: NSObject, URLSessionDelegate, URLSessionTaskDelegate, URLSessionDataDelegate, URLSessionDownloadDelegate {
    |                                       `- error: cannot find type 'URLSessionDelegate' in scope
 18 |     public static let shared = NetworkClient()
 19 |
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:17:59: error: cannot find type 'URLSessionTaskDelegate' in scope
 15 |
 16 | /// Networking layer interface
 17 | public class NetworkClient: NSObject, URLSessionDelegate, URLSessionTaskDelegate, URLSessionDataDelegate, URLSessionDownloadDelegate {
    |                                                           `- error: cannot find type 'URLSessionTaskDelegate' in scope
 18 |     public static let shared = NetworkClient()
 19 |
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:17:83: error: cannot find type 'URLSessionDataDelegate' in scope
 15 |
 16 | /// Networking layer interface
 17 | public class NetworkClient: NSObject, URLSessionDelegate, URLSessionTaskDelegate, URLSessionDataDelegate, URLSessionDownloadDelegate {
    |                                                                                   `- error: cannot find type 'URLSessionDataDelegate' in scope
 18 |     public static let shared = NetworkClient()
 19 |
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:17:107: error: cannot find type 'URLSessionDownloadDelegate' in scope
 15 |
 16 | /// Networking layer interface
 17 | public class NetworkClient: NSObject, URLSessionDelegate, URLSessionTaskDelegate, URLSessionDataDelegate, URLSessionDownloadDelegate {
    |                                                                                                           `- error: cannot find type 'URLSessionDownloadDelegate' in scope
 18 |     public static let shared = NetworkClient()
 19 |
/host/spi-builder-workspace/Sources/Managers/Webhooks/WebhooksManager.swift:83:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it [#no-usage]
81 |     public func deleteWebhookById(webhookId: String, headers: DeleteWebhookByIdHeaders = DeleteWebhookByIdHeaders()) async throws {
82 |         let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
83 |         let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/webhooks/")\(webhookId)", method: "DELETE", headers: headersMap, responseFormat: nil, auth: self.auth, networkSession: self.networkSession))
   |             `- warning: immutable value 'response' was never used; consider replacing with '_' or removing it [#no-usage]
84 |     }
85 |
/host/spi-builder-workspace/Sources/Managers/Workflows/WorkflowsManager.swift:44:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it [#no-usage]
42 |     public func startWorkflow(workflowId: String, requestBody: StartWorkflowRequestBody, headers: StartWorkflowHeaders = StartWorkflowHeaders()) async throws {
43 |         let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
44 |         let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/workflows/")\(workflowId)\("/start")", method: "POST", headers: headersMap, data: try requestBody.serialize(), contentType: "application/json", responseFormat: nil, auth: self.auth, networkSession: self.networkSession))
   |             `- warning: immutable value 'response' was never used; consider replacing with '_' or removing it [#no-usage]
45 |     }
46 |
/host/spi-builder-workspace/Sources/Networking/FetchConversation.swift:17:21: error: cannot find type 'URLRequest' in scope
15 |     let options: FetchOptions
16 |     /// Represents an URL request.
17 |     let urlRequest: URLRequest
   |                     `- error: cannot find type 'URLRequest' in scope
18 |     /// Represents a response to an HTTP URL.
19 |     let urlResponse: HTTPURLResponse
/host/spi-builder-workspace/Sources/Networking/FetchConversation.swift:19:22: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
17 |     let urlRequest: URLRequest
18 |     /// Represents a response to an HTTP URL.
19 |     let urlResponse: HTTPURLResponse
   |                      `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
20 |     /// Represents response type, either data or downloaded file
21 |     let responseType: ResponseType
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/Networking/FetchConversation.swift:30:45: error: cannot find type 'URLRequest' in scope
28 |     ///   - urlResponse: Represents a response to an HTTP URL
29 |     ///   - responseType: Represents response type, either data or downloaded file
30 |     init(options: FetchOptions, urlRequest: URLRequest, urlResponse: HTTPURLResponse, responseType: ResponseType) {
   |                                             `- error: cannot find type 'URLRequest' in scope
31 |         self.options = options
32 |         self.urlRequest = urlRequest
/host/spi-builder-workspace/Sources/Networking/FetchConversation.swift:30:70: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
28 |     ///   - urlResponse: Represents a response to an HTTP URL
29 |     ///   - responseType: Represents response type, either data or downloaded file
30 |     init(options: FetchOptions, urlRequest: URLRequest, urlResponse: HTTPURLResponse, responseType: ResponseType) {
   |                                                                      `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
31 |         self.options = options
32 |         self.urlRequest = urlRequest
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/Networking/FetchConversation.swift:43:54: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
41 |         switch self.responseType {
42 |         case let .data(data):
43 |             return FetchResponse(status: urlResponse.statusCode, data: SerializedData(data: data))
   |                                                      `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
44 |         case let .url(url):
45 |             return FetchResponse(status: urlResponse.statusCode, data: SerializedData(data: Data()), downloadDestinationURL: url)
/host/spi-builder-workspace/Sources/Networking/FetchConversation.swift:45:54: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
43 |             return FetchResponse(status: urlResponse.statusCode, data: SerializedData(data: data))
44 |         case let .url(url):
45 |             return FetchResponse(status: urlResponse.statusCode, data: SerializedData(data: Data()), downloadDestinationURL: url)
   |                                                      `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
46 |         }
47 |     }
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:20:32: error: cannot find 'DispatchQueue' in scope
 18 |     public static let shared = NetworkClient()
 19 |
 20 |     private let utilityQueue = DispatchQueue.global(qos: .utility)
    |                                `- error: cannot find 'DispatchQueue' in scope
 21 |     private let continuationQueue = DispatchQueue(label: "BoxSdkGen.NetworkClient.continuationQueue.\(UUID().uuidString)")
 22 |     private var taskInfos: [Int: TaskInfo] = [:]
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:20:59: error: cannot infer contextual base in reference to member 'utility'
 18 |     public static let shared = NetworkClient()
 19 |
 20 |     private let utilityQueue = DispatchQueue.global(qos: .utility)
    |                                                           `- error: cannot infer contextual base in reference to member 'utility'
 21 |     private let continuationQueue = DispatchQueue(label: "BoxSdkGen.NetworkClient.continuationQueue.\(UUID().uuidString)")
 22 |     private var taskInfos: [Int: TaskInfo] = [:]
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:21:37: error: cannot find 'DispatchQueue' in scope
 19 |
 20 |     private let utilityQueue = DispatchQueue.global(qos: .utility)
 21 |     private let continuationQueue = DispatchQueue(label: "BoxSdkGen.NetworkClient.continuationQueue.\(UUID().uuidString)")
    |                                     `- error: cannot find 'DispatchQueue' in scope
 22 |     private var taskInfos: [Int: TaskInfo] = [:]
 23 |
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:86:48: error: cannot find type 'URLRequest' in scope
 84 |     /// - Returns: Tuple of (Data, URLResponse)
 85 |     /// - Throws: An error if the request fails for any reason.
 86 |     private func sendDataRequest(_ urlRequest: URLRequest, networkSession: NetworkSession) async throws -> (Data, URLResponse) {
    |                                                `- error: cannot find type 'URLRequest' in scope
 87 |         return try await withCheckedThrowingContinuation { continuation in
 88 |             continuationQueue.sync {
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:86:115: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 84 |     /// - Returns: Tuple of (Data, URLResponse)
 85 |     /// - Throws: An error if the request fails for any reason.
 86 |     private func sendDataRequest(_ urlRequest: URLRequest, networkSession: NetworkSession) async throws -> (Data, URLResponse) {
    |                                                                                                                   `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 87 |         return try await withCheckedThrowingContinuation { continuation in
 88 |             continuationQueue.sync {
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/Networking/NetworkClient.swift:105:52: error: cannot find type 'URLRequest' in scope
103 |     /// - Returns: Tuple of (URL, URLResponse)
104 |     /// - Throws: An error if the request fails for any reason.
105 |     private func sendDownloadRequest(_ urlRequest: URLRequest, downloadDestinationURL: URL, networkSession: NetworkSession) async throws -> (URL, URLResponse) {
    |                                                    `- error: cannot find type 'URLRequest' in scope
106 |         return try await withCheckedThrowingContinuation { continuation in
107 |             continuationQueue.sync {
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:105:147: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
103 |     /// - Returns: Tuple of (URL, URLResponse)
104 |     /// - Throws: An error if the request fails for any reason.
105 |     private func sendDownloadRequest(_ urlRequest: URLRequest, downloadDestinationURL: URL, networkSession: NetworkSession) async throws -> (URL, URLResponse) {
    |                                                                                                                                                   `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
106 |         return try await withCheckedThrowingContinuation { continuation in
107 |             continuationQueue.sync {
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/Networking/NetworkClient.swift:123:50: error: cannot find type 'URLRequest' in scope
121 |     /// - Returns: Tuple of (Data, URLResponse)
122 |     /// - Throws: An error if the request fails for any reason.
123 |     private func sendUploadRequest(_ urlRequest: URLRequest, options: FetchOptions, networkSession: NetworkSession) async throws -> (Data, URLResponse) {
    |                                                  `- error: cannot find type 'URLRequest' in scope
124 |         return try await withCheckedThrowingContinuation { continuation in
125 |             continuationQueue.sync {
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:123:140: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
121 |     /// - Returns: Tuple of (Data, URLResponse)
122 |     /// - Throws: An error if the request fails for any reason.
123 |     private func sendUploadRequest(_ urlRequest: URLRequest, options: FetchOptions, networkSession: NetworkSession) async throws -> (Data, URLResponse) {
    |                                                                                                                                            `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
124 |         return try await withCheckedThrowingContinuation { continuation in
125 |             continuationQueue.sync {
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/Networking/NetworkClient.swift:160:69: error: cannot find type 'URLRequest' in scope
158 |     /// - Returns: The URL of the multipart file created.
159 |     /// - Throws: An error if writing fails.
160 |     private func updateRequestWithMultipartData(_ urlRequest: inout URLRequest, multipartData: [MultipartItem]) throws -> URL {
    |                                                                     `- error: cannot find type 'URLRequest' in scope
161 |         let boundary = "Boundary-\(UUID().uuidString)"
162 |         urlRequest.setValue("multipart/form-data; boundary=\(boundary)", forHTTPHeaderField: HTTPHeaderKey.contentType)
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:206:23: error: cannot find type 'URLRequest' in scope
204 |         options: FetchOptions,
205 |         networkSession: NetworkSession
206 |     ) async throws -> URLRequest {
    |                       `- error: cannot find type 'URLRequest' in scope
207 |         var urlRequest = URLRequest(url: createEndpointUrl(url: options.url, params: options.params))
208 |         urlRequest.httpMethod = options.method.rawValue
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:232:63: error: cannot find type 'URLRequest' in scope
230 |     ///   - networkSession: The Networking Session object which provides the URLSession object along with a network configuration parameters used in network communication.
231 |     /// - Throws: An error if the operation fails for any reason.
232 |     private func updateRequestWithHeaders(_ urlRequest: inout URLRequest, options: FetchOptions, networkSession: NetworkSession) async throws {
    |                                                               `- error: cannot find type 'URLRequest' in scope
233 |         urlRequest.allHTTPHeaderFields = options.headers.compactMapValues { $0?.paramValue }
234 |
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:257:75: error: cannot find type 'URLRequest' in scope
255 |     ///   - networkSession: The Networking Session object which provides the URLSession object along with a network configuration parameters used in network communication.
256 |     /// - Throws: An error if the operation fails for any reason.
257 |     private func updateRequestWithAuthorizationHeader(_ urlRequest: inout URLRequest, options: FetchOptions, networkSession: NetworkSession) async throws {
    |                                                                           `- error: cannot find type 'URLRequest' in scope
258 |         if let auth = options.auth, let token = (try await auth.retrieveToken(networkSession: networkSession)).accessToken {
259 |             urlRequest.setValue("Bearer \(token)", forHTTPHeaderField: HTTPHeaderKey.authorization)
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:345:39: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
343 |
344 | extension NetworkClient {
345 |     public func urlSession(_ session: URLSession, task: URLSessionTask, didCompleteWithError error: Error?) {
    |                                       `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
346 |         continuationQueue.sync {
347 |             guard let taskInfo = taskInfos[task.taskIdentifier] else { return }
Foundation.URLSession:2:18: note: 'URLSession' 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 URLSession = AnyObject
  |                  `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:345:57: error: 'URLSessionTask' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
343 |
344 | extension NetworkClient {
345 |     public func urlSession(_ session: URLSession, task: URLSessionTask, didCompleteWithError error: Error?) {
    |                                                         `- error: 'URLSessionTask' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
346 |         continuationQueue.sync {
347 |             guard let taskInfo = taskInfos[task.taskIdentifier] else { return }
Foundation.URLSessionTask:2:18: note: 'URLSessionTask' 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 URLSessionTask = AnyObject
  |                  `- note: 'URLSessionTask' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:374:39: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
372 |     }
373 |
374 |     public func urlSession(_ session: URLSession, dataTask: URLSessionDataTask, didReceive data: Data) {
    |                                       `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
375 |         continuationQueue.sync {
376 |             guard let dataTaskInfo = taskInfos[dataTask.taskIdentifier] as? DataTaskInfo else { return }
Foundation.URLSession:2:18: note: 'URLSession' 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 URLSession = AnyObject
  |                  `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:374:61: error: 'URLSessionDataTask' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
372 |     }
373 |
374 |     public func urlSession(_ session: URLSession, dataTask: URLSessionDataTask, didReceive data: Data) {
    |                                                             `- error: 'URLSessionDataTask' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
375 |         continuationQueue.sync {
376 |             guard let dataTaskInfo = taskInfos[dataTask.taskIdentifier] as? DataTaskInfo else { return }
Foundation.URLSessionDataTask:2:18: note: 'URLSessionDataTask' 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 URLSessionDataTask = AnyObject
  |                  `- note: 'URLSessionDataTask' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:381:39: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
379 |     }
380 |
381 |     public func urlSession(_ session: URLSession, downloadTask: URLSessionDownloadTask, didFinishDownloadingTo location: URL) {
    |                                       `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
382 |         continuationQueue.sync {
383 |             guard let downloadTaskInfo = taskInfos[downloadTask.taskIdentifier] as? DownloadTaskInfo else { return }
Foundation.URLSession:2:18: note: 'URLSession' 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 URLSession = AnyObject
  |                  `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:381:65: error: 'URLSessionDownloadTask' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
379 |     }
380 |
381 |     public func urlSession(_ session: URLSession, downloadTask: URLSessionDownloadTask, didFinishDownloadingTo location: URL) {
    |                                                                 `- error: 'URLSessionDownloadTask' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
382 |         continuationQueue.sync {
383 |             guard let downloadTaskInfo = taskInfos[downloadTask.taskIdentifier] as? DownloadTaskInfo else { return }
Foundation.URLSessionDownloadTask:2:18: note: 'URLSessionDownloadTask' 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 URLSessionDownloadTask = AnyObject
  |                  `- note: 'URLSessionDownloadTask' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:66:153: error: cannot infer contextual base in reference to member 'url'
 64 |         if let downloadDestinationURL = options.downloadDestinationURL {
 65 |             let (downloadUrl, urlResponse) = try await sendDownloadRequest(urlRequest, downloadDestinationURL: downloadDestinationURL, networkSession: networkSession)
 66 |             let conversation = FetchConversation(options: options, urlRequest: urlRequest, urlResponse: urlResponse as! HTTPURLResponse, responseType: .url(downloadUrl))
    |                                                                                                                                                         `- error: cannot infer contextual base in reference to member 'url'
 67 |             return try await processResponse(using: conversation, networkSession: networkSession, attempt: attempt, isUpload: isUpload)
 68 |         } else if isUpload {
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:70:153: error: cannot infer contextual base in reference to member 'data'
 68 |         } else if isUpload {
 69 |             let (data, urlResponse) = try await sendUploadRequest(urlRequest, options: options, networkSession: networkSession)
 70 |             let conversation = FetchConversation(options: options, urlRequest: urlRequest, urlResponse: urlResponse as! HTTPURLResponse, responseType: .data(data))
    |                                                                                                                                                         `- error: cannot infer contextual base in reference to member 'data'
 71 |             return try await processResponse(using: conversation, networkSession: networkSession, attempt: attempt, isUpload: isUpload)
 72 |         } else {
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:74:153: error: cannot infer contextual base in reference to member 'data'
 72 |         } else {
 73 |             let (data, urlResponse) = try await sendDataRequest(urlRequest, networkSession: networkSession)
 74 |             let conversation = FetchConversation(options: options, urlRequest: urlRequest, urlResponse: urlResponse as! HTTPURLResponse, responseType: .data(data))
    |                                                                                                                                                         `- error: cannot infer contextual base in reference to member 'data'
 75 |             return try await processResponse(using: conversation, networkSession: networkSession, attempt: attempt, isUpload: isUpload)
 76 |         }
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:89:51: error: value of type 'URLSession' (aka 'AnyObject') has no member 'dataTask'
 87 |         return try await withCheckedThrowingContinuation { continuation in
 88 |             continuationQueue.sync {
 89 |                 let task = networkSession.session.dataTask(with: urlRequest)
    |                                                   `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'dataTask'
 90 |                 let taskInfo = DataTaskInfo(continuation: continuation)
 91 |                 taskInfos[task.taskIdentifier] = taskInfo
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:108:51: error: value of type 'URLSession' (aka 'AnyObject') has no member 'downloadTask'
106 |         return try await withCheckedThrowingContinuation { continuation in
107 |             continuationQueue.sync {
108 |                 let task = networkSession.session.downloadTask(with: urlRequest)
    |                                                   `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'downloadTask'
109 |                 let taskInfo = DownloadTaskInfo(continuation: continuation, destinationURL: downloadDestinationURL)
110 |                 taskInfos[task.taskIdentifier] = taskInfo
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:127:55: error: value of type 'URLSession' (aka 'AnyObject') has no member 'uploadTask'
125 |             continuationQueue.sync {
126 |                 if let serializedData = options.data {
127 |                     let task = networkSession.session.uploadTask(with: urlRequest, from: serializedData.data)
    |                                                       `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'uploadTask'
128 |                     let taskInfo = DataTaskInfo(continuation: continuation)
129 |                     taskInfos[task.taskIdentifier] = taskInfo
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:207:26: error: cannot find 'URLRequest' in scope
205 |         networkSession: NetworkSession
206 |     ) async throws -> URLRequest {
207 |         var urlRequest = URLRequest(url: createEndpointUrl(url: options.url, params: options.params))
    |                          `- error: cannot find 'URLRequest' in scope
208 |         urlRequest.httpMethod = options.method.rawValue
209 |
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:295:51: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
293 |         isUpload: Bool
294 |     ) async throws -> FetchResponse {
295 |         let statusCode = conversation.urlResponse.statusCode
    |                                                   `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
296 |         let isStatusCodeAcceptedWithRetryAfterHeader = statusCode == 202 && conversation.urlResponse.value(forHTTPHeaderField: HTTPHeaderKey.retryAfter) != nil
297 |
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:296:102: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'value'
294 |     ) async throws -> FetchResponse {
295 |         let statusCode = conversation.urlResponse.statusCode
296 |         let isStatusCodeAcceptedWithRetryAfterHeader = statusCode == 202 && conversation.urlResponse.value(forHTTPHeaderField: HTTPHeaderKey.retryAfter) != nil
    |                                                                                                      `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'value'
297 |
298 |         // OK
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:316:64: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'value'
314 |         // Retryable
315 |         if statusCode == 429 || statusCode >= 500 || isStatusCodeAcceptedWithRetryAfterHeader {
316 |             let retryTimeout = Double(conversation.urlResponse.value(forHTTPHeaderField: HTTPHeaderKey.retryAfter) ?? "")
    |                                                                `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'value'
317 |             ?? networkSession.networkSettings.retryStrategy.getRetryTimeout(attempt: attempt)
318 |             try await wait(seconds: retryTimeout)
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:334:28: error: cannot call value of non-function type 'ContinuousClock.Instant'
332 |         return try await withCheckedThrowingContinuation { continuation in
333 |             utilityQueue.asyncAfter(
334 |                 deadline: .now() + .milliseconds(Int(delay * 1000))
    |                            `- error: cannot call value of non-function type 'ContinuousClock.Instant'
335 |             ) {
336 |                 continuation.resume()
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:347:49: error: value of type 'URLSessionTask' (aka 'AnyObject') has no member 'taskIdentifier'
345 |     public func urlSession(_ session: URLSession, task: URLSessionTask, didCompleteWithError error: Error?) {
346 |         continuationQueue.sync {
347 |             guard let taskInfo = taskInfos[task.taskIdentifier] else { return }
    |                                                 `- error: value of type 'URLSessionTask' (aka 'AnyObject') has no member 'taskIdentifier'
348 |             switch taskInfo {
349 |             case let dataTaskInfo as DataTaskInfo:
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:376:57: error: value of type 'URLSessionDataTask' (aka 'AnyObject') has no member 'taskIdentifier'
374 |     public func urlSession(_ session: URLSession, dataTask: URLSessionDataTask, didReceive data: Data) {
375 |         continuationQueue.sync {
376 |             guard let dataTaskInfo = taskInfos[dataTask.taskIdentifier] as? DataTaskInfo else { return }
    |                                                         `- error: value of type 'URLSessionDataTask' (aka 'AnyObject') has no member 'taskIdentifier'
377 |             dataTaskInfo.accumulatedData.append(data)
378 |         }
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:383:65: error: value of type 'URLSessionDownloadTask' (aka 'AnyObject') has no member 'taskIdentifier'
381 |     public func urlSession(_ session: URLSession, downloadTask: URLSessionDownloadTask, didFinishDownloadingTo location: URL) {
382 |         continuationQueue.sync {
383 |             guard let downloadTaskInfo = taskInfos[downloadTask.taskIdentifier] as? DownloadTaskInfo else { return }
    |                                                                 `- error: value of type 'URLSessionDownloadTask' (aka 'AnyObject') has no member 'taskIdentifier'
384 |             do {
385 |                 try FileManager.default.moveItem(at: location, to: downloadTaskInfo.destinationURL)
/host/spi-builder-workspace/Sources/Networking/NetworkSession.swift:16:25: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
14 |
15 |     /// Provides an API  for downloading data from and uploading data to endpoints indicated by URL.
16 |     public let session: URLSession
   |                         `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
17 |
18 |     /// url session configuration.
Foundation.URLSession:2:18: note: 'URLSession' 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 URLSession = AnyObject
  |                  `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Networking/NetworkSession.swift:19:31: error: 'URLSessionConfiguration' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
17 |
18 |     /// url session configuration.
19 |     public let configuration: URLSessionConfiguration
   |                               `- error: 'URLSessionConfiguration' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
20 |
21 |     /// Additional network settings.
Foundation.URLSessionConfiguration:2:18: note: 'URLSessionConfiguration' 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 URLSessionConfiguration = AnyObject
  |                  `- note: 'URLSessionConfiguration' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Networking/NetworkSession.swift:32:24: error: 'URLSessionConfiguration' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
30 |     public init(
31 |         additionalHeaders: [String: String] = [:],
32 |         configuration: URLSessionConfiguration = URLSessionConfiguration.default,
   |                        `- error: 'URLSessionConfiguration' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
33 |         networkSettings: NetworkSettings = NetworkSettings(),
34 |         baseUrls: BaseUrls = BaseUrls()
Foundation.URLSessionConfiguration:2:18: note: 'URLSessionConfiguration' 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 URLSessionConfiguration = AnyObject
  |                  `- note: 'URLSessionConfiguration' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Networking/NetworkSession.swift:38:24: error: 'URLSession' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
36 |         self.additionalHeaders = additionalHeaders
37 |         self.configuration = configuration
38 |         self.session = URLSession(configuration: configuration, delegate: NetworkClient.shared, delegateQueue: nil)
   |                        `- error: 'URLSession' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
39 |         self.networkSettings = networkSettings
40 |         self.baseUrls = baseUrls
/host/spi-builder-workspace/Sources/Networking/NetworkSession.swift:38:112: error: 'nil' requires a contextual type
36 |         self.additionalHeaders = additionalHeaders
37 |         self.configuration = configuration
38 |         self.session = URLSession(configuration: configuration, delegate: NetworkClient.shared, delegateQueue: nil)
   |                                                                                                                `- error: 'nil' requires a contextual type
39 |         self.networkSettings = networkSettings
40 |         self.baseUrls = baseUrls
[828/1004] Compiling BoxSdkGen NetworkClient.swift
/host/spi-builder-workspace/Sources/Networking/NetworkSession.swift:32:74: error: type 'URLSessionConfiguration' (aka 'AnyObject') has no member 'default'
30 |     public init(
31 |         additionalHeaders: [String: String] = [:],
32 |         configuration: URLSessionConfiguration = URLSessionConfiguration.default,
   |                                                                          `- error: type 'URLSessionConfiguration' (aka 'AnyObject') has no member 'default'
33 |         networkSettings: NetworkSettings = NetworkSettings(),
34 |         baseUrls: BaseUrls = BaseUrls()
/host/spi-builder-workspace/Sources/Networking/NetworkSession.swift:32:74: error: default argument value of type '_' cannot be converted to type 'AnyObject'
30 |     public init(
31 |         additionalHeaders: [String: String] = [:],
32 |         configuration: URLSessionConfiguration = URLSessionConfiguration.default,
   |                                                                          `- error: default argument value of type '_' cannot be converted to type 'AnyObject'
33 |         networkSettings: NetworkSettings = NetworkSettings(),
34 |         baseUrls: BaseUrls = BaseUrls()
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:17:39: error: cannot find type 'URLSessionDelegate' in scope
 15 |
 16 | /// Networking layer interface
 17 | public class NetworkClient: NSObject, URLSessionDelegate, URLSessionTaskDelegate, URLSessionDataDelegate, URLSessionDownloadDelegate {
    |                                       `- error: cannot find type 'URLSessionDelegate' in scope
 18 |     public static let shared = NetworkClient()
 19 |
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:17:59: error: cannot find type 'URLSessionTaskDelegate' in scope
 15 |
 16 | /// Networking layer interface
 17 | public class NetworkClient: NSObject, URLSessionDelegate, URLSessionTaskDelegate, URLSessionDataDelegate, URLSessionDownloadDelegate {
    |                                                           `- error: cannot find type 'URLSessionTaskDelegate' in scope
 18 |     public static let shared = NetworkClient()
 19 |
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:17:83: error: cannot find type 'URLSessionDataDelegate' in scope
 15 |
 16 | /// Networking layer interface
 17 | public class NetworkClient: NSObject, URLSessionDelegate, URLSessionTaskDelegate, URLSessionDataDelegate, URLSessionDownloadDelegate {
    |                                                                                   `- error: cannot find type 'URLSessionDataDelegate' in scope
 18 |     public static let shared = NetworkClient()
 19 |
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:17:107: error: cannot find type 'URLSessionDownloadDelegate' in scope
 15 |
 16 | /// Networking layer interface
 17 | public class NetworkClient: NSObject, URLSessionDelegate, URLSessionTaskDelegate, URLSessionDataDelegate, URLSessionDownloadDelegate {
    |                                                                                                           `- error: cannot find type 'URLSessionDownloadDelegate' in scope
 18 |     public static let shared = NetworkClient()
 19 |
/host/spi-builder-workspace/Sources/Managers/Webhooks/WebhooksManager.swift:83:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it [#no-usage]
81 |     public func deleteWebhookById(webhookId: String, headers: DeleteWebhookByIdHeaders = DeleteWebhookByIdHeaders()) async throws {
82 |         let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
83 |         let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/webhooks/")\(webhookId)", method: "DELETE", headers: headersMap, responseFormat: nil, auth: self.auth, networkSession: self.networkSession))
   |             `- warning: immutable value 'response' was never used; consider replacing with '_' or removing it [#no-usage]
84 |     }
85 |
/host/spi-builder-workspace/Sources/Managers/Workflows/WorkflowsManager.swift:44:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it [#no-usage]
42 |     public func startWorkflow(workflowId: String, requestBody: StartWorkflowRequestBody, headers: StartWorkflowHeaders = StartWorkflowHeaders()) async throws {
43 |         let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
44 |         let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/workflows/")\(workflowId)\("/start")", method: "POST", headers: headersMap, data: try requestBody.serialize(), contentType: "application/json", responseFormat: nil, auth: self.auth, networkSession: self.networkSession))
   |             `- warning: immutable value 'response' was never used; consider replacing with '_' or removing it [#no-usage]
45 |     }
46 |
/host/spi-builder-workspace/Sources/Networking/FetchConversation.swift:17:21: error: cannot find type 'URLRequest' in scope
15 |     let options: FetchOptions
16 |     /// Represents an URL request.
17 |     let urlRequest: URLRequest
   |                     `- error: cannot find type 'URLRequest' in scope
18 |     /// Represents a response to an HTTP URL.
19 |     let urlResponse: HTTPURLResponse
/host/spi-builder-workspace/Sources/Networking/FetchConversation.swift:19:22: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
17 |     let urlRequest: URLRequest
18 |     /// Represents a response to an HTTP URL.
19 |     let urlResponse: HTTPURLResponse
   |                      `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
20 |     /// Represents response type, either data or downloaded file
21 |     let responseType: ResponseType
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/Networking/FetchConversation.swift:30:45: error: cannot find type 'URLRequest' in scope
28 |     ///   - urlResponse: Represents a response to an HTTP URL
29 |     ///   - responseType: Represents response type, either data or downloaded file
30 |     init(options: FetchOptions, urlRequest: URLRequest, urlResponse: HTTPURLResponse, responseType: ResponseType) {
   |                                             `- error: cannot find type 'URLRequest' in scope
31 |         self.options = options
32 |         self.urlRequest = urlRequest
/host/spi-builder-workspace/Sources/Networking/FetchConversation.swift:30:70: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
28 |     ///   - urlResponse: Represents a response to an HTTP URL
29 |     ///   - responseType: Represents response type, either data or downloaded file
30 |     init(options: FetchOptions, urlRequest: URLRequest, urlResponse: HTTPURLResponse, responseType: ResponseType) {
   |                                                                      `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
31 |         self.options = options
32 |         self.urlRequest = urlRequest
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/Networking/FetchConversation.swift:43:54: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
41 |         switch self.responseType {
42 |         case let .data(data):
43 |             return FetchResponse(status: urlResponse.statusCode, data: SerializedData(data: data))
   |                                                      `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
44 |         case let .url(url):
45 |             return FetchResponse(status: urlResponse.statusCode, data: SerializedData(data: Data()), downloadDestinationURL: url)
/host/spi-builder-workspace/Sources/Networking/FetchConversation.swift:45:54: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
43 |             return FetchResponse(status: urlResponse.statusCode, data: SerializedData(data: data))
44 |         case let .url(url):
45 |             return FetchResponse(status: urlResponse.statusCode, data: SerializedData(data: Data()), downloadDestinationURL: url)
   |                                                      `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
46 |         }
47 |     }
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:20:32: error: cannot find 'DispatchQueue' in scope
 18 |     public static let shared = NetworkClient()
 19 |
 20 |     private let utilityQueue = DispatchQueue.global(qos: .utility)
    |                                `- error: cannot find 'DispatchQueue' in scope
 21 |     private let continuationQueue = DispatchQueue(label: "BoxSdkGen.NetworkClient.continuationQueue.\(UUID().uuidString)")
 22 |     private var taskInfos: [Int: TaskInfo] = [:]
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:20:59: error: cannot infer contextual base in reference to member 'utility'
 18 |     public static let shared = NetworkClient()
 19 |
 20 |     private let utilityQueue = DispatchQueue.global(qos: .utility)
    |                                                           `- error: cannot infer contextual base in reference to member 'utility'
 21 |     private let continuationQueue = DispatchQueue(label: "BoxSdkGen.NetworkClient.continuationQueue.\(UUID().uuidString)")
 22 |     private var taskInfos: [Int: TaskInfo] = [:]
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:21:37: error: cannot find 'DispatchQueue' in scope
 19 |
 20 |     private let utilityQueue = DispatchQueue.global(qos: .utility)
 21 |     private let continuationQueue = DispatchQueue(label: "BoxSdkGen.NetworkClient.continuationQueue.\(UUID().uuidString)")
    |                                     `- error: cannot find 'DispatchQueue' in scope
 22 |     private var taskInfos: [Int: TaskInfo] = [:]
 23 |
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:86:48: error: cannot find type 'URLRequest' in scope
 84 |     /// - Returns: Tuple of (Data, URLResponse)
 85 |     /// - Throws: An error if the request fails for any reason.
 86 |     private func sendDataRequest(_ urlRequest: URLRequest, networkSession: NetworkSession) async throws -> (Data, URLResponse) {
    |                                                `- error: cannot find type 'URLRequest' in scope
 87 |         return try await withCheckedThrowingContinuation { continuation in
 88 |             continuationQueue.sync {
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:86:115: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 84 |     /// - Returns: Tuple of (Data, URLResponse)
 85 |     /// - Throws: An error if the request fails for any reason.
 86 |     private func sendDataRequest(_ urlRequest: URLRequest, networkSession: NetworkSession) async throws -> (Data, URLResponse) {
    |                                                                                                                   `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 87 |         return try await withCheckedThrowingContinuation { continuation in
 88 |             continuationQueue.sync {
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/Networking/NetworkClient.swift:105:52: error: cannot find type 'URLRequest' in scope
103 |     /// - Returns: Tuple of (URL, URLResponse)
104 |     /// - Throws: An error if the request fails for any reason.
105 |     private func sendDownloadRequest(_ urlRequest: URLRequest, downloadDestinationURL: URL, networkSession: NetworkSession) async throws -> (URL, URLResponse) {
    |                                                    `- error: cannot find type 'URLRequest' in scope
106 |         return try await withCheckedThrowingContinuation { continuation in
107 |             continuationQueue.sync {
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:105:147: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
103 |     /// - Returns: Tuple of (URL, URLResponse)
104 |     /// - Throws: An error if the request fails for any reason.
105 |     private func sendDownloadRequest(_ urlRequest: URLRequest, downloadDestinationURL: URL, networkSession: NetworkSession) async throws -> (URL, URLResponse) {
    |                                                                                                                                                   `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
106 |         return try await withCheckedThrowingContinuation { continuation in
107 |             continuationQueue.sync {
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/Networking/NetworkClient.swift:123:50: error: cannot find type 'URLRequest' in scope
121 |     /// - Returns: Tuple of (Data, URLResponse)
122 |     /// - Throws: An error if the request fails for any reason.
123 |     private func sendUploadRequest(_ urlRequest: URLRequest, options: FetchOptions, networkSession: NetworkSession) async throws -> (Data, URLResponse) {
    |                                                  `- error: cannot find type 'URLRequest' in scope
124 |         return try await withCheckedThrowingContinuation { continuation in
125 |             continuationQueue.sync {
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:123:140: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
121 |     /// - Returns: Tuple of (Data, URLResponse)
122 |     /// - Throws: An error if the request fails for any reason.
123 |     private func sendUploadRequest(_ urlRequest: URLRequest, options: FetchOptions, networkSession: NetworkSession) async throws -> (Data, URLResponse) {
    |                                                                                                                                            `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
124 |         return try await withCheckedThrowingContinuation { continuation in
125 |             continuationQueue.sync {
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/Networking/NetworkClient.swift:160:69: error: cannot find type 'URLRequest' in scope
158 |     /// - Returns: The URL of the multipart file created.
159 |     /// - Throws: An error if writing fails.
160 |     private func updateRequestWithMultipartData(_ urlRequest: inout URLRequest, multipartData: [MultipartItem]) throws -> URL {
    |                                                                     `- error: cannot find type 'URLRequest' in scope
161 |         let boundary = "Boundary-\(UUID().uuidString)"
162 |         urlRequest.setValue("multipart/form-data; boundary=\(boundary)", forHTTPHeaderField: HTTPHeaderKey.contentType)
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:206:23: error: cannot find type 'URLRequest' in scope
204 |         options: FetchOptions,
205 |         networkSession: NetworkSession
206 |     ) async throws -> URLRequest {
    |                       `- error: cannot find type 'URLRequest' in scope
207 |         var urlRequest = URLRequest(url: createEndpointUrl(url: options.url, params: options.params))
208 |         urlRequest.httpMethod = options.method.rawValue
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:232:63: error: cannot find type 'URLRequest' in scope
230 |     ///   - networkSession: The Networking Session object which provides the URLSession object along with a network configuration parameters used in network communication.
231 |     /// - Throws: An error if the operation fails for any reason.
232 |     private func updateRequestWithHeaders(_ urlRequest: inout URLRequest, options: FetchOptions, networkSession: NetworkSession) async throws {
    |                                                               `- error: cannot find type 'URLRequest' in scope
233 |         urlRequest.allHTTPHeaderFields = options.headers.compactMapValues { $0?.paramValue }
234 |
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:257:75: error: cannot find type 'URLRequest' in scope
255 |     ///   - networkSession: The Networking Session object which provides the URLSession object along with a network configuration parameters used in network communication.
256 |     /// - Throws: An error if the operation fails for any reason.
257 |     private func updateRequestWithAuthorizationHeader(_ urlRequest: inout URLRequest, options: FetchOptions, networkSession: NetworkSession) async throws {
    |                                                                           `- error: cannot find type 'URLRequest' in scope
258 |         if let auth = options.auth, let token = (try await auth.retrieveToken(networkSession: networkSession)).accessToken {
259 |             urlRequest.setValue("Bearer \(token)", forHTTPHeaderField: HTTPHeaderKey.authorization)
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:345:39: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
343 |
344 | extension NetworkClient {
345 |     public func urlSession(_ session: URLSession, task: URLSessionTask, didCompleteWithError error: Error?) {
    |                                       `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
346 |         continuationQueue.sync {
347 |             guard let taskInfo = taskInfos[task.taskIdentifier] else { return }
Foundation.URLSession:2:18: note: 'URLSession' 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 URLSession = AnyObject
  |                  `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:345:57: error: 'URLSessionTask' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
343 |
344 | extension NetworkClient {
345 |     public func urlSession(_ session: URLSession, task: URLSessionTask, didCompleteWithError error: Error?) {
    |                                                         `- error: 'URLSessionTask' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
346 |         continuationQueue.sync {
347 |             guard let taskInfo = taskInfos[task.taskIdentifier] else { return }
Foundation.URLSessionTask:2:18: note: 'URLSessionTask' 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 URLSessionTask = AnyObject
  |                  `- note: 'URLSessionTask' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:374:39: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
372 |     }
373 |
374 |     public func urlSession(_ session: URLSession, dataTask: URLSessionDataTask, didReceive data: Data) {
    |                                       `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
375 |         continuationQueue.sync {
376 |             guard let dataTaskInfo = taskInfos[dataTask.taskIdentifier] as? DataTaskInfo else { return }
Foundation.URLSession:2:18: note: 'URLSession' 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 URLSession = AnyObject
  |                  `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:374:61: error: 'URLSessionDataTask' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
372 |     }
373 |
374 |     public func urlSession(_ session: URLSession, dataTask: URLSessionDataTask, didReceive data: Data) {
    |                                                             `- error: 'URLSessionDataTask' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
375 |         continuationQueue.sync {
376 |             guard let dataTaskInfo = taskInfos[dataTask.taskIdentifier] as? DataTaskInfo else { return }
Foundation.URLSessionDataTask:2:18: note: 'URLSessionDataTask' 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 URLSessionDataTask = AnyObject
  |                  `- note: 'URLSessionDataTask' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:381:39: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
379 |     }
380 |
381 |     public func urlSession(_ session: URLSession, downloadTask: URLSessionDownloadTask, didFinishDownloadingTo location: URL) {
    |                                       `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
382 |         continuationQueue.sync {
383 |             guard let downloadTaskInfo = taskInfos[downloadTask.taskIdentifier] as? DownloadTaskInfo else { return }
Foundation.URLSession:2:18: note: 'URLSession' 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 URLSession = AnyObject
  |                  `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:381:65: error: 'URLSessionDownloadTask' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
379 |     }
380 |
381 |     public func urlSession(_ session: URLSession, downloadTask: URLSessionDownloadTask, didFinishDownloadingTo location: URL) {
    |                                                                 `- error: 'URLSessionDownloadTask' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
382 |         continuationQueue.sync {
383 |             guard let downloadTaskInfo = taskInfos[downloadTask.taskIdentifier] as? DownloadTaskInfo else { return }
Foundation.URLSessionDownloadTask:2:18: note: 'URLSessionDownloadTask' 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 URLSessionDownloadTask = AnyObject
  |                  `- note: 'URLSessionDownloadTask' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:66:153: error: cannot infer contextual base in reference to member 'url'
 64 |         if let downloadDestinationURL = options.downloadDestinationURL {
 65 |             let (downloadUrl, urlResponse) = try await sendDownloadRequest(urlRequest, downloadDestinationURL: downloadDestinationURL, networkSession: networkSession)
 66 |             let conversation = FetchConversation(options: options, urlRequest: urlRequest, urlResponse: urlResponse as! HTTPURLResponse, responseType: .url(downloadUrl))
    |                                                                                                                                                         `- error: cannot infer contextual base in reference to member 'url'
 67 |             return try await processResponse(using: conversation, networkSession: networkSession, attempt: attempt, isUpload: isUpload)
 68 |         } else if isUpload {
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:70:153: error: cannot infer contextual base in reference to member 'data'
 68 |         } else if isUpload {
 69 |             let (data, urlResponse) = try await sendUploadRequest(urlRequest, options: options, networkSession: networkSession)
 70 |             let conversation = FetchConversation(options: options, urlRequest: urlRequest, urlResponse: urlResponse as! HTTPURLResponse, responseType: .data(data))
    |                                                                                                                                                         `- error: cannot infer contextual base in reference to member 'data'
 71 |             return try await processResponse(using: conversation, networkSession: networkSession, attempt: attempt, isUpload: isUpload)
 72 |         } else {
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:74:153: error: cannot infer contextual base in reference to member 'data'
 72 |         } else {
 73 |             let (data, urlResponse) = try await sendDataRequest(urlRequest, networkSession: networkSession)
 74 |             let conversation = FetchConversation(options: options, urlRequest: urlRequest, urlResponse: urlResponse as! HTTPURLResponse, responseType: .data(data))
    |                                                                                                                                                         `- error: cannot infer contextual base in reference to member 'data'
 75 |             return try await processResponse(using: conversation, networkSession: networkSession, attempt: attempt, isUpload: isUpload)
 76 |         }
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:89:51: error: value of type 'URLSession' (aka 'AnyObject') has no member 'dataTask'
 87 |         return try await withCheckedThrowingContinuation { continuation in
 88 |             continuationQueue.sync {
 89 |                 let task = networkSession.session.dataTask(with: urlRequest)
    |                                                   `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'dataTask'
 90 |                 let taskInfo = DataTaskInfo(continuation: continuation)
 91 |                 taskInfos[task.taskIdentifier] = taskInfo
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:108:51: error: value of type 'URLSession' (aka 'AnyObject') has no member 'downloadTask'
106 |         return try await withCheckedThrowingContinuation { continuation in
107 |             continuationQueue.sync {
108 |                 let task = networkSession.session.downloadTask(with: urlRequest)
    |                                                   `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'downloadTask'
109 |                 let taskInfo = DownloadTaskInfo(continuation: continuation, destinationURL: downloadDestinationURL)
110 |                 taskInfos[task.taskIdentifier] = taskInfo
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:127:55: error: value of type 'URLSession' (aka 'AnyObject') has no member 'uploadTask'
125 |             continuationQueue.sync {
126 |                 if let serializedData = options.data {
127 |                     let task = networkSession.session.uploadTask(with: urlRequest, from: serializedData.data)
    |                                                       `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'uploadTask'
128 |                     let taskInfo = DataTaskInfo(continuation: continuation)
129 |                     taskInfos[task.taskIdentifier] = taskInfo
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:207:26: error: cannot find 'URLRequest' in scope
205 |         networkSession: NetworkSession
206 |     ) async throws -> URLRequest {
207 |         var urlRequest = URLRequest(url: createEndpointUrl(url: options.url, params: options.params))
    |                          `- error: cannot find 'URLRequest' in scope
208 |         urlRequest.httpMethod = options.method.rawValue
209 |
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:295:51: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
293 |         isUpload: Bool
294 |     ) async throws -> FetchResponse {
295 |         let statusCode = conversation.urlResponse.statusCode
    |                                                   `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
296 |         let isStatusCodeAcceptedWithRetryAfterHeader = statusCode == 202 && conversation.urlResponse.value(forHTTPHeaderField: HTTPHeaderKey.retryAfter) != nil
297 |
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:296:102: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'value'
294 |     ) async throws -> FetchResponse {
295 |         let statusCode = conversation.urlResponse.statusCode
296 |         let isStatusCodeAcceptedWithRetryAfterHeader = statusCode == 202 && conversation.urlResponse.value(forHTTPHeaderField: HTTPHeaderKey.retryAfter) != nil
    |                                                                                                      `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'value'
297 |
298 |         // OK
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:316:64: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'value'
314 |         // Retryable
315 |         if statusCode == 429 || statusCode >= 500 || isStatusCodeAcceptedWithRetryAfterHeader {
316 |             let retryTimeout = Double(conversation.urlResponse.value(forHTTPHeaderField: HTTPHeaderKey.retryAfter) ?? "")
    |                                                                `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'value'
317 |             ?? networkSession.networkSettings.retryStrategy.getRetryTimeout(attempt: attempt)
318 |             try await wait(seconds: retryTimeout)
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:334:28: error: cannot call value of non-function type 'ContinuousClock.Instant'
332 |         return try await withCheckedThrowingContinuation { continuation in
333 |             utilityQueue.asyncAfter(
334 |                 deadline: .now() + .milliseconds(Int(delay * 1000))
    |                            `- error: cannot call value of non-function type 'ContinuousClock.Instant'
335 |             ) {
336 |                 continuation.resume()
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:347:49: error: value of type 'URLSessionTask' (aka 'AnyObject') has no member 'taskIdentifier'
345 |     public func urlSession(_ session: URLSession, task: URLSessionTask, didCompleteWithError error: Error?) {
346 |         continuationQueue.sync {
347 |             guard let taskInfo = taskInfos[task.taskIdentifier] else { return }
    |                                                 `- error: value of type 'URLSessionTask' (aka 'AnyObject') has no member 'taskIdentifier'
348 |             switch taskInfo {
349 |             case let dataTaskInfo as DataTaskInfo:
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:376:57: error: value of type 'URLSessionDataTask' (aka 'AnyObject') has no member 'taskIdentifier'
374 |     public func urlSession(_ session: URLSession, dataTask: URLSessionDataTask, didReceive data: Data) {
375 |         continuationQueue.sync {
376 |             guard let dataTaskInfo = taskInfos[dataTask.taskIdentifier] as? DataTaskInfo else { return }
    |                                                         `- error: value of type 'URLSessionDataTask' (aka 'AnyObject') has no member 'taskIdentifier'
377 |             dataTaskInfo.accumulatedData.append(data)
378 |         }
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:383:65: error: value of type 'URLSessionDownloadTask' (aka 'AnyObject') has no member 'taskIdentifier'
381 |     public func urlSession(_ session: URLSession, downloadTask: URLSessionDownloadTask, didFinishDownloadingTo location: URL) {
382 |         continuationQueue.sync {
383 |             guard let downloadTaskInfo = taskInfos[downloadTask.taskIdentifier] as? DownloadTaskInfo else { return }
    |                                                                 `- error: value of type 'URLSessionDownloadTask' (aka 'AnyObject') has no member 'taskIdentifier'
384 |             do {
385 |                 try FileManager.default.moveItem(at: location, to: downloadTaskInfo.destinationURL)
/host/spi-builder-workspace/Sources/Networking/NetworkSession.swift:16:25: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
14 |
15 |     /// Provides an API  for downloading data from and uploading data to endpoints indicated by URL.
16 |     public let session: URLSession
   |                         `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
17 |
18 |     /// url session configuration.
Foundation.URLSession:2:18: note: 'URLSession' 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 URLSession = AnyObject
  |                  `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Networking/NetworkSession.swift:19:31: error: 'URLSessionConfiguration' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
17 |
18 |     /// url session configuration.
19 |     public let configuration: URLSessionConfiguration
   |                               `- error: 'URLSessionConfiguration' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
20 |
21 |     /// Additional network settings.
Foundation.URLSessionConfiguration:2:18: note: 'URLSessionConfiguration' 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 URLSessionConfiguration = AnyObject
  |                  `- note: 'URLSessionConfiguration' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Networking/NetworkSession.swift:32:24: error: 'URLSessionConfiguration' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
30 |     public init(
31 |         additionalHeaders: [String: String] = [:],
32 |         configuration: URLSessionConfiguration = URLSessionConfiguration.default,
   |                        `- error: 'URLSessionConfiguration' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
33 |         networkSettings: NetworkSettings = NetworkSettings(),
34 |         baseUrls: BaseUrls = BaseUrls()
Foundation.URLSessionConfiguration:2:18: note: 'URLSessionConfiguration' 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 URLSessionConfiguration = AnyObject
  |                  `- note: 'URLSessionConfiguration' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Networking/NetworkSession.swift:38:24: error: 'URLSession' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
36 |         self.additionalHeaders = additionalHeaders
37 |         self.configuration = configuration
38 |         self.session = URLSession(configuration: configuration, delegate: NetworkClient.shared, delegateQueue: nil)
   |                        `- error: 'URLSession' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
39 |         self.networkSettings = networkSettings
40 |         self.baseUrls = baseUrls
/host/spi-builder-workspace/Sources/Networking/NetworkSession.swift:38:112: error: 'nil' requires a contextual type
36 |         self.additionalHeaders = additionalHeaders
37 |         self.configuration = configuration
38 |         self.session = URLSession(configuration: configuration, delegate: NetworkClient.shared, delegateQueue: nil)
   |                                                                                                                `- error: 'nil' requires a contextual type
39 |         self.networkSettings = networkSettings
40 |         self.baseUrls = baseUrls
[829/1004] Compiling BoxSdkGen NetworkSession.swift
/host/spi-builder-workspace/Sources/Networking/NetworkSession.swift:32:74: error: type 'URLSessionConfiguration' (aka 'AnyObject') has no member 'default'
30 |     public init(
31 |         additionalHeaders: [String: String] = [:],
32 |         configuration: URLSessionConfiguration = URLSessionConfiguration.default,
   |                                                                          `- error: type 'URLSessionConfiguration' (aka 'AnyObject') has no member 'default'
33 |         networkSettings: NetworkSettings = NetworkSettings(),
34 |         baseUrls: BaseUrls = BaseUrls()
/host/spi-builder-workspace/Sources/Networking/NetworkSession.swift:32:74: error: default argument value of type '_' cannot be converted to type 'AnyObject'
30 |     public init(
31 |         additionalHeaders: [String: String] = [:],
32 |         configuration: URLSessionConfiguration = URLSessionConfiguration.default,
   |                                                                          `- error: default argument value of type '_' cannot be converted to type 'AnyObject'
33 |         networkSettings: NetworkSettings = NetworkSettings(),
34 |         baseUrls: BaseUrls = BaseUrls()
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:17:39: error: cannot find type 'URLSessionDelegate' in scope
 15 |
 16 | /// Networking layer interface
 17 | public class NetworkClient: NSObject, URLSessionDelegate, URLSessionTaskDelegate, URLSessionDataDelegate, URLSessionDownloadDelegate {
    |                                       `- error: cannot find type 'URLSessionDelegate' in scope
 18 |     public static let shared = NetworkClient()
 19 |
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:17:59: error: cannot find type 'URLSessionTaskDelegate' in scope
 15 |
 16 | /// Networking layer interface
 17 | public class NetworkClient: NSObject, URLSessionDelegate, URLSessionTaskDelegate, URLSessionDataDelegate, URLSessionDownloadDelegate {
    |                                                           `- error: cannot find type 'URLSessionTaskDelegate' in scope
 18 |     public static let shared = NetworkClient()
 19 |
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:17:83: error: cannot find type 'URLSessionDataDelegate' in scope
 15 |
 16 | /// Networking layer interface
 17 | public class NetworkClient: NSObject, URLSessionDelegate, URLSessionTaskDelegate, URLSessionDataDelegate, URLSessionDownloadDelegate {
    |                                                                                   `- error: cannot find type 'URLSessionDataDelegate' in scope
 18 |     public static let shared = NetworkClient()
 19 |
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:17:107: error: cannot find type 'URLSessionDownloadDelegate' in scope
 15 |
 16 | /// Networking layer interface
 17 | public class NetworkClient: NSObject, URLSessionDelegate, URLSessionTaskDelegate, URLSessionDataDelegate, URLSessionDownloadDelegate {
    |                                                                                                           `- error: cannot find type 'URLSessionDownloadDelegate' in scope
 18 |     public static let shared = NetworkClient()
 19 |
/host/spi-builder-workspace/Sources/Managers/Webhooks/WebhooksManager.swift:83:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it [#no-usage]
81 |     public func deleteWebhookById(webhookId: String, headers: DeleteWebhookByIdHeaders = DeleteWebhookByIdHeaders()) async throws {
82 |         let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
83 |         let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/webhooks/")\(webhookId)", method: "DELETE", headers: headersMap, responseFormat: nil, auth: self.auth, networkSession: self.networkSession))
   |             `- warning: immutable value 'response' was never used; consider replacing with '_' or removing it [#no-usage]
84 |     }
85 |
/host/spi-builder-workspace/Sources/Managers/Workflows/WorkflowsManager.swift:44:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it [#no-usage]
42 |     public func startWorkflow(workflowId: String, requestBody: StartWorkflowRequestBody, headers: StartWorkflowHeaders = StartWorkflowHeaders()) async throws {
43 |         let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
44 |         let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/workflows/")\(workflowId)\("/start")", method: "POST", headers: headersMap, data: try requestBody.serialize(), contentType: "application/json", responseFormat: nil, auth: self.auth, networkSession: self.networkSession))
   |             `- warning: immutable value 'response' was never used; consider replacing with '_' or removing it [#no-usage]
45 |     }
46 |
/host/spi-builder-workspace/Sources/Networking/FetchConversation.swift:17:21: error: cannot find type 'URLRequest' in scope
15 |     let options: FetchOptions
16 |     /// Represents an URL request.
17 |     let urlRequest: URLRequest
   |                     `- error: cannot find type 'URLRequest' in scope
18 |     /// Represents a response to an HTTP URL.
19 |     let urlResponse: HTTPURLResponse
/host/spi-builder-workspace/Sources/Networking/FetchConversation.swift:19:22: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
17 |     let urlRequest: URLRequest
18 |     /// Represents a response to an HTTP URL.
19 |     let urlResponse: HTTPURLResponse
   |                      `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
20 |     /// Represents response type, either data or downloaded file
21 |     let responseType: ResponseType
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/Networking/FetchConversation.swift:30:45: error: cannot find type 'URLRequest' in scope
28 |     ///   - urlResponse: Represents a response to an HTTP URL
29 |     ///   - responseType: Represents response type, either data or downloaded file
30 |     init(options: FetchOptions, urlRequest: URLRequest, urlResponse: HTTPURLResponse, responseType: ResponseType) {
   |                                             `- error: cannot find type 'URLRequest' in scope
31 |         self.options = options
32 |         self.urlRequest = urlRequest
/host/spi-builder-workspace/Sources/Networking/FetchConversation.swift:30:70: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
28 |     ///   - urlResponse: Represents a response to an HTTP URL
29 |     ///   - responseType: Represents response type, either data or downloaded file
30 |     init(options: FetchOptions, urlRequest: URLRequest, urlResponse: HTTPURLResponse, responseType: ResponseType) {
   |                                                                      `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
31 |         self.options = options
32 |         self.urlRequest = urlRequest
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/Networking/FetchConversation.swift:43:54: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
41 |         switch self.responseType {
42 |         case let .data(data):
43 |             return FetchResponse(status: urlResponse.statusCode, data: SerializedData(data: data))
   |                                                      `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
44 |         case let .url(url):
45 |             return FetchResponse(status: urlResponse.statusCode, data: SerializedData(data: Data()), downloadDestinationURL: url)
/host/spi-builder-workspace/Sources/Networking/FetchConversation.swift:45:54: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
43 |             return FetchResponse(status: urlResponse.statusCode, data: SerializedData(data: data))
44 |         case let .url(url):
45 |             return FetchResponse(status: urlResponse.statusCode, data: SerializedData(data: Data()), downloadDestinationURL: url)
   |                                                      `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
46 |         }
47 |     }
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:20:32: error: cannot find 'DispatchQueue' in scope
 18 |     public static let shared = NetworkClient()
 19 |
 20 |     private let utilityQueue = DispatchQueue.global(qos: .utility)
    |                                `- error: cannot find 'DispatchQueue' in scope
 21 |     private let continuationQueue = DispatchQueue(label: "BoxSdkGen.NetworkClient.continuationQueue.\(UUID().uuidString)")
 22 |     private var taskInfos: [Int: TaskInfo] = [:]
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:20:59: error: cannot infer contextual base in reference to member 'utility'
 18 |     public static let shared = NetworkClient()
 19 |
 20 |     private let utilityQueue = DispatchQueue.global(qos: .utility)
    |                                                           `- error: cannot infer contextual base in reference to member 'utility'
 21 |     private let continuationQueue = DispatchQueue(label: "BoxSdkGen.NetworkClient.continuationQueue.\(UUID().uuidString)")
 22 |     private var taskInfos: [Int: TaskInfo] = [:]
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:21:37: error: cannot find 'DispatchQueue' in scope
 19 |
 20 |     private let utilityQueue = DispatchQueue.global(qos: .utility)
 21 |     private let continuationQueue = DispatchQueue(label: "BoxSdkGen.NetworkClient.continuationQueue.\(UUID().uuidString)")
    |                                     `- error: cannot find 'DispatchQueue' in scope
 22 |     private var taskInfos: [Int: TaskInfo] = [:]
 23 |
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:86:48: error: cannot find type 'URLRequest' in scope
 84 |     /// - Returns: Tuple of (Data, URLResponse)
 85 |     /// - Throws: An error if the request fails for any reason.
 86 |     private func sendDataRequest(_ urlRequest: URLRequest, networkSession: NetworkSession) async throws -> (Data, URLResponse) {
    |                                                `- error: cannot find type 'URLRequest' in scope
 87 |         return try await withCheckedThrowingContinuation { continuation in
 88 |             continuationQueue.sync {
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:86:115: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 84 |     /// - Returns: Tuple of (Data, URLResponse)
 85 |     /// - Throws: An error if the request fails for any reason.
 86 |     private func sendDataRequest(_ urlRequest: URLRequest, networkSession: NetworkSession) async throws -> (Data, URLResponse) {
    |                                                                                                                   `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 87 |         return try await withCheckedThrowingContinuation { continuation in
 88 |             continuationQueue.sync {
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/Networking/NetworkClient.swift:105:52: error: cannot find type 'URLRequest' in scope
103 |     /// - Returns: Tuple of (URL, URLResponse)
104 |     /// - Throws: An error if the request fails for any reason.
105 |     private func sendDownloadRequest(_ urlRequest: URLRequest, downloadDestinationURL: URL, networkSession: NetworkSession) async throws -> (URL, URLResponse) {
    |                                                    `- error: cannot find type 'URLRequest' in scope
106 |         return try await withCheckedThrowingContinuation { continuation in
107 |             continuationQueue.sync {
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:105:147: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
103 |     /// - Returns: Tuple of (URL, URLResponse)
104 |     /// - Throws: An error if the request fails for any reason.
105 |     private func sendDownloadRequest(_ urlRequest: URLRequest, downloadDestinationURL: URL, networkSession: NetworkSession) async throws -> (URL, URLResponse) {
    |                                                                                                                                                   `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
106 |         return try await withCheckedThrowingContinuation { continuation in
107 |             continuationQueue.sync {
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/Networking/NetworkClient.swift:123:50: error: cannot find type 'URLRequest' in scope
121 |     /// - Returns: Tuple of (Data, URLResponse)
122 |     /// - Throws: An error if the request fails for any reason.
123 |     private func sendUploadRequest(_ urlRequest: URLRequest, options: FetchOptions, networkSession: NetworkSession) async throws -> (Data, URLResponse) {
    |                                                  `- error: cannot find type 'URLRequest' in scope
124 |         return try await withCheckedThrowingContinuation { continuation in
125 |             continuationQueue.sync {
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:123:140: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
121 |     /// - Returns: Tuple of (Data, URLResponse)
122 |     /// - Throws: An error if the request fails for any reason.
123 |     private func sendUploadRequest(_ urlRequest: URLRequest, options: FetchOptions, networkSession: NetworkSession) async throws -> (Data, URLResponse) {
    |                                                                                                                                            `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
124 |         return try await withCheckedThrowingContinuation { continuation in
125 |             continuationQueue.sync {
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/Networking/NetworkClient.swift:160:69: error: cannot find type 'URLRequest' in scope
158 |     /// - Returns: The URL of the multipart file created.
159 |     /// - Throws: An error if writing fails.
160 |     private func updateRequestWithMultipartData(_ urlRequest: inout URLRequest, multipartData: [MultipartItem]) throws -> URL {
    |                                                                     `- error: cannot find type 'URLRequest' in scope
161 |         let boundary = "Boundary-\(UUID().uuidString)"
162 |         urlRequest.setValue("multipart/form-data; boundary=\(boundary)", forHTTPHeaderField: HTTPHeaderKey.contentType)
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:206:23: error: cannot find type 'URLRequest' in scope
204 |         options: FetchOptions,
205 |         networkSession: NetworkSession
206 |     ) async throws -> URLRequest {
    |                       `- error: cannot find type 'URLRequest' in scope
207 |         var urlRequest = URLRequest(url: createEndpointUrl(url: options.url, params: options.params))
208 |         urlRequest.httpMethod = options.method.rawValue
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:232:63: error: cannot find type 'URLRequest' in scope
230 |     ///   - networkSession: The Networking Session object which provides the URLSession object along with a network configuration parameters used in network communication.
231 |     /// - Throws: An error if the operation fails for any reason.
232 |     private func updateRequestWithHeaders(_ urlRequest: inout URLRequest, options: FetchOptions, networkSession: NetworkSession) async throws {
    |                                                               `- error: cannot find type 'URLRequest' in scope
233 |         urlRequest.allHTTPHeaderFields = options.headers.compactMapValues { $0?.paramValue }
234 |
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:257:75: error: cannot find type 'URLRequest' in scope
255 |     ///   - networkSession: The Networking Session object which provides the URLSession object along with a network configuration parameters used in network communication.
256 |     /// - Throws: An error if the operation fails for any reason.
257 |     private func updateRequestWithAuthorizationHeader(_ urlRequest: inout URLRequest, options: FetchOptions, networkSession: NetworkSession) async throws {
    |                                                                           `- error: cannot find type 'URLRequest' in scope
258 |         if let auth = options.auth, let token = (try await auth.retrieveToken(networkSession: networkSession)).accessToken {
259 |             urlRequest.setValue("Bearer \(token)", forHTTPHeaderField: HTTPHeaderKey.authorization)
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:345:39: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
343 |
344 | extension NetworkClient {
345 |     public func urlSession(_ session: URLSession, task: URLSessionTask, didCompleteWithError error: Error?) {
    |                                       `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
346 |         continuationQueue.sync {
347 |             guard let taskInfo = taskInfos[task.taskIdentifier] else { return }
Foundation.URLSession:2:18: note: 'URLSession' 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 URLSession = AnyObject
  |                  `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:345:57: error: 'URLSessionTask' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
343 |
344 | extension NetworkClient {
345 |     public func urlSession(_ session: URLSession, task: URLSessionTask, didCompleteWithError error: Error?) {
    |                                                         `- error: 'URLSessionTask' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
346 |         continuationQueue.sync {
347 |             guard let taskInfo = taskInfos[task.taskIdentifier] else { return }
Foundation.URLSessionTask:2:18: note: 'URLSessionTask' 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 URLSessionTask = AnyObject
  |                  `- note: 'URLSessionTask' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:374:39: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
372 |     }
373 |
374 |     public func urlSession(_ session: URLSession, dataTask: URLSessionDataTask, didReceive data: Data) {
    |                                       `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
375 |         continuationQueue.sync {
376 |             guard let dataTaskInfo = taskInfos[dataTask.taskIdentifier] as? DataTaskInfo else { return }
Foundation.URLSession:2:18: note: 'URLSession' 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 URLSession = AnyObject
  |                  `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:374:61: error: 'URLSessionDataTask' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
372 |     }
373 |
374 |     public func urlSession(_ session: URLSession, dataTask: URLSessionDataTask, didReceive data: Data) {
    |                                                             `- error: 'URLSessionDataTask' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
375 |         continuationQueue.sync {
376 |             guard let dataTaskInfo = taskInfos[dataTask.taskIdentifier] as? DataTaskInfo else { return }
Foundation.URLSessionDataTask:2:18: note: 'URLSessionDataTask' 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 URLSessionDataTask = AnyObject
  |                  `- note: 'URLSessionDataTask' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:381:39: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
379 |     }
380 |
381 |     public func urlSession(_ session: URLSession, downloadTask: URLSessionDownloadTask, didFinishDownloadingTo location: URL) {
    |                                       `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
382 |         continuationQueue.sync {
383 |             guard let downloadTaskInfo = taskInfos[downloadTask.taskIdentifier] as? DownloadTaskInfo else { return }
Foundation.URLSession:2:18: note: 'URLSession' 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 URLSession = AnyObject
  |                  `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:381:65: error: 'URLSessionDownloadTask' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
379 |     }
380 |
381 |     public func urlSession(_ session: URLSession, downloadTask: URLSessionDownloadTask, didFinishDownloadingTo location: URL) {
    |                                                                 `- error: 'URLSessionDownloadTask' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
382 |         continuationQueue.sync {
383 |             guard let downloadTaskInfo = taskInfos[downloadTask.taskIdentifier] as? DownloadTaskInfo else { return }
Foundation.URLSessionDownloadTask:2:18: note: 'URLSessionDownloadTask' 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 URLSessionDownloadTask = AnyObject
  |                  `- note: 'URLSessionDownloadTask' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:66:153: error: cannot infer contextual base in reference to member 'url'
 64 |         if let downloadDestinationURL = options.downloadDestinationURL {
 65 |             let (downloadUrl, urlResponse) = try await sendDownloadRequest(urlRequest, downloadDestinationURL: downloadDestinationURL, networkSession: networkSession)
 66 |             let conversation = FetchConversation(options: options, urlRequest: urlRequest, urlResponse: urlResponse as! HTTPURLResponse, responseType: .url(downloadUrl))
    |                                                                                                                                                         `- error: cannot infer contextual base in reference to member 'url'
 67 |             return try await processResponse(using: conversation, networkSession: networkSession, attempt: attempt, isUpload: isUpload)
 68 |         } else if isUpload {
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:70:153: error: cannot infer contextual base in reference to member 'data'
 68 |         } else if isUpload {
 69 |             let (data, urlResponse) = try await sendUploadRequest(urlRequest, options: options, networkSession: networkSession)
 70 |             let conversation = FetchConversation(options: options, urlRequest: urlRequest, urlResponse: urlResponse as! HTTPURLResponse, responseType: .data(data))
    |                                                                                                                                                         `- error: cannot infer contextual base in reference to member 'data'
 71 |             return try await processResponse(using: conversation, networkSession: networkSession, attempt: attempt, isUpload: isUpload)
 72 |         } else {
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:74:153: error: cannot infer contextual base in reference to member 'data'
 72 |         } else {
 73 |             let (data, urlResponse) = try await sendDataRequest(urlRequest, networkSession: networkSession)
 74 |             let conversation = FetchConversation(options: options, urlRequest: urlRequest, urlResponse: urlResponse as! HTTPURLResponse, responseType: .data(data))
    |                                                                                                                                                         `- error: cannot infer contextual base in reference to member 'data'
 75 |             return try await processResponse(using: conversation, networkSession: networkSession, attempt: attempt, isUpload: isUpload)
 76 |         }
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:89:51: error: value of type 'URLSession' (aka 'AnyObject') has no member 'dataTask'
 87 |         return try await withCheckedThrowingContinuation { continuation in
 88 |             continuationQueue.sync {
 89 |                 let task = networkSession.session.dataTask(with: urlRequest)
    |                                                   `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'dataTask'
 90 |                 let taskInfo = DataTaskInfo(continuation: continuation)
 91 |                 taskInfos[task.taskIdentifier] = taskInfo
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:108:51: error: value of type 'URLSession' (aka 'AnyObject') has no member 'downloadTask'
106 |         return try await withCheckedThrowingContinuation { continuation in
107 |             continuationQueue.sync {
108 |                 let task = networkSession.session.downloadTask(with: urlRequest)
    |                                                   `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'downloadTask'
109 |                 let taskInfo = DownloadTaskInfo(continuation: continuation, destinationURL: downloadDestinationURL)
110 |                 taskInfos[task.taskIdentifier] = taskInfo
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:127:55: error: value of type 'URLSession' (aka 'AnyObject') has no member 'uploadTask'
125 |             continuationQueue.sync {
126 |                 if let serializedData = options.data {
127 |                     let task = networkSession.session.uploadTask(with: urlRequest, from: serializedData.data)
    |                                                       `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'uploadTask'
128 |                     let taskInfo = DataTaskInfo(continuation: continuation)
129 |                     taskInfos[task.taskIdentifier] = taskInfo
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:207:26: error: cannot find 'URLRequest' in scope
205 |         networkSession: NetworkSession
206 |     ) async throws -> URLRequest {
207 |         var urlRequest = URLRequest(url: createEndpointUrl(url: options.url, params: options.params))
    |                          `- error: cannot find 'URLRequest' in scope
208 |         urlRequest.httpMethod = options.method.rawValue
209 |
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:295:51: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
293 |         isUpload: Bool
294 |     ) async throws -> FetchResponse {
295 |         let statusCode = conversation.urlResponse.statusCode
    |                                                   `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
296 |         let isStatusCodeAcceptedWithRetryAfterHeader = statusCode == 202 && conversation.urlResponse.value(forHTTPHeaderField: HTTPHeaderKey.retryAfter) != nil
297 |
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:296:102: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'value'
294 |     ) async throws -> FetchResponse {
295 |         let statusCode = conversation.urlResponse.statusCode
296 |         let isStatusCodeAcceptedWithRetryAfterHeader = statusCode == 202 && conversation.urlResponse.value(forHTTPHeaderField: HTTPHeaderKey.retryAfter) != nil
    |                                                                                                      `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'value'
297 |
298 |         // OK
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:316:64: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'value'
314 |         // Retryable
315 |         if statusCode == 429 || statusCode >= 500 || isStatusCodeAcceptedWithRetryAfterHeader {
316 |             let retryTimeout = Double(conversation.urlResponse.value(forHTTPHeaderField: HTTPHeaderKey.retryAfter) ?? "")
    |                                                                `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'value'
317 |             ?? networkSession.networkSettings.retryStrategy.getRetryTimeout(attempt: attempt)
318 |             try await wait(seconds: retryTimeout)
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:334:28: error: cannot call value of non-function type 'ContinuousClock.Instant'
332 |         return try await withCheckedThrowingContinuation { continuation in
333 |             utilityQueue.asyncAfter(
334 |                 deadline: .now() + .milliseconds(Int(delay * 1000))
    |                            `- error: cannot call value of non-function type 'ContinuousClock.Instant'
335 |             ) {
336 |                 continuation.resume()
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:347:49: error: value of type 'URLSessionTask' (aka 'AnyObject') has no member 'taskIdentifier'
345 |     public func urlSession(_ session: URLSession, task: URLSessionTask, didCompleteWithError error: Error?) {
346 |         continuationQueue.sync {
347 |             guard let taskInfo = taskInfos[task.taskIdentifier] else { return }
    |                                                 `- error: value of type 'URLSessionTask' (aka 'AnyObject') has no member 'taskIdentifier'
348 |             switch taskInfo {
349 |             case let dataTaskInfo as DataTaskInfo:
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:376:57: error: value of type 'URLSessionDataTask' (aka 'AnyObject') has no member 'taskIdentifier'
374 |     public func urlSession(_ session: URLSession, dataTask: URLSessionDataTask, didReceive data: Data) {
375 |         continuationQueue.sync {
376 |             guard let dataTaskInfo = taskInfos[dataTask.taskIdentifier] as? DataTaskInfo else { return }
    |                                                         `- error: value of type 'URLSessionDataTask' (aka 'AnyObject') has no member 'taskIdentifier'
377 |             dataTaskInfo.accumulatedData.append(data)
378 |         }
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:383:65: error: value of type 'URLSessionDownloadTask' (aka 'AnyObject') has no member 'taskIdentifier'
381 |     public func urlSession(_ session: URLSession, downloadTask: URLSessionDownloadTask, didFinishDownloadingTo location: URL) {
382 |         continuationQueue.sync {
383 |             guard let downloadTaskInfo = taskInfos[downloadTask.taskIdentifier] as? DownloadTaskInfo else { return }
    |                                                                 `- error: value of type 'URLSessionDownloadTask' (aka 'AnyObject') has no member 'taskIdentifier'
384 |             do {
385 |                 try FileManager.default.moveItem(at: location, to: downloadTaskInfo.destinationURL)
/host/spi-builder-workspace/Sources/Networking/NetworkSession.swift:16:25: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
14 |
15 |     /// Provides an API  for downloading data from and uploading data to endpoints indicated by URL.
16 |     public let session: URLSession
   |                         `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
17 |
18 |     /// url session configuration.
Foundation.URLSession:2:18: note: 'URLSession' 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 URLSession = AnyObject
  |                  `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Networking/NetworkSession.swift:19:31: error: 'URLSessionConfiguration' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
17 |
18 |     /// url session configuration.
19 |     public let configuration: URLSessionConfiguration
   |                               `- error: 'URLSessionConfiguration' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
20 |
21 |     /// Additional network settings.
Foundation.URLSessionConfiguration:2:18: note: 'URLSessionConfiguration' 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 URLSessionConfiguration = AnyObject
  |                  `- note: 'URLSessionConfiguration' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Networking/NetworkSession.swift:32:24: error: 'URLSessionConfiguration' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
30 |     public init(
31 |         additionalHeaders: [String: String] = [:],
32 |         configuration: URLSessionConfiguration = URLSessionConfiguration.default,
   |                        `- error: 'URLSessionConfiguration' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
33 |         networkSettings: NetworkSettings = NetworkSettings(),
34 |         baseUrls: BaseUrls = BaseUrls()
Foundation.URLSessionConfiguration:2:18: note: 'URLSessionConfiguration' 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 URLSessionConfiguration = AnyObject
  |                  `- note: 'URLSessionConfiguration' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Networking/NetworkSession.swift:38:24: error: 'URLSession' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
36 |         self.additionalHeaders = additionalHeaders
37 |         self.configuration = configuration
38 |         self.session = URLSession(configuration: configuration, delegate: NetworkClient.shared, delegateQueue: nil)
   |                        `- error: 'URLSession' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
39 |         self.networkSettings = networkSettings
40 |         self.baseUrls = baseUrls
/host/spi-builder-workspace/Sources/Networking/NetworkSession.swift:38:112: error: 'nil' requires a contextual type
36 |         self.additionalHeaders = additionalHeaders
37 |         self.configuration = configuration
38 |         self.session = URLSession(configuration: configuration, delegate: NetworkClient.shared, delegateQueue: nil)
   |                                                                                                                `- error: 'nil' requires a contextual type
39 |         self.networkSettings = networkSettings
40 |         self.baseUrls = baseUrls
[830/1028] Compiling BoxSdkGen CollaborationAllowlistEntryDirectionField.swift
[831/1028] Compiling BoxSdkGen CollaborationAllowlistEntryEnterpriseField.swift
[832/1028] Compiling BoxSdkGen CollaborationAllowlistEntryEnterpriseTypeField.swift
[833/1028] Compiling BoxSdkGen CollaborationAllowlistEntryTypeField.swift
[834/1028] Compiling BoxSdkGen CollaborationAllowlistExemptTarget.swift
[835/1028] Compiling BoxSdkGen CollaborationAllowlistExemptTargetEnterpriseField.swift
[836/1028] Compiling BoxSdkGen CollaborationAllowlistExemptTargetEnterpriseTypeField.swift
[837/1028] Compiling BoxSdkGen CollaborationAllowlistExemptTargetTypeField.swift
[838/1028] Compiling BoxSdkGen CollaborationAllowlistExemptTargets.swift
[839/1028] Compiling BoxSdkGen Collaborations.swift
[840/1028] Compiling BoxSdkGen CollaborationsOrderDirectionField.swift
[841/1028] Compiling BoxSdkGen CollaborationsOrderField.swift
[842/1028] Compiling BoxSdkGen CollaboratorVariable.swift
[843/1028] Compiling BoxSdkGen CollaboratorVariableTypeField.swift
[844/1028] Compiling BoxSdkGen CollaboratorVariableVariableTypeField.swift
[845/1028] Compiling BoxSdkGen CollaboratorVariableVariableValueField.swift
[846/1028] Compiling BoxSdkGen CollaboratorVariableVariableValueTypeField.swift
[847/1028] Compiling BoxSdkGen Collection.swift
[848/1028] Compiling BoxSdkGen CollectionCollectionTypeField.swift
[849/1028] Compiling BoxSdkGen CollectionNameField.swift
[850/1028] Compiling BoxSdkGen CollectionTypeField.swift
[851/1028] Compiling BoxSdkGen Collections.swift
[852/1028] Compiling BoxSdkGen CollectionsOrderDirectionField.swift
[853/1028] Compiling BoxSdkGen CollectionsOrderField.swift
[854/1028] Compiling BoxSdkGen Comment.swift
[855/1052] Compiling BoxSdkGen CommentItemField.swift
[856/1052] Compiling BoxSdkGen CommentBase.swift
[857/1052] Compiling BoxSdkGen CommentBaseTypeField.swift
[858/1052] Compiling BoxSdkGen CommentFull.swift
[859/1052] Compiling BoxSdkGen Comments.swift
[860/1052] Compiling BoxSdkGen CommentsOrderDirectionField.swift
[861/1052] Compiling BoxSdkGen CommentsOrderField.swift
[862/1052] Compiling BoxSdkGen CompletionRuleVariable.swift
[863/1052] Compiling BoxSdkGen CompletionRuleVariableTypeField.swift
[864/1052] Compiling BoxSdkGen CompletionRuleVariableVariableTypeField.swift
[865/1052] Compiling BoxSdkGen CompletionRuleVariableVariableValueField.swift
[866/1052] Compiling BoxSdkGen ConflictError.swift
[867/1052] Compiling BoxSdkGen ConflictErrorContextInfoField.swift
[868/1052] Compiling BoxSdkGen DevicePinner.swift
[869/1052] Compiling BoxSdkGen DevicePinnerTypeField.swift
[870/1052] Compiling BoxSdkGen DevicePinners.swift
[871/1052] Compiling BoxSdkGen DevicePinnersOrderByField.swift
[872/1052] Compiling BoxSdkGen DevicePinnersOrderDirectionField.swift
[873/1052] Compiling BoxSdkGen DevicePinnersOrderField.swift
[874/1052] Compiling BoxSdkGen EmailAlias.swift
[875/1052] Compiling BoxSdkGen EmailAliasTypeField.swift
[876/1052] Compiling BoxSdkGen EmailAliases.swift
[877/1052] Compiling BoxSdkGen EnterpriseBase.swift
[878/1052] Compiling BoxSdkGen EnterpriseBaseTypeField.swift
[879/1052] Compiling BoxSdkGen Event.swift
[880/1076] Compiling BoxSdkGen AiAskItemsTypeField.swift
[881/1076] Compiling BoxSdkGen AiAskModeField.swift
[882/1076] Compiling BoxSdkGen AiCitation.swift
[883/1076] Compiling BoxSdkGen AiCitationTypeField.swift
[884/1076] Compiling BoxSdkGen AiDialogueHistory.swift
[885/1076] Compiling BoxSdkGen AiLlmEndpointParamsGoogle.swift
[886/1076] Compiling BoxSdkGen AiLlmEndpointParamsGoogleTypeField.swift
[887/1076] Compiling BoxSdkGen AiLlmEndpointParamsGoogleOrAiLlmEndpointParamsOpenAi.swift
[888/1076] Compiling BoxSdkGen AiLlmEndpointParamsOpenAi.swift
[889/1076] Compiling BoxSdkGen AiLlmEndpointParamsOpenAiTypeField.swift
[890/1076] Compiling BoxSdkGen AiResponse.swift
[891/1076] Compiling BoxSdkGen AiResponseFull.swift
[892/1076] Compiling BoxSdkGen AiTextGen.swift
[893/1076] Compiling BoxSdkGen AiTextGenItemsField.swift
[894/1076] Compiling BoxSdkGen AiTextGenItemsTypeField.swift
[895/1076] Compiling BoxSdkGen AppItem.swift
[896/1076] Compiling BoxSdkGen AppItemTypeField.swift
[897/1076] Compiling BoxSdkGen AppItemAssociation.swift
[898/1076] Compiling BoxSdkGen AppItemAssociationTypeField.swift
[899/1076] Compiling BoxSdkGen AppItemAssociations.swift
[900/1076] Compiling BoxSdkGen AppItemEventSource.swift
[901/1076] Compiling BoxSdkGen AppItemEventSourceTypeField.swift
[902/1076] Compiling BoxSdkGen AppItemEventSourceOrEventSourceOrFileOrFolderOrGenericSourceOrUser.swift
[903/1076] Compiling BoxSdkGen Classification.swift
[904/1076] Compiling BoxSdkGen ClassificationTemplateField.swift
[905/1100] Compiling BoxSdkGen ClassificationTemplate.swift
[906/1100] Compiling BoxSdkGen ClassificationTemplateDisplayNameField.swift
[907/1100] Compiling BoxSdkGen ClassificationTemplateFieldsDisplayNameField.swift
[908/1100] Compiling BoxSdkGen ClassificationTemplateFieldsField.swift
[909/1100] Compiling BoxSdkGen ClassificationTemplateFieldsKeyField.swift
[910/1100] Compiling BoxSdkGen ClassificationTemplateFieldsOptionsField.swift
[911/1100] Compiling BoxSdkGen ClassificationTemplateFieldsOptionsStaticConfigClassificationField.swift
[912/1100] Compiling BoxSdkGen ClassificationTemplateFieldsOptionsStaticConfigField.swift
[913/1100] Compiling BoxSdkGen ClassificationTemplateFieldsTypeField.swift
[914/1100] Compiling BoxSdkGen ClassificationTemplateTemplateKeyField.swift
[915/1100] Compiling BoxSdkGen ClassificationTemplateTypeField.swift
[916/1100] Compiling BoxSdkGen ClientError.swift
[917/1100] Compiling BoxSdkGen ClientErrorCodeField.swift
[918/1100] Compiling BoxSdkGen ClientErrorContextInfoField.swift
[919/1100] Compiling BoxSdkGen ClientErrorTypeField.swift
[920/1100] Compiling BoxSdkGen Collaboration.swift
[921/1100] Compiling BoxSdkGen CollaborationAcceptanceRequirementsStatusField.swift
[922/1100] Compiling BoxSdkGen CollaborationAcceptanceRequirementsStatusStrongPasswordRequirementField.swift
[923/1100] Compiling BoxSdkGen CollaborationAcceptanceRequirementsStatusTermsOfServiceRequirementField.swift
[924/1100] Compiling BoxSdkGen CollaborationAcceptanceRequirementsStatusTwoFactorAuthenticationRequirementField.swift
[925/1100] Compiling BoxSdkGen CollaborationRoleField.swift
[926/1100] Compiling BoxSdkGen CollaborationStatusField.swift
[927/1100] Compiling BoxSdkGen CollaborationTypeField.swift
[928/1100] Compiling BoxSdkGen CollaborationAllowlistEntries.swift
[929/1100] Compiling BoxSdkGen CollaborationAllowlistEntry.swift
[930/1124] Compiling BoxSdkGen EventAdditionalDetailsField.swift
[931/1124] Compiling BoxSdkGen EventEventTypeField.swift
[932/1124] Compiling BoxSdkGen EventSource.swift
[933/1124] Compiling BoxSdkGen EventSourceClassificationField.swift
[934/1124] Compiling BoxSdkGen EventSourceItemTypeField.swift
[935/1124] Compiling BoxSdkGen Events.swift
[936/1124] Compiling BoxSdkGen EventsNextStreamPositionField.swift
[937/1124] Compiling BoxSdkGen File.swift
[938/1124] Compiling BoxSdkGen FileItemStatusField.swift
[939/1124] Compiling BoxSdkGen FilePathCollectionField.swift
[940/1124] Compiling BoxSdkGen FileSharedLinkAccessField.swift
[941/1124] Compiling BoxSdkGen FileSharedLinkEffectiveAccessField.swift
[942/1124] Compiling BoxSdkGen FileSharedLinkEffectivePermissionField.swift
[943/1124] Compiling BoxSdkGen FileSharedLinkField.swift
[944/1124] Compiling BoxSdkGen FileSharedLinkPermissionsField.swift
[945/1124] Compiling BoxSdkGen FileBase.swift
[946/1124] Compiling BoxSdkGen FileBaseTypeField.swift
[947/1124] Compiling BoxSdkGen FileBaseOrFolderBaseOrWebLinkBase.swift
[948/1124] Compiling BoxSdkGen FileConflict.swift
[949/1124] Compiling BoxSdkGen FileFull.swift
[950/1124] Compiling BoxSdkGen FileFullAllowedInviteeRolesField.swift
[951/1124] Compiling BoxSdkGen FileFullClassificationField.swift
[952/1124] Compiling BoxSdkGen FileFullExpiringEmbedLinkField.swift
[953/1124] Compiling BoxSdkGen FileFullExpiringEmbedLinkTokenTypeField.swift
[954/1124] Compiling BoxSdkGen FileFullLockAppTypeField.swift
[955/1124] Compiling BoxSdkGen FileFullLockField.swift
[956/1124] Compiling BoxSdkGen FileFullLockTypeField.swift
[957/1124] Compiling BoxSdkGen FileFullMetadataField.swift
[958/1124] Compiling BoxSdkGen FileFullPermissionsField.swift
[959/1124] Compiling BoxSdkGen FileFullRepresentationsEntriesContentField.swift
[960/1124] Compiling BoxSdkGen FileFullRepresentationsEntriesField.swift
[961/1124] Compiling BoxSdkGen FileFullRepresentationsEntriesInfoField.swift
[962/1124] Compiling BoxSdkGen FileFullRepresentationsEntriesPropertiesField.swift
[963/1124] Compiling BoxSdkGen FileFullRepresentationsEntriesStatusField.swift
[964/1124] Compiling BoxSdkGen FileFullRepresentationsEntriesStatusStateField.swift
[965/1124] Compiling BoxSdkGen FileFullRepresentationsField.swift
[966/1124] Compiling BoxSdkGen FileFullSharedLinkPermissionOptionsField.swift
[967/1124] Compiling BoxSdkGen FileFullWatermarkInfoField.swift
[968/1124] Compiling BoxSdkGen FileFullOrFolderFull.swift
[969/1124] Compiling BoxSdkGen FileFullOrFolderFullOrWebLink.swift
[970/1124] Compiling BoxSdkGen FileFullOrFolderMiniOrWebLink.swift
[971/1124] Compiling BoxSdkGen FileMini.swift
[972/1124] Compiling BoxSdkGen FileMiniOrFolderMini.swift
[973/1124] Compiling BoxSdkGen FileOrFolder.swift
[974/1124] Compiling BoxSdkGen FileOrFolderOrWebLink.swift
[975/1124] Compiling BoxSdkGen FileOrFolderScope.swift
[976/1124] Compiling BoxSdkGen FileOrFolderScopeScopeField.swift
[977/1124] Compiling BoxSdkGen FileRequest.swift
[978/1124] Compiling BoxSdkGen FileRequestStatusField.swift
[979/1124] Compiling BoxSdkGen FileRequestTypeField.swift
[980/1172] Compiling BoxSdkGen FolderItemStatusField.swift
[981/1172] Compiling BoxSdkGen FolderPathCollectionField.swift
[982/1172] Compiling BoxSdkGen FolderSharedLinkAccessField.swift
[983/1172] Compiling BoxSdkGen FolderSharedLinkEffectiveAccessField.swift
[984/1172] Compiling BoxSdkGen FolderSharedLinkEffectivePermissionField.swift
[985/1172] Compiling BoxSdkGen FolderSharedLinkField.swift
[986/1172] Compiling BoxSdkGen FolderSharedLinkPermissionsField.swift
[987/1172] Compiling BoxSdkGen FolderBase.swift
[988/1172] Compiling BoxSdkGen FolderBaseTypeField.swift
[989/1172] Compiling BoxSdkGen FolderFull.swift
[990/1172] Compiling BoxSdkGen FolderFullAllowedInviteeRolesField.swift
[991/1172] Compiling BoxSdkGen FolderFullAllowedSharedLinkAccessLevelsField.swift
[992/1172] Compiling BoxSdkGen FolderFullClassificationField.swift
[993/1172] Compiling BoxSdkGen FolderFullMetadataField.swift
[994/1172] Compiling BoxSdkGen FolderFullPermissionsField.swift
[995/1172] Compiling BoxSdkGen FolderFullSyncStateField.swift
[996/1172] Compiling BoxSdkGen FolderFullWatermarkInfoField.swift
[997/1172] Compiling BoxSdkGen FolderLock.swift
[998/1172] Compiling BoxSdkGen FolderLockLockedOperationsField.swift
[999/1172] Compiling BoxSdkGen FolderLocks.swift
[1000/1172] Compiling BoxSdkGen FolderMini.swift
[1001/1172] Compiling BoxSdkGen GenericSource.swift
[1002/1172] Compiling BoxSdkGen Group.swift
[1003/1172] Compiling BoxSdkGen GroupBase.swift
[1004/1196] Compiling BoxSdkGen FileRequestCopyRequest.swift
[1005/1196] Compiling BoxSdkGen FileRequestCopyRequestFolderField.swift
[1006/1196] Compiling BoxSdkGen FileRequestCopyRequestFolderTypeField.swift
[1007/1196] Compiling BoxSdkGen FileRequestUpdateRequest.swift
[1008/1196] Compiling BoxSdkGen FileRequestUpdateRequestStatusField.swift
[1009/1196] Compiling BoxSdkGen FileVersion.swift
[1010/1196] Compiling BoxSdkGen FileVersionBase.swift
[1011/1196] Compiling BoxSdkGen FileVersionBaseTypeField.swift
[1012/1196] Compiling BoxSdkGen FileVersionFull.swift
[1013/1196] Compiling BoxSdkGen FileVersionLegalHold.swift
[1014/1196] Compiling BoxSdkGen FileVersionLegalHoldTypeField.swift
[1015/1196] Compiling BoxSdkGen FileVersionLegalHolds.swift
[1016/1196] Compiling BoxSdkGen FileVersionMini.swift
[1017/1196] Compiling BoxSdkGen FileVersionRetention.swift
[1018/1196] Compiling BoxSdkGen FileVersionRetentionTypeField.swift
[1019/1196] Compiling BoxSdkGen FileVersionRetentions.swift
[1020/1196] Compiling BoxSdkGen FileVersions.swift
[1021/1196] Compiling BoxSdkGen FileVersionsOrderDirectionField.swift
[1022/1196] Compiling BoxSdkGen FileVersionsOrderField.swift
[1023/1196] Compiling BoxSdkGen Files.swift
[1024/1196] Compiling BoxSdkGen FilesOnHold.swift
[1025/1196] Compiling BoxSdkGen FilesUnderRetention.swift
[1026/1196] Compiling BoxSdkGen Folder.swift
[1027/1196] Compiling BoxSdkGen FolderFolderUploadEmailAccessField.swift
[1028/1196] Compiling BoxSdkGen FolderFolderUploadEmailField.swift
[1029/1220] Compiling BoxSdkGen GroupBaseTypeField.swift
[1030/1220] Compiling BoxSdkGen GroupFull.swift
[1031/1220] Compiling BoxSdkGen GroupFullInvitabilityLevelField.swift
[1032/1220] Compiling BoxSdkGen GroupFullMemberViewabilityLevelField.swift
[1033/1220] Compiling BoxSdkGen GroupFullPermissionsField.swift
[1034/1220] Compiling BoxSdkGen GroupMembership.swift
[1035/1220] Compiling BoxSdkGen GroupMembershipRoleField.swift
[1036/1220] Compiling BoxSdkGen GroupMembershipTypeField.swift
[1037/1220] Compiling BoxSdkGen GroupMemberships.swift
[1038/1220] Compiling BoxSdkGen GroupMembershipsOrderDirectionField.swift
[1039/1220] Compiling BoxSdkGen GroupMembershipsOrderField.swift
[1040/1220] Compiling BoxSdkGen GroupMini.swift
[1041/1220] Compiling BoxSdkGen GroupMiniGroupTypeField.swift
[1042/1220] Compiling BoxSdkGen GroupMiniOrUserCollaborations.swift
[1043/1220] Compiling BoxSdkGen Groups.swift
[1044/1220] Compiling BoxSdkGen GroupsOrderDirectionField.swift
[1045/1220] Compiling BoxSdkGen GroupsOrderField.swift
[1046/1220] Compiling BoxSdkGen IntegrationMapping.swift
[1047/1220] Compiling BoxSdkGen IntegrationMappingIntegrationTypeField.swift
[1048/1220] Compiling BoxSdkGen IntegrationMappingBase.swift
[1049/1220] Compiling BoxSdkGen IntegrationMappingBaseTypeField.swift
[1050/1220] Compiling BoxSdkGen IntegrationMappingBoxItemSlack.swift
[1051/1220] Compiling BoxSdkGen IntegrationMappingBoxItemSlackTypeField.swift
[1052/1220] Compiling BoxSdkGen IntegrationMappingPartnerItemSlack.swift
[1053/1244] Compiling BoxSdkGen IntegrationMappingPartnerItemSlackTypeField.swift
[1054/1244] Compiling BoxSdkGen IntegrationMappingPartnerItemSlackUnion.swift
[1055/1244] Compiling BoxSdkGen IntegrationMappingSlackCreateRequest.swift
[1056/1244] Compiling BoxSdkGen IntegrationMappingSlackOptions.swift
[1057/1244] Compiling BoxSdkGen IntegrationMappings.swift
[1058/1244] Compiling BoxSdkGen Invite.swift
[1059/1244] Compiling BoxSdkGen InviteInvitedToField.swift
[1060/1244] Compiling BoxSdkGen InviteInvitedToTypeField.swift
[1061/1244] Compiling BoxSdkGen InviteTypeField.swift
[1062/1244] Compiling BoxSdkGen Items.swift
[1063/1244] Compiling BoxSdkGen ItemsOrderDirectionField.swift
[1064/1244] Compiling BoxSdkGen ItemsOrderField.swift
[1065/1244] Compiling BoxSdkGen KeywordSkillCard.swift
[1066/1244] Compiling BoxSdkGen KeywordSkillCardEntriesField.swift
[1067/1244] Compiling BoxSdkGen KeywordSkillCardInvocationField.swift
[1068/1244] Compiling BoxSdkGen KeywordSkillCardInvocationTypeField.swift
[1069/1244] Compiling BoxSdkGen KeywordSkillCardSkillCardTitleField.swift
[1070/1244] Compiling BoxSdkGen KeywordSkillCardSkillCardTypeField.swift
[1071/1244] Compiling BoxSdkGen KeywordSkillCardSkillField.swift
[1072/1244] Compiling BoxSdkGen KeywordSkillCardSkillTypeField.swift
[1073/1244] Compiling BoxSdkGen KeywordSkillCardTypeField.swift
[1074/1244] Compiling BoxSdkGen KeywordSkillCardOrStatusSkillCardOrTimelineSkillCardOrTranscriptSkillCard.swift
[1075/1244] Compiling BoxSdkGen LegalHoldPolicies.swift
[1076/1244] Compiling BoxSdkGen LegalHoldPolicy.swift
[1077/1268] Compiling BoxSdkGen LegalHoldPolicyAssignmentCountsField.swift
[1078/1268] Compiling BoxSdkGen LegalHoldPolicyStatusField.swift
[1079/1268] Compiling BoxSdkGen LegalHoldPolicyAssignment.swift
[1080/1268] Compiling BoxSdkGen LegalHoldPolicyAssignmentBase.swift
[1081/1268] Compiling BoxSdkGen LegalHoldPolicyAssignmentBaseTypeField.swift
[1082/1268] Compiling BoxSdkGen LegalHoldPolicyAssignments.swift
[1083/1268] Compiling BoxSdkGen LegalHoldPolicyMini.swift
[1084/1268] Compiling BoxSdkGen LegalHoldPolicyMiniTypeField.swift
[1085/1268] Compiling BoxSdkGen Metadata.swift
[1086/1268] Compiling BoxSdkGen MetadataBase.swift
[1087/1268] Compiling BoxSdkGen MetadataCascadePolicies.swift
[1088/1268] Compiling BoxSdkGen MetadataCascadePolicy.swift
[1089/1268] Compiling BoxSdkGen MetadataCascadePolicyOwnerEnterpriseField.swift
[1090/1268] Compiling BoxSdkGen MetadataCascadePolicyOwnerEnterpriseTypeField.swift
[1091/1268] Compiling BoxSdkGen MetadataCascadePolicyParentField.swift
[1092/1268] Compiling BoxSdkGen MetadataCascadePolicyParentTypeField.swift
[1093/1268] Compiling BoxSdkGen MetadataCascadePolicyTypeField.swift
[1094/1268] Compiling BoxSdkGen MetadataFieldFilterDateRange.swift
[1095/1268] Compiling BoxSdkGen MetadataFieldFilterDateRangeOrMetadataFieldFilterFloatRangeOrArrayOfStringOrNumberOrString.swift
[1096/1268] Compiling BoxSdkGen MetadataFieldFilterFloatRange.swift
[1097/1268] Compiling BoxSdkGen MetadataFilter.swift
[1098/1268] Compiling BoxSdkGen MetadataFilterScopeField.swift
[1099/1268] Compiling BoxSdkGen MetadataFull.swift
[1100/1268] Compiling BoxSdkGen MetadataQuery.swift
[1101/1268] Compiling BoxSdkGen MetadataQueryOrderByDirectionField.swift
[1102/1268] Compiling BoxSdkGen MetadataQueryOrderByField.swift
[1103/1268] Compiling BoxSdkGen MetadataQueryIndex.swift
[1104/1268] Compiling BoxSdkGen MetadataQueryIndexFieldsField.swift
[1105/1268] Compiling BoxSdkGen MetadataQueryIndexFieldsSortDirectionField.swift
[1106/1268] Compiling BoxSdkGen MetadataQueryIndexStatusField.swift
[1107/1268] Compiling BoxSdkGen MetadataQueryResults.swift
[1108/1268] Compiling BoxSdkGen MetadataTemplate.swift
[1109/1268] Compiling BoxSdkGen MetadataTemplateFieldsField.swift
[1110/1268] Compiling BoxSdkGen MetadataTemplateFieldsOptionsField.swift
[1111/1268] Compiling BoxSdkGen MetadataTemplateFieldsTypeField.swift
[1112/1268] Compiling BoxSdkGen MetadataTemplateTypeField.swift
[1113/1268] Compiling BoxSdkGen MetadataTemplates.swift
[1114/1268] Compiling BoxSdkGen Metadatas.swift
[1115/1268] Compiling BoxSdkGen OAuth2Error.swift
[1116/1268] Compiling BoxSdkGen Outcome.swift
[1117/1268] Compiling BoxSdkGen PostOAuth2Revoke.swift
[1118/1268] Compiling BoxSdkGen PostOAuth2Token.swift
[1119/1268] Compiling BoxSdkGen PostOAuth2TokenActorTokenTypeField.swift
[1120/1268] Compiling BoxSdkGen PostOAuth2TokenBoxSubjectTypeField.swift
[1121/1268] Compiling BoxSdkGen PostOAuth2TokenGrantTypeField.swift
[1122/1268] Compiling BoxSdkGen PostOAuth2TokenSubjectTokenTypeField.swift
[1123/1268] Compiling BoxSdkGen PostOAuth2TokenRefreshAccessToken.swift
[1124/1268] Compiling BoxSdkGen PostOAuth2TokenRefreshAccessTokenGrantTypeField.swift
[1125/1316] Compiling BoxSdkGen RealtimeServer.swift
[1126/1316] Compiling BoxSdkGen RealtimeServers.swift
[1127/1316] Compiling BoxSdkGen RecentItem.swift
[1128/1316] Compiling BoxSdkGen RecentItemInteractionTypeField.swift
[1129/1316] Compiling BoxSdkGen RecentItems.swift
[1130/1316] Compiling BoxSdkGen RetentionPolicies.swift
[1131/1316] Compiling BoxSdkGen RetentionPolicy.swift
[1132/1316] Compiling BoxSdkGen RetentionPolicyAssignmentCountsField.swift
[1133/1316] Compiling BoxSdkGen RetentionPolicyPolicyTypeField.swift
[1134/1316] Compiling BoxSdkGen RetentionPolicyRetentionTypeField.swift
[1135/1316] Compiling BoxSdkGen RetentionPolicyStatusField.swift
[1136/1316] Compiling BoxSdkGen RetentionPolicyAssignment.swift
[1137/1316] Compiling BoxSdkGen RetentionPolicyAssignmentAssignedToField.swift
[1138/1316] Compiling BoxSdkGen RetentionPolicyAssignmentAssignedToTypeField.swift
[1139/1316] Compiling BoxSdkGen RetentionPolicyAssignmentFilterFieldsField.swift
[1140/1316] Compiling BoxSdkGen RetentionPolicyAssignmentTypeField.swift
[1141/1316] Compiling BoxSdkGen RetentionPolicyAssignmentBase.swift
[1142/1316] Compiling BoxSdkGen RetentionPolicyAssignmentBaseTypeField.swift
[1143/1316] Compiling BoxSdkGen RetentionPolicyAssignments.swift
[1144/1316] Compiling BoxSdkGen RetentionPolicyBase.swift
[1145/1316] Compiling BoxSdkGen RetentionPolicyBaseTypeField.swift
[1146/1316] Compiling BoxSdkGen RetentionPolicyMini.swift
[1147/1316] Compiling BoxSdkGen RetentionPolicyMiniDispositionActionField.swift
[1148/1316] Compiling BoxSdkGen RoleVariable.swift
[1149/1340] Compiling BoxSdkGen RoleVariableTypeField.swift
[1150/1340] Compiling BoxSdkGen RoleVariableVariableTypeField.swift
[1151/1340] Compiling BoxSdkGen RoleVariableVariableValueField.swift
[1152/1340] Compiling BoxSdkGen SearchResultWithSharedLink.swift
[1153/1340] Compiling BoxSdkGen SearchResults.swift
[1154/1340] Compiling BoxSdkGen SearchResultsTypeField.swift
[1155/1340] Compiling BoxSdkGen SearchResultsOrSearchResultsWithSharedLinks.swift
[1156/1340] Compiling BoxSdkGen SearchResultsWithSharedLinks.swift
[1157/1340] Compiling BoxSdkGen SearchResultsWithSharedLinksTypeField.swift
[1158/1340] Compiling BoxSdkGen SessionTerminationMessage.swift
[1159/1340] Compiling BoxSdkGen ShieldInformationBarrier.swift
[1160/1340] Compiling BoxSdkGen ShieldInformationBarrierStatusField.swift
[1161/1340] Compiling BoxSdkGen ShieldInformationBarrierTypeField.swift
[1162/1340] Compiling BoxSdkGen ShieldInformationBarrierBase.swift
[1163/1340] Compiling BoxSdkGen ShieldInformationBarrierBaseTypeField.swift
[1164/1340] Compiling BoxSdkGen ShieldInformationBarrierReference.swift
[1165/1340] Compiling BoxSdkGen ShieldInformationBarrierReport.swift
[1166/1340] Compiling BoxSdkGen ShieldInformationBarrierReportStatusField.swift
[1167/1340] Compiling BoxSdkGen ShieldInformationBarrierReportBase.swift
[1168/1340] Compiling BoxSdkGen ShieldInformationBarrierReportBaseTypeField.swift
[1169/1340] Compiling BoxSdkGen ShieldInformationBarrierReportDetails.swift
[1170/1340] Compiling BoxSdkGen ShieldInformationBarrierReportDetailsDetailsField.swift
[1171/1340] Compiling BoxSdkGen ShieldInformationBarrierReports.swift
[1172/1340] Compiling BoxSdkGen ShieldInformationBarrierSegment.swift
[1173/1364] Compiling BoxSdkGen ShieldInformationBarrierSegmentTypeField.swift
[1174/1364] Compiling BoxSdkGen ShieldInformationBarrierSegmentMember.swift
[1175/1364] Compiling BoxSdkGen ShieldInformationBarrierSegmentMemberShieldInformationBarrierSegmentField.swift
[1176/1364] Compiling BoxSdkGen ShieldInformationBarrierSegmentMemberShieldInformationBarrierSegmentTypeField.swift
[1177/1364] Compiling BoxSdkGen ShieldInformationBarrierSegmentMemberBase.swift
[1178/1364] Compiling BoxSdkGen ShieldInformationBarrierSegmentMemberBaseTypeField.swift
[1179/1364] Compiling BoxSdkGen ShieldInformationBarrierSegmentMemberMini.swift
[1180/1364] Compiling BoxSdkGen ShieldInformationBarrierSegmentMembers.swift
[1181/1364] Compiling BoxSdkGen ShieldInformationBarrierSegmentRestriction.swift
[1182/1364] Compiling BoxSdkGen ShieldInformationBarrierSegmentRestrictionBase.swift
[1183/1364] Compiling BoxSdkGen ShieldInformationBarrierSegmentRestrictionBaseTypeField.swift
[1184/1364] Compiling BoxSdkGen ShieldInformationBarrierSegmentRestrictionMini.swift
[1185/1364] Compiling BoxSdkGen ShieldInformationBarrierSegmentRestrictionMiniRestrictedSegmentField.swift
[1186/1364] Compiling BoxSdkGen ShieldInformationBarrierSegmentRestrictionMiniRestrictedSegmentTypeField.swift
[1187/1364] Compiling BoxSdkGen ShieldInformationBarrierSegmentRestrictionMiniShieldInformationBarrierSegmentField.swift
[1188/1364] Compiling BoxSdkGen ShieldInformationBarrierSegmentRestrictionMiniShieldInformationBarrierSegmentTypeField.swift
[1189/1364] Compiling BoxSdkGen ShieldInformationBarrierSegmentRestrictions.swift
[1190/1364] Compiling BoxSdkGen ShieldInformationBarrierSegments.swift
[1191/1364] Compiling BoxSdkGen ShieldInformationBarriers.swift
[1192/1364] Compiling BoxSdkGen SignRequest.swift
[1193/1364] Compiling BoxSdkGen SignRequestSignFilesField.swift
[1194/1364] Compiling BoxSdkGen SignRequestStatusField.swift
[1195/1364] Compiling BoxSdkGen SignRequestTypeField.swift
[1196/1364] Compiling BoxSdkGen SignRequestBase.swift
[1197/1388] Compiling BoxSdkGen SignRequestCreateRequest.swift
[1198/1388] Compiling BoxSdkGen SignRequestCreateRequestSignatureColorField.swift
[1199/1388] Compiling BoxSdkGen SignRequestCreateSigner.swift
[1200/1388] Compiling BoxSdkGen SignRequestCreateSignerRoleField.swift
[1201/1388] Compiling BoxSdkGen SignRequestPrefillTag.swift
[1202/1388] Compiling BoxSdkGen SignRequestSigner.swift
[1203/1388] Compiling BoxSdkGen SignRequestSignerSignerDecisionField.swift
[1204/1388] Compiling BoxSdkGen SignRequestSignerSignerDecisionTypeField.swift
[1205/1388] Compiling BoxSdkGen SignRequestSignerInput.swift
[1206/1388] Compiling BoxSdkGen SignRequestSignerInputContentTypeField.swift
[1207/1388] Compiling BoxSdkGen SignRequestSignerInputTypeField.swift
[1208/1388] Compiling BoxSdkGen SignRequests.swift
[1209/1388] Compiling BoxSdkGen SignTemplate.swift
[1210/1388] Compiling BoxSdkGen SignTemplateAdditionalInfoField.swift
[1211/1388] Compiling BoxSdkGen SignTemplateAdditionalInfoNonEditableField.swift
[1212/1388] Compiling BoxSdkGen SignTemplateAdditionalInfoRequiredField.swift
[1213/1388] Compiling BoxSdkGen SignTemplateAdditionalInfoRequiredSignersField.swift
[1214/1388] Compiling BoxSdkGen SignTemplateCustomBrandingField.swift
[1215/1388] Compiling BoxSdkGen SignTemplateReadySignLinkField.swift
[1216/1388] Compiling BoxSdkGen SignTemplateTypeField.swift
[1217/1388] Compiling BoxSdkGen SignTemplates.swift
[1218/1388] Compiling BoxSdkGen SkillCardsMetadata.swift
[1219/1388] Compiling BoxSdkGen SkillInvocation.swift
[1220/1388] Compiling BoxSdkGen SkillInvocationEnterpriseField.swift
[1221/1412] Compiling BoxSdkGen SkillInvocationEnterpriseTypeField.swift
[1222/1412] Compiling BoxSdkGen SkillInvocationSkillField.swift
[1223/1412] Compiling BoxSdkGen SkillInvocationSkillTypeField.swift
[1224/1412] Compiling BoxSdkGen SkillInvocationStatusField.swift
[1225/1412] Compiling BoxSdkGen SkillInvocationStatusStateField.swift
[1226/1412] Compiling BoxSdkGen SkillInvocationTokenField.swift
[1227/1412] Compiling BoxSdkGen SkillInvocationTokenReadField.swift
[1228/1412] Compiling BoxSdkGen SkillInvocationTokenReadTokenTypeField.swift
[1229/1412] Compiling BoxSdkGen SkillInvocationTokenWriteField.swift
[1230/1412] Compiling BoxSdkGen SkillInvocationTokenWriteTokenTypeField.swift
[1231/1412] Compiling BoxSdkGen SkillInvocationTypeField.swift
[1232/1412] Compiling BoxSdkGen StatusSkillCard.swift
[1233/1412] Compiling BoxSdkGen StatusSkillCardInvocationField.swift
[1234/1412] Compiling BoxSdkGen StatusSkillCardInvocationTypeField.swift
[1235/1412] Compiling BoxSdkGen StatusSkillCardSkillCardTitleField.swift
[1236/1412] Compiling BoxSdkGen StatusSkillCardSkillCardTypeField.swift
[1237/1412] Compiling BoxSdkGen StatusSkillCardSkillField.swift
[1238/1412] Compiling BoxSdkGen StatusSkillCardSkillTypeField.swift
[1239/1412] Compiling BoxSdkGen StatusSkillCardStatusCodeField.swift
[1240/1412] Compiling BoxSdkGen StatusSkillCardStatusField.swift
[1241/1412] Compiling BoxSdkGen StatusSkillCardTypeField.swift
[1242/1412] Compiling BoxSdkGen StoragePolicies.swift
[1243/1412] Compiling BoxSdkGen StoragePolicy.swift
[1244/1412] Compiling BoxSdkGen StoragePolicyAssignment.swift
[1245/1412] Compiling BoxSdkGen TermsOfServiceStatusField.swift
[1246/1412] Compiling BoxSdkGen TermsOfServiceTosTypeField.swift
[1247/1412] Compiling BoxSdkGen TermsOfServiceBase.swift
[1248/1412] Compiling BoxSdkGen TermsOfServiceBaseTypeField.swift
[1249/1412] Compiling BoxSdkGen TermsOfServiceUserStatus.swift
[1250/1412] Compiling BoxSdkGen TermsOfServiceUserStatusTypeField.swift
[1251/1412] Compiling BoxSdkGen TermsOfServiceUserStatuses.swift
[1252/1412] Compiling BoxSdkGen TermsOfServices.swift
[1253/1412] Compiling BoxSdkGen TimelineSkillCard.swift
[1254/1412] Compiling BoxSdkGen TimelineSkillCardEntriesAppearsField.swift
[1255/1412] Compiling BoxSdkGen TimelineSkillCardEntriesField.swift
[1256/1412] Compiling BoxSdkGen TimelineSkillCardInvocationField.swift
[1257/1412] Compiling BoxSdkGen TimelineSkillCardInvocationTypeField.swift
[1258/1412] Compiling BoxSdkGen TimelineSkillCardSkillCardTitleField.swift
[1259/1412] Compiling BoxSdkGen TimelineSkillCardSkillCardTypeField.swift
[1260/1412] Compiling BoxSdkGen TimelineSkillCardSkillField.swift
[1261/1412] Compiling BoxSdkGen TimelineSkillCardSkillTypeField.swift
[1262/1412] Compiling BoxSdkGen TimelineSkillCardTypeField.swift
[1263/1412] Compiling BoxSdkGen TrackingCode.swift
[1264/1412] Compiling BoxSdkGen TrackingCodeTypeField.swift
[1265/1412] Compiling BoxSdkGen TranscriptSkillCard.swift
[1266/1412] Compiling BoxSdkGen TranscriptSkillCardEntriesAppearsField.swift
[1267/1412] Compiling BoxSdkGen TranscriptSkillCardEntriesField.swift
[1268/1412] Compiling BoxSdkGen TranscriptSkillCardInvocationField.swift
[1269/1412] Compiling BoxSdkGen StoragePolicyAssignmentAssignedToField.swift
[1270/1412] Compiling BoxSdkGen StoragePolicyAssignmentTypeField.swift
[1271/1412] Compiling BoxSdkGen StoragePolicyAssignments.swift
[1272/1412] Compiling BoxSdkGen StoragePolicyMini.swift
[1273/1412] Compiling BoxSdkGen StoragePolicyMiniTypeField.swift
[1274/1412] Compiling BoxSdkGen Task.swift
[1275/1412] Compiling BoxSdkGen TaskActionField.swift
[1276/1412] Compiling BoxSdkGen TaskCompletionRuleField.swift
[1277/1412] Compiling BoxSdkGen TaskTypeField.swift
[1278/1412] Compiling BoxSdkGen TaskAssignment.swift
[1279/1412] Compiling BoxSdkGen TaskAssignmentResolutionStateField.swift
[1280/1412] Compiling BoxSdkGen TaskAssignmentTypeField.swift
[1281/1412] Compiling BoxSdkGen TaskAssignments.swift
[1282/1412] Compiling BoxSdkGen Tasks.swift
[1283/1412] Compiling BoxSdkGen TemplateSigner.swift
[1284/1412] Compiling BoxSdkGen TemplateSignerRoleField.swift
[1285/1412] Compiling BoxSdkGen TemplateSignerInput.swift
[1286/1412] Compiling BoxSdkGen TemplateSignerInputContentTypeField.swift
[1287/1412] Compiling BoxSdkGen TemplateSignerInputCoordinatesField.swift
[1288/1412] Compiling BoxSdkGen TemplateSignerInputDimensionsField.swift
[1289/1412] Compiling BoxSdkGen TemplateSignerInputTypeField.swift
[1290/1412] Compiling BoxSdkGen TermsOfService.swift
[1291/1412] Compiling BoxSdkGen TermsOfServiceEnterpriseField.swift
[1292/1412] Compiling BoxSdkGen TermsOfServiceEnterpriseTypeField.swift
[1293/1412] Compiling BoxSdkGen TranscriptSkillCardInvocationTypeField.swift
[1294/1412] Compiling BoxSdkGen TranscriptSkillCardSkillCardTitleField.swift
[1295/1412] Compiling BoxSdkGen TranscriptSkillCardSkillCardTypeField.swift
[1296/1412] Compiling BoxSdkGen TranscriptSkillCardSkillField.swift
[1297/1412] Compiling BoxSdkGen TranscriptSkillCardSkillTypeField.swift
[1298/1412] Compiling BoxSdkGen TranscriptSkillCardTypeField.swift
[1299/1412] Compiling BoxSdkGen TrashFile.swift
[1300/1412] Compiling BoxSdkGen TrashFileItemStatusField.swift
[1301/1412] Compiling BoxSdkGen TrashFilePathCollectionEntriesField.swift
[1302/1412] Compiling BoxSdkGen TrashFilePathCollectionEntriesTypeField.swift
[1303/1412] Compiling BoxSdkGen TrashFilePathCollectionField.swift
[1304/1412] Compiling BoxSdkGen TrashFileTypeField.swift
[1305/1412] Compiling BoxSdkGen TrashFileRestored.swift
[1306/1412] Compiling BoxSdkGen TrashFileRestoredItemStatusField.swift
[1307/1412] Compiling BoxSdkGen TrashFileRestoredPathCollectionField.swift
[1308/1412] Compiling BoxSdkGen TrashFileRestoredTypeField.swift
[1309/1412] Compiling BoxSdkGen TrashFolder.swift
[1310/1412] Compiling BoxSdkGen TrashFolderItemStatusField.swift
[1311/1412] Compiling BoxSdkGen TrashFolderPathCollectionEntriesField.swift
[1312/1412] Compiling BoxSdkGen TrashFolderPathCollectionEntriesTypeField.swift
[1313/1412] Compiling BoxSdkGen TrashFolderPathCollectionField.swift
[1314/1412] Compiling BoxSdkGen TrashFolderTypeField.swift
[1315/1412] Compiling BoxSdkGen TrashFolderRestored.swift
[1316/1412] Compiling BoxSdkGen TrashFolderRestoredItemStatusField.swift
[1317/1412] Compiling BoxSdkGen UserStatusField.swift
[1318/1412] Compiling BoxSdkGen UserAvatar.swift
[1319/1412] Compiling BoxSdkGen UserAvatarPicUrlsField.swift
[1320/1412] Compiling BoxSdkGen UserBase.swift
[1321/1412] Compiling BoxSdkGen UserBaseTypeField.swift
[1322/1412] Compiling BoxSdkGen UserCollaborations.swift
[1323/1412] Compiling BoxSdkGen UserFull.swift
[1324/1412] Compiling BoxSdkGen UserFullEnterpriseField.swift
[1325/1412] Compiling BoxSdkGen UserFullEnterpriseTypeField.swift
[1326/1412] Compiling BoxSdkGen UserFullRoleField.swift
[1327/1412] Compiling BoxSdkGen UserIntegrationMappings.swift
[1328/1412] Compiling BoxSdkGen UserMini.swift
[1329/1412] Compiling BoxSdkGen Users.swift
[1330/1412] Compiling BoxSdkGen UsersOrderDirectionField.swift
[1331/1412] Compiling BoxSdkGen UsersOrderField.swift
[1332/1412] Compiling BoxSdkGen Watermark.swift
[1333/1412] Compiling BoxSdkGen WatermarkWatermarkField.swift
[1334/1412] Compiling BoxSdkGen WebLink.swift
[1335/1412] Compiling BoxSdkGen WebLinkItemStatusField.swift
[1336/1412] Compiling BoxSdkGen WebLinkPathCollectionField.swift
[1337/1412] Compiling BoxSdkGen WebLinkSharedLinkAccessField.swift
[1338/1412] Compiling BoxSdkGen WebLinkSharedLinkEffectiveAccessField.swift
[1339/1412] Compiling BoxSdkGen WebLinkSharedLinkEffectivePermissionField.swift
[1340/1412] Compiling BoxSdkGen WebLinkSharedLinkField.swift
[1341/1412] Compiling BoxSdkGen TrashFolderRestoredPathCollectionField.swift
[1342/1412] Compiling BoxSdkGen TrashFolderRestoredTypeField.swift
[1343/1412] Compiling BoxSdkGen TrashWebLink.swift
[1344/1412] Compiling BoxSdkGen TrashWebLinkItemStatusField.swift
[1345/1412] Compiling BoxSdkGen TrashWebLinkPathCollectionEntriesField.swift
[1346/1412] Compiling BoxSdkGen TrashWebLinkPathCollectionEntriesTypeField.swift
[1347/1412] Compiling BoxSdkGen TrashWebLinkPathCollectionField.swift
[1348/1412] Compiling BoxSdkGen TrashWebLinkTypeField.swift
[1349/1412] Compiling BoxSdkGen TrashWebLinkRestored.swift
[1350/1412] Compiling BoxSdkGen TrashWebLinkRestoredItemStatusField.swift
[1351/1412] Compiling BoxSdkGen TrashWebLinkRestoredPathCollectionField.swift
[1352/1412] Compiling BoxSdkGen TrashWebLinkRestoredTypeField.swift
[1353/1412] Compiling BoxSdkGen UploadPart.swift
[1354/1412] Compiling BoxSdkGen UploadPartMini.swift
[1355/1412] Compiling BoxSdkGen UploadParts.swift
[1356/1412] Compiling BoxSdkGen UploadPartsOrderDirectionField.swift
[1357/1412] Compiling BoxSdkGen UploadPartsOrderField.swift
[1358/1412] Compiling BoxSdkGen UploadSession.swift
[1359/1412] Compiling BoxSdkGen UploadSessionSessionEndpointsField.swift
[1360/1412] Compiling BoxSdkGen UploadSessionTypeField.swift
[1361/1412] Compiling BoxSdkGen UploadUrl.swift
[1362/1412] Compiling BoxSdkGen UploadedPart.swift
[1363/1412] Compiling BoxSdkGen User.swift
[1364/1412] Compiling BoxSdkGen UserNotificationEmailField.swift
[1365/1412] Compiling BoxSdkGen WorkflowFlowsTriggerScopeObjectField.swift
[1366/1412] Compiling BoxSdkGen WorkflowFlowsTriggerScopeObjectTypeField.swift
[1367/1412] Compiling BoxSdkGen WorkflowFlowsTriggerScopeTypeField.swift
[1368/1412] Compiling BoxSdkGen WorkflowFlowsTriggerTriggerTypeField.swift
[1369/1412] Compiling BoxSdkGen WorkflowFlowsTriggerTypeField.swift
[1370/1412] Compiling BoxSdkGen WorkflowFlowsTypeField.swift
[1371/1412] Compiling BoxSdkGen WorkflowFull.swift
[1372/1412] Compiling BoxSdkGen WorkflowMini.swift
[1373/1412] Compiling BoxSdkGen WorkflowMiniTypeField.swift
[1374/1412] Compiling BoxSdkGen Workflows.swift
[1375/1412] Compiling BoxSdkGen ZipDownload.swift
[1376/1412] Compiling BoxSdkGen ZipDownloadNameConflictsField.swift
[1377/1412] Compiling BoxSdkGen ZipDownloadNameConflictsTypeField.swift
[1378/1412] Compiling BoxSdkGen ZipDownloadRequest.swift
[1379/1412] Compiling BoxSdkGen ZipDownloadRequestItemsField.swift
[1380/1412] Compiling BoxSdkGen ZipDownloadRequestItemsTypeField.swift
[1381/1412] Compiling BoxSdkGen ZipDownloadStatus.swift
[1382/1412] Compiling BoxSdkGen ZipDownloadStatusStateField.swift
[1383/1412] Compiling BoxSdkGen AnyCodeable.swift
[1384/1412] Compiling BoxSdkGen Codable+Extensions.swift
[1385/1412] Compiling BoxSdkGen CodableStringEnum.swift
[1386/1412] Compiling BoxSdkGen JsonUtils.swift
[1387/1412] Compiling BoxSdkGen SerializedData.swift
[1388/1412] Compiling BoxSdkGen resource_bundle_accessor.swift
[1389/1412] Compiling BoxSdkGen WebLinkSharedLinkPermissionsField.swift
[1390/1412] Compiling BoxSdkGen WebLinkBase.swift
[1391/1412] Compiling BoxSdkGen WebLinkBaseTypeField.swift
[1392/1412] Compiling BoxSdkGen WebLinkMini.swift
[1393/1412] Compiling BoxSdkGen Webhook.swift
[1394/1412] Compiling BoxSdkGen WebhookTriggersField.swift
[1395/1412] Compiling BoxSdkGen WebhookInvocation.swift
[1396/1412] Compiling BoxSdkGen WebhookInvocationTriggerField.swift
[1397/1412] Compiling BoxSdkGen WebhookInvocationTypeField.swift
[1398/1412] Compiling BoxSdkGen WebhookMini.swift
[1399/1412] Compiling BoxSdkGen WebhookMiniTargetField.swift
[1400/1412] Compiling BoxSdkGen WebhookMiniTargetTypeField.swift
[1401/1412] Compiling BoxSdkGen WebhookMiniTypeField.swift
[1402/1412] Compiling BoxSdkGen Webhooks.swift
[1403/1412] Compiling BoxSdkGen Workflow.swift
[1404/1412] Compiling BoxSdkGen WorkflowFlowsField.swift
[1405/1412] Compiling BoxSdkGen WorkflowFlowsOutcomesActionTypeField.swift
[1406/1412] Compiling BoxSdkGen WorkflowFlowsOutcomesField.swift
[1407/1412] Compiling BoxSdkGen WorkflowFlowsOutcomesIfRejectedActionTypeField.swift
[1408/1412] Compiling BoxSdkGen WorkflowFlowsOutcomesIfRejectedField.swift
[1409/1412] Compiling BoxSdkGen WorkflowFlowsOutcomesIfRejectedTypeField.swift
[1410/1412] Compiling BoxSdkGen WorkflowFlowsOutcomesTypeField.swift
[1411/1412] Compiling BoxSdkGen WorkflowFlowsTriggerField.swift
[1412/1412] Compiling BoxSdkGen WorkflowFlowsTriggerScopeField.swift
BUILD FAILURE 6.3 wasm