The Swift Package Index logo.Swift Package Index

Build Information

Failed to build BoxSDKSuite, reference 10.8.0 (8529d6), with Swift 6.2 for Wasm on 30 Apr 2026 23:14:38 UTC.

Build Command

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

Build Log

183 |     /// - Returns: Tuple of  of (URL, URLResponse)
184 |     /// - Throws: An error if the request fails for any reason.
185 |     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.
186 |         return try await withCheckedThrowingContinuation { [weak self] continuation in
187 |             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/BoxSdkGen/Sources/Networking/DefaultNetworkClient.swift:245:23: error: cannot find type 'URLRequest' in scope
243 |         options: FetchOptions,
244 |         networkSession: NetworkSession
245 |     ) async throws -> URLRequest {
    |                       `- error: cannot find type 'URLRequest' in scope
246 |         var urlRequest = URLRequest(url: createEndpointUrl(url: options.url, params: options.params))
247 |         urlRequest.httpMethod = options.method.uppercased()
/host/spi-builder-workspace/BoxSdkGen/Sources/Networking/DefaultNetworkClient.swift:275:63: error: cannot find type 'URLRequest' in scope
273 |     ///   - networkSession: The Networking Session object which provides the URLSession object along with a network configuration parameters used in network communication.
274 |     /// - Throws: An error if the operation fails for any reason.
275 |     private func updateRequestWithHeaders(_ urlRequest: inout URLRequest, options: FetchOptions, networkSession: NetworkSession) async throws {
    |                                                               `- error: cannot find type 'URLRequest' in scope
276 |         urlRequest.allHTTPHeaderFields = options.headers
277 |
/host/spi-builder-workspace/BoxSdkGen/Sources/Networking/DefaultNetworkClient.swift:294:75: error: cannot find type 'URLRequest' in scope
292 |     ///   - networkSession: The Networking Session object which provides the URLSession object along with a network configuration parameters used in network communication.
293 |     /// - Throws: An error if the operation fails for any reason.
294 |     private func updateRequestWithAuthorizationHeader(_ urlRequest: inout URLRequest, options: FetchOptions, networkSession: NetworkSession) async throws {
    |                                                                           `- error: cannot find type 'URLRequest' in scope
295 |         if let auth = options.auth {
296 |             let authHeaderValue = try await auth.retrieveAuthorizationHeader(networkSession: networkSession)
/host/spi-builder-workspace/BoxSdkGen/Sources/Networking/DefaultNetworkClient.swift:306:69: error: cannot find type 'URLRequest' in scope
304 |     ///   - urlRequest: The request object.
305 |     ///   - multipartData: An array of `MultipartItem` which will be used to create the body of the request.
306 |     private func updateRequestWithMultipartData(_ urlRequest: inout URLRequest, multipartData: [MultipartItem]) throws {
    |                                                                     `- error: cannot find type 'URLRequest' in scope
307 |         var parameters: [String: Any] = [:]
308 |         var partName = ""
/host/spi-builder-workspace/BoxSdkGen/Sources/Networking/DefaultNetworkClient.swift:33:40: error: value of type 'URLSession' (aka 'AnyObject') has no member 'configuration'
 31 |     /// - Returns: A new `BoxNetworkClient` instance configured with the provided timeouts.
 32 |     public func withTimeoutConfig(timeoutConfig: TimeoutConfig) -> DefaultNetworkClient {
 33 |         let baseConfig = (self.session.configuration.copy() as? URLSessionConfiguration) ?? self.session.configuration
    |                                        `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'configuration'
 34 |         return DefaultNetworkClient(configuration: baseConfig, timeoutConfig: timeoutConfig)
 35 |     }
/host/spi-builder-workspace/BoxSdkGen/Sources/Networking/DefaultNetworkClient.swift:33:106: error: value of type 'URLSession' (aka 'AnyObject') has no member 'configuration'
 31 |     /// - Returns: A new `BoxNetworkClient` instance configured with the provided timeouts.
 32 |     public func withTimeoutConfig(timeoutConfig: TimeoutConfig) -> DefaultNetworkClient {
 33 |         let baseConfig = (self.session.configuration.copy() as? URLSessionConfiguration) ?? self.session.configuration
    |                                                                                                          `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'configuration'
 34 |         return DefaultNetworkClient(configuration: baseConfig, timeoutConfig: timeoutConfig)
 35 |     }
/host/spi-builder-workspace/BoxSdkGen/Sources/Networking/DefaultNetworkClient.swift:52:24: error: value of type 'URLSessionConfiguration' (aka 'AnyObject') has no member 'timeoutIntervalForRequest'
 50 |             if let timeoutIntervalForRequestMs = timeoutConfig.timeoutIntervalForRequestMs {
 51 |                 // URLSessionConfiguration expects seconds; TimeoutConfig is in milliseconds.
 52 |                 config.timeoutIntervalForRequest = TimeInterval(Double(timeoutIntervalForRequestMs) / 1000.0)
    |                        `- error: value of type 'URLSessionConfiguration' (aka 'AnyObject') has no member 'timeoutIntervalForRequest'
 53 |             }
 54 |             if let timeoutIntervalForResourceMs = timeoutConfig.timeoutIntervalForResourceMs {
/host/spi-builder-workspace/BoxSdkGen/Sources/Networking/DefaultNetworkClient.swift:56:24: error: value of type 'URLSessionConfiguration' (aka 'AnyObject') has no member 'timeoutIntervalForResource'
 54 |             if let timeoutIntervalForResourceMs = timeoutConfig.timeoutIntervalForResourceMs {
 55 |                 // URLSessionConfiguration expects seconds; TimeoutConfig is in milliseconds.
 56 |                 config.timeoutIntervalForResource = TimeInterval(Double(timeoutIntervalForResourceMs) / 1000.0)
    |                        `- error: value of type 'URLSessionConfiguration' (aka 'AnyObject') has no member 'timeoutIntervalForResource'
 57 |             }
 58 |         }
/host/spi-builder-workspace/BoxSdkGen/Sources/Networking/DefaultNetworkClient.swift:60:24: error: 'URLSession' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
 58 |         }
 59 |
 60 |         self.session = URLSession(configuration: config, delegate: redirectHandler, delegateQueue: nil)
    |                        `- error: 'URLSession' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
 61 |     }
 62 |
/host/spi-builder-workspace/BoxSdkGen/Sources/Networking/DefaultNetworkClient.swift:60:100: error: 'nil' requires a contextual type
 58 |         }
 59 |
 60 |         self.session = URLSession(configuration: config, delegate: redirectHandler, delegateQueue: nil)
    |                                                                                                    `- error: 'nil' requires a contextual type
 61 |     }
 62 |
/host/spi-builder-workspace/BoxSdkGen/Sources/Networking/DefaultNetworkClient.swift:95:157: error: cannot infer contextual base in reference to member 'url'
 93 |                 if let downloadDestinationUrl = options.downloadDestinationUrl, options.responseFormat == .binary {
 94 |                     let (downloadUrl, urlResponse) = try await sendDownloadRequest(urlRequest, downloadDestinationURL: downloadDestinationUrl)
 95 |                     conversation = FetchConversation(options: options, urlRequest: urlRequest, urlResponse: urlResponse as? HTTPURLResponse, responseType: .url(downloadUrl))
    |                                                                                                                                                             `- error: cannot infer contextual base in reference to member 'url'
 96 |                 } else {
 97 |                     let (data, urlResponse) =  try await sendDataRequest(urlRequest, followRedirects: options.followRedirects ?? true)
/host/spi-builder-workspace/BoxSdkGen/Sources/Networking/DefaultNetworkClient.swift:98:157: error: cannot infer contextual base in reference to member 'data'
 96 |                 } else {
 97 |                     let (data, urlResponse) =  try await sendDataRequest(urlRequest, followRedirects: options.followRedirects ?? true)
 98 |                     conversation = FetchConversation(options: options, urlRequest: urlRequest, urlResponse: urlResponse as? HTTPURLResponse, responseType: .data(data))
    |                                                                                                                                                             `- error: cannot infer contextual base in reference to member 'data'
 99 |                 }
