Build Information
Failed to build BoxSdkGen, reference 0.6.3 (5674d1), with Swift 6.3 for Wasm on 16 Apr 2026 22:21:27 UTC.
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4606859-1":/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>&1Build Log
| `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
20 | /// Represents response type, either data or downloaded file
21 | let responseType: ResponseType
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias HTTPURLResponse = AnyObject
| `- note: 'HTTPURLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Networking/FetchConversation.swift:31:70: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
29 | /// - urlResponse: Represents a response to an HTTP URL
30 | /// - responseType: Represents response type, either data or downloaded file
31 | init(options: FetchOptions, urlRequest: URLRequest, urlResponse: HTTPURLResponse, responseType: ResponseType) {
| `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
32 | self.options = options
33 | self.urlRequest = urlRequest
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias HTTPURLResponse = AnyObject
| `- note: 'HTTPURLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Networking/FetchConversation.swift:42:53: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'allHeaderFields'
40 | /// - Returns: An instance of the`FetchResponse`.
41 | func convertToFetchResponse() -> FetchResponse {
42 | let headers: [String: String] = urlResponse.allHeaderFields.reduce(into: [:]) { result, pair in
| `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'allHeaderFields'
43 | if let key = pair.key as? String, let value = pair.value as? String {
44 | result[key] = value
/host/spi-builder-workspace/Sources/Networking/FetchConversation.swift:50:54: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
48 | switch self.responseType {
49 | case let .data(data):
50 | return FetchResponse(status: urlResponse.statusCode, headers: headers, url: options.url, data: SerializedData(data: data))
| `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
51 | case let .url(url):
52 | return FetchResponse(status: urlResponse.statusCode, headers: headers, url: options.url, data: nil, downloadDestinationUrl: url)
/host/spi-builder-workspace/Sources/Networking/FetchConversation.swift:52:54: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
50 | return FetchResponse(status: urlResponse.statusCode, headers: headers, url: options.url, data: SerializedData(data: data))
51 | case let .url(url):
52 | return FetchResponse(status: urlResponse.statusCode, headers: headers, url: options.url, data: nil, downloadDestinationUrl: url)
| `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
53 | }
54 | }
/host/spi-builder-workspace/Sources/Networking/RedirectHandler.swift: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 | }
[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:87:48: error: cannot find type 'URLRequest' in scope
85 | /// - Returns: Tuple of of (Data, URLResponse)
86 | /// - Throws: An error if the request fails for any reason.
87 | private func sendDataRequest(_ urlRequest: URLRequest, followRedirects: Bool) async throws -> (Data, URLResponse) {
| `- error: cannot find type 'URLRequest' in scope
88 | return try await withCheckedThrowingContinuation { [weak self] continuation in
89 | guard let self = self else {
/host/spi-builder-workspace/Sources/Networking/BoxNetworkClient.swift:87:106: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
85 | /// - Returns: Tuple of of (Data, URLResponse)
86 | /// - Throws: An error if the request fails for any reason.
87 | private func sendDataRequest(_ urlRequest: URLRequest, followRedirects: Bool) async throws -> (Data, URLResponse) {
| `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
88 | return try await withCheckedThrowingContinuation { [weak self] continuation in
89 | guard let self = self else {
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
| `- note: 'URLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Networking/BoxNetworkClient.swift:126:52: error: cannot find type 'URLRequest' in scope
124 | /// - Returns: Tuple of of (URL, URLResponse)
125 | /// - Throws: An error if the request fails for any reason.
126 | private func sendDownloadRequest(_ urlRequest: URLRequest, downloadDestinationURL: URL) async throws -> (URL, URLResponse) {
| `- error: cannot find type 'URLRequest' in scope
127 | return try await withCheckedThrowingContinuation { [weak self] continuation in
128 | guard let self = self else {
/host/spi-builder-workspace/Sources/Networking/BoxNetworkClient.swift:126:115: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
124 | /// - Returns: Tuple of of (URL, URLResponse)
125 | /// - Throws: An error if the request fails for any reason.
126 | private func sendDownloadRequest(_ urlRequest: URLRequest, downloadDestinationURL: URL) async throws -> (URL, URLResponse) {
| `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
127 | return try await withCheckedThrowingContinuation { [weak self] continuation in
128 | guard let self = self else {
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
| `- note: 'URLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Networking/BoxNetworkClient.swift:186:23: error: cannot find type 'URLRequest' in scope
184 | options: FetchOptions,
185 | networkSession: NetworkSession
186 | ) async throws -> URLRequest {
| `- error: cannot find type 'URLRequest' in scope
187 | var urlRequest = URLRequest(url: createEndpointUrl(url: options.url, params: options.params))
188 | urlRequest.httpMethod = options.method.uppercased()
/host/spi-builder-workspace/Sources/Networking/BoxNetworkClient.swift:216:63: error: cannot find type 'URLRequest' in scope
214 | /// - networkSession: The Networking Session object which provides the URLSession object along with a network configuration parameters used in network communication.
215 | /// - Throws: An error if the operation fails for any reason.
216 | private func updateRequestWithHeaders(_ urlRequest: inout URLRequest, options: FetchOptions, networkSession: NetworkSession) async throws {
| `- error: cannot find type 'URLRequest' in scope
217 | urlRequest.allHTTPHeaderFields = options.headers
218 |
/host/spi-builder-workspace/Sources/Networking/BoxNetworkClient.swift:239:75: error: cannot find type 'URLRequest' in scope
237 | /// - networkSession: The Networking Session object which provides the URLSession object along with a network configuration parameters used in network communication.
238 | /// - Throws: An error if the operation fails for any reason.
239 | private func updateRequestWithAuthorizationHeader(_ urlRequest: inout URLRequest, options: FetchOptions, networkSession: NetworkSession) async throws {
| `- error: cannot find type 'URLRequest' in scope
240 | if let auth = options.auth {
241 | let authHeaderValue = try await auth.retrieveAuthorizationHeader(networkSession: networkSession)
/host/spi-builder-workspace/Sources/Networking/BoxNetworkClient.swift:251:69: error: cannot find type 'URLRequest' in scope
249 | /// - urlRequest: The request object.
250 | /// - multipartData: An array of `MultipartItem` which will be used to create the body of the request.
251 | private func updateRequestWithMultipartData(_ urlRequest: inout URLRequest, multipartData: [MultipartItem]) throws {
| `- error: cannot find type 'URLRequest' in scope
252 | var parameters: [String: Any] = [:]
253 | var partName = ""
/host/spi-builder-workspace/Sources/Networking/BoxNetworkClient.swift:23:24: error: 'URLSession' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
21 | public init(configuration: URLSessionConfiguration = URLSessionConfiguration.default) {
22 | self.redirectHandler = RedirectHandler()
23 | self.session = URLSession(configuration: configuration, delegate: redirectHandler, delegateQueue: nil)
| `- error: 'URLSession' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
24 | }
25 |
/host/spi-builder-workspace/Sources/Networking/BoxNetworkClient.swift:23:107: error: 'nil' requires a contextual type
21 | public init(configuration: URLSessionConfiguration = URLSessionConfiguration.default) {
22 | self.redirectHandler = RedirectHandler()
23 | self.session = URLSession(configuration: configuration, delegate: redirectHandler, delegateQueue: nil)
| `- error: 'nil' requires a contextual type
24 | }
25 |
/host/spi-builder-workspace/Sources/Networking/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:70:153: error: cannot infer contextual base in reference to member 'url'
68 | if let downloadDestinationUrl = options.downloadDestinationUrl, options.responseFormat == .binary {
69 | let (downloadUrl, urlResponse) = try await sendDownloadRequest(urlRequest, downloadDestinationURL: downloadDestinationUrl)
70 | let conversation = FetchConversation(options: options, urlRequest: urlRequest, urlResponse: urlResponse as! HTTPURLResponse, responseType: .url(downloadUrl))
| `- error: cannot infer contextual base in reference to member 'url'
71 | return try await processResponse(using: conversation, networkSession: networkSession, attempt: attempt)
72 | } else {
/host/spi-builder-workspace/Sources/Networking/BoxNetworkClient.swift:74:153: error: cannot infer contextual base in reference to member 'data'
72 | } else {
73 | let (data, urlResponse) = try await sendDataRequest(urlRequest, followRedirects: options.followRedirects ?? true)
74 | let conversation = FetchConversation(options: options, urlRequest: urlRequest, urlResponse: urlResponse as! HTTPURLResponse, responseType: .data(data))
| `- error: cannot infer contextual base in reference to member 'data'
75 | return try await processResponse(using: conversation, networkSession: networkSession, attempt: attempt)
76 | }
/host/spi-builder-workspace/Sources/Networking/BoxNetworkClient.swift:96:37: error: value of type 'URLSession' (aka 'AnyObject') has no member 'dataTask'
94 | }
95 |
96 | let task = self.session.dataTask(with: urlRequest) { data, response, error in
| `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'dataTask'
97 | if let error = error {
98 | continuation.resume(with: .failure(BoxNetworkError(message: error.localizedDescription, error: error)))
/host/spi-builder-workspace/Sources/Networking/BoxNetworkClient.swift:135:37: error: value of type 'URLSession' (aka 'AnyObject') has no member 'downloadTask'
133 | }
134 |
135 | let task = self.session.downloadTask(with: urlRequest) { location, response, error in
| `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'downloadTask'
136 | if let error = error {
137 | continuation.resume(with: .failure(BoxNetworkError(message: error.localizedDescription, error: error)))
/host/spi-builder-workspace/Sources/Networking/BoxNetworkClient.swift:187:26: error: cannot find 'URLRequest' in scope
185 | networkSession: NetworkSession
186 | ) async throws -> URLRequest {
187 | var urlRequest = URLRequest(url: createEndpointUrl(url: options.url, params: options.params))
| `- error: cannot find 'URLRequest' in scope
188 | urlRequest.httpMethod = options.method.uppercased()
189 |
/host/spi-builder-workspace/Sources/Networking/BoxNetworkClient.swift:347:51: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
345 | attempt: Int
346 | ) async throws -> FetchResponse {
347 | let statusCode = conversation.urlResponse.statusCode
| `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
348 | let isStatusCodeAcceptedWithRetryAfterHeader = statusCode == 202 && conversation.urlResponse.value(forHTTPHeaderField: HTTPHeaderKey.retryAfter) != nil
349 |
/host/spi-builder-workspace/Sources/Networking/BoxNetworkClient.swift:348:102: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'value'
346 | ) async throws -> FetchResponse {
347 | let statusCode = conversation.urlResponse.statusCode
348 | let isStatusCodeAcceptedWithRetryAfterHeader = statusCode == 202 && conversation.urlResponse.value(forHTTPHeaderField: HTTPHeaderKey.retryAfter) != nil
| `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'value'
349 |
350 | // OK
/host/spi-builder-workspace/Sources/Networking/BoxNetworkClient.swift:368:64: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'value'
366 | // Retryable
367 | if statusCode == 429 || statusCode >= 500 || isStatusCodeAcceptedWithRetryAfterHeader {
368 | let retryTimeout = Double(conversation.urlResponse.value(forHTTPHeaderField: HTTPHeaderKey.retryAfter) ?? "")
| `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'value'
369 | ?? networkSession.networkSettings.retryStrategy.getRetryTimeout(attempt: attempt)
370 | try await wait(seconds: retryTimeout)
/host/spi-builder-workspace/Sources/Networking/BoxNetworkClient.swift:386:28: error: cannot call value of non-function type 'ContinuousClock.Instant'
384 | return try await withCheckedThrowingContinuation { continuation in
385 | utilityQueue.asyncAfter(
386 | deadline: .now() + .milliseconds(Int(delay * 1000))
| `- error: cannot call value of non-function type 'ContinuousClock.Instant'
387 | ) {
388 | continuation.resume()
/host/spi-builder-workspace/Sources/Networking/DefaultNetworkClient.swift:19:32: error: cannot find 'DispatchQueue' in scope
17 | public class DefaultNetworkClient: NetworkClient {
18 |
19 | private let utilityQueue = DispatchQueue.global(qos: .utility)
| `- error: cannot find 'DispatchQueue' in scope
20 |
21 | /// The URLSession object used to perform network requests.
/host/spi-builder-workspace/Sources/Networking/DefaultNetworkClient.swift:19:59: error: cannot infer contextual base in reference to member 'utility'
17 | public class DefaultNetworkClient: NetworkClient {
18 |
19 | private let utilityQueue = DispatchQueue.global(qos: .utility)
| `- error: cannot infer contextual base in reference to member 'utility'
20 |
21 | /// The URLSession object used to perform network requests.
/host/spi-builder-workspace/Sources/Networking/DefaultNetworkClient.swift:22:26: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
20 |
21 | /// The URLSession object used to perform network requests.
22 | private let session: URLSession
| `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
23 |
24 | /// Handles redirect behavior for URLSession tasks on a per-task basis.
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSession = AnyObject
| `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Networking/DefaultNetworkClient.swift:31:32: error: 'URLSessionConfiguration' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
29 | /// - Parameters:
30 | /// - configuration: A configuration object that specifies certain behaviors, such as caching policies, timeouts, proxies, pipelining, TLS versions to support, cookie policies, and credential storage.
31 | public init(configuration: URLSessionConfiguration = URLSessionConfiguration.default) {
| `- error: 'URLSessionConfiguration' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
32 | self.redirectHandler = RedirectHandler()
33 | self.session = URLSession(configuration: configuration, delegate: redirectHandler, delegateQueue: nil)
Foundation.URLSessionConfiguration:2:18: note: 'URLSessionConfiguration' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSessionConfiguration = AnyObject
| `- note: 'URLSessionConfiguration' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Networking/DefaultNetworkClient.swift:31:82: error: type 'URLSessionConfiguration' (aka 'AnyObject') has no member 'default'
29 | /// - Parameters:
30 | /// - configuration: A configuration object that specifies certain behaviors, such as caching policies, timeouts, proxies, pipelining, TLS versions to support, cookie policies, and credential storage.
31 | public init(configuration: URLSessionConfiguration = URLSessionConfiguration.default) {
| `- error: type 'URLSessionConfiguration' (aka 'AnyObject') has no member 'default'
32 | self.redirectHandler = RedirectHandler()
33 | self.session = URLSession(configuration: configuration, delegate: redirectHandler, delegateQueue: nil)
/host/spi-builder-workspace/Sources/Networking/DefaultNetworkClient.swift: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:96:48: error: cannot find type 'URLRequest' in scope
94 | /// - Returns: Tuple of of (Data, URLResponse)
95 | /// - Throws: An error if the request fails for any reason.
96 | private func sendDataRequest(_ urlRequest: URLRequest, followRedirects: Bool) async throws -> (Data, URLResponse) {
| `- error: cannot find type 'URLRequest' in scope
97 | return try await withCheckedThrowingContinuation { [weak self] continuation in
98 | guard let self = self else {
/host/spi-builder-workspace/Sources/Networking/DefaultNetworkClient.swift:96:106: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
94 | /// - Returns: Tuple of of (Data, URLResponse)
95 | /// - Throws: An error if the request fails for any reason.
96 | private func sendDataRequest(_ urlRequest: URLRequest, followRedirects: Bool) async throws -> (Data, URLResponse) {
| `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
97 | return try await withCheckedThrowingContinuation { [weak self] continuation in
98 | guard let self = self else {
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
| `- note: 'URLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Networking/DefaultNetworkClient.swift:135:52: error: cannot find type 'URLRequest' in scope
133 | /// - Returns: Tuple of of (URL, URLResponse)
134 | /// - Throws: An error if the request fails for any reason.
135 | private func sendDownloadRequest(_ urlRequest: URLRequest, downloadDestinationURL: URL) async throws -> (URL, URLResponse) {
| `- error: cannot find type 'URLRequest' in scope
136 | return try await withCheckedThrowingContinuation { [weak self] continuation in
137 | guard let self = self else {
/host/spi-builder-workspace/Sources/Networking/DefaultNetworkClient.swift:135:115: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
133 | /// - Returns: Tuple of of (URL, URLResponse)
134 | /// - Throws: An error if the request fails for any reason.
135 | private func sendDownloadRequest(_ urlRequest: URLRequest, downloadDestinationURL: URL) async throws -> (URL, URLResponse) {
| `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
136 | return try await withCheckedThrowingContinuation { [weak self] continuation in
137 | guard let self = self else {
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
| `- note: 'URLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Networking/DefaultNetworkClient.swift:195:23: error: cannot find type 'URLRequest' in scope
193 | options: FetchOptions,
194 | networkSession: NetworkSession
195 | ) async throws -> URLRequest {
| `- error: cannot find type 'URLRequest' in scope
196 | var urlRequest = URLRequest(url: createEndpointUrl(url: options.url, params: options.params))
197 | urlRequest.httpMethod = options.method.uppercased()
/host/spi-builder-workspace/Sources/Networking/DefaultNetworkClient.swift:225:63: error: cannot find type 'URLRequest' in scope
223 | /// - networkSession: The Networking Session object which provides the URLSession object along with a network configuration parameters used in network communication.
224 | /// - Throws: An error if the operation fails for any reason.
225 | private func updateRequestWithHeaders(_ urlRequest: inout URLRequest, options: FetchOptions, networkSession: NetworkSession) async throws {
| `- error: cannot find type 'URLRequest' in scope
226 | urlRequest.allHTTPHeaderFields = options.headers
227 |
/host/spi-builder-workspace/Sources/Networking/DefaultNetworkClient.swift:244:75: error: cannot find type 'URLRequest' in scope
242 | /// - networkSession: The Networking Session object which provides the URLSession object along with a network configuration parameters used in network communication.
243 | /// - Throws: An error if the operation fails for any reason.
244 | private func updateRequestWithAuthorizationHeader(_ urlRequest: inout URLRequest, options: FetchOptions, networkSession: NetworkSession) async throws {
| `- error: cannot find type 'URLRequest' in scope
245 | if let auth = options.auth {
246 | let authHeaderValue = try await auth.retrieveAuthorizationHeader(networkSession: networkSession)
/host/spi-builder-workspace/Sources/Networking/DefaultNetworkClient.swift:256:69: error: cannot find type 'URLRequest' in scope
254 | /// - urlRequest: The request object.
255 | /// - multipartData: An array of `MultipartItem` which will be used to create the body of the request.
256 | private func updateRequestWithMultipartData(_ urlRequest: inout URLRequest, multipartData: [MultipartItem]) throws {
| `- error: cannot find type 'URLRequest' in scope
257 | var parameters: [String: Any] = [:]
258 | var partName = ""
/host/spi-builder-workspace/Sources/Networking/DefaultNetworkClient.swift:33:24: error: 'URLSession' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
31 | public init(configuration: URLSessionConfiguration = URLSessionConfiguration.default) {
32 | self.redirectHandler = RedirectHandler()
33 | self.session = URLSession(configuration: configuration, delegate: redirectHandler, delegateQueue: nil)
| `- error: 'URLSession' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
34 | }
35 |
/host/spi-builder-workspace/Sources/Networking/DefaultNetworkClient.swift:33:107: error: 'nil' requires a contextual type
31 | public init(configuration: URLSessionConfiguration = URLSessionConfiguration.default) {
32 | self.redirectHandler = RedirectHandler()
33 | self.session = URLSession(configuration: configuration, delegate: redirectHandler, delegateQueue: nil)
| `- error: 'nil' requires a contextual type
34 | }
35 |
/host/spi-builder-workspace/Sources/Networking/DefaultNetworkClient.swift:80:153: error: cannot infer contextual base in reference to member 'url'
78 | if let downloadDestinationUrl = options.downloadDestinationUrl, options.responseFormat == .binary {
79 | let (downloadUrl, urlResponse) = try await sendDownloadRequest(urlRequest, downloadDestinationURL: downloadDestinationUrl)
80 | let conversation = FetchConversation(options: options, urlRequest: urlRequest, urlResponse: urlResponse as! HTTPURLResponse, responseType: .url(downloadUrl))
| `- error: cannot infer contextual base in reference to member 'url'
81 | return try await processResponse(using: conversation, networkSession: networkSession, attempt: attempt)
82 | } else {
/host/spi-builder-workspace/Sources/Networking/DefaultNetworkClient.swift:84:153: error: cannot infer contextual base in reference to member 'data'
82 | } else {
83 | let (data, urlResponse) = try await sendDataRequest(urlRequest, followRedirects: options.followRedirects ?? true)
84 | let conversation = FetchConversation(options: options, urlRequest: urlRequest, urlResponse: urlResponse as! HTTPURLResponse, responseType: .data(data))
| `- error: cannot infer contextual base in reference to member 'data'
85 | return try await processResponse(using: conversation, networkSession: networkSession, attempt: attempt)
86 | }
/host/spi-builder-workspace/Sources/Networking/DefaultNetworkClient.swift:105:37: error: value of type 'URLSession' (aka 'AnyObject') has no member 'dataTask'
103 | }
104 |
105 | let task = self.session.dataTask(with: urlRequest) { data, response, error in
| `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'dataTask'
106 | if let error = error {
107 | continuation.resume(with: .failure(BoxNetworkError(message: error.localizedDescription, error: error)))
/host/spi-builder-workspace/Sources/Networking/DefaultNetworkClient.swift:144:37: error: value of type 'URLSession' (aka 'AnyObject') has no member 'downloadTask'
142 | }
143 |
144 | let task = self.session.downloadTask(with: urlRequest) { location, response, error in
| `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'downloadTask'
145 | if let error = error {
146 | continuation.resume(with: .failure(BoxNetworkError(message: error.localizedDescription, error: error)))
/host/spi-builder-workspace/Sources/Networking/DefaultNetworkClient.swift:196:26: error: cannot find 'URLRequest' in scope
194 | networkSession: NetworkSession
195 | ) async throws -> URLRequest {
196 | var urlRequest = URLRequest(url: createEndpointUrl(url: options.url, params: options.params))
| `- error: cannot find 'URLRequest' in scope
197 | urlRequest.httpMethod = options.method.uppercased()
198 |
/host/spi-builder-workspace/Sources/Networking/DefaultNetworkClient.swift:352:51: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
350 | attempt: Int
351 | ) async throws -> FetchResponse {
352 | let statusCode = conversation.urlResponse.statusCode
| `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
353 | let isStatusCodeAcceptedWithRetryAfterHeader = statusCode == 202 && conversation.urlResponse.value(forHTTPHeaderField: HTTPHeaderKey.retryAfter) != nil
354 |
/host/spi-builder-workspace/Sources/Networking/DefaultNetworkClient.swift:353:102: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'value'
351 | ) async throws -> FetchResponse {
352 | let statusCode = conversation.urlResponse.statusCode
353 | let isStatusCodeAcceptedWithRetryAfterHeader = statusCode == 202 && conversation.urlResponse.value(forHTTPHeaderField: HTTPHeaderKey.retryAfter) != nil
| `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'value'
354 |
355 | // OK
/host/spi-builder-workspace/Sources/Networking/DefaultNetworkClient.swift:373:64: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'value'
371 | // Retryable
372 | if statusCode == 429 || statusCode >= 500 || isStatusCodeAcceptedWithRetryAfterHeader {
373 | let retryTimeout = Double(conversation.urlResponse.value(forHTTPHeaderField: HTTPHeaderKey.retryAfter) ?? "")
| `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'value'
374 | ?? networkSession.networkSettings.retryStrategy.getRetryTimeout(attempt: attempt)
375 | try await wait(seconds: retryTimeout)
/host/spi-builder-workspace/Sources/Networking/DefaultNetworkClient.swift:391:28: error: cannot call value of non-function type 'ContinuousClock.Instant'
389 | return try await withCheckedThrowingContinuation { continuation in
390 | utilityQueue.asyncAfter(
391 | deadline: .now() + .milliseconds(Int(delay * 1000))
| `- error: cannot call value of non-function type 'ContinuousClock.Instant'
392 | ) {
393 | continuation.resume()
/host/spi-builder-workspace/Sources/Networking/FetchConversation.swift:17:21: error: cannot find type 'URLRequest' in scope
15 | let options: FetchOptions
16 | /// Represents an URL request.
17 | let urlRequest: URLRequest
| `- error: cannot find type 'URLRequest' in scope
18 | /// Represents a response to an HTTP URL.
19 | let urlResponse: HTTPURLResponse
/host/spi-builder-workspace/Sources/Networking/FetchConversation.swift:19:22: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
17 | let urlRequest: URLRequest
18 | /// Represents a response to an HTTP URL.
19 | let urlResponse: HTTPURLResponse
| `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
20 | /// Represents response type, either data or downloaded file
21 | let responseType: ResponseType
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias HTTPURLResponse = AnyObject
| `- note: 'HTTPURLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Networking/FetchConversation.swift:31:70: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
29 | /// - urlResponse: Represents a response to an HTTP URL
30 | /// - responseType: Represents response type, either data or downloaded file
31 | init(options: FetchOptions, urlRequest: URLRequest, urlResponse: HTTPURLResponse, responseType: ResponseType) {
| `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
32 | self.options = options
33 | self.urlRequest = urlRequest
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias HTTPURLResponse = AnyObject
| `- note: 'HTTPURLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Networking/FetchConversation.swift:42:53: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'allHeaderFields'
40 | /// - Returns: An instance of the`FetchResponse`.
41 | func convertToFetchResponse() -> FetchResponse {
42 | let headers: [String: String] = urlResponse.allHeaderFields.reduce(into: [:]) { result, pair in
| `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'allHeaderFields'
43 | if let key = pair.key as? String, let value = pair.value as? String {
44 | result[key] = value
/host/spi-builder-workspace/Sources/Networking/FetchConversation.swift:50:54: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
48 | switch self.responseType {
49 | case let .data(data):
50 | return FetchResponse(status: urlResponse.statusCode, headers: headers, url: options.url, data: SerializedData(data: data))
| `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
51 | case let .url(url):
52 | return FetchResponse(status: urlResponse.statusCode, headers: headers, url: options.url, data: nil, downloadDestinationUrl: url)
/host/spi-builder-workspace/Sources/Networking/FetchConversation.swift:52:54: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
50 | return FetchResponse(status: urlResponse.statusCode, headers: headers, url: options.url, data: SerializedData(data: data))
51 | case let .url(url):
52 | return FetchResponse(status: urlResponse.statusCode, headers: headers, url: options.url, data: nil, downloadDestinationUrl: url)
| `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
53 | }
54 | }
/host/spi-builder-workspace/Sources/Networking/RedirectHandler.swift: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 | }
[905/1104] Compiling BoxSdkGen AiAgentAsk.swift
[906/1104] Compiling BoxSdkGen AiAgentAskTypeField.swift
[907/1104] Compiling BoxSdkGen AiAgentAskOrAiAgentExtractOrAiAgentExtractStructuredOrAiAgentTextGen.swift
[908/1104] Compiling BoxSdkGen AiAgentAskOrAiAgentReference.swift
[909/1104] Compiling BoxSdkGen AiAgentBasicGenTool.swift
[910/1104] Compiling BoxSdkGen AiAgentBasicTextTool.swift
[911/1104] Compiling BoxSdkGen AiAgentBasicTextToolBase.swift
[912/1104] Compiling BoxSdkGen AiAgentBasicTextToolTextGen.swift
[913/1104] Compiling BoxSdkGen AiAgentExtract.swift
[914/1104] Compiling BoxSdkGen AiAgentExtractTypeField.swift
[915/1104] Compiling BoxSdkGen AiAgentExtractOrAiAgentReference.swift
[916/1104] Compiling BoxSdkGen AiAgentExtractStructured.swift
[917/1104] Compiling BoxSdkGen AiAgentExtractStructuredTypeField.swift
[918/1104] Compiling BoxSdkGen AiAgentExtractStructuredOrAiAgentReference.swift
[919/1104] Compiling BoxSdkGen AiAgentInfo.swift
[920/1104] Compiling BoxSdkGen AiAgentInfoModelsField.swift
[921/1104] Compiling BoxSdkGen AiAgentLongTextTool.swift
[922/1104] Compiling BoxSdkGen AiAgentLongTextToolEmbeddingsField.swift
[923/1104] Compiling BoxSdkGen AiAgentLongTextToolEmbeddingsStrategyField.swift
[924/1104] Compiling BoxSdkGen AiAgentLongTextToolTextGen.swift
[925/1104] Compiling BoxSdkGen AiAgentLongTextToolTextGenEmbeddingsField.swift
[926/1104] Compiling BoxSdkGen AiAgentLongTextToolTextGenEmbeddingsStrategyField.swift
[927/1104] Compiling BoxSdkGen AiAgentReference.swift
[928/1104] Compiling BoxSdkGen AiAgentReferenceTypeField.swift
[929/1104] Compiling BoxSdkGen AiAgentReferenceOrAiAgentTextGen.swift
[930/1129] 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 |
[931/1129] 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 |
[932/1129] 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 |
[933/1129] 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 |
[934/1129] 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 |
[935/1129] 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 |
[936/1129] 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 |
[937/1129] 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 |
[938/1129] 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 |
[939/1129] 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 |
[940/1129] 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 |
[941/1129] 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 |
[942/1129] 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 |
[943/1129] 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 |
[944/1129] 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 |
[945/1129] 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 |
[946/1129] 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 |
[947/1129] 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 |
[948/1129] 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 |
[949/1129] 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 |
[950/1129] 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 |
[951/1129] 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 |
[952/1129] 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 |
[953/1129] 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 |
[954/1129] 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 |
[955/1154] Compiling BoxSdkGen ClassificationTemplateFieldsOptionsStaticConfigField.swift
[956/1154] Compiling BoxSdkGen ClassificationTemplateFieldsTypeField.swift
[957/1154] Compiling BoxSdkGen ClassificationTemplateTemplateKeyField.swift
[958/1154] Compiling BoxSdkGen ClassificationTemplateTypeField.swift
[959/1154] Compiling BoxSdkGen ClientError.swift
[960/1154] Compiling BoxSdkGen ClientErrorCodeField.swift
[961/1154] Compiling BoxSdkGen ClientErrorTypeField.swift
[962/1154] Compiling BoxSdkGen Collaboration.swift
[963/1154] Compiling BoxSdkGen CollaborationAcceptanceRequirementsStatusField.swift
[964/1154] Compiling BoxSdkGen CollaborationAcceptanceRequirementsStatusStrongPasswordRequirementField.swift
[965/1154] Compiling BoxSdkGen CollaborationAcceptanceRequirementsStatusTermsOfServiceRequirementField.swift
[966/1154] Compiling BoxSdkGen CollaborationAcceptanceRequirementsStatusTwoFactorAuthenticationRequirementField.swift
[967/1154] Compiling BoxSdkGen CollaborationRoleField.swift
[968/1154] Compiling BoxSdkGen CollaborationStatusField.swift
[969/1154] Compiling BoxSdkGen CollaborationTypeField.swift
[970/1154] Compiling BoxSdkGen CollaborationAllowlistEntries.swift
[971/1154] Compiling BoxSdkGen CollaborationAllowlistEntry.swift
[972/1154] Compiling BoxSdkGen CollaborationAllowlistEntryDirectionField.swift
[973/1154] Compiling BoxSdkGen CollaborationAllowlistEntryEnterpriseField.swift
[974/1154] Compiling BoxSdkGen CollaborationAllowlistEntryEnterpriseTypeField.swift
[975/1154] Compiling BoxSdkGen CollaborationAllowlistEntryTypeField.swift
[976/1154] Compiling BoxSdkGen CollaborationAllowlistExemptTarget.swift
[977/1154] Compiling BoxSdkGen CollaborationAllowlistExemptTargetEnterpriseField.swift
[978/1154] Compiling BoxSdkGen CollaborationAllowlistExemptTargetEnterpriseTypeField.swift
[979/1154] 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 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 | }
[1006/1204] 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 | }
[1007/1204] 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 | }
[1008/1204] 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 | }
[1009/1204] 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 | }
[1010/1204] 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 | }
[1011/1204] 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 | }
[1012/1204] 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 | }
[1013/1204] 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 | }
[1014/1204] 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 | }
[1015/1204] 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 | }
[1016/1204] 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 | }
[1017/1204] 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 | }
[1018/1204] 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 | }
[1019/1204] 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 | }
[1020/1204] 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 | }
[1021/1204] 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 | }
[1022/1204] 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 | }
[1023/1204] 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 | }
[1024/1204] 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 | }
[1025/1204] 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 | }
[1026/1204] 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 | }
[1027/1204] 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 | }
[1028/1204] 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 | }
[1029/1204] 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 | }
[1030/1229] Compiling BoxSdkGen CollaborationAllowlistExemptTargets.swift
[1031/1229] Compiling BoxSdkGen Collaborations.swift
[1032/1229] Compiling BoxSdkGen CollaborationsOffsetPaginated.swift
[1033/1229] Compiling BoxSdkGen CollaboratorVariable.swift
[1034/1229] Compiling BoxSdkGen CollaboratorVariableTypeField.swift
[1035/1229] Compiling BoxSdkGen CollaboratorVariableVariableTypeField.swift
[1036/1229] Compiling BoxSdkGen CollaboratorVariableVariableValueField.swift
[1037/1229] Compiling BoxSdkGen CollaboratorVariableVariableValueTypeField.swift
[1038/1229] Compiling BoxSdkGen Collection.swift
[1039/1229] Compiling BoxSdkGen CollectionCollectionTypeField.swift
[1040/1229] Compiling BoxSdkGen CollectionNameField.swift
[1041/1229] Compiling BoxSdkGen CollectionTypeField.swift
[1042/1229] Compiling BoxSdkGen Collections.swift
[1043/1229] Compiling BoxSdkGen CollectionsOrderDirectionField.swift
[1044/1229] Compiling BoxSdkGen CollectionsOrderField.swift
[1045/1229] Compiling BoxSdkGen Comment.swift
[1046/1229] Compiling BoxSdkGen CommentItemField.swift
[1047/1229] Compiling BoxSdkGen CommentBase.swift
[1048/1229] Compiling BoxSdkGen CommentBaseTypeField.swift
[1049/1229] Compiling BoxSdkGen CommentFull.swift
[1050/1229] Compiling BoxSdkGen Comments.swift
[1051/1229] Compiling BoxSdkGen CommentsOrderDirectionField.swift
[1052/1229] Compiling BoxSdkGen CommentsOrderField.swift
[1053/1229] Compiling BoxSdkGen CompletionRuleVariable.swift
[1054/1229] Compiling BoxSdkGen CompletionRuleVariableTypeField.swift
[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/1304] Compiling BoxSdkGen GroupMembershipRoleField.swift
[1131/1304] Compiling BoxSdkGen GroupMembershipTypeField.swift
[1132/1304] Compiling BoxSdkGen GroupMemberships.swift
[1133/1304] Compiling BoxSdkGen GroupMembershipsOrderDirectionField.swift
[1134/1304] Compiling BoxSdkGen GroupMembershipsOrderField.swift
[1135/1304] Compiling BoxSdkGen GroupMini.swift
[1136/1304] Compiling BoxSdkGen GroupMiniGroupTypeField.swift
[1137/1304] Compiling BoxSdkGen GroupMiniOrUserCollaborations.swift
[1138/1304] Compiling BoxSdkGen Groups.swift
[1139/1304] Compiling BoxSdkGen GroupsOrderDirectionField.swift
[1140/1304] Compiling BoxSdkGen GroupsOrderField.swift
[1141/1304] Compiling BoxSdkGen IntegrationMapping.swift
[1142/1304] Compiling BoxSdkGen IntegrationMappingIntegrationTypeField.swift
[1143/1304] Compiling BoxSdkGen IntegrationMappingBase.swift
[1144/1304] Compiling BoxSdkGen IntegrationMappingBaseTypeField.swift
[1145/1304] Compiling BoxSdkGen IntegrationMappingBoxItemSlack.swift
[1146/1304] Compiling BoxSdkGen IntegrationMappingBoxItemSlackTypeField.swift
[1147/1304] Compiling BoxSdkGen IntegrationMappingPartnerItemSlack.swift
[1148/1304] Compiling BoxSdkGen IntegrationMappingPartnerItemSlackTypeField.swift
[1149/1304] Compiling BoxSdkGen IntegrationMappingPartnerItemSlackUnion.swift
[1150/1304] Compiling BoxSdkGen IntegrationMappingPartnerItemTeams.swift
[1151/1304] Compiling BoxSdkGen IntegrationMappingPartnerItemTeamsTypeField.swift
[1152/1304] Compiling BoxSdkGen IntegrationMappingPartnerItemTeamsCreateRequest.swift
[1153/1304] Compiling BoxSdkGen IntegrationMappingPartnerItemTeamsCreateRequestTypeField.swift
[1154/1304] Compiling BoxSdkGen IntegrationMappingPartnerItemTeamsUnion.swift
[1155/1304] Compiling BoxSdkGen FolderBase.swift
[1156/1304] Compiling BoxSdkGen FolderBaseTypeField.swift
[1157/1304] Compiling BoxSdkGen FolderFull.swift
[1158/1304] Compiling BoxSdkGen FolderFullAllowedInviteeRolesField.swift
[1159/1304] Compiling BoxSdkGen FolderFullAllowedSharedLinkAccessLevelsField.swift
[1160/1304] Compiling BoxSdkGen FolderFullClassificationField.swift
[1161/1304] Compiling BoxSdkGen FolderFullMetadataField.swift
[1162/1304] Compiling BoxSdkGen FolderFullPermissionsField.swift
[1163/1304] Compiling BoxSdkGen FolderFullSyncStateField.swift
[1164/1304] Compiling BoxSdkGen FolderFullWatermarkInfoField.swift
[1165/1304] Compiling BoxSdkGen FolderLock.swift
[1166/1304] Compiling BoxSdkGen FolderLockLockedOperationsField.swift
[1167/1304] Compiling BoxSdkGen FolderLocks.swift
[1168/1304] Compiling BoxSdkGen FolderMini.swift
[1169/1304] Compiling BoxSdkGen FolderReference.swift
[1170/1304] Compiling BoxSdkGen FolderReferenceTypeField.swift
[1171/1304] Compiling BoxSdkGen GenericSource.swift
[1172/1304] Compiling BoxSdkGen Group.swift
[1173/1304] Compiling BoxSdkGen GroupBase.swift
[1174/1304] Compiling BoxSdkGen GroupBaseTypeField.swift
[1175/1304] Compiling BoxSdkGen GroupFull.swift
[1176/1304] Compiling BoxSdkGen GroupFullInvitabilityLevelField.swift
[1177/1304] Compiling BoxSdkGen GroupFullMemberViewabilityLevelField.swift
[1178/1304] Compiling BoxSdkGen GroupFullPermissionsField.swift
[1179/1304] Compiling BoxSdkGen GroupMembership.swift
[1180/1329] Compiling BoxSdkGen FileVersionBaseTypeField.swift
[1181/1329] Compiling BoxSdkGen FileVersionFull.swift
[1182/1329] Compiling BoxSdkGen FileVersionLegalHold.swift
[1183/1329] Compiling BoxSdkGen FileVersionLegalHoldTypeField.swift
[1184/1329] Compiling BoxSdkGen FileVersionLegalHolds.swift
[1185/1329] Compiling BoxSdkGen FileVersionMini.swift
[1186/1329] Compiling BoxSdkGen FileVersionRetention.swift
[1187/1329] Compiling BoxSdkGen FileVersionRetentionTypeField.swift
[1188/1329] Compiling BoxSdkGen FileVersionRetentions.swift
[1189/1329] Compiling BoxSdkGen FileVersions.swift
[1190/1329] Compiling BoxSdkGen FileVersionsOrderDirectionField.swift
[1191/1329] Compiling BoxSdkGen FileVersionsOrderField.swift
[1192/1329] Compiling BoxSdkGen Files.swift
[1193/1329] Compiling BoxSdkGen FilesOnHold.swift
[1194/1329] Compiling BoxSdkGen FilesUnderRetention.swift
[1195/1329] Compiling BoxSdkGen Folder.swift
[1196/1329] Compiling BoxSdkGen FolderFolderUploadEmailAccessField.swift
[1197/1329] Compiling BoxSdkGen FolderFolderUploadEmailField.swift
[1198/1329] Compiling BoxSdkGen FolderItemStatusField.swift
[1199/1329] Compiling BoxSdkGen FolderPathCollectionField.swift
[1200/1329] Compiling BoxSdkGen FolderSharedLinkAccessField.swift
[1201/1329] Compiling BoxSdkGen FolderSharedLinkEffectiveAccessField.swift
[1202/1329] Compiling BoxSdkGen FolderSharedLinkEffectivePermissionField.swift
[1203/1329] Compiling BoxSdkGen FolderSharedLinkField.swift
[1204/1329] 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 MetadataFilter.swift
[1256/1454] Compiling BoxSdkGen MetadataFilterScopeField.swift
[1257/1454] Compiling BoxSdkGen MetadataFull.swift
[1258/1454] Compiling BoxSdkGen MetadataInstanceValue.swift
[1259/1454] Compiling BoxSdkGen MetadataQuery.swift
[1260/1454] Compiling BoxSdkGen MetadataQueryOrderByDirectionField.swift
[1261/1454] Compiling BoxSdkGen MetadataQueryOrderByField.swift
[1262/1454] Compiling BoxSdkGen MetadataQueryIndex.swift
[1263/1454] Compiling BoxSdkGen MetadataQueryIndexFieldsField.swift
[1264/1454] Compiling BoxSdkGen MetadataQueryIndexFieldsSortDirectionField.swift
[1265/1454] Compiling BoxSdkGen MetadataQueryIndexStatusField.swift
[1266/1454] Compiling BoxSdkGen MetadataQueryResults.swift
[1267/1454] Compiling BoxSdkGen MetadataTemplate.swift
[1268/1454] Compiling BoxSdkGen MetadataTemplateFieldsField.swift
[1269/1454] Compiling BoxSdkGen MetadataTemplateFieldsOptionsField.swift
[1270/1454] Compiling BoxSdkGen MetadataTemplateFieldsTypeField.swift
[1271/1454] Compiling BoxSdkGen MetadataTemplateTypeField.swift
[1272/1454] Compiling BoxSdkGen MetadataTemplates.swift
[1273/1454] Compiling BoxSdkGen Metadatas.swift
[1274/1454] Compiling BoxSdkGen OAuth2Error.swift
[1275/1454] Compiling BoxSdkGen Outcome.swift
[1276/1454] Compiling BoxSdkGen PostOAuth2Revoke.swift
[1277/1454] Compiling BoxSdkGen PostOAuth2Token.swift
[1278/1454] Compiling BoxSdkGen PostOAuth2TokenActorTokenTypeField.swift
[1279/1454] Compiling BoxSdkGen PostOAuth2TokenBoxSubjectTypeField.swift
[1280/1479] Compiling BoxSdkGen PostOAuth2TokenGrantTypeField.swift
[1281/1479] Compiling BoxSdkGen PostOAuth2TokenSubjectTokenTypeField.swift
[1282/1479] Compiling BoxSdkGen PostOAuth2TokenRefreshAccessToken.swift
[1283/1479] Compiling BoxSdkGen PostOAuth2TokenRefreshAccessTokenGrantTypeField.swift
[1284/1479] Compiling BoxSdkGen RealtimeServer.swift
[1285/1479] Compiling BoxSdkGen RealtimeServers.swift
[1286/1479] Compiling BoxSdkGen RecentItem.swift
[1287/1479] Compiling BoxSdkGen RecentItemInteractionTypeField.swift
[1288/1479] Compiling BoxSdkGen RecentItems.swift
[1289/1479] Compiling BoxSdkGen RetentionPolicies.swift
[1290/1479] Compiling BoxSdkGen RetentionPolicy.swift
[1291/1479] Compiling BoxSdkGen RetentionPolicyAssignmentCountsField.swift
[1292/1479] Compiling BoxSdkGen RetentionPolicyPolicyTypeField.swift
[1293/1479] Compiling BoxSdkGen RetentionPolicyRetentionTypeField.swift
[1294/1479] Compiling BoxSdkGen RetentionPolicyStatusField.swift
[1295/1479] Compiling BoxSdkGen RetentionPolicyAssignment.swift
[1296/1479] Compiling BoxSdkGen RetentionPolicyAssignmentAssignedToField.swift
[1297/1479] Compiling BoxSdkGen RetentionPolicyAssignmentAssignedToTypeField.swift
[1298/1479] Compiling BoxSdkGen RetentionPolicyAssignmentFilterFieldsField.swift
[1299/1479] Compiling BoxSdkGen RetentionPolicyAssignmentTypeField.swift
[1300/1479] Compiling BoxSdkGen RetentionPolicyAssignmentBase.swift
[1301/1479] Compiling BoxSdkGen RetentionPolicyAssignmentBaseTypeField.swift
[1302/1479] Compiling BoxSdkGen RetentionPolicyAssignments.swift
[1303/1479] Compiling BoxSdkGen RetentionPolicyBase.swift
[1304/1479] Compiling BoxSdkGen RetentionPolicyBaseTypeField.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 StoragePolicyAssignmentTypeField.swift
[1331/1529] Compiling BoxSdkGen StoragePolicyAssignments.swift
[1332/1529] Compiling BoxSdkGen StoragePolicyMini.swift
[1333/1529] Compiling BoxSdkGen StoragePolicyMiniTypeField.swift
[1334/1529] Compiling BoxSdkGen Task.swift
[1335/1529] Compiling BoxSdkGen TaskActionField.swift
[1336/1529] Compiling BoxSdkGen TaskCompletionRuleField.swift
[1337/1529] Compiling BoxSdkGen TaskTypeField.swift
[1338/1529] Compiling BoxSdkGen TaskAssignment.swift
[1339/1529] Compiling BoxSdkGen TaskAssignmentResolutionStateField.swift
[1340/1529] Compiling BoxSdkGen TaskAssignmentTypeField.swift
[1341/1529] Compiling BoxSdkGen TaskAssignments.swift
[1342/1529] Compiling BoxSdkGen Tasks.swift
[1343/1529] Compiling BoxSdkGen TemplateSigner.swift
[1344/1529] Compiling BoxSdkGen TemplateSignerRoleField.swift
[1345/1529] Compiling BoxSdkGen TemplateSignerInput.swift
[1346/1529] Compiling BoxSdkGen TemplateSignerInputContentTypeField.swift
[1347/1529] Compiling BoxSdkGen TemplateSignerInputCoordinatesField.swift
[1348/1529] Compiling BoxSdkGen TemplateSignerInputDimensionsField.swift
[1349/1529] Compiling BoxSdkGen TemplateSignerInputTypeField.swift
[1350/1529] Compiling BoxSdkGen TermsOfService.swift
[1351/1529] Compiling BoxSdkGen TermsOfServiceEnterpriseField.swift
[1352/1529] Compiling BoxSdkGen TermsOfServiceEnterpriseTypeField.swift
[1353/1529] Compiling BoxSdkGen TermsOfServiceStatusField.swift
[1354/1529] Compiling BoxSdkGen TermsOfServiceTosTypeField.swift
[1355/1553] Compiling BoxSdkGen SkillInvocationEnterpriseTypeField.swift
[1356/1553] Compiling BoxSdkGen SkillInvocationSkillField.swift
[1357/1553] Compiling BoxSdkGen SkillInvocationSkillTypeField.swift
[1358/1553] Compiling BoxSdkGen SkillInvocationStatusField.swift
[1359/1553] Compiling BoxSdkGen SkillInvocationStatusStateField.swift
[1360/1553] Compiling BoxSdkGen SkillInvocationTokenField.swift
[1361/1553] Compiling BoxSdkGen SkillInvocationTokenReadField.swift
[1362/1553] Compiling BoxSdkGen SkillInvocationTokenReadTokenTypeField.swift
[1363/1553] Compiling BoxSdkGen SkillInvocationTokenWriteField.swift
[1364/1553] Compiling BoxSdkGen SkillInvocationTokenWriteTokenTypeField.swift
[1365/1553] Compiling BoxSdkGen SkillInvocationTypeField.swift
[1366/1553] Compiling BoxSdkGen StatusSkillCard.swift
[1367/1553] Compiling BoxSdkGen StatusSkillCardInvocationField.swift
[1368/1553] Compiling BoxSdkGen StatusSkillCardInvocationTypeField.swift
[1369/1553] Compiling BoxSdkGen StatusSkillCardSkillCardTitleField.swift
[1370/1553] Compiling BoxSdkGen StatusSkillCardSkillCardTypeField.swift
[1371/1553] Compiling BoxSdkGen StatusSkillCardSkillField.swift
[1372/1553] Compiling BoxSdkGen StatusSkillCardSkillTypeField.swift
[1373/1553] Compiling BoxSdkGen StatusSkillCardStatusCodeField.swift
[1374/1553] Compiling BoxSdkGen StatusSkillCardStatusField.swift
[1375/1553] Compiling BoxSdkGen StatusSkillCardTypeField.swift
[1376/1553] Compiling BoxSdkGen StoragePolicies.swift
[1377/1553] Compiling BoxSdkGen StoragePolicy.swift
[1378/1553] Compiling BoxSdkGen StoragePolicyAssignment.swift
[1379/1553] Compiling BoxSdkGen StoragePolicyAssignmentAssignedToField.swift
[1380/1553] Compiling BoxSdkGen TermsOfServiceBase.swift
[1381/1553] Compiling BoxSdkGen TermsOfServiceBaseTypeField.swift
[1382/1553] Compiling BoxSdkGen TermsOfServiceUserStatus.swift
[1383/1553] Compiling BoxSdkGen TermsOfServiceUserStatusTypeField.swift
[1384/1553] Compiling BoxSdkGen TermsOfServiceUserStatuses.swift
[1385/1553] Compiling BoxSdkGen TermsOfServices.swift
[1386/1553] Compiling BoxSdkGen TimelineSkillCard.swift
[1387/1553] Compiling BoxSdkGen TimelineSkillCardEntriesAppearsField.swift
[1388/1553] Compiling BoxSdkGen TimelineSkillCardEntriesField.swift
[1389/1553] Compiling BoxSdkGen TimelineSkillCardInvocationField.swift
[1390/1553] Compiling BoxSdkGen TimelineSkillCardInvocationTypeField.swift
[1391/1553] Compiling BoxSdkGen TimelineSkillCardSkillCardTitleField.swift
[1392/1553] Compiling BoxSdkGen TimelineSkillCardSkillCardTypeField.swift
[1393/1553] Compiling BoxSdkGen TimelineSkillCardSkillField.swift
[1394/1553] Compiling BoxSdkGen TimelineSkillCardSkillTypeField.swift
[1395/1553] Compiling BoxSdkGen TimelineSkillCardTypeField.swift
[1396/1553] Compiling BoxSdkGen TrackingCode.swift
[1397/1553] Compiling BoxSdkGen TrackingCodeTypeField.swift
[1398/1553] Compiling BoxSdkGen TranscriptSkillCard.swift
[1399/1553] Compiling BoxSdkGen TranscriptSkillCardEntriesAppearsField.swift
[1400/1553] Compiling BoxSdkGen TranscriptSkillCardEntriesField.swift
[1401/1553] Compiling BoxSdkGen TranscriptSkillCardInvocationField.swift
[1402/1553] Compiling BoxSdkGen TranscriptSkillCardInvocationTypeField.swift
[1403/1553] Compiling BoxSdkGen TranscriptSkillCardSkillCardTitleField.swift
[1404/1553] Compiling BoxSdkGen TranscriptSkillCardSkillCardTypeField.swift
[1405/1601] Compiling BoxSdkGen ShieldInformationBarrierReports.swift
[1406/1601] Compiling BoxSdkGen ShieldInformationBarrierSegment.swift
[1407/1601] Compiling BoxSdkGen ShieldInformationBarrierSegmentTypeField.swift
[1408/1601] Compiling BoxSdkGen ShieldInformationBarrierSegmentMember.swift
[1409/1601] Compiling BoxSdkGen ShieldInformationBarrierSegmentMemberShieldInformationBarrierSegmentField.swift
[1410/1601] Compiling BoxSdkGen ShieldInformationBarrierSegmentMemberShieldInformationBarrierSegmentTypeField.swift
[1411/1601] Compiling BoxSdkGen ShieldInformationBarrierSegmentMemberBase.swift
[1412/1601] Compiling BoxSdkGen ShieldInformationBarrierSegmentMemberBaseTypeField.swift
[1413/1601] Compiling BoxSdkGen ShieldInformationBarrierSegmentMemberMini.swift
[1414/1601] Compiling BoxSdkGen ShieldInformationBarrierSegmentMembers.swift
[1415/1601] Compiling BoxSdkGen ShieldInformationBarrierSegmentRestriction.swift
[1416/1601] Compiling BoxSdkGen ShieldInformationBarrierSegmentRestrictionBase.swift
[1417/1601] Compiling BoxSdkGen ShieldInformationBarrierSegmentRestrictionBaseTypeField.swift
[1418/1601] Compiling BoxSdkGen ShieldInformationBarrierSegmentRestrictionMini.swift
[1419/1601] Compiling BoxSdkGen ShieldInformationBarrierSegmentRestrictionMiniRestrictedSegmentField.swift
[1420/1601] Compiling BoxSdkGen ShieldInformationBarrierSegmentRestrictionMiniRestrictedSegmentTypeField.swift
[1421/1601] Compiling BoxSdkGen ShieldInformationBarrierSegmentRestrictionMiniShieldInformationBarrierSegmentField.swift
[1422/1601] Compiling BoxSdkGen ShieldInformationBarrierSegmentRestrictionMiniShieldInformationBarrierSegmentTypeField.swift
[1423/1601] Compiling BoxSdkGen ShieldInformationBarrierSegmentRestrictions.swift
[1424/1601] Compiling BoxSdkGen ShieldInformationBarrierSegments.swift
[1425/1601] Compiling BoxSdkGen ShieldInformationBarriers.swift
[1426/1601] Compiling BoxSdkGen SignRequest.swift
[1427/1601] Compiling BoxSdkGen SignRequestSignFilesField.swift
[1428/1601] Compiling BoxSdkGen SignRequestStatusField.swift
[1429/1601] Compiling BoxSdkGen SignRequestTypeField.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 TranscriptSkillCardSkillField.swift
[1456/1649] Compiling BoxSdkGen TranscriptSkillCardSkillTypeField.swift
[1457/1649] Compiling BoxSdkGen TranscriptSkillCardTypeField.swift
[1458/1649] Compiling BoxSdkGen TrashFile.swift
[1459/1649] Compiling BoxSdkGen TrashFileItemStatusField.swift
[1460/1649] Compiling BoxSdkGen TrashFilePathCollectionEntriesField.swift
[1461/1649] Compiling BoxSdkGen TrashFilePathCollectionEntriesTypeField.swift
[1462/1649] Compiling BoxSdkGen TrashFilePathCollectionField.swift
[1463/1649] Compiling BoxSdkGen TrashFileTypeField.swift
[1464/1649] Compiling BoxSdkGen TrashFileRestored.swift
[1465/1649] Compiling BoxSdkGen TrashFileRestoredItemStatusField.swift
[1466/1649] Compiling BoxSdkGen TrashFileRestoredPathCollectionField.swift
[1467/1649] Compiling BoxSdkGen TrashFileRestoredTypeField.swift
[1468/1649] Compiling BoxSdkGen TrashFolder.swift
[1469/1649] Compiling BoxSdkGen TrashFolderItemStatusField.swift
[1470/1649] Compiling BoxSdkGen TrashFolderPathCollectionEntriesField.swift
[1471/1649] Compiling BoxSdkGen TrashFolderPathCollectionEntriesTypeField.swift
[1472/1649] Compiling BoxSdkGen TrashFolderPathCollectionField.swift
[1473/1649] Compiling BoxSdkGen TrashFolderTypeField.swift
[1474/1649] Compiling BoxSdkGen TrashFolderRestored.swift
[1475/1649] Compiling BoxSdkGen TrashFolderRestoredItemStatusField.swift
[1476/1649] Compiling BoxSdkGen TrashFolderRestoredPathCollectionField.swift
[1477/1649] Compiling BoxSdkGen TrashFolderRestoredTypeField.swift
[1478/1649] Compiling BoxSdkGen TrashWebLink.swift
[1479/1649] Compiling BoxSdkGen TrashWebLinkItemStatusField.swift
[1480/1673] Compiling BoxSdkGen TrashWebLinkPathCollectionEntriesField.swift
[1481/1673] Compiling BoxSdkGen TrashWebLinkPathCollectionEntriesTypeField.swift
[1482/1673] Compiling BoxSdkGen TrashWebLinkPathCollectionField.swift
[1483/1673] Compiling BoxSdkGen TrashWebLinkTypeField.swift
[1484/1673] Compiling BoxSdkGen TrashWebLinkRestored.swift
[1485/1673] Compiling BoxSdkGen TrashWebLinkRestoredItemStatusField.swift
[1486/1673] Compiling BoxSdkGen TrashWebLinkRestoredPathCollectionField.swift
[1487/1673] Compiling BoxSdkGen TrashWebLinkRestoredTypeField.swift
[1488/1673] Compiling BoxSdkGen UploadPart.swift
[1489/1673] Compiling BoxSdkGen UploadPartMini.swift
[1490/1673] Compiling BoxSdkGen UploadParts.swift
[1491/1673] Compiling BoxSdkGen UploadPartsOrderDirectionField.swift
[1492/1673] Compiling BoxSdkGen UploadPartsOrderField.swift
[1493/1673] Compiling BoxSdkGen UploadSession.swift
[1494/1673] Compiling BoxSdkGen UploadSessionSessionEndpointsField.swift
[1495/1673] Compiling BoxSdkGen UploadSessionTypeField.swift
[1496/1673] Compiling BoxSdkGen UploadUrl.swift
[1497/1673] Compiling BoxSdkGen UploadedPart.swift
[1498/1673] Compiling BoxSdkGen User.swift
[1499/1673] Compiling BoxSdkGen UserNotificationEmailField.swift
[1500/1673] Compiling BoxSdkGen UserStatusField.swift
[1501/1673] Compiling BoxSdkGen UserAvatar.swift
[1502/1673] Compiling BoxSdkGen UserAvatarPicUrlsField.swift
[1503/1673] Compiling BoxSdkGen UserBase.swift
[1504/1673] Compiling BoxSdkGen UserBaseTypeField.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 HubItemReferenceV2025R0.swift
[1531/1673] Compiling BoxSdkGen HubItemV2025R0.swift
[1532/1673] Compiling BoxSdkGen HubItemV2025R0TypeField.swift
[1533/1673] Compiling BoxSdkGen HubItemsManageRequestV2025R0.swift
[1534/1673] Compiling BoxSdkGen HubItemsManageResponseV2025R0.swift
[1535/1673] Compiling BoxSdkGen HubItemsV2025R0.swift
[1536/1673] Compiling BoxSdkGen HubUpdateRequestV2025R0.swift
[1537/1673] Compiling BoxSdkGen HubV2025R0.swift
[1538/1673] Compiling BoxSdkGen HubsV2025R0.swift
[1539/1673] Compiling BoxSdkGen ShieldListContentCountryV2025R0.swift
[1540/1673] Compiling BoxSdkGen ShieldListContentCountryV2025R0TypeField.swift
[1541/1673] Compiling BoxSdkGen ShieldListContentDomainV2025R0.swift
[1542/1673] Compiling BoxSdkGen ShieldListContentDomainV2025R0TypeField.swift
[1543/1673] Compiling BoxSdkGen ShieldListContentEmailV2025R0.swift
[1544/1673] Compiling BoxSdkGen ShieldListContentEmailV2025R0TypeField.swift
[1545/1673] Compiling BoxSdkGen ShieldListContentIntegrationV2025R0.swift
[1546/1673] Compiling BoxSdkGen ShieldListContentIntegrationV2025R0IntegrationsField.swift
[1547/1673] Compiling BoxSdkGen ShieldListContentIntegrationV2025R0TypeField.swift
[1548/1673] Compiling BoxSdkGen ShieldListContentIpV2025R0.swift
[1549/1673] Compiling BoxSdkGen ShieldListContentIpV2025R0TypeField.swift
[1550/1673] Compiling BoxSdkGen ShieldListContentRequestV2025R0.swift
[1551/1673] Compiling BoxSdkGen ShieldListContentV2025R0.swift
[1552/1673] Compiling BoxSdkGen ShieldListMiniV2025R0.swift
[1553/1673] Compiling BoxSdkGen ShieldListMiniV2025R0ContentField.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 DocGenJobV2025R0.swift
[1579/1673] Compiling BoxSdkGen DocGenJobV2025R0StatusField.swift
[1580/1673] Compiling BoxSdkGen DocGenJobsFullV2025R0.swift
[1581/1673] Compiling BoxSdkGen DocGenJobsV2025R0.swift
[1582/1673] Compiling BoxSdkGen DocGenTagV2025R0.swift
[1583/1673] Compiling BoxSdkGen DocGenTagV2025R0TagTypeField.swift
[1584/1673] Compiling BoxSdkGen DocGenTagsProcessingMessageV2025R0.swift
[1585/1673] Compiling BoxSdkGen DocGenTagsV2025R0.swift
[1586/1673] Compiling BoxSdkGen DocGenTemplateBaseV2025R0.swift
[1587/1673] Compiling BoxSdkGen DocGenTemplateCreateRequestV2025R0.swift
[1588/1673] Compiling BoxSdkGen DocGenTemplateV2025R0.swift
[1589/1673] Compiling BoxSdkGen DocGenTemplatesV2025R0.swift
[1590/1673] Compiling BoxSdkGen EnterpriseReferenceV2025R0.swift
[1591/1673] Compiling BoxSdkGen EnterpriseReferenceV2025R0TypeField.swift
[1592/1673] Compiling BoxSdkGen FileReferenceOrFolderReferenceOrWeblinkReferenceV2025R0.swift
[1593/1673] Compiling BoxSdkGen FileReferenceV2025R0.swift
[1594/1673] Compiling BoxSdkGen FileReferenceV2025R0TypeField.swift
[1595/1673] Compiling BoxSdkGen FileVersionBaseV2025R0.swift
[1596/1673] Compiling BoxSdkGen FileVersionBaseV2025R0TypeField.swift
[1597/1673] Compiling BoxSdkGen FolderReferenceV2025R0.swift
[1598/1673] Compiling BoxSdkGen FolderReferenceV2025R0TypeField.swift
[1599/1673] Compiling BoxSdkGen GroupBaseV2025R0.swift
[1600/1673] Compiling BoxSdkGen GroupBaseV2025R0TypeField.swift
[1601/1673] Compiling BoxSdkGen GroupMiniV2025R0.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