The Swift Package Index logo.Swift Package Index

Track the adoption of Swift 6 strict concurrency checks for data race safety. How many packages are Ready for Swift 6?

Build Information

Successful build of BoxSdkGen, reference 0.5.0-cryptomator (b2bb9d), with Swift 6.0 for macOS (SPM) on 17 Sep 2024 06:58:29 UTC.

Swift 6 data race errors: 8

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.0.0-Release.Candidate.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete

Build Log

/Users/admin/builder/spi-builder-workspace/Sources/Networking/NetworkClient.swift:17:14: warning: non-final class 'NetworkClient' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 15 |
 16 | /// Networking layer interface
 17 | public class NetworkClient: NSObject, URLSessionDelegate, URLSessionTaskDelegate, URLSessionDataDelegate, URLSessionDownloadDelegate {
    |              `- warning: non-final class 'NetworkClient' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 18 |     public static let shared = NetworkClient()
 19 |
/Users/admin/builder/spi-builder-workspace/Sources/Networking/NetworkClient.swift:22:17: warning: stored property 'taskInfos' of 'Sendable'-conforming class 'NetworkClient' is mutable; this is an error in the Swift 6 language mode
 20 |     private let utilityQueue = DispatchQueue.global(qos: .utility)
 21 |     private let continuationQueue = DispatchQueue(label: "BoxSdkGen.NetworkClient.continuationQueue.\(UUID().uuidString)")
 22 |     private var taskInfos: [Int: TaskInfo] = [:]
    |                 `- warning: stored property 'taskInfos' of 'Sendable'-conforming class 'NetworkClient' is mutable; this is an error in the Swift 6 language mode
 23 |
 24 |     private override init() {
[917/1100] Compiling BoxSdkGen GetZipDownloadContentHeaders.swift
/Users/admin/builder/spi-builder-workspace/Sources/Managers/Webhooks/WebhooksManager.swift:83:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it
81 |     public func deleteWebhookById(webhookId: String, headers: DeleteWebhookByIdHeaders = DeleteWebhookByIdHeaders()) async throws {
82 |         let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
83 |         let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/webhooks/")\(webhookId)", method: "DELETE", headers: headersMap, responseFormat: nil, auth: self.auth, networkSession: self.networkSession))
   |             `- warning: immutable value 'response' was never used; consider replacing with '_' or removing it
84 |     }
85 |
/Users/admin/builder/spi-builder-workspace/Sources/Managers/Workflows/WorkflowsManager.swift:44:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it
42 |     public func startWorkflow(workflowId: String, requestBody: StartWorkflowRequestBody, headers: StartWorkflowHeaders = StartWorkflowHeaders()) async throws {
43 |         let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
44 |         let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/workflows/")\(workflowId)\("/start")", method: "POST", headers: headersMap, data: try requestBody.serialize(), contentType: "application/json", responseFormat: nil, auth: self.auth, networkSession: self.networkSession))
   |             `- warning: immutable value 'response' was never used; consider replacing with '_' or removing it
45 |     }
46 |
/Users/admin/builder/spi-builder-workspace/Sources/Networking/BoxConstants.swift:24:16: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'OSInformation' may have shared mutable state; this is an error in the Swift 6 language mode
21 | }
22 |
23 | fileprivate class OSInformation {
   |                   `- note: class 'OSInformation' does not conform to the 'Sendable' protocol
24 |     static let shared = OSInformation()
   |                |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'OSInformation' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |
26 |     lazy var name: String = {
/Users/admin/builder/spi-builder-workspace/Sources/Networking/NetworkClient.swift:17:14: warning: non-final class 'NetworkClient' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 15 |
 16 | /// Networking layer interface
 17 | public class NetworkClient: NSObject, URLSessionDelegate, URLSessionTaskDelegate, URLSessionDataDelegate, URLSessionDownloadDelegate {
    |              `- warning: non-final class 'NetworkClient' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 18 |     public static let shared = NetworkClient()
 19 |
/Users/admin/builder/spi-builder-workspace/Sources/Networking/NetworkClient.swift:22:17: warning: stored property 'taskInfos' of 'Sendable'-conforming class 'NetworkClient' is mutable; this is an error in the Swift 6 language mode
 20 |     private let utilityQueue = DispatchQueue.global(qos: .utility)
 21 |     private let continuationQueue = DispatchQueue(label: "BoxSdkGen.NetworkClient.continuationQueue.\(UUID().uuidString)")
 22 |     private var taskInfos: [Int: TaskInfo] = [:]
    |                 `- warning: stored property 'taskInfos' of 'Sendable'-conforming class 'NetworkClient' is mutable; this is an error in the Swift 6 language mode
 23 |
 24 |     private override init() {
[918/1100] Compiling BoxSdkGen GetZipDownloadStatusHeaders.swift
/Users/admin/builder/spi-builder-workspace/Sources/Managers/Webhooks/WebhooksManager.swift:83:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it
81 |     public func deleteWebhookById(webhookId: String, headers: DeleteWebhookByIdHeaders = DeleteWebhookByIdHeaders()) async throws {
82 |         let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
83 |         let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/webhooks/")\(webhookId)", method: "DELETE", headers: headersMap, responseFormat: nil, auth: self.auth, networkSession: self.networkSession))
   |             `- warning: immutable value 'response' was never used; consider replacing with '_' or removing it
84 |     }
85 |
/Users/admin/builder/spi-builder-workspace/Sources/Managers/Workflows/WorkflowsManager.swift:44:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it
42 |     public func startWorkflow(workflowId: String, requestBody: StartWorkflowRequestBody, headers: StartWorkflowHeaders = StartWorkflowHeaders()) async throws {
43 |         let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
44 |         let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/workflows/")\(workflowId)\("/start")", method: "POST", headers: headersMap, data: try requestBody.serialize(), contentType: "application/json", responseFormat: nil, auth: self.auth, networkSession: self.networkSession))
   |             `- warning: immutable value 'response' was never used; consider replacing with '_' or removing it
45 |     }
46 |
/Users/admin/builder/spi-builder-workspace/Sources/Networking/BoxConstants.swift:24:16: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'OSInformation' may have shared mutable state; this is an error in the Swift 6 language mode
21 | }
22 |
23 | fileprivate class OSInformation {
   |                   `- note: class 'OSInformation' does not conform to the 'Sendable' protocol
24 |     static let shared = OSInformation()
   |                |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'OSInformation' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |
26 |     lazy var name: String = {
/Users/admin/builder/spi-builder-workspace/Sources/Networking/NetworkClient.swift:17:14: warning: non-final class 'NetworkClient' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 15 |
 16 | /// Networking layer interface
 17 | public class NetworkClient: NSObject, URLSessionDelegate, URLSessionTaskDelegate, URLSessionDataDelegate, URLSessionDownloadDelegate {
    |              `- warning: non-final class 'NetworkClient' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 18 |     public static let shared = NetworkClient()
 19 |
/Users/admin/builder/spi-builder-workspace/Sources/Networking/NetworkClient.swift:22:17: warning: stored property 'taskInfos' of 'Sendable'-conforming class 'NetworkClient' is mutable; this is an error in the Swift 6 language mode
 20 |     private let utilityQueue = DispatchQueue.global(qos: .utility)
 21 |     private let continuationQueue = DispatchQueue(label: "BoxSdkGen.NetworkClient.continuationQueue.\(UUID().uuidString)")
 22 |     private var taskInfos: [Int: TaskInfo] = [:]
    |                 `- warning: stored property 'taskInfos' of 'Sendable'-conforming class 'NetworkClient' is mutable; this is an error in the Swift 6 language mode
 23 |
 24 |     private override init() {
[919/1100] Compiling BoxSdkGen ZipDownloadsManager.swift
/Users/admin/builder/spi-builder-workspace/Sources/Managers/Webhooks/WebhooksManager.swift:83:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it
81 |     public func deleteWebhookById(webhookId: String, headers: DeleteWebhookByIdHeaders = DeleteWebhookByIdHeaders()) async throws {
82 |         let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
83 |         let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/webhooks/")\(webhookId)", method: "DELETE", headers: headersMap, responseFormat: nil, auth: self.auth, networkSession: self.networkSession))
   |             `- warning: immutable value 'response' was never used; consider replacing with '_' or removing it
84 |     }
85 |
/Users/admin/builder/spi-builder-workspace/Sources/Managers/Workflows/WorkflowsManager.swift:44:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it
42 |     public func startWorkflow(workflowId: String, requestBody: StartWorkflowRequestBody, headers: StartWorkflowHeaders = StartWorkflowHeaders()) async throws {
43 |         let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
44 |         let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/workflows/")\(workflowId)\("/start")", method: "POST", headers: headersMap, data: try requestBody.serialize(), contentType: "application/json", responseFormat: nil, auth: self.auth, networkSession: self.networkSession))
   |             `- warning: immutable value 'response' was never used; consider replacing with '_' or removing it
45 |     }
46 |
/Users/admin/builder/spi-builder-workspace/Sources/Networking/BoxConstants.swift:24:16: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'OSInformation' may have shared mutable state; this is an error in the Swift 6 language mode
21 | }
22 |
23 | fileprivate class OSInformation {
   |                   `- note: class 'OSInformation' does not conform to the 'Sendable' protocol
24 |     static let shared = OSInformation()
   |                |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'OSInformation' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |
26 |     lazy var name: String = {
/Users/admin/builder/spi-builder-workspace/Sources/Networking/NetworkClient.swift:17:14: warning: non-final class 'NetworkClient' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 15 |
 16 | /// Networking layer interface
 17 | public class NetworkClient: NSObject, URLSessionDelegate, URLSessionTaskDelegate, URLSessionDataDelegate, URLSessionDownloadDelegate {
    |              `- warning: non-final class 'NetworkClient' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 18 |     public static let shared = NetworkClient()
 19 |
/Users/admin/builder/spi-builder-workspace/Sources/Networking/NetworkClient.swift:22:17: warning: stored property 'taskInfos' of 'Sendable'-conforming class 'NetworkClient' is mutable; this is an error in the Swift 6 language mode
 20 |     private let utilityQueue = DispatchQueue.global(qos: .utility)
 21 |     private let continuationQueue = DispatchQueue(label: "BoxSdkGen.NetworkClient.continuationQueue.\(UUID().uuidString)")
 22 |     private var taskInfos: [Int: TaskInfo] = [:]
    |                 `- warning: stored property 'taskInfos' of 'Sendable'-conforming class 'NetworkClient' is mutable; this is an error in the Swift 6 language mode
 23 |
 24 |     private override init() {
[920/1100] Compiling BoxSdkGen Authentication.swift
/Users/admin/builder/spi-builder-workspace/Sources/Managers/Webhooks/WebhooksManager.swift:83:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it
81 |     public func deleteWebhookById(webhookId: String, headers: DeleteWebhookByIdHeaders = DeleteWebhookByIdHeaders()) async throws {
82 |         let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
83 |         let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/webhooks/")\(webhookId)", method: "DELETE", headers: headersMap, responseFormat: nil, auth: self.auth, networkSession: self.networkSession))
   |             `- warning: immutable value 'response' was never used; consider replacing with '_' or removing it
84 |     }
85 |
/Users/admin/builder/spi-builder-workspace/Sources/Managers/Workflows/WorkflowsManager.swift:44:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it
42 |     public func startWorkflow(workflowId: String, requestBody: StartWorkflowRequestBody, headers: StartWorkflowHeaders = StartWorkflowHeaders()) async throws {
43 |         let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
44 |         let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/workflows/")\(workflowId)\("/start")", method: "POST", headers: headersMap, data: try requestBody.serialize(), contentType: "application/json", responseFormat: nil, auth: self.auth, networkSession: self.networkSession))
   |             `- warning: immutable value 'response' was never used; consider replacing with '_' or removing it
45 |     }
46 |
/Users/admin/builder/spi-builder-workspace/Sources/Networking/BoxConstants.swift:24:16: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'OSInformation' may have shared mutable state; this is an error in the Swift 6 language mode
21 | }
22 |
23 | fileprivate class OSInformation {
   |                   `- note: class 'OSInformation' does not conform to the 'Sendable' protocol
24 |     static let shared = OSInformation()
   |                |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'OSInformation' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |
26 |     lazy var name: String = {
/Users/admin/builder/spi-builder-workspace/Sources/Networking/NetworkClient.swift:17:14: warning: non-final class 'NetworkClient' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 15 |
 16 | /// Networking layer interface
 17 | public class NetworkClient: NSObject, URLSessionDelegate, URLSessionTaskDelegate, URLSessionDataDelegate, URLSessionDownloadDelegate {
    |              `- warning: non-final class 'NetworkClient' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 18 |     public static let shared = NetworkClient()
 19 |
/Users/admin/builder/spi-builder-workspace/Sources/Networking/NetworkClient.swift:22:17: warning: stored property 'taskInfos' of 'Sendable'-conforming class 'NetworkClient' is mutable; this is an error in the Swift 6 language mode
 20 |     private let utilityQueue = DispatchQueue.global(qos: .utility)
 21 |     private let continuationQueue = DispatchQueue(label: "BoxSdkGen.NetworkClient.continuationQueue.\(UUID().uuidString)")
 22 |     private var taskInfos: [Int: TaskInfo] = [:]
    |                 `- warning: stored property 'taskInfos' of 'Sendable'-conforming class 'NetworkClient' is mutable; this is an error in the Swift 6 language mode
 23 |
 24 |     private override init() {
[921/1100] Compiling BoxSdkGen BaseUrls.swift
/Users/admin/builder/spi-builder-workspace/Sources/Managers/Webhooks/WebhooksManager.swift:83:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it
81 |     public func deleteWebhookById(webhookId: String, headers: DeleteWebhookByIdHeaders = DeleteWebhookByIdHeaders()) async throws {
82 |         let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
83 |         let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/webhooks/")\(webhookId)", method: "DELETE", headers: headersMap, responseFormat: nil, auth: self.auth, networkSession: self.networkSession))
   |             `- warning: immutable value 'response' was never used; consider replacing with '_' or removing it
84 |     }
85 |
/Users/admin/builder/spi-builder-workspace/Sources/Managers/Workflows/WorkflowsManager.swift:44:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it
42 |     public func startWorkflow(workflowId: String, requestBody: StartWorkflowRequestBody, headers: StartWorkflowHeaders = StartWorkflowHeaders()) async throws {
43 |         let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
44 |         let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/workflows/")\(workflowId)\("/start")", method: "POST", headers: headersMap, data: try requestBody.serialize(), contentType: "application/json", responseFormat: nil, auth: self.auth, networkSession: self.networkSession))
   |             `- warning: immutable value 'response' was never used; consider replacing with '_' or removing it
45 |     }
46 |
/Users/admin/builder/spi-builder-workspace/Sources/Networking/BoxConstants.swift:24:16: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'OSInformation' may have shared mutable state; this is an error in the Swift 6 language mode
21 | }
22 |
23 | fileprivate class OSInformation {
   |                   `- note: class 'OSInformation' does not conform to the 'Sendable' protocol
24 |     static let shared = OSInformation()
   |                |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'OSInformation' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |
26 |     lazy var name: String = {
/Users/admin/builder/spi-builder-workspace/Sources/Networking/NetworkClient.swift:17:14: warning: non-final class 'NetworkClient' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 15 |
 16 | /// Networking layer interface
 17 | public class NetworkClient: NSObject, URLSessionDelegate, URLSessionTaskDelegate, URLSessionDataDelegate, URLSessionDownloadDelegate {
    |              `- warning: non-final class 'NetworkClient' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 18 |     public static let shared = NetworkClient()
 19 |
/Users/admin/builder/spi-builder-workspace/Sources/Networking/NetworkClient.swift:22:17: warning: stored property 'taskInfos' of 'Sendable'-conforming class 'NetworkClient' is mutable; this is an error in the Swift 6 language mode
 20 |     private let utilityQueue = DispatchQueue.global(qos: .utility)
 21 |     private let continuationQueue = DispatchQueue(label: "BoxSdkGen.NetworkClient.continuationQueue.\(UUID().uuidString)")
 22 |     private var taskInfos: [Int: TaskInfo] = [:]
    |                 `- warning: stored property 'taskInfos' of 'Sendable'-conforming class 'NetworkClient' is mutable; this is an error in the Swift 6 language mode
 23 |
 24 |     private override init() {
[922/1100] Compiling BoxSdkGen BoxConstants.swift
/Users/admin/builder/spi-builder-workspace/Sources/Managers/Webhooks/WebhooksManager.swift:83:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it
81 |     public func deleteWebhookById(webhookId: String, headers: DeleteWebhookByIdHeaders = DeleteWebhookByIdHeaders()) async throws {
82 |         let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
83 |         let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/webhooks/")\(webhookId)", method: "DELETE", headers: headersMap, responseFormat: nil, auth: self.auth, networkSession: self.networkSession))
   |             `- warning: immutable value 'response' was never used; consider replacing with '_' or removing it
84 |     }
85 |
/Users/admin/builder/spi-builder-workspace/Sources/Managers/Workflows/WorkflowsManager.swift:44:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it
42 |     public func startWorkflow(workflowId: String, requestBody: StartWorkflowRequestBody, headers: StartWorkflowHeaders = StartWorkflowHeaders()) async throws {
43 |         let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
44 |         let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/workflows/")\(workflowId)\("/start")", method: "POST", headers: headersMap, data: try requestBody.serialize(), contentType: "application/json", responseFormat: nil, auth: self.auth, networkSession: self.networkSession))
   |             `- warning: immutable value 'response' was never used; consider replacing with '_' or removing it
45 |     }
46 |
/Users/admin/builder/spi-builder-workspace/Sources/Networking/BoxConstants.swift:24:16: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'OSInformation' may have shared mutable state; this is an error in the Swift 6 language mode
21 | }
22 |
23 | fileprivate class OSInformation {
   |                   `- note: class 'OSInformation' does not conform to the 'Sendable' protocol
24 |     static let shared = OSInformation()
   |                |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'OSInformation' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |
26 |     lazy var name: String = {
/Users/admin/builder/spi-builder-workspace/Sources/Networking/NetworkClient.swift:17:14: warning: non-final class 'NetworkClient' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 15 |
 16 | /// Networking layer interface
 17 | public class NetworkClient: NSObject, URLSessionDelegate, URLSessionTaskDelegate, URLSessionDataDelegate, URLSessionDownloadDelegate {
    |              `- warning: non-final class 'NetworkClient' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 18 |     public static let shared = NetworkClient()
 19 |
/Users/admin/builder/spi-builder-workspace/Sources/Networking/NetworkClient.swift:22:17: warning: stored property 'taskInfos' of 'Sendable'-conforming class 'NetworkClient' is mutable; this is an error in the Swift 6 language mode
 20 |     private let utilityQueue = DispatchQueue.global(qos: .utility)
 21 |     private let continuationQueue = DispatchQueue(label: "BoxSdkGen.NetworkClient.continuationQueue.\(UUID().uuidString)")
 22 |     private var taskInfos: [Int: TaskInfo] = [:]
    |                 `- warning: stored property 'taskInfos' of 'Sendable'-conforming class 'NetworkClient' is mutable; this is an error in the Swift 6 language mode
 23 |
 24 |     private override init() {
[923/1100] Compiling BoxSdkGen FetchConversation.swift
/Users/admin/builder/spi-builder-workspace/Sources/Managers/Webhooks/WebhooksManager.swift:83:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it
81 |     public func deleteWebhookById(webhookId: String, headers: DeleteWebhookByIdHeaders = DeleteWebhookByIdHeaders()) async throws {
82 |         let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
83 |         let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/webhooks/")\(webhookId)", method: "DELETE", headers: headersMap, responseFormat: nil, auth: self.auth, networkSession: self.networkSession))
   |             `- warning: immutable value 'response' was never used; consider replacing with '_' or removing it
84 |     }
85 |
/Users/admin/builder/spi-builder-workspace/Sources/Managers/Workflows/WorkflowsManager.swift:44:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it
42 |     public func startWorkflow(workflowId: String, requestBody: StartWorkflowRequestBody, headers: StartWorkflowHeaders = StartWorkflowHeaders()) async throws {
43 |         let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
44 |         let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/workflows/")\(workflowId)\("/start")", method: "POST", headers: headersMap, data: try requestBody.serialize(), contentType: "application/json", responseFormat: nil, auth: self.auth, networkSession: self.networkSession))
   |             `- warning: immutable value 'response' was never used; consider replacing with '_' or removing it
45 |     }
46 |
/Users/admin/builder/spi-builder-workspace/Sources/Networking/BoxConstants.swift:24:16: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'OSInformation' may have shared mutable state; this is an error in the Swift 6 language mode
21 | }
22 |
23 | fileprivate class OSInformation {
   |                   `- note: class 'OSInformation' does not conform to the 'Sendable' protocol
24 |     static let shared = OSInformation()
   |                |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'OSInformation' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |
26 |     lazy var name: String = {
/Users/admin/builder/spi-builder-workspace/Sources/Networking/NetworkClient.swift:17:14: warning: non-final class 'NetworkClient' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 15 |
 16 | /// Networking layer interface
 17 | public class NetworkClient: NSObject, URLSessionDelegate, URLSessionTaskDelegate, URLSessionDataDelegate, URLSessionDownloadDelegate {
    |              `- warning: non-final class 'NetworkClient' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 18 |     public static let shared = NetworkClient()
 19 |
/Users/admin/builder/spi-builder-workspace/Sources/Networking/NetworkClient.swift:22:17: warning: stored property 'taskInfos' of 'Sendable'-conforming class 'NetworkClient' is mutable; this is an error in the Swift 6 language mode
 20 |     private let utilityQueue = DispatchQueue.global(qos: .utility)
 21 |     private let continuationQueue = DispatchQueue(label: "BoxSdkGen.NetworkClient.continuationQueue.\(UUID().uuidString)")
 22 |     private var taskInfos: [Int: TaskInfo] = [:]
    |                 `- warning: stored property 'taskInfos' of 'Sendable'-conforming class 'NetworkClient' is mutable; this is an error in the Swift 6 language mode
 23 |
 24 |     private override init() {
[924/1100] Compiling BoxSdkGen FetchOptions.swift
/Users/admin/builder/spi-builder-workspace/Sources/Managers/Webhooks/WebhooksManager.swift:83:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it
81 |     public func deleteWebhookById(webhookId: String, headers: DeleteWebhookByIdHeaders = DeleteWebhookByIdHeaders()) async throws {
82 |         let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
83 |         let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/webhooks/")\(webhookId)", method: "DELETE", headers: headersMap, responseFormat: nil, auth: self.auth, networkSession: self.networkSession))
   |             `- warning: immutable value 'response' was never used; consider replacing with '_' or removing it
84 |     }
85 |
/Users/admin/builder/spi-builder-workspace/Sources/Managers/Workflows/WorkflowsManager.swift:44:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it
42 |     public func startWorkflow(workflowId: String, requestBody: StartWorkflowRequestBody, headers: StartWorkflowHeaders = StartWorkflowHeaders()) async throws {
43 |         let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
44 |         let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/workflows/")\(workflowId)\("/start")", method: "POST", headers: headersMap, data: try requestBody.serialize(), contentType: "application/json", responseFormat: nil, auth: self.auth, networkSession: self.networkSession))
   |             `- warning: immutable value 'response' was never used; consider replacing with '_' or removing it
45 |     }
46 |
/Users/admin/builder/spi-builder-workspace/Sources/Networking/BoxConstants.swift:24:16: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'OSInformation' may have shared mutable state; this is an error in the Swift 6 language mode
21 | }
22 |
23 | fileprivate class OSInformation {
   |                   `- note: class 'OSInformation' does not conform to the 'Sendable' protocol
24 |     static let shared = OSInformation()
   |                |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'OSInformation' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |
