Build Information
Failed to build BoxSdkGen, reference 0.5.0-cryptomator (b2bb9d), with Swift 6.2 for Linux on 22 Jun 2025 02:49:01 UTC.
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4606859-1":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.2-latest swift build --triple x86_64-unknown-linux-gnu 2>&1Build Log
129 | taskInfos[task.taskIdentifier] = taskInfo
130 | task.resume()
[769/954] Compiling BoxSdkGen GetZipDownloadStatusHeaders.swift
/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/NetworkClient.swift:17:14: warning: non-final class 'NetworkClient' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
15 |
16 | /// Networking layer interface
17 | public class NetworkClient: NSObject, URLSessionDelegate, URLSessionTaskDelegate, URLSessionDataDelegate, URLSessionDownloadDelegate {
| `- warning: non-final class 'NetworkClient' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
18 | public static let shared = NetworkClient()
19 |
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:22:17: warning: stored property 'taskInfos' of 'Sendable'-conforming class 'NetworkClient' is mutable; this is an error in the Swift 6 language mode
20 | private let utilityQueue = DispatchQueue.global(qos: .utility)
21 | private let continuationQueue = DispatchQueue(label: "BoxSdkGen.NetworkClient.continuationQueue.\(UUID().uuidString)")
22 | private var taskInfos: [Int: TaskInfo] = [:]
| `- warning: stored property 'taskInfos' of 'Sendable'-conforming class 'NetworkClient' is mutable; this is an error in the Swift 6 language mode
23 |
24 | private override init() {
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:90:59: error: cannot convert value of type '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, FoundationNetworking.URLResponse), any Swift.Error>' to expected argument type '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, Foundation.URLResponse), any Swift.Error>' (aka '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, AnyObject), any Swift.Error>')
88 | continuationQueue.sync {
89 | let task = networkSession.session.dataTask(with: urlRequest)
90 | let taskInfo = DataTaskInfo(continuation: continuation)
| |- error: cannot convert value of type '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, FoundationNetworking.URLResponse), any Swift.Error>' to expected argument type '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, Foundation.URLResponse), any Swift.Error>' (aka '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, AnyObject), any Swift.Error>')
| `- note: arguments to generic parameter 'T' ('(FoundationEssentials.Data, FoundationNetworking.URLResponse)' and '(FoundationEssentials.Data, Foundation.URLResponse)' (aka '(FoundationEssentials.Data, AnyObject)')) are expected to be equal
91 | taskInfos[task.taskIdentifier] = taskInfo
92 | task.resume()
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:109:63: error: cannot convert value of type '_Concurrency.CheckedContinuation<(FoundationEssentials.URL, FoundationNetworking.URLResponse), any Swift.Error>' to expected argument type '_Concurrency.CheckedContinuation<(FoundationEssentials.URL, Foundation.URLResponse), any Swift.Error>' (aka '_Concurrency.CheckedContinuation<(FoundationEssentials.URL, AnyObject), any Swift.Error>')
107 | continuationQueue.sync {
108 | let task = networkSession.session.downloadTask(with: urlRequest)
109 | let taskInfo = DownloadTaskInfo(continuation: continuation, destinationURL: downloadDestinationURL)
| |- error: cannot convert value of type '_Concurrency.CheckedContinuation<(FoundationEssentials.URL, FoundationNetworking.URLResponse), any Swift.Error>' to expected argument type '_Concurrency.CheckedContinuation<(FoundationEssentials.URL, Foundation.URLResponse), any Swift.Error>' (aka '_Concurrency.CheckedContinuation<(FoundationEssentials.URL, AnyObject), any Swift.Error>')
| `- note: arguments to generic parameter 'T' ('(FoundationEssentials.URL, FoundationNetworking.URLResponse)' and '(FoundationEssentials.URL, Foundation.URLResponse)' (aka '(FoundationEssentials.URL, AnyObject)')) are expected to be equal
110 | taskInfos[task.taskIdentifier] = taskInfo
111 | task.resume()
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:128:63: error: cannot convert value of type '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, FoundationNetworking.URLResponse), any Swift.Error>' to expected argument type '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, Foundation.URLResponse), any Swift.Error>' (aka '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, AnyObject), any Swift.Error>')
126 | if let serializedData = options.data {
127 | let task = networkSession.session.uploadTask(with: urlRequest, from: serializedData.data)
128 | let taskInfo = DataTaskInfo(continuation: continuation)
| |- error: cannot convert value of type '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, FoundationNetworking.URLResponse), any Swift.Error>' to expected argument type '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, Foundation.URLResponse), any Swift.Error>' (aka '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, AnyObject), any Swift.Error>')
| `- note: arguments to generic parameter 'T' ('(FoundationEssentials.Data, FoundationNetworking.URLResponse)' and '(FoundationEssentials.Data, Foundation.URLResponse)' (aka '(FoundationEssentials.Data, AnyObject)')) are expected to be equal
129 | taskInfos[task.taskIdentifier] = taskInfo
130 | task.resume()
[770/954] Compiling BoxSdkGen ZipDownloadsManager.swift
/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/NetworkClient.swift:17:14: warning: non-final class 'NetworkClient' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
15 |
16 | /// Networking layer interface
17 | public class NetworkClient: NSObject, URLSessionDelegate, URLSessionTaskDelegate, URLSessionDataDelegate, URLSessionDownloadDelegate {
| `- warning: non-final class 'NetworkClient' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
18 | public static let shared = NetworkClient()
19 |
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:22:17: warning: stored property 'taskInfos' of 'Sendable'-conforming class 'NetworkClient' is mutable; this is an error in the Swift 6 language mode
20 | private let utilityQueue = DispatchQueue.global(qos: .utility)
21 | private let continuationQueue = DispatchQueue(label: "BoxSdkGen.NetworkClient.continuationQueue.\(UUID().uuidString)")
22 | private var taskInfos: [Int: TaskInfo] = [:]
| `- warning: stored property 'taskInfos' of 'Sendable'-conforming class 'NetworkClient' is mutable; this is an error in the Swift 6 language mode
23 |
24 | private override init() {
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:90:59: error: cannot convert value of type '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, FoundationNetworking.URLResponse), any Swift.Error>' to expected argument type '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, Foundation.URLResponse), any Swift.Error>' (aka '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, AnyObject), any Swift.Error>')
88 | continuationQueue.sync {
89 | let task = networkSession.session.dataTask(with: urlRequest)
90 | let taskInfo = DataTaskInfo(continuation: continuation)
| |- error: cannot convert value of type '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, FoundationNetworking.URLResponse), any Swift.Error>' to expected argument type '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, Foundation.URLResponse), any Swift.Error>' (aka '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, AnyObject), any Swift.Error>')
| `- note: arguments to generic parameter 'T' ('(FoundationEssentials.Data, FoundationNetworking.URLResponse)' and '(FoundationEssentials.Data, Foundation.URLResponse)' (aka '(FoundationEssentials.Data, AnyObject)')) are expected to be equal
91 | taskInfos[task.taskIdentifier] = taskInfo
92 | task.resume()
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:109:63: error: cannot convert value of type '_Concurrency.CheckedContinuation<(FoundationEssentials.URL, FoundationNetworking.URLResponse), any Swift.Error>' to expected argument type '_Concurrency.CheckedContinuation<(FoundationEssentials.URL, Foundation.URLResponse), any Swift.Error>' (aka '_Concurrency.CheckedContinuation<(FoundationEssentials.URL, AnyObject), any Swift.Error>')
107 | continuationQueue.sync {
108 | let task = networkSession.session.downloadTask(with: urlRequest)
109 | let taskInfo = DownloadTaskInfo(continuation: continuation, destinationURL: downloadDestinationURL)
| |- error: cannot convert value of type '_Concurrency.CheckedContinuation<(FoundationEssentials.URL, FoundationNetworking.URLResponse), any Swift.Error>' to expected argument type '_Concurrency.CheckedContinuation<(FoundationEssentials.URL, Foundation.URLResponse), any Swift.Error>' (aka '_Concurrency.CheckedContinuation<(FoundationEssentials.URL, AnyObject), any Swift.Error>')
| `- note: arguments to generic parameter 'T' ('(FoundationEssentials.URL, FoundationNetworking.URLResponse)' and '(FoundationEssentials.URL, Foundation.URLResponse)' (aka '(FoundationEssentials.URL, AnyObject)')) are expected to be equal
110 | taskInfos[task.taskIdentifier] = taskInfo
111 | task.resume()
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:128:63: error: cannot convert value of type '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, FoundationNetworking.URLResponse), any Swift.Error>' to expected argument type '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, Foundation.URLResponse), any Swift.Error>' (aka '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, AnyObject), any Swift.Error>')
126 | if let serializedData = options.data {
127 | let task = networkSession.session.uploadTask(with: urlRequest, from: serializedData.data)
128 | let taskInfo = DataTaskInfo(continuation: continuation)
| |- error: cannot convert value of type '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, FoundationNetworking.URLResponse), any Swift.Error>' to expected argument type '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, Foundation.URLResponse), any Swift.Error>' (aka '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, AnyObject), any Swift.Error>')
| `- note: arguments to generic parameter 'T' ('(FoundationEssentials.Data, FoundationNetworking.URLResponse)' and '(FoundationEssentials.Data, Foundation.URLResponse)' (aka '(FoundationEssentials.Data, AnyObject)')) are expected to be equal
129 | taskInfos[task.taskIdentifier] = taskInfo
130 | task.resume()
[771/954] Compiling BoxSdkGen Authentication.swift
/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/NetworkClient.swift:17:14: warning: non-final class 'NetworkClient' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
15 |
16 | /// Networking layer interface
17 | public class NetworkClient: NSObject, URLSessionDelegate, URLSessionTaskDelegate, URLSessionDataDelegate, URLSessionDownloadDelegate {
| `- warning: non-final class 'NetworkClient' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
18 | public static let shared = NetworkClient()
19 |
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:22:17: warning: stored property 'taskInfos' of 'Sendable'-conforming class 'NetworkClient' is mutable; this is an error in the Swift 6 language mode
20 | private let utilityQueue = DispatchQueue.global(qos: .utility)
21 | private let continuationQueue = DispatchQueue(label: "BoxSdkGen.NetworkClient.continuationQueue.\(UUID().uuidString)")
22 | private var taskInfos: [Int: TaskInfo] = [:]
| `- warning: stored property 'taskInfos' of 'Sendable'-conforming class 'NetworkClient' is mutable; this is an error in the Swift 6 language mode
23 |
24 | private override init() {
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:90:59: error: cannot convert value of type '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, FoundationNetworking.URLResponse), any Swift.Error>' to expected argument type '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, Foundation.URLResponse), any Swift.Error>' (aka '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, AnyObject), any Swift.Error>')
88 | continuationQueue.sync {
89 | let task = networkSession.session.dataTask(with: urlRequest)
90 | let taskInfo = DataTaskInfo(continuation: continuation)
| |- error: cannot convert value of type '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, FoundationNetworking.URLResponse), any Swift.Error>' to expected argument type '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, Foundation.URLResponse), any Swift.Error>' (aka '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, AnyObject), any Swift.Error>')
| `- note: arguments to generic parameter 'T' ('(FoundationEssentials.Data, FoundationNetworking.URLResponse)' and '(FoundationEssentials.Data, Foundation.URLResponse)' (aka '(FoundationEssentials.Data, AnyObject)')) are expected to be equal
91 | taskInfos[task.taskIdentifier] = taskInfo
92 | task.resume()
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:109:63: error: cannot convert value of type '_Concurrency.CheckedContinuation<(FoundationEssentials.URL, FoundationNetworking.URLResponse), any Swift.Error>' to expected argument type '_Concurrency.CheckedContinuation<(FoundationEssentials.URL, Foundation.URLResponse), any Swift.Error>' (aka '_Concurrency.CheckedContinuation<(FoundationEssentials.URL, AnyObject), any Swift.Error>')
107 | continuationQueue.sync {
108 | let task = networkSession.session.downloadTask(with: urlRequest)
109 | let taskInfo = DownloadTaskInfo(continuation: continuation, destinationURL: downloadDestinationURL)
| |- error: cannot convert value of type '_Concurrency.CheckedContinuation<(FoundationEssentials.URL, FoundationNetworking.URLResponse), any Swift.Error>' to expected argument type '_Concurrency.CheckedContinuation<(FoundationEssentials.URL, Foundation.URLResponse), any Swift.Error>' (aka '_Concurrency.CheckedContinuation<(FoundationEssentials.URL, AnyObject), any Swift.Error>')
| `- note: arguments to generic parameter 'T' ('(FoundationEssentials.URL, FoundationNetworking.URLResponse)' and '(FoundationEssentials.URL, Foundation.URLResponse)' (aka '(FoundationEssentials.URL, AnyObject)')) are expected to be equal
110 | taskInfos[task.taskIdentifier] = taskInfo
111 | task.resume()
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:128:63: error: cannot convert value of type '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, FoundationNetworking.URLResponse), any Swift.Error>' to expected argument type '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, Foundation.URLResponse), any Swift.Error>' (aka '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, AnyObject), any Swift.Error>')
126 | if let serializedData = options.data {
127 | let task = networkSession.session.uploadTask(with: urlRequest, from: serializedData.data)
128 | let taskInfo = DataTaskInfo(continuation: continuation)
| |- error: cannot convert value of type '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, FoundationNetworking.URLResponse), any Swift.Error>' to expected argument type '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, Foundation.URLResponse), any Swift.Error>' (aka '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, AnyObject), any Swift.Error>')
| `- note: arguments to generic parameter 'T' ('(FoundationEssentials.Data, FoundationNetworking.URLResponse)' and '(FoundationEssentials.Data, Foundation.URLResponse)' (aka '(FoundationEssentials.Data, AnyObject)')) are expected to be equal
129 | taskInfos[task.taskIdentifier] = taskInfo
130 | task.resume()
[772/954] Compiling BoxSdkGen BaseUrls.swift
/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/NetworkClient.swift:17:14: warning: non-final class 'NetworkClient' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
15 |
16 | /// Networking layer interface
17 | public class NetworkClient: NSObject, URLSessionDelegate, URLSessionTaskDelegate, URLSessionDataDelegate, URLSessionDownloadDelegate {
| `- warning: non-final class 'NetworkClient' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
18 | public static let shared = NetworkClient()
19 |
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:22:17: warning: stored property 'taskInfos' of 'Sendable'-conforming class 'NetworkClient' is mutable; this is an error in the Swift 6 language mode
20 | private let utilityQueue = DispatchQueue.global(qos: .utility)
21 | private let continuationQueue = DispatchQueue(label: "BoxSdkGen.NetworkClient.continuationQueue.\(UUID().uuidString)")
22 | private var taskInfos: [Int: TaskInfo] = [:]
| `- warning: stored property 'taskInfos' of 'Sendable'-conforming class 'NetworkClient' is mutable; this is an error in the Swift 6 language mode
23 |
24 | private override init() {
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:90:59: error: cannot convert value of type '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, FoundationNetworking.URLResponse), any Swift.Error>' to expected argument type '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, Foundation.URLResponse), any Swift.Error>' (aka '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, AnyObject), any Swift.Error>')
88 | continuationQueue.sync {
89 | let task = networkSession.session.dataTask(with: urlRequest)
90 | let taskInfo = DataTaskInfo(continuation: continuation)
| |- error: cannot convert value of type '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, FoundationNetworking.URLResponse), any Swift.Error>' to expected argument type '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, Foundation.URLResponse), any Swift.Error>' (aka '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, AnyObject), any Swift.Error>')
| `- note: arguments to generic parameter 'T' ('(FoundationEssentials.Data, FoundationNetworking.URLResponse)' and '(FoundationEssentials.Data, Foundation.URLResponse)' (aka '(FoundationEssentials.Data, AnyObject)')) are expected to be equal
91 | taskInfos[task.taskIdentifier] = taskInfo
92 | task.resume()
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:109:63: error: cannot convert value of type '_Concurrency.CheckedContinuation<(FoundationEssentials.URL, FoundationNetworking.URLResponse), any Swift.Error>' to expected argument type '_Concurrency.CheckedContinuation<(FoundationEssentials.URL, Foundation.URLResponse), any Swift.Error>' (aka '_Concurrency.CheckedContinuation<(FoundationEssentials.URL, AnyObject), any Swift.Error>')
107 | continuationQueue.sync {
108 | let task = networkSession.session.downloadTask(with: urlRequest)
109 | let taskInfo = DownloadTaskInfo(continuation: continuation, destinationURL: downloadDestinationURL)
| |- error: cannot convert value of type '_Concurrency.CheckedContinuation<(FoundationEssentials.URL, FoundationNetworking.URLResponse), any Swift.Error>' to expected argument type '_Concurrency.CheckedContinuation<(FoundationEssentials.URL, Foundation.URLResponse), any Swift.Error>' (aka '_Concurrency.CheckedContinuation<(FoundationEssentials.URL, AnyObject), any Swift.Error>')
| `- note: arguments to generic parameter 'T' ('(FoundationEssentials.URL, FoundationNetworking.URLResponse)' and '(FoundationEssentials.URL, Foundation.URLResponse)' (aka '(FoundationEssentials.URL, AnyObject)')) are expected to be equal
110 | taskInfos[task.taskIdentifier] = taskInfo
111 | task.resume()
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:128:63: error: cannot convert value of type '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, FoundationNetworking.URLResponse), any Swift.Error>' to expected argument type '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, Foundation.URLResponse), any Swift.Error>' (aka '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, AnyObject), any Swift.Error>')
126 | if let serializedData = options.data {
127 | let task = networkSession.session.uploadTask(with: urlRequest, from: serializedData.data)
128 | let taskInfo = DataTaskInfo(continuation: continuation)
| |- error: cannot convert value of type '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, FoundationNetworking.URLResponse), any Swift.Error>' to expected argument type '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, Foundation.URLResponse), any Swift.Error>' (aka '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, AnyObject), any Swift.Error>')
| `- note: arguments to generic parameter 'T' ('(FoundationEssentials.Data, FoundationNetworking.URLResponse)' and '(FoundationEssentials.Data, Foundation.URLResponse)' (aka '(FoundationEssentials.Data, AnyObject)')) are expected to be equal
129 | taskInfos[task.taskIdentifier] = taskInfo
130 | task.resume()
[773/954] Compiling BoxSdkGen BoxConstants.swift
/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/NetworkClient.swift:17:14: warning: non-final class 'NetworkClient' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
15 |
16 | /// Networking layer interface
17 | public class NetworkClient: NSObject, URLSessionDelegate, URLSessionTaskDelegate, URLSessionDataDelegate, URLSessionDownloadDelegate {
| `- warning: non-final class 'NetworkClient' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
18 | public static let shared = NetworkClient()
19 |
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:22:17: warning: stored property 'taskInfos' of 'Sendable'-conforming class 'NetworkClient' is mutable; this is an error in the Swift 6 language mode
20 | private let utilityQueue = DispatchQueue.global(qos: .utility)
21 | private let continuationQueue = DispatchQueue(label: "BoxSdkGen.NetworkClient.continuationQueue.\(UUID().uuidString)")
22 | private var taskInfos: [Int: TaskInfo] = [:]
| `- warning: stored property 'taskInfos' of 'Sendable'-conforming class 'NetworkClient' is mutable; this is an error in the Swift 6 language mode
23 |
24 | private override init() {
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:90:59: error: cannot convert value of type '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, FoundationNetworking.URLResponse), any Swift.Error>' to expected argument type '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, Foundation.URLResponse), any Swift.Error>' (aka '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, AnyObject), any Swift.Error>')
88 | continuationQueue.sync {
89 | let task = networkSession.session.dataTask(with: urlRequest)
90 | let taskInfo = DataTaskInfo(continuation: continuation)
| |- error: cannot convert value of type '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, FoundationNetworking.URLResponse), any Swift.Error>' to expected argument type '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, Foundation.URLResponse), any Swift.Error>' (aka '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, AnyObject), any Swift.Error>')
| `- note: arguments to generic parameter 'T' ('(FoundationEssentials.Data, FoundationNetworking.URLResponse)' and '(FoundationEssentials.Data, Foundation.URLResponse)' (aka '(FoundationEssentials.Data, AnyObject)')) are expected to be equal
91 | taskInfos[task.taskIdentifier] = taskInfo
92 | task.resume()
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:109:63: error: cannot convert value of type '_Concurrency.CheckedContinuation<(FoundationEssentials.URL, FoundationNetworking.URLResponse), any Swift.Error>' to expected argument type '_Concurrency.CheckedContinuation<(FoundationEssentials.URL, Foundation.URLResponse), any Swift.Error>' (aka '_Concurrency.CheckedContinuation<(FoundationEssentials.URL, AnyObject), any Swift.Error>')
107 | continuationQueue.sync {
108 | let task = networkSession.session.downloadTask(with: urlRequest)
109 | let taskInfo = DownloadTaskInfo(continuation: continuation, destinationURL: downloadDestinationURL)
| |- error: cannot convert value of type '_Concurrency.CheckedContinuation<(FoundationEssentials.URL, FoundationNetworking.URLResponse), any Swift.Error>' to expected argument type '_Concurrency.CheckedContinuation<(FoundationEssentials.URL, Foundation.URLResponse), any Swift.Error>' (aka '_Concurrency.CheckedContinuation<(FoundationEssentials.URL, AnyObject), any Swift.Error>')
| `- note: arguments to generic parameter 'T' ('(FoundationEssentials.URL, FoundationNetworking.URLResponse)' and '(FoundationEssentials.URL, Foundation.URLResponse)' (aka '(FoundationEssentials.URL, AnyObject)')) are expected to be equal
110 | taskInfos[task.taskIdentifier] = taskInfo
111 | task.resume()
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:128:63: error: cannot convert value of type '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, FoundationNetworking.URLResponse), any Swift.Error>' to expected argument type '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, Foundation.URLResponse), any Swift.Error>' (aka '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, AnyObject), any Swift.Error>')
126 | if let serializedData = options.data {
127 | let task = networkSession.session.uploadTask(with: urlRequest, from: serializedData.data)
128 | let taskInfo = DataTaskInfo(continuation: continuation)
| |- error: cannot convert value of type '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, FoundationNetworking.URLResponse), any Swift.Error>' to expected argument type '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, Foundation.URLResponse), any Swift.Error>' (aka '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, AnyObject), any Swift.Error>')
| `- note: arguments to generic parameter 'T' ('(FoundationEssentials.Data, FoundationNetworking.URLResponse)' and '(FoundationEssentials.Data, Foundation.URLResponse)' (aka '(FoundationEssentials.Data, AnyObject)')) are expected to be equal
129 | taskInfos[task.taskIdentifier] = taskInfo
130 | task.resume()
[774/954] Compiling BoxSdkGen FetchConversation.swift
/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/NetworkClient.swift:17:14: warning: non-final class 'NetworkClient' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
15 |
16 | /// Networking layer interface
17 | public class NetworkClient: NSObject, URLSessionDelegate, URLSessionTaskDelegate, URLSessionDataDelegate, URLSessionDownloadDelegate {
| `- warning: non-final class 'NetworkClient' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
18 | public static let shared = NetworkClient()
19 |
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:22:17: warning: stored property 'taskInfos' of 'Sendable'-conforming class 'NetworkClient' is mutable; this is an error in the Swift 6 language mode
20 | private let utilityQueue = DispatchQueue.global(qos: .utility)
21 | private let continuationQueue = DispatchQueue(label: "BoxSdkGen.NetworkClient.continuationQueue.\(UUID().uuidString)")
22 | private var taskInfos: [Int: TaskInfo] = [:]
| `- warning: stored property 'taskInfos' of 'Sendable'-conforming class 'NetworkClient' is mutable; this is an error in the Swift 6 language mode
23 |
24 | private override init() {
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:90:59: error: cannot convert value of type '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, FoundationNetworking.URLResponse), any Swift.Error>' to expected argument type '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, Foundation.URLResponse), any Swift.Error>' (aka '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, AnyObject), any Swift.Error>')
88 | continuationQueue.sync {
89 | let task = networkSession.session.dataTask(with: urlRequest)
90 | let taskInfo = DataTaskInfo(continuation: continuation)
| |- error: cannot convert value of type '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, FoundationNetworking.URLResponse), any Swift.Error>' to expected argument type '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, Foundation.URLResponse), any Swift.Error>' (aka '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, AnyObject), any Swift.Error>')
| `- note: arguments to generic parameter 'T' ('(FoundationEssentials.Data, FoundationNetworking.URLResponse)' and '(FoundationEssentials.Data, Foundation.URLResponse)' (aka '(FoundationEssentials.Data, AnyObject)')) are expected to be equal
91 | taskInfos[task.taskIdentifier] = taskInfo
92 | task.resume()
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:109:63: error: cannot convert value of type '_Concurrency.CheckedContinuation<(FoundationEssentials.URL, FoundationNetworking.URLResponse), any Swift.Error>' to expected argument type '_Concurrency.CheckedContinuation<(FoundationEssentials.URL, Foundation.URLResponse), any Swift.Error>' (aka '_Concurrency.CheckedContinuation<(FoundationEssentials.URL, AnyObject), any Swift.Error>')
107 | continuationQueue.sync {
108 | let task = networkSession.session.downloadTask(with: urlRequest)
109 | let taskInfo = DownloadTaskInfo(continuation: continuation, destinationURL: downloadDestinationURL)
| |- error: cannot convert value of type '_Concurrency.CheckedContinuation<(FoundationEssentials.URL, FoundationNetworking.URLResponse), any Swift.Error>' to expected argument type '_Concurrency.CheckedContinuation<(FoundationEssentials.URL, Foundation.URLResponse), any Swift.Error>' (aka '_Concurrency.CheckedContinuation<(FoundationEssentials.URL, AnyObject), any Swift.Error>')
| `- note: arguments to generic parameter 'T' ('(FoundationEssentials.URL, FoundationNetworking.URLResponse)' and '(FoundationEssentials.URL, Foundation.URLResponse)' (aka '(FoundationEssentials.URL, AnyObject)')) are expected to be equal
110 | taskInfos[task.taskIdentifier] = taskInfo
111 | task.resume()
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:128:63: error: cannot convert value of type '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, FoundationNetworking.URLResponse), any Swift.Error>' to expected argument type '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, Foundation.URLResponse), any Swift.Error>' (aka '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, AnyObject), any Swift.Error>')
126 | if let serializedData = options.data {
127 | let task = networkSession.session.uploadTask(with: urlRequest, from: serializedData.data)
128 | let taskInfo = DataTaskInfo(continuation: continuation)
| |- error: cannot convert value of type '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, FoundationNetworking.URLResponse), any Swift.Error>' to expected argument type '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, Foundation.URLResponse), any Swift.Error>' (aka '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, AnyObject), any Swift.Error>')
| `- note: arguments to generic parameter 'T' ('(FoundationEssentials.Data, FoundationNetworking.URLResponse)' and '(FoundationEssentials.Data, Foundation.URLResponse)' (aka '(FoundationEssentials.Data, AnyObject)')) are expected to be equal
129 | taskInfos[task.taskIdentifier] = taskInfo
130 | task.resume()
[775/954] Compiling BoxSdkGen FetchOptions.swift
/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/NetworkClient.swift:17:14: warning: non-final class 'NetworkClient' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
15 |
16 | /// Networking layer interface
17 | public class NetworkClient: NSObject, URLSessionDelegate, URLSessionTaskDelegate, URLSessionDataDelegate, URLSessionDownloadDelegate {
| `- warning: non-final class 'NetworkClient' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
18 | public static let shared = NetworkClient()
19 |
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:22:17: warning: stored property 'taskInfos' of 'Sendable'-conforming class 'NetworkClient' is mutable; this is an error in the Swift 6 language mode
20 | private let utilityQueue = DispatchQueue.global(qos: .utility)
21 | private let continuationQueue = DispatchQueue(label: "BoxSdkGen.NetworkClient.continuationQueue.\(UUID().uuidString)")
22 | private var taskInfos: [Int: TaskInfo] = [:]
| `- warning: stored property 'taskInfos' of 'Sendable'-conforming class 'NetworkClient' is mutable; this is an error in the Swift 6 language mode
23 |
24 | private override init() {
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:90:59: error: cannot convert value of type '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, FoundationNetworking.URLResponse), any Swift.Error>' to expected argument type '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, Foundation.URLResponse), any Swift.Error>' (aka '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, AnyObject), any Swift.Error>')
88 | continuationQueue.sync {
89 | let task = networkSession.session.dataTask(with: urlRequest)
90 | let taskInfo = DataTaskInfo(continuation: continuation)
| |- error: cannot convert value of type '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, FoundationNetworking.URLResponse), any Swift.Error>' to expected argument type '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, Foundation.URLResponse), any Swift.Error>' (aka '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, AnyObject), any Swift.Error>')
| `- note: arguments to generic parameter 'T' ('(FoundationEssentials.Data, FoundationNetworking.URLResponse)' and '(FoundationEssentials.Data, Foundation.URLResponse)' (aka '(FoundationEssentials.Data, AnyObject)')) are expected to be equal
91 | taskInfos[task.taskIdentifier] = taskInfo
92 | task.resume()
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:109:63: error: cannot convert value of type '_Concurrency.CheckedContinuation<(FoundationEssentials.URL, FoundationNetworking.URLResponse), any Swift.Error>' to expected argument type '_Concurrency.CheckedContinuation<(FoundationEssentials.URL, Foundation.URLResponse), any Swift.Error>' (aka '_Concurrency.CheckedContinuation<(FoundationEssentials.URL, AnyObject), any Swift.Error>')
107 | continuationQueue.sync {
108 | let task = networkSession.session.downloadTask(with: urlRequest)
109 | let taskInfo = DownloadTaskInfo(continuation: continuation, destinationURL: downloadDestinationURL)
| |- error: cannot convert value of type '_Concurrency.CheckedContinuation<(FoundationEssentials.URL, FoundationNetworking.URLResponse), any Swift.Error>' to expected argument type '_Concurrency.CheckedContinuation<(FoundationEssentials.URL, Foundation.URLResponse), any Swift.Error>' (aka '_Concurrency.CheckedContinuation<(FoundationEssentials.URL, AnyObject), any Swift.Error>')
| `- note: arguments to generic parameter 'T' ('(FoundationEssentials.URL, FoundationNetworking.URLResponse)' and '(FoundationEssentials.URL, Foundation.URLResponse)' (aka '(FoundationEssentials.URL, AnyObject)')) are expected to be equal
110 | taskInfos[task.taskIdentifier] = taskInfo
111 | task.resume()
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:128:63: error: cannot convert value of type '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, FoundationNetworking.URLResponse), any Swift.Error>' to expected argument type '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, Foundation.URLResponse), any Swift.Error>' (aka '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, AnyObject), any Swift.Error>')
126 | if let serializedData = options.data {
127 | let task = networkSession.session.uploadTask(with: urlRequest, from: serializedData.data)
128 | let taskInfo = DataTaskInfo(continuation: continuation)
| |- error: cannot convert value of type '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, FoundationNetworking.URLResponse), any Swift.Error>' to expected argument type '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, Foundation.URLResponse), any Swift.Error>' (aka '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, AnyObject), any Swift.Error>')
| `- note: arguments to generic parameter 'T' ('(FoundationEssentials.Data, FoundationNetworking.URLResponse)' and '(FoundationEssentials.Data, Foundation.URLResponse)' (aka '(FoundationEssentials.Data, AnyObject)')) are expected to be equal
129 | taskInfos[task.taskIdentifier] = taskInfo
130 | task.resume()
[776/954] Compiling BoxSdkGen FetchResponse.swift
/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/NetworkClient.swift:17:14: warning: non-final class 'NetworkClient' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
15 |
16 | /// Networking layer interface
17 | public class NetworkClient: NSObject, URLSessionDelegate, URLSessionTaskDelegate, URLSessionDataDelegate, URLSessionDownloadDelegate {
| `- warning: non-final class 'NetworkClient' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
18 | public static let shared = NetworkClient()
19 |
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:22:17: warning: stored property 'taskInfos' of 'Sendable'-conforming class 'NetworkClient' is mutable; this is an error in the Swift 6 language mode
20 | private let utilityQueue = DispatchQueue.global(qos: .utility)
21 | private let continuationQueue = DispatchQueue(label: "BoxSdkGen.NetworkClient.continuationQueue.\(UUID().uuidString)")
22 | private var taskInfos: [Int: TaskInfo] = [:]
| `- warning: stored property 'taskInfos' of 'Sendable'-conforming class 'NetworkClient' is mutable; this is an error in the Swift 6 language mode
23 |
24 | private override init() {
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:90:59: error: cannot convert value of type '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, FoundationNetworking.URLResponse), any Swift.Error>' to expected argument type '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, Foundation.URLResponse), any Swift.Error>' (aka '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, AnyObject), any Swift.Error>')
88 | continuationQueue.sync {
89 | let task = networkSession.session.dataTask(with: urlRequest)
90 | let taskInfo = DataTaskInfo(continuation: continuation)
| |- error: cannot convert value of type '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, FoundationNetworking.URLResponse), any Swift.Error>' to expected argument type '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, Foundation.URLResponse), any Swift.Error>' (aka '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, AnyObject), any Swift.Error>')
| `- note: arguments to generic parameter 'T' ('(FoundationEssentials.Data, FoundationNetworking.URLResponse)' and '(FoundationEssentials.Data, Foundation.URLResponse)' (aka '(FoundationEssentials.Data, AnyObject)')) are expected to be equal
91 | taskInfos[task.taskIdentifier] = taskInfo
92 | task.resume()
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:109:63: error: cannot convert value of type '_Concurrency.CheckedContinuation<(FoundationEssentials.URL, FoundationNetworking.URLResponse), any Swift.Error>' to expected argument type '_Concurrency.CheckedContinuation<(FoundationEssentials.URL, Foundation.URLResponse), any Swift.Error>' (aka '_Concurrency.CheckedContinuation<(FoundationEssentials.URL, AnyObject), any Swift.Error>')
107 | continuationQueue.sync {
108 | let task = networkSession.session.downloadTask(with: urlRequest)
109 | let taskInfo = DownloadTaskInfo(continuation: continuation, destinationURL: downloadDestinationURL)
| |- error: cannot convert value of type '_Concurrency.CheckedContinuation<(FoundationEssentials.URL, FoundationNetworking.URLResponse), any Swift.Error>' to expected argument type '_Concurrency.CheckedContinuation<(FoundationEssentials.URL, Foundation.URLResponse), any Swift.Error>' (aka '_Concurrency.CheckedContinuation<(FoundationEssentials.URL, AnyObject), any Swift.Error>')
| `- note: arguments to generic parameter 'T' ('(FoundationEssentials.URL, FoundationNetworking.URLResponse)' and '(FoundationEssentials.URL, Foundation.URLResponse)' (aka '(FoundationEssentials.URL, AnyObject)')) are expected to be equal
110 | taskInfos[task.taskIdentifier] = taskInfo
111 | task.resume()
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:128:63: error: cannot convert value of type '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, FoundationNetworking.URLResponse), any Swift.Error>' to expected argument type '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, Foundation.URLResponse), any Swift.Error>' (aka '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, AnyObject), any Swift.Error>')
126 | if let serializedData = options.data {
127 | let task = networkSession.session.uploadTask(with: urlRequest, from: serializedData.data)
128 | let taskInfo = DataTaskInfo(continuation: continuation)
| |- error: cannot convert value of type '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, FoundationNetworking.URLResponse), any Swift.Error>' to expected argument type '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, Foundation.URLResponse), any Swift.Error>' (aka '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, AnyObject), any Swift.Error>')
| `- note: arguments to generic parameter 'T' ('(FoundationEssentials.Data, FoundationNetworking.URLResponse)' and '(FoundationEssentials.Data, Foundation.URLResponse)' (aka '(FoundationEssentials.Data, AnyObject)')) are expected to be equal
129 | taskInfos[task.taskIdentifier] = taskInfo
130 | task.resume()
[777/954] Compiling BoxSdkGen MultipartItem.swift
/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/NetworkClient.swift:17:14: warning: non-final class 'NetworkClient' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
15 |
16 | /// Networking layer interface
17 | public class NetworkClient: NSObject, URLSessionDelegate, URLSessionTaskDelegate, URLSessionDataDelegate, URLSessionDownloadDelegate {
| `- warning: non-final class 'NetworkClient' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
18 | public static let shared = NetworkClient()
19 |
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:22:17: warning: stored property 'taskInfos' of 'Sendable'-conforming class 'NetworkClient' is mutable; this is an error in the Swift 6 language mode
20 | private let utilityQueue = DispatchQueue.global(qos: .utility)
21 | private let continuationQueue = DispatchQueue(label: "BoxSdkGen.NetworkClient.continuationQueue.\(UUID().uuidString)")
22 | private var taskInfos: [Int: TaskInfo] = [:]
| `- warning: stored property 'taskInfos' of 'Sendable'-conforming class 'NetworkClient' is mutable; this is an error in the Swift 6 language mode
23 |
24 | private override init() {
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:90:59: error: cannot convert value of type '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, FoundationNetworking.URLResponse), any Swift.Error>' to expected argument type '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, Foundation.URLResponse), any Swift.Error>' (aka '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, AnyObject), any Swift.Error>')
88 | continuationQueue.sync {
89 | let task = networkSession.session.dataTask(with: urlRequest)
90 | let taskInfo = DataTaskInfo(continuation: continuation)
| |- error: cannot convert value of type '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, FoundationNetworking.URLResponse), any Swift.Error>' to expected argument type '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, Foundation.URLResponse), any Swift.Error>' (aka '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, AnyObject), any Swift.Error>')
| `- note: arguments to generic parameter 'T' ('(FoundationEssentials.Data, FoundationNetworking.URLResponse)' and '(FoundationEssentials.Data, Foundation.URLResponse)' (aka '(FoundationEssentials.Data, AnyObject)')) are expected to be equal
91 | taskInfos[task.taskIdentifier] = taskInfo
92 | task.resume()
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:109:63: error: cannot convert value of type '_Concurrency.CheckedContinuation<(FoundationEssentials.URL, FoundationNetworking.URLResponse), any Swift.Error>' to expected argument type '_Concurrency.CheckedContinuation<(FoundationEssentials.URL, Foundation.URLResponse), any Swift.Error>' (aka '_Concurrency.CheckedContinuation<(FoundationEssentials.URL, AnyObject), any Swift.Error>')
107 | continuationQueue.sync {
108 | let task = networkSession.session.downloadTask(with: urlRequest)
109 | let taskInfo = DownloadTaskInfo(continuation: continuation, destinationURL: downloadDestinationURL)
| |- error: cannot convert value of type '_Concurrency.CheckedContinuation<(FoundationEssentials.URL, FoundationNetworking.URLResponse), any Swift.Error>' to expected argument type '_Concurrency.CheckedContinuation<(FoundationEssentials.URL, Foundation.URLResponse), any Swift.Error>' (aka '_Concurrency.CheckedContinuation<(FoundationEssentials.URL, AnyObject), any Swift.Error>')
| `- note: arguments to generic parameter 'T' ('(FoundationEssentials.URL, FoundationNetworking.URLResponse)' and '(FoundationEssentials.URL, Foundation.URLResponse)' (aka '(FoundationEssentials.URL, AnyObject)')) are expected to be equal
110 | taskInfos[task.taskIdentifier] = taskInfo
111 | task.resume()
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:128:63: error: cannot convert value of type '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, FoundationNetworking.URLResponse), any Swift.Error>' to expected argument type '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, Foundation.URLResponse), any Swift.Error>' (aka '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, AnyObject), any Swift.Error>')
126 | if let serializedData = options.data {
127 | let task = networkSession.session.uploadTask(with: urlRequest, from: serializedData.data)
128 | let taskInfo = DataTaskInfo(continuation: continuation)
| |- error: cannot convert value of type '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, FoundationNetworking.URLResponse), any Swift.Error>' to expected argument type '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, Foundation.URLResponse), any Swift.Error>' (aka '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, AnyObject), any Swift.Error>')
| `- note: arguments to generic parameter 'T' ('(FoundationEssentials.Data, FoundationNetworking.URLResponse)' and '(FoundationEssentials.Data, Foundation.URLResponse)' (aka '(FoundationEssentials.Data, AnyObject)')) are expected to be equal
129 | taskInfos[task.taskIdentifier] = taskInfo
130 | task.resume()
[778/954] Compiling BoxSdkGen NetworkClient.swift
/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/NetworkClient.swift:17:14: warning: non-final class 'NetworkClient' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
15 |
16 | /// Networking layer interface
17 | public class NetworkClient: NSObject, URLSessionDelegate, URLSessionTaskDelegate, URLSessionDataDelegate, URLSessionDownloadDelegate {
| `- warning: non-final class 'NetworkClient' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
18 | public static let shared = NetworkClient()
19 |
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:22:17: warning: stored property 'taskInfos' of 'Sendable'-conforming class 'NetworkClient' is mutable; this is an error in the Swift 6 language mode
20 | private let utilityQueue = DispatchQueue.global(qos: .utility)
21 | private let continuationQueue = DispatchQueue(label: "BoxSdkGen.NetworkClient.continuationQueue.\(UUID().uuidString)")
22 | private var taskInfos: [Int: TaskInfo] = [:]
| `- warning: stored property 'taskInfos' of 'Sendable'-conforming class 'NetworkClient' is mutable; this is an error in the Swift 6 language mode
23 |
24 | private override init() {
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:90:59: error: cannot convert value of type '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, FoundationNetworking.URLResponse), any Swift.Error>' to expected argument type '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, Foundation.URLResponse), any Swift.Error>' (aka '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, AnyObject), any Swift.Error>')
88 | continuationQueue.sync {
89 | let task = networkSession.session.dataTask(with: urlRequest)
90 | let taskInfo = DataTaskInfo(continuation: continuation)
| |- error: cannot convert value of type '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, FoundationNetworking.URLResponse), any Swift.Error>' to expected argument type '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, Foundation.URLResponse), any Swift.Error>' (aka '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, AnyObject), any Swift.Error>')
| `- note: arguments to generic parameter 'T' ('(FoundationEssentials.Data, FoundationNetworking.URLResponse)' and '(FoundationEssentials.Data, Foundation.URLResponse)' (aka '(FoundationEssentials.Data, AnyObject)')) are expected to be equal
91 | taskInfos[task.taskIdentifier] = taskInfo
92 | task.resume()
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:109:63: error: cannot convert value of type '_Concurrency.CheckedContinuation<(FoundationEssentials.URL, FoundationNetworking.URLResponse), any Swift.Error>' to expected argument type '_Concurrency.CheckedContinuation<(FoundationEssentials.URL, Foundation.URLResponse), any Swift.Error>' (aka '_Concurrency.CheckedContinuation<(FoundationEssentials.URL, AnyObject), any Swift.Error>')
107 | continuationQueue.sync {
108 | let task = networkSession.session.downloadTask(with: urlRequest)
109 | let taskInfo = DownloadTaskInfo(continuation: continuation, destinationURL: downloadDestinationURL)
| |- error: cannot convert value of type '_Concurrency.CheckedContinuation<(FoundationEssentials.URL, FoundationNetworking.URLResponse), any Swift.Error>' to expected argument type '_Concurrency.CheckedContinuation<(FoundationEssentials.URL, Foundation.URLResponse), any Swift.Error>' (aka '_Concurrency.CheckedContinuation<(FoundationEssentials.URL, AnyObject), any Swift.Error>')
| `- note: arguments to generic parameter 'T' ('(FoundationEssentials.URL, FoundationNetworking.URLResponse)' and '(FoundationEssentials.URL, Foundation.URLResponse)' (aka '(FoundationEssentials.URL, AnyObject)')) are expected to be equal
110 | taskInfos[task.taskIdentifier] = taskInfo
111 | task.resume()
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:128:63: error: cannot convert value of type '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, FoundationNetworking.URLResponse), any Swift.Error>' to expected argument type '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, Foundation.URLResponse), any Swift.Error>' (aka '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, AnyObject), any Swift.Error>')
126 | if let serializedData = options.data {
127 | let task = networkSession.session.uploadTask(with: urlRequest, from: serializedData.data)
128 | let taskInfo = DataTaskInfo(continuation: continuation)
| |- error: cannot convert value of type '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, FoundationNetworking.URLResponse), any Swift.Error>' to expected argument type '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, Foundation.URLResponse), any Swift.Error>' (aka '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, AnyObject), any Swift.Error>')
| `- note: arguments to generic parameter 'T' ('(FoundationEssentials.Data, FoundationNetworking.URLResponse)' and '(FoundationEssentials.Data, Foundation.URLResponse)' (aka '(FoundationEssentials.Data, AnyObject)')) are expected to be equal
129 | taskInfos[task.taskIdentifier] = taskInfo
130 | task.resume()
[779/954] Compiling BoxSdkGen NetworkSession.swift
/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/NetworkClient.swift:17:14: warning: non-final class 'NetworkClient' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
15 |
16 | /// Networking layer interface
17 | public class NetworkClient: NSObject, URLSessionDelegate, URLSessionTaskDelegate, URLSessionDataDelegate, URLSessionDownloadDelegate {
| `- warning: non-final class 'NetworkClient' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
18 | public static let shared = NetworkClient()
19 |
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:22:17: warning: stored property 'taskInfos' of 'Sendable'-conforming class 'NetworkClient' is mutable; this is an error in the Swift 6 language mode
20 | private let utilityQueue = DispatchQueue.global(qos: .utility)
21 | private let continuationQueue = DispatchQueue(label: "BoxSdkGen.NetworkClient.continuationQueue.\(UUID().uuidString)")
22 | private var taskInfos: [Int: TaskInfo] = [:]
| `- warning: stored property 'taskInfos' of 'Sendable'-conforming class 'NetworkClient' is mutable; this is an error in the Swift 6 language mode
23 |
24 | private override init() {
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:90:59: error: cannot convert value of type '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, FoundationNetworking.URLResponse), any Swift.Error>' to expected argument type '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, Foundation.URLResponse), any Swift.Error>' (aka '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, AnyObject), any Swift.Error>')
88 | continuationQueue.sync {
89 | let task = networkSession.session.dataTask(with: urlRequest)
90 | let taskInfo = DataTaskInfo(continuation: continuation)
| |- error: cannot convert value of type '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, FoundationNetworking.URLResponse), any Swift.Error>' to expected argument type '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, Foundation.URLResponse), any Swift.Error>' (aka '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, AnyObject), any Swift.Error>')
| `- note: arguments to generic parameter 'T' ('(FoundationEssentials.Data, FoundationNetworking.URLResponse)' and '(FoundationEssentials.Data, Foundation.URLResponse)' (aka '(FoundationEssentials.Data, AnyObject)')) are expected to be equal
91 | taskInfos[task.taskIdentifier] = taskInfo
92 | task.resume()
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:109:63: error: cannot convert value of type '_Concurrency.CheckedContinuation<(FoundationEssentials.URL, FoundationNetworking.URLResponse), any Swift.Error>' to expected argument type '_Concurrency.CheckedContinuation<(FoundationEssentials.URL, Foundation.URLResponse), any Swift.Error>' (aka '_Concurrency.CheckedContinuation<(FoundationEssentials.URL, AnyObject), any Swift.Error>')
107 | continuationQueue.sync {
108 | let task = networkSession.session.downloadTask(with: urlRequest)
109 | let taskInfo = DownloadTaskInfo(continuation: continuation, destinationURL: downloadDestinationURL)
| |- error: cannot convert value of type '_Concurrency.CheckedContinuation<(FoundationEssentials.URL, FoundationNetworking.URLResponse), any Swift.Error>' to expected argument type '_Concurrency.CheckedContinuation<(FoundationEssentials.URL, Foundation.URLResponse), any Swift.Error>' (aka '_Concurrency.CheckedContinuation<(FoundationEssentials.URL, AnyObject), any Swift.Error>')
| `- note: arguments to generic parameter 'T' ('(FoundationEssentials.URL, FoundationNetworking.URLResponse)' and '(FoundationEssentials.URL, Foundation.URLResponse)' (aka '(FoundationEssentials.URL, AnyObject)')) are expected to be equal
110 | taskInfos[task.taskIdentifier] = taskInfo
111 | task.resume()
/host/spi-builder-workspace/Sources/Networking/NetworkClient.swift:128:63: error: cannot convert value of type '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, FoundationNetworking.URLResponse), any Swift.Error>' to expected argument type '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, Foundation.URLResponse), any Swift.Error>' (aka '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, AnyObject), any Swift.Error>')
126 | if let serializedData = options.data {
127 | let task = networkSession.session.uploadTask(with: urlRequest, from: serializedData.data)
128 | let taskInfo = DataTaskInfo(continuation: continuation)
| |- error: cannot convert value of type '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, FoundationNetworking.URLResponse), any Swift.Error>' to expected argument type '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, Foundation.URLResponse), any Swift.Error>' (aka '_Concurrency.CheckedContinuation<(FoundationEssentials.Data, AnyObject), any Swift.Error>')
| `- note: arguments to generic parameter 'T' ('(FoundationEssentials.Data, FoundationNetworking.URLResponse)' and '(FoundationEssentials.Data, Foundation.URLResponse)' (aka '(FoundationEssentials.Data, AnyObject)')) are expected to be equal
129 | taskInfos[task.taskIdentifier] = taskInfo
130 | task.resume()
[780/979] Compiling BoxSdkGen UpdateCollaborationByIdRequestBody.swift
/host/spi-builder-workspace/Sources/Managers/UserCollaborations/UserCollaborationsManager.swift:55:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it [#no-usage]
53 | public func deleteCollaborationById(collaborationId: String, headers: DeleteCollaborationByIdHeaders = DeleteCollaborationByIdHeaders()) async throws {
54 | let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
55 | let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/collaborations/")\(collaborationId)", 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]
56 | }
57 |
/host/spi-builder-workspace/Sources/Managers/Users/UsersManager.swift:131:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it [#no-usage]
129 | let queryParamsMap: [String: String] = Utils.Dictionary.prepareParams(map: ["notify": Utils.Strings.toString(value: queryParams.notify), "force": Utils.Strings.toString(value: queryParams.force)])
130 | let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
131 | let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/users/")\(userId)", method: "DELETE", params: queryParamsMap, 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]
132 | }
133 |
[781/979] Compiling BoxSdkGen UpdateCollaborationByIdRequestBodyRoleField.swift
/host/spi-builder-workspace/Sources/Managers/UserCollaborations/UserCollaborationsManager.swift:55:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it [#no-usage]
53 | public func deleteCollaborationById(collaborationId: String, headers: DeleteCollaborationByIdHeaders = DeleteCollaborationByIdHeaders()) async throws {
54 | let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
55 | let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/collaborations/")\(collaborationId)", 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]
56 | }
57 |
/host/spi-builder-workspace/Sources/Managers/Users/UsersManager.swift:131:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it [#no-usage]
129 | let queryParamsMap: [String: String] = Utils.Dictionary.prepareParams(map: ["notify": Utils.Strings.toString(value: queryParams.notify), "force": Utils.Strings.toString(value: queryParams.force)])
130 | let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
131 | let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/users/")\(userId)", method: "DELETE", params: queryParamsMap, 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]
132 | }
133 |
[782/979] Compiling BoxSdkGen UpdateCollaborationByIdRequestBodyStatusField.swift
/host/spi-builder-workspace/Sources/Managers/UserCollaborations/UserCollaborationsManager.swift:55:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it [#no-usage]
53 | public func deleteCollaborationById(collaborationId: String, headers: DeleteCollaborationByIdHeaders = DeleteCollaborationByIdHeaders()) async throws {
54 | let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
55 | let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/collaborations/")\(collaborationId)", 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]
56 | }
57 |
/host/spi-builder-workspace/Sources/Managers/Users/UsersManager.swift:131:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it [#no-usage]
129 | let queryParamsMap: [String: String] = Utils.Dictionary.prepareParams(map: ["notify": Utils.Strings.toString(value: queryParams.notify), "force": Utils.Strings.toString(value: queryParams.force)])
130 | let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
131 | let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/users/")\(userId)", method: "DELETE", params: queryParamsMap, 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]
132 | }
133 |
[783/979] Compiling BoxSdkGen UserCollaborationsManager.swift
/host/spi-builder-workspace/Sources/Managers/UserCollaborations/UserCollaborationsManager.swift:55:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it [#no-usage]
53 | public func deleteCollaborationById(collaborationId: String, headers: DeleteCollaborationByIdHeaders = DeleteCollaborationByIdHeaders()) async throws {
54 | let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
55 | let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/collaborations/")\(collaborationId)", 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]
56 | }
57 |
/host/spi-builder-workspace/Sources/Managers/Users/UsersManager.swift:131:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it [#no-usage]
129 | let queryParamsMap: [String: String] = Utils.Dictionary.prepareParams(map: ["notify": Utils.Strings.toString(value: queryParams.notify), "force": Utils.Strings.toString(value: queryParams.force)])
130 | let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
131 | let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/users/")\(userId)", method: "DELETE", params: queryParamsMap, 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]
132 | }
133 |
[784/979] Compiling BoxSdkGen CreateUserHeaders.swift
/host/spi-builder-workspace/Sources/Managers/UserCollaborations/UserCollaborationsManager.swift:55:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it [#no-usage]
53 | public func deleteCollaborationById(collaborationId: String, headers: DeleteCollaborationByIdHeaders = DeleteCollaborationByIdHeaders()) async throws {
54 | let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
55 | let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/collaborations/")\(collaborationId)", 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]
56 | }
57 |
/host/spi-builder-workspace/Sources/Managers/Users/UsersManager.swift:131:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it [#no-usage]
129 | let queryParamsMap: [String: String] = Utils.Dictionary.prepareParams(map: ["notify": Utils.Strings.toString(value: queryParams.notify), "force": Utils.Strings.toString(value: queryParams.force)])
130 | let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
131 | let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/users/")\(userId)", method: "DELETE", params: queryParamsMap, 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]
132 | }
133 |
[785/979] Compiling BoxSdkGen CreateUserQueryParams.swift
/host/spi-builder-workspace/Sources/Managers/UserCollaborations/UserCollaborationsManager.swift:55:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it [#no-usage]
53 | public func deleteCollaborationById(collaborationId: String, headers: DeleteCollaborationByIdHeaders = DeleteCollaborationByIdHeaders()) async throws {
54 | let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
55 | let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/collaborations/")\(collaborationId)", 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]
56 | }
57 |
/host/spi-builder-workspace/Sources/Managers/Users/UsersManager.swift:131:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it [#no-usage]
129 | let queryParamsMap: [String: String] = Utils.Dictionary.prepareParams(map: ["notify": Utils.Strings.toString(value: queryParams.notify), "force": Utils.Strings.toString(value: queryParams.force)])
130 | let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
131 | let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/users/")\(userId)", method: "DELETE", params: queryParamsMap, 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]
132 | }
133 |
[786/979] Compiling BoxSdkGen CreateUserRequestBody.swift
/host/spi-builder-workspace/Sources/Managers/UserCollaborations/UserCollaborationsManager.swift:55:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it [#no-usage]
53 | public func deleteCollaborationById(collaborationId: String, headers: DeleteCollaborationByIdHeaders = DeleteCollaborationByIdHeaders()) async throws {
54 | let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
55 | let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/collaborations/")\(collaborationId)", 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]
56 | }
57 |
/host/spi-builder-workspace/Sources/Managers/Users/UsersManager.swift:131:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it [#no-usage]
129 | let queryParamsMap: [String: String] = Utils.Dictionary.prepareParams(map: ["notify": Utils.Strings.toString(value: queryParams.notify), "force": Utils.Strings.toString(value: queryParams.force)])
130 | let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
131 | let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/users/")\(userId)", method: "DELETE", params: queryParamsMap, 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]
132 | }
133 |
[787/979] Compiling BoxSdkGen CreateUserRequestBodyRoleField.swift
/host/spi-builder-workspace/Sources/Managers/UserCollaborations/UserCollaborationsManager.swift:55:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it [#no-usage]
53 | public func deleteCollaborationById(collaborationId: String, headers: DeleteCollaborationByIdHeaders = DeleteCollaborationByIdHeaders()) async throws {
54 | let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
55 | let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/collaborations/")\(collaborationId)", 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]
56 | }
57 |
/host/spi-builder-workspace/Sources/Managers/Users/UsersManager.swift:131:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it [#no-usage]
129 | let queryParamsMap: [String: String] = Utils.Dictionary.prepareParams(map: ["notify": Utils.Strings.toString(value: queryParams.notify), "force": Utils.Strings.toString(value: queryParams.force)])
130 | let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
131 | let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/users/")\(userId)", method: "DELETE", params: queryParamsMap, 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]
132 | }
133 |
[788/979] Compiling BoxSdkGen CreateUserRequestBodyStatusField.swift
/host/spi-builder-workspace/Sources/Managers/UserCollaborations/UserCollaborationsManager.swift:55:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it [#no-usage]
53 | public func deleteCollaborationById(collaborationId: String, headers: DeleteCollaborationByIdHeaders = DeleteCollaborationByIdHeaders()) async throws {
54 | let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
55 | let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/collaborations/")\(collaborationId)", 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]
56 | }
57 |
/host/spi-builder-workspace/Sources/Managers/Users/UsersManager.swift:131:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it [#no-usage]
129 | let queryParamsMap: [String: String] = Utils.Dictionary.prepareParams(map: ["notify": Utils.Strings.toString(value: queryParams.notify), "force": Utils.Strings.toString(value: queryParams.force)])
130 | let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
131 | let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/users/")\(userId)", method: "DELETE", params: queryParamsMap, 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]
132 | }
133 |
[789/979] Compiling BoxSdkGen DeleteUserByIdHeaders.swift
/host/spi-builder-workspace/Sources/Managers/UserCollaborations/UserCollaborationsManager.swift:55:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it [#no-usage]
53 | public func deleteCollaborationById(collaborationId: String, headers: DeleteCollaborationByIdHeaders = DeleteCollaborationByIdHeaders()) async throws {
54 | let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
55 | let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/collaborations/")\(collaborationId)", 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]
56 | }
57 |
/host/spi-builder-workspace/Sources/Managers/Users/UsersManager.swift:131:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it [#no-usage]
129 | let queryParamsMap: [String: String] = Utils.Dictionary.prepareParams(map: ["notify": Utils.Strings.toString(value: queryParams.notify), "force": Utils.Strings.toString(value: queryParams.force)])
130 | let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
131 | let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/users/")\(userId)", method: "DELETE", params: queryParamsMap, 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]
132 | }
133 |
[790/979] Compiling BoxSdkGen DeleteUserByIdQueryParams.swift
/host/spi-builder-workspace/Sources/Managers/UserCollaborations/UserCollaborationsManager.swift:55:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it [#no-usage]
53 | public func deleteCollaborationById(collaborationId: String, headers: DeleteCollaborationByIdHeaders = DeleteCollaborationByIdHeaders()) async throws {
54 | let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
55 | let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/collaborations/")\(collaborationId)", 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]
56 | }
57 |
/host/spi-builder-workspace/Sources/Managers/Users/UsersManager.swift:131:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it [#no-usage]
129 | let queryParamsMap: [String: String] = Utils.Dictionary.prepareParams(map: ["notify": Utils.Strings.toString(value: queryParams.notify), "force": Utils.Strings.toString(value: queryParams.force)])
130 | let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
131 | let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/users/")\(userId)", method: "DELETE", params: queryParamsMap, 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]
132 | }
133 |
[791/979] Compiling BoxSdkGen GetUserByIdHeaders.swift
/host/spi-builder-workspace/Sources/Managers/UserCollaborations/UserCollaborationsManager.swift:55:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it [#no-usage]
53 | public func deleteCollaborationById(collaborationId: String, headers: DeleteCollaborationByIdHeaders = DeleteCollaborationByIdHeaders()) async throws {
54 | let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
55 | let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/collaborations/")\(collaborationId)", 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]
56 | }
57 |
/host/spi-builder-workspace/Sources/Managers/Users/UsersManager.swift:131:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it [#no-usage]
129 | let queryParamsMap: [String: String] = Utils.Dictionary.prepareParams(map: ["notify": Utils.Strings.toString(value: queryParams.notify), "force": Utils.Strings.toString(value: queryParams.force)])
130 | let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
131 | let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/users/")\(userId)", method: "DELETE", params: queryParamsMap, 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]
132 | }
133 |
[792/979] Compiling BoxSdkGen GetUserByIdQueryParams.swift
/host/spi-builder-workspace/Sources/Managers/UserCollaborations/UserCollaborationsManager.swift:55:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it [#no-usage]
53 | public func deleteCollaborationById(collaborationId: String, headers: DeleteCollaborationByIdHeaders = DeleteCollaborationByIdHeaders()) async throws {
54 | let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
55 | let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/collaborations/")\(collaborationId)", 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]
56 | }
57 |
/host/spi-builder-workspace/Sources/Managers/Users/UsersManager.swift:131:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it [#no-usage]
129 | let queryParamsMap: [String: String] = Utils.Dictionary.prepareParams(map: ["notify": Utils.Strings.toString(value: queryParams.notify), "force": Utils.Strings.toString(value: queryParams.force)])
130 | let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
131 | let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/users/")\(userId)", method: "DELETE", params: queryParamsMap, 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]
132 | }
133 |
[793/979] Compiling BoxSdkGen GetUserMeHeaders.swift
/host/spi-builder-workspace/Sources/Managers/UserCollaborations/UserCollaborationsManager.swift:55:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it [#no-usage]
53 | public func deleteCollaborationById(collaborationId: String, headers: DeleteCollaborationByIdHeaders = DeleteCollaborationByIdHeaders()) async throws {
54 | let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
55 | let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/collaborations/")\(collaborationId)", 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]
56 | }
57 |
/host/spi-builder-workspace/Sources/Managers/Users/UsersManager.swift:131:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it [#no-usage]
129 | let queryParamsMap: [String: String] = Utils.Dictionary.prepareParams(map: ["notify": Utils.Strings.toString(value: queryParams.notify), "force": Utils.Strings.toString(value: queryParams.force)])
130 | let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
131 | let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/users/")\(userId)", method: "DELETE", params: queryParamsMap, 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]
132 | }
133 |
[794/979] Compiling BoxSdkGen GetUserMeQueryParams.swift
/host/spi-builder-workspace/Sources/Managers/UserCollaborations/UserCollaborationsManager.swift:55:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it [#no-usage]
53 | public func deleteCollaborationById(collaborationId: String, headers: DeleteCollaborationByIdHeaders = DeleteCollaborationByIdHeaders()) async throws {
54 | let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
55 | let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/collaborations/")\(collaborationId)", 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]
56 | }
57 |
/host/spi-builder-workspace/Sources/Managers/Users/UsersManager.swift:131:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it [#no-usage]
129 | let queryParamsMap: [String: String] = Utils.Dictionary.prepareParams(map: ["notify": Utils.Strings.toString(value: queryParams.notify), "force": Utils.Strings.toString(value: queryParams.force)])
130 | let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
131 | let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/users/")\(userId)", method: "DELETE", params: queryParamsMap, 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]
132 | }
133 |
[795/979] Compiling BoxSdkGen GetUsersHeaders.swift
/host/spi-builder-workspace/Sources/Managers/UserCollaborations/UserCollaborationsManager.swift:55:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it [#no-usage]
53 | public func deleteCollaborationById(collaborationId: String, headers: DeleteCollaborationByIdHeaders = DeleteCollaborationByIdHeaders()) async throws {
54 | let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
55 | let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/collaborations/")\(collaborationId)", 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]
56 | }
57 |
/host/spi-builder-workspace/Sources/Managers/Users/UsersManager.swift:131:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it [#no-usage]
129 | let queryParamsMap: [String: String] = Utils.Dictionary.prepareParams(map: ["notify": Utils.Strings.toString(value: queryParams.notify), "force": Utils.Strings.toString(value: queryParams.force)])
130 | let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
131 | let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/users/")\(userId)", method: "DELETE", params: queryParamsMap, 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]
132 | }
133 |
[796/979] Compiling BoxSdkGen GetUsersQueryParams.swift
/host/spi-builder-workspace/Sources/Managers/UserCollaborations/UserCollaborationsManager.swift:55:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it [#no-usage]
53 | public func deleteCollaborationById(collaborationId: String, headers: DeleteCollaborationByIdHeaders = DeleteCollaborationByIdHeaders()) async throws {
54 | let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
55 | let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/collaborations/")\(collaborationId)", 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]
56 | }
57 |
/host/spi-builder-workspace/Sources/Managers/Users/UsersManager.swift:131:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it [#no-usage]
129 | let queryParamsMap: [String: String] = Utils.Dictionary.prepareParams(map: ["notify": Utils.Strings.toString(value: queryParams.notify), "force": Utils.Strings.toString(value: queryParams.force)])
130 | let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
131 | let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/users/")\(userId)", method: "DELETE", params: queryParamsMap, 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]
132 | }
133 |
[797/979] Compiling BoxSdkGen GetUsersQueryParamsUserTypeField.swift
/host/spi-builder-workspace/Sources/Managers/UserCollaborations/UserCollaborationsManager.swift:55:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it [#no-usage]
53 | public func deleteCollaborationById(collaborationId: String, headers: DeleteCollaborationByIdHeaders = DeleteCollaborationByIdHeaders()) async throws {
54 | let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
55 | let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/collaborations/")\(collaborationId)", 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]
56 | }
57 |
/host/spi-builder-workspace/Sources/Managers/Users/UsersManager.swift:131:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it [#no-usage]
129 | let queryParamsMap: [String: String] = Utils.Dictionary.prepareParams(map: ["notify": Utils.Strings.toString(value: queryParams.notify), "force": Utils.Strings.toString(value: queryParams.force)])
130 | let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
131 | let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/users/")\(userId)", method: "DELETE", params: queryParamsMap, 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]
132 | }
133 |
[798/979] Compiling BoxSdkGen UpdateUserByIdHeaders.swift
/host/spi-builder-workspace/Sources/Managers/UserCollaborations/UserCollaborationsManager.swift:55:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it [#no-usage]
53 | public func deleteCollaborationById(collaborationId: String, headers: DeleteCollaborationByIdHeaders = DeleteCollaborationByIdHeaders()) async throws {
54 | let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
55 | let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/collaborations/")\(collaborationId)", 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]
56 | }
57 |
/host/spi-builder-workspace/Sources/Managers/Users/UsersManager.swift:131:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it [#no-usage]
129 | let queryParamsMap: [String: String] = Utils.Dictionary.prepareParams(map: ["notify": Utils.Strings.toString(value: queryParams.notify), "force": Utils.Strings.toString(value: queryParams.force)])
130 | let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
131 | let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/users/")\(userId)", method: "DELETE", params: queryParamsMap, 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]
132 | }
133 |
[799/979] Compiling BoxSdkGen UpdateUserByIdQueryParams.swift
/host/spi-builder-workspace/Sources/Managers/UserCollaborations/UserCollaborationsManager.swift:55:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it [#no-usage]
53 | public func deleteCollaborationById(collaborationId: String, headers: DeleteCollaborationByIdHeaders = DeleteCollaborationByIdHeaders()) async throws {
54 | let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
55 | let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/collaborations/")\(collaborationId)", 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]
56 | }
57 |
/host/spi-builder-workspace/Sources/Managers/Users/UsersManager.swift:131:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it [#no-usage]
129 | let queryParamsMap: [String: String] = Utils.Dictionary.prepareParams(map: ["notify": Utils.Strings.toString(value: queryParams.notify), "force": Utils.Strings.toString(value: queryParams.force)])
130 | let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
131 | let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/users/")\(userId)", method: "DELETE", params: queryParamsMap, 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]
132 | }
133 |
[800/979] Compiling BoxSdkGen UpdateUserByIdRequestBody.swift
/host/spi-builder-workspace/Sources/Managers/UserCollaborations/UserCollaborationsManager.swift:55:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it [#no-usage]
53 | public func deleteCollaborationById(collaborationId: String, headers: DeleteCollaborationByIdHeaders = DeleteCollaborationByIdHeaders()) async throws {
54 | let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
55 | let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/collaborations/")\(collaborationId)", 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]
56 | }
57 |
/host/spi-builder-workspace/Sources/Managers/Users/UsersManager.swift:131:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it [#no-usage]
129 | let queryParamsMap: [String: String] = Utils.Dictionary.prepareParams(map: ["notify": Utils.Strings.toString(value: queryParams.notify), "force": Utils.Strings.toString(value: queryParams.force)])
130 | let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
131 | let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/users/")\(userId)", method: "DELETE", params: queryParamsMap, 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]
132 | }
133 |
[801/979] Compiling BoxSdkGen UpdateUserByIdRequestBodyNotificationEmailField.swift
/host/spi-builder-workspace/Sources/Managers/UserCollaborations/UserCollaborationsManager.swift:55:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it [#no-usage]
53 | public func deleteCollaborationById(collaborationId: String, headers: DeleteCollaborationByIdHeaders = DeleteCollaborationByIdHeaders()) async throws {
54 | let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
55 | let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/collaborations/")\(collaborationId)", 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]
56 | }
57 |
/host/spi-builder-workspace/Sources/Managers/Users/UsersManager.swift:131:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it [#no-usage]
129 | let queryParamsMap: [String: String] = Utils.Dictionary.prepareParams(map: ["notify": Utils.Strings.toString(value: queryParams.notify), "force": Utils.Strings.toString(value: queryParams.force)])
130 | let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
131 | let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/users/")\(userId)", method: "DELETE", params: queryParamsMap, 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]
132 | }
133 |
[802/979] Compiling BoxSdkGen UpdateUserByIdRequestBodyRoleField.swift
/host/spi-builder-workspace/Sources/Managers/UserCollaborations/UserCollaborationsManager.swift:55:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it [#no-usage]
53 | public func deleteCollaborationById(collaborationId: String, headers: DeleteCollaborationByIdHeaders = DeleteCollaborationByIdHeaders()) async throws {
54 | let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
55 | let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/collaborations/")\(collaborationId)", 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]
56 | }
57 |
/host/spi-builder-workspace/Sources/Managers/Users/UsersManager.swift:131:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it [#no-usage]
129 | let queryParamsMap: [String: String] = Utils.Dictionary.prepareParams(map: ["notify": Utils.Strings.toString(value: queryParams.notify), "force": Utils.Strings.toString(value: queryParams.force)])
130 | let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
131 | let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/users/")\(userId)", method: "DELETE", params: queryParamsMap, 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]
132 | }
133 |
[803/979] Compiling BoxSdkGen UpdateUserByIdRequestBodyStatusField.swift
/host/spi-builder-workspace/Sources/Managers/UserCollaborations/UserCollaborationsManager.swift:55:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it [#no-usage]
53 | public func deleteCollaborationById(collaborationId: String, headers: DeleteCollaborationByIdHeaders = DeleteCollaborationByIdHeaders()) async throws {
54 | let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
55 | let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/collaborations/")\(collaborationId)", 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]
56 | }
57 |
/host/spi-builder-workspace/Sources/Managers/Users/UsersManager.swift:131:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it [#no-usage]
129 | let queryParamsMap: [String: String] = Utils.Dictionary.prepareParams(map: ["notify": Utils.Strings.toString(value: queryParams.notify), "force": Utils.Strings.toString(value: queryParams.force)])
130 | let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
131 | let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/users/")\(userId)", method: "DELETE", params: queryParamsMap, 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]
132 | }
133 |
[804/979] Compiling BoxSdkGen UsersManager.swift
/host/spi-builder-workspace/Sources/Managers/UserCollaborations/UserCollaborationsManager.swift:55:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it [#no-usage]
53 | public func deleteCollaborationById(collaborationId: String, headers: DeleteCollaborationByIdHeaders = DeleteCollaborationByIdHeaders()) async throws {
54 | let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
55 | let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/collaborations/")\(collaborationId)", 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]
56 | }
57 |
/host/spi-builder-workspace/Sources/Managers/Users/UsersManager.swift:131:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it [#no-usage]
129 | let queryParamsMap: [String: String] = Utils.Dictionary.prepareParams(map: ["notify": Utils.Strings.toString(value: queryParams.notify), "force": Utils.Strings.toString(value: queryParams.force)])
130 | let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
131 | let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/users/")\(userId)", method: "DELETE", params: queryParamsMap, 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]
132 | }
133 |
[805/1004] Compiling BoxSdkGen CreateWebLinkHeaders.swift
/host/spi-builder-workspace/Sources/Managers/WebLinks/WebLinksManager.swift:64:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it [#no-usage]
62 | public func deleteWebLinkById(webLinkId: String, headers: DeleteWebLinkByIdHeaders = DeleteWebLinkByIdHeaders()) async throws {
63 | let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
64 | let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/web_links/")\(webLinkId)", 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]
65 | }
66 |
[806/1004] Compiling BoxSdkGen CreateWebLinkRequestBody.swift
/host/spi-builder-workspace/Sources/Managers/WebLinks/WebLinksManager.swift:64:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it [#no-usage]
62 | public func deleteWebLinkById(webLinkId: String, headers: DeleteWebLinkByIdHeaders = DeleteWebLinkByIdHeaders()) async throws {
63 | let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
64 | let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/web_links/")\(webLinkId)", 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]
65 | }
66 |
[807/1004] Compiling BoxSdkGen CreateWebLinkRequestBodyParentField.swift
/host/spi-builder-workspace/Sources/Managers/WebLinks/WebLinksManager.swift:64:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it [#no-usage]
62 | public func deleteWebLinkById(webLinkId: String, headers: DeleteWebLinkByIdHeaders = DeleteWebLinkByIdHeaders()) async throws {
63 | let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
64 | let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/web_links/")\(webLinkId)", 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]
65 | }
66 |
[808/1004] Compiling BoxSdkGen DeleteWebLinkByIdHeaders.swift
/host/spi-builder-workspace/Sources/Managers/WebLinks/WebLinksManager.swift:64:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it [#no-usage]
62 | public func deleteWebLinkById(webLinkId: String, headers: DeleteWebLinkByIdHeaders = DeleteWebLinkByIdHeaders()) async throws {
63 | let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
64 | let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/web_links/")\(webLinkId)", 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]
65 | }
66 |
[809/1004] Compiling BoxSdkGen GetWebLinkByIdHeaders.swift
/host/spi-builder-workspace/Sources/Managers/WebLinks/WebLinksManager.swift:64:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it [#no-usage]
62 | public func deleteWebLinkById(webLinkId: String, headers: DeleteWebLinkByIdHeaders = DeleteWebLinkByIdHeaders()) async throws {
63 | let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
64 | let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/web_links/")\(webLinkId)", 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]
65 | }
66 |
[810/1004] Compiling BoxSdkGen UpdateWebLinkByIdHeaders.swift
/host/spi-builder-workspace/Sources/Managers/WebLinks/WebLinksManager.swift:64:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it [#no-usage]
62 | public func deleteWebLinkById(webLinkId: String, headers: DeleteWebLinkByIdHeaders = DeleteWebLinkByIdHeaders()) async throws {
63 | let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
64 | let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/web_links/")\(webLinkId)", 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]
65 | }
66 |
[811/1004] Compiling BoxSdkGen UpdateWebLinkByIdRequestBody.swift
/host/spi-builder-workspace/Sources/Managers/WebLinks/WebLinksManager.swift:64:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it [#no-usage]
62 | public func deleteWebLinkById(webLinkId: String, headers: DeleteWebLinkByIdHeaders = DeleteWebLinkByIdHeaders()) async throws {
63 | let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
64 | let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/web_links/")\(webLinkId)", 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]
65 | }
66 |
[812/1004] Compiling BoxSdkGen UpdateWebLinkByIdRequestBodyParentField.swift
/host/spi-builder-workspace/Sources/Managers/WebLinks/WebLinksManager.swift:64:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it [#no-usage]
62 | public func deleteWebLinkById(webLinkId: String, headers: DeleteWebLinkByIdHeaders = DeleteWebLinkByIdHeaders()) async throws {
63 | let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
64 | let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/web_links/")\(webLinkId)", 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]
65 | }
66 |
[813/1004] Compiling BoxSdkGen UpdateWebLinkByIdRequestBodySharedLinkAccessField.swift
/host/spi-builder-workspace/Sources/Managers/WebLinks/WebLinksManager.swift:64:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it [#no-usage]
62 | public func deleteWebLinkById(webLinkId: String, headers: DeleteWebLinkByIdHeaders = DeleteWebLinkByIdHeaders()) async throws {
63 | let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
64 | let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/web_links/")\(webLinkId)", 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]
65 | }
66 |
[814/1004] Compiling BoxSdkGen UpdateWebLinkByIdRequestBodySharedLinkField.swift
/host/spi-builder-workspace/Sources/Managers/WebLinks/WebLinksManager.swift:64:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it [#no-usage]
62 | public func deleteWebLinkById(webLinkId: String, headers: DeleteWebLinkByIdHeaders = DeleteWebLinkByIdHeaders()) async throws {
63 | let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
64 | let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/web_links/")\(webLinkId)", 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]
65 | }
66 |
[815/1004] Compiling BoxSdkGen WebLinksManager.swift
/host/spi-builder-workspace/Sources/Managers/WebLinks/WebLinksManager.swift:64:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it [#no-usage]
62 | public func deleteWebLinkById(webLinkId: String, headers: DeleteWebLinkByIdHeaders = DeleteWebLinkByIdHeaders()) async throws {
63 | let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
64 | let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/web_links/")\(webLinkId)", 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]
65 | }
66 |
[816/1004] Compiling BoxSdkGen CreateWebhookHeaders.swift
/host/spi-builder-workspace/Sources/Managers/WebLinks/WebLinksManager.swift:64:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it [#no-usage]
62 | public func deleteWebLinkById(webLinkId: String, headers: DeleteWebLinkByIdHeaders = DeleteWebLinkByIdHeaders()) async throws {
63 | let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
64 | let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/web_links/")\(webLinkId)", 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]
65 | }
66 |
[817/1004] Compiling BoxSdkGen CreateWebhookRequestBody.swift
/host/spi-builder-workspace/Sources/Managers/WebLinks/WebLinksManager.swift:64:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it [#no-usage]
62 | public func deleteWebLinkById(webLinkId: String, headers: DeleteWebLinkByIdHeaders = DeleteWebLinkByIdHeaders()) async throws {
63 | let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
64 | let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/web_links/")\(webLinkId)", 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]
65 | }
66 |
[818/1004] Compiling BoxSdkGen CreateWebhookRequestBodyTargetField.swift
/host/spi-builder-workspace/Sources/Managers/WebLinks/WebLinksManager.swift:64:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it [#no-usage]
62 | public func deleteWebLinkById(webLinkId: String, headers: DeleteWebLinkByIdHeaders = DeleteWebLinkByIdHeaders()) async throws {
63 | let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
64 | let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/web_links/")\(webLinkId)", 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]
65 | }
66 |
[819/1004] Compiling BoxSdkGen CreateWebhookRequestBodyTargetTypeField.swift
/host/spi-builder-workspace/Sources/Managers/WebLinks/WebLinksManager.swift:64:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it [#no-usage]
62 | public func deleteWebLinkById(webLinkId: String, headers: DeleteWebLinkByIdHeaders = DeleteWebLinkByIdHeaders()) async throws {
63 | let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
64 | let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/web_links/")\(webLinkId)", 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]
65 | }
66 |
[820/1004] Compiling BoxSdkGen CreateWebhookRequestBodyTriggersField.swift
/host/spi-builder-workspace/Sources/Managers/WebLinks/WebLinksManager.swift:64:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it [#no-usage]
62 | public func deleteWebLinkById(webLinkId: String, headers: DeleteWebLinkByIdHeaders = DeleteWebLinkByIdHeaders()) async throws {
63 | let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
64 | let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/web_links/")\(webLinkId)", 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]
65 | }
66 |
[821/1004] Compiling BoxSdkGen DeleteWebhookByIdHeaders.swift
/host/spi-builder-workspace/Sources/Managers/WebLinks/WebLinksManager.swift:64:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it [#no-usage]
62 | public func deleteWebLinkById(webLinkId: String, headers: DeleteWebLinkByIdHeaders = DeleteWebLinkByIdHeaders()) async throws {
63 | let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
64 | let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/web_links/")\(webLinkId)", 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]
65 | }
66 |
[822/1004] Compiling BoxSdkGen GetWebhookByIdHeaders.swift
/host/spi-builder-workspace/Sources/Managers/WebLinks/WebLinksManager.swift:64:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it [#no-usage]
62 | public func deleteWebLinkById(webLinkId: String, headers: DeleteWebLinkByIdHeaders = DeleteWebLinkByIdHeaders()) async throws {
63 | let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
64 | let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/web_links/")\(webLinkId)", 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]
65 | }
66 |
[823/1004] Compiling BoxSdkGen GetWebhooksHeaders.swift
/host/spi-builder-workspace/Sources/Managers/WebLinks/WebLinksManager.swift:64:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it [#no-usage]
62 | public func deleteWebLinkById(webLinkId: String, headers: DeleteWebLinkByIdHeaders = DeleteWebLinkByIdHeaders()) async throws {
63 | let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
64 | let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/web_links/")\(webLinkId)", 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]
65 | }
66 |
[824/1004] Compiling BoxSdkGen GetWebhooksQueryParams.swift
/host/spi-builder-workspace/Sources/Managers/WebLinks/WebLinksManager.swift:64:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it [#no-usage]
62 | public func deleteWebLinkById(webLinkId: String, headers: DeleteWebLinkByIdHeaders = DeleteWebLinkByIdHeaders()) async throws {
63 | let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
64 | let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/web_links/")\(webLinkId)", 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]
65 | }
66 |
[825/1004] Compiling BoxSdkGen UpdateWebhookByIdHeaders.swift
/host/spi-builder-workspace/Sources/Managers/WebLinks/WebLinksManager.swift:64:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it [#no-usage]
62 | public func deleteWebLinkById(webLinkId: String, headers: DeleteWebLinkByIdHeaders = DeleteWebLinkByIdHeaders()) async throws {
63 | let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
64 | let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/web_links/")\(webLinkId)", 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]
65 | }
66 |
[826/1004] Compiling BoxSdkGen UpdateWebhookByIdRequestBody.swift
/host/spi-builder-workspace/Sources/Managers/WebLinks/WebLinksManager.swift:64:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it [#no-usage]
62 | public func deleteWebLinkById(webLinkId: String, headers: DeleteWebLinkByIdHeaders = DeleteWebLinkByIdHeaders()) async throws {
63 | let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
64 | let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/web_links/")\(webLinkId)", 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]
65 | }
66 |
[827/1004] Compiling BoxSdkGen UpdateWebhookByIdRequestBodyTargetField.swift
/host/spi-builder-workspace/Sources/Managers/WebLinks/WebLinksManager.swift:64:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it [#no-usage]
62 | public func deleteWebLinkById(webLinkId: String, headers: DeleteWebLinkByIdHeaders = DeleteWebLinkByIdHeaders()) async throws {
63 | let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
64 | let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/web_links/")\(webLinkId)", 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]
65 | }
66 |
[828/1004] Compiling BoxSdkGen UpdateWebhookByIdRequestBodyTargetTypeField.swift
/host/spi-builder-workspace/Sources/Managers/WebLinks/WebLinksManager.swift:64:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it [#no-usage]
62 | public func deleteWebLinkById(webLinkId: String, headers: DeleteWebLinkByIdHeaders = DeleteWebLinkByIdHeaders()) async throws {
63 | let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
64 | let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/web_links/")\(webLinkId)", 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]
65 | }
66 |
[829/1004] Compiling BoxSdkGen UpdateWebhookByIdRequestBodyTriggersField.swift
/host/spi-builder-workspace/Sources/Managers/WebLinks/WebLinksManager.swift:64:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it [#no-usage]
62 | public func deleteWebLinkById(webLinkId: String, headers: DeleteWebLinkByIdHeaders = DeleteWebLinkByIdHeaders()) async throws {
63 | let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
64 | let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/web_links/")\(webLinkId)", 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]
65 | }
66 |
[830/1028] Compiling BoxSdkGen CommentItemField.swift
[831/1028] Compiling BoxSdkGen CommentBase.swift
[832/1028] Compiling BoxSdkGen CommentBaseTypeField.swift
[833/1028] Compiling BoxSdkGen CommentFull.swift
[834/1028] Compiling BoxSdkGen Comments.swift
[835/1028] Compiling BoxSdkGen CommentsOrderDirectionField.swift
[836/1028] Compiling BoxSdkGen CommentsOrderField.swift
[837/1028] Compiling BoxSdkGen CompletionRuleVariable.swift
[838/1028] Compiling BoxSdkGen CompletionRuleVariableTypeField.swift
[839/1028] Compiling BoxSdkGen CompletionRuleVariableVariableTypeField.swift
[840/1028] Compiling BoxSdkGen CompletionRuleVariableVariableValueField.swift
[841/1028] Compiling BoxSdkGen ConflictError.swift
[842/1028] Compiling BoxSdkGen ConflictErrorContextInfoField.swift
[843/1028] Compiling BoxSdkGen DevicePinner.swift
[844/1028] Compiling BoxSdkGen DevicePinnerTypeField.swift
[845/1028] Compiling BoxSdkGen DevicePinners.swift
[846/1028] Compiling BoxSdkGen DevicePinnersOrderByField.swift
[847/1028] Compiling BoxSdkGen DevicePinnersOrderDirectionField.swift
[848/1028] Compiling BoxSdkGen DevicePinnersOrderField.swift
[849/1028] Compiling BoxSdkGen EmailAlias.swift
[850/1028] Compiling BoxSdkGen EmailAliasTypeField.swift
[851/1028] Compiling BoxSdkGen EmailAliases.swift
[852/1028] Compiling BoxSdkGen EnterpriseBase.swift
[853/1028] Compiling BoxSdkGen EnterpriseBaseTypeField.swift
[854/1028] Compiling BoxSdkGen Event.swift
[855/1052] Compiling BoxSdkGen AiAskItemsTypeField.swift
[856/1052] Compiling BoxSdkGen AiAskModeField.swift
[857/1052] Compiling BoxSdkGen AiCitation.swift
[858/1052] Compiling BoxSdkGen AiCitationTypeField.swift
[859/1052] Compiling BoxSdkGen AiDialogueHistory.swift
[860/1052] Compiling BoxSdkGen AiLlmEndpointParamsGoogle.swift
[861/1052] Compiling BoxSdkGen AiLlmEndpointParamsGoogleTypeField.swift
[862/1052] Compiling BoxSdkGen AiLlmEndpointParamsGoogleOrAiLlmEndpointParamsOpenAi.swift
[863/1052] Compiling BoxSdkGen AiLlmEndpointParamsOpenAi.swift
[864/1052] Compiling BoxSdkGen AiLlmEndpointParamsOpenAiTypeField.swift
[865/1052] Compiling BoxSdkGen AiResponse.swift
[866/1052] Compiling BoxSdkGen AiResponseFull.swift
[867/1052] Compiling BoxSdkGen AiTextGen.swift
[868/1052] Compiling BoxSdkGen AiTextGenItemsField.swift
[869/1052] Compiling BoxSdkGen AiTextGenItemsTypeField.swift
[870/1052] Compiling BoxSdkGen AppItem.swift
[871/1052] Compiling BoxSdkGen AppItemTypeField.swift
[872/1052] Compiling BoxSdkGen AppItemAssociation.swift
[873/1052] Compiling BoxSdkGen AppItemAssociationTypeField.swift
[874/1052] Compiling BoxSdkGen AppItemAssociations.swift
[875/1052] Compiling BoxSdkGen AppItemEventSource.swift
[876/1052] Compiling BoxSdkGen AppItemEventSourceTypeField.swift
[877/1052] Compiling BoxSdkGen AppItemEventSourceOrEventSourceOrFileOrFolderOrGenericSourceOrUser.swift
[878/1052] Compiling BoxSdkGen Classification.swift
[879/1052] Compiling BoxSdkGen ClassificationTemplateField.swift
[880/1076] Compiling BoxSdkGen CollaborationAllowlistEntryDirectionField.swift
[881/1076] Compiling BoxSdkGen CollaborationAllowlistEntryEnterpriseField.swift
[882/1076] Compiling BoxSdkGen CollaborationAllowlistEntryEnterpriseTypeField.swift
[883/1076] Compiling BoxSdkGen CollaborationAllowlistEntryTypeField.swift
[884/1076] Compiling BoxSdkGen CollaborationAllowlistExemptTarget.swift
[885/1076] Compiling BoxSdkGen CollaborationAllowlistExemptTargetEnterpriseField.swift
[886/1076] Compiling BoxSdkGen CollaborationAllowlistExemptTargetEnterpriseTypeField.swift
[887/1076] Compiling BoxSdkGen CollaborationAllowlistExemptTargetTypeField.swift
[888/1076] Compiling BoxSdkGen CollaborationAllowlistExemptTargets.swift
[889/1076] Compiling BoxSdkGen Collaborations.swift
[890/1076] Compiling BoxSdkGen CollaborationsOrderDirectionField.swift
[891/1076] Compiling BoxSdkGen CollaborationsOrderField.swift
[892/1076] Compiling BoxSdkGen CollaboratorVariable.swift
[893/1076] Compiling BoxSdkGen CollaboratorVariableTypeField.swift
[894/1076] Compiling BoxSdkGen CollaboratorVariableVariableTypeField.swift
[895/1076] Compiling BoxSdkGen CollaboratorVariableVariableValueField.swift
[896/1076] Compiling BoxSdkGen CollaboratorVariableVariableValueTypeField.swift
[897/1076] Compiling BoxSdkGen Collection.swift
[898/1076] Compiling BoxSdkGen CollectionCollectionTypeField.swift
[899/1076] Compiling BoxSdkGen CollectionNameField.swift
[900/1076] Compiling BoxSdkGen CollectionTypeField.swift
[901/1076] Compiling BoxSdkGen Collections.swift
[902/1076] Compiling BoxSdkGen CollectionsOrderDirectionField.swift
[903/1076] Compiling BoxSdkGen CollectionsOrderField.swift
[904/1076] Compiling BoxSdkGen Comment.swift
[905/1100] Compiling BoxSdkGen EventAdditionalDetailsField.swift
[906/1100] Compiling BoxSdkGen EventEventTypeField.swift
[907/1100] Compiling BoxSdkGen EventSource.swift
[908/1100] Compiling BoxSdkGen EventSourceClassificationField.swift
[909/1100] Compiling BoxSdkGen EventSourceItemTypeField.swift
[910/1100] Compiling BoxSdkGen Events.swift
[911/1100] Compiling BoxSdkGen EventsNextStreamPositionField.swift
[912/1100] Compiling BoxSdkGen File.swift
[913/1100] Compiling BoxSdkGen FileItemStatusField.swift
[914/1100] Compiling BoxSdkGen FilePathCollectionField.swift
[915/1100] Compiling BoxSdkGen FileSharedLinkAccessField.swift
[916/1100] Compiling BoxSdkGen FileSharedLinkEffectiveAccessField.swift
[917/1100] Compiling BoxSdkGen FileSharedLinkEffectivePermissionField.swift
[918/1100] Compiling BoxSdkGen FileSharedLinkField.swift
[919/1100] Compiling BoxSdkGen FileSharedLinkPermissionsField.swift
[920/1100] Compiling BoxSdkGen FileBase.swift
[921/1100] Compiling BoxSdkGen FileBaseTypeField.swift
[922/1100] Compiling BoxSdkGen FileBaseOrFolderBaseOrWebLinkBase.swift
[923/1100] Compiling BoxSdkGen FileConflict.swift
[924/1100] Compiling BoxSdkGen FileFull.swift
[925/1100] Compiling BoxSdkGen FileFullAllowedInviteeRolesField.swift
[926/1100] Compiling BoxSdkGen FileFullClassificationField.swift
[927/1100] Compiling BoxSdkGen FileFullExpiringEmbedLinkField.swift
[928/1100] Compiling BoxSdkGen FileFullExpiringEmbedLinkTokenTypeField.swift
[929/1100] Compiling BoxSdkGen FileFullLockAppTypeField.swift
[930/1124] Compiling BoxSdkGen ClassificationTemplate.swift
[931/1124] Compiling BoxSdkGen ClassificationTemplateDisplayNameField.swift
[932/1124] Compiling BoxSdkGen ClassificationTemplateFieldsDisplayNameField.swift
[933/1124] Compiling BoxSdkGen ClassificationTemplateFieldsField.swift
[934/1124] Compiling BoxSdkGen ClassificationTemplateFieldsKeyField.swift
[935/1124] Compiling BoxSdkGen ClassificationTemplateFieldsOptionsField.swift
[936/1124] Compiling BoxSdkGen ClassificationTemplateFieldsOptionsStaticConfigClassificationField.swift
[937/1124] Compiling BoxSdkGen ClassificationTemplateFieldsOptionsStaticConfigField.swift
[938/1124] Compiling BoxSdkGen ClassificationTemplateFieldsTypeField.swift
[939/1124] Compiling BoxSdkGen ClassificationTemplateTemplateKeyField.swift
[940/1124] Compiling BoxSdkGen ClassificationTemplateTypeField.swift
[941/1124] Compiling BoxSdkGen ClientError.swift
[942/1124] Compiling BoxSdkGen ClientErrorCodeField.swift
[943/1124] Compiling BoxSdkGen ClientErrorContextInfoField.swift
[944/1124] Compiling BoxSdkGen ClientErrorTypeField.swift
[945/1124] Compiling BoxSdkGen Collaboration.swift
[946/1124] Compiling BoxSdkGen CollaborationAcceptanceRequirementsStatusField.swift
[947/1124] Compiling BoxSdkGen CollaborationAcceptanceRequirementsStatusStrongPasswordRequirementField.swift
[948/1124] Compiling BoxSdkGen CollaborationAcceptanceRequirementsStatusTermsOfServiceRequirementField.swift
[949/1124] Compiling BoxSdkGen CollaborationAcceptanceRequirementsStatusTwoFactorAuthenticationRequirementField.swift
[950/1124] Compiling BoxSdkGen CollaborationRoleField.swift
[951/1124] Compiling BoxSdkGen CollaborationStatusField.swift
[952/1124] Compiling BoxSdkGen CollaborationTypeField.swift
[953/1124] Compiling BoxSdkGen CollaborationAllowlistEntries.swift
[954/1124] Compiling BoxSdkGen CollaborationAllowlistEntry.swift
[955/1148] Compiling BoxSdkGen FolderItemStatusField.swift
[956/1148] Compiling BoxSdkGen FolderPathCollectionField.swift
[957/1148] Compiling BoxSdkGen FolderSharedLinkAccessField.swift
[958/1148] Compiling BoxSdkGen FolderSharedLinkEffectiveAccessField.swift
[959/1148] Compiling BoxSdkGen FolderSharedLinkEffectivePermissionField.swift
[960/1148] Compiling BoxSdkGen FolderSharedLinkField.swift
[961/1148] Compiling BoxSdkGen FolderSharedLinkPermissionsField.swift
[962/1148] Compiling BoxSdkGen FolderBase.swift
[963/1148] Compiling BoxSdkGen FolderBaseTypeField.swift
[964/1148] Compiling BoxSdkGen FolderFull.swift
[965/1148] Compiling BoxSdkGen FolderFullAllowedInviteeRolesField.swift
[966/1148] Compiling BoxSdkGen FolderFullAllowedSharedLinkAccessLevelsField.swift
[967/1148] Compiling BoxSdkGen FolderFullClassificationField.swift
[968/1148] Compiling BoxSdkGen FolderFullMetadataField.swift
[969/1148] Compiling BoxSdkGen FolderFullPermissionsField.swift
[970/1148] Compiling BoxSdkGen FolderFullSyncStateField.swift
[971/1148] Compiling BoxSdkGen FolderFullWatermarkInfoField.swift
[972/1148] Compiling BoxSdkGen FolderLock.swift
[973/1148] Compiling BoxSdkGen FolderLockLockedOperationsField.swift
[974/1148] Compiling BoxSdkGen FolderLocks.swift
[975/1148] Compiling BoxSdkGen FolderMini.swift
[976/1148] Compiling BoxSdkGen GenericSource.swift
[977/1148] Compiling BoxSdkGen Group.swift
[978/1148] Compiling BoxSdkGen GroupBase.swift
[979/1172] Compiling BoxSdkGen FileRequestCopyRequest.swift
[980/1172] Compiling BoxSdkGen FileRequestCopyRequestFolderField.swift
[981/1172] Compiling BoxSdkGen FileRequestCopyRequestFolderTypeField.swift
[982/1172] Compiling BoxSdkGen FileRequestUpdateRequest.swift
[983/1172] Compiling BoxSdkGen FileRequestUpdateRequestStatusField.swift
[984/1172] Compiling BoxSdkGen FileVersion.swift
[985/1172] Compiling BoxSdkGen FileVersionBase.swift
[986/1172] Compiling BoxSdkGen FileVersionBaseTypeField.swift
[987/1172] Compiling BoxSdkGen FileVersionFull.swift
[988/1172] Compiling BoxSdkGen FileVersionLegalHold.swift
[989/1172] Compiling BoxSdkGen FileVersionLegalHoldTypeField.swift
[990/1172] Compiling BoxSdkGen FileVersionLegalHolds.swift
[991/1172] Compiling BoxSdkGen FileVersionMini.swift
[992/1172] Compiling BoxSdkGen FileVersionRetention.swift
[993/1172] Compiling BoxSdkGen FileVersionRetentionTypeField.swift
[994/1172] Compiling BoxSdkGen FileVersionRetentions.swift
[995/1172] Compiling BoxSdkGen FileVersions.swift
[996/1172] Compiling BoxSdkGen FileVersionsOrderDirectionField.swift
[997/1172] Compiling BoxSdkGen FileVersionsOrderField.swift
[998/1172] Compiling BoxSdkGen Files.swift
[999/1172] Compiling BoxSdkGen FilesOnHold.swift
[1000/1172] Compiling BoxSdkGen FilesUnderRetention.swift
[1001/1172] Compiling BoxSdkGen Folder.swift
[1002/1172] Compiling BoxSdkGen FolderFolderUploadEmailAccessField.swift
[1003/1172] Compiling BoxSdkGen FolderFolderUploadEmailField.swift
[1004/1196] Compiling BoxSdkGen FileFullLockField.swift
[1005/1196] Compiling BoxSdkGen FileFullLockTypeField.swift
[1006/1196] Compiling BoxSdkGen FileFullMetadataField.swift
[1007/1196] Compiling BoxSdkGen FileFullPermissionsField.swift
[1008/1196] Compiling BoxSdkGen FileFullRepresentationsEntriesContentField.swift
[1009/1196] Compiling BoxSdkGen FileFullRepresentationsEntriesField.swift
[1010/1196] Compiling BoxSdkGen FileFullRepresentationsEntriesInfoField.swift
[1011/1196] Compiling BoxSdkGen FileFullRepresentationsEntriesPropertiesField.swift
[1012/1196] Compiling BoxSdkGen FileFullRepresentationsEntriesStatusField.swift
[1013/1196] Compiling BoxSdkGen FileFullRepresentationsEntriesStatusStateField.swift
[1014/1196] Compiling BoxSdkGen FileFullRepresentationsField.swift
[1015/1196] Compiling BoxSdkGen FileFullSharedLinkPermissionOptionsField.swift
[1016/1196] Compiling BoxSdkGen FileFullWatermarkInfoField.swift
[1017/1196] Compiling BoxSdkGen FileFullOrFolderFull.swift
[1018/1196] Compiling BoxSdkGen FileFullOrFolderFullOrWebLink.swift
[1019/1196] Compiling BoxSdkGen FileFullOrFolderMiniOrWebLink.swift
[1020/1196] Compiling BoxSdkGen FileMini.swift
[1021/1196] Compiling BoxSdkGen FileMiniOrFolderMini.swift
[1022/1196] Compiling BoxSdkGen FileOrFolder.swift
[1023/1196] Compiling BoxSdkGen FileOrFolderOrWebLink.swift
[1024/1196] Compiling BoxSdkGen FileOrFolderScope.swift
[1025/1196] Compiling BoxSdkGen FileOrFolderScopeScopeField.swift
[1026/1196] Compiling BoxSdkGen FileRequest.swift
[1027/1196] Compiling BoxSdkGen FileRequestStatusField.swift
[1028/1196] Compiling BoxSdkGen FileRequestTypeField.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 RealtimeServer.swift
[1054/1244] Compiling BoxSdkGen RealtimeServers.swift
[1055/1244] Compiling BoxSdkGen RecentItem.swift
[1056/1244] Compiling BoxSdkGen RecentItemInteractionTypeField.swift
[1057/1244] Compiling BoxSdkGen RecentItems.swift
[1058/1244] Compiling BoxSdkGen RetentionPolicies.swift
[1059/1244] Compiling BoxSdkGen RetentionPolicy.swift
[1060/1244] Compiling BoxSdkGen RetentionPolicyAssignmentCountsField.swift
[1061/1244] Compiling BoxSdkGen RetentionPolicyPolicyTypeField.swift
[1062/1244] Compiling BoxSdkGen RetentionPolicyRetentionTypeField.swift
[1063/1244] Compiling BoxSdkGen RetentionPolicyStatusField.swift
[1064/1244] Compiling BoxSdkGen RetentionPolicyAssignment.swift
[1065/1244] Compiling BoxSdkGen RetentionPolicyAssignmentAssignedToField.swift
[1066/1244] Compiling BoxSdkGen RetentionPolicyAssignmentAssignedToTypeField.swift
[1067/1244] Compiling BoxSdkGen RetentionPolicyAssignmentFilterFieldsField.swift
[1068/1244] Compiling BoxSdkGen RetentionPolicyAssignmentTypeField.swift
[1069/1244] Compiling BoxSdkGen RetentionPolicyAssignmentBase.swift
[1070/1244] Compiling BoxSdkGen RetentionPolicyAssignmentBaseTypeField.swift
[1071/1244] Compiling BoxSdkGen RetentionPolicyAssignments.swift
[1072/1244] Compiling BoxSdkGen RetentionPolicyBase.swift
[1073/1244] Compiling BoxSdkGen RetentionPolicyBaseTypeField.swift
[1074/1244] Compiling BoxSdkGen RetentionPolicyMini.swift
[1075/1244] Compiling BoxSdkGen RetentionPolicyMiniDispositionActionField.swift
[1076/1244] Compiling BoxSdkGen RoleVariable.swift
[1077/1268] Compiling BoxSdkGen MetadataQueryOrderByDirectionField.swift
[1078/1268] Compiling BoxSdkGen MetadataQueryOrderByField.swift
[1079/1268] Compiling BoxSdkGen MetadataQueryIndex.swift
[1080/1268] Compiling BoxSdkGen MetadataQueryIndexFieldsField.swift
[1081/1268] Compiling BoxSdkGen MetadataQueryIndexFieldsSortDirectionField.swift
[1082/1268] Compiling BoxSdkGen MetadataQueryIndexStatusField.swift
[1083/1268] Compiling BoxSdkGen MetadataQueryResults.swift
[1084/1268] Compiling BoxSdkGen MetadataTemplate.swift
[1085/1268] Compiling BoxSdkGen MetadataTemplateFieldsField.swift
[1086/1268] Compiling BoxSdkGen MetadataTemplateFieldsOptionsField.swift
[1087/1268] Compiling BoxSdkGen MetadataTemplateFieldsTypeField.swift
[1088/1268] Compiling BoxSdkGen MetadataTemplateTypeField.swift
[1089/1268] Compiling BoxSdkGen MetadataTemplates.swift
[1090/1268] Compiling BoxSdkGen Metadatas.swift
[1091/1268] Compiling BoxSdkGen OAuth2Error.swift
[1092/1268] Compiling BoxSdkGen Outcome.swift
[1093/1268] Compiling BoxSdkGen PostOAuth2Revoke.swift
[1094/1268] Compiling BoxSdkGen PostOAuth2Token.swift
[1095/1268] Compiling BoxSdkGen PostOAuth2TokenActorTokenTypeField.swift
[1096/1268] Compiling BoxSdkGen PostOAuth2TokenBoxSubjectTypeField.swift
[1097/1268] Compiling BoxSdkGen PostOAuth2TokenGrantTypeField.swift
[1098/1268] Compiling BoxSdkGen PostOAuth2TokenSubjectTokenTypeField.swift
[1099/1268] Compiling BoxSdkGen PostOAuth2TokenRefreshAccessToken.swift
[1100/1268] Compiling BoxSdkGen PostOAuth2TokenRefreshAccessTokenGrantTypeField.swift
[1101/1292] Compiling BoxSdkGen IntegrationMappingPartnerItemSlackTypeField.swift
[1102/1292] Compiling BoxSdkGen IntegrationMappingPartnerItemSlackUnion.swift
[1103/1292] Compiling BoxSdkGen IntegrationMappingSlackCreateRequest.swift
[1104/1292] Compiling BoxSdkGen IntegrationMappingSlackOptions.swift
[1105/1292] Compiling BoxSdkGen IntegrationMappings.swift
[1106/1292] Compiling BoxSdkGen Invite.swift
[1107/1292] Compiling BoxSdkGen InviteInvitedToField.swift
[1108/1292] Compiling BoxSdkGen InviteInvitedToTypeField.swift
[1109/1292] Compiling BoxSdkGen InviteTypeField.swift
[1110/1292] Compiling BoxSdkGen Items.swift
[1111/1292] Compiling BoxSdkGen ItemsOrderDirectionField.swift
[1112/1292] Compiling BoxSdkGen ItemsOrderField.swift
[1113/1292] Compiling BoxSdkGen KeywordSkillCard.swift
[1114/1292] Compiling BoxSdkGen KeywordSkillCardEntriesField.swift
[1115/1292] Compiling BoxSdkGen KeywordSkillCardInvocationField.swift
[1116/1292] Compiling BoxSdkGen KeywordSkillCardInvocationTypeField.swift
[1117/1292] Compiling BoxSdkGen KeywordSkillCardSkillCardTitleField.swift
[1118/1292] Compiling BoxSdkGen KeywordSkillCardSkillCardTypeField.swift
[1119/1292] Compiling BoxSdkGen KeywordSkillCardSkillField.swift
[1120/1292] Compiling BoxSdkGen KeywordSkillCardSkillTypeField.swift
[1121/1292] Compiling BoxSdkGen KeywordSkillCardTypeField.swift
[1122/1292] Compiling BoxSdkGen KeywordSkillCardOrStatusSkillCardOrTimelineSkillCardOrTranscriptSkillCard.swift
[1123/1292] Compiling BoxSdkGen LegalHoldPolicies.swift
[1124/1292] Compiling BoxSdkGen LegalHoldPolicy.swift
[1125/1316] Compiling BoxSdkGen LegalHoldPolicyAssignmentCountsField.swift
[1126/1316] Compiling BoxSdkGen LegalHoldPolicyStatusField.swift
[1127/1316] Compiling BoxSdkGen LegalHoldPolicyAssignment.swift
[1128/1316] Compiling BoxSdkGen LegalHoldPolicyAssignmentBase.swift
[1129/1316] Compiling BoxSdkGen LegalHoldPolicyAssignmentBaseTypeField.swift
[1130/1316] Compiling BoxSdkGen LegalHoldPolicyAssignments.swift
[1131/1316] Compiling BoxSdkGen LegalHoldPolicyMini.swift
[1132/1316] Compiling BoxSdkGen LegalHoldPolicyMiniTypeField.swift
[1133/1316] Compiling BoxSdkGen Metadata.swift
[1134/1316] Compiling BoxSdkGen MetadataBase.swift
[1135/1316] Compiling BoxSdkGen MetadataCascadePolicies.swift
[1136/1316] Compiling BoxSdkGen MetadataCascadePolicy.swift
[1137/1316] Compiling BoxSdkGen MetadataCascadePolicyOwnerEnterpriseField.swift
[1138/1316] Compiling BoxSdkGen MetadataCascadePolicyOwnerEnterpriseTypeField.swift
[1139/1316] Compiling BoxSdkGen MetadataCascadePolicyParentField.swift
[1140/1316] Compiling BoxSdkGen MetadataCascadePolicyParentTypeField.swift
[1141/1316] Compiling BoxSdkGen MetadataCascadePolicyTypeField.swift
[1142/1316] Compiling BoxSdkGen MetadataFieldFilterDateRange.swift
[1143/1316] Compiling BoxSdkGen MetadataFieldFilterDateRangeOrMetadataFieldFilterFloatRangeOrArrayOfStringOrNumberOrString.swift
[1144/1316] Compiling BoxSdkGen MetadataFieldFilterFloatRange.swift
[1145/1316] Compiling BoxSdkGen MetadataFilter.swift
[1146/1316] Compiling BoxSdkGen MetadataFilterScopeField.swift
[1147/1316] Compiling BoxSdkGen MetadataFull.swift
[1148/1316] Compiling BoxSdkGen MetadataQuery.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 SkillInvocationEnterpriseTypeField.swift
[1198/1388] Compiling BoxSdkGen SkillInvocationSkillField.swift
[1199/1388] Compiling BoxSdkGen SkillInvocationSkillTypeField.swift
[1200/1388] Compiling BoxSdkGen SkillInvocationStatusField.swift
[1201/1388] Compiling BoxSdkGen SkillInvocationStatusStateField.swift
[1202/1388] Compiling BoxSdkGen SkillInvocationTokenField.swift
[1203/1388] Compiling BoxSdkGen SkillInvocationTokenReadField.swift
[1204/1388] Compiling BoxSdkGen SkillInvocationTokenReadTokenTypeField.swift
[1205/1388] Compiling BoxSdkGen SkillInvocationTokenWriteField.swift
[1206/1388] Compiling BoxSdkGen SkillInvocationTokenWriteTokenTypeField.swift
[1207/1388] Compiling BoxSdkGen SkillInvocationTypeField.swift
[1208/1388] Compiling BoxSdkGen StatusSkillCard.swift
[1209/1388] Compiling BoxSdkGen StatusSkillCardInvocationField.swift
[1210/1388] Compiling BoxSdkGen StatusSkillCardInvocationTypeField.swift
[1211/1388] Compiling BoxSdkGen StatusSkillCardSkillCardTitleField.swift
[1212/1388] Compiling BoxSdkGen StatusSkillCardSkillCardTypeField.swift
[1213/1388] Compiling BoxSdkGen StatusSkillCardSkillField.swift
[1214/1388] Compiling BoxSdkGen StatusSkillCardSkillTypeField.swift
[1215/1388] Compiling BoxSdkGen StatusSkillCardStatusCodeField.swift
[1216/1388] Compiling BoxSdkGen StatusSkillCardStatusField.swift
[1217/1388] Compiling BoxSdkGen StatusSkillCardTypeField.swift
[1218/1388] Compiling BoxSdkGen StoragePolicies.swift
[1219/1388] Compiling BoxSdkGen StoragePolicy.swift
[1220/1388] Compiling BoxSdkGen StoragePolicyAssignment.swift
[1221/1412] Compiling BoxSdkGen SignRequestCreateRequest.swift
[1222/1412] Compiling BoxSdkGen SignRequestCreateRequestSignatureColorField.swift
[1223/1412] Compiling BoxSdkGen SignRequestCreateSigner.swift
[1224/1412] Compiling BoxSdkGen SignRequestCreateSignerRoleField.swift
[1225/1412] Compiling BoxSdkGen SignRequestPrefillTag.swift
[1226/1412] Compiling BoxSdkGen SignRequestSigner.swift
[1227/1412] Compiling BoxSdkGen SignRequestSignerSignerDecisionField.swift
[1228/1412] Compiling BoxSdkGen SignRequestSignerSignerDecisionTypeField.swift
[1229/1412] Compiling BoxSdkGen SignRequestSignerInput.swift
[1230/1412] Compiling BoxSdkGen SignRequestSignerInputContentTypeField.swift
[1231/1412] Compiling BoxSdkGen SignRequestSignerInputTypeField.swift
[1232/1412] Compiling BoxSdkGen SignRequests.swift
[1233/1412] Compiling BoxSdkGen SignTemplate.swift
[1234/1412] Compiling BoxSdkGen SignTemplateAdditionalInfoField.swift
[1235/1412] Compiling BoxSdkGen SignTemplateAdditionalInfoNonEditableField.swift
[1236/1412] Compiling BoxSdkGen SignTemplateAdditionalInfoRequiredField.swift
[1237/1412] Compiling BoxSdkGen SignTemplateAdditionalInfoRequiredSignersField.swift
[1238/1412] Compiling BoxSdkGen SignTemplateCustomBrandingField.swift
[1239/1412] Compiling BoxSdkGen SignTemplateReadySignLinkField.swift
[1240/1412] Compiling BoxSdkGen SignTemplateTypeField.swift
[1241/1412] Compiling BoxSdkGen SignTemplates.swift
[1242/1412] Compiling BoxSdkGen SkillCardsMetadata.swift
[1243/1412] Compiling BoxSdkGen SkillInvocation.swift
[1244/1412] Compiling BoxSdkGen SkillInvocationEnterpriseField.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 WebLinkSharedLinkPermissionsField.swift
[1366/1412] Compiling BoxSdkGen WebLinkBase.swift
[1367/1412] Compiling BoxSdkGen WebLinkBaseTypeField.swift
[1368/1412] Compiling BoxSdkGen WebLinkMini.swift
[1369/1412] Compiling BoxSdkGen Webhook.swift
[1370/1412] Compiling BoxSdkGen WebhookTriggersField.swift
[1371/1412] Compiling BoxSdkGen WebhookInvocation.swift
[1372/1412] Compiling BoxSdkGen WebhookInvocationTriggerField.swift
[1373/1412] Compiling BoxSdkGen WebhookInvocationTypeField.swift
[1374/1412] Compiling BoxSdkGen WebhookMini.swift
[1375/1412] Compiling BoxSdkGen WebhookMiniTargetField.swift
[1376/1412] Compiling BoxSdkGen WebhookMiniTargetTypeField.swift
[1377/1412] Compiling BoxSdkGen WebhookMiniTypeField.swift
[1378/1412] Compiling BoxSdkGen Webhooks.swift
[1379/1412] Compiling BoxSdkGen Workflow.swift
[1380/1412] Compiling BoxSdkGen WorkflowFlowsField.swift
[1381/1412] Compiling BoxSdkGen WorkflowFlowsOutcomesActionTypeField.swift
[1382/1412] Compiling BoxSdkGen WorkflowFlowsOutcomesField.swift
[1383/1412] Compiling BoxSdkGen WorkflowFlowsOutcomesIfRejectedActionTypeField.swift
[1384/1412] Compiling BoxSdkGen WorkflowFlowsOutcomesIfRejectedField.swift
[1385/1412] Compiling BoxSdkGen WorkflowFlowsOutcomesIfRejectedTypeField.swift
[1386/1412] Compiling BoxSdkGen WorkflowFlowsOutcomesTypeField.swift
[1387/1412] Compiling BoxSdkGen WorkflowFlowsTriggerField.swift
[1388/1412] Compiling BoxSdkGen WorkflowFlowsTriggerScopeField.swift
[1389/1412] Compiling BoxSdkGen WorkflowFlowsTriggerScopeObjectField.swift
[1390/1412] Compiling BoxSdkGen WorkflowFlowsTriggerScopeObjectTypeField.swift
[1391/1412] Compiling BoxSdkGen WorkflowFlowsTriggerScopeTypeField.swift
[1392/1412] Compiling BoxSdkGen WorkflowFlowsTriggerTriggerTypeField.swift
[1393/1412] Compiling BoxSdkGen WorkflowFlowsTriggerTypeField.swift
[1394/1412] Compiling BoxSdkGen WorkflowFlowsTypeField.swift
[1395/1412] Compiling BoxSdkGen WorkflowFull.swift
[1396/1412] Compiling BoxSdkGen WorkflowMini.swift
[1397/1412] Compiling BoxSdkGen WorkflowMiniTypeField.swift
[1398/1412] Compiling BoxSdkGen Workflows.swift
[1399/1412] Compiling BoxSdkGen ZipDownload.swift
[1400/1412] Compiling BoxSdkGen ZipDownloadNameConflictsField.swift
[1401/1412] Compiling BoxSdkGen ZipDownloadNameConflictsTypeField.swift
[1402/1412] Compiling BoxSdkGen ZipDownloadRequest.swift
[1403/1412] Compiling BoxSdkGen ZipDownloadRequestItemsField.swift
[1404/1412] Compiling BoxSdkGen ZipDownloadRequestItemsTypeField.swift
[1405/1412] Compiling BoxSdkGen ZipDownloadStatus.swift
[1406/1412] Compiling BoxSdkGen ZipDownloadStatusStateField.swift
[1407/1412] Compiling BoxSdkGen AnyCodeable.swift
[1408/1412] Compiling BoxSdkGen Codable+Extensions.swift
[1409/1412] Compiling BoxSdkGen CodableStringEnum.swift
[1410/1412] Compiling BoxSdkGen JsonUtils.swift
[1411/1412] Compiling BoxSdkGen SerializedData.swift
[1412/1412] Compiling BoxSdkGen resource_bundle_accessor.swift
BUILD FAILURE 6.2 linux