Build Information
Failed to build BoxSdkGen, reference 0.6.3 (5674d1), with Swift 6.1 for Wasm on 5 Sep 2025 15:55:39 UTC.
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4609320-2":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest swift build --swift-sdk wasm32-unknown-wasi 2>&1Build Log
143 |
144 | let task = self.session.downloadTask(with: urlRequest) { location, response, error in
| `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'downloadTask'
145 | if let error = error {
146 | continuation.resume(with: .failure(BoxNetworkError(message: error.localizedDescription, error: error)))
/host/spi-builder-workspace/Sources/Networking/DefaultNetworkClient.swift:196:26: error: cannot find 'URLRequest' in scope
194 | networkSession: NetworkSession
195 | ) async throws -> URLRequest {
196 | var urlRequest = URLRequest(url: createEndpointUrl(url: options.url, params: options.params))
| `- error: cannot find 'URLRequest' in scope
197 | urlRequest.httpMethod = options.method.uppercased()
198 |
/host/spi-builder-workspace/Sources/Networking/DefaultNetworkClient.swift:352:51: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
350 | attempt: Int
351 | ) async throws -> FetchResponse {
352 | let statusCode = conversation.urlResponse.statusCode
| `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
353 | let isStatusCodeAcceptedWithRetryAfterHeader = statusCode == 202 && conversation.urlResponse.value(forHTTPHeaderField: HTTPHeaderKey.retryAfter) != nil
354 |
/host/spi-builder-workspace/Sources/Networking/DefaultNetworkClient.swift:353:102: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'value'
351 | ) async throws -> FetchResponse {
352 | let statusCode = conversation.urlResponse.statusCode
353 | let isStatusCodeAcceptedWithRetryAfterHeader = statusCode == 202 && conversation.urlResponse.value(forHTTPHeaderField: HTTPHeaderKey.retryAfter) != nil
| `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'value'
354 |
355 | // OK
/host/spi-builder-workspace/Sources/Networking/DefaultNetworkClient.swift:373:64: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'value'
371 | // Retryable
372 | if statusCode == 429 || statusCode >= 500 || isStatusCodeAcceptedWithRetryAfterHeader {
373 | let retryTimeout = Double(conversation.urlResponse.value(forHTTPHeaderField: HTTPHeaderKey.retryAfter) ?? "")
| `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'value'
374 | ?? networkSession.networkSettings.retryStrategy.getRetryTimeout(attempt: attempt)
375 | try await wait(seconds: retryTimeout)
/host/spi-builder-workspace/Sources/Networking/DefaultNetworkClient.swift:391:28: error: cannot call value of non-function type 'ContinuousClock.Instant'
389 | return try await withCheckedThrowingContinuation { continuation in
390 | utilityQueue.asyncAfter(
391 | deadline: .now() + .milliseconds(Int(delay * 1000))
| `- error: cannot call value of non-function type 'ContinuousClock.Instant'
392 | ) {
393 | continuation.resume()
/host/spi-builder-workspace/Sources/Networking/FetchConversation.swift:17:21: error: cannot find type 'URLRequest' in scope
15 | let options: FetchOptions
16 | /// Represents an URL request.
17 | let urlRequest: URLRequest
| `- error: cannot find type 'URLRequest' in scope
18 | /// Represents a response to an HTTP URL.
19 | let urlResponse: HTTPURLResponse
/host/spi-builder-workspace/Sources/Networking/FetchConversation.swift:19:22: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
17 | let urlRequest: URLRequest
18 | /// Represents a response to an HTTP URL.
19 | let urlResponse: HTTPURLResponse
| `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
20 | /// Represents response type, either data or downloaded file
21 | let responseType: ResponseType
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias HTTPURLResponse = AnyObject
| `- note: 'HTTPURLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Networking/FetchConversation.swift:31:70: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
29 | /// - urlResponse: Represents a response to an HTTP URL
30 | /// - responseType: Represents response type, either data or downloaded file
31 | init(options: FetchOptions, urlRequest: URLRequest, urlResponse: HTTPURLResponse, responseType: ResponseType) {
| `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
32 | self.options = options
33 | self.urlRequest = urlRequest
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias HTTPURLResponse = AnyObject
| `- note: 'HTTPURLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Networking/FetchConversation.swift:42:53: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'allHeaderFields'
40 | /// - Returns: An instance of the`FetchResponse`.
41 | func convertToFetchResponse() -> FetchResponse {
42 | let headers: [String: String] = urlResponse.allHeaderFields.reduce(into: [:]) { result, pair in
| `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'allHeaderFields'
43 | if let key = pair.key as? String, let value = pair.value as? String {
44 | result[key] = value
/host/spi-builder-workspace/Sources/Networking/FetchConversation.swift:50:54: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
48 | switch self.responseType {
49 | case let .data(data):
50 | return FetchResponse(status: urlResponse.statusCode, headers: headers, url: options.url, data: SerializedData(data: data))
| `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
51 | case let .url(url):
52 | return FetchResponse(status: urlResponse.statusCode, headers: headers, url: options.url, data: nil, downloadDestinationUrl: url)
/host/spi-builder-workspace/Sources/Networking/FetchConversation.swift:52:54: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
50 | return FetchResponse(status: urlResponse.statusCode, headers: headers, url: options.url, data: SerializedData(data: data))
51 | case let .url(url):
52 | return FetchResponse(status: urlResponse.statusCode, headers: headers, url: options.url, data: nil, downloadDestinationUrl: url)
| `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
53 | }
54 | }
/host/spi-builder-workspace/Sources/Networking/RedirectHandler.swift:8:34: error: cannot find type 'URLSessionDelegate' in scope
6 | /// Handles redirect behavior for URLSession tasks on a per-task basis.
7 | /// Allows enabling or disabling redirects for specific tasks using their taskIdentifier.
8 | class RedirectHandler: NSObject, URLSessionDelegate, URLSessionTaskDelegate {
| `- error: cannot find type 'URLSessionDelegate' in scope
9 |
10 | /// Stores the identifiers of tasks that are allowed to follow redirects.
/host/spi-builder-workspace/Sources/Networking/RedirectHandler.swift:8:54: error: cannot find type 'URLSessionTaskDelegate' in scope
6 | /// Handles redirect behavior for URLSession tasks on a per-task basis.
7 | /// Allows enabling or disabling redirects for specific tasks using their taskIdentifier.
8 | class RedirectHandler: NSObject, URLSessionDelegate, URLSessionTaskDelegate {
| `- error: cannot find type 'URLSessionTaskDelegate' in scope
9 |
10 | /// Stores the identifiers of tasks that are allowed to follow redirects.
/host/spi-builder-workspace/Sources/Networking/RedirectHandler.swift:21:56: error: 'URLSessionTask' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
19 | /// - allowed: A boolean indicating whether the redirect is allowed.
20 | /// - task: The URLSessionTask to configure.
21 | func setRedirectAllowed(_ allowed: Bool, for task: URLSessionTask) {
| `- error: 'URLSessionTask' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
22 | lock.lock()
23 | defer { lock.unlock() }
Foundation.URLSessionTask:2:18: note: 'URLSessionTask' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSessionTask = AnyObject
| `- note: 'URLSessionTask' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Networking/RedirectHandler.swift:43:41: error: cannot find type 'URLRequest' in scope
41 | task: URLSessionTask,
42 | willPerformHTTPRedirection response: HTTPURLResponse,
43 | newRequest request: URLRequest,
| `- error: cannot find type 'URLRequest' in scope
44 | completionHandler: @escaping (URLRequest?) -> Void) {
45 | lock.lock()
/host/spi-builder-workspace/Sources/Networking/RedirectHandler.swift:44:51: error: cannot find type 'URLRequest' in scope
42 | willPerformHTTPRedirection response: HTTPURLResponse,
43 | newRequest request: URLRequest,
44 | completionHandler: @escaping (URLRequest?) -> Void) {
| `- error: cannot find type 'URLRequest' in scope
45 | lock.lock()
46 | let shouldRedirect = allowRedirectTasks.contains(task.taskIdentifier)
/host/spi-builder-workspace/Sources/Networking/RedirectHandler.swift:40:32: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
38 | /// - request: The new URLRequest proposed by the server.
39 | /// - completionHandler: A closure that must be called with the new request to follow it, or nil to cancel the redirect.
40 | func urlSession(_ session: URLSession,
| `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
41 | task: URLSessionTask,
42 | willPerformHTTPRedirection response: HTTPURLResponse,
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSession = AnyObject
| `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Networking/RedirectHandler.swift:41:27: error: 'URLSessionTask' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
39 | /// - completionHandler: A closure that must be called with the new request to follow it, or nil to cancel the redirect.
40 | func urlSession(_ session: URLSession,
41 | task: URLSessionTask,
| `- error: 'URLSessionTask' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
42 | willPerformHTTPRedirection response: HTTPURLResponse,
43 | newRequest request: URLRequest,
Foundation.URLSessionTask:2:18: note: 'URLSessionTask' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSessionTask = AnyObject
| `- note: 'URLSessionTask' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Networking/RedirectHandler.swift:42:58: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
40 | func urlSession(_ session: URLSession,
41 | task: URLSessionTask,
42 | willPerformHTTPRedirection response: HTTPURLResponse,
| `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
43 | newRequest request: URLRequest,
44 | completionHandler: @escaping (URLRequest?) -> Void) {
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias HTTPURLResponse = AnyObject
| `- note: 'HTTPURLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Networking/RedirectHandler.swift:60:32: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
58 | /// - task: The completed task.
59 | /// - error: An error if the task failed, or nil if it completed successfully.
60 | func urlSession(_ session: URLSession, task: URLSessionTask, didCompleteWithError error: Error?) {
| `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
61 | lock.lock()
62 | allowRedirectTasks.remove(task.taskIdentifier)
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSession = AnyObject
| `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Networking/RedirectHandler.swift:60:50: error: 'URLSessionTask' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
58 | /// - task: The completed task.
59 | /// - error: An error if the task failed, or nil if it completed successfully.
60 | func urlSession(_ session: URLSession, task: URLSessionTask, didCompleteWithError error: Error?) {
| `- error: 'URLSessionTask' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
61 | lock.lock()
62 | allowRedirectTasks.remove(task.taskIdentifier)
Foundation.URLSessionTask:2:18: note: 'URLSessionTask' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSessionTask = AnyObject
| `- note: 'URLSessionTask' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Networking/RedirectHandler.swift:26:44: error: value of type 'URLSessionTask' (aka 'AnyObject') has no member 'taskIdentifier'
24 |
25 | if allowed {
26 | allowRedirectTasks.insert(task.taskIdentifier)
| `- error: value of type 'URLSessionTask' (aka 'AnyObject') has no member 'taskIdentifier'
27 | } else {
28 | allowRedirectTasks.remove(task.taskIdentifier)
/host/spi-builder-workspace/Sources/Networking/RedirectHandler.swift:28:44: error: value of type 'URLSessionTask' (aka 'AnyObject') has no member 'taskIdentifier'
26 | allowRedirectTasks.insert(task.taskIdentifier)
27 | } else {
28 | allowRedirectTasks.remove(task.taskIdentifier)
| `- error: value of type 'URLSessionTask' (aka 'AnyObject') has no member 'taskIdentifier'
29 | }
30 | }
/host/spi-builder-workspace/Sources/Networking/RedirectHandler.swift:46:63: error: value of type 'URLSessionTask' (aka 'AnyObject') has no member 'taskIdentifier'
44 | completionHandler: @escaping (URLRequest?) -> Void) {
45 | lock.lock()
46 | let shouldRedirect = allowRedirectTasks.contains(task.taskIdentifier)
| `- error: value of type 'URLSessionTask' (aka 'AnyObject') has no member 'taskIdentifier'
47 | lock.unlock()
48 |
/host/spi-builder-workspace/Sources/Networking/RedirectHandler.swift:62:40: error: value of type 'URLSessionTask' (aka 'AnyObject') has no member 'taskIdentifier'
60 | func urlSession(_ session: URLSession, task: URLSessionTask, didCompleteWithError error: Error?) {
61 | lock.lock()
62 | allowRedirectTasks.remove(task.taskIdentifier)
| `- error: value of type 'URLSessionTask' (aka 'AnyObject') has no member 'taskIdentifier'
63 | lock.unlock()
64 | }
[902/1077] Compiling BoxSdkGen AiAgentAllowedEntity.swift
/host/spi-builder-workspace/Sources/Networking/BoxNetworkClient.swift:21:82: error: type 'URLSessionConfiguration' (aka 'AnyObject') has no member 'default'
19 | /// - Parameters:
20 | /// - configuration: A configuration object that specifies certain behaviors, such as caching policies, timeouts, proxies, pipelining, TLS versions to support, cookie policies, and credential storage.
21 | public init(configuration: URLSessionConfiguration = URLSessionConfiguration.default) {
| `- error: type 'URLSessionConfiguration' (aka 'AnyObject') has no member 'default'
22 | self.redirectHandler = RedirectHandler()
23 | self.session = URLSession(configuration: configuration, delegate: redirectHandler, delegateQueue: nil)
/host/spi-builder-workspace/Sources/Networking/BoxNetworkClient.swift:9:32: error: cannot find 'DispatchQueue' in scope
7 | public class BoxNetworkClient: NetworkClient {
8 |
9 | private let utilityQueue = DispatchQueue.global(qos: .utility)
| `- error: cannot find 'DispatchQueue' in scope
10 |
11 | /// The URLSession object used to perform network requests.
/host/spi-builder-workspace/Sources/Networking/BoxNetworkClient.swift:9:59: error: cannot infer contextual base in reference to member 'utility'
7 | public class BoxNetworkClient: NetworkClient {
8 |
9 | private let utilityQueue = DispatchQueue.global(qos: .utility)
| `- error: cannot infer contextual base in reference to member 'utility'
10 |
11 | /// The URLSession object used to perform network requests.
/host/spi-builder-workspace/Sources/Networking/BoxNetworkClient.swift:12:26: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
10 |
11 | /// The URLSession object used to perform network requests.
12 | private let session: URLSession
| `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
13 |
14 | /// Handles redirect behavior for URLSession tasks on a per-task basis.
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSession = AnyObject
| `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Networking/BoxNetworkClient.swift:21:32: error: 'URLSessionConfiguration' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
19 | /// - Parameters:
20 | /// - configuration: A configuration object that specifies certain behaviors, such as caching policies, timeouts, proxies, pipelining, TLS versions to support, cookie policies, and credential storage.
21 | public init(configuration: URLSessionConfiguration = URLSessionConfiguration.default) {
| `- error: 'URLSessionConfiguration' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
22 | self.redirectHandler = RedirectHandler()
23 | self.session = URLSession(configuration: configuration, delegate: redirectHandler, delegateQueue: nil)
Foundation.URLSessionConfiguration:2:18: note: 'URLSessionConfiguration' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSessionConfiguration = AnyObject
| `- note: 'URLSessionConfiguration' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Networking/BoxNetworkClient.swift:87:48: error: cannot find type 'URLRequest' in scope
85 | /// - Returns: Tuple of of (Data, URLResponse)
86 | /// - Throws: An error if the request fails for any reason.
87 | private func sendDataRequest(_ urlRequest: URLRequest, followRedirects: Bool) async throws -> (Data, URLResponse) {
| `- error: cannot find type 'URLRequest' in scope
88 | return try await withCheckedThrowingContinuation { [weak self] continuation in
89 | guard let self = self else {
/host/spi-builder-workspace/Sources/Networking/BoxNetworkClient.swift:87:106: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
85 | /// - Returns: Tuple of of (Data, URLResponse)
86 | /// - Throws: An error if the request fails for any reason.
87 | private func sendDataRequest(_ urlRequest: URLRequest, followRedirects: Bool) async throws -> (Data, URLResponse) {
| `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
88 | return try await withCheckedThrowingContinuation { [weak self] continuation in
89 | guard let self = self else {
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
| `- note: 'URLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Networking/BoxNetworkClient.swift:126:52: error: cannot find type 'URLRequest' in scope
124 | /// - Returns: Tuple of of (URL, URLResponse)
125 | /// - Throws: An error if the request fails for any reason.
126 | private func sendDownloadRequest(_ urlRequest: URLRequest, downloadDestinationURL: URL) async throws -> (URL, URLResponse) {
| `- error: cannot find type 'URLRequest' in scope
127 | return try await withCheckedThrowingContinuation { [weak self] continuation in
128 | guard let self = self else {
/host/spi-builder-workspace/Sources/Networking/BoxNetworkClient.swift:126:115: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
124 | /// - Returns: Tuple of of (URL, URLResponse)
125 | /// - Throws: An error if the request fails for any reason.
126 | private func sendDownloadRequest(_ urlRequest: URLRequest, downloadDestinationURL: URL) async throws -> (URL, URLResponse) {
| `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
127 | return try await withCheckedThrowingContinuation { [weak self] continuation in
128 | guard let self = self else {
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
| `- note: 'URLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Networking/BoxNetworkClient.swift:186:23: error: cannot find type 'URLRequest' in scope
184 | options: FetchOptions,
185 | networkSession: NetworkSession
186 | ) async throws -> URLRequest {
| `- error: cannot find type 'URLRequest' in scope
187 | var urlRequest = URLRequest(url: createEndpointUrl(url: options.url, params: options.params))
188 | urlRequest.httpMethod = options.method.uppercased()
/host/spi-builder-workspace/Sources/Networking/BoxNetworkClient.swift:216:63: error: cannot find type 'URLRequest' in scope
214 | /// - networkSession: The Networking Session object which provides the URLSession object along with a network configuration parameters used in network communication.
215 | /// - Throws: An error if the operation fails for any reason.
216 | private func updateRequestWithHeaders(_ urlRequest: inout URLRequest, options: FetchOptions, networkSession: NetworkSession) async throws {
| `- error: cannot find type 'URLRequest' in scope
217 | urlRequest.allHTTPHeaderFields = options.headers
218 |
/host/spi-builder-workspace/Sources/Networking/BoxNetworkClient.swift:239:75: error: cannot find type 'URLRequest' in scope
237 | /// - networkSession: The Networking Session object which provides the URLSession object along with a network configuration parameters used in network communication.
238 | /// - Throws: An error if the operation fails for any reason.
239 | private func updateRequestWithAuthorizationHeader(_ urlRequest: inout URLRequest, options: FetchOptions, networkSession: NetworkSession) async throws {
| `- error: cannot find type 'URLRequest' in scope
240 | if let auth = options.auth {
241 | let authHeaderValue = try await auth.retrieveAuthorizationHeader(networkSession: networkSession)
/host/spi-builder-workspace/Sources/Networking/BoxNetworkClient.swift:251:69: error: cannot find type 'URLRequest' in scope
249 | /// - urlRequest: The request object.
250 | /// - multipartData: An array of `MultipartItem` which will be used to create the body of the request.
251 | private func updateRequestWithMultipartData(_ urlRequest: inout URLRequest, multipartData: [MultipartItem]) throws {
| `- error: cannot find type 'URLRequest' in scope
252 | var parameters: [String: Any] = [:]
253 | var partName = ""
/host/spi-builder-workspace/Sources/Networking/BoxNetworkClient.swift:23:24: error: 'URLSession' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
21 | public init(configuration: URLSessionConfiguration = URLSessionConfiguration.default) {
22 | self.redirectHandler = RedirectHandler()
23 | self.session = URLSession(configuration: configuration, delegate: redirectHandler, delegateQueue: nil)
| `- error: 'URLSession' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
24 | }
25 |
/host/spi-builder-workspace/Sources/Networking/BoxNetworkClient.swift:23:107: error: 'nil' requires a contextual type
21 | public init(configuration: URLSessionConfiguration = URLSessionConfiguration.default) {
22 | self.redirectHandler = RedirectHandler()
23 | self.session = URLSession(configuration: configuration, delegate: redirectHandler, delegateQueue: nil)
| `- error: 'nil' requires a contextual type
24 | }
25 |
/host/spi-builder-workspace/Sources/Networking/FetchConversation.swift:31:45: error: cannot find type 'URLRequest' in scope
29 | /// - urlResponse: Represents a response to an HTTP URL
30 | /// - responseType: Represents response type, either data or downloaded file
31 | init(options: FetchOptions, urlRequest: URLRequest, urlResponse: HTTPURLResponse, responseType: ResponseType) {
| `- error: cannot find type 'URLRequest' in scope
32 | self.options = options
33 | self.urlRequest = urlRequest
/host/spi-builder-workspace/Sources/Networking/BoxNetworkClient.swift:70:153: error: cannot infer contextual base in reference to member 'url'
68 | if let downloadDestinationUrl = options.downloadDestinationUrl, options.responseFormat == .binary {
69 | let (downloadUrl, urlResponse) = try await sendDownloadRequest(urlRequest, downloadDestinationURL: downloadDestinationUrl)
70 | let conversation = FetchConversation(options: options, urlRequest: urlRequest, urlResponse: urlResponse as! HTTPURLResponse, responseType: .url(downloadUrl))
| `- error: cannot infer contextual base in reference to member 'url'
71 | return try await processResponse(using: conversation, networkSession: networkSession, attempt: attempt)
72 | } else {
/host/spi-builder-workspace/Sources/Networking/BoxNetworkClient.swift:74:153: error: cannot infer contextual base in reference to member 'data'
72 | } else {
73 | let (data, urlResponse) = try await sendDataRequest(urlRequest, followRedirects: options.followRedirects ?? true)
74 | let conversation = FetchConversation(options: options, urlRequest: urlRequest, urlResponse: urlResponse as! HTTPURLResponse, responseType: .data(data))
| `- error: cannot infer contextual base in reference to member 'data'
75 | return try await processResponse(using: conversation, networkSession: networkSession, attempt: attempt)
76 | }
/host/spi-builder-workspace/Sources/Networking/BoxNetworkClient.swift:96:37: error: value of type 'URLSession' (aka 'AnyObject') has no member 'dataTask'
94 | }
95 |
96 | let task = self.session.dataTask(with: urlRequest) { data, response, error in
| `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'dataTask'
97 | if let error = error {
98 | continuation.resume(with: .failure(BoxNetworkError(message: error.localizedDescription, error: error)))
/host/spi-builder-workspace/Sources/Networking/BoxNetworkClient.swift:135:37: error: value of type 'URLSession' (aka 'AnyObject') has no member 'downloadTask'
133 | }
134 |
135 | let task = self.session.downloadTask(with: urlRequest) { location, response, error in
| `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'downloadTask'
136 | if let error = error {
137 | continuation.resume(with: .failure(BoxNetworkError(message: error.localizedDescription, error: error)))
/host/spi-builder-workspace/Sources/Networking/BoxNetworkClient.swift:187:26: error: cannot find 'URLRequest' in scope
185 | networkSession: NetworkSession
186 | ) async throws -> URLRequest {
187 | var urlRequest = URLRequest(url: createEndpointUrl(url: options.url, params: options.params))
| `- error: cannot find 'URLRequest' in scope
188 | urlRequest.httpMethod = options.method.uppercased()
189 |
/host/spi-builder-workspace/Sources/Networking/BoxNetworkClient.swift:347:51: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
345 | attempt: Int
346 | ) async throws -> FetchResponse {
347 | let statusCode = conversation.urlResponse.statusCode
| `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
348 | let isStatusCodeAcceptedWithRetryAfterHeader = statusCode == 202 && conversation.urlResponse.value(forHTTPHeaderField: HTTPHeaderKey.retryAfter) != nil
349 |
/host/spi-builder-workspace/Sources/Networking/BoxNetworkClient.swift:348:102: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'value'
346 | ) async throws -> FetchResponse {
347 | let statusCode = conversation.urlResponse.statusCode
348 | let isStatusCodeAcceptedWithRetryAfterHeader = statusCode == 202 && conversation.urlResponse.value(forHTTPHeaderField: HTTPHeaderKey.retryAfter) != nil
| `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'value'
349 |
350 | // OK
/host/spi-builder-workspace/Sources/Networking/BoxNetworkClient.swift:368:64: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'value'
366 | // Retryable
367 | if statusCode == 429 || statusCode >= 500 || isStatusCodeAcceptedWithRetryAfterHeader {
368 | let retryTimeout = Double(conversation.urlResponse.value(forHTTPHeaderField: HTTPHeaderKey.retryAfter) ?? "")
| `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'value'
369 | ?? networkSession.networkSettings.retryStrategy.getRetryTimeout(attempt: attempt)
370 | try await wait(seconds: retryTimeout)
/host/spi-builder-workspace/Sources/Networking/BoxNetworkClient.swift:386:28: error: cannot call value of non-function type 'ContinuousClock.Instant'
384 | return try await withCheckedThrowingContinuation { continuation in
385 | utilityQueue.asyncAfter(
386 | deadline: .now() + .milliseconds(Int(delay * 1000))
| `- error: cannot call value of non-function type 'ContinuousClock.Instant'
387 | ) {
388 | continuation.resume()
/host/spi-builder-workspace/Sources/Networking/DefaultNetworkClient.swift:19:32: error: cannot find 'DispatchQueue' in scope
17 | public class DefaultNetworkClient: NetworkClient {
18 |
19 | private let utilityQueue = DispatchQueue.global(qos: .utility)
| `- error: cannot find 'DispatchQueue' in scope
20 |
21 | /// The URLSession object used to perform network requests.
/host/spi-builder-workspace/Sources/Networking/DefaultNetworkClient.swift:19:59: error: cannot infer contextual base in reference to member 'utility'
17 | public class DefaultNetworkClient: NetworkClient {
18 |
19 | private let utilityQueue = DispatchQueue.global(qos: .utility)
| `- error: cannot infer contextual base in reference to member 'utility'
20 |
21 | /// The URLSession object used to perform network requests.
/host/spi-builder-workspace/Sources/Networking/DefaultNetworkClient.swift:22:26: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
20 |
21 | /// The URLSession object used to perform network requests.
22 | private let session: URLSession
| `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
23 |
24 | /// Handles redirect behavior for URLSession tasks on a per-task basis.
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSession = AnyObject
| `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Networking/DefaultNetworkClient.swift:31:32: error: 'URLSessionConfiguration' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
29 | /// - Parameters:
30 | /// - configuration: A configuration object that specifies certain behaviors, such as caching policies, timeouts, proxies, pipelining, TLS versions to support, cookie policies, and credential storage.
31 | public init(configuration: URLSessionConfiguration = URLSessionConfiguration.default) {
| `- error: 'URLSessionConfiguration' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
32 | self.redirectHandler = RedirectHandler()
33 | self.session = URLSession(configuration: configuration, delegate: redirectHandler, delegateQueue: nil)
Foundation.URLSessionConfiguration:2:18: note: 'URLSessionConfiguration' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSessionConfiguration = AnyObject
| `- note: 'URLSessionConfiguration' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Networking/DefaultNetworkClient.swift:31:82: error: type 'URLSessionConfiguration' (aka 'AnyObject') has no member 'default'
29 | /// - Parameters:
30 | /// - configuration: A configuration object that specifies certain behaviors, such as caching policies, timeouts, proxies, pipelining, TLS versions to support, cookie policies, and credential storage.
31 | public init(configuration: URLSessionConfiguration = URLSessionConfiguration.default) {
| `- error: type 'URLSessionConfiguration' (aka 'AnyObject') has no member 'default'
32 | self.redirectHandler = RedirectHandler()
33 | self.session = URLSession(configuration: configuration, delegate: redirectHandler, delegateQueue: nil)
/host/spi-builder-workspace/Sources/Networking/DefaultNetworkClient.swift:96:48: error: cannot find type 'URLRequest' in scope
94 | /// - Returns: Tuple of of (Data, URLResponse)
95 | /// - Throws: An error if the request fails for any reason.
96 | private func sendDataRequest(_ urlRequest: URLRequest, followRedirects: Bool) async throws -> (Data, URLResponse) {
| `- error: cannot find type 'URLRequest' in scope
97 | return try await withCheckedThrowingContinuation { [weak self] continuation in
98 | guard let self = self else {
/host/spi-builder-workspace/Sources/Networking/DefaultNetworkClient.swift:96:106: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
94 | /// - Returns: Tuple of of (Data, URLResponse)
95 | /// - Throws: An error if the request fails for any reason.
96 | private func sendDataRequest(_ urlRequest: URLRequest, followRedirects: Bool) async throws -> (Data, URLResponse) {
| `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
97 | return try await withCheckedThrowingContinuation { [weak self] continuation in
98 | guard let self = self else {
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
| `- note: 'URLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Networking/DefaultNetworkClient.swift:135:52: error: cannot find type 'URLRequest' in scope
133 | /// - Returns: Tuple of of (URL, URLResponse)
134 | /// - Throws: An error if the request fails for any reason.
135 | private func sendDownloadRequest(_ urlRequest: URLRequest, downloadDestinationURL: URL) async throws -> (URL, URLResponse) {
| `- error: cannot find type 'URLRequest' in scope
136 | return try await withCheckedThrowingContinuation { [weak self] continuation in
137 | guard let self = self else {
/host/spi-builder-workspace/Sources/Networking/DefaultNetworkClient.swift:135:115: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
133 | /// - Returns: Tuple of of (URL, URLResponse)
134 | /// - Throws: An error if the request fails for any reason.
135 | private func sendDownloadRequest(_ urlRequest: URLRequest, downloadDestinationURL: URL) async throws -> (URL, URLResponse) {
| `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
136 | return try await withCheckedThrowingContinuation { [weak self] continuation in
137 | guard let self = self else {
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
| `- note: 'URLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Networking/DefaultNetworkClient.swift:195:23: error: cannot find type 'URLRequest' in scope
193 | options: FetchOptions,
194 | networkSession: NetworkSession
195 | ) async throws -> URLRequest {
| `- error: cannot find type 'URLRequest' in scope
196 | var urlRequest = URLRequest(url: createEndpointUrl(url: options.url, params: options.params))
197 | urlRequest.httpMethod = options.method.uppercased()
/host/spi-builder-workspace/Sources/Networking/DefaultNetworkClient.swift:225:63: error: cannot find type 'URLRequest' in scope
223 | /// - networkSession: The Networking Session object which provides the URLSession object along with a network configuration parameters used in network communication.
224 | /// - Throws: An error if the operation fails for any reason.
225 | private func updateRequestWithHeaders(_ urlRequest: inout URLRequest, options: FetchOptions, networkSession: NetworkSession) async throws {
| `- error: cannot find type 'URLRequest' in scope
226 | urlRequest.allHTTPHeaderFields = options.headers
227 |
/host/spi-builder-workspace/Sources/Networking/DefaultNetworkClient.swift:244:75: error: cannot find type 'URLRequest' in scope
242 | /// - networkSession: The Networking Session object which provides the URLSession object along with a network configuration parameters used in network communication.
243 | /// - Throws: An error if the operation fails for any reason.
244 | private func updateRequestWithAuthorizationHeader(_ urlRequest: inout URLRequest, options: FetchOptions, networkSession: NetworkSession) async throws {
| `- error: cannot find type 'URLRequest' in scope
245 | if let auth = options.auth {
246 | let authHeaderValue = try await auth.retrieveAuthorizationHeader(networkSession: networkSession)
/host/spi-builder-workspace/Sources/Networking/DefaultNetworkClient.swift:256:69: error: cannot find type 'URLRequest' in scope
254 | /// - urlRequest: The request object.
255 | /// - multipartData: An array of `MultipartItem` which will be used to create the body of the request.
256 | private func updateRequestWithMultipartData(_ urlRequest: inout URLRequest, multipartData: [MultipartItem]) throws {
| `- error: cannot find type 'URLRequest' in scope
257 | var parameters: [String: Any] = [:]
258 | var partName = ""
/host/spi-builder-workspace/Sources/Networking/DefaultNetworkClient.swift:33:24: error: 'URLSession' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
31 | public init(configuration: URLSessionConfiguration = URLSessionConfiguration.default) {
32 | self.redirectHandler = RedirectHandler()
33 | self.session = URLSession(configuration: configuration, delegate: redirectHandler, delegateQueue: nil)
| `- error: 'URLSession' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
34 | }
35 |
/host/spi-builder-workspace/Sources/Networking/DefaultNetworkClient.swift:33:107: error: 'nil' requires a contextual type
31 | public init(configuration: URLSessionConfiguration = URLSessionConfiguration.default) {
32 | self.redirectHandler = RedirectHandler()
33 | self.session = URLSession(configuration: configuration, delegate: redirectHandler, delegateQueue: nil)
| `- error: 'nil' requires a contextual type
34 | }
35 |
/host/spi-builder-workspace/Sources/Networking/DefaultNetworkClient.swift:80:153: error: cannot infer contextual base in reference to member 'url'
78 | if let downloadDestinationUrl = options.downloadDestinationUrl, options.responseFormat == .binary {
79 | let (downloadUrl, urlResponse) = try await sendDownloadRequest(urlRequest, downloadDestinationURL: downloadDestinationUrl)
80 | let conversation = FetchConversation(options: options, urlRequest: urlRequest, urlResponse: urlResponse as! HTTPURLResponse, responseType: .url(downloadUrl))
| `- error: cannot infer contextual base in reference to member 'url'
81 | return try await processResponse(using: conversation, networkSession: networkSession, attempt: attempt)
82 | } else {
/host/spi-builder-workspace/Sources/Networking/DefaultNetworkClient.swift:84:153: error: cannot infer contextual base in reference to member 'data'
82 | } else {
83 | let (data, urlResponse) = try await sendDataRequest(urlRequest, followRedirects: options.followRedirects ?? true)
84 | let conversation = FetchConversation(options: options, urlRequest: urlRequest, urlResponse: urlResponse as! HTTPURLResponse, responseType: .data(data))
| `- error: cannot infer contextual base in reference to member 'data'
85 | return try await processResponse(using: conversation, networkSession: networkSession, attempt: attempt)
86 | }
/host/spi-builder-workspace/Sources/Networking/DefaultNetworkClient.swift:105:37: error: value of type 'URLSession' (aka 'AnyObject') has no member 'dataTask'
103 | }
104 |
105 | let task = self.session.dataTask(with: urlRequest) { data, response, error in
| `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'dataTask'
106 | if let error = error {
107 | continuation.resume(with: .failure(BoxNetworkError(message: error.localizedDescription, error: error)))
/host/spi-builder-workspace/Sources/Networking/DefaultNetworkClient.swift:144:37: error: value of type 'URLSession' (aka 'AnyObject') has no member 'downloadTask'
142 | }
143 |
144 | let task = self.session.downloadTask(with: urlRequest) { location, response, error in
| `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'downloadTask'
145 | if let error = error {
146 | continuation.resume(with: .failure(BoxNetworkError(message: error.localizedDescription, error: error)))
/host/spi-builder-workspace/Sources/Networking/DefaultNetworkClient.swift:196:26: error: cannot find 'URLRequest' in scope
194 | networkSession: NetworkSession
195 | ) async throws -> URLRequest {
196 | var urlRequest = URLRequest(url: createEndpointUrl(url: options.url, params: options.params))
| `- error: cannot find 'URLRequest' in scope
197 | urlRequest.httpMethod = options.method.uppercased()
198 |
/host/spi-builder-workspace/Sources/Networking/DefaultNetworkClient.swift:352:51: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
350 | attempt: Int
351 | ) async throws -> FetchResponse {
352 | let statusCode = conversation.urlResponse.statusCode
| `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
353 | let isStatusCodeAcceptedWithRetryAfterHeader = statusCode == 202 && conversation.urlResponse.value(forHTTPHeaderField: HTTPHeaderKey.retryAfter) != nil
354 |
/host/spi-builder-workspace/Sources/Networking/DefaultNetworkClient.swift:353:102: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'value'
351 | ) async throws -> FetchResponse {
352 | let statusCode = conversation.urlResponse.statusCode
353 | let isStatusCodeAcceptedWithRetryAfterHeader = statusCode == 202 && conversation.urlResponse.value(forHTTPHeaderField: HTTPHeaderKey.retryAfter) != nil
| `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'value'
354 |
355 | // OK
/host/spi-builder-workspace/Sources/Networking/DefaultNetworkClient.swift:373:64: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'value'
371 | // Retryable
372 | if statusCode == 429 || statusCode >= 500 || isStatusCodeAcceptedWithRetryAfterHeader {
373 | let retryTimeout = Double(conversation.urlResponse.value(forHTTPHeaderField: HTTPHeaderKey.retryAfter) ?? "")
| `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'value'
374 | ?? networkSession.networkSettings.retryStrategy.getRetryTimeout(attempt: attempt)
375 | try await wait(seconds: retryTimeout)
/host/spi-builder-workspace/Sources/Networking/DefaultNetworkClient.swift:391:28: error: cannot call value of non-function type 'ContinuousClock.Instant'
389 | return try await withCheckedThrowingContinuation { continuation in
390 | utilityQueue.asyncAfter(
391 | deadline: .now() + .milliseconds(Int(delay * 1000))
| `- error: cannot call value of non-function type 'ContinuousClock.Instant'
392 | ) {
393 | continuation.resume()
/host/spi-builder-workspace/Sources/Networking/FetchConversation.swift:17:21: error: cannot find type 'URLRequest' in scope
15 | let options: FetchOptions
16 | /// Represents an URL request.
17 | let urlRequest: URLRequest
| `- error: cannot find type 'URLRequest' in scope
18 | /// Represents a response to an HTTP URL.
19 | let urlResponse: HTTPURLResponse
/host/spi-builder-workspace/Sources/Networking/FetchConversation.swift:19:22: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
17 | let urlRequest: URLRequest
18 | /// Represents a response to an HTTP URL.
19 | let urlResponse: HTTPURLResponse
| `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
20 | /// Represents response type, either data or downloaded file
21 | let responseType: ResponseType
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias HTTPURLResponse = AnyObject
| `- note: 'HTTPURLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Networking/FetchConversation.swift:31:70: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
29 | /// - urlResponse: Represents a response to an HTTP URL
30 | /// - responseType: Represents response type, either data or downloaded file
31 | init(options: FetchOptions, urlRequest: URLRequest, urlResponse: HTTPURLResponse, responseType: ResponseType) {
| `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
32 | self.options = options
33 | self.urlRequest = urlRequest
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias HTTPURLResponse = AnyObject
| `- note: 'HTTPURLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Networking/FetchConversation.swift:42:53: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'allHeaderFields'
40 | /// - Returns: An instance of the`FetchResponse`.
41 | func convertToFetchResponse() -> FetchResponse {
42 | let headers: [String: String] = urlResponse.allHeaderFields.reduce(into: [:]) { result, pair in
| `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'allHeaderFields'
43 | if let key = pair.key as? String, let value = pair.value as? String {
44 | result[key] = value
/host/spi-builder-workspace/Sources/Networking/FetchConversation.swift:50:54: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
48 | switch self.responseType {
49 | case let .data(data):
50 | return FetchResponse(status: urlResponse.statusCode, headers: headers, url: options.url, data: SerializedData(data: data))
| `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
51 | case let .url(url):
52 | return FetchResponse(status: urlResponse.statusCode, headers: headers, url: options.url, data: nil, downloadDestinationUrl: url)
/host/spi-builder-workspace/Sources/Networking/FetchConversation.swift:52:54: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
50 | return FetchResponse(status: urlResponse.statusCode, headers: headers, url: options.url, data: SerializedData(data: data))
51 | case let .url(url):
52 | return FetchResponse(status: urlResponse.statusCode, headers: headers, url: options.url, data: nil, downloadDestinationUrl: url)
| `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
53 | }
54 | }
/host/spi-builder-workspace/Sources/Networking/RedirectHandler.swift:8:34: error: cannot find type 'URLSessionDelegate' in scope
6 | /// Handles redirect behavior for URLSession tasks on a per-task basis.
7 | /// Allows enabling or disabling redirects for specific tasks using their taskIdentifier.
8 | class RedirectHandler: NSObject, URLSessionDelegate, URLSessionTaskDelegate {
| `- error: cannot find type 'URLSessionDelegate' in scope
9 |
10 | /// Stores the identifiers of tasks that are allowed to follow redirects.
/host/spi-builder-workspace/Sources/Networking/RedirectHandler.swift:8:54: error: cannot find type 'URLSessionTaskDelegate' in scope
6 | /// Handles redirect behavior for URLSession tasks on a per-task basis.
7 | /// Allows enabling or disabling redirects for specific tasks using their taskIdentifier.
8 | class RedirectHandler: NSObject, URLSessionDelegate, URLSessionTaskDelegate {
| `- error: cannot find type 'URLSessionTaskDelegate' in scope
9 |
10 | /// Stores the identifiers of tasks that are allowed to follow redirects.
/host/spi-builder-workspace/Sources/Networking/RedirectHandler.swift:21:56: error: 'URLSessionTask' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
19 | /// - allowed: A boolean indicating whether the redirect is allowed.
20 | /// - task: The URLSessionTask to configure.
21 | func setRedirectAllowed(_ allowed: Bool, for task: URLSessionTask) {
| `- error: 'URLSessionTask' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
22 | lock.lock()
23 | defer { lock.unlock() }
Foundation.URLSessionTask:2:18: note: 'URLSessionTask' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSessionTask = AnyObject
| `- note: 'URLSessionTask' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Networking/RedirectHandler.swift:43:41: error: cannot find type 'URLRequest' in scope
41 | task: URLSessionTask,
42 | willPerformHTTPRedirection response: HTTPURLResponse,
43 | newRequest request: URLRequest,
| `- error: cannot find type 'URLRequest' in scope
44 | completionHandler: @escaping (URLRequest?) -> Void) {
45 | lock.lock()
/host/spi-builder-workspace/Sources/Networking/RedirectHandler.swift:44:51: error: cannot find type 'URLRequest' in scope
42 | willPerformHTTPRedirection response: HTTPURLResponse,
43 | newRequest request: URLRequest,
44 | completionHandler: @escaping (URLRequest?) -> Void) {
| `- error: cannot find type 'URLRequest' in scope
45 | lock.lock()
46 | let shouldRedirect = allowRedirectTasks.contains(task.taskIdentifier)
/host/spi-builder-workspace/Sources/Networking/RedirectHandler.swift:40:32: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
38 | /// - request: The new URLRequest proposed by the server.
39 | /// - completionHandler: A closure that must be called with the new request to follow it, or nil to cancel the redirect.
40 | func urlSession(_ session: URLSession,
| `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
41 | task: URLSessionTask,
42 | willPerformHTTPRedirection response: HTTPURLResponse,
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSession = AnyObject
| `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Networking/RedirectHandler.swift:41:27: error: 'URLSessionTask' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
39 | /// - completionHandler: A closure that must be called with the new request to follow it, or nil to cancel the redirect.
40 | func urlSession(_ session: URLSession,
41 | task: URLSessionTask,
| `- error: 'URLSessionTask' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
42 | willPerformHTTPRedirection response: HTTPURLResponse,
43 | newRequest request: URLRequest,
Foundation.URLSessionTask:2:18: note: 'URLSessionTask' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSessionTask = AnyObject
| `- note: 'URLSessionTask' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Networking/RedirectHandler.swift:42:58: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
40 | func urlSession(_ session: URLSession,
41 | task: URLSessionTask,
42 | willPerformHTTPRedirection response: HTTPURLResponse,
| `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
43 | newRequest request: URLRequest,
44 | completionHandler: @escaping (URLRequest?) -> Void) {
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias HTTPURLResponse = AnyObject
| `- note: 'HTTPURLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Networking/RedirectHandler.swift:60:32: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
58 | /// - task: The completed task.
59 | /// - error: An error if the task failed, or nil if it completed successfully.
60 | func urlSession(_ session: URLSession, task: URLSessionTask, didCompleteWithError error: Error?) {
| `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
61 | lock.lock()
62 | allowRedirectTasks.remove(task.taskIdentifier)
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSession = AnyObject
| `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Networking/RedirectHandler.swift:60:50: error: 'URLSessionTask' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
58 | /// - task: The completed task.
59 | /// - error: An error if the task failed, or nil if it completed successfully.
60 | func urlSession(_ session: URLSession, task: URLSessionTask, didCompleteWithError error: Error?) {
| `- error: 'URLSessionTask' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
61 | lock.lock()
62 | allowRedirectTasks.remove(task.taskIdentifier)
Foundation.URLSessionTask:2:18: note: 'URLSessionTask' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSessionTask = AnyObject
| `- note: 'URLSessionTask' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Networking/RedirectHandler.swift:26:44: error: value of type 'URLSessionTask' (aka 'AnyObject') has no member 'taskIdentifier'
24 |
25 | if allowed {
26 | allowRedirectTasks.insert(task.taskIdentifier)
| `- error: value of type 'URLSessionTask' (aka 'AnyObject') has no member 'taskIdentifier'
27 | } else {
28 | allowRedirectTasks.remove(task.taskIdentifier)
/host/spi-builder-workspace/Sources/Networking/RedirectHandler.swift:28:44: error: value of type 'URLSessionTask' (aka 'AnyObject') has no member 'taskIdentifier'
26 | allowRedirectTasks.insert(task.taskIdentifier)
27 | } else {
28 | allowRedirectTasks.remove(task.taskIdentifier)
| `- error: value of type 'URLSessionTask' (aka 'AnyObject') has no member 'taskIdentifier'
29 | }
30 | }
/host/spi-builder-workspace/Sources/Networking/RedirectHandler.swift:46:63: error: value of type 'URLSessionTask' (aka 'AnyObject') has no member 'taskIdentifier'
44 | completionHandler: @escaping (URLRequest?) -> Void) {
45 | lock.lock()
46 | let shouldRedirect = allowRedirectTasks.contains(task.taskIdentifier)
| `- error: value of type 'URLSessionTask' (aka 'AnyObject') has no member 'taskIdentifier'
47 | lock.unlock()
48 |
/host/spi-builder-workspace/Sources/Networking/RedirectHandler.swift:62:40: error: value of type 'URLSessionTask' (aka 'AnyObject') has no member 'taskIdentifier'
60 | func urlSession(_ session: URLSession, task: URLSessionTask, didCompleteWithError error: Error?) {
61 | lock.lock()
62 | allowRedirectTasks.remove(task.taskIdentifier)
| `- error: value of type 'URLSessionTask' (aka 'AnyObject') has no member 'taskIdentifier'
63 | lock.unlock()
64 | }
[903/1102] Compiling BoxSdkGen AiAgentSpreadsheetTool.swift
/host/spi-builder-workspace/Sources/Schemas/AiExtractResponse/AiExtractResponse.swift:26:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
24 |
25 | public func encode(to encoder: Encoder) throws {
26 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
27 | }
28 |
[904/1102] Compiling BoxSdkGen AiAgentTextGen.swift
/host/spi-builder-workspace/Sources/Schemas/AiExtractResponse/AiExtractResponse.swift:26:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
24 |
25 | public func encode(to encoder: Encoder) throws {
26 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
27 | }
28 |
[905/1102] Compiling BoxSdkGen AiAgentTextGenTypeField.swift
/host/spi-builder-workspace/Sources/Schemas/AiExtractResponse/AiExtractResponse.swift:26:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
24 |
25 | public func encode(to encoder: Encoder) throws {
26 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
27 | }
28 |
[906/1102] Compiling BoxSdkGen AiAsk.swift
/host/spi-builder-workspace/Sources/Schemas/AiExtractResponse/AiExtractResponse.swift:26:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
24 |
25 | public func encode(to encoder: Encoder) throws {
26 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
27 | }
28 |
[907/1102] Compiling BoxSdkGen AiAskModeField.swift
/host/spi-builder-workspace/Sources/Schemas/AiExtractResponse/AiExtractResponse.swift:26:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
24 |
25 | public func encode(to encoder: Encoder) throws {
26 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
27 | }
28 |
[908/1102] Compiling BoxSdkGen AiCitation.swift
/host/spi-builder-workspace/Sources/Schemas/AiExtractResponse/AiExtractResponse.swift:26:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
24 |
25 | public func encode(to encoder: Encoder) throws {
26 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
27 | }
28 |
[909/1102] Compiling BoxSdkGen AiCitationTypeField.swift
/host/spi-builder-workspace/Sources/Schemas/AiExtractResponse/AiExtractResponse.swift:26:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
24 |
25 | public func encode(to encoder: Encoder) throws {
26 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
27 | }
28 |
[910/1102] Compiling BoxSdkGen AiDialogueHistory.swift
/host/spi-builder-workspace/Sources/Schemas/AiExtractResponse/AiExtractResponse.swift:26:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
24 |
25 | public func encode(to encoder: Encoder) throws {
26 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
27 | }
28 |
[911/1102] Compiling BoxSdkGen AiExtract.swift
/host/spi-builder-workspace/Sources/Schemas/AiExtractResponse/AiExtractResponse.swift:26:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
24 |
25 | public func encode(to encoder: Encoder) throws {
26 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
27 | }
28 |
[912/1102] Compiling BoxSdkGen AiExtractResponse.swift
/host/spi-builder-workspace/Sources/Schemas/AiExtractResponse/AiExtractResponse.swift:26:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
24 |
25 | public func encode(to encoder: Encoder) throws {
26 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
27 | }
28 |
[913/1102] Compiling BoxSdkGen AiExtractStructured.swift
/host/spi-builder-workspace/Sources/Schemas/AiExtractResponse/AiExtractResponse.swift:26:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
24 |
25 | public func encode(to encoder: Encoder) throws {
26 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
27 | }
28 |
[914/1102] Compiling BoxSdkGen AiExtractStructuredFieldsField.swift
/host/spi-builder-workspace/Sources/Schemas/AiExtractResponse/AiExtractResponse.swift:26:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
24 |
25 | public func encode(to encoder: Encoder) throws {
26 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
27 | }
28 |
[915/1102] Compiling BoxSdkGen AiExtractStructuredFieldsOptionsField.swift
/host/spi-builder-workspace/Sources/Schemas/AiExtractResponse/AiExtractResponse.swift:26:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
24 |
25 | public func encode(to encoder: Encoder) throws {
26 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
27 | }
28 |
[916/1102] Compiling BoxSdkGen AiExtractStructuredMetadataTemplateField.swift
/host/spi-builder-workspace/Sources/Schemas/AiExtractResponse/AiExtractResponse.swift:26:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
24 |
25 | public func encode(to encoder: Encoder) throws {
26 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
27 | }
28 |
[917/1102] Compiling BoxSdkGen AiExtractStructuredMetadataTemplateTypeField.swift
/host/spi-builder-workspace/Sources/Schemas/AiExtractResponse/AiExtractResponse.swift:26:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
24 |
25 | public func encode(to encoder: Encoder) throws {
26 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
27 | }
28 |
[918/1102] Compiling BoxSdkGen AiExtractStructuredResponse.swift
/host/spi-builder-workspace/Sources/Schemas/AiExtractResponse/AiExtractResponse.swift:26:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
24 |
25 | public func encode(to encoder: Encoder) throws {
26 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
27 | }
28 |
[919/1102] Compiling BoxSdkGen AiItemAsk.swift
/host/spi-builder-workspace/Sources/Schemas/AiExtractResponse/AiExtractResponse.swift:26:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
24 |
25 | public func encode(to encoder: Encoder) throws {
26 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
27 | }
28 |
[920/1102] Compiling BoxSdkGen AiItemAskTypeField.swift
/host/spi-builder-workspace/Sources/Schemas/AiExtractResponse/AiExtractResponse.swift:26:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
24 |
25 | public func encode(to encoder: Encoder) throws {
26 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
27 | }
28 |
[921/1102] Compiling BoxSdkGen AiItemBase.swift
/host/spi-builder-workspace/Sources/Schemas/AiExtractResponse/AiExtractResponse.swift:26:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
24 |
25 | public func encode(to encoder: Encoder) throws {
26 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
27 | }
28 |
[922/1102] Compiling BoxSdkGen AiItemBaseTypeField.swift
/host/spi-builder-workspace/Sources/Schemas/AiExtractResponse/AiExtractResponse.swift:26:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
24 |
25 | public func encode(to encoder: Encoder) throws {
26 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
27 | }
28 |
[923/1102] Compiling BoxSdkGen AiLlmEndpointParams.swift
/host/spi-builder-workspace/Sources/Schemas/AiExtractResponse/AiExtractResponse.swift:26:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
24 |
25 | public func encode(to encoder: Encoder) throws {
26 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
27 | }
28 |
[924/1102] Compiling BoxSdkGen AiLlmEndpointParamsAws.swift
/host/spi-builder-workspace/Sources/Schemas/AiExtractResponse/AiExtractResponse.swift:26:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
24 |
25 | public func encode(to encoder: Encoder) throws {
26 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
27 | }
28 |
[925/1102] Compiling BoxSdkGen AiLlmEndpointParamsAwsTypeField.swift
/host/spi-builder-workspace/Sources/Schemas/AiExtractResponse/AiExtractResponse.swift:26:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
24 |
25 | public func encode(to encoder: Encoder) throws {
26 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
27 | }
28 |
[926/1102] Compiling BoxSdkGen AiLlmEndpointParamsGoogle.swift
/host/spi-builder-workspace/Sources/Schemas/AiExtractResponse/AiExtractResponse.swift:26:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
24 |
25 | public func encode(to encoder: Encoder) throws {
26 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
27 | }
28 |
[927/1102] Compiling BoxSdkGen AiLlmEndpointParamsGoogleTypeField.swift
/host/spi-builder-workspace/Sources/Schemas/AiExtractResponse/AiExtractResponse.swift:26:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
24 |
25 | public func encode(to encoder: Encoder) throws {
26 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
27 | }
28 |
[928/1127] Compiling BoxSdkGen CollaborationAllowlistExemptTargets.swift
[929/1127] Compiling BoxSdkGen Collaborations.swift
[930/1127] Compiling BoxSdkGen CollaborationsOffsetPaginated.swift
[931/1127] Compiling BoxSdkGen CollaboratorVariable.swift
[932/1127] Compiling BoxSdkGen CollaboratorVariableTypeField.swift
[933/1127] Compiling BoxSdkGen CollaboratorVariableVariableTypeField.swift
[934/1127] Compiling BoxSdkGen CollaboratorVariableVariableValueField.swift
[935/1127] Compiling BoxSdkGen CollaboratorVariableVariableValueTypeField.swift
[936/1127] Compiling BoxSdkGen Collection.swift
[937/1127] Compiling BoxSdkGen CollectionCollectionTypeField.swift
[938/1127] Compiling BoxSdkGen CollectionNameField.swift
[939/1127] Compiling BoxSdkGen CollectionTypeField.swift
[940/1127] Compiling BoxSdkGen Collections.swift
[941/1127] Compiling BoxSdkGen CollectionsOrderDirectionField.swift
[942/1127] Compiling BoxSdkGen CollectionsOrderField.swift
[943/1127] Compiling BoxSdkGen Comment.swift
[944/1127] Compiling BoxSdkGen CommentItemField.swift
[945/1127] Compiling BoxSdkGen CommentBase.swift
[946/1127] Compiling BoxSdkGen CommentBaseTypeField.swift
[947/1127] Compiling BoxSdkGen CommentFull.swift
[948/1127] Compiling BoxSdkGen Comments.swift
[949/1127] Compiling BoxSdkGen CommentsOrderDirectionField.swift
[950/1127] Compiling BoxSdkGen CommentsOrderField.swift
[951/1127] Compiling BoxSdkGen CompletionRuleVariable.swift
[952/1127] Compiling BoxSdkGen CompletionRuleVariableTypeField.swift
[953/1152] Compiling BoxSdkGen AiAgentAsk.swift
[954/1152] Compiling BoxSdkGen AiAgentAskTypeField.swift
[955/1152] Compiling BoxSdkGen AiAgentAskOrAiAgentExtractOrAiAgentExtractStructuredOrAiAgentTextGen.swift
[956/1152] Compiling BoxSdkGen AiAgentAskOrAiAgentReference.swift
[957/1152] Compiling BoxSdkGen AiAgentBasicGenTool.swift
[958/1152] Compiling BoxSdkGen AiAgentBasicTextTool.swift
[959/1152] Compiling BoxSdkGen AiAgentBasicTextToolBase.swift
[960/1152] Compiling BoxSdkGen AiAgentBasicTextToolTextGen.swift
[961/1152] Compiling BoxSdkGen AiAgentExtract.swift
[962/1152] Compiling BoxSdkGen AiAgentExtractTypeField.swift
[963/1152] Compiling BoxSdkGen AiAgentExtractOrAiAgentReference.swift
[964/1152] Compiling BoxSdkGen AiAgentExtractStructured.swift
[965/1152] Compiling BoxSdkGen AiAgentExtractStructuredTypeField.swift
[966/1152] Compiling BoxSdkGen AiAgentExtractStructuredOrAiAgentReference.swift
[967/1152] Compiling BoxSdkGen AiAgentInfo.swift
[968/1152] Compiling BoxSdkGen AiAgentInfoModelsField.swift
[969/1152] Compiling BoxSdkGen AiAgentLongTextTool.swift
[970/1152] Compiling BoxSdkGen AiAgentLongTextToolEmbeddingsField.swift
[971/1152] Compiling BoxSdkGen AiAgentLongTextToolEmbeddingsStrategyField.swift
[972/1152] Compiling BoxSdkGen AiAgentLongTextToolTextGen.swift
[973/1152] Compiling BoxSdkGen AiAgentLongTextToolTextGenEmbeddingsField.swift
[974/1152] Compiling BoxSdkGen AiAgentLongTextToolTextGenEmbeddingsStrategyField.swift
[975/1152] Compiling BoxSdkGen AiAgentReference.swift
[976/1152] Compiling BoxSdkGen AiAgentReferenceTypeField.swift
[977/1152] Compiling BoxSdkGen AiAgentReferenceOrAiAgentTextGen.swift
[978/1177] Compiling BoxSdkGen ClassificationTemplateFieldsOptionsStaticConfigField.swift
[979/1177] Compiling BoxSdkGen ClassificationTemplateFieldsTypeField.swift
[980/1177] Compiling BoxSdkGen ClassificationTemplateTemplateKeyField.swift
[981/1177] Compiling BoxSdkGen ClassificationTemplateTypeField.swift
[982/1177] Compiling BoxSdkGen ClientError.swift
[983/1177] Compiling BoxSdkGen ClientErrorCodeField.swift
[984/1177] Compiling BoxSdkGen ClientErrorTypeField.swift
[985/1177] Compiling BoxSdkGen Collaboration.swift
[986/1177] Compiling BoxSdkGen CollaborationAcceptanceRequirementsStatusField.swift
[987/1177] Compiling BoxSdkGen CollaborationAcceptanceRequirementsStatusStrongPasswordRequirementField.swift
[988/1177] Compiling BoxSdkGen CollaborationAcceptanceRequirementsStatusTermsOfServiceRequirementField.swift
[989/1177] Compiling BoxSdkGen CollaborationAcceptanceRequirementsStatusTwoFactorAuthenticationRequirementField.swift
[990/1177] Compiling BoxSdkGen CollaborationRoleField.swift
[991/1177] Compiling BoxSdkGen CollaborationStatusField.swift
[992/1177] Compiling BoxSdkGen CollaborationTypeField.swift
[993/1177] Compiling BoxSdkGen CollaborationAllowlistEntries.swift
[994/1177] Compiling BoxSdkGen CollaborationAllowlistEntry.swift
[995/1177] Compiling BoxSdkGen CollaborationAllowlistEntryDirectionField.swift
[996/1177] Compiling BoxSdkGen CollaborationAllowlistEntryEnterpriseField.swift
[997/1177] Compiling BoxSdkGen CollaborationAllowlistEntryEnterpriseTypeField.swift
[998/1177] Compiling BoxSdkGen CollaborationAllowlistEntryTypeField.swift
[999/1177] Compiling BoxSdkGen CollaborationAllowlistExemptTarget.swift
[1000/1177] Compiling BoxSdkGen CollaborationAllowlistExemptTargetEnterpriseField.swift
[1001/1177] Compiling BoxSdkGen CollaborationAllowlistExemptTargetEnterpriseTypeField.swift
[1002/1177] Compiling BoxSdkGen CollaborationAllowlistExemptTargetTypeField.swift
[1003/1177] Compiling BoxSdkGen AiStudioAgentSpreadsheetToolResponse.swift
[1004/1177] Compiling BoxSdkGen AiStudioAgentTextGen.swift
[1005/1177] Compiling BoxSdkGen AiStudioAgentTextGenTypeField.swift
[1006/1177] Compiling BoxSdkGen AiStudioAgentTextGenResponse.swift
[1007/1177] Compiling BoxSdkGen AiStudioAgentTextGenResponseTypeField.swift
[1008/1177] Compiling BoxSdkGen AiTextGen.swift
[1009/1177] Compiling BoxSdkGen AiTextGenItemsField.swift
[1010/1177] Compiling BoxSdkGen AiTextGenItemsTypeField.swift
[1011/1177] Compiling BoxSdkGen AppItem.swift
[1012/1177] Compiling BoxSdkGen AppItemTypeField.swift
[1013/1177] Compiling BoxSdkGen AppItemAssociation.swift
[1014/1177] Compiling BoxSdkGen AppItemAssociationTypeField.swift
[1015/1177] Compiling BoxSdkGen AppItemAssociations.swift
[1016/1177] Compiling BoxSdkGen AppItemEventSource.swift
[1017/1177] Compiling BoxSdkGen AppItemEventSourceTypeField.swift
[1018/1177] Compiling BoxSdkGen AppItemEventSourceOrEventSourceOrFileOrFolderOrGenericSourceOrUser.swift
[1019/1177] Compiling BoxSdkGen Classification.swift
[1020/1177] Compiling BoxSdkGen ClassificationTemplateField.swift
[1021/1177] Compiling BoxSdkGen ClassificationTemplate.swift
[1022/1177] Compiling BoxSdkGen ClassificationTemplateDisplayNameField.swift
[1023/1177] Compiling BoxSdkGen ClassificationTemplateFieldsDisplayNameField.swift
[1024/1177] Compiling BoxSdkGen ClassificationTemplateFieldsField.swift
[1025/1177] Compiling BoxSdkGen ClassificationTemplateFieldsKeyField.swift
[1026/1177] Compiling BoxSdkGen ClassificationTemplateFieldsOptionsField.swift
[1027/1177] Compiling BoxSdkGen ClassificationTemplateFieldsOptionsStaticConfigClassificationField.swift
[1028/1227] Compiling BoxSdkGen AiLlmEndpointParamsIbm.swift
/host/spi-builder-workspace/Sources/Schemas/AiStudioAgentSpreadsheetTool/AiStudioAgentSpreadsheetTool.swift:32:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
30 |
31 | public override func encode(to encoder: Encoder) throws {
32 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
33 | try super.encode(to: encoder)
34 | }
[1029/1227] Compiling BoxSdkGen AiLlmEndpointParamsIbmTypeField.swift
/host/spi-builder-workspace/Sources/Schemas/AiStudioAgentSpreadsheetTool/AiStudioAgentSpreadsheetTool.swift:32:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
30 |
31 | public override func encode(to encoder: Encoder) throws {
32 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
33 | try super.encode(to: encoder)
34 | }
[1030/1227] Compiling BoxSdkGen AiLlmEndpointParamsOpenAi.swift
/host/spi-builder-workspace/Sources/Schemas/AiStudioAgentSpreadsheetTool/AiStudioAgentSpreadsheetTool.swift:32:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
30 |
31 | public override func encode(to encoder: Encoder) throws {
32 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
33 | try super.encode(to: encoder)
34 | }
[1031/1227] Compiling BoxSdkGen AiLlmEndpointParamsOpenAiTypeField.swift
/host/spi-builder-workspace/Sources/Schemas/AiStudioAgentSpreadsheetTool/AiStudioAgentSpreadsheetTool.swift:32:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
30 |
31 | public override func encode(to encoder: Encoder) throws {
32 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
33 | try super.encode(to: encoder)
34 | }
[1032/1227] Compiling BoxSdkGen AiMultipleAgentResponse.swift
/host/spi-builder-workspace/Sources/Schemas/AiStudioAgentSpreadsheetTool/AiStudioAgentSpreadsheetTool.swift:32:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
30 |
31 | public override func encode(to encoder: Encoder) throws {
32 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
33 | try super.encode(to: encoder)
34 | }
[1033/1227] Compiling BoxSdkGen AiResponse.swift
/host/spi-builder-workspace/Sources/Schemas/AiStudioAgentSpreadsheetTool/AiStudioAgentSpreadsheetTool.swift:32:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
30 |
31 | public override func encode(to encoder: Encoder) throws {
32 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
33 | try super.encode(to: encoder)
34 | }
[1034/1227] Compiling BoxSdkGen AiResponseFull.swift
/host/spi-builder-workspace/Sources/Schemas/AiStudioAgentSpreadsheetTool/AiStudioAgentSpreadsheetTool.swift:32:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
30 |
31 | public override func encode(to encoder: Encoder) throws {
32 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
33 | try super.encode(to: encoder)
34 | }
[1035/1227] Compiling BoxSdkGen AiSingleAgentResponse.swift
/host/spi-builder-workspace/Sources/Schemas/AiStudioAgentSpreadsheetTool/AiStudioAgentSpreadsheetTool.swift:32:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
30 |
31 | public override func encode(to encoder: Encoder) throws {
32 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
33 | try super.encode(to: encoder)
34 | }
[1036/1227] Compiling BoxSdkGen AiSingleAgentResponseTypeField.swift
/host/spi-builder-workspace/Sources/Schemas/AiStudioAgentSpreadsheetTool/AiStudioAgentSpreadsheetTool.swift:32:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
30 |
31 | public override func encode(to encoder: Encoder) throws {
32 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
33 | try super.encode(to: encoder)
34 | }
[1037/1227] Compiling BoxSdkGen AiSingleAgentResponseFull.swift
/host/spi-builder-workspace/Sources/Schemas/AiStudioAgentSpreadsheetTool/AiStudioAgentSpreadsheetTool.swift:32:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
30 |
31 | public override func encode(to encoder: Encoder) throws {
32 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
33 | try super.encode(to: encoder)
34 | }
[1038/1227] Compiling BoxSdkGen AiStudioAgentAsk.swift
/host/spi-builder-workspace/Sources/Schemas/AiStudioAgentSpreadsheetTool/AiStudioAgentSpreadsheetTool.swift:32:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
30 |
31 | public override func encode(to encoder: Encoder) throws {
32 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
33 | try super.encode(to: encoder)
34 | }
[1039/1227] Compiling BoxSdkGen AiStudioAgentAskTypeField.swift
/host/spi-builder-workspace/Sources/Schemas/AiStudioAgentSpreadsheetTool/AiStudioAgentSpreadsheetTool.swift:32:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
30 |
31 | public override func encode(to encoder: Encoder) throws {
32 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
33 | try super.encode(to: encoder)
34 | }
[1040/1227] Compiling BoxSdkGen AiStudioAgentAskResponse.swift
/host/spi-builder-workspace/Sources/Schemas/AiStudioAgentSpreadsheetTool/AiStudioAgentSpreadsheetTool.swift:32:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
30 |
31 | public override func encode(to encoder: Encoder) throws {
32 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
33 | try super.encode(to: encoder)
34 | }
[1041/1227] Compiling BoxSdkGen AiStudioAgentAskResponseTypeField.swift
/host/spi-builder-workspace/Sources/Schemas/AiStudioAgentSpreadsheetTool/AiStudioAgentSpreadsheetTool.swift:32:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
30 |
31 | public override func encode(to encoder: Encoder) throws {
32 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
33 | try super.encode(to: encoder)
34 | }
[1042/1227] Compiling BoxSdkGen AiStudioAgentBasicGenTool.swift
/host/spi-builder-workspace/Sources/Schemas/AiStudioAgentSpreadsheetTool/AiStudioAgentSpreadsheetTool.swift:32:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
30 |
31 | public override func encode(to encoder: Encoder) throws {
32 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
33 | try super.encode(to: encoder)
34 | }
[1043/1227] Compiling BoxSdkGen AiStudioAgentBasicGenToolResponse.swift
/host/spi-builder-workspace/Sources/Schemas/AiStudioAgentSpreadsheetTool/AiStudioAgentSpreadsheetTool.swift:32:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
30 |
31 | public override func encode(to encoder: Encoder) throws {
32 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
33 | try super.encode(to: encoder)
34 | }
[1044/1227] Compiling BoxSdkGen AiStudioAgentBasicTextTool.swift
/host/spi-builder-workspace/Sources/Schemas/AiStudioAgentSpreadsheetTool/AiStudioAgentSpreadsheetTool.swift:32:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
30 |
31 | public override func encode(to encoder: Encoder) throws {
32 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
33 | try super.encode(to: encoder)
34 | }
[1045/1227] Compiling BoxSdkGen AiStudioAgentBasicTextToolResponse.swift
/host/spi-builder-workspace/Sources/Schemas/AiStudioAgentSpreadsheetTool/AiStudioAgentSpreadsheetTool.swift:32:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
30 |
31 | public override func encode(to encoder: Encoder) throws {
32 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
33 | try super.encode(to: encoder)
34 | }
[1046/1227] Compiling BoxSdkGen AiStudioAgentExtract.swift
/host/spi-builder-workspace/Sources/Schemas/AiStudioAgentSpreadsheetTool/AiStudioAgentSpreadsheetTool.swift:32:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
30 |
31 | public override func encode(to encoder: Encoder) throws {
32 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
33 | try super.encode(to: encoder)
34 | }
[1047/1227] Compiling BoxSdkGen AiStudioAgentExtractTypeField.swift
/host/spi-builder-workspace/Sources/Schemas/AiStudioAgentSpreadsheetTool/AiStudioAgentSpreadsheetTool.swift:32:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
30 |
31 | public override func encode(to encoder: Encoder) throws {
32 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
33 | try super.encode(to: encoder)
34 | }
[1048/1227] Compiling BoxSdkGen AiStudioAgentExtractResponse.swift
/host/spi-builder-workspace/Sources/Schemas/AiStudioAgentSpreadsheetTool/AiStudioAgentSpreadsheetTool.swift:32:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
30 |
31 | public override func encode(to encoder: Encoder) throws {
32 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
33 | try super.encode(to: encoder)
34 | }
[1049/1227] Compiling BoxSdkGen AiStudioAgentExtractResponseTypeField.swift
/host/spi-builder-workspace/Sources/Schemas/AiStudioAgentSpreadsheetTool/AiStudioAgentSpreadsheetTool.swift:32:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
30 |
31 | public override func encode(to encoder: Encoder) throws {
32 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
33 | try super.encode(to: encoder)
34 | }
[1050/1227] Compiling BoxSdkGen AiStudioAgentLongTextTool.swift
/host/spi-builder-workspace/Sources/Schemas/AiStudioAgentSpreadsheetTool/AiStudioAgentSpreadsheetTool.swift:32:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
30 |
31 | public override func encode(to encoder: Encoder) throws {
32 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
33 | try super.encode(to: encoder)
34 | }
[1051/1227] Compiling BoxSdkGen AiStudioAgentLongTextToolResponse.swift
/host/spi-builder-workspace/Sources/Schemas/AiStudioAgentSpreadsheetTool/AiStudioAgentSpreadsheetTool.swift:32:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
30 |
31 | public override func encode(to encoder: Encoder) throws {
32 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
33 | try super.encode(to: encoder)
34 | }
[1052/1227] Compiling BoxSdkGen AiStudioAgentSpreadsheetTool.swift
/host/spi-builder-workspace/Sources/Schemas/AiStudioAgentSpreadsheetTool/AiStudioAgentSpreadsheetTool.swift:32:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
30 |
31 | public override func encode(to encoder: Encoder) throws {
32 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
33 | try super.encode(to: encoder)
34 | }
[1053/1252] Compiling BoxSdkGen CompletionRuleVariableVariableTypeField.swift
/host/spi-builder-workspace/Sources/Schemas/ConflictError/ConflictError.swift:40:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
38 |
39 | public override func encode(to encoder: Encoder) throws {
40 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
41 | try super.encode(to: encoder)
42 | }
/host/spi-builder-workspace/Sources/Schemas/Event/EventAdditionalDetailsField.swift:23:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
21 |
22 | public func encode(to encoder: Encoder) throws {
23 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
24 | }
25 |
[1054/1252] Compiling BoxSdkGen CompletionRuleVariableVariableValueField.swift
/host/spi-builder-workspace/Sources/Schemas/ConflictError/ConflictError.swift:40:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
38 |
39 | public override func encode(to encoder: Encoder) throws {
40 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
41 | try super.encode(to: encoder)
42 | }
/host/spi-builder-workspace/Sources/Schemas/Event/EventAdditionalDetailsField.swift:23:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
21 |
22 | public func encode(to encoder: Encoder) throws {
23 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
24 | }
25 |
[1055/1252] Compiling BoxSdkGen ConflictError.swift
/host/spi-builder-workspace/Sources/Schemas/ConflictError/ConflictError.swift:40:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
38 |
39 | public override func encode(to encoder: Encoder) throws {
40 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
41 | try super.encode(to: encoder)
42 | }
/host/spi-builder-workspace/Sources/Schemas/Event/EventAdditionalDetailsField.swift:23:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
21 |
22 | public func encode(to encoder: Encoder) throws {
23 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
24 | }
25 |
[1056/1252] Compiling BoxSdkGen ConflictErrorContextInfoField.swift
/host/spi-builder-workspace/Sources/Schemas/ConflictError/ConflictError.swift:40:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
38 |
39 | public override func encode(to encoder: Encoder) throws {
40 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
41 | try super.encode(to: encoder)
42 | }
/host/spi-builder-workspace/Sources/Schemas/Event/EventAdditionalDetailsField.swift:23:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
21 |
22 | public func encode(to encoder: Encoder) throws {
23 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
24 | }
25 |
[1057/1252] Compiling BoxSdkGen CreateAiAgent.swift
/host/spi-builder-workspace/Sources/Schemas/ConflictError/ConflictError.swift:40:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
38 |
39 | public override func encode(to encoder: Encoder) throws {
40 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
41 | try super.encode(to: encoder)
42 | }
/host/spi-builder-workspace/Sources/Schemas/Event/EventAdditionalDetailsField.swift:23:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
21 |
22 | public func encode(to encoder: Encoder) throws {
23 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
24 | }
25 |
[1058/1252] Compiling BoxSdkGen CreateAiAgentTypeField.swift
/host/spi-builder-workspace/Sources/Schemas/ConflictError/ConflictError.swift:40:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
38 |
39 | public override func encode(to encoder: Encoder) throws {
40 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
41 | try super.encode(to: encoder)
42 | }
/host/spi-builder-workspace/Sources/Schemas/Event/EventAdditionalDetailsField.swift:23:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
21 |
22 | public func encode(to encoder: Encoder) throws {
23 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
24 | }
25 |
[1059/1252] Compiling BoxSdkGen DevicePinner.swift
/host/spi-builder-workspace/Sources/Schemas/ConflictError/ConflictError.swift:40:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
38 |
39 | public override func encode(to encoder: Encoder) throws {
40 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
41 | try super.encode(to: encoder)
42 | }
/host/spi-builder-workspace/Sources/Schemas/Event/EventAdditionalDetailsField.swift:23:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
21 |
22 | public func encode(to encoder: Encoder) throws {
23 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
24 | }
25 |
[1060/1252] Compiling BoxSdkGen DevicePinnerTypeField.swift
/host/spi-builder-workspace/Sources/Schemas/ConflictError/ConflictError.swift:40:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
38 |
39 | public override func encode(to encoder: Encoder) throws {
40 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
41 | try super.encode(to: encoder)
42 | }
/host/spi-builder-workspace/Sources/Schemas/Event/EventAdditionalDetailsField.swift:23:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
21 |
22 | public func encode(to encoder: Encoder) throws {
23 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
24 | }
25 |
[1061/1252] Compiling BoxSdkGen DevicePinners.swift
/host/spi-builder-workspace/Sources/Schemas/ConflictError/ConflictError.swift:40:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
38 |
39 | public override func encode(to encoder: Encoder) throws {
40 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
41 | try super.encode(to: encoder)
42 | }
/host/spi-builder-workspace/Sources/Schemas/Event/EventAdditionalDetailsField.swift:23:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
21 |
22 | public func encode(to encoder: Encoder) throws {
23 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
24 | }
25 |
[1062/1252] Compiling BoxSdkGen DevicePinnersOrderByField.swift
/host/spi-builder-workspace/Sources/Schemas/ConflictError/ConflictError.swift:40:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
38 |
39 | public override func encode(to encoder: Encoder) throws {
40 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
41 | try super.encode(to: encoder)
42 | }
/host/spi-builder-workspace/Sources/Schemas/Event/EventAdditionalDetailsField.swift:23:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
21 |
22 | public func encode(to encoder: Encoder) throws {
23 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
24 | }
25 |
[1063/1252] Compiling BoxSdkGen DevicePinnersOrderDirectionField.swift
/host/spi-builder-workspace/Sources/Schemas/ConflictError/ConflictError.swift:40:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
38 |
39 | public override func encode(to encoder: Encoder) throws {
40 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
41 | try super.encode(to: encoder)
42 | }
/host/spi-builder-workspace/Sources/Schemas/Event/EventAdditionalDetailsField.swift:23:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
21 |
22 | public func encode(to encoder: Encoder) throws {
23 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
24 | }
25 |
[1064/1252] Compiling BoxSdkGen DevicePinnersOrderField.swift
/host/spi-builder-workspace/Sources/Schemas/ConflictError/ConflictError.swift:40:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
38 |
39 | public override func encode(to encoder: Encoder) throws {
40 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
41 | try super.encode(to: encoder)
42 | }
/host/spi-builder-workspace/Sources/Schemas/Event/EventAdditionalDetailsField.swift:23:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
21 |
22 | public func encode(to encoder: Encoder) throws {
23 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
24 | }
25 |
[1065/1252] Compiling BoxSdkGen EmailAlias.swift
/host/spi-builder-workspace/Sources/Schemas/ConflictError/ConflictError.swift:40:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
38 |
39 | public override func encode(to encoder: Encoder) throws {
40 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
41 | try super.encode(to: encoder)
42 | }
/host/spi-builder-workspace/Sources/Schemas/Event/EventAdditionalDetailsField.swift:23:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
21 |
22 | public func encode(to encoder: Encoder) throws {
23 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
24 | }
25 |
[1066/1252] Compiling BoxSdkGen EmailAliasTypeField.swift
/host/spi-builder-workspace/Sources/Schemas/ConflictError/ConflictError.swift:40:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
38 |
39 | public override func encode(to encoder: Encoder) throws {
40 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
41 | try super.encode(to: encoder)
42 | }
/host/spi-builder-workspace/Sources/Schemas/Event/EventAdditionalDetailsField.swift:23:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
21 |
22 | public func encode(to encoder: Encoder) throws {
23 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
24 | }
25 |
[1067/1252] Compiling BoxSdkGen EmailAliases.swift
/host/spi-builder-workspace/Sources/Schemas/ConflictError/ConflictError.swift:40:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
38 |
39 | public override func encode(to encoder: Encoder) throws {
40 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
41 | try super.encode(to: encoder)
42 | }
/host/spi-builder-workspace/Sources/Schemas/Event/EventAdditionalDetailsField.swift:23:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
21 |
22 | public func encode(to encoder: Encoder) throws {
23 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
24 | }
25 |
[1068/1252] Compiling BoxSdkGen EnterpriseBase.swift
/host/spi-builder-workspace/Sources/Schemas/ConflictError/ConflictError.swift:40:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
38 |
39 | public override func encode(to encoder: Encoder) throws {
40 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
41 | try super.encode(to: encoder)
42 | }
/host/spi-builder-workspace/Sources/Schemas/Event/EventAdditionalDetailsField.swift:23:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
21 |
22 | public func encode(to encoder: Encoder) throws {
23 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
24 | }
25 |
[1069/1252] Compiling BoxSdkGen EnterpriseBaseTypeField.swift
/host/spi-builder-workspace/Sources/Schemas/ConflictError/ConflictError.swift:40:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
38 |
39 | public override func encode(to encoder: Encoder) throws {
40 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
41 | try super.encode(to: encoder)
42 | }
/host/spi-builder-workspace/Sources/Schemas/Event/EventAdditionalDetailsField.swift:23:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
21 |
22 | public func encode(to encoder: Encoder) throws {
23 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
24 | }
25 |
[1070/1252] Compiling BoxSdkGen Event.swift
/host/spi-builder-workspace/Sources/Schemas/ConflictError/ConflictError.swift:40:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
38 |
39 | public override func encode(to encoder: Encoder) throws {
40 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
41 | try super.encode(to: encoder)
42 | }
/host/spi-builder-workspace/Sources/Schemas/Event/EventAdditionalDetailsField.swift:23:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
21 |
22 | public func encode(to encoder: Encoder) throws {
23 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
24 | }
25 |
[1071/1252] Compiling BoxSdkGen EventAdditionalDetailsField.swift
/host/spi-builder-workspace/Sources/Schemas/ConflictError/ConflictError.swift:40:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
38 |
39 | public override func encode(to encoder: Encoder) throws {
40 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
41 | try super.encode(to: encoder)
42 | }
/host/spi-builder-workspace/Sources/Schemas/Event/EventAdditionalDetailsField.swift:23:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
21 |
22 | public func encode(to encoder: Encoder) throws {
23 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
24 | }
25 |
[1072/1252] Compiling BoxSdkGen EventEventTypeField.swift
/host/spi-builder-workspace/Sources/Schemas/ConflictError/ConflictError.swift:40:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
38 |
39 | public override func encode(to encoder: Encoder) throws {
40 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
41 | try super.encode(to: encoder)
42 | }
/host/spi-builder-workspace/Sources/Schemas/Event/EventAdditionalDetailsField.swift:23:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
21 |
22 | public func encode(to encoder: Encoder) throws {
23 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
24 | }
25 |
[1073/1252] Compiling BoxSdkGen EventSource.swift
/host/spi-builder-workspace/Sources/Schemas/ConflictError/ConflictError.swift:40:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
38 |
39 | public override func encode(to encoder: Encoder) throws {
40 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
41 | try super.encode(to: encoder)
42 | }
/host/spi-builder-workspace/Sources/Schemas/Event/EventAdditionalDetailsField.swift:23:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
21 |
22 | public func encode(to encoder: Encoder) throws {
23 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
24 | }
25 |
[1074/1252] Compiling BoxSdkGen EventSourceClassificationField.swift
/host/spi-builder-workspace/Sources/Schemas/ConflictError/ConflictError.swift:40:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
38 |
39 | public override func encode(to encoder: Encoder) throws {
40 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
41 | try super.encode(to: encoder)
42 | }
/host/spi-builder-workspace/Sources/Schemas/Event/EventAdditionalDetailsField.swift:23:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
21 |
22 | public func encode(to encoder: Encoder) throws {
23 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
24 | }
25 |
[1075/1252] Compiling BoxSdkGen EventSourceItemTypeField.swift
/host/spi-builder-workspace/Sources/Schemas/ConflictError/ConflictError.swift:40:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
38 |
39 | public override func encode(to encoder: Encoder) throws {
40 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
41 | try super.encode(to: encoder)
42 | }
/host/spi-builder-workspace/Sources/Schemas/Event/EventAdditionalDetailsField.swift:23:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
21 |
22 | public func encode(to encoder: Encoder) throws {
23 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
24 | }
25 |
[1076/1252] Compiling BoxSdkGen Events.swift
/host/spi-builder-workspace/Sources/Schemas/ConflictError/ConflictError.swift:40:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
38 |
39 | public override func encode(to encoder: Encoder) throws {
40 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
41 | try super.encode(to: encoder)
42 | }
/host/spi-builder-workspace/Sources/Schemas/Event/EventAdditionalDetailsField.swift:23:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
21 |
22 | public func encode(to encoder: Encoder) throws {
23 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
24 | }
25 |
[1077/1252] Compiling BoxSdkGen EventsNextStreamPositionField.swift
/host/spi-builder-workspace/Sources/Schemas/ConflictError/ConflictError.swift:40:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
38 |
39 | public override func encode(to encoder: Encoder) throws {
40 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
41 | try super.encode(to: encoder)
42 | }
/host/spi-builder-workspace/Sources/Schemas/Event/EventAdditionalDetailsField.swift:23:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
21 |
22 | public func encode(to encoder: Encoder) throws {
23 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
24 | }
25 |
[1078/1277] Compiling BoxSdkGen File.swift
/host/spi-builder-workspace/Sources/Schemas/FileConflict/FileConflict.swift:45:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
43 |
44 | public override func encode(to encoder: Encoder) throws {
45 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
46 | try super.encode(to: encoder)
47 | }
[1079/1277] Compiling BoxSdkGen FileItemStatusField.swift
/host/spi-builder-workspace/Sources/Schemas/FileConflict/FileConflict.swift:45:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
43 |
44 | public override func encode(to encoder: Encoder) throws {
45 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
46 | try super.encode(to: encoder)
47 | }
[1080/1277] Compiling BoxSdkGen FilePathCollectionField.swift
/host/spi-builder-workspace/Sources/Schemas/FileConflict/FileConflict.swift:45:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
43 |
44 | public override func encode(to encoder: Encoder) throws {
45 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
46 | try super.encode(to: encoder)
47 | }
[1081/1277] Compiling BoxSdkGen FileSharedLinkAccessField.swift
/host/spi-builder-workspace/Sources/Schemas/FileConflict/FileConflict.swift:45:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
43 |
44 | public override func encode(to encoder: Encoder) throws {
45 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
46 | try super.encode(to: encoder)
47 | }
[1082/1277] Compiling BoxSdkGen FileSharedLinkEffectiveAccessField.swift
/host/spi-builder-workspace/Sources/Schemas/FileConflict/FileConflict.swift:45:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
43 |
44 | public override func encode(to encoder: Encoder) throws {
45 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
46 | try super.encode(to: encoder)
47 | }
[1083/1277] Compiling BoxSdkGen FileSharedLinkEffectivePermissionField.swift
/host/spi-builder-workspace/Sources/Schemas/FileConflict/FileConflict.swift:45:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
43 |
44 | public override func encode(to encoder: Encoder) throws {
45 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
46 | try super.encode(to: encoder)
47 | }
[1084/1277] Compiling BoxSdkGen FileSharedLinkField.swift
/host/spi-builder-workspace/Sources/Schemas/FileConflict/FileConflict.swift:45:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
43 |
44 | public override func encode(to encoder: Encoder) throws {
45 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
46 | try super.encode(to: encoder)
47 | }
[1085/1277] Compiling BoxSdkGen FileSharedLinkPermissionsField.swift
/host/spi-builder-workspace/Sources/Schemas/FileConflict/FileConflict.swift:45:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
43 |
44 | public override func encode(to encoder: Encoder) throws {
45 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
46 | try super.encode(to: encoder)
47 | }
[1086/1277] Compiling BoxSdkGen FileBase.swift
/host/spi-builder-workspace/Sources/Schemas/FileConflict/FileConflict.swift:45:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
43 |
44 | public override func encode(to encoder: Encoder) throws {
45 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
46 | try super.encode(to: encoder)
47 | }
[1087/1277] Compiling BoxSdkGen FileBaseTypeField.swift
/host/spi-builder-workspace/Sources/Schemas/FileConflict/FileConflict.swift:45:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
43 |
44 | public override func encode(to encoder: Encoder) throws {
45 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
46 | try super.encode(to: encoder)
47 | }
[1088/1277] Compiling BoxSdkGen FileBaseOrFolderBaseOrWebLinkBase.swift
/host/spi-builder-workspace/Sources/Schemas/FileConflict/FileConflict.swift:45:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
43 |
44 | public override func encode(to encoder: Encoder) throws {
45 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
46 | try super.encode(to: encoder)
47 | }
[1089/1277] Compiling BoxSdkGen FileConflict.swift
/host/spi-builder-workspace/Sources/Schemas/FileConflict/FileConflict.swift:45:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
43 |
44 | public override func encode(to encoder: Encoder) throws {
45 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
46 | try super.encode(to: encoder)
47 | }
[1090/1277] Compiling BoxSdkGen FileFull.swift
/host/spi-builder-workspace/Sources/Schemas/FileConflict/FileConflict.swift:45:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
43 |
44 | public override func encode(to encoder: Encoder) throws {
45 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
46 | try super.encode(to: encoder)
47 | }
[1091/1277] Compiling BoxSdkGen FileFullAllowedInviteeRolesField.swift
/host/spi-builder-workspace/Sources/Schemas/FileConflict/FileConflict.swift:45:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
43 |
44 | public override func encode(to encoder: Encoder) throws {
45 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
46 | try super.encode(to: encoder)
47 | }
[1092/1277] Compiling BoxSdkGen FileFullClassificationField.swift
/host/spi-builder-workspace/Sources/Schemas/FileConflict/FileConflict.swift:45:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
43 |
44 | public override func encode(to encoder: Encoder) throws {
45 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
46 | try super.encode(to: encoder)
47 | }
[1093/1277] Compiling BoxSdkGen FileFullExpiringEmbedLinkField.swift
/host/spi-builder-workspace/Sources/Schemas/FileConflict/FileConflict.swift:45:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
43 |
44 | public override func encode(to encoder: Encoder) throws {
45 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
46 | try super.encode(to: encoder)
47 | }
[1094/1277] Compiling BoxSdkGen FileFullExpiringEmbedLinkTokenTypeField.swift
/host/spi-builder-workspace/Sources/Schemas/FileConflict/FileConflict.swift:45:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
43 |
44 | public override func encode(to encoder: Encoder) throws {
45 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
46 | try super.encode(to: encoder)
47 | }
[1095/1277] Compiling BoxSdkGen FileFullLockAppTypeField.swift
/host/spi-builder-workspace/Sources/Schemas/FileConflict/FileConflict.swift:45:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
43 |
44 | public override func encode(to encoder: Encoder) throws {
45 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
46 | try super.encode(to: encoder)
47 | }
[1096/1277] Compiling BoxSdkGen FileFullLockField.swift
/host/spi-builder-workspace/Sources/Schemas/FileConflict/FileConflict.swift:45:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
43 |
44 | public override func encode(to encoder: Encoder) throws {
45 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
46 | try super.encode(to: encoder)
47 | }
[1097/1277] Compiling BoxSdkGen FileFullLockTypeField.swift
/host/spi-builder-workspace/Sources/Schemas/FileConflict/FileConflict.swift:45:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
43 |
44 | public override func encode(to encoder: Encoder) throws {
45 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
46 | try super.encode(to: encoder)
47 | }
[1098/1277] Compiling BoxSdkGen FileFullMetadataField.swift
/host/spi-builder-workspace/Sources/Schemas/FileConflict/FileConflict.swift:45:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
43 |
44 | public override func encode(to encoder: Encoder) throws {
45 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
46 | try super.encode(to: encoder)
47 | }
[1099/1277] Compiling BoxSdkGen FileFullPermissionsField.swift
/host/spi-builder-workspace/Sources/Schemas/FileConflict/FileConflict.swift:45:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
43 |
44 | public override func encode(to encoder: Encoder) throws {
45 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
46 | try super.encode(to: encoder)
47 | }
[1100/1277] Compiling BoxSdkGen FileFullRepresentationsEntriesContentField.swift
/host/spi-builder-workspace/Sources/Schemas/FileConflict/FileConflict.swift:45:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
43 |
44 | public override func encode(to encoder: Encoder) throws {
45 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
46 | try super.encode(to: encoder)
47 | }
[1101/1277] Compiling BoxSdkGen FileFullRepresentationsEntriesField.swift
/host/spi-builder-workspace/Sources/Schemas/FileConflict/FileConflict.swift:45:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
43 |
44 | public override func encode(to encoder: Encoder) throws {
45 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
46 | try super.encode(to: encoder)
47 | }
[1102/1277] Compiling BoxSdkGen FileFullRepresentationsEntriesInfoField.swift
/host/spi-builder-workspace/Sources/Schemas/FileConflict/FileConflict.swift:45:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
43 |
44 | public override func encode(to encoder: Encoder) throws {
45 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
46 | try super.encode(to: encoder)
47 | }
[1103/1302] Compiling BoxSdkGen FileFullRepresentationsEntriesPropertiesField.swift
[1104/1302] Compiling BoxSdkGen FileFullRepresentationsEntriesStatusField.swift
[1105/1302] Compiling BoxSdkGen FileFullRepresentationsEntriesStatusStateField.swift
[1106/1302] Compiling BoxSdkGen FileFullRepresentationsField.swift
[1107/1302] Compiling BoxSdkGen FileFullSharedLinkPermissionOptionsField.swift
[1108/1302] Compiling BoxSdkGen FileFullWatermarkInfoField.swift
[1109/1302] Compiling BoxSdkGen FileFullOrFolderFull.swift
[1110/1302] Compiling BoxSdkGen FileFullOrFolderFullOrWebLink.swift
[1111/1302] Compiling BoxSdkGen FileFullOrFolderMiniOrWebLink.swift
[1112/1302] Compiling BoxSdkGen FileMini.swift
[1113/1302] Compiling BoxSdkGen FileMiniOrFolderMini.swift
[1114/1302] Compiling BoxSdkGen FileOrFolder.swift
[1115/1302] Compiling BoxSdkGen FileOrFolderOrWebLink.swift
[1116/1302] Compiling BoxSdkGen FileOrFolderScope.swift
[1117/1302] Compiling BoxSdkGen FileOrFolderScopeScopeField.swift
[1118/1302] Compiling BoxSdkGen FileRequest.swift
[1119/1302] Compiling BoxSdkGen FileRequestStatusField.swift
[1120/1302] Compiling BoxSdkGen FileRequestTypeField.swift
[1121/1302] Compiling BoxSdkGen FileRequestCopyRequest.swift
[1122/1302] Compiling BoxSdkGen FileRequestCopyRequestFolderField.swift
[1123/1302] Compiling BoxSdkGen FileRequestCopyRequestFolderTypeField.swift
[1124/1302] Compiling BoxSdkGen FileRequestUpdateRequest.swift
[1125/1302] Compiling BoxSdkGen FileRequestUpdateRequestStatusField.swift
[1126/1302] Compiling BoxSdkGen FileVersion.swift
[1127/1302] Compiling BoxSdkGen FileVersionBase.swift
[1128/1327] Compiling BoxSdkGen FileVersionBaseTypeField.swift
[1129/1327] Compiling BoxSdkGen FileVersionFull.swift
[1130/1327] Compiling BoxSdkGen FileVersionLegalHold.swift
[1131/1327] Compiling BoxSdkGen FileVersionLegalHoldTypeField.swift
[1132/1327] Compiling BoxSdkGen FileVersionLegalHolds.swift
[1133/1327] Compiling BoxSdkGen FileVersionMini.swift
[1134/1327] Compiling BoxSdkGen FileVersionRetention.swift
[1135/1327] Compiling BoxSdkGen FileVersionRetentionTypeField.swift
[1136/1327] Compiling BoxSdkGen FileVersionRetentions.swift
[1137/1327] Compiling BoxSdkGen FileVersions.swift
[1138/1327] Compiling BoxSdkGen FileVersionsOrderDirectionField.swift
[1139/1327] Compiling BoxSdkGen FileVersionsOrderField.swift
[1140/1327] Compiling BoxSdkGen Files.swift
[1141/1327] Compiling BoxSdkGen FilesOnHold.swift
[1142/1327] Compiling BoxSdkGen FilesUnderRetention.swift
[1143/1327] Compiling BoxSdkGen Folder.swift
[1144/1327] Compiling BoxSdkGen FolderFolderUploadEmailAccessField.swift
[1145/1327] Compiling BoxSdkGen FolderFolderUploadEmailField.swift
[1146/1327] Compiling BoxSdkGen FolderItemStatusField.swift
[1147/1327] Compiling BoxSdkGen FolderPathCollectionField.swift
[1148/1327] Compiling BoxSdkGen FolderSharedLinkAccessField.swift
[1149/1327] Compiling BoxSdkGen FolderSharedLinkEffectiveAccessField.swift
[1150/1327] Compiling BoxSdkGen FolderSharedLinkEffectivePermissionField.swift
[1151/1327] Compiling BoxSdkGen FolderSharedLinkField.swift
[1152/1327] Compiling BoxSdkGen FolderSharedLinkPermissionsField.swift
[1153/1327] Compiling BoxSdkGen FolderBase.swift
[1154/1327] Compiling BoxSdkGen FolderBaseTypeField.swift
[1155/1327] Compiling BoxSdkGen FolderFull.swift
[1156/1327] Compiling BoxSdkGen FolderFullAllowedInviteeRolesField.swift
[1157/1327] Compiling BoxSdkGen FolderFullAllowedSharedLinkAccessLevelsField.swift
[1158/1327] Compiling BoxSdkGen FolderFullClassificationField.swift
[1159/1327] Compiling BoxSdkGen FolderFullMetadataField.swift
[1160/1327] Compiling BoxSdkGen FolderFullPermissionsField.swift
[1161/1327] Compiling BoxSdkGen FolderFullSyncStateField.swift
[1162/1327] Compiling BoxSdkGen FolderFullWatermarkInfoField.swift
[1163/1327] Compiling BoxSdkGen FolderLock.swift
[1164/1327] Compiling BoxSdkGen FolderLockLockedOperationsField.swift
[1165/1327] Compiling BoxSdkGen FolderLocks.swift
[1166/1327] Compiling BoxSdkGen FolderMini.swift
[1167/1327] Compiling BoxSdkGen FolderReference.swift
[1168/1327] Compiling BoxSdkGen FolderReferenceTypeField.swift
[1169/1327] Compiling BoxSdkGen GenericSource.swift
[1170/1327] Compiling BoxSdkGen Group.swift
[1171/1327] Compiling BoxSdkGen GroupBase.swift
[1172/1327] Compiling BoxSdkGen GroupBaseTypeField.swift
[1173/1327] Compiling BoxSdkGen GroupFull.swift
[1174/1327] Compiling BoxSdkGen GroupFullInvitabilityLevelField.swift
[1175/1327] Compiling BoxSdkGen GroupFullMemberViewabilityLevelField.swift
[1176/1327] Compiling BoxSdkGen GroupFullPermissionsField.swift
[1177/1327] Compiling BoxSdkGen GroupMembership.swift
[1178/1377] Compiling BoxSdkGen GroupMembershipRoleField.swift
[1179/1377] Compiling BoxSdkGen GroupMembershipTypeField.swift
[1180/1377] Compiling BoxSdkGen GroupMemberships.swift
[1181/1377] Compiling BoxSdkGen GroupMembershipsOrderDirectionField.swift
[1182/1377] Compiling BoxSdkGen GroupMembershipsOrderField.swift
[1183/1377] Compiling BoxSdkGen GroupMini.swift
[1184/1377] Compiling BoxSdkGen GroupMiniGroupTypeField.swift
[1185/1377] Compiling BoxSdkGen GroupMiniOrUserCollaborations.swift
[1186/1377] Compiling BoxSdkGen Groups.swift
[1187/1377] Compiling BoxSdkGen GroupsOrderDirectionField.swift
[1188/1377] Compiling BoxSdkGen GroupsOrderField.swift
[1189/1377] Compiling BoxSdkGen IntegrationMapping.swift
[1190/1377] Compiling BoxSdkGen IntegrationMappingIntegrationTypeField.swift
[1191/1377] Compiling BoxSdkGen IntegrationMappingBase.swift
[1192/1377] Compiling BoxSdkGen IntegrationMappingBaseTypeField.swift
[1193/1377] Compiling BoxSdkGen IntegrationMappingBoxItemSlack.swift
[1194/1377] Compiling BoxSdkGen IntegrationMappingBoxItemSlackTypeField.swift
[1195/1377] Compiling BoxSdkGen IntegrationMappingPartnerItemSlack.swift
[1196/1377] Compiling BoxSdkGen IntegrationMappingPartnerItemSlackTypeField.swift
[1197/1377] Compiling BoxSdkGen IntegrationMappingPartnerItemSlackUnion.swift
[1198/1377] Compiling BoxSdkGen IntegrationMappingPartnerItemTeams.swift
[1199/1377] Compiling BoxSdkGen IntegrationMappingPartnerItemTeamsTypeField.swift
[1200/1377] Compiling BoxSdkGen IntegrationMappingPartnerItemTeamsCreateRequest.swift
[1201/1377] Compiling BoxSdkGen IntegrationMappingPartnerItemTeamsCreateRequestTypeField.swift
[1202/1377] Compiling BoxSdkGen IntegrationMappingPartnerItemTeamsUnion.swift
[1203/1377] Compiling BoxSdkGen IntegrationMappingSlackCreateRequest.swift
[1204/1377] Compiling BoxSdkGen IntegrationMappingSlackOptions.swift
[1205/1377] Compiling BoxSdkGen IntegrationMappingTeams.swift
[1206/1377] Compiling BoxSdkGen IntegrationMappingTeamsIntegrationTypeField.swift
[1207/1377] Compiling BoxSdkGen IntegrationMappingTeamsCreateRequest.swift
[1208/1377] Compiling BoxSdkGen IntegrationMappings.swift
[1209/1377] Compiling BoxSdkGen IntegrationMappingsTeams.swift
[1210/1377] Compiling BoxSdkGen Invite.swift
[1211/1377] Compiling BoxSdkGen InviteInvitedToField.swift
[1212/1377] Compiling BoxSdkGen InviteInvitedToTypeField.swift
[1213/1377] Compiling BoxSdkGen InviteTypeField.swift
[1214/1377] Compiling BoxSdkGen Items.swift
[1215/1377] Compiling BoxSdkGen ItemsOrderDirectionField.swift
[1216/1377] Compiling BoxSdkGen ItemsOrderField.swift
[1217/1377] Compiling BoxSdkGen ItemsOffsetPaginated.swift
[1218/1377] Compiling BoxSdkGen ItemsOffsetPaginatedOrderDirectionField.swift
[1219/1377] Compiling BoxSdkGen ItemsOffsetPaginatedOrderField.swift
[1220/1377] Compiling BoxSdkGen KeywordSkillCard.swift
[1221/1377] Compiling BoxSdkGen KeywordSkillCardEntriesField.swift
[1222/1377] Compiling BoxSdkGen KeywordSkillCardInvocationField.swift
[1223/1377] Compiling BoxSdkGen KeywordSkillCardInvocationTypeField.swift
[1224/1377] Compiling BoxSdkGen KeywordSkillCardSkillCardTitleField.swift
[1225/1377] Compiling BoxSdkGen KeywordSkillCardSkillCardTypeField.swift
[1226/1377] Compiling BoxSdkGen KeywordSkillCardSkillField.swift
[1227/1377] Compiling BoxSdkGen KeywordSkillCardSkillTypeField.swift
[1228/1427] Compiling BoxSdkGen KeywordSkillCardTypeField.swift
/host/spi-builder-workspace/Sources/Schemas/Metadata/Metadata.swift:40:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
38 |
39 | public override func encode(to encoder: Encoder) throws {
40 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
41 | try super.encode(to: encoder)
42 | }
[1229/1427] Compiling BoxSdkGen KeywordSkillCardOrStatusSkillCardOrTimelineSkillCardOrTranscriptSkillCard.swift
/host/spi-builder-workspace/Sources/Schemas/Metadata/Metadata.swift:40:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
38 |
39 | public override func encode(to encoder: Encoder) throws {
40 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
41 | try super.encode(to: encoder)
42 | }
[1230/1427] Compiling BoxSdkGen LegalHoldPolicies.swift
/host/spi-builder-workspace/Sources/Schemas/Metadata/Metadata.swift:40:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
38 |
39 | public override func encode(to encoder: Encoder) throws {
40 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
41 | try super.encode(to: encoder)
42 | }
[1231/1427] Compiling BoxSdkGen LegalHoldPolicy.swift
/host/spi-builder-workspace/Sources/Schemas/Metadata/Metadata.swift:40:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
38 |
39 | public override func encode(to encoder: Encoder) throws {
40 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
41 | try super.encode(to: encoder)
42 | }
[1232/1427] Compiling BoxSdkGen LegalHoldPolicyAssignmentCountsField.swift
/host/spi-builder-workspace/Sources/Schemas/Metadata/Metadata.swift:40:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
38 |
39 | public override func encode(to encoder: Encoder) throws {
40 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
41 | try super.encode(to: encoder)
42 | }
[1233/1427] Compiling BoxSdkGen LegalHoldPolicyStatusField.swift
/host/spi-builder-workspace/Sources/Schemas/Metadata/Metadata.swift:40:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
38 |
39 | public override func encode(to encoder: Encoder) throws {
40 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
41 | try super.encode(to: encoder)
42 | }
[1234/1427] Compiling BoxSdkGen LegalHoldPolicyAssignment.swift
/host/spi-builder-workspace/Sources/Schemas/Metadata/Metadata.swift:40:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
38 |
39 | public override func encode(to encoder: Encoder) throws {
40 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
41 | try super.encode(to: encoder)
42 | }
[1235/1427] Compiling BoxSdkGen LegalHoldPolicyAssignmentBase.swift
/host/spi-builder-workspace/Sources/Schemas/Metadata/Metadata.swift:40:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
38 |
39 | public override func encode(to encoder: Encoder) throws {
40 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
41 | try super.encode(to: encoder)
42 | }
[1236/1427] Compiling BoxSdkGen LegalHoldPolicyAssignmentBaseTypeField.swift
/host/spi-builder-workspace/Sources/Schemas/Metadata/Metadata.swift:40:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
38 |
39 | public override func encode(to encoder: Encoder) throws {
40 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
41 | try super.encode(to: encoder)
42 | }
[1237/1427] Compiling BoxSdkGen LegalHoldPolicyAssignments.swift
/host/spi-builder-workspace/Sources/Schemas/Metadata/Metadata.swift:40:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
38 |
39 | public override func encode(to encoder: Encoder) throws {
40 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
41 | try super.encode(to: encoder)
42 | }
[1238/1427] Compiling BoxSdkGen LegalHoldPolicyMini.swift
/host/spi-builder-workspace/Sources/Schemas/Metadata/Metadata.swift:40:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
38 |
39 | public override func encode(to encoder: Encoder) throws {
40 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
41 | try super.encode(to: encoder)
42 | }
[1239/1427] Compiling BoxSdkGen LegalHoldPolicyMiniTypeField.swift
/host/spi-builder-workspace/Sources/Schemas/Metadata/Metadata.swift:40:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
38 |
39 | public override func encode(to encoder: Encoder) throws {
40 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
41 | try super.encode(to: encoder)
42 | }
[1240/1427] Compiling BoxSdkGen Metadata.swift
/host/spi-builder-workspace/Sources/Schemas/Metadata/Metadata.swift:40:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
38 |
39 | public override func encode(to encoder: Encoder) throws {
40 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
41 | try super.encode(to: encoder)
42 | }
[1241/1427] Compiling BoxSdkGen MetadataBase.swift
/host/spi-builder-workspace/Sources/Schemas/Metadata/Metadata.swift:40:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
38 |
39 | public override func encode(to encoder: Encoder) throws {
40 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
41 | try super.encode(to: encoder)
42 | }
[1242/1427] Compiling BoxSdkGen MetadataCascadePolicies.swift
/host/spi-builder-workspace/Sources/Schemas/Metadata/Metadata.swift:40:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
38 |
39 | public override func encode(to encoder: Encoder) throws {
40 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
41 | try super.encode(to: encoder)
42 | }
[1243/1427] Compiling BoxSdkGen MetadataCascadePolicy.swift
/host/spi-builder-workspace/Sources/Schemas/Metadata/Metadata.swift:40:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
38 |
39 | public override func encode(to encoder: Encoder) throws {
40 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
41 | try super.encode(to: encoder)
42 | }
[1244/1427] Compiling BoxSdkGen MetadataCascadePolicyOwnerEnterpriseField.swift
/host/spi-builder-workspace/Sources/Schemas/Metadata/Metadata.swift:40:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
38 |
39 | public override func encode(to encoder: Encoder) throws {
40 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
41 | try super.encode(to: encoder)
42 | }
[1245/1427] Compiling BoxSdkGen MetadataCascadePolicyOwnerEnterpriseTypeField.swift
/host/spi-builder-workspace/Sources/Schemas/Metadata/Metadata.swift:40:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
38 |
39 | public override func encode(to encoder: Encoder) throws {
40 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
41 | try super.encode(to: encoder)
42 | }
[1246/1427] Compiling BoxSdkGen MetadataCascadePolicyParentField.swift
/host/spi-builder-workspace/Sources/Schemas/Metadata/Metadata.swift:40:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
38 |
39 | public override func encode(to encoder: Encoder) throws {
40 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
41 | try super.encode(to: encoder)
42 | }
[1247/1427] Compiling BoxSdkGen MetadataCascadePolicyParentTypeField.swift
/host/spi-builder-workspace/Sources/Schemas/Metadata/Metadata.swift:40:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
38 |
39 | public override func encode(to encoder: Encoder) throws {
40 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
41 | try super.encode(to: encoder)
42 | }
[1248/1427] Compiling BoxSdkGen MetadataCascadePolicyTypeField.swift
/host/spi-builder-workspace/Sources/Schemas/Metadata/Metadata.swift:40:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
38 |
39 | public override func encode(to encoder: Encoder) throws {
40 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
41 | try super.encode(to: encoder)
42 | }
[1249/1427] Compiling BoxSdkGen MetadataError.swift
/host/spi-builder-workspace/Sources/Schemas/Metadata/Metadata.swift:40:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
38 |
39 | public override func encode(to encoder: Encoder) throws {
40 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
41 | try super.encode(to: encoder)
42 | }
[1250/1427] Compiling BoxSdkGen MetadataFieldFilterDateRange.swift
/host/spi-builder-workspace/Sources/Schemas/Metadata/Metadata.swift:40:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
38 |
39 | public override func encode(to encoder: Encoder) throws {
40 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
41 | try super.encode(to: encoder)
42 | }
[1251/1427] Compiling BoxSdkGen MetadataFieldFilterDateRangeOrMetadataFieldFilterFloatRangeOrArrayOfStringOrNumberOrString.swift
/host/spi-builder-workspace/Sources/Schemas/Metadata/Metadata.swift:40:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
38 |
39 | public override func encode(to encoder: Encoder) throws {
40 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
41 | try super.encode(to: encoder)
42 | }
[1252/1427] Compiling BoxSdkGen MetadataFieldFilterFloatRange.swift
/host/spi-builder-workspace/Sources/Schemas/Metadata/Metadata.swift:40:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
38 |
39 | public override func encode(to encoder: Encoder) throws {
40 | var container = encoder.container(keyedBy: CodingKeys.self)
| `- warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it
41 | try super.encode(to: encoder)
42 | }
[1253/1452] Compiling BoxSdkGen MetadataFilter.swift
[1254/1452] Compiling BoxSdkGen MetadataFilterScopeField.swift
[1255/1452] Compiling BoxSdkGen MetadataFull.swift
[1256/1452] Compiling BoxSdkGen MetadataInstanceValue.swift
[1257/1452] Compiling BoxSdkGen MetadataQuery.swift
[1258/1452] Compiling BoxSdkGen MetadataQueryOrderByDirectionField.swift
[1259/1452] Compiling BoxSdkGen MetadataQueryOrderByField.swift
[1260/1452] Compiling BoxSdkGen MetadataQueryIndex.swift
[1261/1452] Compiling BoxSdkGen MetadataQueryIndexFieldsField.swift
[1262/1452] Compiling BoxSdkGen MetadataQueryIndexFieldsSortDirectionField.swift
[1263/1452] Compiling BoxSdkGen MetadataQueryIndexStatusField.swift
[1264/1452] Compiling BoxSdkGen MetadataQueryResults.swift
[1265/1452] Compiling BoxSdkGen MetadataTemplate.swift
[1266/1452] Compiling BoxSdkGen MetadataTemplateFieldsField.swift
[1267/1452] Compiling BoxSdkGen MetadataTemplateFieldsOptionsField.swift
[1268/1452] Compiling BoxSdkGen MetadataTemplateFieldsTypeField.swift
[1269/1452] Compiling BoxSdkGen MetadataTemplateTypeField.swift
[1270/1452] Compiling BoxSdkGen MetadataTemplates.swift
[1271/1452] Compiling BoxSdkGen Metadatas.swift
[1272/1452] Compiling BoxSdkGen OAuth2Error.swift
[1273/1452] Compiling BoxSdkGen Outcome.swift
[1274/1452] Compiling BoxSdkGen PostOAuth2Revoke.swift
[1275/1452] Compiling BoxSdkGen PostOAuth2Token.swift
[1276/1452] Compiling BoxSdkGen PostOAuth2TokenActorTokenTypeField.swift
[1277/1452] Compiling BoxSdkGen PostOAuth2TokenBoxSubjectTypeField.swift
[1278/1477] Compiling BoxSdkGen RetentionPolicyMini.swift
[1279/1477] Compiling BoxSdkGen RetentionPolicyMiniDispositionActionField.swift
[1280/1477] Compiling BoxSdkGen RoleVariable.swift
[1281/1477] Compiling BoxSdkGen RoleVariableTypeField.swift
[1282/1477] Compiling BoxSdkGen RoleVariableVariableTypeField.swift
[1283/1477] Compiling BoxSdkGen RoleVariableVariableValueField.swift
[1284/1477] Compiling BoxSdkGen SearchResultWithSharedLink.swift
[1285/1477] Compiling BoxSdkGen SearchResults.swift
[1286/1477] Compiling BoxSdkGen SearchResultsTypeField.swift
[1287/1477] Compiling BoxSdkGen SearchResultsOrSearchResultsWithSharedLinks.swift
[1288/1477] Compiling BoxSdkGen SearchResultsWithSharedLinks.swift
[1289/1477] Compiling BoxSdkGen SearchResultsWithSharedLinksTypeField.swift
[1290/1477] Compiling BoxSdkGen SessionTerminationMessage.swift
[1291/1477] Compiling BoxSdkGen ShieldInformationBarrier.swift
[1292/1477] Compiling BoxSdkGen ShieldInformationBarrierStatusField.swift
[1293/1477] Compiling BoxSdkGen ShieldInformationBarrierTypeField.swift
[1294/1477] Compiling BoxSdkGen ShieldInformationBarrierBase.swift
[1295/1477] Compiling BoxSdkGen ShieldInformationBarrierBaseTypeField.swift
[1296/1477] Compiling BoxSdkGen ShieldInformationBarrierReference.swift
[1297/1477] Compiling BoxSdkGen ShieldInformationBarrierReport.swift
[1298/1477] Compiling BoxSdkGen ShieldInformationBarrierReportStatusField.swift
[1299/1477] Compiling BoxSdkGen ShieldInformationBarrierReportBase.swift
[1300/1477] Compiling BoxSdkGen ShieldInformationBarrierReportBaseTypeField.swift
[1301/1477] Compiling BoxSdkGen ShieldInformationBarrierReportDetails.swift
[1302/1477] Compiling BoxSdkGen ShieldInformationBarrierReportDetailsDetailsField.swift
[1303/1477] Compiling BoxSdkGen PostOAuth2TokenGrantTypeField.swift
[1304/1477] Compiling BoxSdkGen PostOAuth2TokenSubjectTokenTypeField.swift
[1305/1477] Compiling BoxSdkGen PostOAuth2TokenRefreshAccessToken.swift
[1306/1477] Compiling BoxSdkGen PostOAuth2TokenRefreshAccessTokenGrantTypeField.swift
[1307/1477] Compiling BoxSdkGen RealtimeServer.swift
[1308/1477] Compiling BoxSdkGen RealtimeServers.swift
[1309/1477] Compiling BoxSdkGen RecentItem.swift
[1310/1477] Compiling BoxSdkGen RecentItemInteractionTypeField.swift
[1311/1477] Compiling BoxSdkGen RecentItems.swift
[1312/1477] Compiling BoxSdkGen RetentionPolicies.swift
[1313/1477] Compiling BoxSdkGen RetentionPolicy.swift
[1314/1477] Compiling BoxSdkGen RetentionPolicyAssignmentCountsField.swift
[1315/1477] Compiling BoxSdkGen RetentionPolicyPolicyTypeField.swift
[1316/1477] Compiling BoxSdkGen RetentionPolicyRetentionTypeField.swift
[1317/1477] Compiling BoxSdkGen RetentionPolicyStatusField.swift
[1318/1477] Compiling BoxSdkGen RetentionPolicyAssignment.swift
[1319/1477] Compiling BoxSdkGen RetentionPolicyAssignmentAssignedToField.swift
[1320/1477] Compiling BoxSdkGen RetentionPolicyAssignmentAssignedToTypeField.swift
[1321/1477] Compiling BoxSdkGen RetentionPolicyAssignmentFilterFieldsField.swift
[1322/1477] Compiling BoxSdkGen RetentionPolicyAssignmentTypeField.swift
[1323/1477] Compiling BoxSdkGen RetentionPolicyAssignmentBase.swift
[1324/1477] Compiling BoxSdkGen RetentionPolicyAssignmentBaseTypeField.swift
[1325/1477] Compiling BoxSdkGen RetentionPolicyAssignments.swift
[1326/1477] Compiling BoxSdkGen RetentionPolicyBase.swift
[1327/1477] Compiling BoxSdkGen RetentionPolicyBaseTypeField.swift
[1328/1527] Compiling BoxSdkGen TermsOfServiceBase.swift
[1329/1527] Compiling BoxSdkGen TermsOfServiceBaseTypeField.swift
[1330/1527] Compiling BoxSdkGen TermsOfServiceUserStatus.swift
[1331/1527] Compiling BoxSdkGen TermsOfServiceUserStatusTypeField.swift
[1332/1527] Compiling BoxSdkGen TermsOfServiceUserStatuses.swift
[1333/1527] Compiling BoxSdkGen TermsOfServices.swift
[1334/1527] Compiling BoxSdkGen TimelineSkillCard.swift
[1335/1527] Compiling BoxSdkGen TimelineSkillCardEntriesAppearsField.swift
[1336/1527] Compiling BoxSdkGen TimelineSkillCardEntriesField.swift
[1337/1527] Compiling BoxSdkGen TimelineSkillCardInvocationField.swift
[1338/1527] Compiling BoxSdkGen TimelineSkillCardInvocationTypeField.swift
[1339/1527] Compiling BoxSdkGen TimelineSkillCardSkillCardTitleField.swift
[1340/1527] Compiling BoxSdkGen TimelineSkillCardSkillCardTypeField.swift
[1341/1527] Compiling BoxSdkGen TimelineSkillCardSkillField.swift
[1342/1527] Compiling BoxSdkGen TimelineSkillCardSkillTypeField.swift
[1343/1527] Compiling BoxSdkGen TimelineSkillCardTypeField.swift
[1344/1527] Compiling BoxSdkGen TrackingCode.swift
[1345/1527] Compiling BoxSdkGen TrackingCodeTypeField.swift
[1346/1527] Compiling BoxSdkGen TranscriptSkillCard.swift
[1347/1527] Compiling BoxSdkGen TranscriptSkillCardEntriesAppearsField.swift
[1348/1527] Compiling BoxSdkGen TranscriptSkillCardEntriesField.swift
[1349/1527] Compiling BoxSdkGen TranscriptSkillCardInvocationField.swift
[1350/1527] Compiling BoxSdkGen TranscriptSkillCardInvocationTypeField.swift
[1351/1527] Compiling BoxSdkGen TranscriptSkillCardSkillCardTitleField.swift
[1352/1527] Compiling BoxSdkGen TranscriptSkillCardSkillCardTypeField.swift
[1353/1551] Compiling BoxSdkGen SkillInvocationEnterpriseTypeField.swift
[1354/1551] Compiling BoxSdkGen SkillInvocationSkillField.swift
[1355/1551] Compiling BoxSdkGen SkillInvocationSkillTypeField.swift
[1356/1551] Compiling BoxSdkGen SkillInvocationStatusField.swift
[1357/1551] Compiling BoxSdkGen SkillInvocationStatusStateField.swift
[1358/1551] Compiling BoxSdkGen SkillInvocationTokenField.swift
[1359/1551] Compiling BoxSdkGen SkillInvocationTokenReadField.swift
[1360/1551] Compiling BoxSdkGen SkillInvocationTokenReadTokenTypeField.swift
[1361/1551] Compiling BoxSdkGen SkillInvocationTokenWriteField.swift
[1362/1551] Compiling BoxSdkGen SkillInvocationTokenWriteTokenTypeField.swift
[1363/1551] Compiling BoxSdkGen SkillInvocationTypeField.swift
[1364/1551] Compiling BoxSdkGen StatusSkillCard.swift
[1365/1551] Compiling BoxSdkGen StatusSkillCardInvocationField.swift
[1366/1551] Compiling BoxSdkGen StatusSkillCardInvocationTypeField.swift
[1367/1551] Compiling BoxSdkGen StatusSkillCardSkillCardTitleField.swift
[1368/1551] Compiling BoxSdkGen StatusSkillCardSkillCardTypeField.swift
[1369/1551] Compiling BoxSdkGen StatusSkillCardSkillField.swift
[1370/1551] Compiling BoxSdkGen StatusSkillCardSkillTypeField.swift
[1371/1551] Compiling BoxSdkGen StatusSkillCardStatusCodeField.swift
[1372/1551] Compiling BoxSdkGen StatusSkillCardStatusField.swift
[1373/1551] Compiling BoxSdkGen StatusSkillCardTypeField.swift
[1374/1551] Compiling BoxSdkGen StoragePolicies.swift
[1375/1551] Compiling BoxSdkGen StoragePolicy.swift
[1376/1551] Compiling BoxSdkGen StoragePolicyAssignment.swift
[1377/1551] Compiling BoxSdkGen StoragePolicyAssignmentAssignedToField.swift
[1378/1551] Compiling BoxSdkGen StoragePolicyAssignmentTypeField.swift
[1379/1551] Compiling BoxSdkGen StoragePolicyAssignments.swift
[1380/1551] Compiling BoxSdkGen StoragePolicyMini.swift
[1381/1551] Compiling BoxSdkGen StoragePolicyMiniTypeField.swift
[1382/1551] Compiling BoxSdkGen Task.swift
[1383/1551] Compiling BoxSdkGen TaskActionField.swift
[1384/1551] Compiling BoxSdkGen TaskCompletionRuleField.swift
[1385/1551] Compiling BoxSdkGen TaskTypeField.swift
[1386/1551] Compiling BoxSdkGen TaskAssignment.swift
[1387/1551] Compiling BoxSdkGen TaskAssignmentResolutionStateField.swift
[1388/1551] Compiling BoxSdkGen TaskAssignmentTypeField.swift
[1389/1551] Compiling BoxSdkGen TaskAssignments.swift
[1390/1551] Compiling BoxSdkGen Tasks.swift
[1391/1551] Compiling BoxSdkGen TemplateSigner.swift
[1392/1551] Compiling BoxSdkGen TemplateSignerRoleField.swift
[1393/1551] Compiling BoxSdkGen TemplateSignerInput.swift
[1394/1551] Compiling BoxSdkGen TemplateSignerInputContentTypeField.swift
[1395/1551] Compiling BoxSdkGen TemplateSignerInputCoordinatesField.swift
[1396/1551] Compiling BoxSdkGen TemplateSignerInputDimensionsField.swift
[1397/1551] Compiling BoxSdkGen TemplateSignerInputTypeField.swift
[1398/1551] Compiling BoxSdkGen TermsOfService.swift
[1399/1551] Compiling BoxSdkGen TermsOfServiceEnterpriseField.swift
[1400/1551] Compiling BoxSdkGen TermsOfServiceEnterpriseTypeField.swift
[1401/1551] Compiling BoxSdkGen TermsOfServiceStatusField.swift
[1402/1551] Compiling BoxSdkGen TermsOfServiceTosTypeField.swift
[1403/1575] Compiling BoxSdkGen ShieldInformationBarrierReports.swift
[1404/1575] Compiling BoxSdkGen ShieldInformationBarrierSegment.swift
[1405/1575] Compiling BoxSdkGen ShieldInformationBarrierSegmentTypeField.swift
[1406/1575] Compiling BoxSdkGen ShieldInformationBarrierSegmentMember.swift
[1407/1575] Compiling BoxSdkGen ShieldInformationBarrierSegmentMemberShieldInformationBarrierSegmentField.swift
[1408/1575] Compiling BoxSdkGen ShieldInformationBarrierSegmentMemberShieldInformationBarrierSegmentTypeField.swift
[1409/1575] Compiling BoxSdkGen ShieldInformationBarrierSegmentMemberBase.swift
[1410/1575] Compiling BoxSdkGen ShieldInformationBarrierSegmentMemberBaseTypeField.swift
[1411/1575] Compiling BoxSdkGen ShieldInformationBarrierSegmentMemberMini.swift
[1412/1575] Compiling BoxSdkGen ShieldInformationBarrierSegmentMembers.swift
[1413/1575] Compiling BoxSdkGen ShieldInformationBarrierSegmentRestriction.swift
[1414/1575] Compiling BoxSdkGen ShieldInformationBarrierSegmentRestrictionBase.swift
[1415/1575] Compiling BoxSdkGen ShieldInformationBarrierSegmentRestrictionBaseTypeField.swift
[1416/1575] Compiling BoxSdkGen ShieldInformationBarrierSegmentRestrictionMini.swift
[1417/1575] Compiling BoxSdkGen ShieldInformationBarrierSegmentRestrictionMiniRestrictedSegmentField.swift
[1418/1575] Compiling BoxSdkGen ShieldInformationBarrierSegmentRestrictionMiniRestrictedSegmentTypeField.swift
[1419/1575] Compiling BoxSdkGen ShieldInformationBarrierSegmentRestrictionMiniShieldInformationBarrierSegmentField.swift
[1420/1575] Compiling BoxSdkGen ShieldInformationBarrierSegmentRestrictionMiniShieldInformationBarrierSegmentTypeField.swift
[1421/1575] Compiling BoxSdkGen ShieldInformationBarrierSegmentRestrictions.swift
[1422/1575] Compiling BoxSdkGen ShieldInformationBarrierSegments.swift
[1423/1575] Compiling BoxSdkGen ShieldInformationBarriers.swift
[1424/1575] Compiling BoxSdkGen SignRequest.swift
[1425/1575] Compiling BoxSdkGen SignRequestSignFilesField.swift
[1426/1575] Compiling BoxSdkGen SignRequestStatusField.swift
[1427/1575] Compiling BoxSdkGen SignRequestTypeField.swift
[1428/1623] Compiling BoxSdkGen SignRequestBase.swift
[1429/1623] Compiling BoxSdkGen SignRequestCreateRequest.swift
[1430/1623] Compiling BoxSdkGen SignRequestCreateRequestSignatureColorField.swift
[1431/1623] Compiling BoxSdkGen SignRequestCreateSigner.swift
[1432/1623] Compiling BoxSdkGen SignRequestCreateSignerRoleField.swift
[1433/1623] Compiling BoxSdkGen SignRequestPrefillTag.swift
[1434/1623] Compiling BoxSdkGen SignRequestSigner.swift
[1435/1623] Compiling BoxSdkGen SignRequestSignerSignerDecisionField.swift
[1436/1623] Compiling BoxSdkGen SignRequestSignerSignerDecisionTypeField.swift
[1437/1623] Compiling BoxSdkGen SignRequestSignerInput.swift
[1438/1623] Compiling BoxSdkGen SignRequestSignerInputContentTypeField.swift
[1439/1623] Compiling BoxSdkGen SignRequestSignerInputTypeField.swift
[1440/1623] Compiling BoxSdkGen SignRequests.swift
[1441/1623] Compiling BoxSdkGen SignTemplate.swift
[1442/1623] Compiling BoxSdkGen SignTemplateAdditionalInfoField.swift
[1443/1623] Compiling BoxSdkGen SignTemplateAdditionalInfoNonEditableField.swift
[1444/1623] Compiling BoxSdkGen SignTemplateAdditionalInfoRequiredField.swift
[1445/1623] Compiling BoxSdkGen SignTemplateAdditionalInfoRequiredSignersField.swift
[1446/1623] Compiling BoxSdkGen SignTemplateCustomBrandingField.swift
[1447/1623] Compiling BoxSdkGen SignTemplateReadySignLinkField.swift
[1448/1623] Compiling BoxSdkGen SignTemplateTypeField.swift
[1449/1623] Compiling BoxSdkGen SignTemplates.swift
[1450/1623] Compiling BoxSdkGen SkillCardsMetadata.swift
[1451/1623] Compiling BoxSdkGen SkillInvocation.swift
[1452/1623] Compiling BoxSdkGen SkillInvocationEnterpriseField.swift
[1453/1647] Compiling BoxSdkGen TranscriptSkillCardSkillField.swift
[1454/1647] Compiling BoxSdkGen TranscriptSkillCardSkillTypeField.swift
[1455/1647] Compiling BoxSdkGen TranscriptSkillCardTypeField.swift
[1456/1647] Compiling BoxSdkGen TrashFile.swift
[1457/1647] Compiling BoxSdkGen TrashFileItemStatusField.swift
[1458/1647] Compiling BoxSdkGen TrashFilePathCollectionEntriesField.swift
[1459/1647] Compiling BoxSdkGen TrashFilePathCollectionEntriesTypeField.swift
[1460/1647] Compiling BoxSdkGen TrashFilePathCollectionField.swift
[1461/1647] Compiling BoxSdkGen TrashFileTypeField.swift
[1462/1647] Compiling BoxSdkGen TrashFileRestored.swift
[1463/1647] Compiling BoxSdkGen TrashFileRestoredItemStatusField.swift
[1464/1647] Compiling BoxSdkGen TrashFileRestoredPathCollectionField.swift
[1465/1647] Compiling BoxSdkGen TrashFileRestoredTypeField.swift
[1466/1647] Compiling BoxSdkGen TrashFolder.swift
[1467/1647] Compiling BoxSdkGen TrashFolderItemStatusField.swift
[1468/1647] Compiling BoxSdkGen TrashFolderPathCollectionEntriesField.swift
[1469/1647] Compiling BoxSdkGen TrashFolderPathCollectionEntriesTypeField.swift
[1470/1647] Compiling BoxSdkGen TrashFolderPathCollectionField.swift
[1471/1647] Compiling BoxSdkGen TrashFolderTypeField.swift
[1472/1647] Compiling BoxSdkGen TrashFolderRestored.swift
[1473/1647] Compiling BoxSdkGen TrashFolderRestoredItemStatusField.swift
[1474/1647] Compiling BoxSdkGen TrashFolderRestoredPathCollectionField.swift
[1475/1647] Compiling BoxSdkGen TrashFolderRestoredTypeField.swift
[1476/1647] Compiling BoxSdkGen TrashWebLink.swift
[1477/1647] Compiling BoxSdkGen TrashWebLinkItemStatusField.swift
[1478/1671] Compiling BoxSdkGen TrashWebLinkPathCollectionEntriesField.swift
[1479/1671] Compiling BoxSdkGen TrashWebLinkPathCollectionEntriesTypeField.swift
[1480/1671] Compiling BoxSdkGen TrashWebLinkPathCollectionField.swift
[1481/1671] Compiling BoxSdkGen TrashWebLinkTypeField.swift
[1482/1671] Compiling BoxSdkGen TrashWebLinkRestored.swift
[1483/1671] Compiling BoxSdkGen TrashWebLinkRestoredItemStatusField.swift
[1484/1671] Compiling BoxSdkGen TrashWebLinkRestoredPathCollectionField.swift
[1485/1671] Compiling BoxSdkGen TrashWebLinkRestoredTypeField.swift
[1486/1671] Compiling BoxSdkGen UploadPart.swift
[1487/1671] Compiling BoxSdkGen UploadPartMini.swift
[1488/1671] Compiling BoxSdkGen UploadParts.swift
[1489/1671] Compiling BoxSdkGen UploadPartsOrderDirectionField.swift
[1490/1671] Compiling BoxSdkGen UploadPartsOrderField.swift
[1491/1671] Compiling BoxSdkGen UploadSession.swift
[1492/1671] Compiling BoxSdkGen UploadSessionSessionEndpointsField.swift
[1493/1671] Compiling BoxSdkGen UploadSessionTypeField.swift
[1494/1671] Compiling BoxSdkGen UploadUrl.swift
[1495/1671] Compiling BoxSdkGen UploadedPart.swift
[1496/1671] Compiling BoxSdkGen User.swift
[1497/1671] Compiling BoxSdkGen UserNotificationEmailField.swift
[1498/1671] Compiling BoxSdkGen UserStatusField.swift
[1499/1671] Compiling BoxSdkGen UserAvatar.swift
[1500/1671] Compiling BoxSdkGen UserAvatarPicUrlsField.swift
[1501/1671] Compiling BoxSdkGen UserBase.swift
[1502/1671] Compiling BoxSdkGen UserBaseTypeField.swift
[1503/1671] Compiling BoxSdkGen UserCollaborations.swift
[1504/1671] Compiling BoxSdkGen UserFull.swift
[1505/1671] Compiling BoxSdkGen UserFullEnterpriseField.swift
[1506/1671] Compiling BoxSdkGen UserFullEnterpriseTypeField.swift
[1507/1671] Compiling BoxSdkGen UserFullRoleField.swift
[1508/1671] Compiling BoxSdkGen UserIntegrationMappings.swift
[1509/1671] Compiling BoxSdkGen UserMini.swift
[1510/1671] Compiling BoxSdkGen Users.swift
[1511/1671] Compiling BoxSdkGen UsersOrderDirectionField.swift
[1512/1671] Compiling BoxSdkGen UsersOrderField.swift
[1513/1671] Compiling BoxSdkGen ArchiveV2025R0.swift
[1514/1671] Compiling BoxSdkGen ArchiveV2025R0TypeField.swift
[1515/1671] Compiling BoxSdkGen ArchivesV2025R0.swift
[1516/1671] Compiling BoxSdkGen ClientErrorV2025R0.swift
[1517/1671] Compiling BoxSdkGen ClientErrorV2025R0CodeField.swift
[1518/1671] Compiling BoxSdkGen ClientErrorV2025R0TypeField.swift
[1519/1671] Compiling BoxSdkGen DocGenBatchBaseV2025R0.swift
[1520/1671] Compiling BoxSdkGen DocGenBatchBaseV2025R0TypeField.swift
[1521/1671] Compiling BoxSdkGen DocGenBatchCreateRequestV2025R0.swift
[1522/1671] Compiling BoxSdkGen DocGenBatchCreateRequestV2025R0DestinationFolderField.swift
[1523/1671] Compiling BoxSdkGen DocGenBatchCreateRequestV2025R0DestinationFolderTypeField.swift
[1524/1671] Compiling BoxSdkGen DocGenDocumentGenerationDataV2025R0.swift
[1525/1671] Compiling BoxSdkGen DocGenJobBaseV2025R0.swift
[1526/1671] Compiling BoxSdkGen DocGenJobBaseV2025R0TypeField.swift
[1527/1671] Compiling BoxSdkGen DocGenJobFullV2025R0.swift
[1528/1671] Compiling BoxSdkGen DocGenJobV2025R0.swift
[1529/1671] Compiling BoxSdkGen DocGenJobV2025R0StatusField.swift
[1530/1671] Compiling BoxSdkGen DocGenJobsFullV2025R0.swift
[1531/1671] Compiling BoxSdkGen DocGenJobsV2025R0.swift
[1532/1671] Compiling BoxSdkGen DocGenTagV2025R0.swift
[1533/1671] Compiling BoxSdkGen DocGenTagV2025R0TagTypeField.swift
[1534/1671] Compiling BoxSdkGen DocGenTagsProcessingMessageV2025R0.swift
[1535/1671] Compiling BoxSdkGen DocGenTagsV2025R0.swift
[1536/1671] Compiling BoxSdkGen DocGenTemplateBaseV2025R0.swift
[1537/1671] Compiling BoxSdkGen DocGenTemplateCreateRequestV2025R0.swift
[1538/1671] Compiling BoxSdkGen DocGenTemplateV2025R0.swift
[1539/1671] Compiling BoxSdkGen DocGenTemplatesV2025R0.swift
[1540/1671] Compiling BoxSdkGen EnterpriseReferenceV2025R0.swift
[1541/1671] Compiling BoxSdkGen EnterpriseReferenceV2025R0TypeField.swift
[1542/1671] Compiling BoxSdkGen FileReferenceOrFolderReferenceOrWeblinkReferenceV2025R0.swift
[1543/1671] Compiling BoxSdkGen FileReferenceV2025R0.swift
[1544/1671] Compiling BoxSdkGen FileReferenceV2025R0TypeField.swift
[1545/1671] Compiling BoxSdkGen FileVersionBaseV2025R0.swift
[1546/1671] Compiling BoxSdkGen FileVersionBaseV2025R0TypeField.swift
[1547/1671] Compiling BoxSdkGen FolderReferenceV2025R0.swift
[1548/1671] Compiling BoxSdkGen FolderReferenceV2025R0TypeField.swift
[1549/1671] Compiling BoxSdkGen GroupBaseV2025R0.swift
[1550/1671] Compiling BoxSdkGen GroupBaseV2025R0TypeField.swift
[1551/1671] Compiling BoxSdkGen GroupMiniV2025R0.swift
[1552/1671] Compiling BoxSdkGen GroupMiniV2025R0GroupTypeField.swift
[1553/1671] Compiling BoxSdkGen HubAccessGranteeV2025R0.swift
[1554/1671] Compiling BoxSdkGen HubActionV2025R0.swift
[1555/1671] Compiling BoxSdkGen HubBaseV2025R0.swift
[1556/1671] Compiling BoxSdkGen HubBaseV2025R0TypeField.swift
[1557/1671] Compiling BoxSdkGen HubCollaborationCreateRequestV2025R0.swift
[1558/1671] Compiling BoxSdkGen HubCollaborationCreateRequestV2025R0AccessibleByField.swift
[1559/1671] Compiling BoxSdkGen HubCollaborationCreateRequestV2025R0HubField.swift
[1560/1671] Compiling BoxSdkGen HubCollaborationCreateRequestV2025R0HubTypeField.swift
[1561/1671] Compiling BoxSdkGen HubCollaborationUpdateRequestV2025R0.swift
[1562/1671] Compiling BoxSdkGen HubCollaborationUserV2025R0.swift
[1563/1671] Compiling BoxSdkGen HubCollaborationV2025R0.swift
[1564/1671] Compiling BoxSdkGen HubCollaborationV2025R0AcceptanceRequirementsStatusField.swift
[1565/1671] Compiling BoxSdkGen HubCollaborationV2025R0AcceptanceRequirementsStatusStrongPasswordRequirementField.swift
[1566/1671] Compiling BoxSdkGen HubCollaborationV2025R0AcceptanceRequirementsStatusTermsOfServiceRequirementField.swift
[1567/1671] Compiling BoxSdkGen HubCollaborationV2025R0AcceptanceRequirementsStatusTwoFactorAuthenticationRequirementField.swift
[1568/1671] Compiling BoxSdkGen HubCollaborationV2025R0StatusField.swift
[1569/1671] Compiling BoxSdkGen HubCollaborationV2025R0TypeField.swift
[1570/1671] Compiling BoxSdkGen HubCollaborationsV2025R0.swift
[1571/1671] Compiling BoxSdkGen HubCopyRequestV2025R0.swift
[1572/1671] Compiling BoxSdkGen HubCreateRequestV2025R0.swift
[1573/1671] Compiling BoxSdkGen HubItemOperationResultV2025R0.swift
[1574/1671] Compiling BoxSdkGen HubItemOperationV2025R0.swift
[1575/1671] Compiling BoxSdkGen HubItemOperationV2025R0ActionField.swift
[1576/1671] Compiling BoxSdkGen HubItemReferenceV2025R0.swift
[1577/1671] Compiling BoxSdkGen HubItemV2025R0.swift
[1578/1671] Compiling BoxSdkGen HubItemV2025R0TypeField.swift
[1579/1671] Compiling BoxSdkGen HubItemsManageRequestV2025R0.swift
[1580/1671] Compiling BoxSdkGen HubItemsManageResponseV2025R0.swift
[1581/1671] Compiling BoxSdkGen HubItemsV2025R0.swift
[1582/1671] Compiling BoxSdkGen HubUpdateRequestV2025R0.swift
[1583/1671] Compiling BoxSdkGen HubV2025R0.swift
[1584/1671] Compiling BoxSdkGen HubsV2025R0.swift
[1585/1671] Compiling BoxSdkGen ShieldListContentCountryV2025R0.swift
[1586/1671] Compiling BoxSdkGen ShieldListContentCountryV2025R0TypeField.swift
[1587/1671] Compiling BoxSdkGen ShieldListContentDomainV2025R0.swift
[1588/1671] Compiling BoxSdkGen ShieldListContentDomainV2025R0TypeField.swift
[1589/1671] Compiling BoxSdkGen ShieldListContentEmailV2025R0.swift
[1590/1671] Compiling BoxSdkGen ShieldListContentEmailV2025R0TypeField.swift
[1591/1671] Compiling BoxSdkGen ShieldListContentIntegrationV2025R0.swift
[1592/1671] Compiling BoxSdkGen ShieldListContentIntegrationV2025R0IntegrationsField.swift
[1593/1671] Compiling BoxSdkGen ShieldListContentIntegrationV2025R0TypeField.swift
[1594/1671] Compiling BoxSdkGen ShieldListContentIpV2025R0.swift
[1595/1671] Compiling BoxSdkGen ShieldListContentIpV2025R0TypeField.swift
[1596/1671] Compiling BoxSdkGen ShieldListContentRequestV2025R0.swift
[1597/1671] Compiling BoxSdkGen ShieldListContentV2025R0.swift
[1598/1671] Compiling BoxSdkGen ShieldListMiniV2025R0.swift
[1599/1671] Compiling BoxSdkGen ShieldListMiniV2025R0ContentField.swift
[1600/1671] Compiling BoxSdkGen ShieldListMiniV2025R0TypeField.swift
[1601/1671] Compiling BoxSdkGen ShieldListV2025R0.swift
[1602/1671] Compiling BoxSdkGen ShieldListsCreateV2025R0.swift
[1603/1671] Compiling BoxSdkGen ShieldListsUpdateV2025R0.swift
[1604/1671] Compiling BoxSdkGen ShieldListsV2025R0.swift
[1605/1671] Compiling BoxSdkGen TermsOfServiceBaseV2025R0.swift
[1606/1671] Compiling BoxSdkGen TermsOfServiceBaseV2025R0TypeField.swift
[1607/1671] Compiling BoxSdkGen UserBaseV2025R0.swift
[1608/1671] Compiling BoxSdkGen UserBaseV2025R0TypeField.swift
[1609/1671] Compiling BoxSdkGen UserMiniV2025R0.swift
[1610/1671] Compiling BoxSdkGen WeblinkReferenceV2025R0.swift
[1611/1671] Compiling BoxSdkGen WeblinkReferenceV2025R0TypeField.swift
[1612/1671] Compiling BoxSdkGen Watermark.swift
[1613/1671] Compiling BoxSdkGen WatermarkWatermarkField.swift
[1614/1671] Compiling BoxSdkGen WebLink.swift
[1615/1671] Compiling BoxSdkGen WebLinkItemStatusField.swift
[1616/1671] Compiling BoxSdkGen WebLinkPathCollectionField.swift
[1617/1671] Compiling BoxSdkGen WebLinkSharedLinkAccessField.swift
[1618/1671] Compiling BoxSdkGen WebLinkSharedLinkEffectiveAccessField.swift
[1619/1671] Compiling BoxSdkGen WebLinkSharedLinkEffectivePermissionField.swift
[1620/1671] Compiling BoxSdkGen WebLinkSharedLinkField.swift
[1621/1671] Compiling BoxSdkGen WebLinkSharedLinkPermissionsField.swift
[1622/1671] Compiling BoxSdkGen WebLinkBase.swift
[1623/1671] Compiling BoxSdkGen WebLinkBaseTypeField.swift
[1624/1671] Compiling BoxSdkGen WorkflowFlowsTriggerTriggerTypeField.swift
[1625/1671] Compiling BoxSdkGen WorkflowFlowsTriggerTypeField.swift
[1626/1671] Compiling BoxSdkGen WorkflowFlowsTypeField.swift
[1627/1671] Compiling BoxSdkGen WorkflowFull.swift
[1628/1671] Compiling BoxSdkGen WorkflowMini.swift
[1629/1671] Compiling BoxSdkGen WorkflowMiniTypeField.swift
[1630/1671] Compiling BoxSdkGen Workflows.swift
[1631/1671] Compiling BoxSdkGen ZipDownload.swift
[1632/1671] Compiling BoxSdkGen ZipDownloadNameConflictsField.swift
[1633/1671] Compiling BoxSdkGen ZipDownloadNameConflictsTypeField.swift
[1634/1671] Compiling BoxSdkGen ZipDownloadRequest.swift
[1635/1671] Compiling BoxSdkGen ZipDownloadRequestItemsField.swift
[1636/1671] Compiling BoxSdkGen ZipDownloadRequestItemsTypeField.swift
[1637/1671] Compiling BoxSdkGen ZipDownloadStatus.swift
[1638/1671] Compiling BoxSdkGen ZipDownloadStatusStateField.swift
[1639/1671] Compiling BoxSdkGen AnyCodable.swift
[1640/1671] Compiling BoxSdkGen Codable+Extensions.swift
[1641/1671] Compiling BoxSdkGen CodableStringEnum.swift
[1642/1671] Compiling BoxSdkGen JsonUtils.swift
[1643/1671] Compiling BoxSdkGen KeyedDecodingContainer+Extensions.swift
[1644/1671] Compiling BoxSdkGen KeyedEncodingContainer+Extensions.swift
[1645/1671] Compiling BoxSdkGen RawJSONStorage.swift
[1646/1671] Compiling BoxSdkGen SerializedData.swift
[1647/1671] Compiling BoxSdkGen resource_bundle_accessor.swift
[1648/1671] Compiling BoxSdkGen WebLinkMini.swift
[1649/1671] Compiling BoxSdkGen Webhook.swift
[1650/1671] Compiling BoxSdkGen WebhookTriggersField.swift
[1651/1671] Compiling BoxSdkGen WebhookInvocation.swift
[1652/1671] Compiling BoxSdkGen WebhookInvocationTriggerField.swift
[1653/1671] Compiling BoxSdkGen WebhookInvocationTypeField.swift
[1654/1671] Compiling BoxSdkGen WebhookMini.swift
[1655/1671] Compiling BoxSdkGen WebhookMiniTargetField.swift
[1656/1671] Compiling BoxSdkGen WebhookMiniTargetTypeField.swift
[1657/1671] Compiling BoxSdkGen WebhookMiniTypeField.swift
[1658/1671] Compiling BoxSdkGen Webhooks.swift
[1659/1671] Compiling BoxSdkGen Workflow.swift
[1660/1671] Compiling BoxSdkGen WorkflowFlowsField.swift
[1661/1671] Compiling BoxSdkGen WorkflowFlowsOutcomesActionTypeField.swift
[1662/1671] Compiling BoxSdkGen WorkflowFlowsOutcomesField.swift
[1663/1671] Compiling BoxSdkGen WorkflowFlowsOutcomesIfRejectedActionTypeField.swift
[1664/1671] Compiling BoxSdkGen WorkflowFlowsOutcomesIfRejectedField.swift
[1665/1671] Compiling BoxSdkGen WorkflowFlowsOutcomesIfRejectedTypeField.swift
[1666/1671] Compiling BoxSdkGen WorkflowFlowsOutcomesTypeField.swift
[1667/1671] Compiling BoxSdkGen WorkflowFlowsTriggerField.swift
[1668/1671] Compiling BoxSdkGen WorkflowFlowsTriggerScopeField.swift
[1669/1671] Compiling BoxSdkGen WorkflowFlowsTriggerScopeObjectField.swift
[1670/1671] Compiling BoxSdkGen WorkflowFlowsTriggerScopeObjectTypeField.swift
[1671/1671] Compiling BoxSdkGen WorkflowFlowsTriggerScopeTypeField.swift
BUILD FAILURE 6.1 wasm