100 |             } catch {
/host/spi-builder-workspace/BoxSdkGen/Sources/Networking/DefaultNetworkClient.swift:102:105: error: 'nil' requires a contextual type
100 |             } catch {
101 |                 sdkError = (error as? BoxSDKError) ?? BoxSDKError(message: error.localizedDescription, error: error)
102 |                 conversation = FetchConversation(options: options, urlRequest: urlRequest, urlResponse: nil, responseType: .data(Data()))
    |                                                                                                         `- error: 'nil' requires a contextual type
103 |                 exceptionRetryCount += 1
104 |                 retryAttemptNumber = exceptionRetryCount
/host/spi-builder-workspace/BoxSdkGen/Sources/Networking/DefaultNetworkClient.swift:102:125: error: cannot infer contextual base in reference to member 'data'
100 |             } catch {
101 |                 sdkError = (error as? BoxSDKError) ?? BoxSDKError(message: error.localizedDescription, error: error)
102 |                 conversation = FetchConversation(options: options, urlRequest: urlRequest, urlResponse: nil, responseType: .data(Data()))
    |                                                                                                                             `- error: cannot infer contextual base in reference to member 'data'
103 |                 exceptionRetryCount += 1
104 |                 retryAttemptNumber = exceptionRetryCount
/host/spi-builder-workspace/BoxSdkGen/Sources/Networking/DefaultNetworkClient.swift:155:37: error: value of type 'URLSession' (aka 'AnyObject') has no member 'dataTask'
153 |             }
154 |
155 |             let task = self.session.dataTask(with: urlRequest) { data, response, error in
    |                                     `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'dataTask'
156 |                 if let error = error {
157 |                     continuation.resume(with: .failure(BoxNetworkError(message: error.localizedDescription, error: error)))
/host/spi-builder-workspace/BoxSdkGen/Sources/Networking/DefaultNetworkClient.swift:194:37: error: value of type 'URLSession' (aka 'AnyObject') has no member 'downloadTask'
192 |             }
193 |
194 |             let task = self.session.downloadTask(with: urlRequest) { location, response, error in
    |                                     `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'downloadTask'
195 |                 if let error = error {
196 |                     continuation.resume(with: .failure(BoxNetworkError(message: error.localizedDescription, error: error)))
/host/spi-builder-workspace/BoxSdkGen/Sources/Networking/DefaultNetworkClient.swift:246:26: error: cannot find 'URLRequest' in scope
244 |         networkSession: NetworkSession
245 |     ) async throws -> URLRequest {
246 |         var urlRequest = URLRequest(url: createEndpointUrl(url: options.url, params: options.params))
    |                          `- error: cannot find 'URLRequest' in scope
247 |         urlRequest.httpMethod = options.method.uppercased()
248 |
/host/spi-builder-workspace/BoxSdkGen/Sources/Networking/DefaultNetworkClient.swift:398:28: error: cannot call value of non-function type 'ContinuousClock.Instant'
396 |         return try await withCheckedThrowingContinuation { continuation in
397 |             utilityQueue.asyncAfter(
398 |                 deadline: .now() + .milliseconds(Int(delay * 1000))
    |                            `- error: cannot call value of non-function type 'ContinuousClock.Instant'
399 |             ) {
400 |                 continuation.resume()
/host/spi-builder-workspace/BoxSdkGen/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/BoxSdkGen/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/BoxSdkGen/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/BoxSdkGen/Sources/Networking/FetchConversation.swift:46:53: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'allHeaderFields'
44 |         }
45 |
46 |         let headers: [String: String] = urlResponse.allHeaderFields.reduce(into: [:]) { result, pair in
   |                                                     `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'allHeaderFields'
47 |             if let key = pair.key as? String, let value = pair.value as? String {
48 |                 result[key] = value
/host/spi-builder-workspace/BoxSdkGen/Sources/Networking/FetchConversation.swift:54:54: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
52 |         switch self.responseType {
53 |         case let .data(data):
54 |             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'
55 |         case let .url(url):
56 |             return FetchResponse(status: urlResponse.statusCode, headers: headers, url: options.url, data: nil, downloadDestinationUrl: url)
/host/spi-builder-workspace/BoxSdkGen/Sources/Networking/FetchConversation.swift:56:54: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
54 |             return FetchResponse(status: urlResponse.statusCode, headers: headers, url: options.url, data: SerializedData(data: data))
55 |         case let .url(url):
56 |             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'
57 |         }
58 |     }
/host/spi-builder-workspace/BoxSdkGen/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/BoxSdkGen/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/BoxSdkGen/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/BoxSdkGen/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/BoxSdkGen/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/BoxSdkGen/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/BoxSdkGen/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/BoxSdkGen/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/BoxSdkGen/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/BoxSdkGen/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/BoxSdkGen/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/BoxSdkGen/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/BoxSdkGen/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/BoxSdkGen/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 |     }
/host/spi-builder-workspace/BoxSdkGen/Sources/Networking/Retries/BoxRetryStrategy.swift:45:28: warning: result of call to 'refreshToken(networkSession:)' is unused [#no-usage]
43 |         if fetchResponse.status == 401 && fetchOptions.auth != nil {
44 |             let auth: Authentication = fetchOptions.auth!
45 |             try await auth.refreshToken(networkSession: fetchOptions.networkSession)
   |                            `- warning: result of call to 'refreshToken(networkSession:)' is unused [#no-usage]
46 |             return true
47 |         }
[955/1130] Compiling BoxSdkGen AiAgentAllowedEntity.swift
/host/spi-builder-workspace/BoxSdkGen/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/BoxSdkGen/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/BoxSdkGen/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/BoxSdkGen/Sources/Networking/BoxNetworkClient.swift:32:24: error: 'URLSessionConfiguration' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 30 |     ///   - timeoutConfig: Timeout configuration in milliseconds.
 31 |     public init(
 32 |         configuration: URLSessionConfiguration = URLSessionConfiguration.default,
    |                        `- error: 'URLSessionConfiguration' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 33 |         timeoutConfig: TimeoutConfig? = nil
 34 |     ) {
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/BoxSdkGen/Sources/Networking/BoxNetworkClient.swift:32:74: error: type 'URLSessionConfiguration' (aka 'AnyObject') has no member 'default'
 30 |     ///   - timeoutConfig: Timeout configuration in milliseconds.
 31 |     public init(
 32 |         configuration: URLSessionConfiguration = URLSessionConfiguration.default,
    |                                                                          `- error: type 'URLSessionConfiguration' (aka 'AnyObject') has no member 'default'
 33 |         timeoutConfig: TimeoutConfig? = nil
 34 |     ) {
/host/spi-builder-workspace/BoxSdkGen/Sources/Networking/BoxNetworkClient.swift:32:74: error: default argument value of type '_' cannot be converted to type 'AnyObject'
 30 |     ///   - timeoutConfig: Timeout configuration in milliseconds.
 31 |     public init(
 32 |         configuration: URLSessionConfiguration = URLSessionConfiguration.default,
    |                                                                          `- error: default argument value of type '_' cannot be converted to type 'AnyObject'
 33 |         timeoutConfig: TimeoutConfig? = nil
 34 |     ) {
/host/spi-builder-workspace/BoxSdkGen/Sources/Networking/BoxNetworkClient.swift:136:48: error: cannot find type 'URLRequest' in scope
134 |     /// - Returns: Tuple of  of (Data, URLResponse)
135 |     /// - Throws: An error if the request fails for any reason.
136 |     private func sendDataRequest(_ urlRequest: URLRequest, followRedirects: Bool) async throws -> (Data, URLResponse) {
    |                                                `- error: cannot find type 'URLRequest' in scope
137 |         return try await withCheckedThrowingContinuation { [weak self] continuation in
138 |             guard let self = self else {
/host/spi-builder-workspace/BoxSdkGen/Sources/Networking/BoxNetworkClient.swift:136:106: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
134 |     /// - Returns: Tuple of  of (Data, URLResponse)
135 |     /// - Throws: An error if the request fails for any reason.
136 |     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.
137 |         return try await withCheckedThrowingContinuation { [weak self] continuation in
138 |             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/BoxSdkGen/Sources/Networking/BoxNetworkClient.swift:175:52: error: cannot find type 'URLRequest' in scope
173 |     /// - Returns: Tuple of  of (URL, URLResponse)
174 |     /// - Throws: An error if the request fails for any reason.
175 |     private func sendDownloadRequest(_ urlRequest: URLRequest, downloadDestinationURL: URL) async throws -> (URL, URLResponse) {
    |                                                    `- error: cannot find type 'URLRequest' in scope
176 |         return try await withCheckedThrowingContinuation { [weak self] continuation in
177 |             guard let self = self else {
/host/spi-builder-workspace/BoxSdkGen/Sources/Networking/BoxNetworkClient.swift:175:115: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
173 |     /// - Returns: Tuple of  of (URL, URLResponse)
174 |     /// - Throws: An error if the request fails for any reason.
175 |     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.
176 |         return try await withCheckedThrowingContinuation { [weak self] continuation in
177 |             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/BoxSdkGen/Sources/Networking/BoxNetworkClient.swift:235:23: error: cannot find type 'URLRequest' in scope
233 |         options: FetchOptions,
234 |         networkSession: NetworkSession
235 |     ) async throws -> URLRequest {
    |                       `- error: cannot find type 'URLRequest' in scope
236 |         var urlRequest = URLRequest(url: createEndpointUrl(url: options.url, params: options.params))
237 |         urlRequest.httpMethod = options.method.uppercased()
/host/spi-builder-workspace/BoxSdkGen/Sources/Networking/BoxNetworkClient.swift:265:63: error: cannot find type 'URLRequest' in scope
263 |     ///   - networkSession: The Networking Session object which provides the URLSession object along with a network configuration parameters used in network communication.
264 |     /// - Throws: An error if the operation fails for any reason.
265 |     private func updateRequestWithHeaders(_ urlRequest: inout URLRequest, options: FetchOptions, networkSession: NetworkSession) async throws {
    |                                                               `- error: cannot find type 'URLRequest' in scope
266 |         urlRequest.allHTTPHeaderFields = options.headers
267 |
/host/spi-builder-workspace/BoxSdkGen/Sources/Networking/BoxNetworkClient.swift:288:75: error: cannot find type 'URLRequest' in scope
286 |     ///   - networkSession: The Networking Session object which provides the URLSession object along with a network configuration parameters used in network communication.
287 |     /// - Throws: An error if the operation fails for any reason.
288 |     private func updateRequestWithAuthorizationHeader(_ urlRequest: inout URLRequest, options: FetchOptions, networkSession: NetworkSession) async throws {
    |                                                                           `- error: cannot find type 'URLRequest' in scope
289 |         if let auth = options.auth {
290 |             let authHeaderValue = try await auth.retrieveAuthorizationHeader(networkSession: networkSession)
/host/spi-builder-workspace/BoxSdkGen/Sources/Networking/BoxNetworkClient.swift:300:69: error: cannot find type 'URLRequest' in scope
298 |     ///   - urlRequest: The request object.
299 |     ///   - multipartData: An array of `MultipartItem` which will be used to create the body of the request.
300 |     private func updateRequestWithMultipartData(_ urlRequest: inout URLRequest, multipartData: [MultipartItem]) throws {
    |                                                                     `- error: cannot find type 'URLRequest' in scope
301 |         var parameters: [String: Any] = [:]
302 |         var partName = ""
/host/spi-builder-workspace/BoxSdkGen/Sources/Networking/BoxNetworkClient.swift:22:40: error: value of type 'URLSession' (aka 'AnyObject') has no member 'configuration'
 20 |     /// - Returns: A new `BoxNetworkClient` instance configured with the provided timeouts.
 21 |     public func withTimeoutConfig(timeoutConfig: TimeoutConfig) -> BoxNetworkClient {
 22 |         let baseConfig = (self.session.configuration.copy() as? URLSessionConfiguration) ?? self.session.configuration
    |                                        `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'configuration'
 23 |         return BoxNetworkClient(configuration: baseConfig, timeoutConfig: timeoutConfig)
 24 |     }
/host/spi-builder-workspace/BoxSdkGen/Sources/Networking/BoxNetworkClient.swift:22:106: error: value of type 'URLSession' (aka 'AnyObject') has no member 'configuration'
 20 |     /// - Returns: A new `BoxNetworkClient` instance configured with the provided timeouts.
 21 |     public func withTimeoutConfig(timeoutConfig: TimeoutConfig) -> BoxNetworkClient {
 22 |         let baseConfig = (self.session.configuration.copy() as? URLSessionConfiguration) ?? self.session.configuration
    |                                                                                                          `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'configuration'
 23 |         return BoxNetworkClient(configuration: baseConfig, timeoutConfig: timeoutConfig)
 24 |     }
/host/spi-builder-workspace/BoxSdkGen/Sources/Networking/BoxNetworkClient.swift:41:24: error: value of type 'URLSessionConfiguration' (aka 'AnyObject') has no member 'timeoutIntervalForRequest'
 39 |             if let timeoutIntervalForRequestMs = timeoutConfig.timeoutIntervalForRequestMs {
 40 |                 // URLSessionConfiguration expects seconds; TimeoutConfig is in milliseconds.
 41 |                 config.timeoutIntervalForRequest = TimeInterval(Double(timeoutIntervalForRequestMs) / 1000.0)
    |                        `- error: value of type 'URLSessionConfiguration' (aka 'AnyObject') has no member 'timeoutIntervalForRequest'
 42 |             }
 43 |             if let timeoutIntervalForResourceMs = timeoutConfig.timeoutIntervalForResourceMs {
/host/spi-builder-workspace/BoxSdkGen/Sources/Networking/BoxNetworkClient.swift:45:24: error: value of type 'URLSessionConfiguration' (aka 'AnyObject') has no member 'timeoutIntervalForResource'
 43 |             if let timeoutIntervalForResourceMs = timeoutConfig.timeoutIntervalForResourceMs {
 44 |                 // URLSessionConfiguration expects seconds; TimeoutConfig is in milliseconds.
 45 |                 config.timeoutIntervalForResource = TimeInterval(Double(timeoutIntervalForResourceMs) / 1000.0)
    |                        `- error: value of type 'URLSessionConfiguration' (aka 'AnyObject') has no member 'timeoutIntervalForResource'
 46 |             }
 47 |         }
/host/spi-builder-workspace/BoxSdkGen/Sources/Networking/BoxNetworkClient.swift:49:24: error: 'URLSession' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
 47 |         }
 48 |
 49 |         self.session = URLSession(configuration: config, delegate: redirectHandler, delegateQueue: nil)
    |                        `- error: 'URLSession' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
 50 |     }
 51 |
/host/spi-builder-workspace/BoxSdkGen/Sources/Networking/BoxNetworkClient.swift:49:100: error: 'nil' requires a contextual type
 47 |         }
 48 |
 49 |         self.session = URLSession(configuration: config, delegate: redirectHandler, delegateQueue: nil)
    |                                                                                                    `- error: 'nil' requires a contextual type
 50 |     }
 51 |
/host/spi-builder-workspace/BoxSdkGen/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/BoxSdkGen/Sources/Networking/BoxNetworkClient.swift:84:157: error: cannot infer contextual base in reference to member 'url'
 82 |                 if let downloadDestinationUrl = options.downloadDestinationUrl, options.responseFormat == .binary {
 83 |                     let (downloadUrl, urlResponse) = try await sendDownloadRequest(urlRequest, downloadDestinationURL: downloadDestinationUrl)
 84 |                     conversation = FetchConversation(options: options, urlRequest: urlRequest, urlResponse: urlResponse as? HTTPURLResponse, responseType: .url(downloadUrl))
    |                                                                                                                                                             `- error: cannot infer contextual base in reference to member 'url'
 85 |                 } else {
 86 |                     let (data, urlResponse) =  try await sendDataRequest(urlRequest, followRedirects: options.followRedirects ?? true)
/host/spi-builder-workspace/BoxSdkGen/Sources/Networking/BoxNetworkClient.swift:87:157: error: cannot infer contextual base in reference to member 'data'
 85 |                 } else {
 86 |                     let (data, urlResponse) =  try await sendDataRequest(urlRequest, followRedirects: options.followRedirects ?? true)
 87 |                     conversation = FetchConversation(options: options, urlRequest: urlRequest, urlResponse: urlResponse as? HTTPURLResponse, responseType: .data(data))
    |                                                                                                                                                             `- error: cannot infer contextual base in reference to member 'data'
 88 |                 }
 89 |             } catch {
/host/spi-builder-workspace/BoxSdkGen/Sources/Networking/BoxNetworkClient.swift:91:105: error: 'nil' requires a contextual type
 89 |             } catch {
 90 |                 sdkError = (error as? BoxSDKError) ?? BoxSDKError(message: error.localizedDescription, error: error)
 91 |                 conversation = FetchConversation(options: options, urlRequest: urlRequest, urlResponse: nil, responseType: .data(Data()))
    |                                                                                                         `- error: 'nil' requires a contextual type
 92 |                 exceptionRetryCount += 1
 93 |                 retryAttemptNumber = exceptionRetryCount
/host/spi-builder-workspace/BoxSdkGen/Sources/Networking/BoxNetworkClient.swift:91:125: error: cannot infer contextual base in reference to member 'data'
 89 |             } catch {
 90 |                 sdkError = (error as? BoxSDKError) ?? BoxSDKError(message: error.localizedDescription, error: error)
 91 |                 conversation = FetchConversation(options: options, urlRequest: urlRequest, urlResponse: nil, responseType: .data(Data()))
    |                                                                                                                             `- error: cannot infer contextual base in reference to member 'data'
 92 |                 exceptionRetryCount += 1
 93 |                 retryAttemptNumber = exceptionRetryCount
/host/spi-builder-workspace/BoxSdkGen/Sources/Networking/BoxNetworkClient.swift:145:37: error: value of type 'URLSession' (aka 'AnyObject') has no member 'dataTask'
143 |             }
144 |
145 |             let task = self.session.dataTask(with: urlRequest) { data, response, error in
    |                                     `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'dataTask'
146 |                 if let error = error {
147 |                     continuation.resume(with: .failure(BoxNetworkError(message: error.localizedDescription, error: error)))
/host/spi-builder-workspace/BoxSdkGen/Sources/Networking/BoxNetworkClient.swift:184:37: error: value of type 'URLSession' (aka 'AnyObject') has no member 'downloadTask'
182 |             }
183 |
184 |             let task = self.session.downloadTask(with: urlRequest) { location, response, error in
    |                                     `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'downloadTask'
185 |                 if let error = error {
186 |                     continuation.resume(with: .failure(BoxNetworkError(message: error.localizedDescription, error: error)))
/host/spi-builder-workspace/BoxSdkGen/Sources/Networking/BoxNetworkClient.swift:236:26: error: cannot find 'URLRequest' in scope
234 |         networkSession: NetworkSession
235 |     ) async throws -> URLRequest {
236 |         var urlRequest = URLRequest(url: createEndpointUrl(url: options.url, params: options.params))
    |                          `- error: cannot find 'URLRequest' in scope
237 |         urlRequest.httpMethod = options.method.uppercased()
238 |
/host/spi-builder-workspace/BoxSdkGen/Sources/Networking/BoxNetworkClient.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/BoxSdkGen/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/BoxSdkGen/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/BoxSdkGen/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/BoxSdkGen/Sources/Networking/DefaultNetworkClient.swift:43:24: error: 'URLSessionConfiguration' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 41 |     ///   - timeoutConfig: Timeout configuration in milliseconds.
 42 |     public init(
 43 |         configuration: URLSessionConfiguration = URLSessionConfiguration.default,
    |                        `- error: 'URLSessionConfiguration' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 44 |         timeoutConfig: TimeoutConfig? = nil
 45 |     ) {
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/BoxSdkGen/Sources/Networking/DefaultNetworkClient.swift:43:74: error: type 'URLSessionConfiguration' (aka 'AnyObject') has no member 'default'
 41 |     ///   - timeoutConfig: Timeout configuration in milliseconds.
 42 |     public init(
 43 |         configuration: URLSessionConfiguration = URLSessionConfiguration.default,
    |                                                                          `- error: type 'URLSessionConfiguration' (aka 'AnyObject') has no member 'default'
 44 |         timeoutConfig: TimeoutConfig? = nil
 45 |     ) {
/host/spi-builder-workspace/BoxSdkGen/Sources/Networking/DefaultNetworkClient.swift:43:74: error: default argument value of type '_' cannot be converted to type 'AnyObject'
 41 |     ///   - timeoutConfig: Timeout configuration in milliseconds.
 42 |     public init(
 43 |         configuration: URLSessionConfiguration = URLSessionConfiguration.default,
    |                                                                          `- error: default argument value of type '_' cannot be converted to type 'AnyObject'
 44 |         timeoutConfig: TimeoutConfig? = nil
 45 |     ) {
/host/spi-builder-workspace/BoxSdkGen/Sources/Networking/DefaultNetworkClient.swift:146:48: error: cannot find type 'URLRequest' in scope
144 |     /// - Returns: Tuple of  of (Data, URLResponse)
145 |     /// - Throws: An error if the request fails for any reason.
146 |     private func sendDataRequest(_ urlRequest: URLRequest, followRedirects: Bool) async throws -> (Data, URLResponse) {
    |                                                `- error: cannot find type 'URLRequest' in scope
147 |         return try await withCheckedThrowingContinuation { [weak self] continuation in
148 |             guard let self = self else {
/host/spi-builder-workspace/BoxSdkGen/Sources/Networking/DefaultNetworkClient.swift:146:106: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
144 |     /// - Returns: Tuple of  of (Data, URLResponse)
145 |     /// - Throws: An error if the request fails for any reason.
146 |     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.
147 |         return try await withCheckedThrowingContinuation { [weak self] continuation in
148 |             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/BoxSdkGen/Sources/Networking/DefaultNetworkClient.swift:185:52: error: cannot find type 'URLRequest' in scope
183 |     /// - Returns: Tuple of  of (URL, URLResponse)
184 |     /// - Throws: An error if the request fails for any reason.
185 |     private func sendDownloadRequest(_ urlRequest: URLRequest, downloadDestinationURL: URL) async throws -> (URL, URLResponse) {
    |                                                    `- error: cannot find type 'URLRequest' in scope
186 |         return try await withCheckedThrowingContinuation { [weak self] continuation in
187 |             guard let self = self else {
/host/spi-builder-workspace/BoxSdkGen/Sources/Networking/DefaultNetworkClient.swift:185:115: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
183 |     /// - Returns: Tuple of  of (URL, URLResponse)
184 |     /// - Throws: An error if the request fails for any reason.
185 |     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.
186 |         return try await withCheckedThrowingContinuation { [weak self] continuation in
187 |             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/BoxSdkGen/Sources/Networking/DefaultNetworkClient.swift:245:23: error: cannot find type 'URLRequest' in scope
243 |         options: FetchOptions,
244 |         networkSession: NetworkSession
245 |     ) async throws -> URLRequest {
    |                       `- error: cannot find type 'URLRequest' in scope
246 |         var urlRequest = URLRequest(url: createEndpointUrl(url: options.url, params: options.params))
247 |         urlRequest.httpMethod = options.method.uppercased()
/host/spi-builder-workspace/BoxSdkGen/Sources/Networking/DefaultNetworkClient.swift:275:63: error: cannot find type 'URLRequest' in scope
273 |     ///   - networkSession: The Networking Session object which provides the URLSession object along with a network configuration parameters used in network communication.
274 |     /// - Throws: An error if the operation fails for any reason.
275 |     private func updateRequestWithHeaders(_ urlRequest: inout URLRequest, options: FetchOptions, networkSession: NetworkSession) async throws {
    |                                                               `- error: cannot find type 'URLRequest' in scope
276 |         urlRequest.allHTTPHeaderFields = options.headers
277 |
/host/spi-builder-workspace/BoxSdkGen/Sources/Networking/DefaultNetworkClient.swift:294:75: error: cannot find type 'URLRequest' in scope
292 |     ///   - networkSession: The Networking Session object which provides the URLSession object along with a network configuration parameters used in network communication.
293 |     /// - Throws: An error if the operation fails for any reason.
294 |     private func updateRequestWithAuthorizationHeader(_ urlRequest: inout URLRequest, options: FetchOptions, networkSession: NetworkSession) async throws {
    |                                                                           `- error: cannot find type 'URLRequest' in scope
295 |         if let auth = options.auth {
296 |             let authHeaderValue = try await auth.retrieveAuthorizationHeader(networkSession: networkSession)
/host/spi-builder-workspace/BoxSdkGen/Sources/Networking/DefaultNetworkClient.swift:306:69: error: cannot find type 'URLRequest' in scope
304 |     ///   - urlRequest: The request object.
305 |     ///   - multipartData: An array of `MultipartItem` which will be used to create the body of the request.
306 |     private func updateRequestWithMultipartData(_ urlRequest: inout URLRequest, multipartData: [MultipartItem]) throws {
    |                                                                     `- error: cannot find type 'URLRequest' in scope
307 |         var parameters: [String: Any] = [:]
308 |         var partName = ""
/host/spi-builder-workspace/BoxSdkGen/Sources/Networking/DefaultNetworkClient.swift:33:40: error: value of type 'URLSession' (aka 'AnyObject') has no member 'configuration'
 31 |     /// - Returns: A new `BoxNetworkClient` instance configured with the provided timeouts.
 32 |     public func withTimeoutConfig(timeoutConfig: TimeoutConfig) -> DefaultNetworkClient {
 33 |         let baseConfig = (self.session.configuration.copy() as? URLSessionConfiguration) ?? self.session.configuration
    |                                        `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'configuration'
 34 |         return DefaultNetworkClient(configuration: baseConfig, timeoutConfig: timeoutConfig)
 35 |     }
/host/spi-builder-workspace/BoxSdkGen/Sources/Networking/DefaultNetworkClient.swift:33:106: error: value of type 'URLSession' (aka 'AnyObject') has no member 'configuration'
 31 |     /// - Returns: A new `BoxNetworkClient` instance configured with the provided timeouts.
 32 |     public func withTimeoutConfig(timeoutConfig: TimeoutConfig) -> DefaultNetworkClient {
 33 |         let baseConfig = (self.session.configuration.copy() as? URLSessionConfiguration) ?? self.session.configuration
    |                                                                                                          `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'configuration'
 34 |         return DefaultNetworkClient(configuration: baseConfig, timeoutConfig: timeoutConfig)
 35 |     }
/host/spi-builder-workspace/BoxSdkGen/Sources/Networking/DefaultNetworkClient.swift:52:24: error: value of type 'URLSessionConfiguration' (aka 'AnyObject') has no member 'timeoutIntervalForRequest'
 50 |             if let timeoutIntervalForRequestMs = timeoutConfig.timeoutIntervalForRequestMs {
 51 |                 // URLSessionConfiguration expects seconds; TimeoutConfig is in milliseconds.
 52 |                 config.timeoutIntervalForRequest = TimeInterval(Double(timeoutIntervalForRequestMs) / 1000.0)
    |                        `- error: value of type 'URLSessionConfiguration' (aka 'AnyObject') has no member 'timeoutIntervalForRequest'
 53 |             }
 54 |             if let timeoutIntervalForResourceMs = timeoutConfig.timeoutIntervalForResourceMs {
/host/spi-builder-workspace/BoxSdkGen/Sources/Networking/DefaultNetworkClient.swift:56:24: error: value of type 'URLSessionConfiguration' (aka 'AnyObject') has no member 'timeoutIntervalForResource'
 54 |             if let timeoutIntervalForResourceMs = timeoutConfig.timeoutIntervalForResourceMs {
 55 |                 // URLSessionConfiguration expects seconds; TimeoutConfig is in milliseconds.
 56 |                 config.timeoutIntervalForResource = TimeInterval(Double(timeoutIntervalForResourceMs) / 1000.0)
    |                        `- error: value of type 'URLSessionConfiguration' (aka 'AnyObject') has no member 'timeoutIntervalForResource'
 57 |             }
 58 |         }
/host/spi-builder-workspace/BoxSdkGen/Sources/Networking/DefaultNetworkClient.swift:60:24: error: 'URLSession' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
 58 |         }
 59 |
 60 |         self.session = URLSession(configuration: config, delegate: redirectHandler, delegateQueue: nil)
    |                        `- error: 'URLSession' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
 61 |     }
 62 |
/host/spi-builder-workspace/BoxSdkGen/Sources/Networking/DefaultNetworkClient.swift:60:100: error: 'nil' requires a contextual type
 58 |         }
 59 |
 60 |         self.session = URLSession(configuration: config, delegate: redirectHandler, delegateQueue: nil)
    |                                                                                                    `- error: 'nil' requires a contextual type
 61 |     }
 62 |
/host/spi-builder-workspace/BoxSdkGen/Sources/Networking/DefaultNetworkClient.swift:95:157: error: cannot infer contextual base in reference to member 'url'
 93 |                 if let downloadDestinationUrl = options.downloadDestinationUrl, options.responseFormat == .binary {
 94 |                     let (downloadUrl, urlResponse) = try await sendDownloadRequest(urlRequest, downloadDestinationURL: downloadDestinationUrl)
 95 |                     conversation = FetchConversation(options: options, urlRequest: urlRequest, urlResponse: urlResponse as? HTTPURLResponse, responseType: .url(downloadUrl))
    |                                                                                                                                                             `- error: cannot infer contextual base in reference to member 'url'
 96 |                 } else {
 97 |                     let (data, urlResponse) =  try await sendDataRequest(urlRequest, followRedirects: options.followRedirects ?? true)
/host/spi-builder-workspace/BoxSdkGen/Sources/Networking/DefaultNetworkClient.swift:98:157: error: cannot infer contextual base in reference to member 'data'
 96 |                 } else {
 97 |                     let (data, urlResponse) =  try await sendDataRequest(urlRequest, followRedirects: options.followRedirects ?? true)
 98 |                     conversation = FetchConversation(options: options, urlRequest: urlRequest, urlResponse: urlResponse as? HTTPURLResponse, responseType: .data(data))
    |                                                                                                                                                             `- error: cannot infer contextual base in reference to member 'data'
 99 |                 }
100 |             } catch {
/host/spi-builder-workspace/BoxSdkGen/Sources/Networking/DefaultNetworkClient.swift:102:105: error: 'nil' requires a contextual type
100 |             } catch {
101 |                 sdkError = (error as? BoxSDKError) ?? BoxSDKError(message: error.localizedDescription, error: error)
102 |                 conversation = FetchConversation(options: options, urlRequest: urlRequest, urlResponse: nil, responseType: .data(Data()))
    |                                                                                                         `- error: 'nil' requires a contextual type
103 |                 exceptionRetryCount += 1
104 |                 retryAttemptNumber = exceptionRetryCount
/host/spi-builder-workspace/BoxSdkGen/Sources/Networking/DefaultNetworkClient.swift:102:125: error: cannot infer contextual base in reference to member 'data'
100 |             } catch {
101 |                 sdkError = (error as? BoxSDKError) ?? BoxSDKError(message: error.localizedDescription, error: error)
102 |                 conversation = FetchConversation(options: options, urlRequest: urlRequest, urlResponse: nil, responseType: .data(Data()))
    |                                                                                                                             `- error: cannot infer contextual base in reference to member 'data'
103 |                 exceptionRetryCount += 1
104 |                 retryAttemptNumber = exceptionRetryCount
/host/spi-builder-workspace/BoxSdkGen/Sources/Networking/DefaultNetworkClient.swift:155:37: error: value of type 'URLSession' (aka 'AnyObject') has no member 'dataTask'
153 |             }
154 |
155 |             let task = self.session.dataTask(with: urlRequest) { data, response, error in
    |                                     `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'dataTask'
156 |                 if let error = error {
157 |                     continuation.resume(with: .failure(BoxNetworkError(message: error.localizedDescription, error: error)))
/host/spi-builder-workspace/BoxSdkGen/Sources/Networking/DefaultNetworkClient.swift:194:37: error: value of type 'URLSession' (aka 'AnyObject') has no member 'downloadTask'
192 |             }
193 |
194 |             let task = self.session.downloadTask(with: urlRequest) { location, response, error in
    |                                     `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'downloadTask'
195 |                 if let error = error {
196 |                     continuation.resume(with: .failure(BoxNetworkError(message: error.localizedDescription, error: error)))
/host/spi-builder-workspace/BoxSdkGen/Sources/Networking/DefaultNetworkClient.swift:246:26: error: cannot find 'URLRequest' in scope
244 |         networkSession: NetworkSession
245 |     ) async throws -> URLRequest {
246 |         var urlRequest = URLRequest(url: createEndpointUrl(url: options.url, params: options.params))
    |                          `- error: cannot find 'URLRequest' in scope
247 |         urlRequest.httpMethod = options.method.uppercased()
248 |
/host/spi-builder-workspace/BoxSdkGen/Sources/Networking/DefaultNetworkClient.swift:398:28: error: cannot call value of non-function type 'ContinuousClock.Instant'
396 |         return try await withCheckedThrowingContinuation { continuation in
397 |             utilityQueue.asyncAfter(
398 |                 deadline: .now() + .milliseconds(Int(delay * 1000))
    |                            `- error: cannot call value of non-function type 'ContinuousClock.Instant'
399 |             ) {
400 |                 continuation.resume()
/host/spi-builder-workspace/BoxSdkGen/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/BoxSdkGen/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/BoxSdkGen/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/BoxSdkGen/Sources/Networking/FetchConversation.swift:46:53: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'allHeaderFields'
44 |         }
45 |
46 |         let headers: [String: String] = urlResponse.allHeaderFields.reduce(into: [:]) { result, pair in
   |                                                     `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'allHeaderFields'
47 |             if let key = pair.key as? String, let value = pair.value as? String {
48 |                 result[key] = value
/host/spi-builder-workspace/BoxSdkGen/Sources/Networking/FetchConversation.swift:54:54: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
52 |         switch self.responseType {
53 |         case let .data(data):
54 |             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'
55 |         case let .url(url):
56 |             return FetchResponse(status: urlResponse.statusCode, headers: headers, url: options.url, data: nil, downloadDestinationUrl: url)
/host/spi-builder-workspace/BoxSdkGen/Sources/Networking/FetchConversation.swift:56:54: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
54 |             return FetchResponse(status: urlResponse.statusCode, headers: headers, url: options.url, data: SerializedData(data: data))
55 |         case let .url(url):
56 |             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'
57 |         }
58 |     }
/host/spi-builder-workspace/BoxSdkGen/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/BoxSdkGen/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/BoxSdkGen/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/BoxSdkGen/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/BoxSdkGen/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/BoxSdkGen/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/BoxSdkGen/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/BoxSdkGen/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/BoxSdkGen/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/BoxSdkGen/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/BoxSdkGen/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/BoxSdkGen/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/BoxSdkGen/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/BoxSdkGen/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 |     }
/host/spi-builder-workspace/BoxSdkGen/Sources/Networking/Retries/BoxRetryStrategy.swift:45:28: warning: result of call to 'refreshToken(networkSession:)' is unused [#no-usage]
43 |         if fetchResponse.status == 401 && fetchOptions.auth != nil {
44 |             let auth: Authentication = fetchOptions.auth!
45 |             try await auth.refreshToken(networkSession: fetchOptions.networkSession)
   |                            `- warning: result of call to 'refreshToken(networkSession:)' is unused [#no-usage]
46 |             return true
47 |         }
[956/1155] Compiling BoxSdkGen AiStudioAgentTextGenTypeField.swift
[957/1155] Compiling BoxSdkGen AiStudioAgentTextGenResponse.swift
[958/1155] Compiling BoxSdkGen AiStudioAgentTextGenResponseTypeField.swift
[959/1155] Compiling BoxSdkGen AiTextGen.swift
[960/1155] Compiling BoxSdkGen AiTextGenItemsField.swift
[961/1155] Compiling BoxSdkGen AiTextGenItemsTypeField.swift
[962/1155] Compiling BoxSdkGen AiTextGenAgent.swift
[963/1155] Compiling BoxSdkGen AppItem.swift
[964/1155] Compiling BoxSdkGen AppItemTypeField.swift
[965/1155] Compiling BoxSdkGen AppItemAssociatedItem.swift
[966/1155] Compiling BoxSdkGen AppItemAssociation.swift
[967/1155] Compiling BoxSdkGen AppItemAssociationTypeField.swift
[968/1155] Compiling BoxSdkGen AppItemAssociations.swift
[969/1155] Compiling BoxSdkGen AppItemEventSource.swift
[970/1155] Compiling BoxSdkGen AppItemEventSourceTypeField.swift
[971/1155] Compiling BoxSdkGen Classification.swift
[972/1155] Compiling BoxSdkGen ClassificationTemplateField.swift
[973/1155] Compiling BoxSdkGen ClassificationTemplate.swift
[974/1155] Compiling BoxSdkGen ClassificationTemplateDisplayNameField.swift
[975/1155] Compiling BoxSdkGen ClassificationTemplateFieldsDisplayNameField.swift
[976/1155] Compiling BoxSdkGen ClassificationTemplateFieldsField.swift
[977/1155] Compiling BoxSdkGen ClassificationTemplateFieldsKeyField.swift
[978/1155] Compiling BoxSdkGen ClassificationTemplateFieldsOptionsField.swift
[979/1155] Compiling BoxSdkGen ClassificationTemplateFieldsOptionsStaticConfigClassificationField.swift
[980/1155] Compiling BoxSdkGen ClassificationTemplateFieldsOptionsStaticConfigField.swift
[981/1180] Compiling BoxSdkGen AiAgentAsk.swift
[982/1180] Compiling BoxSdkGen AiAgentAskTypeField.swift
[983/1180] Compiling BoxSdkGen AiAgentBasicGenTool.swift
[984/1180] Compiling BoxSdkGen AiAgentBasicTextTool.swift
[985/1180] Compiling BoxSdkGen AiAgentBasicTextToolBase.swift
[986/1180] Compiling BoxSdkGen AiAgentBasicTextToolTextGen.swift
[987/1180] Compiling BoxSdkGen AiAgentExtract.swift
[988/1180] Compiling BoxSdkGen AiAgentExtractTypeField.swift
[989/1180] Compiling BoxSdkGen AiAgentExtractStructured.swift
[990/1180] Compiling BoxSdkGen AiAgentExtractStructuredTypeField.swift
[991/1180] Compiling BoxSdkGen AiAgentInfo.swift
[992/1180] Compiling BoxSdkGen AiAgentInfoModelsField.swift
[993/1180] Compiling BoxSdkGen AiAgentLongTextTool.swift
[994/1180] Compiling BoxSdkGen AiAgentLongTextToolEmbeddingsField.swift
[995/1180] Compiling BoxSdkGen AiAgentLongTextToolEmbeddingsStrategyField.swift
[996/1180] Compiling BoxSdkGen AiAgentLongTextToolTextGen.swift
[997/1180] Compiling BoxSdkGen AiAgentLongTextToolTextGenEmbeddingsField.swift
[998/1180] Compiling BoxSdkGen AiAgentLongTextToolTextGenEmbeddingsStrategyField.swift
[999/1180] Compiling BoxSdkGen AiAgentReference.swift
[1000/1180] Compiling BoxSdkGen AiAgentReferenceTypeField.swift
[1001/1180] Compiling BoxSdkGen AiAgentSpreadsheetTool.swift
[1002/1180] Compiling BoxSdkGen AiAgentTextGen.swift
[1003/1180] Compiling BoxSdkGen AiAgentTextGenTypeField.swift
[1004/1180] Compiling BoxSdkGen AiAsk.swift
[1005/1180] Compiling BoxSdkGen AiAskModeField.swift
[1006/1205] Compiling BoxSdkGen AiAskAgent.swift
[1007/1205] Compiling BoxSdkGen AiCitation.swift
[1008/1205] Compiling BoxSdkGen AiCitationTypeField.swift
[1009/1205] Compiling BoxSdkGen AiDialogueHistory.swift
[1010/1205] Compiling BoxSdkGen AiExtract.swift
[1011/1205] Compiling BoxSdkGen AiExtractAgent.swift
[1012/1205] Compiling BoxSdkGen AiExtractResponse.swift
[1013/1205] Compiling BoxSdkGen AiExtractStructured.swift
[1014/1205] Compiling BoxSdkGen AiExtractStructuredFieldsField.swift
[1015/1205] Compiling BoxSdkGen AiExtractStructuredFieldsOptionsField.swift
[1016/1205] Compiling BoxSdkGen AiExtractStructuredMetadataTemplateField.swift
[1017/1205] Compiling BoxSdkGen AiExtractStructuredMetadataTemplateTypeField.swift
[1018/1205] Compiling BoxSdkGen AiExtractStructuredAgent.swift
[1019/1205] Compiling BoxSdkGen AiExtractStructuredResponse.swift
[1020/1205] Compiling BoxSdkGen AiItemAsk.swift
[1021/1205] Compiling BoxSdkGen AiItemAskTypeField.swift
[1022/1205] Compiling BoxSdkGen AiItemBase.swift
[1023/1205] Compiling BoxSdkGen AiItemBaseTypeField.swift
[1024/1205] Compiling BoxSdkGen AiLlmEndpointParams.swift
[1025/1205] Compiling BoxSdkGen AiLlmEndpointParamsAws.swift
[1026/1205] Compiling BoxSdkGen AiLlmEndpointParamsAwsTypeField.swift
[1027/1205] Compiling BoxSdkGen AiLlmEndpointParamsGoogle.swift
[1028/1205] Compiling BoxSdkGen AiLlmEndpointParamsGoogleTypeField.swift
[1029/1205] Compiling BoxSdkGen AiLlmEndpointParamsIbm.swift
[1030/1205] Compiling BoxSdkGen AiLlmEndpointParamsIbmTypeField.swift
[1031/1230] Compiling BoxSdkGen ClassificationTemplateFieldsTypeField.swift
[1032/1230] Compiling BoxSdkGen ClassificationTemplateTemplateKeyField.swift
[1033/1230] Compiling BoxSdkGen ClassificationTemplateTypeField.swift
[1034/1230] Compiling BoxSdkGen ClientError.swift
[1035/1230] Compiling BoxSdkGen ClientErrorCodeField.swift
[1036/1230] Compiling BoxSdkGen ClientErrorTypeField.swift
[1037/1230] Compiling BoxSdkGen Collaboration.swift
[1038/1230] Compiling BoxSdkGen CollaborationAcceptanceRequirementsStatusField.swift
[1039/1230] Compiling BoxSdkGen CollaborationAcceptanceRequirementsStatusStrongPasswordRequirementField.swift
[1040/1230] Compiling BoxSdkGen CollaborationAcceptanceRequirementsStatusTermsOfServiceRequirementField.swift
[1041/1230] Compiling BoxSdkGen CollaborationAcceptanceRequirementsStatusTwoFactorAuthenticationRequirementField.swift
[1042/1230] Compiling BoxSdkGen CollaborationRoleField.swift
[1043/1230] Compiling BoxSdkGen CollaborationStatusField.swift
[1044/1230] Compiling BoxSdkGen CollaborationTypeField.swift
[1045/1230] Compiling BoxSdkGen CollaborationAccessGrantee.swift
[1046/1230] Compiling BoxSdkGen CollaborationAllowlistEntries.swift
[1047/1230] Compiling BoxSdkGen CollaborationAllowlistEntry.swift
[1048/1230] Compiling BoxSdkGen CollaborationAllowlistEntryDirectionField.swift
[1049/1230] Compiling BoxSdkGen CollaborationAllowlistEntryEnterpriseField.swift
[1050/1230] Compiling BoxSdkGen CollaborationAllowlistEntryEnterpriseTypeField.swift
[1051/1230] Compiling BoxSdkGen CollaborationAllowlistEntryTypeField.swift
[1052/1230] Compiling BoxSdkGen CollaborationAllowlistExemptTarget.swift
[1053/1230] Compiling BoxSdkGen CollaborationAllowlistExemptTargetEnterpriseField.swift
[1054/1230] Compiling BoxSdkGen CollaborationAllowlistExemptTargetEnterpriseTypeField.swift
[1055/1230] Compiling BoxSdkGen CollaborationAllowlistExemptTargetTypeField.swift
[1056/1230] Compiling BoxSdkGen CollaborationAllowlistExemptTargets.swift
[1057/1230] Compiling BoxSdkGen CollaborationItem.swift
[1058/1230] Compiling BoxSdkGen Collaborations.swift
[1059/1230] Compiling BoxSdkGen CollaborationsOffsetPaginated.swift
[1060/1230] Compiling BoxSdkGen CollaboratorVariable.swift
[1061/1230] Compiling BoxSdkGen CollaboratorVariableTypeField.swift
[1062/1230] Compiling BoxSdkGen CollaboratorVariableVariableTypeField.swift
[1063/1230] Compiling BoxSdkGen CollaboratorVariableVariableValueField.swift
[1064/1230] Compiling BoxSdkGen CollaboratorVariableVariableValueTypeField.swift
[1065/1230] Compiling BoxSdkGen Collection.swift
[1066/1230] Compiling BoxSdkGen CollectionCollectionTypeField.swift
[1067/1230] Compiling BoxSdkGen CollectionNameField.swift
[1068/1230] Compiling BoxSdkGen CollectionTypeField.swift
[1069/1230] Compiling BoxSdkGen Collections.swift
[1070/1230] Compiling BoxSdkGen CollectionsOrderDirectionField.swift
[1071/1230] Compiling BoxSdkGen CollectionsOrderField.swift
[1072/1230] Compiling BoxSdkGen Comment.swift
[1073/1230] Compiling BoxSdkGen CommentItemField.swift
[1074/1230] Compiling BoxSdkGen CommentBase.swift
[1075/1230] Compiling BoxSdkGen CommentBaseTypeField.swift
[1076/1230] Compiling BoxSdkGen CommentFull.swift
[1077/1230] Compiling BoxSdkGen Comments.swift
[1078/1230] Compiling BoxSdkGen CommentsOrderDirectionField.swift
[1079/1230] Compiling BoxSdkGen CommentsOrderField.swift
[1080/1230] Compiling BoxSdkGen CompletionRuleVariable.swift
[1081/1280] Compiling BoxSdkGen AiLlmEndpointParamsOpenAi.swift
/host/spi-builder-workspace/BoxSdkGen/Sources/Schemas/AiStudioAgentSpreadsheetTool/AiStudioAgentSpreadsheetTool.swift:32:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
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 [#no-usage]
33 |         try super.encode(to: encoder)
34 |     }
[1082/1280] Compiling BoxSdkGen AiLlmEndpointParamsOpenAiTypeField.swift
/host/spi-builder-workspace/BoxSdkGen/Sources/Schemas/AiStudioAgentSpreadsheetTool/AiStudioAgentSpreadsheetTool.swift:32:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
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 [#no-usage]
33 |         try super.encode(to: encoder)
34 |     }
[1083/1280] Compiling BoxSdkGen AiMultipleAgentResponse.swift
/host/spi-builder-workspace/BoxSdkGen/Sources/Schemas/AiStudioAgentSpreadsheetTool/AiStudioAgentSpreadsheetTool.swift:32:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
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 [#no-usage]
33 |         try super.encode(to: encoder)
34 |     }
[1084/1280] Compiling BoxSdkGen AiResponse.swift
/host/spi-builder-workspace/BoxSdkGen/Sources/Schemas/AiStudioAgentSpreadsheetTool/AiStudioAgentSpreadsheetTool.swift:32:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
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 [#no-usage]
33 |         try super.encode(to: encoder)
34 |     }
[1085/1280] Compiling BoxSdkGen AiResponseFull.swift
/host/spi-builder-workspace/BoxSdkGen/Sources/Schemas/AiStudioAgentSpreadsheetTool/AiStudioAgentSpreadsheetTool.swift:32:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
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 [#no-usage]
33 |         try super.encode(to: encoder)
34 |     }
[1086/1280] Compiling BoxSdkGen AiSingleAgentResponse.swift
/host/spi-builder-workspace/BoxSdkGen/Sources/Schemas/AiStudioAgentSpreadsheetTool/AiStudioAgentSpreadsheetTool.swift:32:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
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 [#no-usage]
33 |         try super.encode(to: encoder)
34 |     }
[1087/1280] Compiling BoxSdkGen AiSingleAgentResponseTypeField.swift
/host/spi-builder-workspace/BoxSdkGen/Sources/Schemas/AiStudioAgentSpreadsheetTool/AiStudioAgentSpreadsheetTool.swift:32:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
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 [#no-usage]
33 |         try super.encode(to: encoder)
34 |     }
[1088/1280] Compiling BoxSdkGen AiSingleAgentResponseFull.swift
/host/spi-builder-workspace/BoxSdkGen/Sources/Schemas/AiStudioAgentSpreadsheetTool/AiStudioAgentSpreadsheetTool.swift:32:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
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 [#no-usage]
33 |         try super.encode(to: encoder)
34 |     }
[1089/1280] Compiling BoxSdkGen AiStudioAgentAsk.swift
/host/spi-builder-workspace/BoxSdkGen/Sources/Schemas/AiStudioAgentSpreadsheetTool/AiStudioAgentSpreadsheetTool.swift:32:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
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 [#no-usage]
33 |         try super.encode(to: encoder)
34 |     }
[1090/1280] Compiling BoxSdkGen AiStudioAgentAskTypeField.swift
/host/spi-builder-workspace/BoxSdkGen/Sources/Schemas/AiStudioAgentSpreadsheetTool/AiStudioAgentSpreadsheetTool.swift:32:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
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 [#no-usage]
33 |         try super.encode(to: encoder)
34 |     }
[1091/1280] Compiling BoxSdkGen AiStudioAgentAskResponse.swift
/host/spi-builder-workspace/BoxSdkGen/Sources/Schemas/AiStudioAgentSpreadsheetTool/AiStudioAgentSpreadsheetTool.swift:32:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
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 [#no-usage]
33 |         try super.encode(to: encoder)
34 |     }
[1092/1280] Compiling BoxSdkGen AiStudioAgentAskResponseTypeField.swift
/host/spi-builder-workspace/BoxSdkGen/Sources/Schemas/AiStudioAgentSpreadsheetTool/AiStudioAgentSpreadsheetTool.swift:32:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
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 [#no-usage]
33 |         try super.encode(to: encoder)
34 |     }
[1093/1280] Compiling BoxSdkGen AiStudioAgentBasicGenTool.swift
/host/spi-builder-workspace/BoxSdkGen/Sources/Schemas/AiStudioAgentSpreadsheetTool/AiStudioAgentSpreadsheetTool.swift:32:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
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 [#no-usage]
33 |         try super.encode(to: encoder)
34 |     }
[1094/1280] Compiling BoxSdkGen AiStudioAgentBasicGenToolResponse.swift
/host/spi-builder-workspace/BoxSdkGen/Sources/Schemas/AiStudioAgentSpreadsheetTool/AiStudioAgentSpreadsheetTool.swift:32:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
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 [#no-usage]
33 |         try super.encode(to: encoder)
34 |     }
[1095/1280] Compiling BoxSdkGen AiStudioAgentBasicTextTool.swift
/host/spi-builder-workspace/BoxSdkGen/Sources/Schemas/AiStudioAgentSpreadsheetTool/AiStudioAgentSpreadsheetTool.swift:32:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
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 [#no-usage]
33 |         try super.encode(to: encoder)
34 |     }
[1096/1280] Compiling BoxSdkGen AiStudioAgentBasicTextToolResponse.swift
/host/spi-builder-workspace/BoxSdkGen/Sources/Schemas/AiStudioAgentSpreadsheetTool/AiStudioAgentSpreadsheetTool.swift:32:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
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 [#no-usage]
33 |         try super.encode(to: encoder)
34 |     }
[1097/1280] Compiling BoxSdkGen AiStudioAgentExtract.swift
/host/spi-builder-workspace/BoxSdkGen/Sources/Schemas/AiStudioAgentSpreadsheetTool/AiStudioAgentSpreadsheetTool.swift:32:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
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 [#no-usage]
33 |         try super.encode(to: encoder)
34 |     }
[1098/1280] Compiling BoxSdkGen AiStudioAgentExtractTypeField.swift
/host/spi-builder-workspace/BoxSdkGen/Sources/Schemas/AiStudioAgentSpreadsheetTool/AiStudioAgentSpreadsheetTool.swift:32:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
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 [#no-usage]
33 |         try super.encode(to: encoder)
34 |     }
[1099/1280] Compiling BoxSdkGen AiStudioAgentExtractResponse.swift
/host/spi-builder-workspace/BoxSdkGen/Sources/Schemas/AiStudioAgentSpreadsheetTool/AiStudioAgentSpreadsheetTool.swift:32:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
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 [#no-usage]
33 |         try super.encode(to: encoder)
34 |     }
[1100/1280] Compiling BoxSdkGen AiStudioAgentExtractResponseTypeField.swift
/host/spi-builder-workspace/BoxSdkGen/Sources/Schemas/AiStudioAgentSpreadsheetTool/AiStudioAgentSpreadsheetTool.swift:32:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
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 [#no-usage]
33 |         try super.encode(to: encoder)
34 |     }
[1101/1280] Compiling BoxSdkGen AiStudioAgentLongTextTool.swift
/host/spi-builder-workspace/BoxSdkGen/Sources/Schemas/AiStudioAgentSpreadsheetTool/AiStudioAgentSpreadsheetTool.swift:32:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
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 [#no-usage]
33 |         try super.encode(to: encoder)
34 |     }
[1102/1280] Compiling BoxSdkGen AiStudioAgentLongTextToolResponse.swift
/host/spi-builder-workspace/BoxSdkGen/Sources/Schemas/AiStudioAgentSpreadsheetTool/AiStudioAgentSpreadsheetTool.swift:32:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
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 [#no-usage]
33 |         try super.encode(to: encoder)
34 |     }
[1103/1280] Compiling BoxSdkGen AiStudioAgentSpreadsheetTool.swift
/host/spi-builder-workspace/BoxSdkGen/Sources/Schemas/AiStudioAgentSpreadsheetTool/AiStudioAgentSpreadsheetTool.swift:32:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
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 [#no-usage]
33 |         try super.encode(to: encoder)
34 |     }
[1104/1280] Compiling BoxSdkGen AiStudioAgentSpreadsheetToolResponse.swift
/host/spi-builder-workspace/BoxSdkGen/Sources/Schemas/AiStudioAgentSpreadsheetTool/AiStudioAgentSpreadsheetTool.swift:32:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
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 [#no-usage]
33 |         try super.encode(to: encoder)
34 |     }
[1105/1280] Compiling BoxSdkGen AiStudioAgentTextGen.swift
/host/spi-builder-workspace/BoxSdkGen/Sources/Schemas/AiStudioAgentSpreadsheetTool/AiStudioAgentSpreadsheetTool.swift:32:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
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 [#no-usage]
33 |         try super.encode(to: encoder)
34 |     }
[1106/1304] Compiling BoxSdkGen CompletionRuleVariableTypeField.swift
/host/spi-builder-workspace/BoxSdkGen/Sources/Schemas/ConflictError/ConflictError.swift:40:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
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 [#no-usage]
41 |         try super.encode(to: encoder)
42 |     }
[1107/1304] Compiling BoxSdkGen CompletionRuleVariableVariableTypeField.swift
/host/spi-builder-workspace/BoxSdkGen/Sources/Schemas/ConflictError/ConflictError.swift:40:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
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 [#no-usage]
41 |         try super.encode(to: encoder)
42 |     }
[1108/1304] Compiling BoxSdkGen CompletionRuleVariableVariableValueField.swift
/host/spi-builder-workspace/BoxSdkGen/Sources/Schemas/ConflictError/ConflictError.swift:40:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
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 [#no-usage]
41 |         try super.encode(to: encoder)
42 |     }
[1109/1304] Compiling BoxSdkGen ConflictError.swift
/host/spi-builder-workspace/BoxSdkGen/Sources/Schemas/ConflictError/ConflictError.swift:40:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
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 [#no-usage]
41 |         try super.encode(to: encoder)
42 |     }
[1110/1304] Compiling BoxSdkGen ConflictErrorContextInfoField.swift
/host/spi-builder-workspace/BoxSdkGen/Sources/Schemas/ConflictError/ConflictError.swift:40:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
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 [#no-usage]
41 |         try super.encode(to: encoder)
42 |     }
[1111/1304] Compiling BoxSdkGen CreateAiAgent.swift
/host/spi-builder-workspace/BoxSdkGen/Sources/Schemas/ConflictError/ConflictError.swift:40:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
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 [#no-usage]
41 |         try super.encode(to: encoder)
42 |     }
[1112/1304] Compiling BoxSdkGen CreateAiAgentTypeField.swift
/host/spi-builder-workspace/BoxSdkGen/Sources/Schemas/ConflictError/ConflictError.swift:40:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
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 [#no-usage]
41 |         try super.encode(to: encoder)
42 |     }
[1113/1304] Compiling BoxSdkGen DevicePinner.swift
/host/spi-builder-workspace/BoxSdkGen/Sources/Schemas/ConflictError/ConflictError.swift:40:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
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 [#no-usage]
41 |         try super.encode(to: encoder)
42 |     }
[1114/1304] Compiling BoxSdkGen DevicePinnerTypeField.swift
/host/spi-builder-workspace/BoxSdkGen/Sources/Schemas/ConflictError/ConflictError.swift:40:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
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 [#no-usage]
41 |         try super.encode(to: encoder)
42 |     }
[1115/1304] Compiling BoxSdkGen DevicePinners.swift
/host/spi-builder-workspace/BoxSdkGen/Sources/Schemas/ConflictError/ConflictError.swift:40:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
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 [#no-usage]
41 |         try super.encode(to: encoder)
42 |     }
[1116/1304] Compiling BoxSdkGen DevicePinnersOrderByField.swift
/host/spi-builder-workspace/BoxSdkGen/Sources/Schemas/ConflictError/ConflictError.swift:40:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
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 [#no-usage]
41 |         try super.encode(to: encoder)
42 |     }
[1117/1304] Compiling BoxSdkGen DevicePinnersOrderDirectionField.swift
/host/spi-builder-workspace/BoxSdkGen/Sources/Schemas/ConflictError/ConflictError.swift:40:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
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 [#no-usage]
41 |         try super.encode(to: encoder)
42 |     }
[1118/1304] Compiling BoxSdkGen DevicePinnersOrderField.swift
/host/spi-builder-workspace/BoxSdkGen/Sources/Schemas/ConflictError/ConflictError.swift:40:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
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 [#no-usage]
41 |         try super.encode(to: encoder)
42 |     }
[1119/1304] Compiling BoxSdkGen EmailAlias.swift
/host/spi-builder-workspace/BoxSdkGen/Sources/Schemas/ConflictError/ConflictError.swift:40:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
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 [#no-usage]
41 |         try super.encode(to: encoder)
42 |     }
[1120/1304] Compiling BoxSdkGen EmailAliasTypeField.swift
/host/spi-builder-workspace/BoxSdkGen/Sources/Schemas/ConflictError/ConflictError.swift:40:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
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 [#no-usage]
41 |         try super.encode(to: encoder)
42 |     }
[1121/1304] Compiling BoxSdkGen EmailAliases.swift
/host/spi-builder-workspace/BoxSdkGen/Sources/Schemas/ConflictError/ConflictError.swift:40:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
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 [#no-usage]
41 |         try super.encode(to: encoder)
42 |     }
[1122/1304] Compiling BoxSdkGen EnterpriseBase.swift
/host/spi-builder-workspace/BoxSdkGen/Sources/Schemas/ConflictError/ConflictError.swift:40:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
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 [#no-usage]
41 |         try super.encode(to: encoder)
42 |     }
[1123/1304] Compiling BoxSdkGen EnterpriseBaseTypeField.swift
/host/spi-builder-workspace/BoxSdkGen/Sources/Schemas/ConflictError/ConflictError.swift:40:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
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 [#no-usage]
41 |         try super.encode(to: encoder)
42 |     }
[1124/1304] Compiling BoxSdkGen Event.swift
/host/spi-builder-workspace/BoxSdkGen/Sources/Schemas/ConflictError/ConflictError.swift:40:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
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 [#no-usage]
41 |         try super.encode(to: encoder)
42 |     }
[1125/1304] Compiling BoxSdkGen EventEventTypeField.swift
/host/spi-builder-workspace/BoxSdkGen/Sources/Schemas/ConflictError/ConflictError.swift:40:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
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 [#no-usage]
41 |         try super.encode(to: encoder)
42 |     }
[1126/1304] Compiling BoxSdkGen EventSource.swift
/host/spi-builder-workspace/BoxSdkGen/Sources/Schemas/ConflictError/ConflictError.swift:40:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
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 [#no-usage]
41 |         try super.encode(to: encoder)
42 |     }
[1127/1304] Compiling BoxSdkGen EventSourceClassificationField.swift
/host/spi-builder-workspace/BoxSdkGen/Sources/Schemas/ConflictError/ConflictError.swift:40:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
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 [#no-usage]
41 |         try super.encode(to: encoder)
42 |     }
[1128/1304] Compiling BoxSdkGen EventSourceItemTypeField.swift
/host/spi-builder-workspace/BoxSdkGen/Sources/Schemas/ConflictError/ConflictError.swift:40:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
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 [#no-usage]
41 |         try super.encode(to: encoder)
42 |     }
[1129/1304] Compiling BoxSdkGen EventSourceResource.swift
/host/spi-builder-workspace/BoxSdkGen/Sources/Schemas/ConflictError/ConflictError.swift:40:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
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 [#no-usage]
41 |         try super.encode(to: encoder)
42 |     }
[1130/1304] Compiling BoxSdkGen Events.swift
/host/spi-builder-workspace/BoxSdkGen/Sources/Schemas/ConflictError/ConflictError.swift:40:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
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 [#no-usage]
41 |         try super.encode(to: encoder)
42 |     }
[1131/1328] Compiling BoxSdkGen EventsNextStreamPositionField.swift
/host/spi-builder-workspace/BoxSdkGen/Sources/Schemas/FileConflict/FileConflict.swift:45:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
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 [#no-usage]
46 |         try super.encode(to: encoder)
47 |     }
[1132/1328] Compiling BoxSdkGen File.swift
/host/spi-builder-workspace/BoxSdkGen/Sources/Schemas/FileConflict/FileConflict.swift:45:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
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 [#no-usage]
46 |         try super.encode(to: encoder)
47 |     }
[1133/1328] Compiling BoxSdkGen FileItemStatusField.swift
/host/spi-builder-workspace/BoxSdkGen/Sources/Schemas/FileConflict/FileConflict.swift:45:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
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 [#no-usage]
46 |         try super.encode(to: encoder)
47 |     }
[1134/1328] Compiling BoxSdkGen FilePathCollectionField.swift
/host/spi-builder-workspace/BoxSdkGen/Sources/Schemas/FileConflict/FileConflict.swift:45:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
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 [#no-usage]
46 |         try super.encode(to: encoder)
47 |     }
[1135/1328] Compiling BoxSdkGen FileSharedLinkAccessField.swift
/host/spi-builder-workspace/BoxSdkGen/Sources/Schemas/FileConflict/FileConflict.swift:45:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
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 [#no-usage]
46 |         try super.encode(to: encoder)
47 |     }
[1136/1328] Compiling BoxSdkGen FileSharedLinkEffectiveAccessField.swift
/host/spi-builder-workspace/BoxSdkGen/Sources/Schemas/FileConflict/FileConflict.swift:45:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
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 [#no-usage]
46 |         try super.encode(to: encoder)
47 |     }
[1137/1328] Compiling BoxSdkGen FileSharedLinkEffectivePermissionField.swift
/host/spi-builder-workspace/BoxSdkGen/Sources/Schemas/FileConflict/FileConflict.swift:45:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
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 [#no-usage]
46 |         try super.encode(to: encoder)
47 |     }
[1138/1328] Compiling BoxSdkGen FileSharedLinkField.swift
/host/spi-builder-workspace/BoxSdkGen/Sources/Schemas/FileConflict/FileConflict.swift:45:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
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 [#no-usage]
46 |         try super.encode(to: encoder)
47 |     }
[1139/1328] Compiling BoxSdkGen FileSharedLinkPermissionsField.swift
/host/spi-builder-workspace/BoxSdkGen/Sources/Schemas/FileConflict/FileConflict.swift:45:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
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 [#no-usage]
46 |         try super.encode(to: encoder)
47 |     }
[1140/1328] Compiling BoxSdkGen FileBase.swift
/host/spi-builder-workspace/BoxSdkGen/Sources/Schemas/FileConflict/FileConflict.swift:45:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
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 [#no-usage]
46 |         try super.encode(to: encoder)
47 |     }
[1141/1328] Compiling BoxSdkGen FileBaseTypeField.swift
/host/spi-builder-workspace/BoxSdkGen/Sources/Schemas/FileConflict/FileConflict.swift:45:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
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 [#no-usage]
46 |         try super.encode(to: encoder)
47 |     }
[1142/1328] Compiling BoxSdkGen FileConflict.swift
/host/spi-builder-workspace/BoxSdkGen/Sources/Schemas/FileConflict/FileConflict.swift:45:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
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 [#no-usage]
46 |         try super.encode(to: encoder)
47 |     }
[1143/1328] Compiling BoxSdkGen FileFull.swift
/host/spi-builder-workspace/BoxSdkGen/Sources/Schemas/FileConflict/FileConflict.swift:45:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
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 [#no-usage]
46 |         try super.encode(to: encoder)
47 |     }
[1144/1328] Compiling BoxSdkGen FileFullAllowedInviteeRolesField.swift
/host/spi-builder-workspace/BoxSdkGen/Sources/Schemas/FileConflict/FileConflict.swift:45:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
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 [#no-usage]
46 |         try super.encode(to: encoder)
47 |     }
[1145/1328] Compiling BoxSdkGen FileFullClassificationField.swift
/host/spi-builder-workspace/BoxSdkGen/Sources/Schemas/FileConflict/FileConflict.swift:45:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
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 [#no-usage]
46 |         try super.encode(to: encoder)
47 |     }
[1146/1328] Compiling BoxSdkGen FileFullExpiringEmbedLinkField.swift
/host/spi-builder-workspace/BoxSdkGen/Sources/Schemas/FileConflict/FileConflict.swift:45:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
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 [#no-usage]
46 |         try super.encode(to: encoder)
47 |     }
[1147/1328] Compiling BoxSdkGen FileFullExpiringEmbedLinkTokenTypeField.swift
/host/spi-builder-workspace/BoxSdkGen/Sources/Schemas/FileConflict/FileConflict.swift:45:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
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 [#no-usage]
46 |         try super.encode(to: encoder)
47 |     }
[1148/1328] Compiling BoxSdkGen FileFullLockAppTypeField.swift
/host/spi-builder-workspace/BoxSdkGen/Sources/Schemas/FileConflict/FileConflict.swift:45:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
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 [#no-usage]
46 |         try super.encode(to: encoder)
47 |     }
[1149/1328] Compiling BoxSdkGen FileFullLockField.swift
/host/spi-builder-workspace/BoxSdkGen/Sources/Schemas/FileConflict/FileConflict.swift:45:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
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 [#no-usage]
46 |         try super.encode(to: encoder)
47 |     }
[1150/1328] Compiling BoxSdkGen FileFullLockTypeField.swift
/host/spi-builder-workspace/BoxSdkGen/Sources/Schemas/FileConflict/FileConflict.swift:45:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
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 [#no-usage]
46 |         try super.encode(to: encoder)
47 |     }
[1151/1328] Compiling BoxSdkGen FileFullMetadataField.swift
/host/spi-builder-workspace/BoxSdkGen/Sources/Schemas/FileConflict/FileConflict.swift:45:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
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 [#no-usage]
46 |         try super.encode(to: encoder)
47 |     }
[1152/1328] Compiling BoxSdkGen FileFullPermissionsField.swift
/host/spi-builder-workspace/BoxSdkGen/Sources/Schemas/FileConflict/FileConflict.swift:45:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
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 [#no-usage]
46 |         try super.encode(to: encoder)
47 |     }
[1153/1328] Compiling BoxSdkGen FileFullRepresentationsEntriesContentField.swift
/host/spi-builder-workspace/BoxSdkGen/Sources/Schemas/FileConflict/FileConflict.swift:45:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
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 [#no-usage]
46 |         try super.encode(to: encoder)
47 |     }
[1154/1328] Compiling BoxSdkGen FileFullRepresentationsEntriesField.swift
/host/spi-builder-workspace/BoxSdkGen/Sources/Schemas/FileConflict/FileConflict.swift:45:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
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 [#no-usage]
46 |         try super.encode(to: encoder)
47 |     }
[1155/1328] Compiling BoxSdkGen FileFullRepresentationsEntriesInfoField.swift
/host/spi-builder-workspace/BoxSdkGen/Sources/Schemas/FileConflict/FileConflict.swift:45:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
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 [#no-usage]
46 |         try super.encode(to: encoder)
47 |     }
[1156/1352] Compiling BoxSdkGen FolderFullSyncStateField.swift
[1157/1352] Compiling BoxSdkGen FolderFullWatermarkInfoField.swift
[1158/1352] Compiling BoxSdkGen FolderLock.swift
[1159/1352] Compiling BoxSdkGen FolderLockLockedOperationsField.swift
[1160/1352] Compiling BoxSdkGen FolderLocks.swift
[1161/1352] Compiling BoxSdkGen FolderMini.swift
[1162/1352] Compiling BoxSdkGen FolderReference.swift
[1163/1352] Compiling BoxSdkGen FolderReferenceTypeField.swift
[1164/1352] Compiling BoxSdkGen GenericSource.swift
[1165/1352] Compiling BoxSdkGen Group.swift
[1166/1352] Compiling BoxSdkGen GroupBase.swift
[1167/1352] Compiling BoxSdkGen GroupBaseTypeField.swift
[1168/1352] Compiling BoxSdkGen GroupFull.swift
[1169/1352] Compiling BoxSdkGen GroupFullInvitabilityLevelField.swift
[1170/1352] Compiling BoxSdkGen GroupFullMemberViewabilityLevelField.swift
[1171/1352] Compiling BoxSdkGen GroupFullPermissionsField.swift
[1172/1352] Compiling BoxSdkGen GroupMembership.swift
[1173/1352] Compiling BoxSdkGen GroupMembershipRoleField.swift
[1174/1352] Compiling BoxSdkGen GroupMembershipTypeField.swift
[1175/1352] Compiling BoxSdkGen GroupMemberships.swift
[1176/1352] Compiling BoxSdkGen GroupMembershipsOrderDirectionField.swift
[1177/1352] Compiling BoxSdkGen GroupMembershipsOrderField.swift
[1178/1352] Compiling BoxSdkGen GroupMini.swift
[1179/1352] Compiling BoxSdkGen GroupMiniGroupTypeField.swift
[1180/1352] Compiling BoxSdkGen Groups.swift
[1181/1376] Compiling BoxSdkGen GroupsOrderDirectionField.swift
[1182/1376] Compiling BoxSdkGen GroupsOrderField.swift
[1183/1376] Compiling BoxSdkGen IntegrationMapping.swift
[1184/1376] Compiling BoxSdkGen IntegrationMappingIntegrationTypeField.swift
[1185/1376] Compiling BoxSdkGen IntegrationMappingBase.swift
[1186/1376] Compiling BoxSdkGen IntegrationMappingBaseTypeField.swift
[1187/1376] Compiling BoxSdkGen IntegrationMappingBoxItemSlack.swift
[1188/1376] Compiling BoxSdkGen IntegrationMappingBoxItemSlackTypeField.swift
[1189/1376] Compiling BoxSdkGen IntegrationMappingPartnerItemSlack.swift
[1190/1376] Compiling BoxSdkGen IntegrationMappingPartnerItemSlackTypeField.swift
[1191/1376] Compiling BoxSdkGen IntegrationMappingPartnerItemTeams.swift
[1192/1376] Compiling BoxSdkGen IntegrationMappingPartnerItemTeamsTypeField.swift
[1193/1376] Compiling BoxSdkGen IntegrationMappingPartnerItemTeamsCreateRequest.swift
[1194/1376] Compiling BoxSdkGen IntegrationMappingPartnerItemTeamsCreateRequestTypeField.swift
[1195/1376] Compiling BoxSdkGen IntegrationMappingSlackCreateRequest.swift
[1196/1376] Compiling BoxSdkGen IntegrationMappingSlackOptions.swift
[1197/1376] Compiling BoxSdkGen IntegrationMappingTeams.swift
[1198/1376] Compiling BoxSdkGen IntegrationMappingTeamsIntegrationTypeField.swift
[1199/1376] Compiling BoxSdkGen IntegrationMappingTeamsCreateRequest.swift
[1200/1376] Compiling BoxSdkGen IntegrationMappings.swift
[1201/1376] Compiling BoxSdkGen IntegrationMappingsTeams.swift
[1202/1376] Compiling BoxSdkGen Invite.swift
[1203/1376] Compiling BoxSdkGen InviteInvitedToField.swift
[1204/1376] Compiling BoxSdkGen InviteInvitedToTypeField.swift
[1205/1376] Compiling BoxSdkGen InviteTypeField.swift
[1206/1400] Compiling BoxSdkGen FileFullRepresentationsEntriesPropertiesField.swift
[1207/1400] Compiling BoxSdkGen FileFullRepresentationsEntriesStatusField.swift
[1208/1400] Compiling BoxSdkGen FileFullRepresentationsEntriesStatusStateField.swift
[1209/1400] Compiling BoxSdkGen FileFullRepresentationsField.swift
[1210/1400] Compiling BoxSdkGen FileFullSharedLinkPermissionOptionsField.swift
[1211/1400] Compiling BoxSdkGen FileFullWatermarkInfoField.swift
[1212/1400] Compiling BoxSdkGen FileMini.swift
[1213/1400] Compiling BoxSdkGen FileRequest.swift
[1214/1400] Compiling BoxSdkGen FileRequestStatusField.swift
[1215/1400] Compiling BoxSdkGen FileRequestTypeField.swift
[1216/1400] Compiling BoxSdkGen FileRequestCopyRequest.swift
[1217/1400] Compiling BoxSdkGen FileRequestCopyRequestFolderField.swift
[1218/1400] Compiling BoxSdkGen FileRequestCopyRequestFolderTypeField.swift
[1219/1400] Compiling BoxSdkGen FileRequestUpdateRequest.swift
[1220/1400] Compiling BoxSdkGen FileRequestUpdateRequestStatusField.swift
[1221/1400] Compiling BoxSdkGen FileVersion.swift
[1222/1400] Compiling BoxSdkGen FileVersionBase.swift
[1223/1400] Compiling BoxSdkGen FileVersionBaseTypeField.swift
[1224/1400] Compiling BoxSdkGen FileVersionFull.swift
[1225/1400] Compiling BoxSdkGen FileVersionLegalHold.swift
[1226/1400] Compiling BoxSdkGen FileVersionLegalHoldTypeField.swift
[1227/1400] Compiling BoxSdkGen FileVersionLegalHolds.swift
[1228/1400] Compiling BoxSdkGen FileVersionMini.swift
[1229/1400] Compiling BoxSdkGen FileVersionRetention.swift
[1230/1400] Compiling BoxSdkGen FileVersionRetentionTypeField.swift
[1231/1424] Compiling BoxSdkGen LegalHoldPolicyAssignments.swift
/host/spi-builder-workspace/BoxSdkGen/Sources/Schemas/Metadata/Metadata.swift:40:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
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 [#no-usage]
41 |         try super.encode(to: encoder)
42 |     }
[1232/1424] Compiling BoxSdkGen LegalHoldPolicyMini.swift
/host/spi-builder-workspace/BoxSdkGen/Sources/Schemas/Metadata/Metadata.swift:40:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
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 [#no-usage]
41 |         try super.encode(to: encoder)
42 |     }
[1233/1424] Compiling BoxSdkGen LegalHoldPolicyMiniTypeField.swift
/host/spi-builder-workspace/BoxSdkGen/Sources/Schemas/Metadata/Metadata.swift:40:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
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 [#no-usage]
41 |         try super.encode(to: encoder)
42 |     }
[1234/1424] Compiling BoxSdkGen Metadata.swift
/host/spi-builder-workspace/BoxSdkGen/Sources/Schemas/Metadata/Metadata.swift:40:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
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 [#no-usage]
41 |         try super.encode(to: encoder)
42 |     }
[1235/1424] Compiling BoxSdkGen MetadataBase.swift
/host/spi-builder-workspace/BoxSdkGen/Sources/Schemas/Metadata/Metadata.swift:40:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
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 [#no-usage]
41 |         try super.encode(to: encoder)
42 |     }
[1236/1424] Compiling BoxSdkGen MetadataCascadePolicies.swift
/host/spi-builder-workspace/BoxSdkGen/Sources/Schemas/Metadata/Metadata.swift:40:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
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 [#no-usage]
41 |         try super.encode(to: encoder)
42 |     }
[1237/1424] Compiling BoxSdkGen MetadataCascadePolicy.swift
/host/spi-builder-workspace/BoxSdkGen/Sources/Schemas/Metadata/Metadata.swift:40:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
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 [#no-usage]
41 |         try super.encode(to: encoder)
42 |     }
[1238/1424] Compiling BoxSdkGen MetadataCascadePolicyOwnerEnterpriseField.swift
/host/spi-builder-workspace/BoxSdkGen/Sources/Schemas/Metadata/Metadata.swift:40:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
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 [#no-usage]
41 |         try super.encode(to: encoder)
42 |     }
[1239/1424] Compiling BoxSdkGen MetadataCascadePolicyOwnerEnterpriseTypeField.swift
/host/spi-builder-workspace/BoxSdkGen/Sources/Schemas/Metadata/Metadata.swift:40:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
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 [#no-usage]
41 |         try super.encode(to: encoder)
42 |     }
[1240/1424] Compiling BoxSdkGen MetadataCascadePolicyParentField.swift
/host/spi-builder-workspace/BoxSdkGen/Sources/Schemas/Metadata/Metadata.swift:40:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
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 [#no-usage]
41 |         try super.encode(to: encoder)
42 |     }
[1241/1424] Compiling BoxSdkGen MetadataCascadePolicyParentTypeField.swift
/host/spi-builder-workspace/BoxSdkGen/Sources/Schemas/Metadata/Metadata.swift:40:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
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 [#no-usage]
41 |         try super.encode(to: encoder)
42 |     }
[1242/1424] Compiling BoxSdkGen MetadataCascadePolicyTypeField.swift
/host/spi-builder-workspace/BoxSdkGen/Sources/Schemas/Metadata/Metadata.swift:40:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
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 [#no-usage]
41 |         try super.encode(to: encoder)
42 |     }
[1243/1424] Compiling BoxSdkGen MetadataError.swift
/host/spi-builder-workspace/BoxSdkGen/Sources/Schemas/Metadata/Metadata.swift:40:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
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 [#no-usage]
41 |         try super.encode(to: encoder)
42 |     }
[1244/1424] Compiling BoxSdkGen MetadataFieldFilterDateRange.swift
/host/spi-builder-workspace/BoxSdkGen/Sources/Schemas/Metadata/Metadata.swift:40:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
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 [#no-usage]
41 |         try super.encode(to: encoder)
42 |     }
[1245/1424] Compiling BoxSdkGen MetadataFieldFilterFloatRange.swift
/host/spi-builder-workspace/BoxSdkGen/Sources/Schemas/Metadata/Metadata.swift:40:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
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 [#no-usage]
41 |         try super.encode(to: encoder)
42 |     }
[1246/1424] Compiling BoxSdkGen MetadataFilter.swift
/host/spi-builder-workspace/BoxSdkGen/Sources/Schemas/Metadata/Metadata.swift:40:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
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 [#no-usage]
41 |         try super.encode(to: encoder)
42 |     }
[1247/1424] Compiling BoxSdkGen MetadataFilterScopeField.swift
/host/spi-builder-workspace/BoxSdkGen/Sources/Schemas/Metadata/Metadata.swift:40:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
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 [#no-usage]
41 |         try super.encode(to: encoder)
42 |     }
[1248/1424] Compiling BoxSdkGen MetadataFilterValue.swift
/host/spi-builder-workspace/BoxSdkGen/Sources/Schemas/Metadata/Metadata.swift:40:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
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 [#no-usage]
41 |         try super.encode(to: encoder)
42 |     }
[1249/1424] Compiling BoxSdkGen MetadataFull.swift
/host/spi-builder-workspace/BoxSdkGen/Sources/Schemas/Metadata/Metadata.swift:40:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
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 [#no-usage]
41 |         try super.encode(to: encoder)
42 |     }
[1250/1424] Compiling BoxSdkGen MetadataInstanceValue.swift
/host/spi-builder-workspace/BoxSdkGen/Sources/Schemas/Metadata/Metadata.swift:40:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
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 [#no-usage]
41 |         try super.encode(to: encoder)
42 |     }
[1251/1424] Compiling BoxSdkGen MetadataQuery.swift
/host/spi-builder-workspace/BoxSdkGen/Sources/Schemas/Metadata/Metadata.swift:40:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
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 [#no-usage]
41 |         try super.encode(to: encoder)
42 |     }
[1252/1424] Compiling BoxSdkGen MetadataQueryOrderByDirectionField.swift
/host/spi-builder-workspace/BoxSdkGen/Sources/Schemas/Metadata/Metadata.swift:40:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
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 [#no-usage]
41 |         try super.encode(to: encoder)
42 |     }
[1253/1424] Compiling BoxSdkGen MetadataQueryOrderByField.swift
/host/spi-builder-workspace/BoxSdkGen/Sources/Schemas/Metadata/Metadata.swift:40:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
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 [#no-usage]
41 |         try super.encode(to: encoder)
42 |     }
[1254/1424] Compiling BoxSdkGen MetadataQueryResultItem.swift
/host/spi-builder-workspace/BoxSdkGen/Sources/Schemas/Metadata/Metadata.swift:40:13: warning: initialization of variable 'container' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
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 [#no-usage]
41 |         try super.encode(to: encoder)
42 |     }
[1255/1448] Compiling BoxSdkGen Item.swift
[1256/1448] Compiling BoxSdkGen Items.swift
[1257/1448] Compiling BoxSdkGen ItemsOrderDirectionField.swift
[1258/1448] Compiling BoxSdkGen ItemsOrderField.swift
[1259/1448] Compiling BoxSdkGen ItemsOffsetPaginated.swift
[1260/1448] Compiling BoxSdkGen ItemsOffsetPaginatedOrderDirectionField.swift
[1261/1448] Compiling BoxSdkGen ItemsOffsetPaginatedOrderField.swift
[1262/1448] Compiling BoxSdkGen KeywordSkillCard.swift
[1263/1448] Compiling BoxSdkGen KeywordSkillCardEntriesField.swift
[1264/1448] Compiling BoxSdkGen KeywordSkillCardInvocationField.swift
[1265/1448] Compiling BoxSdkGen KeywordSkillCardInvocationTypeField.swift
[1266/1448] Compiling BoxSdkGen KeywordSkillCardSkillCardTitleField.swift
[1267/1448] Compiling BoxSdkGen KeywordSkillCardSkillCardTypeField.swift
[1268/1448] Compiling BoxSdkGen KeywordSkillCardSkillField.swift
[1269/1448] Compiling BoxSdkGen KeywordSkillCardSkillTypeField.swift
[1270/1448] Compiling BoxSdkGen KeywordSkillCardTypeField.swift
[1271/1448] Compiling BoxSdkGen LegalHoldPolicies.swift
[1272/1448] Compiling BoxSdkGen LegalHoldPolicy.swift
[1273/1448] Compiling BoxSdkGen LegalHoldPolicyAssignmentCountsField.swift
[1274/1448] Compiling BoxSdkGen LegalHoldPolicyStatusField.swift
[1275/1448] Compiling BoxSdkGen LegalHoldPolicyAssignedItem.swift
[1276/1448] Compiling BoxSdkGen LegalHoldPolicyAssignedItemTypeField.swift
[1277/1448] Compiling BoxSdkGen LegalHoldPolicyAssignment.swift
[1278/1448] Compiling BoxSdkGen LegalHoldPolicyAssignmentBase.swift
[1279/1448] Compiling BoxSdkGen LegalHoldPolicyAssignmentBaseTypeField.swift
[1280/1472] Compiling BoxSdkGen FileVersionRetentions.swift
[1281/1472] Compiling BoxSdkGen FileVersions.swift
[1282/1472] Compiling BoxSdkGen FileVersionsOrderDirectionField.swift
[1283/1472] Compiling BoxSdkGen FileVersionsOrderField.swift
[1284/1472] Compiling BoxSdkGen Files.swift
[1285/1472] Compiling BoxSdkGen FilesOnHold.swift
[1286/1472] Compiling BoxSdkGen FilesUnderRetention.swift
[1287/1472] Compiling BoxSdkGen Folder.swift
[1288/1472] Compiling BoxSdkGen FolderFolderUploadEmailAccessField.swift
[1289/1472] Compiling BoxSdkGen FolderFolderUploadEmailField.swift
[1290/1472] Compiling BoxSdkGen FolderItemStatusField.swift
[1291/1472] Compiling BoxSdkGen FolderPathCollectionField.swift
[1292/1472] Compiling BoxSdkGen FolderSharedLinkAccessField.swift
[1293/1472] Compiling BoxSdkGen FolderSharedLinkEffectiveAccessField.swift
[1294/1472] Compiling BoxSdkGen FolderSharedLinkEffectivePermissionField.swift
[1295/1472] Compiling BoxSdkGen FolderSharedLinkField.swift
[1296/1472] Compiling BoxSdkGen FolderSharedLinkPermissionsField.swift
[1297/1472] Compiling BoxSdkGen FolderBase.swift
[1298/1472] Compiling BoxSdkGen FolderBaseTypeField.swift
[1299/1472] Compiling BoxSdkGen FolderFull.swift
[1300/1472] Compiling BoxSdkGen FolderFullAllowedInviteeRolesField.swift
[1301/1472] Compiling BoxSdkGen FolderFullAllowedSharedLinkAccessLevelsField.swift
[1302/1472] Compiling BoxSdkGen FolderFullClassificationField.swift
[1303/1472] Compiling BoxSdkGen FolderFullMetadataField.swift
[1304/1472] Compiling BoxSdkGen FolderFullPermissionsField.swift
[1305/1496] Compiling BoxSdkGen PostOAuth2TokenRefreshAccessTokenGrantTypeField.swift
[1306/1496] Compiling BoxSdkGen RealtimeServer.swift
[1307/1496] Compiling BoxSdkGen RealtimeServers.swift
[1308/1496] Compiling BoxSdkGen RecentItem.swift
[1309/1496] Compiling BoxSdkGen RecentItemInteractionTypeField.swift
[1310/1496] Compiling BoxSdkGen RecentItemResource.swift
[1311/1496] Compiling BoxSdkGen RecentItems.swift
[1312/1496] Compiling BoxSdkGen Resource.swift
[1313/1496] Compiling BoxSdkGen ResourceScope.swift
[1314/1496] Compiling BoxSdkGen ResourceScopeScopeField.swift
[1315/1496] Compiling BoxSdkGen RetentionPolicies.swift
[1316/1496] Compiling BoxSdkGen RetentionPolicy.swift
[1317/1496] Compiling BoxSdkGen RetentionPolicyAssignmentCountsField.swift
[1318/1496] Compiling BoxSdkGen RetentionPolicyPolicyTypeField.swift
[1319/1496] Compiling BoxSdkGen RetentionPolicyRetentionTypeField.swift
[1320/1496] Compiling BoxSdkGen RetentionPolicyStatusField.swift
[1321/1496] Compiling BoxSdkGen RetentionPolicyAssignment.swift
[1322/1496] Compiling BoxSdkGen RetentionPolicyAssignmentAssignedToField.swift
[1323/1496] Compiling BoxSdkGen RetentionPolicyAssignmentAssignedToTypeField.swift
[1324/1496] Compiling BoxSdkGen RetentionPolicyAssignmentFilterFieldsField.swift
[1325/1496] Compiling BoxSdkGen RetentionPolicyAssignmentTypeField.swift
[1326/1496] Compiling BoxSdkGen RetentionPolicyAssignments.swift
[1327/1496] Compiling BoxSdkGen RetentionPolicyBase.swift
[1328/1496] Compiling BoxSdkGen RetentionPolicyBaseTypeField.swift
[1329/1520] Compiling BoxSdkGen MetadataQueryResults.swift
[1330/1520] Compiling BoxSdkGen MetadataTaxonomies.swift
[1331/1520] Compiling BoxSdkGen MetadataTaxonomy.swift
[1332/1520] Compiling BoxSdkGen MetadataTaxonomyAncestor.swift
[1333/1520] Compiling BoxSdkGen MetadataTaxonomyLevel.swift
[1334/1520] Compiling BoxSdkGen MetadataTaxonomyLevels.swift
[1335/1520] Compiling BoxSdkGen MetadataTaxonomyNode.swift
[1336/1520] Compiling BoxSdkGen MetadataTaxonomyNodes.swift
[1337/1520] Compiling BoxSdkGen MetadataTemplate.swift
[1338/1520] Compiling BoxSdkGen MetadataTemplateFieldsField.swift
[1339/1520] Compiling BoxSdkGen MetadataTemplateFieldsOptionsField.swift
[1340/1520] Compiling BoxSdkGen MetadataTemplateFieldsTypeField.swift
[1341/1520] Compiling BoxSdkGen MetadataTemplateTypeField.swift
[1342/1520] Compiling BoxSdkGen MetadataTemplates.swift
[1343/1520] Compiling BoxSdkGen Metadatas.swift
[1344/1520] Compiling BoxSdkGen OAuth2Error.swift
[1345/1520] Compiling BoxSdkGen Outcome.swift
[1346/1520] Compiling BoxSdkGen PostOAuth2Revoke.swift
[1347/1520] Compiling BoxSdkGen PostOAuth2Token.swift
[1348/1520] Compiling BoxSdkGen PostOAuth2TokenActorTokenTypeField.swift
[1349/1520] Compiling BoxSdkGen PostOAuth2TokenBoxSubjectTypeField.swift
[1350/1520] Compiling BoxSdkGen PostOAuth2TokenGrantTypeField.swift
[1351/1520] Compiling BoxSdkGen PostOAuth2TokenSubjectTokenTypeField.swift
[1352/1520] Compiling BoxSdkGen PostOAuth2TokenRefreshAccessToken.swift
[1353/1544] Compiling BoxSdkGen RetentionPolicyMaxExtensionLengthRequest.swift
[1354/1544] Compiling BoxSdkGen RetentionPolicyMaxExtensionLengthRequestEnum.swift
[1355/1544] Compiling BoxSdkGen RetentionPolicyMaxExtensionLengthResponse.swift
[1356/1544] Compiling BoxSdkGen RetentionPolicyMaxExtensionLengthResponseEnum.swift
[1357/1544] Compiling BoxSdkGen RetentionPolicyMini.swift
[1358/1544] Compiling BoxSdkGen RetentionPolicyMiniDispositionActionField.swift
[1359/1544] Compiling BoxSdkGen RoleVariable.swift
[1360/1544] Compiling BoxSdkGen RoleVariableTypeField.swift
[1361/1544] Compiling BoxSdkGen RoleVariableVariableTypeField.swift
[1362/1544] Compiling BoxSdkGen RoleVariableVariableValueField.swift
[1363/1544] Compiling BoxSdkGen SearchResultItem.swift
[1364/1544] Compiling BoxSdkGen SearchResultWithSharedLink.swift
[1365/1544] Compiling BoxSdkGen SearchResultWithSharedLinkItem.swift
[1366/1544] Compiling BoxSdkGen SearchResults.swift
[1367/1544] Compiling BoxSdkGen SearchResultsTypeField.swift
[1368/1544] Compiling BoxSdkGen SearchResultsResponse.swift
[1369/1544] Compiling BoxSdkGen SearchResultsWithSharedLinks.swift
[1370/1544] Compiling BoxSdkGen SearchResultsWithSharedLinksTypeField.swift
[1371/1544] Compiling BoxSdkGen SessionTerminationMessage.swift
[1372/1544] Compiling BoxSdkGen ShieldInformationBarrier.swift
[1373/1544] Compiling BoxSdkGen ShieldInformationBarrierStatusField.swift
[1374/1544] Compiling BoxSdkGen ShieldInformationBarrierTypeField.swift
[1375/1544] Compiling BoxSdkGen ShieldInformationBarrierBase.swift
[1376/1544] Compiling BoxSdkGen ShieldInformationBarrierBaseTypeField.swift
[1377/1568] Compiling BoxSdkGen ShieldInformationBarrierReference.swift
[1378/1568] Compiling BoxSdkGen ShieldInformationBarrierReport.swift
[1379/1568] Compiling BoxSdkGen ShieldInformationBarrierReportStatusField.swift
[1380/1568] Compiling BoxSdkGen ShieldInformationBarrierReportBase.swift
[1381/1568] Compiling BoxSdkGen ShieldInformationBarrierReportBaseTypeField.swift
[1382/1568] Compiling BoxSdkGen ShieldInformationBarrierReportDetails.swift
[1383/1568] Compiling BoxSdkGen ShieldInformationBarrierReportDetailsDetailsField.swift
[1384/1568] Compiling BoxSdkGen ShieldInformationBarrierReports.swift
[1385/1568] Compiling BoxSdkGen ShieldInformationBarrierSegment.swift
[1386/1568] Compiling BoxSdkGen ShieldInformationBarrierSegmentTypeField.swift
[1387/1568] Compiling BoxSdkGen ShieldInformationBarrierSegmentMember.swift
[1388/1568] Compiling BoxSdkGen ShieldInformationBarrierSegmentMemberShieldInformationBarrierSegmentField.swift
[1389/1568] Compiling BoxSdkGen ShieldInformationBarrierSegmentMemberShieldInformationBarrierSegmentTypeField.swift
[1390/1568] Compiling BoxSdkGen ShieldInformationBarrierSegmentMemberBase.swift
[1391/1568] Compiling BoxSdkGen ShieldInformationBarrierSegmentMemberBaseTypeField.swift
[1392/1568] Compiling BoxSdkGen ShieldInformationBarrierSegmentMemberMini.swift
[1393/1568] Compiling BoxSdkGen ShieldInformationBarrierSegmentMembers.swift
[1394/1568] Compiling BoxSdkGen ShieldInformationBarrierSegmentRestriction.swift
[1395/1568] Compiling BoxSdkGen ShieldInformationBarrierSegmentRestrictionBase.swift
[1396/1568] Compiling BoxSdkGen ShieldInformationBarrierSegmentRestrictionBaseTypeField.swift
[1397/1568] Compiling BoxSdkGen ShieldInformationBarrierSegmentRestrictionMini.swift
[1398/1568] Compiling BoxSdkGen ShieldInformationBarrierSegmentRestrictionMiniRestrictedSegmentField.swift
[1399/1568] Compiling BoxSdkGen ShieldInformationBarrierSegmentRestrictionMiniRestrictedSegmentTypeField.swift
[1400/1568] Compiling BoxSdkGen ShieldInformationBarrierSegmentRestrictionMiniShieldInformationBarrierSegmentField.swift
[1401/1592] Compiling BoxSdkGen SignRequestSignerInputDateAsiaValidation.swift
[1402/1592] Compiling BoxSdkGen SignRequestSignerInputDateAsiaValidationValidationTypeField.swift
[1403/1592] Compiling BoxSdkGen SignRequestSignerInputDateEuValidation.swift
[1404/1592] Compiling BoxSdkGen SignRequestSignerInputDateEuValidationValidationTypeField.swift
[1405/1592] Compiling BoxSdkGen SignRequestSignerInputDateIsoValidation.swift
[1406/1592] Compiling BoxSdkGen SignRequestSignerInputDateIsoValidationValidationTypeField.swift
[1407/1592] Compiling BoxSdkGen SignRequestSignerInputDateUsValidation.swift
[1408/1592] Compiling BoxSdkGen SignRequestSignerInputDateUsValidationValidationTypeField.swift
[1409/1592] Compiling BoxSdkGen SignRequestSignerInputEmailValidation.swift
[1410/1592] Compiling BoxSdkGen SignRequestSignerInputEmailValidationValidationTypeField.swift
[1411/1592] Compiling BoxSdkGen SignRequestSignerInputNumberWithCommaValidation.swift
[1412/1592] Compiling BoxSdkGen SignRequestSignerInputNumberWithCommaValidationValidationTypeField.swift
[1413/1592] Compiling BoxSdkGen SignRequestSignerInputNumberWithPeriodValidation.swift
[1414/1592] Compiling BoxSdkGen SignRequestSignerInputNumberWithPeriodValidationValidationTypeField.swift
[1415/1592] Compiling BoxSdkGen SignRequestSignerInputSsnValidation.swift
[1416/1592] Compiling BoxSdkGen SignRequestSignerInputSsnValidationValidationTypeField.swift
[1417/1592] Compiling BoxSdkGen SignRequestSignerInputValidation.swift
[1418/1592] Compiling BoxSdkGen SignRequestSignerInputZip4Validation.swift
[1419/1592] Compiling BoxSdkGen SignRequestSignerInputZip4ValidationValidationTypeField.swift
[1420/1592] Compiling BoxSdkGen SignRequestSignerInputZipValidation.swift
[1421/1592] Compiling BoxSdkGen SignRequestSignerInputZipValidationValidationTypeField.swift
[1422/1592] Compiling BoxSdkGen SignRequests.swift
[1423/1592] Compiling BoxSdkGen SignTemplate.swift
[1424/1592] Compiling BoxSdkGen SignTemplateAdditionalInfoField.swift
[1425/1616] Compiling BoxSdkGen SignTemplateAdditionalInfoNonEditableField.swift
[1426/1616] Compiling BoxSdkGen SignTemplateAdditionalInfoRequiredField.swift
[1427/1616] Compiling BoxSdkGen SignTemplateAdditionalInfoRequiredSignersField.swift
[1428/1616] Compiling BoxSdkGen SignTemplateCustomBrandingField.swift
[1429/1616] Compiling BoxSdkGen SignTemplateReadySignLinkField.swift
[1430/1616] Compiling BoxSdkGen SignTemplateTypeField.swift
[1431/1616] Compiling BoxSdkGen SignTemplates.swift
[1432/1616] Compiling BoxSdkGen SkillCard.swift
[1433/1616] Compiling BoxSdkGen SkillCardsMetadata.swift
[1434/1616] Compiling BoxSdkGen StatusSkillCard.swift
[1435/1616] Compiling BoxSdkGen StatusSkillCardInvocationField.swift
[1436/1616] Compiling BoxSdkGen StatusSkillCardInvocationTypeField.swift
[1437/1616] Compiling BoxSdkGen StatusSkillCardSkillCardTitleField.swift
[1438/1616] Compiling BoxSdkGen StatusSkillCardSkillCardTypeField.swift
[1439/1616] Compiling BoxSdkGen StatusSkillCardSkillField.swift
[1440/1616] Compiling BoxSdkGen StatusSkillCardSkillTypeField.swift
[1441/1616] Compiling BoxSdkGen StatusSkillCardStatusCodeField.swift
[1442/1616] Compiling BoxSdkGen StatusSkillCardStatusField.swift
[1443/1616] Compiling BoxSdkGen StatusSkillCardTypeField.swift
[1444/1616] Compiling BoxSdkGen StoragePolicies.swift
[1445/1616] Compiling BoxSdkGen StoragePolicy.swift
[1446/1616] Compiling BoxSdkGen StoragePolicyAssignment.swift
[1447/1616] Compiling BoxSdkGen StoragePolicyAssignmentAssignedToField.swift
[1448/1616] Compiling BoxSdkGen StoragePolicyAssignmentTypeField.swift
[1449/1640] Compiling BoxSdkGen ShieldInformationBarrierSegmentRestrictionMiniShieldInformationBarrierSegmentTypeField.swift
[1450/1640] Compiling BoxSdkGen ShieldInformationBarrierSegmentRestrictions.swift
[1451/1640] Compiling BoxSdkGen ShieldInformationBarrierSegments.swift
[1452/1640] Compiling BoxSdkGen ShieldInformationBarriers.swift
[1453/1640] Compiling BoxSdkGen SignRequest.swift
[1454/1640] Compiling BoxSdkGen SignRequestSignFilesField.swift
[1455/1640] Compiling BoxSdkGen SignRequestStatusField.swift
[1456/1640] Compiling BoxSdkGen SignRequestTypeField.swift
[1457/1640] Compiling BoxSdkGen SignRequestBase.swift
[1458/1640] Compiling BoxSdkGen SignRequestCancelRequest.swift
[1459/1640] Compiling BoxSdkGen SignRequestCreateRequest.swift
[1460/1640] Compiling BoxSdkGen SignRequestCreateRequestSignatureColorField.swift
[1461/1640] Compiling BoxSdkGen SignRequestCreateSigner.swift
[1462/1640] Compiling BoxSdkGen SignRequestCreateSignerRoleField.swift
[1463/1640] Compiling BoxSdkGen SignRequestPrefillTag.swift
[1464/1640] Compiling BoxSdkGen SignRequestSigner.swift
[1465/1640] Compiling BoxSdkGen SignRequestSignerSignerDecisionField.swift
[1466/1640] Compiling BoxSdkGen SignRequestSignerSignerDecisionTypeField.swift
[1467/1640] Compiling BoxSdkGen SignRequestSignerAttachment.swift
[1468/1640] Compiling BoxSdkGen SignRequestSignerInput.swift
[1469/1640] Compiling BoxSdkGen SignRequestSignerInputContentTypeField.swift
[1470/1640] Compiling BoxSdkGen SignRequestSignerInputTypeField.swift
[1471/1640] Compiling BoxSdkGen SignRequestSignerInputCustomValidation.swift
[1472/1640] Compiling BoxSdkGen SignRequestSignerInputCustomValidationValidationTypeField.swift
[1473/1664] Compiling BoxSdkGen StoragePolicyAssignments.swift
[1474/1664] Compiling BoxSdkGen StoragePolicyMini.swift
[1475/1664] Compiling BoxSdkGen StoragePolicyMiniTypeField.swift
[1476/1664] Compiling BoxSdkGen Task.swift
[1477/1664] Compiling BoxSdkGen TaskActionField.swift
[1478/1664] Compiling BoxSdkGen TaskCompletionRuleField.swift
[1479/1664] Compiling BoxSdkGen TaskTypeField.swift
[1480/1664] Compiling BoxSdkGen TaskAssignment.swift
[1481/1664] Compiling BoxSdkGen TaskAssignmentResolutionStateField.swift
[1482/1664] Compiling BoxSdkGen TaskAssignmentTypeField.swift
[1483/1664] Compiling BoxSdkGen TaskAssignments.swift
[1484/1664] Compiling BoxSdkGen Tasks.swift
[1485/1664] Compiling BoxSdkGen TemplateSigner.swift
[1486/1664] Compiling BoxSdkGen TemplateSignerRoleField.swift
[1487/1664] Compiling BoxSdkGen TemplateSignerInput.swift
[1488/1664] Compiling BoxSdkGen TemplateSignerInputContentTypeField.swift
[1489/1664] Compiling BoxSdkGen TemplateSignerInputCoordinatesField.swift
[1490/1664] Compiling BoxSdkGen TemplateSignerInputDimensionsField.swift
[1491/1664] Compiling BoxSdkGen TemplateSignerInputTypeField.swift
[1492/1664] Compiling BoxSdkGen TermsOfService.swift
[1493/1664] Compiling BoxSdkGen TermsOfServiceEnterpriseField.swift
[1494/1664] Compiling BoxSdkGen TermsOfServiceEnterpriseTypeField.swift
[1495/1664] Compiling BoxSdkGen TermsOfServiceStatusField.swift
[1496/1664] Compiling BoxSdkGen TermsOfServiceTosTypeField.swift
[1497/1688] Compiling BoxSdkGen TermsOfServiceBase.swift
[1498/1688] Compiling BoxSdkGen TermsOfServiceBaseTypeField.swift
[1499/1688] Compiling BoxSdkGen TermsOfServiceUserStatus.swift
[1500/1688] Compiling BoxSdkGen TermsOfServiceUserStatusTypeField.swift
[1501/1688] Compiling BoxSdkGen TermsOfServiceUserStatuses.swift
[1502/1688] Compiling BoxSdkGen TermsOfServices.swift
[1503/1688] Compiling BoxSdkGen TimelineSkillCard.swift
[1504/1688] Compiling BoxSdkGen TimelineSkillCardEntriesAppearsField.swift
[1505/1688] Compiling BoxSdkGen TimelineSkillCardEntriesField.swift
[1506/1688] Compiling BoxSdkGen TimelineSkillCardInvocationField.swift
[1507/1688] Compiling BoxSdkGen TimelineSkillCardInvocationTypeField.swift
[1508/1688] Compiling BoxSdkGen TimelineSkillCardSkillCardTitleField.swift
[1509/1688] Compiling BoxSdkGen TimelineSkillCardSkillCardTypeField.swift
[1510/1688] Compiling BoxSdkGen TimelineSkillCardSkillField.swift
[1511/1688] Compiling BoxSdkGen TimelineSkillCardSkillTypeField.swift
[1512/1688] Compiling BoxSdkGen TimelineSkillCardTypeField.swift
[1513/1688] Compiling BoxSdkGen TrackingCode.swift
[1514/1688] Compiling BoxSdkGen TrackingCodeTypeField.swift
[1515/1688] Compiling BoxSdkGen TranscriptSkillCard.swift
[1516/1688] Compiling BoxSdkGen TranscriptSkillCardEntriesAppearsField.swift
[1517/1688] Compiling BoxSdkGen TranscriptSkillCardEntriesField.swift
[1518/1688] Compiling BoxSdkGen TranscriptSkillCardInvocationField.swift
[1519/1688] Compiling BoxSdkGen TranscriptSkillCardInvocationTypeField.swift
[1520/1688] Compiling BoxSdkGen TranscriptSkillCardSkillCardTitleField.swift
[1521/1712] Compiling BoxSdkGen TrashWebLink.swift
[1522/1712] Compiling BoxSdkGen TrashWebLinkItemStatusField.swift
[1523/1712] Compiling BoxSdkGen TrashWebLinkPathCollectionEntriesField.swift
[1524/1712] Compiling BoxSdkGen TrashWebLinkPathCollectionEntriesTypeField.swift
[1525/1712] Compiling BoxSdkGen TrashWebLinkPathCollectionField.swift
[1526/1712] Compiling BoxSdkGen TrashWebLinkTypeField.swift
[1527/1712] Compiling BoxSdkGen TrashWebLinkRestored.swift
[1528/1712] Compiling BoxSdkGen TrashWebLinkRestoredItemStatusField.swift
[1529/1712] Compiling BoxSdkGen TrashWebLinkRestoredPathCollectionField.swift
[1530/1712] Compiling BoxSdkGen TrashWebLinkRestoredTypeField.swift
[1531/1712] Compiling BoxSdkGen UploadPart.swift
[1532/1712] Compiling BoxSdkGen UploadPartMini.swift
[1533/1712] Compiling BoxSdkGen UploadParts.swift
[1534/1712] Compiling BoxSdkGen UploadPartsOrderDirectionField.swift
[1535/1712] Compiling BoxSdkGen UploadPartsOrderField.swift
[1536/1712] Compiling BoxSdkGen UploadSession.swift
[1537/1712] Compiling BoxSdkGen UploadSessionSessionEndpointsField.swift
[1538/1712] Compiling BoxSdkGen UploadSessionTypeField.swift
[1539/1712] Compiling BoxSdkGen UploadUrl.swift
[1540/1712] Compiling BoxSdkGen UploadedPart.swift
[1541/1712] Compiling BoxSdkGen User.swift
[1542/1712] Compiling BoxSdkGen UserNotificationEmailField.swift
[1543/1712] Compiling BoxSdkGen UserStatusField.swift
[1544/1712] Compiling BoxSdkGen UserAvatar.swift
[1545/1736] Compiling BoxSdkGen TranscriptSkillCardSkillCardTypeField.swift
[1546/1736] Compiling BoxSdkGen TranscriptSkillCardSkillField.swift
[1547/1736] Compiling BoxSdkGen TranscriptSkillCardSkillTypeField.swift
[1548/1736] Compiling BoxSdkGen TranscriptSkillCardTypeField.swift
[1549/1736] Compiling BoxSdkGen TrashFile.swift
[1550/1736] Compiling BoxSdkGen TrashFileItemStatusField.swift
[1551/1736] Compiling BoxSdkGen TrashFilePathCollectionEntriesField.swift
[1552/1736] Compiling BoxSdkGen TrashFilePathCollectionEntriesTypeField.swift
[1553/1736] Compiling BoxSdkGen TrashFilePathCollectionField.swift
[1554/1736] Compiling BoxSdkGen TrashFileTypeField.swift
[1555/1736] Compiling BoxSdkGen TrashFileRestored.swift
[1556/1736] Compiling BoxSdkGen TrashFileRestoredItemStatusField.swift
[1557/1736] Compiling BoxSdkGen TrashFileRestoredPathCollectionField.swift
[1558/1736] Compiling BoxSdkGen TrashFileRestoredTypeField.swift
[1559/1736] Compiling BoxSdkGen TrashFolder.swift
[1560/1736] Compiling BoxSdkGen TrashFolderItemStatusField.swift
[1561/1736] Compiling BoxSdkGen TrashFolderPathCollectionEntriesField.swift
[1562/1736] Compiling BoxSdkGen TrashFolderPathCollectionEntriesTypeField.swift
[1563/1736] Compiling BoxSdkGen TrashFolderPathCollectionField.swift
[1564/1736] Compiling BoxSdkGen TrashFolderTypeField.swift
[1565/1736] Compiling BoxSdkGen TrashFolderRestored.swift
[1566/1736] Compiling BoxSdkGen TrashFolderRestoredItemStatusField.swift
[1567/1736] Compiling BoxSdkGen TrashFolderRestoredPathCollectionField.swift
[1568/1736] Compiling BoxSdkGen TrashFolderRestoredTypeField.swift
[1569/1760] Compiling BoxSdkGen UserAvatarPicUrlsField.swift
[1570/1760] Compiling BoxSdkGen UserBase.swift
[1571/1760] Compiling BoxSdkGen UserBaseTypeField.swift
[1572/1760] Compiling BoxSdkGen UserCollaborations.swift
[1573/1760] Compiling BoxSdkGen UserFull.swift
[1574/1760] Compiling BoxSdkGen UserFullEnterpriseField.swift
[1575/1760] Compiling BoxSdkGen UserFullEnterpriseTypeField.swift
[1576/1760] Compiling BoxSdkGen UserFullRoleField.swift
[1577/1760] Compiling BoxSdkGen UserIntegrationMappings.swift
[1578/1760] Compiling BoxSdkGen UserMini.swift
[1579/1760] Compiling BoxSdkGen Users.swift
[1580/1760] Compiling BoxSdkGen UsersOrderDirectionField.swift
[1581/1760] Compiling BoxSdkGen UsersOrderField.swift
[1582/1760] Compiling BoxSdkGen ArchiveV2025R0.swift
[1583/1760] Compiling BoxSdkGen ArchiveV2025R0OwnedByField.swift
[1584/1760] Compiling BoxSdkGen ArchiveV2025R0TypeField.swift
[1585/1760] Compiling BoxSdkGen ArchivesV2025R0.swift
[1586/1760] Compiling BoxSdkGen ClientErrorV2025R0.swift
[1587/1760] Compiling BoxSdkGen ClientErrorV2025R0CodeField.swift
[1588/1760] Compiling BoxSdkGen ClientErrorV2025R0TypeField.swift
[1589/1760] Compiling BoxSdkGen CollaborationPermissionsV2025R0.swift
[1590/1760] Compiling BoxSdkGen CustomSessionDurationGroupItemV2025R0.swift
[1591/1760] Compiling BoxSdkGen DocGenBatchBaseV2025R0.swift
[1592/1760] Compiling BoxSdkGen DocGenBatchBaseV2025R0TypeField.swift
[1593/1784] Compiling BoxSdkGen ExternalUserDeletionResultV2025R0.swift
[1594/1784] Compiling BoxSdkGen ExternalUsersSubmitDeleteJobRequestV2025R0.swift
[1595/1784] Compiling BoxSdkGen ExternalUsersSubmitDeleteJobResponseV2025R0.swift
[1596/1784] Compiling BoxSdkGen FileReferenceV2025R0.swift
[1597/1784] Compiling BoxSdkGen FileReferenceV2025R0TypeField.swift
[1598/1784] Compiling BoxSdkGen FileVersionBaseV2025R0.swift
[1599/1784] Compiling BoxSdkGen FileVersionBaseV2025R0TypeField.swift
[1600/1784] Compiling BoxSdkGen FolderReferenceV2025R0.swift
[1601/1784] Compiling BoxSdkGen FolderReferenceV2025R0TypeField.swift
[1602/1784] Compiling BoxSdkGen GroupBaseV2025R0.swift
[1603/1784] Compiling BoxSdkGen GroupBaseV2025R0TypeField.swift
[1604/1784] Compiling BoxSdkGen GroupMiniV2025R0.swift
[1605/1784] Compiling BoxSdkGen GroupMiniV2025R0GroupTypeField.swift
[1606/1784] Compiling BoxSdkGen HubAccessGranteeV2025R0.swift
[1607/1784] Compiling BoxSdkGen HubBaseV2025R0.swift
[1608/1784] Compiling BoxSdkGen HubBaseV2025R0TypeField.swift
[1609/1784] Compiling BoxSdkGen HubCalloutBoxTextBlockV2025R0.swift
[1610/1784] Compiling BoxSdkGen HubCalloutBoxTextBlockV2025R0TypeField.swift
[1611/1784] Compiling BoxSdkGen HubCollaborationCreateRequestV2025R0.swift
[1612/1784] Compiling BoxSdkGen HubCollaborationCreateRequestV2025R0AccessibleByField.swift
[1613/1784] Compiling BoxSdkGen HubCollaborationCreateRequestV2025R0HubField.swift
[1614/1784] Compiling BoxSdkGen HubCollaborationCreateRequestV2025R0HubTypeField.swift
[1615/1784] Compiling BoxSdkGen HubCollaborationUpdateRequestV2025R0.swift
[1616/1784] Compiling BoxSdkGen HubCollaborationUserV2025R0.swift
[1617/1808] Compiling BoxSdkGen DocGenBatchCreateRequestV2025R0.swift
[1618/1808] Compiling BoxSdkGen DocGenBatchCreateRequestV2025R0DestinationFolderField.swift
[1619/1808] Compiling BoxSdkGen DocGenBatchCreateRequestV2025R0DestinationFolderTypeField.swift
[1620/1808] Compiling BoxSdkGen DocGenDocumentGenerationDataV2025R0.swift
[1621/1808] Compiling BoxSdkGen DocGenJobBaseV2025R0.swift
[1622/1808] Compiling BoxSdkGen DocGenJobBaseV2025R0TypeField.swift
[1623/1808] Compiling BoxSdkGen DocGenJobFullV2025R0.swift
[1624/1808] Compiling BoxSdkGen DocGenJobV2025R0.swift
[1625/1808] Compiling BoxSdkGen DocGenJobV2025R0StatusField.swift
[1626/1808] Compiling BoxSdkGen DocGenJobsFullV2025R0.swift
[1627/1808] Compiling BoxSdkGen DocGenJobsV2025R0.swift
[1628/1808] Compiling BoxSdkGen DocGenTagV2025R0.swift
[1629/1808] Compiling BoxSdkGen DocGenTagV2025R0TagTypeField.swift
[1630/1808] Compiling BoxSdkGen DocGenTagsProcessingMessageV2025R0.swift
[1631/1808] Compiling BoxSdkGen DocGenTagsV2025R0.swift
[1632/1808] Compiling BoxSdkGen DocGenTemplateBaseV2025R0.swift
[1633/1808] Compiling BoxSdkGen DocGenTemplateCreateRequestV2025R0.swift
[1634/1808] Compiling BoxSdkGen DocGenTemplateV2025R0.swift
[1635/1808] Compiling BoxSdkGen DocGenTemplatesV2025R0.swift
[1636/1808] Compiling BoxSdkGen EnterpriseConfigurationContentAndSharingV2025R0.swift
[1637/1808] Compiling BoxSdkGen EnterpriseConfigurationContentAndSharingV2025R0CollaborationPermissionsField.swift
[1638/1808] Compiling BoxSdkGen EnterpriseConfigurationContentAndSharingV2025R0CollaborationRestrictionsField.swift
[1639/1808] Compiling BoxSdkGen EnterpriseConfigurationContentAndSharingV2025R0ExternalCollaborationAllowlistUsersField.swift
[1640/1808] Compiling BoxSdkGen EnterpriseConfigurationContentAndSharingV2025R0ExternalCollaborationStatusField.swift
[1641/1808] Compiling BoxSdkGen HubCollaborationV2025R0.swift
[1642/1808] Compiling BoxSdkGen HubCollaborationV2025R0AcceptanceRequirementsStatusField.swift
[1643/1808] Compiling BoxSdkGen HubCollaborationV2025R0AcceptanceRequirementsStatusStrongPasswordRequirementField.swift
[1644/1808] Compiling BoxSdkGen HubCollaborationV2025R0AcceptanceRequirementsStatusTermsOfServiceRequirementField.swift
[1645/1808] Compiling BoxSdkGen HubCollaborationV2025R0AcceptanceRequirementsStatusTwoFactorAuthenticationRequirementField.swift
[1646/1808] Compiling BoxSdkGen HubCollaborationV2025R0StatusField.swift
[1647/1808] Compiling BoxSdkGen HubCollaborationV2025R0TypeField.swift
[1648/1808] Compiling BoxSdkGen HubCollaborationsV2025R0.swift
[1649/1808] Compiling BoxSdkGen HubCopyRequestV2025R0.swift
[1650/1808] Compiling BoxSdkGen HubCreateRequestV2025R0.swift
[1651/1808] Compiling BoxSdkGen HubDividerBlockV2025R0.swift
[1652/1808] Compiling BoxSdkGen HubDividerBlockV2025R0TypeField.swift
[1653/1808] Compiling BoxSdkGen HubDocumentBlockEntryV2025R0.swift
[1654/1808] Compiling BoxSdkGen HubDocumentBlockV2025R0.swift
[1655/1808] Compiling BoxSdkGen HubDocumentBlocksV2025R0.swift
[1656/1808] Compiling BoxSdkGen HubDocumentBlocksV2025R0TypeField.swift
[1657/1808] Compiling BoxSdkGen HubDocumentPageV2025R0.swift
[1658/1808] Compiling BoxSdkGen HubDocumentPagesV2025R0.swift
[1659/1808] Compiling BoxSdkGen HubDocumentPagesV2025R0TypeField.swift
[1660/1808] Compiling BoxSdkGen HubItemListBlockV2025R0.swift
[1661/1808] Compiling BoxSdkGen HubItemListBlockV2025R0TypeField.swift
[1662/1808] Compiling BoxSdkGen HubItemOperationResultV2025R0.swift
[1663/1808] Compiling BoxSdkGen HubItemOperationV2025R0.swift
[1664/1808] Compiling BoxSdkGen HubItemOperationV2025R0ActionField.swift
[1665/1808] Compiling BoxSdkGen ShieldListContentIntegrationV2025R0TypeField.swift
[1666/1808] Compiling BoxSdkGen ShieldListContentIpV2025R0.swift
[1667/1808] Compiling BoxSdkGen ShieldListContentIpV2025R0TypeField.swift
[1668/1808] Compiling BoxSdkGen ShieldListContentRequestV2025R0.swift
[1669/1808] Compiling BoxSdkGen ShieldListContentV2025R0.swift
[1670/1808] Compiling BoxSdkGen ShieldListMiniV2025R0.swift
[1671/1808] Compiling BoxSdkGen ShieldListMiniV2025R0ContentField.swift
[1672/1808] Compiling BoxSdkGen ShieldListMiniV2025R0TypeField.swift
[1673/1808] Compiling BoxSdkGen ShieldListV2025R0.swift
[1674/1808] Compiling BoxSdkGen ShieldListsCreateV2025R0.swift
[1675/1808] Compiling BoxSdkGen ShieldListsUpdateV2025R0.swift
[1676/1808] Compiling BoxSdkGen ShieldListsV2025R0.swift
[1677/1808] Compiling BoxSdkGen ShieldRuleItemV2025R0.swift
[1678/1808] Compiling BoxSdkGen ShieldRuleItemV2025R0PriorityField.swift
[1679/1808] Compiling BoxSdkGen ShieldRuleItemV2025R0TypeField.swift
[1680/1808] Compiling BoxSdkGen TermsOfServiceBaseV2025R0.swift
[1681/1808] Compiling BoxSdkGen TermsOfServiceBaseV2025R0TypeField.swift
[1682/1808] Compiling BoxSdkGen UserBaseV2025R0.swift
[1683/1808] Compiling BoxSdkGen UserBaseV2025R0TypeField.swift
[1684/1808] Compiling BoxSdkGen UserMiniV2025R0.swift
[1685/1808] Compiling BoxSdkGen UserOrGroupReferenceV2025R0.swift
[1686/1808] Compiling BoxSdkGen UserOrGroupReferenceV2025R0TypeField.swift
[1687/1808] Compiling BoxSdkGen UserReferenceV2025R0.swift
[1688/1808] Compiling BoxSdkGen UserReferenceV2025R0TypeField.swift
[1689/1808] Compiling BoxSdkGen EnterpriseConfigurationContentAndSharingV2025R0PermanentDeletionAllowlistUsersField.swift
[1690/1808] Compiling BoxSdkGen EnterpriseConfigurationContentAndSharingV2025R0SharedLinkDefaultPermissionsSelectedField.swift
[1691/1808] Compiling BoxSdkGen EnterpriseConfigurationItemBooleanV2025R0.swift
[1692/1808] Compiling BoxSdkGen EnterpriseConfigurationItemIntegerV2025R0.swift
[1693/1808] Compiling BoxSdkGen EnterpriseConfigurationItemStringV2025R0.swift
[1694/1808] Compiling BoxSdkGen EnterpriseConfigurationItemV2025R0.swift
[1695/1808] Compiling BoxSdkGen EnterpriseConfigurationSecurityV2025R0.swift
[1696/1808] Compiling BoxSdkGen EnterpriseConfigurationSecurityV2025R0CustomSessionDurationGroupsField.swift
[1697/1808] Compiling BoxSdkGen EnterpriseConfigurationSecurityV2025R0EnforcedMfaFrequencyField.swift
[1698/1808] Compiling BoxSdkGen EnterpriseConfigurationSecurityV2025R0EnforcedMfaFrequencyFieldValueField.swift
[1699/1808] Compiling BoxSdkGen EnterpriseConfigurationSecurityV2025R0ExternalCollabMultiFactorAuthSettingsField.swift
[1700/1808] Compiling BoxSdkGen EnterpriseConfigurationSecurityV2025R0KeysafeField.swift
[1701/1808] Compiling BoxSdkGen EnterpriseConfigurationSecurityV2025R0LastPasswordResetAtField.swift
[1702/1808] Compiling BoxSdkGen EnterpriseConfigurationShieldV2025R0.swift
[1703/1808] Compiling BoxSdkGen EnterpriseConfigurationUserSettingsV2025R0.swift
[1704/1808] Compiling BoxSdkGen EnterpriseConfigurationUserSettingsV2025R0UserTrackingCodesField.swift
[1705/1808] Compiling BoxSdkGen EnterpriseConfigurationV2025R0.swift
[1706/1808] Compiling BoxSdkGen EnterpriseConfigurationV2025R0TypeField.swift
[1707/1808] Compiling BoxSdkGen EnterpriseFeatureSettingV2025R0.swift
[1708/1808] Compiling BoxSdkGen EnterpriseFeatureSettingV2025R0FeatureField.swift
[1709/1808] Compiling BoxSdkGen EnterpriseFeatureSettingsItemV2025R0.swift
[1710/1808] Compiling BoxSdkGen EnterpriseReferenceV2025R0.swift
[1711/1808] Compiling BoxSdkGen EnterpriseReferenceV2025R0TypeField.swift
[1712/1808] Compiling BoxSdkGen ExternalCollabSecuritySettingsV2025R0.swift
[1713/1808] Compiling BoxSdkGen HubItemReferenceV2025R0.swift
[1714/1808] Compiling BoxSdkGen HubItemV2025R0.swift
[1715/1808] Compiling BoxSdkGen HubItemV2025R0TypeField.swift
[1716/1808] Compiling BoxSdkGen HubItemsManageRequestV2025R0.swift
[1717/1808] Compiling BoxSdkGen HubItemsManageResponseV2025R0.swift
[1718/1808] Compiling BoxSdkGen HubItemsV2025R0.swift
[1719/1808] Compiling BoxSdkGen HubParagraphTextBlockV2025R0.swift
[1720/1808] Compiling BoxSdkGen HubParagraphTextBlockV2025R0TypeField.swift
[1721/1808] Compiling BoxSdkGen HubSectionTitleTextBlockV2025R0.swift
[1722/1808] Compiling BoxSdkGen HubSectionTitleTextBlockV2025R0TypeField.swift
[1723/1808] Compiling BoxSdkGen HubUpdateRequestV2025R0.swift
[1724/1808] Compiling BoxSdkGen HubV2025R0.swift
[1725/1808] Compiling BoxSdkGen HubsV2025R0.swift
[1726/1808] Compiling BoxSdkGen KeysafeSettingsV2025R0.swift
[1727/1808] Compiling BoxSdkGen ListUserV2025R0.swift
[1728/1808] Compiling BoxSdkGen SharedLinkPermissionsV2025R0.swift
[1729/1808] Compiling BoxSdkGen ShieldListContentCountryV2025R0.swift
[1730/1808] Compiling BoxSdkGen ShieldListContentCountryV2025R0TypeField.swift
[1731/1808] Compiling BoxSdkGen ShieldListContentDomainV2025R0.swift
[1732/1808] Compiling BoxSdkGen ShieldListContentDomainV2025R0TypeField.swift
[1733/1808] Compiling BoxSdkGen ShieldListContentEmailV2025R0.swift
[1734/1808] Compiling BoxSdkGen ShieldListContentEmailV2025R0TypeField.swift
[1735/1808] Compiling BoxSdkGen ShieldListContentIntegrationV2025R0.swift
[1736/1808] Compiling BoxSdkGen ShieldListContentIntegrationV2025R0IntegrationsField.swift
[1737/1808] Compiling BoxSdkGen UserTrackingCodeV2025R0.swift
[1738/1808] Compiling BoxSdkGen WeblinkReferenceV2025R0.swift
[1739/1808] Compiling BoxSdkGen WeblinkReferenceV2025R0TypeField.swift
[1740/1808] Compiling BoxSdkGen AutomateWorkflowActionV2026R0.swift
[1741/1808] Compiling BoxSdkGen AutomateWorkflowActionV2026R0ActionTypeField.swift
[1742/1808] Compiling BoxSdkGen AutomateWorkflowActionV2026R0TypeField.swift
[1743/1808] Compiling BoxSdkGen AutomateWorkflowReferenceV2026R0.swift
[1744/1808] Compiling BoxSdkGen AutomateWorkflowReferenceV2026R0TypeField.swift
[1745/1808] Compiling BoxSdkGen AutomateWorkflowStartRequestV2026R0.swift
[1746/1808] Compiling BoxSdkGen AutomateWorkflowsV2026R0.swift
[1747/1808] Compiling BoxSdkGen ClientErrorV2026R0.swift
[1748/1808] Compiling BoxSdkGen ClientErrorV2026R0CodeField.swift
[1749/1808] Compiling BoxSdkGen ClientErrorV2026R0TypeField.swift
[1750/1808] Compiling BoxSdkGen UserBaseV2026R0.swift
[1751/1808] Compiling BoxSdkGen UserBaseV2026R0TypeField.swift
[1752/1808] Compiling BoxSdkGen UserMiniV2026R0.swift
[1753/1808] Compiling BoxSdkGen Watermark.swift
[1754/1808] Compiling BoxSdkGen WatermarkWatermarkField.swift
[1755/1808] Compiling BoxSdkGen WebLink.swift
[1756/1808] Compiling BoxSdkGen WebLinkItemStatusField.swift
[1757/1808] Compiling BoxSdkGen WebLinkPathCollectionField.swift
[1758/1808] Compiling BoxSdkGen WebLinkSharedLinkAccessField.swift
[1759/1808] Compiling BoxSdkGen WebLinkSharedLinkEffectiveAccessField.swift
[1760/1808] Compiling BoxSdkGen WebLinkSharedLinkEffectivePermissionField.swift
[1761/1808] Compiling BoxSdkGen WorkflowFlowsTriggerScopeTypeField.swift
[1762/1808] Compiling BoxSdkGen WorkflowFlowsTriggerTriggerTypeField.swift
[1763/1808] Compiling BoxSdkGen WorkflowFlowsTriggerTypeField.swift
[1764/1808] Compiling BoxSdkGen WorkflowFlowsTypeField.swift
[1765/1808] Compiling BoxSdkGen WorkflowMini.swift
[1766/1808] Compiling BoxSdkGen WorkflowMiniTypeField.swift
[1767/1808] Compiling BoxSdkGen Workflows.swift
[1768/1808] Compiling BoxSdkGen ZipDownload.swift
[1769/1808] Compiling BoxSdkGen ZipDownloadNameConflictsField.swift
[1770/1808] Compiling BoxSdkGen ZipDownloadNameConflictsTypeField.swift
[1771/1808] Compiling BoxSdkGen ZipDownloadRequest.swift
[1772/1808] Compiling BoxSdkGen ZipDownloadRequestItemsField.swift
[1773/1808] Compiling BoxSdkGen ZipDownloadRequestItemsTypeField.swift
[1774/1808] Compiling BoxSdkGen ZipDownloadStatus.swift
[1775/1808] Compiling BoxSdkGen ZipDownloadStatusStateField.swift
[1776/1808] Compiling BoxSdkGen AnyCodable.swift
[1777/1808] Compiling BoxSdkGen Codable+Extensions.swift
[1778/1808] Compiling BoxSdkGen CodableStringEnum.swift
[1779/1808] Compiling BoxSdkGen JsonUtils.swift
[1780/1808] Compiling BoxSdkGen KeyedDecodingContainer+Extensions.swift
[1781/1808] Compiling BoxSdkGen KeyedEncodingContainer+Extensions.swift
[1782/1808] Compiling BoxSdkGen RawJSONStorage.swift
[1783/1808] Compiling BoxSdkGen SerializedData.swift
[1784/1808] Compiling BoxSdkGen resource_bundle_accessor.swift
[1785/1808] Compiling BoxSdkGen WebLinkSharedLinkField.swift
[1786/1808] Compiling BoxSdkGen WebLinkSharedLinkPermissionsField.swift
[1787/1808] Compiling BoxSdkGen WebLinkBase.swift
[1788/1808] Compiling BoxSdkGen WebLinkBaseTypeField.swift
[1789/1808] Compiling BoxSdkGen WebLinkMini.swift
[1790/1808] Compiling BoxSdkGen Webhook.swift
[1791/1808] Compiling BoxSdkGen WebhookTriggersField.swift
[1792/1808] Compiling BoxSdkGen WebhookMini.swift
[1793/1808] Compiling BoxSdkGen WebhookMiniTargetField.swift
[1794/1808] Compiling BoxSdkGen WebhookMiniTargetTypeField.swift
[1795/1808] Compiling BoxSdkGen WebhookMiniTypeField.swift
[1796/1808] Compiling BoxSdkGen Webhooks.swift
[1797/1808] Compiling BoxSdkGen Workflow.swift
[1798/1808] Compiling BoxSdkGen WorkflowFlowsField.swift
[1799/1808] Compiling BoxSdkGen WorkflowFlowsOutcomesActionTypeField.swift
[1800/1808] Compiling BoxSdkGen WorkflowFlowsOutcomesField.swift
[1801/1808] Compiling BoxSdkGen WorkflowFlowsOutcomesIfRejectedActionTypeField.swift
[1802/1808] Compiling BoxSdkGen WorkflowFlowsOutcomesIfRejectedField.swift
[1803/1808] Compiling BoxSdkGen WorkflowFlowsOutcomesIfRejectedTypeField.swift
[1804/1808] Compiling BoxSdkGen WorkflowFlowsOutcomesTypeField.swift
[1805/1808] Compiling BoxSdkGen WorkflowFlowsTriggerField.swift
[1806/1808] Compiling BoxSdkGen WorkflowFlowsTriggerScopeField.swift
[1807/1808] Compiling BoxSdkGen WorkflowFlowsTriggerScopeObjectField.swift
[1808/1808] Compiling BoxSdkGen WorkflowFlowsTriggerScopeObjectTypeField.swift
BUILD FAILURE 6.2 wasm