26 |     lazy var name: String = {
/Users/admin/builder/spi-builder-workspace/Sources/Networking/NetworkClient.swift:17:14: warning: non-final class 'NetworkClient' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 15 |
 16 | /// Networking layer interface
 17 | public class NetworkClient: NSObject, URLSessionDelegate, URLSessionTaskDelegate, URLSessionDataDelegate, URLSessionDownloadDelegate {
    |              `- warning: non-final class 'NetworkClient' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 18 |     public static let shared = NetworkClient()
 19 |
/Users/admin/builder/spi-builder-workspace/Sources/Networking/NetworkClient.swift:22:17: warning: stored property 'taskInfos' of 'Sendable'-conforming class 'NetworkClient' is mutable; this is an error in the Swift 6 language mode
 20 |     private let utilityQueue = DispatchQueue.global(qos: .utility)
 21 |     private let continuationQueue = DispatchQueue(label: "BoxSdkGen.NetworkClient.continuationQueue.\(UUID().uuidString)")
 22 |     private var taskInfos: [Int: TaskInfo] = [:]
    |                 `- warning: stored property 'taskInfos' of 'Sendable'-conforming class 'NetworkClient' is mutable; this is an error in the Swift 6 language mode
 23 |
 24 |     private override init() {
[925/1100] Compiling BoxSdkGen FetchResponse.swift
/Users/admin/builder/spi-builder-workspace/Sources/Managers/Webhooks/WebhooksManager.swift:83:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it
81 |     public func deleteWebhookById(webhookId: String, headers: DeleteWebhookByIdHeaders = DeleteWebhookByIdHeaders()) async throws {
82 |         let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
83 |         let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/webhooks/")\(webhookId)", method: "DELETE", headers: headersMap, responseFormat: nil, auth: self.auth, networkSession: self.networkSession))
   |             `- warning: immutable value 'response' was never used; consider replacing with '_' or removing it
84 |     }
85 |
/Users/admin/builder/spi-builder-workspace/Sources/Managers/Workflows/WorkflowsManager.swift:44:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it
42 |     public func startWorkflow(workflowId: String, requestBody: StartWorkflowRequestBody, headers: StartWorkflowHeaders = StartWorkflowHeaders()) async throws {
43 |         let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
44 |         let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/workflows/")\(workflowId)\("/start")", method: "POST", headers: headersMap, data: try requestBody.serialize(), contentType: "application/json", responseFormat: nil, auth: self.auth, networkSession: self.networkSession))
   |             `- warning: immutable value 'response' was never used; consider replacing with '_' or removing it
45 |     }
46 |
/Users/admin/builder/spi-builder-workspace/Sources/Networking/BoxConstants.swift:24:16: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'OSInformation' may have shared mutable state; this is an error in the Swift 6 language mode
21 | }
22 |
23 | fileprivate class OSInformation {
   |                   `- note: class 'OSInformation' does not conform to the 'Sendable' protocol
24 |     static let shared = OSInformation()
   |                |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'OSInformation' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |
26 |     lazy var name: String = {
/Users/admin/builder/spi-builder-workspace/Sources/Networking/NetworkClient.swift:17:14: warning: non-final class 'NetworkClient' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 15 |
 16 | /// Networking layer interface
 17 | public class NetworkClient: NSObject, URLSessionDelegate, URLSessionTaskDelegate, URLSessionDataDelegate, URLSessionDownloadDelegate {
    |              `- warning: non-final class 'NetworkClient' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 18 |     public static let shared = NetworkClient()
 19 |
/Users/admin/builder/spi-builder-workspace/Sources/Networking/NetworkClient.swift:22:17: warning: stored property 'taskInfos' of 'Sendable'-conforming class 'NetworkClient' is mutable; this is an error in the Swift 6 language mode
 20 |     private let utilityQueue = DispatchQueue.global(qos: .utility)
 21 |     private let continuationQueue = DispatchQueue(label: "BoxSdkGen.NetworkClient.continuationQueue.\(UUID().uuidString)")
 22 |     private var taskInfos: [Int: TaskInfo] = [:]
    |                 `- warning: stored property 'taskInfos' of 'Sendable'-conforming class 'NetworkClient' is mutable; this is an error in the Swift 6 language mode
 23 |
 24 |     private override init() {
[926/1100] Compiling BoxSdkGen MultipartItem.swift
/Users/admin/builder/spi-builder-workspace/Sources/Managers/Webhooks/WebhooksManager.swift:83:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it
81 |     public func deleteWebhookById(webhookId: String, headers: DeleteWebhookByIdHeaders = DeleteWebhookByIdHeaders()) async throws {
82 |         let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
83 |         let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/webhooks/")\(webhookId)", method: "DELETE", headers: headersMap, responseFormat: nil, auth: self.auth, networkSession: self.networkSession))
   |             `- warning: immutable value 'response' was never used; consider replacing with '_' or removing it
84 |     }
85 |
/Users/admin/builder/spi-builder-workspace/Sources/Managers/Workflows/WorkflowsManager.swift:44:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it
42 |     public func startWorkflow(workflowId: String, requestBody: StartWorkflowRequestBody, headers: StartWorkflowHeaders = StartWorkflowHeaders()) async throws {
43 |         let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
44 |         let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/workflows/")\(workflowId)\("/start")", method: "POST", headers: headersMap, data: try requestBody.serialize(), contentType: "application/json", responseFormat: nil, auth: self.auth, networkSession: self.networkSession))
   |             `- warning: immutable value 'response' was never used; consider replacing with '_' or removing it
45 |     }
46 |
/Users/admin/builder/spi-builder-workspace/Sources/Networking/BoxConstants.swift:24:16: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'OSInformation' may have shared mutable state; this is an error in the Swift 6 language mode
21 | }
22 |
23 | fileprivate class OSInformation {
   |                   `- note: class 'OSInformation' does not conform to the 'Sendable' protocol
24 |     static let shared = OSInformation()
   |                |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'OSInformation' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |
