The Swift Package Index logo.Swift Package Index

Build Information

Failed to build BoxSdkGen, reference main (5f5c2d), with Swift 6.3 for Wasm on 16 Apr 2026 22:18:58 UTC.

Build Command

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

Build Log

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