26 |     lazy var name: String = {
/Users/admin/builder/spi-builder-workspace/Sources/Networking/NetworkClient.swift:17:14: warning: non-final class 'NetworkClient' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 15 |
 16 | /// Networking layer interface
 17 | public class NetworkClient: NSObject, URLSessionDelegate, URLSessionTaskDelegate, URLSessionDataDelegate, URLSessionDownloadDelegate {
    |              `- warning: non-final class 'NetworkClient' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 18 |     public static let shared = NetworkClient()
 19 |
/Users/admin/builder/spi-builder-workspace/Sources/Networking/NetworkClient.swift:22:17: warning: stored property 'taskInfos' of 'Sendable'-conforming class 'NetworkClient' is mutable; this is an error in the Swift 6 language mode
 20 |     private let utilityQueue = DispatchQueue.global(qos: .utility)
 21 |     private let continuationQueue = DispatchQueue(label: "BoxSdkGen.NetworkClient.continuationQueue.\(UUID().uuidString)")
 22 |     private var taskInfos: [Int: TaskInfo] = [:]
    |                 `- warning: stored property 'taskInfos' of 'Sendable'-conforming class 'NetworkClient' is mutable; this is an error in the Swift 6 language mode
 23 |
 24 |     private override init() {
[927/1100] Compiling BoxSdkGen NetworkClient.swift
/Users/admin/builder/spi-builder-workspace/Sources/Managers/Webhooks/WebhooksManager.swift:83:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it
81 |     public func deleteWebhookById(webhookId: String, headers: DeleteWebhookByIdHeaders = DeleteWebhookByIdHeaders()) async throws {
82 |         let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
83 |         let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/webhooks/")\(webhookId)", method: "DELETE", headers: headersMap, responseFormat: nil, auth: self.auth, networkSession: self.networkSession))
   |             `- warning: immutable value 'response' was never used; consider replacing with '_' or removing it
84 |     }
85 |
/Users/admin/builder/spi-builder-workspace/Sources/Managers/Workflows/WorkflowsManager.swift:44:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it
42 |     public func startWorkflow(workflowId: String, requestBody: StartWorkflowRequestBody, headers: StartWorkflowHeaders = StartWorkflowHeaders()) async throws {
43 |         let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
44 |         let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/workflows/")\(workflowId)\("/start")", method: "POST", headers: headersMap, data: try requestBody.serialize(), contentType: "application/json", responseFormat: nil, auth: self.auth, networkSession: self.networkSession))
   |             `- warning: immutable value 'response' was never used; consider replacing with '_' or removing it
45 |     }
46 |
/Users/admin/builder/spi-builder-workspace/Sources/Networking/BoxConstants.swift:24:16: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'OSInformation' may have shared mutable state; this is an error in the Swift 6 language mode
21 | }
22 |
23 | fileprivate class OSInformation {
   |                   `- note: class 'OSInformation' does not conform to the 'Sendable' protocol
24 |     static let shared = OSInformation()
   |                |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'OSInformation' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |
26 |     lazy var name: String = {
/Users/admin/builder/spi-builder-workspace/Sources/Networking/NetworkClient.swift:17:14: warning: non-final class 'NetworkClient' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 15 |
 16 | /// Networking layer interface
 17 | public class NetworkClient: NSObject, URLSessionDelegate, URLSessionTaskDelegate, URLSessionDataDelegate, URLSessionDownloadDelegate {
    |              `- warning: non-final class 'NetworkClient' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 18 |     public static let shared = NetworkClient()
 19 |
/Users/admin/builder/spi-builder-workspace/Sources/Networking/NetworkClient.swift:22:17: warning: stored property 'taskInfos' of 'Sendable'-conforming class 'NetworkClient' is mutable; this is an error in the Swift 6 language mode
 20 |     private let utilityQueue = DispatchQueue.global(qos: .utility)
 21 |     private let continuationQueue = DispatchQueue(label: "BoxSdkGen.NetworkClient.continuationQueue.\(UUID().uuidString)")
 22 |     private var taskInfos: [Int: TaskInfo] = [:]
    |                 `- warning: stored property 'taskInfos' of 'Sendable'-conforming class 'NetworkClient' is mutable; this is an error in the Swift 6 language mode
 23 |
 24 |     private override init() {
[928/1100] Compiling BoxSdkGen NetworkSession.swift
/Users/admin/builder/spi-builder-workspace/Sources/Managers/Webhooks/WebhooksManager.swift:83:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it
81 |     public func deleteWebhookById(webhookId: String, headers: DeleteWebhookByIdHeaders = DeleteWebhookByIdHeaders()) async throws {
82 |         let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
83 |         let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/webhooks/")\(webhookId)", method: "DELETE", headers: headersMap, responseFormat: nil, auth: self.auth, networkSession: self.networkSession))
   |             `- warning: immutable value 'response' was never used; consider replacing with '_' or removing it
84 |     }
85 |
/Users/admin/builder/spi-builder-workspace/Sources/Managers/Workflows/WorkflowsManager.swift:44:13: warning: immutable value 'response' was never used; consider replacing with '_' or removing it
42 |     public func startWorkflow(workflowId: String, requestBody: StartWorkflowRequestBody, headers: StartWorkflowHeaders = StartWorkflowHeaders()) async throws {
43 |         let headersMap: [String: String] = Utils.Dictionary.prepareParams(map: Utils.Dictionary.merge([:], headers.extraHeaders))
44 |         let response: FetchResponse = try await NetworkClient.shared.fetch(options: FetchOptions(url: "\(self.networkSession.baseUrls.baseUrl)\("/2.0/workflows/")\(workflowId)\("/start")", method: "POST", headers: headersMap, data: try requestBody.serialize(), contentType: "application/json", responseFormat: nil, auth: self.auth, networkSession: self.networkSession))
   |             `- warning: immutable value 'response' was never used; consider replacing with '_' or removing it
45 |     }
46 |
/Users/admin/builder/spi-builder-workspace/Sources/Networking/BoxConstants.swift:24:16: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'OSInformation' may have shared mutable state; this is an error in the Swift 6 language mode
21 | }
22 |
23 | fileprivate class OSInformation {
   |                   `- note: class 'OSInformation' does not conform to the 'Sendable' protocol
24 |     static let shared = OSInformation()
   |                |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'OSInformation' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |
26 |     lazy var name: String = {
/Users/admin/builder/spi-builder-workspace/Sources/Networking/NetworkClient.swift:17:14: warning: non-final class 'NetworkClient' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 15 |
 16 | /// Networking layer interface
 17 | public class NetworkClient: NSObject, URLSessionDelegate, URLSessionTaskDelegate, URLSessionDataDelegate, URLSessionDownloadDelegate {
    |              `- warning: non-final class 'NetworkClient' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 18 |     public static let shared = NetworkClient()
 19 |
/Users/admin/builder/spi-builder-workspace/Sources/Networking/NetworkClient.swift:22:17: warning: stored property 'taskInfos' of 'Sendable'-conforming class 'NetworkClient' is mutable; this is an error in the Swift 6 language mode
 20 |     private let utilityQueue = DispatchQueue.global(qos: .utility)
 21 |     private let continuationQueue = DispatchQueue(label: "BoxSdkGen.NetworkClient.continuationQueue.\(UUID().uuidString)")
 22 |     private var taskInfos: [Int: TaskInfo] = [:]
    |                 `- warning: stored property 'taskInfos' of 'Sendable'-conforming class 'NetworkClient' is mutable; this is an error in the Swift 6 language mode
 23 |
 24 |     private override init() {
[929/1148] Compiling BoxSdkGen EventAdditionalDetailsField.swift
[930/1148] Compiling BoxSdkGen EventEventTypeField.swift
[931/1148] Compiling BoxSdkGen EventSource.swift
[932/1148] Compiling BoxSdkGen EventSourceClassificationField.swift
[933/1148] Compiling BoxSdkGen EventSourceItemTypeField.swift
[934/1148] Compiling BoxSdkGen Events.swift
[935/1148] Compiling BoxSdkGen EventsNextStreamPositionField.swift
[936/1148] Compiling BoxSdkGen File.swift
[937/1148] Compiling BoxSdkGen FileItemStatusField.swift
[938/1148] Compiling BoxSdkGen FilePathCollectionField.swift
[939/1148] Compiling BoxSdkGen FileSharedLinkAccessField.swift
[940/1148] Compiling BoxSdkGen FileSharedLinkEffectiveAccessField.swift
[941/1148] Compiling BoxSdkGen FileSharedLinkEffectivePermissionField.swift
[942/1148] Compiling BoxSdkGen FileSharedLinkField.swift
[943/1148] Compiling BoxSdkGen FileSharedLinkPermissionsField.swift
[944/1148] Compiling BoxSdkGen FileBase.swift
[945/1148] Compiling BoxSdkGen FileBaseTypeField.swift
[946/1148] Compiling BoxSdkGen FileBaseOrFolderBaseOrWebLinkBase.swift
[947/1148] Compiling BoxSdkGen FileConflict.swift
[948/1148] Compiling BoxSdkGen FileFull.swift
[949/1148] Compiling BoxSdkGen FileFullAllowedInviteeRolesField.swift
[950/1148] Compiling BoxSdkGen FileFullClassificationField.swift
[951/1148] Compiling BoxSdkGen FileFullExpiringEmbedLinkField.swift
[952/1148] Compiling BoxSdkGen FileFullExpiringEmbedLinkTokenTypeField.swift
[953/1148] Compiling BoxSdkGen FileFullLockAppTypeField.swift
[954/1172] Compiling BoxSdkGen FileFullLockField.swift
[955/1172] Compiling BoxSdkGen FileFullLockTypeField.swift
[956/1172] Compiling BoxSdkGen FileFullMetadataField.swift
[957/1172] Compiling BoxSdkGen FileFullPermissionsField.swift
[958/1172] Compiling BoxSdkGen FileFullRepresentationsEntriesContentField.swift
[959/1172] Compiling BoxSdkGen FileFullRepresentationsEntriesField.swift
[960/1172] Compiling BoxSdkGen FileFullRepresentationsEntriesInfoField.swift
[961/1172] Compiling BoxSdkGen FileFullRepresentationsEntriesPropertiesField.swift
[962/1172] Compiling BoxSdkGen FileFullRepresentationsEntriesStatusField.swift
[963/1172] Compiling BoxSdkGen FileFullRepresentationsEntriesStatusStateField.swift
[964/1172] Compiling BoxSdkGen FileFullRepresentationsField.swift
[965/1172] Compiling BoxSdkGen FileFullSharedLinkPermissionOptionsField.swift
[966/1172] Compiling BoxSdkGen FileFullWatermarkInfoField.swift
[967/1172] Compiling BoxSdkGen FileFullOrFolderFull.swift
[968/1172] Compiling BoxSdkGen FileFullOrFolderFullOrWebLink.swift
[969/1172] Compiling BoxSdkGen FileFullOrFolderMiniOrWebLink.swift
[970/1172] Compiling BoxSdkGen FileMini.swift
[971/1172] Compiling BoxSdkGen FileMiniOrFolderMini.swift
[972/1172] Compiling BoxSdkGen FileOrFolder.swift
[973/1172] Compiling BoxSdkGen FileOrFolderOrWebLink.swift
[974/1172] Compiling BoxSdkGen FileOrFolderScope.swift
[975/1172] Compiling BoxSdkGen FileOrFolderScopeScopeField.swift
[976/1172] Compiling BoxSdkGen FileRequest.swift
[977/1172] Compiling BoxSdkGen FileRequestStatusField.swift
[978/1172] Compiling BoxSdkGen FileRequestTypeField.swift
[979/1196] Compiling BoxSdkGen GroupBaseTypeField.swift
[980/1196] Compiling BoxSdkGen GroupFull.swift
[981/1196] Compiling BoxSdkGen GroupFullInvitabilityLevelField.swift
[982/1196] Compiling BoxSdkGen GroupFullMemberViewabilityLevelField.swift
[983/1196] Compiling BoxSdkGen GroupFullPermissionsField.swift
[984/1196] Compiling BoxSdkGen GroupMembership.swift
[985/1196] Compiling BoxSdkGen GroupMembershipRoleField.swift
[986/1196] Compiling BoxSdkGen GroupMembershipTypeField.swift
[987/1196] Compiling BoxSdkGen GroupMemberships.swift
[988/1196] Compiling BoxSdkGen GroupMembershipsOrderDirectionField.swift
[989/1196] Compiling BoxSdkGen GroupMembershipsOrderField.swift
[990/1196] Compiling BoxSdkGen GroupMini.swift
[991/1196] Compiling BoxSdkGen GroupMiniGroupTypeField.swift
[992/1196] Compiling BoxSdkGen GroupMiniOrUserCollaborations.swift
[993/1196] Compiling BoxSdkGen Groups.swift
[994/1196] Compiling BoxSdkGen GroupsOrderDirectionField.swift
[995/1196] Compiling BoxSdkGen GroupsOrderField.swift
[996/1196] Compiling BoxSdkGen IntegrationMapping.swift
[997/1196] Compiling BoxSdkGen IntegrationMappingIntegrationTypeField.swift
[998/1196] Compiling BoxSdkGen IntegrationMappingBase.swift
[999/1196] Compiling BoxSdkGen IntegrationMappingBaseTypeField.swift
[1000/1196] Compiling BoxSdkGen IntegrationMappingBoxItemSlack.swift
[1001/1196] Compiling BoxSdkGen IntegrationMappingBoxItemSlackTypeField.swift
[1002/1196] Compiling BoxSdkGen IntegrationMappingPartnerItemSlack.swift
[1003/1220] Compiling BoxSdkGen FileRequestCopyRequest.swift
[1004/1220] Compiling BoxSdkGen FileRequestCopyRequestFolderField.swift
[1005/1220] Compiling BoxSdkGen FileRequestCopyRequestFolderTypeField.swift
[1006/1220] Compiling BoxSdkGen FileRequestUpdateRequest.swift
[1007/1220] Compiling BoxSdkGen FileRequestUpdateRequestStatusField.swift
[1008/1220] Compiling BoxSdkGen FileVersion.swift
[1009/1220] Compiling BoxSdkGen FileVersionBase.swift
[1010/1220] Compiling BoxSdkGen FileVersionBaseTypeField.swift
[1011/1220] Compiling BoxSdkGen FileVersionFull.swift
[1012/1220] Compiling BoxSdkGen FileVersionLegalHold.swift
[1013/1220] Compiling BoxSdkGen FileVersionLegalHoldTypeField.swift
[1014/1220] Compiling BoxSdkGen FileVersionLegalHolds.swift
[1015/1220] Compiling BoxSdkGen FileVersionMini.swift
[1016/1220] Compiling BoxSdkGen FileVersionRetention.swift
[1017/1220] Compiling BoxSdkGen FileVersionRetentionTypeField.swift
[1018/1220] Compiling BoxSdkGen FileVersionRetentions.swift
[1019/1220] Compiling BoxSdkGen FileVersions.swift
[1020/1220] Compiling BoxSdkGen FileVersionsOrderDirectionField.swift
[1021/1220] Compiling BoxSdkGen FileVersionsOrderField.swift
[1022/1220] Compiling BoxSdkGen Files.swift
[1023/1220] Compiling BoxSdkGen FilesOnHold.swift
[1024/1220] Compiling BoxSdkGen FilesUnderRetention.swift
[1025/1220] Compiling BoxSdkGen Folder.swift
[1026/1220] Compiling BoxSdkGen FolderFolderUploadEmailAccessField.swift
[1027/1220] Compiling BoxSdkGen FolderFolderUploadEmailField.swift
[1028/1244] Compiling BoxSdkGen FolderItemStatusField.swift
[1029/1244] Compiling BoxSdkGen FolderPathCollectionField.swift
[1030/1244] Compiling BoxSdkGen FolderSharedLinkAccessField.swift
[1031/1244] Compiling BoxSdkGen FolderSharedLinkEffectiveAccessField.swift
[1032/1244] Compiling BoxSdkGen FolderSharedLinkEffectivePermissionField.swift
[1033/1244] Compiling BoxSdkGen FolderSharedLinkField.swift
[1034/1244] Compiling BoxSdkGen FolderSharedLinkPermissionsField.swift
[1035/1244] Compiling BoxSdkGen FolderBase.swift
[1036/1244] Compiling BoxSdkGen FolderBaseTypeField.swift
[1037/1244] Compiling BoxSdkGen FolderFull.swift
[1038/1244] Compiling BoxSdkGen FolderFullAllowedInviteeRolesField.swift
[1039/1244] Compiling BoxSdkGen FolderFullAllowedSharedLinkAccessLevelsField.swift
[1040/1244] Compiling BoxSdkGen FolderFullClassificationField.swift
[1041/1244] Compiling BoxSdkGen FolderFullMetadataField.swift
[1042/1244] Compiling BoxSdkGen FolderFullPermissionsField.swift
[1043/1244] Compiling BoxSdkGen FolderFullSyncStateField.swift
[1044/1244] Compiling BoxSdkGen FolderFullWatermarkInfoField.swift
[1045/1244] Compiling BoxSdkGen FolderLock.swift
[1046/1244] Compiling BoxSdkGen FolderLockLockedOperationsField.swift
[1047/1244] Compiling BoxSdkGen FolderLocks.swift
[1048/1244] Compiling BoxSdkGen FolderMini.swift
[1049/1244] Compiling BoxSdkGen GenericSource.swift
[1050/1244] Compiling BoxSdkGen Group.swift
[1051/1244] Compiling BoxSdkGen GroupBase.swift
[1052/1268] Compiling BoxSdkGen IntegrationMappingPartnerItemSlackTypeField.swift
[1053/1268] Compiling BoxSdkGen IntegrationMappingPartnerItemSlackUnion.swift
[1054/1268] Compiling BoxSdkGen IntegrationMappingSlackCreateRequest.swift
[1055/1268] Compiling BoxSdkGen IntegrationMappingSlackOptions.swift
[1056/1268] Compiling BoxSdkGen IntegrationMappings.swift
[1057/1268] Compiling BoxSdkGen Invite.swift
[1058/1268] Compiling BoxSdkGen InviteInvitedToField.swift
[1059/1268] Compiling BoxSdkGen InviteInvitedToTypeField.swift
[1060/1268] Compiling BoxSdkGen InviteTypeField.swift
[1061/1268] Compiling BoxSdkGen Items.swift
[1062/1268] Compiling BoxSdkGen ItemsOrderDirectionField.swift
[1063/1268] Compiling BoxSdkGen ItemsOrderField.swift
[1064/1268] Compiling BoxSdkGen KeywordSkillCard.swift
[1065/1268] Compiling BoxSdkGen KeywordSkillCardEntriesField.swift
[1066/1268] Compiling BoxSdkGen KeywordSkillCardInvocationField.swift
[1067/1268] Compiling BoxSdkGen KeywordSkillCardInvocationTypeField.swift
[1068/1268] Compiling BoxSdkGen KeywordSkillCardSkillCardTitleField.swift
[1069/1268] Compiling BoxSdkGen KeywordSkillCardSkillCardTypeField.swift
[1070/1268] Compiling BoxSdkGen KeywordSkillCardSkillField.swift
[1071/1268] Compiling BoxSdkGen KeywordSkillCardSkillTypeField.swift
[1072/1268] Compiling BoxSdkGen KeywordSkillCardTypeField.swift
[1073/1268] Compiling BoxSdkGen KeywordSkillCardOrStatusSkillCardOrTimelineSkillCardOrTranscriptSkillCard.swift
[1074/1268] Compiling BoxSdkGen LegalHoldPolicies.swift
[1075/1268] Compiling BoxSdkGen LegalHoldPolicy.swift
[1076/1292] Compiling BoxSdkGen LegalHoldPolicyAssignmentCountsField.swift
[1077/1292] Compiling BoxSdkGen LegalHoldPolicyStatusField.swift
[1078/1292] Compiling BoxSdkGen LegalHoldPolicyAssignment.swift
[1079/1292] Compiling BoxSdkGen LegalHoldPolicyAssignmentBase.swift
[1080/1292] Compiling BoxSdkGen LegalHoldPolicyAssignmentBaseTypeField.swift
[1081/1292] Compiling BoxSdkGen LegalHoldPolicyAssignments.swift
[1082/1292] Compiling BoxSdkGen LegalHoldPolicyMini.swift
[1083/1292] Compiling BoxSdkGen LegalHoldPolicyMiniTypeField.swift
[1084/1292] Compiling BoxSdkGen Metadata.swift
[1085/1292] Compiling BoxSdkGen MetadataBase.swift
[1086/1292] Compiling BoxSdkGen MetadataCascadePolicies.swift
[1087/1292] Compiling BoxSdkGen MetadataCascadePolicy.swift
[1088/1292] Compiling BoxSdkGen MetadataCascadePolicyOwnerEnterpriseField.swift
[1089/1292] Compiling BoxSdkGen MetadataCascadePolicyOwnerEnterpriseTypeField.swift
[1090/1292] Compiling BoxSdkGen MetadataCascadePolicyParentField.swift
[1091/1292] Compiling BoxSdkGen MetadataCascadePolicyParentTypeField.swift
[1092/1292] Compiling BoxSdkGen MetadataCascadePolicyTypeField.swift
[1093/1292] Compiling BoxSdkGen MetadataFieldFilterDateRange.swift
[1094/1292] Compiling BoxSdkGen MetadataFieldFilterDateRangeOrMetadataFieldFilterFloatRangeOrArrayOfStringOrNumberOrString.swift
[1095/1292] Compiling BoxSdkGen MetadataFieldFilterFloatRange.swift
[1096/1292] Compiling BoxSdkGen MetadataFilter.swift
[1097/1292] Compiling BoxSdkGen MetadataFilterScopeField.swift
[1098/1292] Compiling BoxSdkGen MetadataFull.swift
[1099/1292] Compiling BoxSdkGen MetadataQuery.swift
[1100/1316] Compiling BoxSdkGen RealtimeServer.swift
[1101/1316] Compiling BoxSdkGen RealtimeServers.swift
[1102/1316] Compiling BoxSdkGen RecentItem.swift
[1103/1316] Compiling BoxSdkGen RecentItemInteractionTypeField.swift
[1104/1316] Compiling BoxSdkGen RecentItems.swift
[1105/1316] Compiling BoxSdkGen RetentionPolicies.swift
[1106/1316] Compiling BoxSdkGen RetentionPolicy.swift
[1107/1316] Compiling BoxSdkGen RetentionPolicyAssignmentCountsField.swift
[1108/1316] Compiling BoxSdkGen RetentionPolicyPolicyTypeField.swift
[1109/1316] Compiling BoxSdkGen RetentionPolicyRetentionTypeField.swift
[1110/1316] Compiling BoxSdkGen RetentionPolicyStatusField.swift
[1111/1316] Compiling BoxSdkGen RetentionPolicyAssignment.swift
[1112/1316] Compiling BoxSdkGen RetentionPolicyAssignmentAssignedToField.swift
[1113/1316] Compiling BoxSdkGen RetentionPolicyAssignmentAssignedToTypeField.swift
[1114/1316] Compiling BoxSdkGen RetentionPolicyAssignmentFilterFieldsField.swift
[1115/1316] Compiling BoxSdkGen RetentionPolicyAssignmentTypeField.swift
[1116/1316] Compiling BoxSdkGen RetentionPolicyAssignmentBase.swift
[1117/1316] Compiling BoxSdkGen RetentionPolicyAssignmentBaseTypeField.swift
[1118/1316] Compiling BoxSdkGen RetentionPolicyAssignments.swift
[1119/1316] Compiling BoxSdkGen RetentionPolicyBase.swift
[1120/1316] Compiling BoxSdkGen RetentionPolicyBaseTypeField.swift
[1121/1316] Compiling BoxSdkGen RetentionPolicyMini.swift
[1122/1316] Compiling BoxSdkGen RetentionPolicyMiniDispositionActionField.swift
[1123/1316] Compiling BoxSdkGen RoleVariable.swift
[1124/1316] Compiling BoxSdkGen MetadataQueryOrderByDirectionField.swift
[1125/1316] Compiling BoxSdkGen MetadataQueryOrderByField.swift
[1126/1316] Compiling BoxSdkGen MetadataQueryIndex.swift
[1127/1316] Compiling BoxSdkGen MetadataQueryIndexFieldsField.swift
[1128/1316] Compiling BoxSdkGen MetadataQueryIndexFieldsSortDirectionField.swift
[1129/1316] Compiling BoxSdkGen MetadataQueryIndexStatusField.swift
[1130/1316] Compiling BoxSdkGen MetadataQueryResults.swift
[1131/1316] Compiling BoxSdkGen MetadataTemplate.swift
[1132/1316] Compiling BoxSdkGen MetadataTemplateFieldsField.swift
[1133/1316] Compiling BoxSdkGen MetadataTemplateFieldsOptionsField.swift
[1134/1316] Compiling BoxSdkGen MetadataTemplateFieldsTypeField.swift
[1135/1316] Compiling BoxSdkGen MetadataTemplateTypeField.swift
[1136/1316] Compiling BoxSdkGen MetadataTemplates.swift
[1137/1316] Compiling BoxSdkGen Metadatas.swift
[1138/1316] Compiling BoxSdkGen OAuth2Error.swift
[1139/1316] Compiling BoxSdkGen Outcome.swift
[1140/1316] Compiling BoxSdkGen PostOAuth2Revoke.swift
[1141/1316] Compiling BoxSdkGen PostOAuth2Token.swift
[1142/1316] Compiling BoxSdkGen PostOAuth2TokenActorTokenTypeField.swift
[1143/1316] Compiling BoxSdkGen PostOAuth2TokenBoxSubjectTypeField.swift
[1144/1316] Compiling BoxSdkGen PostOAuth2TokenGrantTypeField.swift
[1145/1316] Compiling BoxSdkGen PostOAuth2TokenSubjectTokenTypeField.swift
[1146/1316] Compiling BoxSdkGen PostOAuth2TokenRefreshAccessToken.swift
[1147/1316] Compiling BoxSdkGen PostOAuth2TokenRefreshAccessTokenGrantTypeField.swift
[1148/1364] Compiling BoxSdkGen RoleVariableTypeField.swift
[1149/1364] Compiling BoxSdkGen RoleVariableVariableTypeField.swift
[1150/1364] Compiling BoxSdkGen RoleVariableVariableValueField.swift
[1151/1364] Compiling BoxSdkGen SearchResultWithSharedLink.swift
[1152/1364] Compiling BoxSdkGen SearchResults.swift
[1153/1364] Compiling BoxSdkGen SearchResultsTypeField.swift
[1154/1364] Compiling BoxSdkGen SearchResultsOrSearchResultsWithSharedLinks.swift
[1155/1364] Compiling BoxSdkGen SearchResultsWithSharedLinks.swift
[1156/1364] Compiling BoxSdkGen SearchResultsWithSharedLinksTypeField.swift
[1157/1364] Compiling BoxSdkGen SessionTerminationMessage.swift
[1158/1364] Compiling BoxSdkGen ShieldInformationBarrier.swift
[1159/1364] Compiling BoxSdkGen ShieldInformationBarrierStatusField.swift
[1160/1364] Compiling BoxSdkGen ShieldInformationBarrierTypeField.swift
[1161/1364] Compiling BoxSdkGen ShieldInformationBarrierBase.swift
[1162/1364] Compiling BoxSdkGen ShieldInformationBarrierBaseTypeField.swift
[1163/1364] Compiling BoxSdkGen ShieldInformationBarrierReference.swift
[1164/1364] Compiling BoxSdkGen ShieldInformationBarrierReport.swift
[1165/1364] Compiling BoxSdkGen ShieldInformationBarrierReportStatusField.swift
[1166/1364] Compiling BoxSdkGen ShieldInformationBarrierReportBase.swift
[1167/1364] Compiling BoxSdkGen ShieldInformationBarrierReportBaseTypeField.swift
[1168/1364] Compiling BoxSdkGen ShieldInformationBarrierReportDetails.swift
[1169/1364] Compiling BoxSdkGen ShieldInformationBarrierReportDetailsDetailsField.swift
[1170/1364] Compiling BoxSdkGen ShieldInformationBarrierReports.swift
[1171/1364] Compiling BoxSdkGen ShieldInformationBarrierSegment.swift
[1172/1388] Compiling BoxSdkGen SkillInvocationEnterpriseTypeField.swift
[1173/1388] Compiling BoxSdkGen SkillInvocationSkillField.swift
[1174/1388] Compiling BoxSdkGen SkillInvocationSkillTypeField.swift
[1175/1388] Compiling BoxSdkGen SkillInvocationStatusField.swift
[1176/1388] Compiling BoxSdkGen SkillInvocationStatusStateField.swift
[1177/1388] Compiling BoxSdkGen SkillInvocationTokenField.swift
[1178/1388] Compiling BoxSdkGen SkillInvocationTokenReadField.swift
[1179/1388] Compiling BoxSdkGen SkillInvocationTokenReadTokenTypeField.swift
[1180/1388] Compiling BoxSdkGen SkillInvocationTokenWriteField.swift
[1181/1388] Compiling BoxSdkGen SkillInvocationTokenWriteTokenTypeField.swift
[1182/1388] Compiling BoxSdkGen SkillInvocationTypeField.swift
[1183/1388] Compiling BoxSdkGen StatusSkillCard.swift
[1184/1388] Compiling BoxSdkGen StatusSkillCardInvocationField.swift
[1185/1388] Compiling BoxSdkGen StatusSkillCardInvocationTypeField.swift
[1186/1388] Compiling BoxSdkGen StatusSkillCardSkillCardTitleField.swift
[1187/1388] Compiling BoxSdkGen StatusSkillCardSkillCardTypeField.swift
[1188/1388] Compiling BoxSdkGen StatusSkillCardSkillField.swift
[1189/1388] Compiling BoxSdkGen StatusSkillCardSkillTypeField.swift
[1190/1388] Compiling BoxSdkGen StatusSkillCardStatusCodeField.swift
[1191/1388] Compiling BoxSdkGen StatusSkillCardStatusField.swift
[1192/1388] Compiling BoxSdkGen StatusSkillCardTypeField.swift
[1193/1388] Compiling BoxSdkGen StoragePolicies.swift
[1194/1388] Compiling BoxSdkGen StoragePolicy.swift
[1195/1388] Compiling BoxSdkGen StoragePolicyAssignment.swift
[1196/1412] Compiling BoxSdkGen ShieldInformationBarrierSegmentTypeField.swift
[1197/1412] Compiling BoxSdkGen ShieldInformationBarrierSegmentMember.swift
[1198/1412] Compiling BoxSdkGen ShieldInformationBarrierSegmentMemberShieldInformationBarrierSegmentField.swift
[1199/1412] Compiling BoxSdkGen ShieldInformationBarrierSegmentMemberShieldInformationBarrierSegmentTypeField.swift
[1200/1412] Compiling BoxSdkGen ShieldInformationBarrierSegmentMemberBase.swift
[1201/1412] Compiling BoxSdkGen ShieldInformationBarrierSegmentMemberBaseTypeField.swift
[1202/1412] Compiling BoxSdkGen ShieldInformationBarrierSegmentMemberMini.swift
[1203/1412] Compiling BoxSdkGen ShieldInformationBarrierSegmentMembers.swift
[1204/1412] Compiling BoxSdkGen ShieldInformationBarrierSegmentRestriction.swift
[1205/1412] Compiling BoxSdkGen ShieldInformationBarrierSegmentRestrictionBase.swift
[1206/1412] Compiling BoxSdkGen ShieldInformationBarrierSegmentRestrictionBaseTypeField.swift
[1207/1412] Compiling BoxSdkGen ShieldInformationBarrierSegmentRestrictionMini.swift
[1208/1412] Compiling BoxSdkGen ShieldInformationBarrierSegmentRestrictionMiniRestrictedSegmentField.swift
[1209/1412] Compiling BoxSdkGen ShieldInformationBarrierSegmentRestrictionMiniRestrictedSegmentTypeField.swift
[1210/1412] Compiling BoxSdkGen ShieldInformationBarrierSegmentRestrictionMiniShieldInformationBarrierSegmentField.swift
[1211/1412] Compiling BoxSdkGen ShieldInformationBarrierSegmentRestrictionMiniShieldInformationBarrierSegmentTypeField.swift
[1212/1412] Compiling BoxSdkGen ShieldInformationBarrierSegmentRestrictions.swift
[1213/1412] Compiling BoxSdkGen ShieldInformationBarrierSegments.swift
[1214/1412] Compiling BoxSdkGen ShieldInformationBarriers.swift
[1215/1412] Compiling BoxSdkGen SignRequest.swift
[1216/1412] Compiling BoxSdkGen SignRequestSignFilesField.swift
[1217/1412] Compiling BoxSdkGen SignRequestStatusField.swift
[1218/1412] Compiling BoxSdkGen SignRequestTypeField.swift
[1219/1412] Compiling BoxSdkGen SignRequestBase.swift
[1220/1412] Compiling BoxSdkGen StoragePolicyAssignmentAssignedToField.swift
[1221/1412] Compiling BoxSdkGen StoragePolicyAssignmentTypeField.swift
[1222/1412] Compiling BoxSdkGen StoragePolicyAssignments.swift
[1223/1412] Compiling BoxSdkGen StoragePolicyMini.swift
[1224/1412] Compiling BoxSdkGen StoragePolicyMiniTypeField.swift
[1225/1412] Compiling BoxSdkGen Task.swift
[1226/1412] Compiling BoxSdkGen TaskActionField.swift
[1227/1412] Compiling BoxSdkGen TaskCompletionRuleField.swift
[1228/1412] Compiling BoxSdkGen TaskTypeField.swift
[1229/1412] Compiling BoxSdkGen TaskAssignment.swift
[1230/1412] Compiling BoxSdkGen TaskAssignmentResolutionStateField.swift
[1231/1412] Compiling BoxSdkGen TaskAssignmentTypeField.swift
[1232/1412] Compiling BoxSdkGen TaskAssignments.swift
[1233/1412] Compiling BoxSdkGen Tasks.swift
[1234/1412] Compiling BoxSdkGen TemplateSigner.swift
[1235/1412] Compiling BoxSdkGen TemplateSignerRoleField.swift
[1236/1412] Compiling BoxSdkGen TemplateSignerInput.swift
[1237/1412] Compiling BoxSdkGen TemplateSignerInputContentTypeField.swift
[1238/1412] Compiling BoxSdkGen TemplateSignerInputCoordinatesField.swift
[1239/1412] Compiling BoxSdkGen TemplateSignerInputDimensionsField.swift
[1240/1412] Compiling BoxSdkGen TemplateSignerInputTypeField.swift
[1241/1412] Compiling BoxSdkGen TermsOfService.swift
[1242/1412] Compiling BoxSdkGen TermsOfServiceEnterpriseField.swift
[1243/1412] Compiling BoxSdkGen TermsOfServiceEnterpriseTypeField.swift
[1244/1412] Compiling BoxSdkGen TermsOfServiceStatusField.swift
[1245/1412] Compiling BoxSdkGen TermsOfServiceTosTypeField.swift
[1246/1412] Compiling BoxSdkGen TermsOfServiceBase.swift
[1247/1412] Compiling BoxSdkGen TermsOfServiceBaseTypeField.swift
[1248/1412] Compiling BoxSdkGen TermsOfServiceUserStatus.swift
[1249/1412] Compiling BoxSdkGen TermsOfServiceUserStatusTypeField.swift
[1250/1412] Compiling BoxSdkGen TermsOfServiceUserStatuses.swift
[1251/1412] Compiling BoxSdkGen TermsOfServices.swift
[1252/1412] Compiling BoxSdkGen TimelineSkillCard.swift
[1253/1412] Compiling BoxSdkGen TimelineSkillCardEntriesAppearsField.swift
[1254/1412] Compiling BoxSdkGen TimelineSkillCardEntriesField.swift
[1255/1412] Compiling BoxSdkGen TimelineSkillCardInvocationField.swift
[1256/1412] Compiling BoxSdkGen TimelineSkillCardInvocationTypeField.swift
[1257/1412] Compiling BoxSdkGen TimelineSkillCardSkillCardTitleField.swift
[1258/1412] Compiling BoxSdkGen TimelineSkillCardSkillCardTypeField.swift
[1259/1412] Compiling BoxSdkGen TimelineSkillCardSkillField.swift
[1260/1412] Compiling BoxSdkGen TimelineSkillCardSkillTypeField.swift
[1261/1412] Compiling BoxSdkGen TimelineSkillCardTypeField.swift
[1262/1412] Compiling BoxSdkGen TrackingCode.swift
[1263/1412] Compiling BoxSdkGen TrackingCodeTypeField.swift
[1264/1412] Compiling BoxSdkGen TranscriptSkillCard.swift
[1265/1412] Compiling BoxSdkGen TranscriptSkillCardEntriesAppearsField.swift
[1266/1412] Compiling BoxSdkGen TranscriptSkillCardEntriesField.swift
[1267/1412] Compiling BoxSdkGen TranscriptSkillCardInvocationField.swift
[1268/1412] Compiling BoxSdkGen SignRequestCreateRequest.swift
[1269/1412] Compiling BoxSdkGen SignRequestCreateRequestSignatureColorField.swift
[1270/1412] Compiling BoxSdkGen SignRequestCreateSigner.swift
[1271/1412] Compiling BoxSdkGen SignRequestCreateSignerRoleField.swift
[1272/1412] Compiling BoxSdkGen SignRequestPrefillTag.swift
[1273/1412] Compiling BoxSdkGen SignRequestSigner.swift
[1274/1412] Compiling BoxSdkGen SignRequestSignerSignerDecisionField.swift
[1275/1412] Compiling BoxSdkGen SignRequestSignerSignerDecisionTypeField.swift
[1276/1412] Compiling BoxSdkGen SignRequestSignerInput.swift
[1277/1412] Compiling BoxSdkGen SignRequestSignerInputContentTypeField.swift
[1278/1412] Compiling BoxSdkGen SignRequestSignerInputTypeField.swift
[1279/1412] Compiling BoxSdkGen SignRequests.swift
[1280/1412] Compiling BoxSdkGen SignTemplate.swift
[1281/1412] Compiling BoxSdkGen SignTemplateAdditionalInfoField.swift
[1282/1412] Compiling BoxSdkGen SignTemplateAdditionalInfoNonEditableField.swift
[1283/1412] Compiling BoxSdkGen SignTemplateAdditionalInfoRequiredField.swift
[1284/1412] Compiling BoxSdkGen SignTemplateAdditionalInfoRequiredSignersField.swift
[1285/1412] Compiling BoxSdkGen SignTemplateCustomBrandingField.swift
[1286/1412] Compiling BoxSdkGen SignTemplateReadySignLinkField.swift
[1287/1412] Compiling BoxSdkGen SignTemplateTypeField.swift
[1288/1412] Compiling BoxSdkGen SignTemplates.swift
[1289/1412] Compiling BoxSdkGen SkillCardsMetadata.swift
[1290/1412] Compiling BoxSdkGen SkillInvocation.swift
[1291/1412] Compiling BoxSdkGen SkillInvocationEnterpriseField.swift
[1292/1412] Compiling BoxSdkGen TranscriptSkillCardInvocationTypeField.swift
[1293/1412] Compiling BoxSdkGen TranscriptSkillCardSkillCardTitleField.swift
[1294/1412] Compiling BoxSdkGen TranscriptSkillCardSkillCardTypeField.swift
[1295/1412] Compiling BoxSdkGen TranscriptSkillCardSkillField.swift
[1296/1412] Compiling BoxSdkGen TranscriptSkillCardSkillTypeField.swift
[1297/1412] Compiling BoxSdkGen TranscriptSkillCardTypeField.swift
[1298/1412] Compiling BoxSdkGen TrashFile.swift
[1299/1412] Compiling BoxSdkGen TrashFileItemStatusField.swift
[1300/1412] Compiling BoxSdkGen TrashFilePathCollectionEntriesField.swift
[1301/1412] Compiling BoxSdkGen TrashFilePathCollectionEntriesTypeField.swift
[1302/1412] Compiling BoxSdkGen TrashFilePathCollectionField.swift
[1303/1412] Compiling BoxSdkGen TrashFileTypeField.swift
[1304/1412] Compiling BoxSdkGen TrashFileRestored.swift
[1305/1412] Compiling BoxSdkGen TrashFileRestoredItemStatusField.swift
[1306/1412] Compiling BoxSdkGen TrashFileRestoredPathCollectionField.swift
[1307/1412] Compiling BoxSdkGen TrashFileRestoredTypeField.swift
[1308/1412] Compiling BoxSdkGen TrashFolder.swift
[1309/1412] Compiling BoxSdkGen TrashFolderItemStatusField.swift
[1310/1412] Compiling BoxSdkGen TrashFolderPathCollectionEntriesField.swift
[1311/1412] Compiling BoxSdkGen TrashFolderPathCollectionEntriesTypeField.swift
[1312/1412] Compiling BoxSdkGen TrashFolderPathCollectionField.swift
[1313/1412] Compiling BoxSdkGen TrashFolderTypeField.swift
[1314/1412] Compiling BoxSdkGen TrashFolderRestored.swift
[1315/1412] Compiling BoxSdkGen TrashFolderRestoredItemStatusField.swift
[1316/1412] Compiling BoxSdkGen UserStatusField.swift
[1317/1412] Compiling BoxSdkGen UserAvatar.swift
[1318/1412] Compiling BoxSdkGen UserAvatarPicUrlsField.swift
[1319/1412] Compiling BoxSdkGen UserBase.swift
[1320/1412] Compiling BoxSdkGen UserBaseTypeField.swift
[1321/1412] Compiling BoxSdkGen UserCollaborations.swift
[1322/1412] Compiling BoxSdkGen UserFull.swift
[1323/1412] Compiling BoxSdkGen UserFullEnterpriseField.swift
[1324/1412] Compiling BoxSdkGen UserFullEnterpriseTypeField.swift
[1325/1412] Compiling BoxSdkGen UserFullRoleField.swift
[1326/1412] Compiling BoxSdkGen UserIntegrationMappings.swift
[1327/1412] Compiling BoxSdkGen UserMini.swift
[1328/1412] Compiling BoxSdkGen Users.swift
[1329/1412] Compiling BoxSdkGen UsersOrderDirectionField.swift
[1330/1412] Compiling BoxSdkGen UsersOrderField.swift
[1331/1412] Compiling BoxSdkGen Watermark.swift
[1332/1412] Compiling BoxSdkGen WatermarkWatermarkField.swift
[1333/1412] Compiling BoxSdkGen WebLink.swift
[1334/1412] Compiling BoxSdkGen WebLinkItemStatusField.swift
[1335/1412] Compiling BoxSdkGen WebLinkPathCollectionField.swift
[1336/1412] Compiling BoxSdkGen WebLinkSharedLinkAccessField.swift
[1337/1412] Compiling BoxSdkGen WebLinkSharedLinkEffectiveAccessField.swift
[1338/1412] Compiling BoxSdkGen WebLinkSharedLinkEffectivePermissionField.swift
[1339/1412] Compiling BoxSdkGen WebLinkSharedLinkField.swift
[1340/1412] Compiling BoxSdkGen TrashFolderRestoredPathCollectionField.swift
[1341/1412] Compiling BoxSdkGen TrashFolderRestoredTypeField.swift
[1342/1412] Compiling BoxSdkGen TrashWebLink.swift
[1343/1412] Compiling BoxSdkGen TrashWebLinkItemStatusField.swift
[1344/1412] Compiling BoxSdkGen TrashWebLinkPathCollectionEntriesField.swift
[1345/1412] Compiling BoxSdkGen TrashWebLinkPathCollectionEntriesTypeField.swift
[1346/1412] Compiling BoxSdkGen TrashWebLinkPathCollectionField.swift
[1347/1412] Compiling BoxSdkGen TrashWebLinkTypeField.swift
[1348/1412] Compiling BoxSdkGen TrashWebLinkRestored.swift
[1349/1412] Compiling BoxSdkGen TrashWebLinkRestoredItemStatusField.swift
[1350/1412] Compiling BoxSdkGen TrashWebLinkRestoredPathCollectionField.swift
[1351/1412] Compiling BoxSdkGen TrashWebLinkRestoredTypeField.swift
[1352/1412] Compiling BoxSdkGen UploadPart.swift
[1353/1412] Compiling BoxSdkGen UploadPartMini.swift
[1354/1412] Compiling BoxSdkGen UploadParts.swift
[1355/1412] Compiling BoxSdkGen UploadPartsOrderDirectionField.swift
[1356/1412] Compiling BoxSdkGen UploadPartsOrderField.swift
[1357/1412] Compiling BoxSdkGen UploadSession.swift
[1358/1412] Compiling BoxSdkGen UploadSessionSessionEndpointsField.swift
[1359/1412] Compiling BoxSdkGen UploadSessionTypeField.swift
[1360/1412] Compiling BoxSdkGen UploadUrl.swift
[1361/1412] Compiling BoxSdkGen UploadedPart.swift
[1362/1412] Compiling BoxSdkGen User.swift
[1363/1412] Compiling BoxSdkGen UserNotificationEmailField.swift
[1364/1412] Emitting module BoxSdkGen
/Users/admin/builder/spi-builder-workspace/Sources/Box/Errors/BoxAPIError.swift:7:14: warning: non-final class 'BoxAPIError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
  5 |
  6 | /// Describes API request related errors.
  7 | public class BoxAPIError: BoxSDKError {
    |              `- warning: non-final class 'BoxAPIError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
  8 |     /// The request information
  9 |     public let requestInfo: RequestInfo
/Users/admin/builder/spi-builder-workspace/Sources/Box/Errors/BoxAPIError.swift:9:16: warning: stored property 'requestInfo' of 'Sendable'-conforming class 'BoxAPIError' has non-sendable type 'RequestInfo'; this is an error in the Swift 6 language mode
  7 | public class BoxAPIError: BoxSDKError {
  8 |     /// The request information
  9 |     public let requestInfo: RequestInfo
    |                `- warning: stored property 'requestInfo' of 'Sendable'-conforming class 'BoxAPIError' has non-sendable type 'RequestInfo'; this is an error in the Swift 6 language mode
 10 |     /// The response information
 11 |     public let responseInfo: ResponseInfo
/Users/admin/builder/spi-builder-workspace/Sources/Box/Errors/RequestInfo.swift:3:14: note: class 'RequestInfo' does not conform to the 'Sendable' protocol
 1 | import Foundation
 2 | /// The class that represents the request information.
 3 | public class RequestInfo {
   |              `- note: class 'RequestInfo' does not conform to the 'Sendable' protocol
 4 |     /// The HTTP method for the Request
 5 |     public let method: String
/Users/admin/builder/spi-builder-workspace/Sources/Box/Errors/BoxAPIError.swift:11:16: warning: stored property 'responseInfo' of 'Sendable'-conforming class 'BoxAPIError' has non-sendable type 'ResponseInfo'; this is an error in the Swift 6 language mode
  9 |     public let requestInfo: RequestInfo
 10 |     /// The response information
 11 |     public let responseInfo: ResponseInfo
    |                `- warning: stored property 'responseInfo' of 'Sendable'-conforming class 'BoxAPIError' has non-sendable type 'ResponseInfo'; this is an error in the Swift 6 language mode
 12 |
 13 |     /// Initializer
/Users/admin/builder/spi-builder-workspace/Sources/Box/Errors/ResponseInfo.swift:4:14: note: class 'ResponseInfo' does not conform to the 'Sendable' protocol
 2 |
 3 | /// The class that represents the response information.
 4 | public class ResponseInfo {
   |              `- note: class 'ResponseInfo' does not conform to the 'Sendable' protocol
 5 |     /// The HTTP status code of the response
 6 |     public let statusCode: Int
/Users/admin/builder/spi-builder-workspace/Sources/Box/Errors/BoxNetworkError.swift:4:14: warning: non-final class 'BoxNetworkError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 2 |
 3 | /// Describes network related errors.
 4 | public class BoxNetworkError: BoxSDKError {
   |              `- warning: non-final class 'BoxNetworkError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 5 |
 6 |     /// Initializer
/Users/admin/builder/spi-builder-workspace/Sources/Box/Errors/BoxSDKError.swift:4:14: warning: non-final class 'BoxSDKError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 2 |
 3 | /// Describes general errors
 4 | public class BoxSDKError: Error {
   |              `- warning: non-final class 'BoxSDKError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 5 |     /// The error message
 6 |     public let message: String
/Users/admin/builder/spi-builder-workspace/Sources/Internal/ArrayInputStream.swift:22:1: warning: extension declares a conformance of imported type 'InputStream' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 20 | import Foundation
 21 |
 22 | extension InputStream: @unchecked Sendable {}
    | |- warning: extension declares a conformance of imported type 'InputStream' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 23 |
 24 | class ArrayInputStream: InputStream {
/Users/admin/builder/spi-builder-workspace/Sources/Internal/ArrayInputStream.swift:24:7: warning: class 'ArrayInputStream' must restate inherited '@unchecked Sendable' conformance
 22 | extension InputStream: @unchecked Sendable {}
 23 |
 24 | class ArrayInputStream: InputStream {
    |       `- warning: class 'ArrayInputStream' must restate inherited '@unchecked Sendable' conformance
 25 |     private let inputStreams: [InputStream]
 26 |
/Users/admin/builder/spi-builder-workspace/Sources/Internal/MemoryInputStream.swift:4:7: warning: class 'MemoryInputStream' must restate inherited '@unchecked Sendable' conformance
  2 |
  3 | /// A custom `InputStream` implementation that reads data from an in-memory `Data` object.
  4 | class MemoryInputStream: InputStream {
    |       `- warning: class 'MemoryInputStream' must restate inherited '@unchecked Sendable' conformance
  5 |     private var data: Data
  6 |     private var position: Int = 0
/Users/admin/builder/spi-builder-workspace/Sources/Networking/BoxConstants.swift:24:16: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'OSInformation' may have shared mutable state; this is an error in the Swift 6 language mode
21 | }
22 |
23 | fileprivate class OSInformation {
   |                   `- note: class 'OSInformation' does not conform to the 'Sendable' protocol
24 |     static let shared = OSInformation()
   |                |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'OSInformation' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 |
26 |     lazy var name: String = {
/Users/admin/builder/spi-builder-workspace/Sources/Networking/NetworkClient.swift:17:14: warning: non-final class 'NetworkClient' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 15 |
 16 | /// Networking layer interface
 17 | public class NetworkClient: NSObject, URLSessionDelegate, URLSessionTaskDelegate, URLSessionDataDelegate, URLSessionDownloadDelegate {
    |              `- warning: non-final class 'NetworkClient' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
 18 |     public static let shared = NetworkClient()
 19 |
/Users/admin/builder/spi-builder-workspace/Sources/Networking/NetworkClient.swift:22:17: warning: stored property 'taskInfos' of 'Sendable'-conforming class 'NetworkClient' is mutable; this is an error in the Swift 6 language mode
 20 |     private let utilityQueue = DispatchQueue.global(qos: .utility)
 21 |     private let continuationQueue = DispatchQueue(label: "BoxSdkGen.NetworkClient.continuationQueue.\(UUID().uuidString)")
 22 |     private var taskInfos: [Int: TaskInfo] = [:]
    |                 `- warning: stored property 'taskInfos' of 'Sendable'-conforming class 'NetworkClient' is mutable; this is an error in the Swift 6 language mode
 23 |
 24 |     private override init() {
[1365/1412] Compiling BoxSdkGen WebLinkSharedLinkPermissionsField.swift
[1366/1412] Compiling BoxSdkGen WebLinkBase.swift
[1367/1412] Compiling BoxSdkGen WebLinkBaseTypeField.swift
[1368/1412] Compiling BoxSdkGen WebLinkMini.swift
[1369/1412] Compiling BoxSdkGen Webhook.swift
[1370/1412] Compiling BoxSdkGen WebhookTriggersField.swift
[1371/1412] Compiling BoxSdkGen WebhookInvocation.swift
[1372/1412] Compiling BoxSdkGen WebhookInvocationTriggerField.swift
[1373/1412] Compiling BoxSdkGen WebhookInvocationTypeField.swift
[1374/1412] Compiling BoxSdkGen WebhookMini.swift
[1375/1412] Compiling BoxSdkGen WebhookMiniTargetField.swift
[1376/1412] Compiling BoxSdkGen WebhookMiniTargetTypeField.swift
[1377/1412] Compiling BoxSdkGen WebhookMiniTypeField.swift
[1378/1412] Compiling BoxSdkGen Webhooks.swift
[1379/1412] Compiling BoxSdkGen Workflow.swift
[1380/1412] Compiling BoxSdkGen WorkflowFlowsField.swift
[1381/1412] Compiling BoxSdkGen WorkflowFlowsOutcomesActionTypeField.swift
[1382/1412] Compiling BoxSdkGen WorkflowFlowsOutcomesField.swift
[1383/1412] Compiling BoxSdkGen WorkflowFlowsOutcomesIfRejectedActionTypeField.swift
[1384/1412] Compiling BoxSdkGen WorkflowFlowsOutcomesIfRejectedField.swift
[1385/1412] Compiling BoxSdkGen WorkflowFlowsOutcomesIfRejectedTypeField.swift
[1386/1412] Compiling BoxSdkGen WorkflowFlowsOutcomesTypeField.swift
[1387/1412] Compiling BoxSdkGen WorkflowFlowsTriggerField.swift
[1388/1412] Compiling BoxSdkGen WorkflowFlowsTriggerScopeField.swift
[1389/1412] Compiling BoxSdkGen WorkflowFlowsTriggerScopeObjectField.swift
[1390/1412] Compiling BoxSdkGen WorkflowFlowsTriggerScopeObjectTypeField.swift
[1391/1412] Compiling BoxSdkGen WorkflowFlowsTriggerScopeTypeField.swift
[1392/1412] Compiling BoxSdkGen WorkflowFlowsTriggerTriggerTypeField.swift
[1393/1412] Compiling BoxSdkGen WorkflowFlowsTriggerTypeField.swift
[1394/1412] Compiling BoxSdkGen WorkflowFlowsTypeField.swift
[1395/1412] Compiling BoxSdkGen WorkflowFull.swift
[1396/1412] Compiling BoxSdkGen WorkflowMini.swift
[1397/1412] Compiling BoxSdkGen WorkflowMiniTypeField.swift
[1398/1412] Compiling BoxSdkGen Workflows.swift
[1399/1412] Compiling BoxSdkGen ZipDownload.swift
[1400/1412] Compiling BoxSdkGen ZipDownloadNameConflictsField.swift
[1401/1412] Compiling BoxSdkGen ZipDownloadNameConflictsTypeField.swift
[1402/1412] Compiling BoxSdkGen ZipDownloadRequest.swift
[1403/1412] Compiling BoxSdkGen ZipDownloadRequestItemsField.swift
[1404/1412] Compiling BoxSdkGen ZipDownloadRequestItemsTypeField.swift
[1405/1412] Compiling BoxSdkGen ZipDownloadStatus.swift
[1406/1412] Compiling BoxSdkGen ZipDownloadStatusStateField.swift
[1407/1412] Compiling BoxSdkGen AnyCodeable.swift
[1408/1412] Compiling BoxSdkGen Codable+Extensions.swift
[1409/1412] Compiling BoxSdkGen CodableStringEnum.swift
[1410/1412] Compiling BoxSdkGen JsonUtils.swift
[1411/1412] Compiling BoxSdkGen SerializedData.swift
[1412/1412] Compiling BoxSdkGen resource_bundle_accessor.swift
Build complete! (37.51s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "BoxSdkGen",
  "name" : "BoxSdkGen",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "10.15"
    },
    {
      "name" : "ios",
      "version" : "13.0"
    },
    {
      "name" : "tvos",
      "version" : "13.0"
    },
    {
      "name" : "watchos",
      "version" : "6.0"
    }
  ],
  "products" : [
    {
      "name" : "BoxSdkGen",
      "targets" : [
        "BoxSdkGen"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "BoxSdkGenTests",
      "module_type" : "SwiftTarget",
      "name" : "BoxSdkGenTests",
      "path" : "Tests",
      "sources" : [
        "Ai/AiManagerTests.swift",
        "AppItemAssociations/AppItemAssociationsManagerTests.swift",
        "Auth/AuthManagerTests.swift",
        "Avatars/AvatarsManagerTests.swift",
        "ChunkedUploads/ChunkedUploadsManagerTests.swift",
        "ChunkedUploads/TestPartAccumulator.swift",
        "Classifications/ClassificationsManagerTests.swift",
        "Client/ClientManagerTests.swift",
        "CollaborationAllowlistEntries/CollaborationAllowlistEntriesManagerTests.swift",
        "CollaborationAllowlistExemptTargets/CollaborationAllowlistExemptTargetsManagerTests.swift",
        "Collections/CollectionsManagerTests.swift",
        "Comments/CommentsManagerTests.swift",
        "Commons/CommonsManager.swift",
        "Downloads/DownloadsManagerTests.swift",
        "EmailAliases/EmailAliasesManagerTests.swift",
        "FileClassifications/FileClassificationsManagerTests.swift",
        "FileMetadata/FileMetadataManagerTests.swift",
        "FileRequests/FileRequestsManagerTests.swift",
        "FileVersionLegalHolds/FileVersionLegalHoldsManagerTests.swift",
        "FileVersionRetentions/FileVersionRetentionsManagerTests.swift",
        "FileVersions/FileVersionsManagerTests.swift",
        "FileWatermarks/FileWatermarksManagerTests.swift",
        "Files/FilesManagerTests.swift",
        "FolderClassifications/FolderClassificationsManagerTests.swift",
        "FolderLocks/FolderLocksManagerTests.swift",
        "FolderMetadata/FolderMetadataManagerTests.swift",
        "FolderWatermarks/FolderWatermarksManagerTests.swift",
        "Folders/FoldersManagerTests.swift",
        "Groups/GroupsManagerTests.swift",
        "IntegrationMappings/IntegrationMappingsManagerTests.swift",
        "Invites/InvitesManagerTests.swift",
        "LegalHoldPolicies/LegalHoldPoliciesManagerTests.swift",
        "LegalHoldPolicyAssignments/LegalHoldPolicyAssignmentsManagerTests.swift",
        "ListCollaborations/ListCollaborationsManagerTests.swift",
        "Memberships/MembershipsManagerTests.swift",
        "MetadataCascadePolicies/MetadataCascadePoliciesManagerTests.swift",
        "MetadataTemplates/MetadataTemplatesManagerTests.swift",
        "RecentItems/RecentItemsManagerTests.swift",
        "RetentionPolicies/RetentionPoliciesManagerTests.swift",
        "RetentionPolicyAssignments/RetentionPolicyAssignmentsManagerTests.swift",
        "SessionTermination/SessionTerminationManagerTests.swift",
        "SharedLinksFiles/SharedLinksFilesManagerTests.swift",
        "SharedLinksFolders/SharedLinksFoldersManagerTests.swift",
        "SharedLinksWebLinks/SharedLinksWebLinksManagerTests.swift",
        "ShieldInformationBarrierReports/ShieldInformationBarrierReportsManagerTests.swift",
        "ShieldInformationBarrierSegmentMembers/ShieldInformationBarrierSegmentMembersManagerTests.swift",
        "ShieldInformationBarrierSegmentRestrictions/ShieldInformationBarrierSegmentRestrictionsManagerTests.swift",
        "ShieldInformationBarrierSegments/ShieldInformationBarrierSegmentsManagerTests.swift",
        "ShieldInformationBarriers/ShieldInformationBarriersManagerTests.swift",
        "SignRequests/SignRequestsManagerTests.swift",
        "SignTemplates/SignTemplatesManagerTests.swift",
        "StoragePolicicyAssignments/StoragePolicicyAssignmentsManagerTests.swift",
        "StoragePolicies/StoragePoliciesManagerTests.swift",
        "TaskAssignments/TaskAssignmentsManagerTests.swift",
        "Tasks/TasksManagerTests.swift",
        "TermsOfServiceUserStatuses/TermsOfServiceUserStatusesManagerTests.swift",
        "TermsOfServices/TermsOfServicesManagerTests.swift",
        "Transfer/TransferManagerTests.swift",
        "TrashedFiles/TrashedFilesManagerTests.swift",
        "TrashedFolders/TrashedFoldersManagerTests.swift",
        "TrashedItems/TrashedItemsManagerTests.swift",
        "TrashedWebLinks/TrashedWebLinksManagerTests.swift",
        "URL+Extensions.swift",
        "Uploads/UploadsManagerTests.swift",
        "UserCollaborations/UserCollaborationsManagerTests.swift",
        "Users/UsersManagerTests.swift",
        "Webhooks/WebhooksManagerTests.swift",
        "Weblinks/WeblinksManagerTests.swift",
        "Workflows/WorkflowsManagerTests.swift",
        "XCTest+Extensions.swift"
      ],
      "target_dependencies" : [
        "BoxSdkGen"
      ],
      "type" : "test"
    },
    {
      "c99name" : "BoxSdkGen",
      "module_type" : "SwiftTarget",
      "name" : "BoxSdkGen",
      "path" : "Sources",
      "product_memberships" : [
        "BoxSdkGen"
      ],
      "resources" : [
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/PrivacyInfo.xcprivacy",
          "rule" : {
            "copy" : {
            }
          }
        }
      ],
      "sources" : [
        "Box/CcgAuth/BoxCCGAuth.swift",
        "Box/CcgAuth/CCGConfig.swift",
        "Box/DeveloperTokenAuth/BoxDeveloperTokenAuth.swift",
        "Box/DeveloperTokenAuth/DeveloperTokenConfig.swift",
        "Box/Errors/BoxAPIError.swift",
        "Box/Errors/BoxNetworkError.swift",
        "Box/Errors/BoxSDKError.swift",
        "Box/Errors/RequestInfo.swift",
        "Box/Errors/ResponseInfo.swift",
        "Box/InMemoryTokenStorage.swift",
        "Box/KeychainTokenStorage.swift",
        "Box/Oauth/BoxOAuth+LoginFlow.swift",
        "Box/Oauth/BoxOAuth.swift",
        "Box/Oauth/BoxOAuthWebAuthentication.swift",
        "Box/Oauth/GetAuthorizeUrlOptions.swift",
        "Box/Oauth/OAuthConfig.swift",
        "Box/TokenStorage.swift",
        "Client/BoxClient.swift",
        "Internal/ArrayInputStream.swift",
        "Internal/Data+Extensions.swift",
        "Internal/DateFormatter+Convenience.swift",
        "Internal/Hash.swift",
        "Internal/MemoryInputStream.swift",
        "Internal/OutputStream+Convenience.swift",
        "Internal/SHA1.swift",
        "Internal/URLSequence.swift",
        "Internal/Utils.swift",
        "Managers/Ai/AiManager.swift",
        "Managers/Ai/CreateAiAskHeaders.swift",
        "Managers/Ai/CreateAiTextGenHeaders.swift",
        "Managers/Ai/GetAiAgentDefaultConfigHeaders.swift",
        "Managers/Ai/GetAiAgentDefaultConfigQueryParams.swift",
        "Managers/Ai/GetAiAgentDefaultConfigQueryParamsModeField.swift",
        "Managers/AppItemAssociations/AppItemAssociationsManager.swift",
        "Managers/AppItemAssociations/GetFileAppItemAssociationsHeaders.swift",
        "Managers/AppItemAssociations/GetFileAppItemAssociationsQueryParams.swift",
        "Managers/AppItemAssociations/GetFolderAppItemAssociationsHeaders.swift",
        "Managers/AppItemAssociations/GetFolderAppItemAssociationsQueryParams.swift",
        "Managers/Authorization/AuthorizationManager.swift",
        "Managers/Authorization/AuthorizeUserHeaders.swift",
        "Managers/Authorization/AuthorizeUserQueryParams.swift",
        "Managers/Authorization/AuthorizeUserQueryParamsResponseTypeField.swift",
        "Managers/Authorization/RefreshAccessTokenHeaders.swift",
        "Managers/Authorization/RequestAccessTokenHeaders.swift",
        "Managers/Authorization/RevokeAccessTokenHeaders.swift",
        "Managers/Avatars/AvatarsManager.swift",
        "Managers/Avatars/CreateUserAvatarHeaders.swift",
        "Managers/Avatars/CreateUserAvatarRequestBody.swift",
        "Managers/Avatars/DeleteUserAvatarHeaders.swift",
        "Managers/Avatars/GetUserAvatarHeaders.swift",
        "Managers/ChunkedUploads/ChunkedUploadsManager.swift",
        "Managers/ChunkedUploads/CreateFileUploadSessionCommitByUrlHeaders.swift",
        "Managers/ChunkedUploads/CreateFileUploadSessionCommitByUrlRequestBody.swift",
        "Managers/ChunkedUploads/CreateFileUploadSessionCommitHeaders.swift",
        "Managers/ChunkedUploads/CreateFileUploadSessionCommitRequestBody.swift",
        "Managers/ChunkedUploads/CreateFileUploadSessionForExistingFileHeaders.swift",
        "Managers/ChunkedUploads/CreateFileUploadSessionForExistingFileRequestBody.swift",
        "Managers/ChunkedUploads/CreateFileUploadSessionHeaders.swift",
        "Managers/ChunkedUploads/CreateFileUploadSessionRequestBody.swift",
        "Managers/ChunkedUploads/DeleteFileUploadSessionByIdHeaders.swift",
        "Managers/ChunkedUploads/DeleteFileUploadSessionByUrlHeaders.swift",
        "Managers/ChunkedUploads/GetFileUploadSessionByIdHeaders.swift",
        "Managers/ChunkedUploads/GetFileUploadSessionByUrlHeaders.swift",
        "Managers/ChunkedUploads/GetFileUploadSessionPartsByUrlHeaders.swift",
        "Managers/ChunkedUploads/GetFileUploadSessionPartsByUrlQueryParams.swift",
        "Managers/ChunkedUploads/GetFileUploadSessionPartsHeaders.swift",
        "Managers/ChunkedUploads/GetFileUploadSessionPartsQueryParams.swift",
        "Managers/ChunkedUploads/PartAccumulator.swift",
        "Managers/ChunkedUploads/UploadFilePartByUrlHeaders.swift",
        "Managers/ChunkedUploads/UploadFilePartHeaders.swift",
        "Managers/Classifications/AddClassificationHeaders.swift",
        "Managers/Classifications/AddClassificationRequestBody.swift",
        "Managers/Classifications/AddClassificationRequestBodyDataField.swift",
        "Managers/Classifications/AddClassificationRequestBodyDataStaticConfigClassificationField.swift",
        "Managers/Classifications/AddClassificationRequestBodyDataStaticConfigField.swift",
        "Managers/Classifications/AddClassificationRequestBodyFieldKeyField.swift",
        "Managers/Classifications/AddClassificationRequestBodyOpField.swift",
        "Managers/Classifications/ClassificationsManager.swift",
        "Managers/Classifications/CreateClassificationTemplateHeaders.swift",
        "Managers/Classifications/CreateClassificationTemplateRequestBody.swift",
        "Managers/Classifications/CreateClassificationTemplateRequestBodyDisplayNameField.swift",
        "Managers/Classifications/CreateClassificationTemplateRequestBodyFieldsDisplayNameField.swift",
        "Managers/Classifications/CreateClassificationTemplateRequestBodyFieldsField.swift",
        "Managers/Classifications/CreateClassificationTemplateRequestBodyFieldsKeyField.swift",
        "Managers/Classifications/CreateClassificationTemplateRequestBodyFieldsOptionsField.swift",
        "Managers/Classifications/CreateClassificationTemplateRequestBodyFieldsOptionsStaticConfigClassificationField.swift",
        "Managers/Classifications/CreateClassificationTemplateRequestBodyFieldsOptionsStaticConfigField.swift",
        "Managers/Classifications/CreateClassificationTemplateRequestBodyFieldsTypeField.swift",
        "Managers/Classifications/CreateClassificationTemplateRequestBodyScopeField.swift",
        "Managers/Classifications/CreateClassificationTemplateRequestBodyTemplateKeyField.swift",
        "Managers/Classifications/GetClassificationTemplateHeaders.swift",
        "Managers/Classifications/UpdateClassificationHeaders.swift",
        "Managers/Classifications/UpdateClassificationRequestBody.swift",
        "Managers/Classifications/UpdateClassificationRequestBodyDataField.swift",
        "Managers/Classifications/UpdateClassificationRequestBodyDataStaticConfigClassificationField.swift",
        "Managers/Classifications/UpdateClassificationRequestBodyDataStaticConfigField.swift",
        "Managers/Classifications/UpdateClassificationRequestBodyFieldKeyField.swift",
        "Managers/Classifications/UpdateClassificationRequestBodyOpField.swift",
        "Managers/CollaborationAllowlistEntries/CollaborationAllowlistEntriesManager.swift",
        "Managers/CollaborationAllowlistEntries/CreateCollaborationWhitelistEntryHeaders.swift",
        "Managers/CollaborationAllowlistEntries/CreateCollaborationWhitelistEntryRequestBody.swift",
        "Managers/CollaborationAllowlistEntries/CreateCollaborationWhitelistEntryRequestBodyDirectionField.swift",
        "Managers/CollaborationAllowlistEntries/DeleteCollaborationWhitelistEntryByIdHeaders.swift",
        "Managers/CollaborationAllowlistEntries/GetCollaborationWhitelistEntriesHeaders.swift",
        "Managers/CollaborationAllowlistEntries/GetCollaborationWhitelistEntriesQueryParams.swift",
        "Managers/CollaborationAllowlistEntries/GetCollaborationWhitelistEntryByIdHeaders.swift",
        "Managers/CollaborationAllowlistExemptTargets/CollaborationAllowlistExemptTargetsManager.swift",
        "Managers/CollaborationAllowlistExemptTargets/CreateCollaborationWhitelistExemptTargetHeaders.swift",
        "Managers/CollaborationAllowlistExemptTargets/CreateCollaborationWhitelistExemptTargetRequestBody.swift",
        "Managers/CollaborationAllowlistExemptTargets/CreateCollaborationWhitelistExemptTargetRequestBodyUserField.swift",
        "Managers/CollaborationAllowlistExemptTargets/DeleteCollaborationWhitelistExemptTargetByIdHeaders.swift",
        "Managers/CollaborationAllowlistExemptTargets/GetCollaborationWhitelistExemptTargetByIdHeaders.swift",
        "Managers/CollaborationAllowlistExemptTargets/GetCollaborationWhitelistExemptTargetsHeaders.swift",
        "Managers/CollaborationAllowlistExemptTargets/GetCollaborationWhitelistExemptTargetsQueryParams.swift",
        "Managers/Collections/CollectionsManager.swift",
        "Managers/Collections/GetCollectionItemsHeaders.swift",
        "Managers/Collections/GetCollectionItemsQueryParams.swift",
        "Managers/Collections/GetCollectionsHeaders.swift",
        "Managers/Collections/GetCollectionsQueryParams.swift",
        "Managers/Comments/CommentsManager.swift",
        "Managers/Comments/CreateCommentHeaders.swift",
        "Managers/Comments/CreateCommentQueryParams.swift",
        "Managers/Comments/CreateCommentRequestBody.swift",
        "Managers/Comments/CreateCommentRequestBodyItemField.swift",
        "Managers/Comments/CreateCommentRequestBodyItemTypeField.swift",
        "Managers/Comments/DeleteCommentByIdHeaders.swift",
        "Managers/Comments/GetCommentByIdHeaders.swift",
        "Managers/Comments/GetCommentByIdQueryParams.swift",
        "Managers/Comments/GetFileCommentsHeaders.swift",
        "Managers/Comments/GetFileCommentsQueryParams.swift",
        "Managers/Comments/UpdateCommentByIdHeaders.swift",
        "Managers/Comments/UpdateCommentByIdQueryParams.swift",
        "Managers/Comments/UpdateCommentByIdRequestBody.swift",
        "Managers/DevicePinners/DeleteDevicePinnerByIdHeaders.swift",
        "Managers/DevicePinners/DevicePinnersManager.swift",
        "Managers/DevicePinners/GetDevicePinnerByIdHeaders.swift",
        "Managers/DevicePinners/GetEnterpriseDevicePinnersHeaders.swift",
        "Managers/DevicePinners/GetEnterpriseDevicePinnersQueryParams.swift",
        "Managers/DevicePinners/GetEnterpriseDevicePinnersQueryParamsDirectionField.swift",
        "Managers/Downloads/DownloadFileHeaders.swift",
        "Managers/Downloads/DownloadFileQueryParams.swift",
        "Managers/Downloads/DownloadsManager.swift",
        "Managers/EmailAliases/CreateUserEmailAliasHeaders.swift",
        "Managers/EmailAliases/CreateUserEmailAliasRequestBody.swift",
        "Managers/EmailAliases/DeleteUserEmailAliasByIdHeaders.swift",
        "Managers/EmailAliases/EmailAliasesManager.swift",
        "Managers/EmailAliases/GetUserEmailAliasesHeaders.swift",
        "Managers/Events/EventsManager.swift",
        "Managers/Events/GetEventsHeaders.swift",
        "Managers/Events/GetEventsQueryParams.swift",
        "Managers/Events/GetEventsQueryParamsEventTypeField.swift",
        "Managers/Events/GetEventsQueryParamsStreamTypeField.swift",
        "Managers/Events/GetEventsWithLongPollingHeaders.swift",
        "Managers/FileClassifications/AddClassificationToFileHeaders.swift",
        "Managers/FileClassifications/AddClassificationToFileRequestBody.swift",
        "Managers/FileClassifications/DeleteClassificationFromFileHeaders.swift",
        "Managers/FileClassifications/FileClassificationsManager.swift",
        "Managers/FileClassifications/GetClassificationOnFileHeaders.swift",
        "Managers/FileClassifications/UpdateClassificationOnFileHeaders.swift",
        "Managers/FileClassifications/UpdateClassificationOnFileRequestBody.swift",
        "Managers/FileClassifications/UpdateClassificationOnFileRequestBodyOpField.swift",
        "Managers/FileClassifications/UpdateClassificationOnFileRequestBodyPathField.swift",
        "Managers/FileMetadata/CreateFileMetadataByIdHeaders.swift",
        "Managers/FileMetadata/CreateFileMetadataByIdRequestBody.swift",
        "Managers/FileMetadata/CreateFileMetadataByIdScope.swift",
        "Managers/FileMetadata/DeleteFileMetadataByIdHeaders.swift",
        "Managers/FileMetadata/DeleteFileMetadataByIdScope.swift",
        "Managers/FileMetadata/FileMetadataManager.swift",
        "Managers/FileMetadata/GetFileMetadataByIdHeaders.swift",
        "Managers/FileMetadata/GetFileMetadataByIdScope.swift",
        "Managers/FileMetadata/GetFileMetadataHeaders.swift",
        "Managers/FileMetadata/UpdateFileMetadataByIdHeaders.swift",
        "Managers/FileMetadata/UpdateFileMetadataByIdRequestBody.swift",
        "Managers/FileMetadata/UpdateFileMetadataByIdRequestBodyOpField.swift",
        "Managers/FileMetadata/UpdateFileMetadataByIdScope.swift",
        "Managers/FileRequests/CreateFileRequestCopyHeaders.swift",
        "Managers/FileRequests/DeleteFileRequestByIdHeaders.swift",
        "Managers/FileRequests/FileRequestsManager.swift",
        "Managers/FileRequests/GetFileRequestByIdHeaders.swift",
        "Managers/FileRequests/UpdateFileRequestByIdHeaders.swift",
        "Managers/FileVersionLegalHolds/FileVersionLegalHoldsManager.swift",
        "Managers/FileVersionLegalHolds/GetFileVersionLegalHoldByIdHeaders.swift",
        "Managers/FileVersionLegalHolds/GetFileVersionLegalHoldsHeaders.swift",
        "Managers/FileVersionLegalHolds/GetFileVersionLegalHoldsQueryParams.swift",
        "Managers/FileVersionRetentions/FileVersionRetentionsManager.swift",
        "Managers/FileVersionRetentions/GetFileVersionRetentionByIdHeaders.swift",
        "Managers/FileVersionRetentions/GetFileVersionRetentionsHeaders.swift",
        "Managers/FileVersionRetentions/GetFileVersionRetentionsQueryParams.swift",
        "Managers/FileVersionRetentions/GetFileVersionRetentionsQueryParamsDispositionActionField.swift",
        "Managers/FileVersions/DeleteFileVersionByIdHeaders.swift",
        "Managers/FileVersions/FileVersionsManager.swift",
        "Managers/FileVersions/GetFileVersionByIdHeaders.swift",
        "Managers/FileVersions/GetFileVersionByIdQueryParams.swift",
        "Managers/FileVersions/GetFileVersionsHeaders.swift",
        "Managers/FileVersions/GetFileVersionsQueryParams.swift",
        "Managers/FileVersions/PromoteFileVersionHeaders.swift",
        "Managers/FileVersions/PromoteFileVersionQueryParams.swift",
        "Managers/FileVersions/PromoteFileVersionRequestBody.swift",
        "Managers/FileVersions/PromoteFileVersionRequestBodyTypeField.swift",
        "Managers/FileVersions/UpdateFileVersionByIdHeaders.swift",
        "Managers/FileVersions/UpdateFileVersionByIdRequestBody.swift",
        "Managers/FileWatermarks/DeleteFileWatermarkHeaders.swift",
        "Managers/FileWatermarks/FileWatermarksManager.swift",
        "Managers/FileWatermarks/GetFileWatermarkHeaders.swift",
        "Managers/FileWatermarks/UpdateFileWatermarkHeaders.swift",
        "Managers/FileWatermarks/UpdateFileWatermarkRequestBody.swift",
        "Managers/FileWatermarks/UpdateFileWatermarkRequestBodyWatermarkField.swift",
        "Managers/FileWatermarks/UpdateFileWatermarkRequestBodyWatermarkImprintField.swift",
        "Managers/Files/CopyFileHeaders.swift",
        "Managers/Files/CopyFileQueryParams.swift",
        "Managers/Files/CopyFileRequestBody.swift",
        "Managers/Files/CopyFileRequestBodyParentField.swift",
        "Managers/Files/DeleteFileByIdHeaders.swift",
        "Managers/Files/FilesManager.swift",
        "Managers/Files/GetFileByIdHeaders.swift",
        "Managers/Files/GetFileByIdQueryParams.swift",
        "Managers/Files/GetFileThumbnailByIdExtension.swift",
        "Managers/Files/GetFileThumbnailByIdHeaders.swift",
        "Managers/Files/GetFileThumbnailByIdQueryParams.swift",
        "Managers/Files/UpdateFileByIdHeaders.swift",
        "Managers/Files/UpdateFileByIdQueryParams.swift",
        "Managers/Files/UpdateFileByIdRequestBody.swift",
        "Managers/Files/UpdateFileByIdRequestBodyCollectionsField.swift",
        "Managers/Files/UpdateFileByIdRequestBodyLockAccessField.swift",
        "Managers/Files/UpdateFileByIdRequestBodyLockField.swift",
        "Managers/Files/UpdateFileByIdRequestBodyParentField.swift",
        "Managers/Files/UpdateFileByIdRequestBodyPermissionsCanDownloadField.swift",
        "Managers/Files/UpdateFileByIdRequestBodyPermissionsField.swift",
        "Managers/Files/UpdateFileByIdRequestBodySharedLinkAccessField.swift",
        "Managers/Files/UpdateFileByIdRequestBodySharedLinkField.swift",
        "Managers/Files/UpdateFileByIdRequestBodySharedLinkPermissionsField.swift",
        "Managers/FolderClassifications/AddClassificationToFolderHeaders.swift",
        "Managers/FolderClassifications/AddClassificationToFolderRequestBody.swift",
        "Managers/FolderClassifications/DeleteClassificationFromFolderHeaders.swift",
        "Managers/FolderClassifications/FolderClassificationsManager.swift",
        "Managers/FolderClassifications/GetClassificationOnFolderHeaders.swift",
        "Managers/FolderClassifications/UpdateClassificationOnFolderHeaders.swift",
        "Managers/FolderClassifications/UpdateClassificationOnFolderRequestBody.swift",
        "Managers/FolderClassifications/UpdateClassificationOnFolderRequestBodyOpField.swift",
        "Managers/FolderClassifications/UpdateClassificationOnFolderRequestBodyPathField.swift",
        "Managers/FolderLocks/CreateFolderLockHeaders.swift",
        "Managers/FolderLocks/CreateFolderLockRequestBody.swift",
        "Managers/FolderLocks/CreateFolderLockRequestBodyFolderField.swift",
        "Managers/FolderLocks/CreateFolderLockRequestBodyLockedOperationsField.swift",
        "Managers/FolderLocks/DeleteFolderLockByIdHeaders.swift",
        "Managers/FolderLocks/FolderLocksManager.swift",
        "Managers/FolderLocks/GetFolderLocksHeaders.swift",
        "Managers/FolderLocks/GetFolderLocksQueryParams.swift",
        "Managers/FolderMetadata/CreateFolderMetadataByIdHeaders.swift",
        "Managers/FolderMetadata/CreateFolderMetadataByIdRequestBody.swift",
        "Managers/FolderMetadata/CreateFolderMetadataByIdScope.swift",
        "Managers/FolderMetadata/DeleteFolderMetadataByIdHeaders.swift",
        "Managers/FolderMetadata/DeleteFolderMetadataByIdScope.swift",
        "Managers/FolderMetadata/FolderMetadataManager.swift",
        "Managers/FolderMetadata/GetFolderMetadataByIdHeaders.swift",
        "Managers/FolderMetadata/GetFolderMetadataByIdScope.swift",
        "Managers/FolderMetadata/GetFolderMetadataHeaders.swift",
        "Managers/FolderMetadata/UpdateFolderMetadataByIdHeaders.swift",
        "Managers/FolderMetadata/UpdateFolderMetadataByIdRequestBody.swift",
        "Managers/FolderMetadata/UpdateFolderMetadataByIdRequestBodyOpField.swift",
        "Managers/FolderMetadata/UpdateFolderMetadataByIdScope.swift",
        "Managers/FolderWatermarks/DeleteFolderWatermarkHeaders.swift",
        "Managers/FolderWatermarks/FolderWatermarksManager.swift",
        "Managers/FolderWatermarks/GetFolderWatermarkHeaders.swift",
        "Managers/FolderWatermarks/UpdateFolderWatermarkHeaders.swift",
        "Managers/FolderWatermarks/UpdateFolderWatermarkRequestBody.swift",
        "Managers/FolderWatermarks/UpdateFolderWatermarkRequestBodyWatermarkField.swift",
        "Managers/FolderWatermarks/UpdateFolderWatermarkRequestBodyWatermarkImprintField.swift",
        "Managers/Folders/CopyFolderHeaders.swift",
        "Managers/Folders/CopyFolderQueryParams.swift",
        "Managers/Folders/CopyFolderRequestBody.swift",
        "Managers/Folders/CopyFolderRequestBodyParentField.swift",
        "Managers/Folders/CreateFolderHeaders.swift",
        "Managers/Folders/CreateFolderQueryParams.swift",
        "Managers/Folders/CreateFolderRequestBody.swift",
        "Managers/Folders/CreateFolderRequestBodyFolderUploadEmailAccessField.swift",
        "Managers/Folders/CreateFolderRequestBodyFolderUploadEmailField.swift",
        "Managers/Folders/CreateFolderRequestBodyParentField.swift",
        "Managers/Folders/CreateFolderRequestBodySyncStateField.swift",
        "Managers/Folders/DeleteFolderByIdHeaders.swift",
        "Managers/Folders/DeleteFolderByIdQueryParams.swift",
        "Managers/Folders/FoldersManager.swift",
        "Managers/Folders/GetFolderByIdHeaders.swift",
        "Managers/Folders/GetFolderByIdQueryParams.swift",
        "Managers/Folders/GetFolderByIdQueryParamsDirectionField.swift",
        "Managers/Folders/GetFolderByIdQueryParamsSortField.swift",
        "Managers/Folders/GetFolderItemsHeaders.swift",
        "Managers/Folders/GetFolderItemsQueryParams.swift",
        "Managers/Folders/GetFolderItemsQueryParamsDirectionField.swift",
        "Managers/Folders/GetFolderItemsQueryParamsSortField.swift",
        "Managers/Folders/UpdateFolderByIdHeaders.swift",
        "Managers/Folders/UpdateFolderByIdQueryParams.swift",
        "Managers/Folders/UpdateFolderByIdRequestBody.swift",
        "Managers/Folders/UpdateFolderByIdRequestBodyCollectionsField.swift",
        "Managers/Folders/UpdateFolderByIdRequestBodyFolderUploadEmailAccessField.swift",
        "Managers/Folders/UpdateFolderByIdRequestBodyFolderUploadEmailField.swift",
        "Managers/Folders/UpdateFolderByIdRequestBodyParentField.swift",
        "Managers/Folders/UpdateFolderByIdRequestBodySharedLinkAccessField.swift",
        "Managers/Folders/UpdateFolderByIdRequestBodySharedLinkField.swift",
        "Managers/Folders/UpdateFolderByIdRequestBodySharedLinkPermissionsField.swift",
        "Managers/Folders/UpdateFolderByIdRequestBodySyncStateField.swift",
        "Managers/Groups/CreateGroupHeaders.swift",
        "Managers/Groups/CreateGroupQueryParams.swift",
        "Managers/Groups/CreateGroupRequestBody.swift",
        "Managers/Groups/CreateGroupRequestBodyInvitabilityLevelField.swift",
        "Managers/Groups/CreateGroupRequestBodyMemberViewabilityLevelField.swift",
        "Managers/Groups/DeleteGroupByIdHeaders.swift",
        "Managers/Groups/GetGroupByIdHeaders.swift",
        "Managers/Groups/GetGroupByIdQueryParams.swift",
        "Managers/Groups/GetGroupsHeaders.swift",
        "Managers/Groups/GetGroupsQueryParams.swift",
        "Managers/Groups/GroupsManager.swift",
        "Managers/Groups/UpdateGroupByIdHeaders.swift",
        "Managers/Groups/UpdateGroupByIdQueryParams.swift",
        "Managers/Groups/UpdateGroupByIdRequestBody.swift",
        "Managers/Groups/UpdateGroupByIdRequestBodyInvitabilityLevelField.swift",
        "Managers/Groups/UpdateGroupByIdRequestBodyMemberViewabilityLevelField.swift",
        "Managers/IntegrationMappings/CreateSlackIntegrationMappingHeaders.swift",
        "Managers/IntegrationMappings/DeleteSlackIntegrationMappingByIdHeaders.swift",
        "Managers/IntegrationMappings/GetSlackIntegrationMappingHeaders.swift",
        "Managers/IntegrationMappings/GetSlackIntegrationMappingQueryParams.swift",
        "Managers/IntegrationMappings/GetSlackIntegrationMappingQueryParamsBoxItemTypeField.swift",
        "Managers/IntegrationMappings/GetSlackIntegrationMappingQueryParamsPartnerItemTypeField.swift",
        "Managers/IntegrationMappings/IntegrationMappingsManager.swift",
        "Managers/IntegrationMappings/UpdateSlackIntegrationMappingByIdHeaders.swift",
        "Managers/IntegrationMappings/UpdateSlackIntegrationMappingByIdRequestBody.swift",
        "Managers/Invites/CreateInviteHeaders.swift",
        "Managers/Invites/CreateInviteQueryParams.swift",
        "Managers/Invites/CreateInviteRequestBody.swift",
        "Managers/Invites/CreateInviteRequestBodyActionableByField.swift",
        "Managers/Invites/CreateInviteRequestBodyEnterpriseField.swift",
        "Managers/Invites/GetInviteByIdHeaders.swift",
        "Managers/Invites/GetInviteByIdQueryParams.swift",
        "Managers/Invites/InvitesManager.swift",
        "Managers/LegalHoldPolicies/CreateLegalHoldPolicyHeaders.swift",
        "Managers/LegalHoldPolicies/CreateLegalHoldPolicyRequestBody.swift",
        "Managers/LegalHoldPolicies/DeleteLegalHoldPolicyByIdHeaders.swift",
        "Managers/LegalHoldPolicies/GetLegalHoldPoliciesHeaders.swift",
        "Managers/LegalHoldPolicies/GetLegalHoldPoliciesQueryParams.swift",
        "Managers/LegalHoldPolicies/GetLegalHoldPolicyByIdHeaders.swift",
        "Managers/LegalHoldPolicies/LegalHoldPoliciesManager.swift",
        "Managers/LegalHoldPolicies/UpdateLegalHoldPolicyByIdHeaders.swift",
        "Managers/LegalHoldPolicies/UpdateLegalHoldPolicyByIdRequestBody.swift",
        "Managers/LegalHoldPolicyAssignments/CreateLegalHoldPolicyAssignmentHeaders.swift",
        "Managers/LegalHoldPolicyAssignments/CreateLegalHoldPolicyAssignmentRequestBody.swift",
        "Managers/LegalHoldPolicyAssignments/CreateLegalHoldPolicyAssignmentRequestBodyAssignToField.swift",
        "Managers/LegalHoldPolicyAssignments/CreateLegalHoldPolicyAssignmentRequestBodyAssignToTypeField.swift",
        "Managers/LegalHoldPolicyAssignments/DeleteLegalHoldPolicyAssignmentByIdHeaders.swift",
        "Managers/LegalHoldPolicyAssignments/GetLegalHoldPolicyAssignmentByIdHeaders.swift",
        "Managers/LegalHoldPolicyAssignments/GetLegalHoldPolicyAssignmentFileOnHoldHeaders.swift",
        "Managers/LegalHoldPolicyAssignments/GetLegalHoldPolicyAssignmentFileOnHoldQueryParams.swift",
        "Managers/LegalHoldPolicyAssignments/GetLegalHoldPolicyAssignmentsHeaders.swift",
        "Managers/LegalHoldPolicyAssignments/GetLegalHoldPolicyAssignmentsQueryParams.swift",
        "Managers/LegalHoldPolicyAssignments/GetLegalHoldPolicyAssignmentsQueryParamsAssignToTypeField.swift",
        "Managers/LegalHoldPolicyAssignments/LegalHoldPolicyAssignmentsManager.swift",
        "Managers/ListCollaborations/GetCollaborationsHeaders.swift",
        "Managers/ListCollaborations/GetCollaborationsQueryParams.swift",
        "Managers/ListCollaborations/GetCollaborationsQueryParamsStatusField.swift",
        "Managers/ListCollaborations/GetFileCollaborationsHeaders.swift",
        "Managers/ListCollaborations/GetFileCollaborationsQueryParams.swift",
        "Managers/ListCollaborations/GetFolderCollaborationsHeaders.swift",
        "Managers/ListCollaborations/GetFolderCollaborationsQueryParams.swift",
        "Managers/ListCollaborations/GetGroupCollaborationsHeaders.swift",
        "Managers/ListCollaborations/GetGroupCollaborationsQueryParams.swift",
        "Managers/ListCollaborations/ListCollaborationsManager.swift",
        "Managers/Memberships/CreateGroupMembershipHeaders.swift",
        "Managers/Memberships/CreateGroupMembershipQueryParams.swift",
        "Managers/Memberships/CreateGroupMembershipRequestBody.swift",
        "Managers/Memberships/CreateGroupMembershipRequestBodyGroupField.swift",
        "Managers/Memberships/CreateGroupMembershipRequestBodyRoleField.swift",
        "Managers/Memberships/CreateGroupMembershipRequestBodyUserField.swift",
        "Managers/Memberships/DeleteGroupMembershipByIdHeaders.swift",
        "Managers/Memberships/GetGroupMembershipByIdHeaders.swift",
        "Managers/Memberships/GetGroupMembershipByIdQueryParams.swift",
        "Managers/Memberships/GetGroupMembershipsHeaders.swift",
        "Managers/Memberships/GetGroupMembershipsQueryParams.swift",
        "Managers/Memberships/GetUserMembershipsHeaders.swift",
        "Managers/Memberships/GetUserMembershipsQueryParams.swift",
        "Managers/Memberships/MembershipsManager.swift",
        "Managers/Memberships/UpdateGroupMembershipByIdHeaders.swift",
        "Managers/Memberships/UpdateGroupMembershipByIdQueryParams.swift",
        "Managers/Memberships/UpdateGroupMembershipByIdRequestBody.swift",
        "Managers/Memberships/UpdateGroupMembershipByIdRequestBodyRoleField.swift",
        "Managers/MetadataCascadePolicies/ApplyMetadataCascadePolicyHeaders.swift",
        "Managers/MetadataCascadePolicies/ApplyMetadataCascadePolicyRequestBody.swift",
        "Managers/MetadataCascadePolicies/ApplyMetadataCascadePolicyRequestBodyConflictResolutionField.swift",
        "Managers/MetadataCascadePolicies/CreateMetadataCascadePolicyHeaders.swift",
        "Managers/MetadataCascadePolicies/CreateMetadataCascadePolicyRequestBody.swift",
        "Managers/MetadataCascadePolicies/CreateMetadataCascadePolicyRequestBodyScopeField.swift",
        "Managers/MetadataCascadePolicies/DeleteMetadataCascadePolicyByIdHeaders.swift",
        "Managers/MetadataCascadePolicies/GetMetadataCascadePoliciesHeaders.swift",
        "Managers/MetadataCascadePolicies/GetMetadataCascadePoliciesQueryParams.swift",
        "Managers/MetadataCascadePolicies/GetMetadataCascadePolicyByIdHeaders.swift",
        "Managers/MetadataCascadePolicies/MetadataCascadePoliciesManager.swift",
        "Managers/MetadataTemplates/CreateMetadataTemplateHeaders.swift",
        "Managers/MetadataTemplates/CreateMetadataTemplateRequestBody.swift",
        "Managers/MetadataTemplates/CreateMetadataTemplateRequestBodyFieldsField.swift",
        "Managers/MetadataTemplates/CreateMetadataTemplateRequestBodyFieldsOptionsField.swift",
        "Managers/MetadataTemplates/CreateMetadataTemplateRequestBodyFieldsTypeField.swift",
        "Managers/MetadataTemplates/DeleteMetadataTemplateHeaders.swift",
        "Managers/MetadataTemplates/DeleteMetadataTemplateScope.swift",
        "Managers/MetadataTemplates/GetEnterpriseMetadataTemplatesHeaders.swift",
        "Managers/MetadataTemplates/GetEnterpriseMetadataTemplatesQueryParams.swift",
        "Managers/MetadataTemplates/GetGlobalMetadataTemplatesHeaders.swift",
        "Managers/MetadataTemplates/GetGlobalMetadataTemplatesQueryParams.swift",
        "Managers/MetadataTemplates/GetMetadataTemplateByIdHeaders.swift",
        "Managers/MetadataTemplates/GetMetadataTemplateHeaders.swift",
        "Managers/MetadataTemplates/GetMetadataTemplateScope.swift",
        "Managers/MetadataTemplates/GetMetadataTemplatesByInstanceIdHeaders.swift",
        "Managers/MetadataTemplates/GetMetadataTemplatesByInstanceIdQueryParams.swift",
        "Managers/MetadataTemplates/MetadataTemplatesManager.swift",
        "Managers/MetadataTemplates/UpdateMetadataTemplateHeaders.swift",
        "Managers/MetadataTemplates/UpdateMetadataTemplateRequestBody.swift",
        "Managers/MetadataTemplates/UpdateMetadataTemplateRequestBodyOpField.swift",
        "Managers/MetadataTemplates/UpdateMetadataTemplateScope.swift",
        "Managers/RecentItems/GetRecentItemsHeaders.swift",
        "Managers/RecentItems/GetRecentItemsQueryParams.swift",
        "Managers/RecentItems/RecentItemsManager.swift",
        "Managers/RetentionPolicies/CreateRetentionPolicyHeaders.swift",
        "Managers/RetentionPolicies/CreateRetentionPolicyRequestBody.swift",
        "Managers/RetentionPolicies/CreateRetentionPolicyRequestBodyDispositionActionField.swift",
        "Managers/RetentionPolicies/CreateRetentionPolicyRequestBodyPolicyTypeField.swift",
        "Managers/RetentionPolicies/CreateRetentionPolicyRequestBodyRetentionTypeField.swift",
        "Managers/RetentionPolicies/DeleteRetentionPolicyByIdHeaders.swift",
        "Managers/RetentionPolicies/GetRetentionPoliciesHeaders.swift",
        "Managers/RetentionPolicies/GetRetentionPoliciesQueryParams.swift",
        "Managers/RetentionPolicies/GetRetentionPoliciesQueryParamsPolicyTypeField.swift",
        "Managers/RetentionPolicies/GetRetentionPolicyByIdHeaders.swift",
        "Managers/RetentionPolicies/GetRetentionPolicyByIdQueryParams.swift",
        "Managers/RetentionPolicies/RetentionPoliciesManager.swift",
        "Managers/RetentionPolicies/UpdateRetentionPolicyByIdHeaders.swift",
        "Managers/RetentionPolicies/UpdateRetentionPolicyByIdRequestBody.swift",
        "Managers/RetentionPolicyAssignments/CreateRetentionPolicyAssignmentHeaders.swift",
        "Managers/RetentionPolicyAssignments/CreateRetentionPolicyAssignmentRequestBody.swift",
        "Managers/RetentionPolicyAssignments/CreateRetentionPolicyAssignmentRequestBodyAssignToField.swift",
        "Managers/RetentionPolicyAssignments/CreateRetentionPolicyAssignmentRequestBodyAssignToTypeField.swift",
        "Managers/RetentionPolicyAssignments/CreateRetentionPolicyAssignmentRequestBodyFilterFieldsField.swift",
        "Managers/RetentionPolicyAssignments/DeleteRetentionPolicyAssignmentByIdHeaders.swift",
        "Managers/RetentionPolicyAssignments/GetFilesUnderRetentionPolicyAssignmentHeaders.swift",
        "Managers/RetentionPolicyAssignments/GetFilesUnderRetentionPolicyAssignmentQueryParams.swift",
        "Managers/RetentionPolicyAssignments/GetRetentionPolicyAssignmentByIdHeaders.swift",
        "Managers/RetentionPolicyAssignments/GetRetentionPolicyAssignmentByIdQueryParams.swift",
        "Managers/RetentionPolicyAssignments/GetRetentionPolicyAssignmentsHeaders.swift",
        "Managers/RetentionPolicyAssignments/GetRetentionPolicyAssignmentsQueryParams.swift",
        "Managers/RetentionPolicyAssignments/GetRetentionPolicyAssignmentsQueryParamsTypeField.swift",
        "Managers/RetentionPolicyAssignments/RetentionPolicyAssignmentsManager.swift",
        "Managers/Search/SearchByMetadataQueryHeaders.swift",
        "Managers/Search/SearchForContentHeaders.swift",
        "Managers/Search/SearchForContentQueryParams.swift",
        "Managers/Search/SearchForContentQueryParamsContentTypesField.swift",
        "Managers/Search/SearchForContentQueryParamsDirectionField.swift",
        "Managers/Search/SearchForContentQueryParamsScopeField.swift",
        "Managers/Search/SearchForContentQueryParamsSortField.swift",
        "Managers/Search/SearchForContentQueryParamsTrashContentField.swift",
        "Managers/Search/SearchForContentQueryParamsTypeField.swift",
        "Managers/Search/SearchManager.swift",
        "Managers/SessionTermination/SessionTerminationManager.swift",
        "Managers/SessionTermination/TerminateGroupsSessionsHeaders.swift",
        "Managers/SessionTermination/TerminateGroupsSessionsRequestBody.swift",
        "Managers/SessionTermination/TerminateUsersSessionsHeaders.swift",
        "Managers/SessionTermination/TerminateUsersSessionsRequestBody.swift",
        "Managers/SharedLinksFiles/AddShareLinkToFileHeaders.swift",
        "Managers/SharedLinksFiles/AddShareLinkToFileQueryParams.swift",
        "Managers/SharedLinksFiles/AddShareLinkToFileRequestBody.swift",
        "Managers/SharedLinksFiles/AddShareLinkToFileRequestBodySharedLinkAccessField.swift",
        "Managers/SharedLinksFiles/AddShareLinkToFileRequestBodySharedLinkField.swift",
        "Managers/SharedLinksFiles/AddShareLinkToFileRequestBodySharedLinkPermissionsField.swift",
        "Managers/SharedLinksFiles/FindFileForSharedLinkHeaders.swift",
        "Managers/SharedLinksFiles/FindFileForSharedLinkQueryParams.swift",
        "Managers/SharedLinksFiles/GetSharedLinkForFileHeaders.swift",
        "Managers/SharedLinksFiles/GetSharedLinkForFileQueryParams.swift",
        "Managers/SharedLinksFiles/RemoveSharedLinkFromFileHeaders.swift",
        "Managers/SharedLinksFiles/RemoveSharedLinkFromFileQueryParams.swift",
        "Managers/SharedLinksFiles/RemoveSharedLinkFromFileRequestBody.swift",
        "Managers/SharedLinksFiles/RemoveSharedLinkFromFileRequestBodySharedLinkField.swift",
        "Managers/SharedLinksFiles/SharedLinksFilesManager.swift",
        "Managers/SharedLinksFiles/UpdateSharedLinkOnFileHeaders.swift",
        "Managers/SharedLinksFiles/UpdateSharedLinkOnFileQueryParams.swift",
        "Managers/SharedLinksFiles/UpdateSharedLinkOnFileRequestBody.swift",
        "Managers/SharedLinksFiles/UpdateSharedLinkOnFileRequestBodySharedLinkAccessField.swift",
        "Managers/SharedLinksFiles/UpdateSharedLinkOnFileRequestBodySharedLinkField.swift",
        "Managers/SharedLinksFiles/UpdateSharedLinkOnFileRequestBodySharedLinkPermissionsField.swift",
        "Managers/SharedLinksFolders/AddShareLinkToFolderHeaders.swift",
        "Managers/SharedLinksFolders/AddShareLinkToFolderQueryParams.swift",
        "Managers/SharedLinksFolders/AddShareLinkToFolderRequestBody.swift",
        "Managers/SharedLinksFolders/AddShareLinkToFolderRequestBodySharedLinkAccessField.swift",
        "Managers/SharedLinksFolders/AddShareLinkToFolderRequestBodySharedLinkField.swift",
        "Managers/SharedLinksFolders/AddShareLinkToFolderRequestBodySharedLinkPermissionsField.swift",
        "Managers/SharedLinksFolders/FindFolderForSharedLinkHeaders.swift",
        "Managers/SharedLinksFolders/FindFolderForSharedLinkQueryParams.swift",
        "Managers/SharedLinksFolders/GetSharedLinkForFolderHeaders.swift",
        "Managers/SharedLinksFolders/GetSharedLinkForFolderQueryParams.swift",
        "Managers/SharedLinksFolders/RemoveSharedLinkFromFolderHeaders.swift",
        "Managers/SharedLinksFolders/RemoveSharedLinkFromFolderQueryParams.swift",
        "Managers/SharedLinksFolders/RemoveSharedLinkFromFolderRequestBody.swift",
        "Managers/SharedLinksFolders/RemoveSharedLinkFromFolderRequestBodySharedLinkField.swift",
        "Managers/SharedLinksFolders/SharedLinksFoldersManager.swift",
        "Managers/SharedLinksFolders/UpdateSharedLinkOnFolderHeaders.swift",
        "Managers/SharedLinksFolders/UpdateSharedLinkOnFolderQueryParams.swift",
        "Managers/SharedLinksFolders/UpdateSharedLinkOnFolderRequestBody.swift",
        "Managers/SharedLinksFolders/UpdateSharedLinkOnFolderRequestBodySharedLinkAccessField.swift",
        "Managers/SharedLinksFolders/UpdateSharedLinkOnFolderRequestBodySharedLinkField.swift",
        "Managers/SharedLinksFolders/UpdateSharedLinkOnFolderRequestBodySharedLinkPermissionsField.swift",
        "Managers/SharedLinksWebLinks/AddShareLinkToWebLinkHeaders.swift",
        "Managers/SharedLinksWebLinks/AddShareLinkToWebLinkQueryParams.swift",
        "Managers/SharedLinksWebLinks/AddShareLinkToWebLinkRequestBody.swift",
        "Managers/SharedLinksWebLinks/AddShareLinkToWebLinkRequestBodySharedLinkAccessField.swift",
        "Managers/SharedLinksWebLinks/AddShareLinkToWebLinkRequestBodySharedLinkField.swift",
        "Managers/SharedLinksWebLinks/AddShareLinkToWebLinkRequestBodySharedLinkPermissionsField.swift",
        "Managers/SharedLinksWebLinks/FindWebLinkForSharedLinkHeaders.swift",
        "Managers/SharedLinksWebLinks/FindWebLinkForSharedLinkQueryParams.swift",
        "Managers/SharedLinksWebLinks/GetSharedLinkForWebLinkHeaders.swift",
        "Managers/SharedLinksWebLinks/GetSharedLinkForWebLinkQueryParams.swift",
        "Managers/SharedLinksWebLinks/RemoveSharedLinkFromWebLinkHeaders.swift",
        "Managers/SharedLinksWebLinks/RemoveSharedLinkFromWebLinkQueryParams.swift",
        "Managers/SharedLinksWebLinks/RemoveSharedLinkFromWebLinkRequestBody.swift",
        "Managers/SharedLinksWebLinks/RemoveSharedLinkFromWebLinkRequestBodySharedLinkField.swift",
        "Managers/SharedLinksWebLinks/SharedLinksWebLinksManager.swift",
        "Managers/SharedLinksWebLinks/UpdateSharedLinkOnWebLinkHeaders.swift",
        "Managers/SharedLinksWebLinks/UpdateSharedLinkOnWebLinkQueryParams.swift",
        "Managers/SharedLinksWebLinks/UpdateSharedLinkOnWebLinkRequestBody.swift",
        "Managers/SharedLinksWebLinks/UpdateSharedLinkOnWebLinkRequestBodySharedLinkAccessField.swift",
        "Managers/SharedLinksWebLinks/UpdateSharedLinkOnWebLinkRequestBodySharedLinkField.swift",
        "Managers/SharedLinksWebLinks/UpdateSharedLinkOnWebLinkRequestBodySharedLinkPermissionsField.swift",
        "Managers/ShieldInformationBarrierReports/CreateShieldInformationBarrierReportHeaders.swift",
        "Managers/ShieldInformationBarrierReports/GetShieldInformationBarrierReportByIdHeaders.swift",
        "Managers/ShieldInformationBarrierReports/GetShieldInformationBarrierReportsHeaders.swift",
        "Managers/ShieldInformationBarrierReports/GetShieldInformationBarrierReportsQueryParams.swift",
        "Managers/ShieldInformationBarrierReports/ShieldInformationBarrierReportsManager.swift",
        "Managers/ShieldInformationBarrierSegmentMembers/CreateShieldInformationBarrierSegmentMemberHeaders.swift",
        "Managers/ShieldInformationBarrierSegmentMembers/CreateShieldInformationBarrierSegmentMemberRequestBody.swift",
        "Managers/ShieldInformationBarrierSegmentMembers/CreateShieldInformationBarrierSegmentMemberRequestBodyShieldInformationBarrierSegmentField.swift",
        "Managers/ShieldInformationBarrierSegmentMembers/CreateShieldInformationBarrierSegmentMemberRequestBodyShieldInformationBarrierSegmentTypeField.swift",
        "Managers/ShieldInformationBarrierSegmentMembers/CreateShieldInformationBarrierSegmentMemberRequestBodyTypeField.swift",
        "Managers/ShieldInformationBarrierSegmentMembers/DeleteShieldInformationBarrierSegmentMemberByIdHeaders.swift",
        "Managers/ShieldInformationBarrierSegmentMembers/GetShieldInformationBarrierSegmentMemberByIdHeaders.swift",
        "Managers/ShieldInformationBarrierSegmentMembers/GetShieldInformationBarrierSegmentMembersHeaders.swift",
        "Managers/ShieldInformationBarrierSegmentMembers/GetShieldInformationBarrierSegmentMembersQueryParams.swift",
        "Managers/ShieldInformationBarrierSegmentMembers/ShieldInformationBarrierSegmentMembersManager.swift",
        "Managers/ShieldInformationBarrierSegmentRestrictions/CreateShieldInformationBarrierSegmentRestrictionHeaders.swift",
        "Managers/ShieldInformationBarrierSegmentRestrictions/CreateShieldInformationBarrierSegmentRestrictionRequestBody.swift",
        "Managers/ShieldInformationBarrierSegmentRestrictions/CreateShieldInformationBarrierSegmentRestrictionRequestBodyRestrictedSegmentField.swift",
        "Managers/ShieldInformationBarrierSegmentRestrictions/CreateShieldInformationBarrierSegmentRestrictionRequestBodyRestrictedSegmentTypeField.swift",
        "Managers/ShieldInformationBarrierSegmentRestrictions/CreateShieldInformationBarrierSegmentRestrictionRequestBodyShieldInformationBarrierSegmentField.swift",
        "Managers/ShieldInformationBarrierSegmentRestrictions/CreateShieldInformationBarrierSegmentRestrictionRequestBodyShieldInformationBarrierSegmentTypeField.swift",
        "Managers/ShieldInformationBarrierSegmentRestrictions/CreateShieldInformationBarrierSegmentRestrictionRequestBodyTypeField.swift",
        "Managers/ShieldInformationBarrierSegmentRestrictions/DeleteShieldInformationBarrierSegmentRestrictionByIdHeaders.swift",
        "Managers/ShieldInformationBarrierSegmentRestrictions/GetShieldInformationBarrierSegmentRestrictionByIdHeaders.swift",
        "Managers/ShieldInformationBarrierSegmentRestrictions/GetShieldInformationBarrierSegmentRestrictionsHeaders.swift",
        "Managers/ShieldInformationBarrierSegmentRestrictions/GetShieldInformationBarrierSegmentRestrictionsQueryParams.swift",
        "Managers/ShieldInformationBarrierSegmentRestrictions/ShieldInformationBarrierSegmentRestrictionsManager.swift",
        "Managers/ShieldInformationBarrierSegments/CreateShieldInformationBarrierSegmentHeaders.swift",
        "Managers/ShieldInformationBarrierSegments/CreateShieldInformationBarrierSegmentRequestBody.swift",
        "Managers/ShieldInformationBarrierSegments/DeleteShieldInformationBarrierSegmentByIdHeaders.swift",
        "Managers/ShieldInformationBarrierSegments/GetShieldInformationBarrierSegmentByIdHeaders.swift",
        "Managers/ShieldInformationBarrierSegments/GetShieldInformationBarrierSegmentsHeaders.swift",
        "Managers/ShieldInformationBarrierSegments/GetShieldInformationBarrierSegmentsQueryParams.swift",
        "Managers/ShieldInformationBarrierSegments/ShieldInformationBarrierSegmentsManager.swift",
        "Managers/ShieldInformationBarrierSegments/UpdateShieldInformationBarrierSegmentByIdHeaders.swift",
        "Managers/ShieldInformationBarrierSegments/UpdateShieldInformationBarrierSegmentByIdRequestBody.swift",
        "Managers/ShieldInformationBarriers/CreateShieldInformationBarrierHeaders.swift",
        "Managers/ShieldInformationBarriers/CreateShieldInformationBarrierRequestBody.swift",
        "Managers/ShieldInformationBarriers/GetShieldInformationBarrierByIdHeaders.swift",
        "Managers/ShieldInformationBarriers/GetShieldInformationBarriersHeaders.swift",
        "Managers/ShieldInformationBarriers/GetShieldInformationBarriersQueryParams.swift",
        "Managers/ShieldInformationBarriers/ShieldInformationBarriersManager.swift",
        "Managers/ShieldInformationBarriers/UpdateShieldInformationBarrierStatusHeaders.swift",
        "Managers/ShieldInformationBarriers/UpdateShieldInformationBarrierStatusRequestBody.swift",
        "Managers/ShieldInformationBarriers/UpdateShieldInformationBarrierStatusRequestBodyStatusField.swift",
        "Managers/SignRequests/CancelSignRequestHeaders.swift",
        "Managers/SignRequests/CreateSignRequestHeaders.swift",
        "Managers/SignRequests/GetSignRequestByIdHeaders.swift",
        "Managers/SignRequests/GetSignRequestsHeaders.swift",
        "Managers/SignRequests/GetSignRequestsQueryParams.swift",
        "Managers/SignRequests/ResendSignRequestHeaders.swift",
        "Managers/SignRequests/SignRequestsManager.swift",
        "Managers/SignTemplates/GetSignTemplateByIdHeaders.swift",
        "Managers/SignTemplates/GetSignTemplatesHeaders.swift",
        "Managers/SignTemplates/GetSignTemplatesQueryParams.swift",
        "Managers/SignTemplates/SignTemplatesManager.swift",
        "Managers/Skills/CreateBoxSkillCardsOnFileHeaders.swift",
        "Managers/Skills/CreateBoxSkillCardsOnFileRequestBody.swift",
        "Managers/Skills/DeleteBoxSkillCardsFromFileHeaders.swift",
        "Managers/Skills/GetBoxSkillCardsOnFileHeaders.swift",
        "Managers/Skills/SkillsManager.swift",
        "Managers/Skills/UpdateAllSkillCardsOnFileHeaders.swift",
        "Managers/Skills/UpdateAllSkillCardsOnFileRequestBody.swift",
        "Managers/Skills/UpdateAllSkillCardsOnFileRequestBodyFileField.swift",
        "Managers/Skills/UpdateAllSkillCardsOnFileRequestBodyFileTypeField.swift",
        "Managers/Skills/UpdateAllSkillCardsOnFileRequestBodyFileVersionField.swift",
        "Managers/Skills/UpdateAllSkillCardsOnFileRequestBodyFileVersionTypeField.swift",
        "Managers/Skills/UpdateAllSkillCardsOnFileRequestBodyMetadataField.swift",
        "Managers/Skills/UpdateAllSkillCardsOnFileRequestBodyStatusField.swift",
        "Managers/Skills/UpdateAllSkillCardsOnFileRequestBodyUsageField.swift",
        "Managers/Skills/UpdateBoxSkillCardsOnFileHeaders.swift",
        "Managers/Skills/UpdateBoxSkillCardsOnFileRequestBody.swift",
        "Managers/Skills/UpdateBoxSkillCardsOnFileRequestBodyOpField.swift",
        "Managers/StoragePolicies/GetStoragePoliciesHeaders.swift",
        "Managers/StoragePolicies/GetStoragePoliciesQueryParams.swift",
        "Managers/StoragePolicies/GetStoragePolicyByIdHeaders.swift",
        "Managers/StoragePolicies/StoragePoliciesManager.swift",
        "Managers/StoragePolicyAssignments/CreateStoragePolicyAssignmentHeaders.swift",
        "Managers/StoragePolicyAssignments/CreateStoragePolicyAssignmentRequestBody.swift",
        "Managers/StoragePolicyAssignments/CreateStoragePolicyAssignmentRequestBodyAssignedToField.swift",
        "Managers/StoragePolicyAssignments/CreateStoragePolicyAssignmentRequestBodyAssignedToTypeField.swift",
        "Managers/StoragePolicyAssignments/CreateStoragePolicyAssignmentRequestBodyStoragePolicyField.swift",
        "Managers/StoragePolicyAssignments/CreateStoragePolicyAssignmentRequestBodyStoragePolicyTypeField.swift",
        "Managers/StoragePolicyAssignments/DeleteStoragePolicyAssignmentByIdHeaders.swift",
        "Managers/StoragePolicyAssignments/GetStoragePolicyAssignmentByIdHeaders.swift",
        "Managers/StoragePolicyAssignments/GetStoragePolicyAssignmentsHeaders.swift",
        "Managers/StoragePolicyAssignments/GetStoragePolicyAssignmentsQueryParams.swift",
        "Managers/StoragePolicyAssignments/GetStoragePolicyAssignmentsQueryParamsResolvedForTypeField.swift",
        "Managers/StoragePolicyAssignments/StoragePolicyAssignmentsManager.swift",
        "Managers/StoragePolicyAssignments/UpdateStoragePolicyAssignmentByIdHeaders.swift",
        "Managers/StoragePolicyAssignments/UpdateStoragePolicyAssignmentByIdRequestBody.swift",
        "Managers/StoragePolicyAssignments/UpdateStoragePolicyAssignmentByIdRequestBodyStoragePolicyField.swift",
        "Managers/StoragePolicyAssignments/UpdateStoragePolicyAssignmentByIdRequestBodyStoragePolicyTypeField.swift",
        "Managers/TaskAssignments/CreateTaskAssignmentHeaders.swift",
        "Managers/TaskAssignments/CreateTaskAssignmentRequestBody.swift",
        "Managers/TaskAssignments/CreateTaskAssignmentRequestBodyAssignToField.swift",
        "Managers/TaskAssignments/CreateTaskAssignmentRequestBodyTaskField.swift",
        "Managers/TaskAssignments/CreateTaskAssignmentRequestBodyTaskTypeField.swift",
        "Managers/TaskAssignments/DeleteTaskAssignmentByIdHeaders.swift",
        "Managers/TaskAssignments/GetTaskAssignmentByIdHeaders.swift",
        "Managers/TaskAssignments/GetTaskAssignmentsHeaders.swift",
        "Managers/TaskAssignments/TaskAssignmentsManager.swift",
        "Managers/TaskAssignments/UpdateTaskAssignmentByIdHeaders.swift",
        "Managers/TaskAssignments/UpdateTaskAssignmentByIdRequestBody.swift",
        "Managers/TaskAssignments/UpdateTaskAssignmentByIdRequestBodyResolutionStateField.swift",
        "Managers/Tasks/CreateTaskHeaders.swift",
        "Managers/Tasks/CreateTaskRequestBody.swift",
        "Managers/Tasks/CreateTaskRequestBodyActionField.swift",
        "Managers/Tasks/CreateTaskRequestBodyCompletionRuleField.swift",
        "Managers/Tasks/CreateTaskRequestBodyItemField.swift",
        "Managers/Tasks/CreateTaskRequestBodyItemTypeField.swift",
        "Managers/Tasks/DeleteTaskByIdHeaders.swift",
        "Managers/Tasks/GetFileTasksHeaders.swift",
        "Managers/Tasks/GetTaskByIdHeaders.swift",
        "Managers/Tasks/TasksManager.swift",
        "Managers/Tasks/UpdateTaskByIdHeaders.swift",
        "Managers/Tasks/UpdateTaskByIdRequestBody.swift",
        "Managers/Tasks/UpdateTaskByIdRequestBodyActionField.swift",
        "Managers/Tasks/UpdateTaskByIdRequestBodyCompletionRuleField.swift",
        "Managers/TermsOfServiceUserStatuses/CreateTermsOfServiceStatusForUserHeaders.swift",
        "Managers/TermsOfServiceUserStatuses/CreateTermsOfServiceStatusForUserRequestBody.swift",
        "Managers/TermsOfServiceUserStatuses/CreateTermsOfServiceStatusForUserRequestBodyTosField.swift",
        "Managers/TermsOfServiceUserStatuses/CreateTermsOfServiceStatusForUserRequestBodyTosTypeField.swift",
        "Managers/TermsOfServiceUserStatuses/CreateTermsOfServiceStatusForUserRequestBodyUserField.swift",
        "Managers/TermsOfServiceUserStatuses/CreateTermsOfServiceStatusForUserRequestBodyUserTypeField.swift",
        "Managers/TermsOfServiceUserStatuses/GetTermsOfServiceUserStatusesHeaders.swift",
        "Managers/TermsOfServiceUserStatuses/GetTermsOfServiceUserStatusesQueryParams.swift",
        "Managers/TermsOfServiceUserStatuses/TermsOfServiceUserStatusesManager.swift",
        "Managers/TermsOfServiceUserStatuses/UpdateTermsOfServiceStatusForUserByIdHeaders.swift",
        "Managers/TermsOfServiceUserStatuses/UpdateTermsOfServiceStatusForUserByIdRequestBody.swift",
        "Managers/TermsOfServices/CreateTermsOfServiceHeaders.swift",
        "Managers/TermsOfServices/CreateTermsOfServiceRequestBody.swift",
        "Managers/TermsOfServices/CreateTermsOfServiceRequestBodyStatusField.swift",
        "Managers/TermsOfServices/CreateTermsOfServiceRequestBodyTosTypeField.swift",
        "Managers/TermsOfServices/GetTermsOfServiceByIdHeaders.swift",
        "Managers/TermsOfServices/GetTermsOfServiceHeaders.swift",
        "Managers/TermsOfServices/GetTermsOfServiceQueryParams.swift",
        "Managers/TermsOfServices/GetTermsOfServiceQueryParamsTosTypeField.swift",
        "Managers/TermsOfServices/TermsOfServicesManager.swift",
        "Managers/TermsOfServices/UpdateTermsOfServiceByIdHeaders.swift",
        "Managers/TermsOfServices/UpdateTermsOfServiceByIdRequestBody.swift",
        "Managers/TermsOfServices/UpdateTermsOfServiceByIdRequestBodyStatusField.swift",
        "Managers/Transfer/TransferManager.swift",
        "Managers/Transfer/TransferOwnedFolderHeaders.swift",
        "Managers/Transfer/TransferOwnedFolderQueryParams.swift",
        "Managers/Transfer/TransferOwnedFolderRequestBody.swift",
        "Managers/Transfer/TransferOwnedFolderRequestBodyOwnedByField.swift",
        "Managers/TrashedFiles/DeleteTrashedFileByIdHeaders.swift",
        "Managers/TrashedFiles/GetTrashedFileByIdHeaders.swift",
        "Managers/TrashedFiles/GetTrashedFileByIdQueryParams.swift",
        "Managers/TrashedFiles/RestoreFileFromTrashHeaders.swift",
        "Managers/TrashedFiles/RestoreFileFromTrashQueryParams.swift",
        "Managers/TrashedFiles/RestoreFileFromTrashRequestBody.swift",
        "Managers/TrashedFiles/RestoreFileFromTrashRequestBodyParentField.swift",
        "Managers/TrashedFiles/TrashedFilesManager.swift",
        "Managers/TrashedFolders/DeleteTrashedFolderByIdHeaders.swift",
        "Managers/TrashedFolders/GetTrashedFolderByIdHeaders.swift",
        "Managers/TrashedFolders/GetTrashedFolderByIdQueryParams.swift",
        "Managers/TrashedFolders/RestoreFolderFromTrashHeaders.swift",
        "Managers/TrashedFolders/RestoreFolderFromTrashQueryParams.swift",
        "Managers/TrashedFolders/RestoreFolderFromTrashRequestBody.swift",
        "Managers/TrashedFolders/RestoreFolderFromTrashRequestBodyParentField.swift",
        "Managers/TrashedFolders/TrashedFoldersManager.swift",
        "Managers/TrashedItems/GetTrashedItemsHeaders.swift",
        "Managers/TrashedItems/GetTrashedItemsQueryParams.swift",
        "Managers/TrashedItems/GetTrashedItemsQueryParamsDirectionField.swift",
        "Managers/TrashedItems/GetTrashedItemsQueryParamsSortField.swift",
        "Managers/TrashedItems/TrashedItemsManager.swift",
        "Managers/TrashedWebLinks/DeleteTrashedWebLinkByIdHeaders.swift",
        "Managers/TrashedWebLinks/GetTrashedWebLinkByIdHeaders.swift",
        "Managers/TrashedWebLinks/GetTrashedWebLinkByIdQueryParams.swift",
        "Managers/TrashedWebLinks/RestoreWeblinkFromTrashHeaders.swift",
        "Managers/TrashedWebLinks/RestoreWeblinkFromTrashQueryParams.swift",
        "Managers/TrashedWebLinks/RestoreWeblinkFromTrashRequestBody.swift",
        "Managers/TrashedWebLinks/RestoreWeblinkFromTrashRequestBodyParentField.swift",
        "Managers/TrashedWebLinks/TrashedWebLinksManager.swift",
        "Managers/Uploads/PreflightFileUploadCheckHeaders.swift",
        "Managers/Uploads/PreflightFileUploadCheckRequestBody.swift",
        "Managers/Uploads/PreflightFileUploadCheckRequestBodyParentField.swift",
        "Managers/Uploads/UploadFileHeaders.swift",
        "Managers/Uploads/UploadFileQueryParams.swift",
        "Managers/Uploads/UploadFileRequestBody.swift",
        "Managers/Uploads/UploadFileRequestBodyAttributesField.swift",
        "Managers/Uploads/UploadFileRequestBodyAttributesParentField.swift",
        "Managers/Uploads/UploadFileVersionHeaders.swift",
        "Managers/Uploads/UploadFileVersionQueryParams.swift",
        "Managers/Uploads/UploadFileVersionRequestBody.swift",
        "Managers/Uploads/UploadFileVersionRequestBodyAttributesField.swift",
        "Managers/Uploads/UploadsManager.swift",
        "Managers/UserCollaborations/CreateCollaborationHeaders.swift",
        "Managers/UserCollaborations/CreateCollaborationQueryParams.swift",
        "Managers/UserCollaborations/CreateCollaborationRequestBody.swift",
        "Managers/UserCollaborations/CreateCollaborationRequestBodyAccessibleByField.swift",
        "Managers/UserCollaborations/CreateCollaborationRequestBodyAccessibleByTypeField.swift",
        "Managers/UserCollaborations/CreateCollaborationRequestBodyItemField.swift",
        "Managers/UserCollaborations/CreateCollaborationRequestBodyItemTypeField.swift",
        "Managers/UserCollaborations/CreateCollaborationRequestBodyRoleField.swift",
        "Managers/UserCollaborations/DeleteCollaborationByIdHeaders.swift",
        "Managers/UserCollaborations/GetCollaborationByIdHeaders.swift",
        "Managers/UserCollaborations/GetCollaborationByIdQueryParams.swift",
        "Managers/UserCollaborations/UpdateCollaborationByIdHeaders.swift",
        "Managers/UserCollaborations/UpdateCollaborationByIdRequestBody.swift",
        "Managers/UserCollaborations/UpdateCollaborationByIdRequestBodyRoleField.swift",
        "Managers/UserCollaborations/UpdateCollaborationByIdRequestBodyStatusField.swift",
        "Managers/UserCollaborations/UserCollaborationsManager.swift",
        "Managers/Users/CreateUserHeaders.swift",
        "Managers/Users/CreateUserQueryParams.swift",
        "Managers/Users/CreateUserRequestBody.swift",
        "Managers/Users/CreateUserRequestBodyRoleField.swift",
        "Managers/Users/CreateUserRequestBodyStatusField.swift",
        "Managers/Users/DeleteUserByIdHeaders.swift",
        "Managers/Users/DeleteUserByIdQueryParams.swift",
        "Managers/Users/GetUserByIdHeaders.swift",
        "Managers/Users/GetUserByIdQueryParams.swift",
        "Managers/Users/GetUserMeHeaders.swift",
        "Managers/Users/GetUserMeQueryParams.swift",
        "Managers/Users/GetUsersHeaders.swift",
        "Managers/Users/GetUsersQueryParams.swift",
        "Managers/Users/GetUsersQueryParamsUserTypeField.swift",
        "Managers/Users/UpdateUserByIdHeaders.swift",
        "Managers/Users/UpdateUserByIdQueryParams.swift",
        "Managers/Users/UpdateUserByIdRequestBody.swift",
        "Managers/Users/UpdateUserByIdRequestBodyNotificationEmailField.swift",
        "Managers/Users/UpdateUserByIdRequestBodyRoleField.swift",
        "Managers/Users/UpdateUserByIdRequestBodyStatusField.swift",
        "Managers/Users/UsersManager.swift",
        "Managers/WebLinks/CreateWebLinkHeaders.swift",
        "Managers/WebLinks/CreateWebLinkRequestBody.swift",
        "Managers/WebLinks/CreateWebLinkRequestBodyParentField.swift",
        "Managers/WebLinks/DeleteWebLinkByIdHeaders.swift",
        "Managers/WebLinks/GetWebLinkByIdHeaders.swift",
        "Managers/WebLinks/UpdateWebLinkByIdHeaders.swift",
        "Managers/WebLinks/UpdateWebLinkByIdRequestBody.swift",
        "Managers/WebLinks/UpdateWebLinkByIdRequestBodyParentField.swift",
        "Managers/WebLinks/UpdateWebLinkByIdRequestBodySharedLinkAccessField.swift",
        "Managers/WebLinks/UpdateWebLinkByIdRequestBodySharedLinkField.swift",
        "Managers/WebLinks/WebLinksManager.swift",
        "Managers/Webhooks/CreateWebhookHeaders.swift",
        "Managers/Webhooks/CreateWebhookRequestBody.swift",
        "Managers/Webhooks/CreateWebhookRequestBodyTargetField.swift",
        "Managers/Webhooks/CreateWebhookRequestBodyTargetTypeField.swift",
        "Managers/Webhooks/CreateWebhookRequestBodyTriggersField.swift",
        "Managers/Webhooks/DeleteWebhookByIdHeaders.swift",
        "Managers/Webhooks/GetWebhookByIdHeaders.swift",
        "Managers/Webhooks/GetWebhooksHeaders.swift",
        "Managers/Webhooks/GetWebhooksQueryParams.swift",
        "Managers/Webhooks/UpdateWebhookByIdHeaders.swift",
        "Managers/Webhooks/UpdateWebhookByIdRequestBody.swift",
        "Managers/Webhooks/UpdateWebhookByIdRequestBodyTargetField.swift",
        "Managers/Webhooks/UpdateWebhookByIdRequestBodyTargetTypeField.swift",
        "Managers/Webhooks/UpdateWebhookByIdRequestBodyTriggersField.swift",
        "Managers/Webhooks/WebhooksManager.swift",
        "Managers/Workflows/GetWorkflowsHeaders.swift",
        "Managers/Workflows/GetWorkflowsQueryParams.swift",
        "Managers/Workflows/StartWorkflowHeaders.swift",
        "Managers/Workflows/StartWorkflowRequestBody.swift",
        "Managers/Workflows/StartWorkflowRequestBodyFilesField.swift",
        "Managers/Workflows/StartWorkflowRequestBodyFilesTypeField.swift",
        "Managers/Workflows/StartWorkflowRequestBodyFlowField.swift",
        "Managers/Workflows/StartWorkflowRequestBodyFolderField.swift",
        "Managers/Workflows/StartWorkflowRequestBodyFolderTypeField.swift",
        "Managers/Workflows/StartWorkflowRequestBodyTypeField.swift",
        "Managers/Workflows/WorkflowsManager.swift",
        "Managers/ZipDownloads/CreateZipDownloadHeaders.swift",
        "Managers/ZipDownloads/GetZipDownloadContentHeaders.swift",
        "Managers/ZipDownloads/GetZipDownloadStatusHeaders.swift",
        "Managers/ZipDownloads/ZipDownloadsManager.swift",
        "Networking/Auth/Authentication.swift",
        "Networking/BaseUrls/BaseUrls.swift",
        "Networking/BoxConstants.swift",
        "Networking/FetchConversation.swift",
        "Networking/FetchOptions.swift",
        "Networking/FetchResponse.swift",
        "Networking/MultipartItem.swift",
        "Networking/NetworkClient.swift",
        "Networking/NetworkSession.swift",
        "Networking/NetworkSettings.swift",
        "Networking/ParameterConvertible.swift",
        "Networking/RetryStrategyProtocol.swift",
        "Networking/TaskInfo.swift",
        "Networking/Version.swift",
        "Schemas/AccessToken/AccessToken.swift",
        "Schemas/AccessToken/AccessTokenIssuedTokenTypeField.swift",
        "Schemas/AccessToken/AccessTokenTokenTypeField.swift",
        "Schemas/AiAgentAsk/AiAgentAsk.swift",
        "Schemas/AiAgentAsk/AiAgentAskTypeField.swift",
        "Schemas/AiAgentAskOrAiAgentTextGen/AiAgentAskOrAiAgentTextGen.swift",
        "Schemas/AiAgentBasicGenTool/AiAgentBasicGenTool.swift",
        "Schemas/AiAgentBasicTextTool/AiAgentBasicTextTool.swift",
        "Schemas/AiAgentBasicTextToolBase/AiAgentBasicTextToolBase.swift",
        "Schemas/AiAgentBasicTextToolTextGen/AiAgentBasicTextToolTextGen.swift",
        "Schemas/AiAgentLongTextTool/AiAgentLongTextTool.swift",
        "Schemas/AiAgentLongTextTool/AiAgentLongTextToolEmbeddingsField.swift",
        "Schemas/AiAgentLongTextTool/AiAgentLongTextToolEmbeddingsStrategyField.swift",
        "Schemas/AiAgentLongTextToolTextGen/AiAgentLongTextToolTextGen.swift",
        "Schemas/AiAgentLongTextToolTextGen/AiAgentLongTextToolTextGenEmbeddingsField.swift",
        "Schemas/AiAgentLongTextToolTextGen/AiAgentLongTextToolTextGenEmbeddingsStrategyField.swift",
        "Schemas/AiAgentTextGen/AiAgentTextGen.swift",
        "Schemas/AiAgentTextGen/AiAgentTextGenTypeField.swift",
        "Schemas/AiAsk/AiAsk.swift",
        "Schemas/AiAsk/AiAskItemsField.swift",
        "Schemas/AiAsk/AiAskItemsTypeField.swift",
        "Schemas/AiAsk/AiAskModeField.swift",
        "Schemas/AiCitation/AiCitation.swift",
        "Schemas/AiCitation/AiCitationTypeField.swift",
        "Schemas/AiDialogueHistory/AiDialogueHistory.swift",
        "Schemas/AiLlmEndpointParamsGoogle/AiLlmEndpointParamsGoogle.swift",
        "Schemas/AiLlmEndpointParamsGoogle/AiLlmEndpointParamsGoogleTypeField.swift",
        "Schemas/AiLlmEndpointParamsGoogleOrAiLlmEndpointParamsOpenAi/AiLlmEndpointParamsGoogleOrAiLlmEndpointParamsOpenAi.swift",
        "Schemas/AiLlmEndpointParamsOpenAi/AiLlmEndpointParamsOpenAi.swift",
        "Schemas/AiLlmEndpointParamsOpenAi/AiLlmEndpointParamsOpenAiTypeField.swift",
        "Schemas/AiResponse/AiResponse.swift",
        "Schemas/AiResponseFull/AiResponseFull.swift",
        "Schemas/AiTextGen/AiTextGen.swift",
        "Schemas/AiTextGen/AiTextGenItemsField.swift",
        "Schemas/AiTextGen/AiTextGenItemsTypeField.swift",
        "Schemas/AppItem/AppItem.swift",
        "Schemas/AppItem/AppItemTypeField.swift",
        "Schemas/AppItemAssociation/AppItemAssociation.swift",
        "Schemas/AppItemAssociation/AppItemAssociationTypeField.swift",
        "Schemas/AppItemAssociations/AppItemAssociations.swift",
        "Schemas/AppItemEventSource/AppItemEventSource.swift",
        "Schemas/AppItemEventSource/AppItemEventSourceTypeField.swift",
        "Schemas/AppItemEventSourceOrEventSourceOrFileOrFolderOrGenericSourceOrUser/AppItemEventSourceOrEventSourceOrFileOrFolderOrGenericSourceOrUser.swift",
        "Schemas/Classification/Classification.swift",
        "Schemas/Classification/ClassificationTemplateField.swift",
        "Schemas/ClassificationTemplate/ClassificationTemplate.swift",
        "Schemas/ClassificationTemplate/ClassificationTemplateDisplayNameField.swift",
        "Schemas/ClassificationTemplate/ClassificationTemplateFieldsDisplayNameField.swift",
        "Schemas/ClassificationTemplate/ClassificationTemplateFieldsField.swift",
        "Schemas/ClassificationTemplate/ClassificationTemplateFieldsKeyField.swift",
        "Schemas/ClassificationTemplate/ClassificationTemplateFieldsOptionsField.swift",
        "Schemas/ClassificationTemplate/ClassificationTemplateFieldsOptionsStaticConfigClassificationField.swift",
        "Schemas/ClassificationTemplate/ClassificationTemplateFieldsOptionsStaticConfigField.swift",
        "Schemas/ClassificationTemplate/ClassificationTemplateFieldsTypeField.swift",
        "Schemas/ClassificationTemplate/ClassificationTemplateTemplateKeyField.swift",
        "Schemas/ClassificationTemplate/ClassificationTemplateTypeField.swift",
        "Schemas/ClientError/ClientError.swift",
        "Schemas/ClientError/ClientErrorCodeField.swift",
        "Schemas/ClientError/ClientErrorContextInfoField.swift",
        "Schemas/ClientError/ClientErrorTypeField.swift",
        "Schemas/Collaboration/Collaboration.swift",
        "Schemas/Collaboration/CollaborationAcceptanceRequirementsStatusField.swift",
        "Schemas/Collaboration/CollaborationAcceptanceRequirementsStatusStrongPasswordRequirementField.swift",
        "Schemas/Collaboration/CollaborationAcceptanceRequirementsStatusTermsOfServiceRequirementField.swift",
        "Schemas/Collaboration/CollaborationAcceptanceRequirementsStatusTwoFactorAuthenticationRequirementField.swift",
        "Schemas/Collaboration/CollaborationRoleField.swift",
        "Schemas/Collaboration/CollaborationStatusField.swift",
        "Schemas/Collaboration/CollaborationTypeField.swift",
        "Schemas/CollaborationAllowlistEntries/CollaborationAllowlistEntries.swift",
        "Schemas/CollaborationAllowlistEntry/CollaborationAllowlistEntry.swift",
        "Schemas/CollaborationAllowlistEntry/CollaborationAllowlistEntryDirectionField.swift",
        "Schemas/CollaborationAllowlistEntry/CollaborationAllowlistEntryEnterpriseField.swift",
        "Schemas/CollaborationAllowlistEntry/CollaborationAllowlistEntryEnterpriseTypeField.swift",
        "Schemas/CollaborationAllowlistEntry/CollaborationAllowlistEntryTypeField.swift",
        "Schemas/CollaborationAllowlistExemptTarget/CollaborationAllowlistExemptTarget.swift",
        "Schemas/CollaborationAllowlistExemptTarget/CollaborationAllowlistExemptTargetEnterpriseField.swift",
        "Schemas/CollaborationAllowlistExemptTarget/CollaborationAllowlistExemptTargetEnterpriseTypeField.swift",
        "Schemas/CollaborationAllowlistExemptTarget/CollaborationAllowlistExemptTargetTypeField.swift",
        "Schemas/CollaborationAllowlistExemptTargets/CollaborationAllowlistExemptTargets.swift",
        "Schemas/Collaborations/Collaborations.swift",
        "Schemas/Collaborations/CollaborationsOrderDirectionField.swift",
        "Schemas/Collaborations/CollaborationsOrderField.swift",
        "Schemas/CollaboratorVariable/CollaboratorVariable.swift",
        "Schemas/CollaboratorVariable/CollaboratorVariableTypeField.swift",
        "Schemas/CollaboratorVariable/CollaboratorVariableVariableTypeField.swift",
        "Schemas/CollaboratorVariable/CollaboratorVariableVariableValueField.swift",
        "Schemas/CollaboratorVariable/CollaboratorVariableVariableValueTypeField.swift",
        "Schemas/Collection/Collection.swift",
        "Schemas/Collection/CollectionCollectionTypeField.swift",
        "Schemas/Collection/CollectionNameField.swift",
        "Schemas/Collection/CollectionTypeField.swift",
        "Schemas/Collections/Collections.swift",
        "Schemas/Collections/CollectionsOrderDirectionField.swift",
        "Schemas/Collections/CollectionsOrderField.swift",
        "Schemas/Comment/Comment.swift",
        "Schemas/Comment/CommentItemField.swift",
        "Schemas/CommentBase/CommentBase.swift",
        "Schemas/CommentBase/CommentBaseTypeField.swift",
        "Schemas/CommentFull/CommentFull.swift",
        "Schemas/Comments/Comments.swift",
        "Schemas/Comments/CommentsOrderDirectionField.swift",
        "Schemas/Comments/CommentsOrderField.swift",
        "Schemas/CompletionRuleVariable/CompletionRuleVariable.swift",
        "Schemas/CompletionRuleVariable/CompletionRuleVariableTypeField.swift",
        "Schemas/CompletionRuleVariable/CompletionRuleVariableVariableTypeField.swift",
        "Schemas/CompletionRuleVariable/CompletionRuleVariableVariableValueField.swift",
        "Schemas/ConflictError/ConflictError.swift",
        "Schemas/ConflictError/ConflictErrorContextInfoField.swift",
        "Schemas/DevicePinner/DevicePinner.swift",
        "Schemas/DevicePinner/DevicePinnerTypeField.swift",
        "Schemas/DevicePinners/DevicePinners.swift",
        "Schemas/DevicePinners/DevicePinnersOrderByField.swift",
        "Schemas/DevicePinners/DevicePinnersOrderDirectionField.swift",
        "Schemas/DevicePinners/DevicePinnersOrderField.swift",
        "Schemas/EmailAlias/EmailAlias.swift",
        "Schemas/EmailAlias/EmailAliasTypeField.swift",
        "Schemas/EmailAliases/EmailAliases.swift",
        "Schemas/EnterpriseBase/EnterpriseBase.swift",
        "Schemas/EnterpriseBase/EnterpriseBaseTypeField.swift",
        "Schemas/Event/Event.swift",
        "Schemas/Event/EventAdditionalDetailsField.swift",
        "Schemas/Event/EventEventTypeField.swift",
        "Schemas/EventSource/EventSource.swift",
        "Schemas/EventSource/EventSourceClassificationField.swift",
        "Schemas/EventSource/EventSourceItemTypeField.swift",
        "Schemas/Events/Events.swift",
        "Schemas/Events/EventsNextStreamPositionField.swift",
        "Schemas/File/File.swift",
        "Schemas/File/FileItemStatusField.swift",
        "Schemas/File/FilePathCollectionField.swift",
        "Schemas/File/FileSharedLinkAccessField.swift",
        "Schemas/File/FileSharedLinkEffectiveAccessField.swift",
        "Schemas/File/FileSharedLinkEffectivePermissionField.swift",
        "Schemas/File/FileSharedLinkField.swift",
        "Schemas/File/FileSharedLinkPermissionsField.swift",
        "Schemas/FileBase/FileBase.swift",
        "Schemas/FileBase/FileBaseTypeField.swift",
        "Schemas/FileBaseOrFolderBaseOrWebLinkBase/FileBaseOrFolderBaseOrWebLinkBase.swift",
        "Schemas/FileConflict/FileConflict.swift",
        "Schemas/FileFull/FileFull.swift",
        "Schemas/FileFull/FileFullAllowedInviteeRolesField.swift",
        "Schemas/FileFull/FileFullClassificationField.swift",
        "Schemas/FileFull/FileFullExpiringEmbedLinkField.swift",
        "Schemas/FileFull/FileFullExpiringEmbedLinkTokenTypeField.swift",
        "Schemas/FileFull/FileFullLockAppTypeField.swift",
        "Schemas/FileFull/FileFullLockField.swift",
        "Schemas/FileFull/FileFullLockTypeField.swift",
        "Schemas/FileFull/FileFullMetadataField.swift",
        "Schemas/FileFull/FileFullPermissionsField.swift",
        "Schemas/FileFull/FileFullRepresentationsEntriesContentField.swift",
        "Schemas/FileFull/FileFullRepresentationsEntriesField.swift",
        "Schemas/FileFull/FileFullRepresentationsEntriesInfoField.swift",
        "Schemas/FileFull/FileFullRepresentationsEntriesPropertiesField.swift",
        "Schemas/FileFull/FileFullRepresentationsEntriesStatusField.swift",
        "Schemas/FileFull/FileFullRepresentationsEntriesStatusStateField.swift",
        "Schemas/FileFull/FileFullRepresentationsField.swift",
        "Schemas/FileFull/FileFullSharedLinkPermissionOptionsField.swift",
        "Schemas/FileFull/FileFullWatermarkInfoField.swift",
        "Schemas/FileFullOrFolderFull/FileFullOrFolderFull.swift",
        "Schemas/FileFullOrFolderFullOrWebLink/FileFullOrFolderFullOrWebLink.swift",
        "Schemas/FileFullOrFolderMiniOrWebLink/FileFullOrFolderMiniOrWebLink.swift",
        "Schemas/FileMini/FileMini.swift",
        "Schemas/FileMiniOrFolderMini/FileMiniOrFolderMini.swift",
        "Schemas/FileOrFolder/FileOrFolder.swift",
        "Schemas/FileOrFolderOrWebLink/FileOrFolderOrWebLink.swift",
        "Schemas/FileOrFolderScope/FileOrFolderScope.swift",
        "Schemas/FileOrFolderScope/FileOrFolderScopeScopeField.swift",
        "Schemas/FileRequest/FileRequest.swift",
        "Schemas/FileRequest/FileRequestStatusField.swift",
        "Schemas/FileRequest/FileRequestTypeField.swift",
        "Schemas/FileRequestCopyRequest/FileRequestCopyRequest.swift",
        "Schemas/FileRequestCopyRequest/FileRequestCopyRequestFolderField.swift",
        "Schemas/FileRequestCopyRequest/FileRequestCopyRequestFolderTypeField.swift",
        "Schemas/FileRequestUpdateRequest/FileRequestUpdateRequest.swift",
        "Schemas/FileRequestUpdateRequest/FileRequestUpdateRequestStatusField.swift",
        "Schemas/FileVersion/FileVersion.swift",
        "Schemas/FileVersionBase/FileVersionBase.swift",
        "Schemas/FileVersionBase/FileVersionBaseTypeField.swift",
        "Schemas/FileVersionFull/FileVersionFull.swift",
        "Schemas/FileVersionLegalHold/FileVersionLegalHold.swift",
        "Schemas/FileVersionLegalHold/FileVersionLegalHoldTypeField.swift",
        "Schemas/FileVersionLegalHolds/FileVersionLegalHolds.swift",
        "Schemas/FileVersionMini/FileVersionMini.swift",
        "Schemas/FileVersionRetention/FileVersionRetention.swift",
        "Schemas/FileVersionRetention/FileVersionRetentionTypeField.swift",
        "Schemas/FileVersionRetentions/FileVersionRetentions.swift",
        "Schemas/FileVersions/FileVersions.swift",
        "Schemas/FileVersions/FileVersionsOrderDirectionField.swift",
        "Schemas/FileVersions/FileVersionsOrderField.swift",
        "Schemas/Files/Files.swift",
        "Schemas/FilesOnHold/FilesOnHold.swift",
        "Schemas/FilesUnderRetention/FilesUnderRetention.swift",
        "Schemas/Folder/Folder.swift",
        "Schemas/Folder/FolderFolderUploadEmailAccessField.swift",
        "Schemas/Folder/FolderFolderUploadEmailField.swift",
        "Schemas/Folder/FolderItemStatusField.swift",
        "Schemas/Folder/FolderPathCollectionField.swift",
        "Schemas/Folder/FolderSharedLinkAccessField.swift",
        "Schemas/Folder/FolderSharedLinkEffectiveAccessField.swift",
        "Schemas/Folder/FolderSharedLinkEffectivePermissionField.swift",
        "Schemas/Folder/FolderSharedLinkField.swift",
        "Schemas/Folder/FolderSharedLinkPermissionsField.swift",
        "Schemas/FolderBase/FolderBase.swift",
        "Schemas/FolderBase/FolderBaseTypeField.swift",
        "Schemas/FolderFull/FolderFull.swift",
        "Schemas/FolderFull/FolderFullAllowedInviteeRolesField.swift",
        "Schemas/FolderFull/FolderFullAllowedSharedLinkAccessLevelsField.swift",
        "Schemas/FolderFull/FolderFullClassificationField.swift",
        "Schemas/FolderFull/FolderFullMetadataField.swift",
        "Schemas/FolderFull/FolderFullPermissionsField.swift",
        "Schemas/FolderFull/FolderFullSyncStateField.swift",
        "Schemas/FolderFull/FolderFullWatermarkInfoField.swift",
        "Schemas/FolderLock/FolderLock.swift",
        "Schemas/FolderLock/FolderLockLockedOperationsField.swift",
        "Schemas/FolderLocks/FolderLocks.swift",
        "Schemas/FolderMini/FolderMini.swift",
        "Schemas/GenericSource/GenericSource.swift",
        "Schemas/Group/Group.swift",
        "Schemas/GroupBase/GroupBase.swift",
        "Schemas/GroupBase/GroupBaseTypeField.swift",
        "Schemas/GroupFull/GroupFull.swift",
        "Schemas/GroupFull/GroupFullInvitabilityLevelField.swift",
        "Schemas/GroupFull/GroupFullMemberViewabilityLevelField.swift",
        "Schemas/GroupFull/GroupFullPermissionsField.swift",
        "Schemas/GroupMembership/GroupMembership.swift",
        "Schemas/GroupMembership/GroupMembershipRoleField.swift",
        "Schemas/GroupMembership/GroupMembershipTypeField.swift",
        "Schemas/GroupMemberships/GroupMemberships.swift",
        "Schemas/GroupMemberships/GroupMembershipsOrderDirectionField.swift",
        "Schemas/GroupMemberships/GroupMembershipsOrderField.swift",
        "Schemas/GroupMini/GroupMini.swift",
        "Schemas/GroupMini/GroupMiniGroupTypeField.swift",
        "Schemas/GroupMiniOrUserCollaborations/GroupMiniOrUserCollaborations.swift",
        "Schemas/Groups/Groups.swift",
        "Schemas/Groups/GroupsOrderDirectionField.swift",
        "Schemas/Groups/GroupsOrderField.swift",
        "Schemas/IntegrationMapping/IntegrationMapping.swift",
        "Schemas/IntegrationMapping/IntegrationMappingIntegrationTypeField.swift",
        "Schemas/IntegrationMappingBase/IntegrationMappingBase.swift",
        "Schemas/IntegrationMappingBase/IntegrationMappingBaseTypeField.swift",
        "Schemas/IntegrationMappingBoxItemSlack/IntegrationMappingBoxItemSlack.swift",
        "Schemas/IntegrationMappingBoxItemSlack/IntegrationMappingBoxItemSlackTypeField.swift",
        "Schemas/IntegrationMappingPartnerItemSlack/IntegrationMappingPartnerItemSlack.swift",
        "Schemas/IntegrationMappingPartnerItemSlack/IntegrationMappingPartnerItemSlackTypeField.swift",
        "Schemas/IntegrationMappingPartnerItemSlackUnion/IntegrationMappingPartnerItemSlackUnion.swift",
        "Schemas/IntegrationMappingSlackCreateRequest/IntegrationMappingSlackCreateRequest.swift",
        "Schemas/IntegrationMappingSlackOptions/IntegrationMappingSlackOptions.swift",
        "Schemas/IntegrationMappings/IntegrationMappings.swift",
        "Schemas/Invite/Invite.swift",
        "Schemas/Invite/InviteInvitedToField.swift",
        "Schemas/Invite/InviteInvitedToTypeField.swift",
        "Schemas/Invite/InviteTypeField.swift",
        "Schemas/Items/Items.swift",
        "Schemas/Items/ItemsOrderDirectionField.swift",
        "Schemas/Items/ItemsOrderField.swift",
        "Schemas/KeywordSkillCard/KeywordSkillCard.swift",
        "Schemas/KeywordSkillCard/KeywordSkillCardEntriesField.swift",
        "Schemas/KeywordSkillCard/KeywordSkillCardInvocationField.swift",
        "Schemas/KeywordSkillCard/KeywordSkillCardInvocationTypeField.swift",
        "Schemas/KeywordSkillCard/KeywordSkillCardSkillCardTitleField.swift",
        "Schemas/KeywordSkillCard/KeywordSkillCardSkillCardTypeField.swift",
        "Schemas/KeywordSkillCard/KeywordSkillCardSkillField.swift",
        "Schemas/KeywordSkillCard/KeywordSkillCardSkillTypeField.swift",
        "Schemas/KeywordSkillCard/KeywordSkillCardTypeField.swift",
        "Schemas/KeywordSkillCardOrStatusSkillCardOrTimelineSkillCardOrTranscriptSkillCard/KeywordSkillCardOrStatusSkillCardOrTimelineSkillCardOrTranscriptSkillCard.swift",
        "Schemas/LegalHoldPolicies/LegalHoldPolicies.swift",
        "Schemas/LegalHoldPolicy/LegalHoldPolicy.swift",
        "Schemas/LegalHoldPolicy/LegalHoldPolicyAssignmentCountsField.swift",
        "Schemas/LegalHoldPolicy/LegalHoldPolicyStatusField.swift",
        "Schemas/LegalHoldPolicyAssignment/LegalHoldPolicyAssignment.swift",
        "Schemas/LegalHoldPolicyAssignmentBase/LegalHoldPolicyAssignmentBase.swift",
        "Schemas/LegalHoldPolicyAssignmentBase/LegalHoldPolicyAssignmentBaseTypeField.swift",
        "Schemas/LegalHoldPolicyAssignments/LegalHoldPolicyAssignments.swift",
        "Schemas/LegalHoldPolicyMini/LegalHoldPolicyMini.swift",
        "Schemas/LegalHoldPolicyMini/LegalHoldPolicyMiniTypeField.swift",
        "Schemas/Metadata/Metadata.swift",
        "Schemas/MetadataBase/MetadataBase.swift",
        "Schemas/MetadataCascadePolicies/MetadataCascadePolicies.swift",
        "Schemas/MetadataCascadePolicy/MetadataCascadePolicy.swift",
        "Schemas/MetadataCascadePolicy/MetadataCascadePolicyOwnerEnterpriseField.swift",
        "Schemas/MetadataCascadePolicy/MetadataCascadePolicyOwnerEnterpriseTypeField.swift",
        "Schemas/MetadataCascadePolicy/MetadataCascadePolicyParentField.swift",
        "Schemas/MetadataCascadePolicy/MetadataCascadePolicyParentTypeField.swift",
        "Schemas/MetadataCascadePolicy/MetadataCascadePolicyTypeField.swift",
        "Schemas/MetadataFieldFilterDateRange/MetadataFieldFilterDateRange.swift",
        "Schemas/MetadataFieldFilterDateRangeOrMetadataFieldFilterFloatRangeOrArrayOfStringOrNumberOrString/MetadataFieldFilterDateRangeOrMetadataFieldFilterFloatRangeOrArrayOfStringOrNumberOrString.swift",
        "Schemas/MetadataFieldFilterFloatRange/MetadataFieldFilterFloatRange.swift",
        "Schemas/MetadataFilter/MetadataFilter.swift",
        "Schemas/MetadataFilter/MetadataFilterScopeField.swift",
        "Schemas/MetadataFull/MetadataFull.swift",
        "Schemas/MetadataQuery/MetadataQuery.swift",
        "Schemas/MetadataQuery/MetadataQueryOrderByDirectionField.swift",
        "Schemas/MetadataQuery/MetadataQueryOrderByField.swift",
        "Schemas/MetadataQueryIndex/MetadataQueryIndex.swift",
        "Schemas/MetadataQueryIndex/MetadataQueryIndexFieldsField.swift",
        "Schemas/MetadataQueryIndex/MetadataQueryIndexFieldsSortDirectionField.swift",
        "Schemas/MetadataQueryIndex/MetadataQueryIndexStatusField.swift",
        "Schemas/MetadataQueryResults/MetadataQueryResults.swift",
        "Schemas/MetadataTemplate/MetadataTemplate.swift",
        "Schemas/MetadataTemplate/MetadataTemplateFieldsField.swift",
        "Schemas/MetadataTemplate/MetadataTemplateFieldsOptionsField.swift",
        "Schemas/MetadataTemplate/MetadataTemplateFieldsTypeField.swift",
        "Schemas/MetadataTemplate/MetadataTemplateTypeField.swift",
        "Schemas/MetadataTemplates/MetadataTemplates.swift",
        "Schemas/Metadatas/Metadatas.swift",
        "Schemas/OAuth2Error/OAuth2Error.swift",
        "Schemas/Outcome/Outcome.swift",
        "Schemas/PostOAuth2Revoke/PostOAuth2Revoke.swift",
        "Schemas/PostOAuth2Token/PostOAuth2Token.swift",
        "Schemas/PostOAuth2Token/PostOAuth2TokenActorTokenTypeField.swift",
        "Schemas/PostOAuth2Token/PostOAuth2TokenBoxSubjectTypeField.swift",
        "Schemas/PostOAuth2Token/PostOAuth2TokenGrantTypeField.swift",
        "Schemas/PostOAuth2Token/PostOAuth2TokenSubjectTokenTypeField.swift",
        "Schemas/PostOAuth2TokenRefreshAccessToken/PostOAuth2TokenRefreshAccessToken.swift",
        "Schemas/PostOAuth2TokenRefreshAccessToken/PostOAuth2TokenRefreshAccessTokenGrantTypeField.swift",
        "Schemas/RealtimeServer/RealtimeServer.swift",
        "Schemas/RealtimeServers/RealtimeServers.swift",
        "Schemas/RecentItem/RecentItem.swift",
        "Schemas/RecentItem/RecentItemInteractionTypeField.swift",
        "Schemas/RecentItems/RecentItems.swift",
        "Schemas/RetentionPolicies/RetentionPolicies.swift",
        "Schemas/RetentionPolicy/RetentionPolicy.swift",
        "Schemas/RetentionPolicy/RetentionPolicyAssignmentCountsField.swift",
        "Schemas/RetentionPolicy/RetentionPolicyPolicyTypeField.swift",
        "Schemas/RetentionPolicy/RetentionPolicyRetentionTypeField.swift",
        "Schemas/RetentionPolicy/RetentionPolicyStatusField.swift",
        "Schemas/RetentionPolicyAssignment/RetentionPolicyAssignment.swift",
        "Schemas/RetentionPolicyAssignment/RetentionPolicyAssignmentAssignedToField.swift",
        "Schemas/RetentionPolicyAssignment/RetentionPolicyAssignmentAssignedToTypeField.swift",
        "Schemas/RetentionPolicyAssignment/RetentionPolicyAssignmentFilterFieldsField.swift",
        "Schemas/RetentionPolicyAssignment/RetentionPolicyAssignmentTypeField.swift",
        "Schemas/RetentionPolicyAssignmentBase/RetentionPolicyAssignmentBase.swift",
        "Schemas/RetentionPolicyAssignmentBase/RetentionPolicyAssignmentBaseTypeField.swift",
        "Schemas/RetentionPolicyAssignments/RetentionPolicyAssignments.swift",
        "Schemas/RetentionPolicyBase/RetentionPolicyBase.swift",
        "Schemas/RetentionPolicyBase/RetentionPolicyBaseTypeField.swift",
        "Schemas/RetentionPolicyMini/RetentionPolicyMini.swift",
        "Schemas/RetentionPolicyMini/RetentionPolicyMiniDispositionActionField.swift",
        "Schemas/RoleVariable/RoleVariable.swift",
        "Schemas/RoleVariable/RoleVariableTypeField.swift",
        "Schemas/RoleVariable/RoleVariableVariableTypeField.swift",
        "Schemas/RoleVariable/RoleVariableVariableValueField.swift",
        "Schemas/SearchResultWithSharedLink/SearchResultWithSharedLink.swift",
        "Schemas/SearchResults/SearchResults.swift",
        "Schemas/SearchResults/SearchResultsTypeField.swift",
        "Schemas/SearchResultsOrSearchResultsWithSharedLinks/SearchResultsOrSearchResultsWithSharedLinks.swift",
        "Schemas/SearchResultsWithSharedLinks/SearchResultsWithSharedLinks.swift",
        "Schemas/SearchResultsWithSharedLinks/SearchResultsWithSharedLinksTypeField.swift",
        "Schemas/SessionTerminationMessage/SessionTerminationMessage.swift",
        "Schemas/ShieldInformationBarrier/ShieldInformationBarrier.swift",
        "Schemas/ShieldInformationBarrier/ShieldInformationBarrierStatusField.swift",
        "Schemas/ShieldInformationBarrier/ShieldInformationBarrierTypeField.swift",
        "Schemas/ShieldInformationBarrierBase/ShieldInformationBarrierBase.swift",
        "Schemas/ShieldInformationBarrierBase/ShieldInformationBarrierBaseTypeField.swift",
        "Schemas/ShieldInformationBarrierReference/ShieldInformationBarrierReference.swift",
        "Schemas/ShieldInformationBarrierReport/ShieldInformationBarrierReport.swift",
        "Schemas/ShieldInformationBarrierReport/ShieldInformationBarrierReportStatusField.swift",
        "Schemas/ShieldInformationBarrierReportBase/ShieldInformationBarrierReportBase.swift",
        "Schemas/ShieldInformationBarrierReportBase/ShieldInformationBarrierReportBaseTypeField.swift",
        "Schemas/ShieldInformationBarrierReportDetails/ShieldInformationBarrierReportDetails.swift",
        "Schemas/ShieldInformationBarrierReportDetails/ShieldInformationBarrierReportDetailsDetailsField.swift",
        "Schemas/ShieldInformationBarrierReports/ShieldInformationBarrierReports.swift",
        "Schemas/ShieldInformationBarrierSegment/ShieldInformationBarrierSegment.swift",
        "Schemas/ShieldInformationBarrierSegment/ShieldInformationBarrierSegmentTypeField.swift",
        "Schemas/ShieldInformationBarrierSegmentMember/ShieldInformationBarrierSegmentMember.swift",
        "Schemas/ShieldInformationBarrierSegmentMember/ShieldInformationBarrierSegmentMemberShieldInformationBarrierSegmentField.swift",
        "Schemas/ShieldInformationBarrierSegmentMember/ShieldInformationBarrierSegmentMemberShieldInformationBarrierSegmentTypeField.swift",
        "Schemas/ShieldInformationBarrierSegmentMemberBase/ShieldInformationBarrierSegmentMemberBase.swift",
        "Schemas/ShieldInformationBarrierSegmentMemberBase/ShieldInformationBarrierSegmentMemberBaseTypeField.swift",
        "Schemas/ShieldInformationBarrierSegmentMemberMini/ShieldInformationBarrierSegmentMemberMini.swift",
        "Schemas/ShieldInformationBarrierSegmentMembers/ShieldInformationBarrierSegmentMembers.swift",
        "Schemas/ShieldInformationBarrierSegmentRestriction/ShieldInformationBarrierSegmentRestriction.swift",
        "Schemas/ShieldInformationBarrierSegmentRestrictionBase/ShieldInformationBarrierSegmentRestrictionBase.swift",
        "Schemas/ShieldInformationBarrierSegmentRestrictionBase/ShieldInformationBarrierSegmentRestrictionBaseTypeField.swift",
        "Schemas/ShieldInformationBarrierSegmentRestrictionMini/ShieldInformationBarrierSegmentRestrictionMini.swift",
        "Schemas/ShieldInformationBarrierSegmentRestrictionMini/ShieldInformationBarrierSegmentRestrictionMiniRestrictedSegmentField.swift",
        "Schemas/ShieldInformationBarrierSegmentRestrictionMini/ShieldInformationBarrierSegmentRestrictionMiniRestrictedSegmentTypeField.swift",
        "Schemas/ShieldInformationBarrierSegmentRestrictionMini/ShieldInformationBarrierSegmentRestrictionMiniShieldInformationBarrierSegmentField.swift",
        "Schemas/ShieldInformationBarrierSegmentRestrictionMini/ShieldInformationBarrierSegmentRestrictionMiniShieldInformationBarrierSegmentTypeField.swift",
        "Schemas/ShieldInformationBarrierSegmentRestrictions/ShieldInformationBarrierSegmentRestrictions.swift",
        "Schemas/ShieldInformationBarrierSegments/ShieldInformationBarrierSegments.swift",
        "Schemas/ShieldInformationBarriers/ShieldInformationBarriers.swift",
        "Schemas/SignRequest/SignRequest.swift",
        "Schemas/SignRequest/SignRequestSignFilesField.swift",
        "Schemas/SignRequest/SignRequestStatusField.swift",
        "Schemas/SignRequest/SignRequestTypeField.swift",
        "Schemas/SignRequestBase/SignRequestBase.swift",
        "Schemas/SignRequestCreateRequest/SignRequestCreateRequest.swift",
        "Schemas/SignRequestCreateRequest/SignRequestCreateRequestSignatureColorField.swift",
        "Schemas/SignRequestCreateSigner/SignRequestCreateSigner.swift",
        "Schemas/SignRequestCreateSigner/SignRequestCreateSignerRoleField.swift",
        "Schemas/SignRequestPrefillTag/SignRequestPrefillTag.swift",
        "Schemas/SignRequestSigner/SignRequestSigner.swift",
        "Schemas/SignRequestSigner/SignRequestSignerSignerDecisionField.swift",
        "Schemas/SignRequestSigner/SignRequestSignerSignerDecisionTypeField.swift",
        "Schemas/SignRequestSignerInput/SignRequestSignerInput.swift",
        "Schemas/SignRequestSignerInput/SignRequestSignerInputContentTypeField.swift",
        "Schemas/SignRequestSignerInput/SignRequestSignerInputTypeField.swift",
        "Schemas/SignRequests/SignRequests.swift",
        "Schemas/SignTemplate/SignTemplate.swift",
        "Schemas/SignTemplate/SignTemplateAdditionalInfoField.swift",
        "Schemas/SignTemplate/SignTemplateAdditionalInfoNonEditableField.swift",
        "Schemas/SignTemplate/SignTemplateAdditionalInfoRequiredField.swift",
        "Schemas/SignTemplate/SignTemplateAdditionalInfoRequiredSignersField.swift",
        "Schemas/SignTemplate/SignTemplateCustomBrandingField.swift",
        "Schemas/SignTemplate/SignTemplateReadySignLinkField.swift",
        "Schemas/SignTemplate/SignTemplateTypeField.swift",
        "Schemas/SignTemplates/SignTemplates.swift",
        "Schemas/SkillCardsMetadata/SkillCardsMetadata.swift",
        "Schemas/SkillInvocation/SkillInvocation.swift",
        "Schemas/SkillInvocation/SkillInvocationEnterpriseField.swift",
        "Schemas/SkillInvocation/SkillInvocationEnterpriseTypeField.swift",
        "Schemas/SkillInvocation/SkillInvocationSkillField.swift",
        "Schemas/SkillInvocation/SkillInvocationSkillTypeField.swift",
        "Schemas/SkillInvocation/SkillInvocationStatusField.swift",
        "Schemas/SkillInvocation/SkillInvocationStatusStateField.swift",
        "Schemas/SkillInvocation/SkillInvocationTokenField.swift",
        "Schemas/SkillInvocation/SkillInvocationTokenReadField.swift",
        "Schemas/SkillInvocation/SkillInvocationTokenReadTokenTypeField.swift",
        "Schemas/SkillInvocation/SkillInvocationTokenWriteField.swift",
        "Schemas/SkillInvocation/SkillInvocationTokenWriteTokenTypeField.swift",
        "Schemas/SkillInvocation/SkillInvocationTypeField.swift",
        "Schemas/StatusSkillCard/StatusSkillCard.swift",
        "Schemas/StatusSkillCard/StatusSkillCardInvocationField.swift",
        "Schemas/StatusSkillCard/StatusSkillCardInvocationTypeField.swift",
        "Schemas/StatusSkillCard/StatusSkillCardSkillCardTitleField.swift",
        "Schemas/StatusSkillCard/StatusSkillCardSkillCardTypeField.swift",
        "Schemas/StatusSkillCard/StatusSkillCardSkillField.swift",
        "Schemas/StatusSkillCard/StatusSkillCardSkillTypeField.swift",
        "Schemas/StatusSkillCard/StatusSkillCardStatusCodeField.swift",
        "Schemas/StatusSkillCard/StatusSkillCardStatusField.swift",
        "Schemas/StatusSkillCard/StatusSkillCardTypeField.swift",
        "Schemas/StoragePolicies/StoragePolicies.swift",
        "Schemas/StoragePolicy/StoragePolicy.swift",
        "Schemas/StoragePolicyAssignment/StoragePolicyAssignment.swift",
        "Schemas/StoragePolicyAssignment/StoragePolicyAssignmentAssignedToField.swift",
        "Schemas/StoragePolicyAssignment/StoragePolicyAssignmentTypeField.swift",
        "Schemas/StoragePolicyAssignments/StoragePolicyAssignments.swift",
        "Schemas/StoragePolicyMini/StoragePolicyMini.swift",
        "Schemas/StoragePolicyMini/StoragePolicyMiniTypeField.swift",
        "Schemas/Task/Task.swift",
        "Schemas/Task/TaskActionField.swift",
        "Schemas/Task/TaskCompletionRuleField.swift",
        "Schemas/Task/TaskTypeField.swift",
        "Schemas/TaskAssignment/TaskAssignment.swift",
        "Schemas/TaskAssignment/TaskAssignmentResolutionStateField.swift",
        "Schemas/TaskAssignment/TaskAssignmentTypeField.swift",
        "Schemas/TaskAssignments/TaskAssignments.swift",
        "Schemas/Tasks/Tasks.swift",
        "Schemas/TemplateSigner/TemplateSigner.swift",
        "Schemas/TemplateSigner/TemplateSignerRoleField.swift",
        "Schemas/TemplateSignerInput/TemplateSignerInput.swift",
        "Schemas/TemplateSignerInput/TemplateSignerInputContentTypeField.swift",
        "Schemas/TemplateSignerInput/TemplateSignerInputCoordinatesField.swift",
        "Schemas/TemplateSignerInput/TemplateSignerInputDimensionsField.swift",
        "Schemas/TemplateSignerInput/TemplateSignerInputTypeField.swift",
        "Schemas/TermsOfService/TermsOfService.swift",
        "Schemas/TermsOfService/TermsOfServiceEnterpriseField.swift",
        "Schemas/TermsOfService/TermsOfServiceEnterpriseTypeField.swift",
        "Schemas/TermsOfService/TermsOfServiceStatusField.swift",
        "Schemas/TermsOfService/TermsOfServiceTosTypeField.swift",
        "Schemas/TermsOfServiceBase/TermsOfServiceBase.swift",
        "Schemas/TermsOfServiceBase/TermsOfServiceBaseTypeField.swift",
        "Schemas/TermsOfServiceUserStatus/TermsOfServiceUserStatus.swift",
        "Schemas/TermsOfServiceUserStatus/TermsOfServiceUserStatusTypeField.swift",
        "Schemas/TermsOfServiceUserStatuses/TermsOfServiceUserStatuses.swift",
        "Schemas/TermsOfServices/TermsOfServices.swift",
        "Schemas/TimelineSkillCard/TimelineSkillCard.swift",
        "Schemas/TimelineSkillCard/TimelineSkillCardEntriesAppearsField.swift",
        "Schemas/TimelineSkillCard/TimelineSkillCardEntriesField.swift",
        "Schemas/TimelineSkillCard/TimelineSkillCardInvocationField.swift",
        "Schemas/TimelineSkillCard/TimelineSkillCardInvocationTypeField.swift",
        "Schemas/TimelineSkillCard/TimelineSkillCardSkillCardTitleField.swift",
        "Schemas/TimelineSkillCard/TimelineSkillCardSkillCardTypeField.swift",
        "Schemas/TimelineSkillCard/TimelineSkillCardSkillField.swift",
        "Schemas/TimelineSkillCard/TimelineSkillCardSkillTypeField.swift",
        "Schemas/TimelineSkillCard/TimelineSkillCardTypeField.swift",
        "Schemas/TrackingCode/TrackingCode.swift",
        "Schemas/TrackingCode/TrackingCodeTypeField.swift",
        "Schemas/TranscriptSkillCard/TranscriptSkillCard.swift",
        "Schemas/TranscriptSkillCard/TranscriptSkillCardEntriesAppearsField.swift",
        "Schemas/TranscriptSkillCard/TranscriptSkillCardEntriesField.swift",
        "Schemas/TranscriptSkillCard/TranscriptSkillCardInvocationField.swift",
        "Schemas/TranscriptSkillCard/TranscriptSkillCardInvocationTypeField.swift",
        "Schemas/TranscriptSkillCard/TranscriptSkillCardSkillCardTitleField.swift",
        "Schemas/TranscriptSkillCard/TranscriptSkillCardSkillCardTypeField.swift",
        "Schemas/TranscriptSkillCard/TranscriptSkillCardSkillField.swift",
        "Schemas/TranscriptSkillCard/TranscriptSkillCardSkillTypeField.swift",
        "Schemas/TranscriptSkillCard/TranscriptSkillCardTypeField.swift",
        "Schemas/TrashFile/TrashFile.swift",
        "Schemas/TrashFile/TrashFileItemStatusField.swift",
        "Schemas/TrashFile/TrashFilePathCollectionEntriesField.swift",
        "Schemas/TrashFile/TrashFilePathCollectionEntriesTypeField.swift",
        "Schemas/TrashFile/TrashFilePathCollectionField.swift",
        "Schemas/TrashFile/TrashFileTypeField.swift",
        "Schemas/TrashFileRestored/TrashFileRestored.swift",
        "Schemas/TrashFileRestored/TrashFileRestoredItemStatusField.swift",
        "Schemas/TrashFileRestored/TrashFileRestoredPathCollectionField.swift",
        "Schemas/TrashFileRestored/TrashFileRestoredTypeField.swift",
        "Schemas/TrashFolder/TrashFolder.swift",
        "Schemas/TrashFolder/TrashFolderItemStatusField.swift",
        "Schemas/TrashFolder/TrashFolderPathCollectionEntriesField.swift",
        "Schemas/TrashFolder/TrashFolderPathCollectionEntriesTypeField.swift",
        "Schemas/TrashFolder/TrashFolderPathCollectionField.swift",
        "Schemas/TrashFolder/TrashFolderTypeField.swift",
        "Schemas/TrashFolderRestored/TrashFolderRestored.swift",
        "Schemas/TrashFolderRestored/TrashFolderRestoredItemStatusField.swift",
        "Schemas/TrashFolderRestored/TrashFolderRestoredPathCollectionField.swift",
        "Schemas/TrashFolderRestored/TrashFolderRestoredTypeField.swift",
        "Schemas/TrashWebLink/TrashWebLink.swift",
        "Schemas/TrashWebLink/TrashWebLinkItemStatusField.swift",
        "Schemas/TrashWebLink/TrashWebLinkPathCollectionEntriesField.swift",
        "Schemas/TrashWebLink/TrashWebLinkPathCollectionEntriesTypeField.swift",
        "Schemas/TrashWebLink/TrashWebLinkPathCollectionField.swift",
        "Schemas/TrashWebLink/TrashWebLinkTypeField.swift",
        "Schemas/TrashWebLinkRestored/TrashWebLinkRestored.swift",
        "Schemas/TrashWebLinkRestored/TrashWebLinkRestoredItemStatusField.swift",
        "Schemas/TrashWebLinkRestored/TrashWebLinkRestoredPathCollectionField.swift",
        "Schemas/TrashWebLinkRestored/TrashWebLinkRestoredTypeField.swift",
        "Schemas/UploadPart/UploadPart.swift",
        "Schemas/UploadPartMini/UploadPartMini.swift",
        "Schemas/UploadParts/UploadParts.swift",
        "Schemas/UploadParts/UploadPartsOrderDirectionField.swift",
        "Schemas/UploadParts/UploadPartsOrderField.swift",
        "Schemas/UploadSession/UploadSession.swift",
        "Schemas/UploadSession/UploadSessionSessionEndpointsField.swift",
        "Schemas/UploadSession/UploadSessionTypeField.swift",
        "Schemas/UploadUrl/UploadUrl.swift",
        "Schemas/UploadedPart/UploadedPart.swift",
        "Schemas/User/User.swift",
        "Schemas/User/UserNotificationEmailField.swift",
        "Schemas/User/UserStatusField.swift",
        "Schemas/UserAvatar/UserAvatar.swift",
        "Schemas/UserAvatar/UserAvatarPicUrlsField.swift",
        "Schemas/UserBase/UserBase.swift",
        "Schemas/UserBase/UserBaseTypeField.swift",
        "Schemas/UserCollaborations/UserCollaborations.swift",
        "Schemas/UserFull/UserFull.swift",
        "Schemas/UserFull/UserFullEnterpriseField.swift",
        "Schemas/UserFull/UserFullEnterpriseTypeField.swift",
        "Schemas/UserFull/UserFullRoleField.swift",
        "Schemas/UserIntegrationMappings/UserIntegrationMappings.swift",
        "Schemas/UserMini/UserMini.swift",
        "Schemas/Users/Users.swift",
        "Schemas/Users/UsersOrderDirectionField.swift",
        "Schemas/Users/UsersOrderField.swift",
        "Schemas/Watermark/Watermark.swift",
        "Schemas/Watermark/WatermarkWatermarkField.swift",
        "Schemas/WebLink/WebLink.swift",
        "Schemas/WebLink/WebLinkItemStatusField.swift",
        "Schemas/WebLink/WebLinkPathCollectionField.swift",
        "Schemas/WebLink/WebLinkSharedLinkAccessField.swift",
        "Schemas/WebLink/WebLinkSharedLinkEffectiveAccessField.swift",
        "Schemas/WebLink/WebLinkSharedLinkEffectivePermissionField.swift",
        "Schemas/WebLink/WebLinkSharedLinkField.swift",
        "Schemas/WebLink/WebLinkSharedLinkPermissionsField.swift",
        "Schemas/WebLinkBase/WebLinkBase.swift",
        "Schemas/WebLinkBase/WebLinkBaseTypeField.swift",
        "Schemas/WebLinkMini/WebLinkMini.swift",
        "Schemas/Webhook/Webhook.swift",
        "Schemas/Webhook/WebhookTriggersField.swift",
        "Schemas/WebhookInvocation/WebhookInvocation.swift",
        "Schemas/WebhookInvocation/WebhookInvocationTriggerField.swift",
        "Schemas/WebhookInvocation/WebhookInvocationTypeField.swift",
        "Schemas/WebhookMini/WebhookMini.swift",
        "Schemas/WebhookMini/WebhookMiniTargetField.swift",
        "Schemas/WebhookMini/WebhookMiniTargetTypeField.swift",
        "Schemas/WebhookMini/WebhookMiniTypeField.swift",
        "Schemas/Webhooks/Webhooks.swift",
        "Schemas/Workflow/Workflow.swift",
        "Schemas/Workflow/WorkflowFlowsField.swift",
        "Schemas/Workflow/WorkflowFlowsOutcomesActionTypeField.swift",
        "Schemas/Workflow/WorkflowFlowsOutcomesField.swift",
        "Schemas/Workflow/WorkflowFlowsOutcomesIfRejectedActionTypeField.swift",
        "Schemas/Workflow/WorkflowFlowsOutcomesIfRejectedField.swift",
        "Schemas/Workflow/WorkflowFlowsOutcomesIfRejectedTypeField.swift",
        "Schemas/Workflow/WorkflowFlowsOutcomesTypeField.swift",
        "Schemas/Workflow/WorkflowFlowsTriggerField.swift",
        "Schemas/Workflow/WorkflowFlowsTriggerScopeField.swift",
        "Schemas/Workflow/WorkflowFlowsTriggerScopeObjectField.swift",
        "Schemas/Workflow/WorkflowFlowsTriggerScopeObjectTypeField.swift",
        "Schemas/Workflow/WorkflowFlowsTriggerScopeTypeField.swift",
        "Schemas/Workflow/WorkflowFlowsTriggerTriggerTypeField.swift",
        "Schemas/Workflow/WorkflowFlowsTriggerTypeField.swift",
        "Schemas/Workflow/WorkflowFlowsTypeField.swift",
        "Schemas/WorkflowFull/WorkflowFull.swift",
        "Schemas/WorkflowMini/WorkflowMini.swift",
        "Schemas/WorkflowMini/WorkflowMiniTypeField.swift",
        "Schemas/Workflows/Workflows.swift",
        "Schemas/ZipDownload/ZipDownload.swift",
        "Schemas/ZipDownload/ZipDownloadNameConflictsField.swift",
        "Schemas/ZipDownload/ZipDownloadNameConflictsTypeField.swift",
        "Schemas/ZipDownloadRequest/ZipDownloadRequest.swift",
        "Schemas/ZipDownloadRequest/ZipDownloadRequestItemsField.swift",
        "Schemas/ZipDownloadRequest/ZipDownloadRequestItemsTypeField.swift",
        "Schemas/ZipDownloadStatus/ZipDownloadStatus.swift",
        "Schemas/ZipDownloadStatus/ZipDownloadStatusStateField.swift",
        "Serialization/Json/AnyCodeable.swift",
        "Serialization/Json/Codable+Extensions.swift",
        "Serialization/Json/CodableStringEnum.swift",
        "Serialization/Json/JsonUtils.swift",
        "Serialization/Json/SerializedData.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.6"
}
Done.