The Swift Package Index logo.Swift Package Index

Has it really been five years since Swift Package Index launched? Read our anniversary blog post!

Build Information

Successful build of WeTransfer-Swift-SDK, reference v1.0.1 (73fe43), with Swift 6.2 (beta) for macOS (SPM) on 17 Jun 2025 11:41:44 UTC.

Swift 6 data race errors: 0

Build Command

env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64

Build Log

========================================
RunAll
========================================
Builder version: 4.64.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/WeTransfer/WeTransfer-Swift-SDK.git
Reference: v1.0.1
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/WeTransfer/WeTransfer-Swift-SDK
 * tag               v1.0.1     -> FETCH_HEAD
HEAD is now at 73fe433 Fixed guideline and visual errors in Package.swift
Submodule path 'Submodules/WeTransfer-iOS-CI': checked out 'de7710f6f26ea4268fe35d4373ebdb22663dc7eb'
Submodule 'Submodules/WeTransfer-iOS-CI' (https://github.com/WeTransfer/WeTransfer-iOS-CI.git) registered for path 'Submodules/WeTransfer-iOS-CI'
Cloning into '/Users/admin/builder/spi-builder-workspace/Submodules/WeTransfer-iOS-CI'...
Cloned https://github.com/WeTransfer/WeTransfer-Swift-SDK.git
Revision (git rev-parse @):
73fe433656ac446851cb9cf145a147a630fc3d62
SUCCESS checkout https://github.com/WeTransfer/WeTransfer-Swift-SDK.git at v1.0.1
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.2
Building package at path:  $PWD
https://github.com/WeTransfer/WeTransfer-Swift-SDK.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-1EA4D86E10B52AF.txt
[3/26] Emitting module WeTransfer
/Users/admin/builder/spi-builder-workspace/WeTransfer/Server/Operations/Abstract/AsynchronousDependencyResultOperation.swift:12:12: warning: class 'AsynchronousDependencyResultOperation' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// An asynchronous operation which will always have a result after completion.
12 | open class AsynchronousDependencyResultOperation<T>: AsynchronousResultOperation<T> {
   |            `- warning: class 'AsynchronousDependencyResultOperation' must restate inherited '@unchecked Sendable' conformance
13 |
14 | 	open override func execute() {
/Users/admin/builder/spi-builder-workspace/WeTransfer/Server/Operations/Abstract/AsynchronousOperation.swift:12:12: warning: class 'AsynchronousOperation' must restate inherited '@unchecked Sendable' conformance
 10 |
 11 | /// A base class to handle NSOperation states, because this is quite verbose due to KVO and the combined attribute states.
 12 | open class AsynchronousOperation: Operation {
    |            `- warning: class 'AsynchronousOperation' must restate inherited '@unchecked Sendable' conformance
 13 |
 14 | 	// MARK: - Types
/Users/admin/builder/spi-builder-workspace/WeTransfer/Server/Operations/Abstract/AsynchronousResultOperation.swift:14:26: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
10 |
11 | /// An asynchronous operation which will always have a result after completion.
12 | open class AsynchronousResultOperation<T>: AsynchronousOperation {
   |                                        `- note: 'T' previously declared here
13 |
14 | 	typealias ResultHandler<T> = ((_ result: Result<T>) -> Void)
   |                          `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
15 |
16 | 	enum Error: Swift.Error {
/Users/admin/builder/spi-builder-workspace/WeTransfer/Server/Operations/Abstract/AsynchronousResultOperation.swift:12:12: warning: class 'AsynchronousResultOperation' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// An asynchronous operation which will always have a result after completion.
12 | open class AsynchronousResultOperation<T>: AsynchronousOperation {
   |            `- warning: class 'AsynchronousResultOperation' must restate inherited '@unchecked Sendable' conformance
13 |
14 | 	typealias ResultHandler<T> = ((_ result: Result<T>) -> Void)
/Users/admin/builder/spi-builder-workspace/WeTransfer/Server/Operations/Abstract/ChainedAsynchronousResultOperation.swift:12:12: warning: class 'ChainedAsynchronousResultOperation' must restate inherited '@unchecked Sendable' conformance
 10 |
 11 | // An asynchronous operation which is dependent on a parent operation for its input.
 12 | open class ChainedAsynchronousResultOperation<Input, Output>: AsynchronousResultOperation<Output> {
    |            `- warning: class 'ChainedAsynchronousResultOperation' must restate inherited '@unchecked Sendable' conformance
 13 |
 14 | 	public enum Error: Swift.Error {
/Users/admin/builder/spi-builder-workspace/WeTransfer/Server/Operations/AddFilesOperation.swift:13:13: warning: class 'AddFilesOperation' must restate inherited '@unchecked Sendable' conformance
11 | /// Operation responsible for adding files to the provided transfer object and on the server as well. When succeeded the files will be updated with the appropriate data like identifiers and information about the chunks.
12 | /// - Note: The files will be added to the provided transfer object when the operation has started executing
13 | final class AddFilesOperation: ChainedAsynchronousResultOperation<Transfer, Transfer> {
   |             `- warning: class 'AddFilesOperation' must restate inherited '@unchecked Sendable' conformance
14 |
15 | 	/// The files to be added to the transfer if added during the initialization
/Users/admin/builder/spi-builder-workspace/WeTransfer/Server/Operations/CompleteUploadOperation.swift:12:13: warning: class 'CompleteUploadOperation' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// Completes the upload of each file in a transfer. Typically used in `UploadFileOperation` after all the file's chunks have been uploaded
12 | final class CompleteUploadOperation: AsynchronousResultOperation<File> {
   |             `- warning: class 'CompleteUploadOperation' must restate inherited '@unchecked Sendable' conformance
13 |
14 | 	enum Error: Swift.Error, LocalizedError {
/Users/admin/builder/spi-builder-workspace/WeTransfer/Server/Operations/CreateChunkOperation.swift:12:13: warning: class 'CreateChunkOperation' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// Creates a chunk of a file to be uploaded. Designed to be used right before `UploadChunkOperation`
12 | final class CreateChunkOperation: AsynchronousResultOperation<Chunk> {
   |             `- warning: class 'CreateChunkOperation' must restate inherited '@unchecked Sendable' conformance
13 |
14 | 	enum Error: Swift.Error, LocalizedError {
/Users/admin/builder/spi-builder-workspace/WeTransfer/Server/Operations/CreateTransferOperation.swift:13:13: warning: class 'CreateTransferOperation' must restate inherited '@unchecked Sendable' conformance
11 | /// Operation responsible for creating the transfer on the server and providing the given transfer object with an identifier and URL when succeeded.
12 | /// This operation does not handle the requests necessary to add files to the server side transfer, which `AddFilesOperation` is responsible for
13 | final class CreateTransferOperation: AsynchronousResultOperation<Transfer> {
   |             `- warning: class 'CreateTransferOperation' must restate inherited '@unchecked Sendable' conformance
14 |
15 | 	private let transfer: Transfer
/Users/admin/builder/spi-builder-workspace/WeTransfer/Server/Operations/UploadChunkOperation.swift:12:13: warning: class 'UploadChunkOperation' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// Uploads the chunk that resulted from the dependant `CreateChunkOperation`. The uploading is handled by the provided `URLSession`
12 | final class UploadChunkOperation: ChainedAsynchronousResultOperation<Chunk, Chunk> {
   |             `- warning: class 'UploadChunkOperation' must restate inherited '@unchecked Sendable' conformance
13 |
14 | 	enum Error: Swift.Error, LocalizedError {
/Users/admin/builder/spi-builder-workspace/WeTransfer/Server/Operations/UploadFileOperation.swift:12:13: warning: class 'UploadFileOperation' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// Responsible for creating the necessary operations to create and upload chunks for the provided file. Uses the provided operation queue to handle created operations and the actual uploading is done with the provided URLSession
12 | final class UploadFileOperation: AsynchronousResultOperation<File> {
   |             `- warning: class 'UploadFileOperation' must restate inherited '@unchecked Sendable' conformance
13 |
14 | 	enum Error: Swift.Error, LocalizedError {
/Users/admin/builder/spi-builder-workspace/WeTransfer/Server/Operations/UploadFilesOperation.swift:12:13: warning: class 'UploadFilesOperation' must restate inherited '@unchecked Sendable' conformance
 10 |
 11 | /// Handles the uploading of all files -- that are not uploaded yet -- in the provided transfer. Creates an operation queue with an `UploadFileOperation` for each file to be uploaded.
 12 | final class UploadFilesOperation: ChainedAsynchronousResultOperation<Transfer, Transfer>, URLSessionDataDelegate {
    |             `- warning: class 'UploadFilesOperation' must restate inherited '@unchecked Sendable' conformance
 13 |
 14 | 	/// Amount of bytes already sent
[4/28] Compiling WeTransfer UploadFilesOperation.swift
/Users/admin/builder/spi-builder-workspace/WeTransfer/Server/Operations/UploadFilesOperation.swift:12:13: warning: class 'UploadFilesOperation' must restate inherited '@unchecked Sendable' conformance
 10 |
 11 | /// Handles the uploading of all files -- that are not uploaded yet -- in the provided transfer. Creates an operation queue with an `UploadFileOperation` for each file to be uploaded.
 12 | final class UploadFilesOperation: ChainedAsynchronousResultOperation<Transfer, Transfer>, URLSessionDataDelegate {
    |             `- warning: class 'UploadFilesOperation' must restate inherited '@unchecked Sendable' conformance
 13 |
 14 | 	/// Amount of bytes already sent
[5/28] Compiling WeTransfer WeTransfer.swift
/Users/admin/builder/spi-builder-workspace/WeTransfer/Server/Operations/UploadFilesOperation.swift:12:13: warning: class 'UploadFilesOperation' must restate inherited '@unchecked Sendable' conformance
 10 |
 11 | /// Handles the uploading of all files -- that are not uploaded yet -- in the provided transfer. Creates an operation queue with an `UploadFileOperation` for each file to be uploaded.
 12 | final class UploadFilesOperation: ChainedAsynchronousResultOperation<Transfer, Transfer>, URLSessionDataDelegate {
    |             `- warning: class 'UploadFilesOperation' must restate inherited '@unchecked Sendable' conformance
 13 |
 14 | 	/// Amount of bytes already sent
[6/28] Compiling WeTransfer CompleteUploadOperation.swift
/Users/admin/builder/spi-builder-workspace/WeTransfer/Server/Operations/CompleteUploadOperation.swift:12:13: warning: class 'CompleteUploadOperation' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// Completes the upload of each file in a transfer. Typically used in `UploadFileOperation` after all the file's chunks have been uploaded
12 | final class CompleteUploadOperation: AsynchronousResultOperation<File> {
   |             `- warning: class 'CompleteUploadOperation' must restate inherited '@unchecked Sendable' conformance
13 |
14 | 	enum Error: Swift.Error, LocalizedError {
/Users/admin/builder/spi-builder-workspace/WeTransfer/Server/Operations/CreateChunkOperation.swift:12:13: warning: class 'CreateChunkOperation' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// Creates a chunk of a file to be uploaded. Designed to be used right before `UploadChunkOperation`
12 | final class CreateChunkOperation: AsynchronousResultOperation<Chunk> {
   |             `- warning: class 'CreateChunkOperation' must restate inherited '@unchecked Sendable' conformance
13 |
14 | 	enum Error: Swift.Error, LocalizedError {
[7/28] Compiling WeTransfer CreateChunkOperation.swift
/Users/admin/builder/spi-builder-workspace/WeTransfer/Server/Operations/CompleteUploadOperation.swift:12:13: warning: class 'CompleteUploadOperation' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// Completes the upload of each file in a transfer. Typically used in `UploadFileOperation` after all the file's chunks have been uploaded
12 | final class CompleteUploadOperation: AsynchronousResultOperation<File> {
   |             `- warning: class 'CompleteUploadOperation' must restate inherited '@unchecked Sendable' conformance
13 |
14 | 	enum Error: Swift.Error, LocalizedError {
/Users/admin/builder/spi-builder-workspace/WeTransfer/Server/Operations/CreateChunkOperation.swift:12:13: warning: class 'CreateChunkOperation' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// Creates a chunk of a file to be uploaded. Designed to be used right before `UploadChunkOperation`
12 | final class CreateChunkOperation: AsynchronousResultOperation<Chunk> {
   |             `- warning: class 'CreateChunkOperation' must restate inherited '@unchecked Sendable' conformance
13 |
14 | 	enum Error: Swift.Error, LocalizedError {
[8/28] Compiling WeTransfer AsynchronousDependencyResultOperation.swift
/Users/admin/builder/spi-builder-workspace/WeTransfer/Server/Operations/Abstract/AsynchronousDependencyResultOperation.swift:12:12: warning: class 'AsynchronousDependencyResultOperation' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// An asynchronous operation which will always have a result after completion.
12 | open class AsynchronousDependencyResultOperation<T>: AsynchronousResultOperation<T> {
   |            `- warning: class 'AsynchronousDependencyResultOperation' must restate inherited '@unchecked Sendable' conformance
13 |
14 | 	open override func execute() {
/Users/admin/builder/spi-builder-workspace/WeTransfer/Server/Operations/Abstract/AsynchronousOperation.swift:12:12: warning: class 'AsynchronousOperation' must restate inherited '@unchecked Sendable' conformance
 10 |
 11 | /// A base class to handle NSOperation states, because this is quite verbose due to KVO and the combined attribute states.
 12 | open class AsynchronousOperation: Operation {
    |            `- warning: class 'AsynchronousOperation' must restate inherited '@unchecked Sendable' conformance
 13 |
 14 | 	// MARK: - Types
/Users/admin/builder/spi-builder-workspace/WeTransfer/Server/Operations/Abstract/AsynchronousResultOperation.swift:14:26: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
10 |
11 | /// An asynchronous operation which will always have a result after completion.
12 | open class AsynchronousResultOperation<T>: AsynchronousOperation {
   |                                        `- note: 'T' previously declared here
13 |
14 | 	typealias ResultHandler<T> = ((_ result: Result<T>) -> Void)
   |                          `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
15 |
16 | 	enum Error: Swift.Error {
/Users/admin/builder/spi-builder-workspace/WeTransfer/Server/Operations/Abstract/AsynchronousResultOperation.swift:12:12: warning: class 'AsynchronousResultOperation' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// An asynchronous operation which will always have a result after completion.
12 | open class AsynchronousResultOperation<T>: AsynchronousOperation {
   |            `- warning: class 'AsynchronousResultOperation' must restate inherited '@unchecked Sendable' conformance
13 |
14 | 	typealias ResultHandler<T> = ((_ result: Result<T>) -> Void)
[9/28] Compiling WeTransfer AsynchronousOperation.swift
/Users/admin/builder/spi-builder-workspace/WeTransfer/Server/Operations/Abstract/AsynchronousDependencyResultOperation.swift:12:12: warning: class 'AsynchronousDependencyResultOperation' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// An asynchronous operation which will always have a result after completion.
12 | open class AsynchronousDependencyResultOperation<T>: AsynchronousResultOperation<T> {
   |            `- warning: class 'AsynchronousDependencyResultOperation' must restate inherited '@unchecked Sendable' conformance
13 |
14 | 	open override func execute() {
/Users/admin/builder/spi-builder-workspace/WeTransfer/Server/Operations/Abstract/AsynchronousOperation.swift:12:12: warning: class 'AsynchronousOperation' must restate inherited '@unchecked Sendable' conformance
 10 |
 11 | /// A base class to handle NSOperation states, because this is quite verbose due to KVO and the combined attribute states.
 12 | open class AsynchronousOperation: Operation {
    |            `- warning: class 'AsynchronousOperation' must restate inherited '@unchecked Sendable' conformance
 13 |
 14 | 	// MARK: - Types
/Users/admin/builder/spi-builder-workspace/WeTransfer/Server/Operations/Abstract/AsynchronousResultOperation.swift:14:26: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
10 |
11 | /// An asynchronous operation which will always have a result after completion.
12 | open class AsynchronousResultOperation<T>: AsynchronousOperation {
   |                                        `- note: 'T' previously declared here
13 |
14 | 	typealias ResultHandler<T> = ((_ result: Result<T>) -> Void)
   |                          `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
15 |
16 | 	enum Error: Swift.Error {
/Users/admin/builder/spi-builder-workspace/WeTransfer/Server/Operations/Abstract/AsynchronousResultOperation.swift:12:12: warning: class 'AsynchronousResultOperation' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// An asynchronous operation which will always have a result after completion.
12 | open class AsynchronousResultOperation<T>: AsynchronousOperation {
   |            `- warning: class 'AsynchronousResultOperation' must restate inherited '@unchecked Sendable' conformance
13 |
14 | 	typealias ResultHandler<T> = ((_ result: Result<T>) -> Void)
[10/28] Compiling WeTransfer AsynchronousResultOperation.swift
/Users/admin/builder/spi-builder-workspace/WeTransfer/Server/Operations/Abstract/AsynchronousDependencyResultOperation.swift:12:12: warning: class 'AsynchronousDependencyResultOperation' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// An asynchronous operation which will always have a result after completion.
12 | open class AsynchronousDependencyResultOperation<T>: AsynchronousResultOperation<T> {
   |            `- warning: class 'AsynchronousDependencyResultOperation' must restate inherited '@unchecked Sendable' conformance
13 |
14 | 	open override func execute() {
/Users/admin/builder/spi-builder-workspace/WeTransfer/Server/Operations/Abstract/AsynchronousOperation.swift:12:12: warning: class 'AsynchronousOperation' must restate inherited '@unchecked Sendable' conformance
 10 |
 11 | /// A base class to handle NSOperation states, because this is quite verbose due to KVO and the combined attribute states.
 12 | open class AsynchronousOperation: Operation {
    |            `- warning: class 'AsynchronousOperation' must restate inherited '@unchecked Sendable' conformance
 13 |
 14 | 	// MARK: - Types
/Users/admin/builder/spi-builder-workspace/WeTransfer/Server/Operations/Abstract/AsynchronousResultOperation.swift:14:26: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
10 |
11 | /// An asynchronous operation which will always have a result after completion.
12 | open class AsynchronousResultOperation<T>: AsynchronousOperation {
   |                                        `- note: 'T' previously declared here
13 |
14 | 	typealias ResultHandler<T> = ((_ result: Result<T>) -> Void)
   |                          `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
15 |
16 | 	enum Error: Swift.Error {
/Users/admin/builder/spi-builder-workspace/WeTransfer/Server/Operations/Abstract/AsynchronousResultOperation.swift:12:12: warning: class 'AsynchronousResultOperation' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// An asynchronous operation which will always have a result after completion.
12 | open class AsynchronousResultOperation<T>: AsynchronousOperation {
   |            `- warning: class 'AsynchronousResultOperation' must restate inherited '@unchecked Sendable' conformance
13 |
14 | 	typealias ResultHandler<T> = ((_ result: Result<T>) -> Void)
[11/28] Compiling WeTransfer APIClient.swift
[12/28] Compiling WeTransfer Authenticator.swift
[13/28] Compiling WeTransfer APIEndpoint.swift
[14/28] Compiling WeTransfer CreateTransfer.swift
/Users/admin/builder/spi-builder-workspace/WeTransfer/Server/Methods/Request.swift:127:39: warning: capture of non-sendable type 'Response.Type' in an isolated closure
125 | 					throw RequestError.invalidResponseData
126 | 				}
127 | 				let response = try client.decoder.decode(endpoint.responseType, from: data)
    |                                       `- warning: capture of non-sendable type 'Response.Type' in an isolated closure
128 | 				completion(.success(response))
129 | 			} catch {
/Users/admin/builder/spi-builder-workspace/WeTransfer/Server/Methods/Request.swift:90:34: warning: capture of non-sendable type 'Response.Type' in an isolated closure
 88 | 	///   - completion: Closure called when either request has failed, or succeeded with the decoded Response type
 89 | 	///   - result: Result with either the decoded Response or and error describing where the request went wrong
 90 | 	static func request<Response>(_ endpoint: APIEndpoint<Response>, data: Data? = nil, completion: @escaping (_ result: Result<Response>) -> Void) {
    |                                  `- warning: capture of non-sendable type 'Response.Type' in an isolated closure
 91 |
 92 | 		guard !endpoint.requiresAuthentication || client.authenticator.isAuthenticated else {
[15/28] Compiling WeTransfer Request.swift
/Users/admin/builder/spi-builder-workspace/WeTransfer/Server/Methods/Request.swift:127:39: warning: capture of non-sendable type 'Response.Type' in an isolated closure
125 | 					throw RequestError.invalidResponseData
126 | 				}
127 | 				let response = try client.decoder.decode(endpoint.responseType, from: data)
    |                                       `- warning: capture of non-sendable type 'Response.Type' in an isolated closure
128 | 				completion(.success(response))
129 | 			} catch {
/Users/admin/builder/spi-builder-workspace/WeTransfer/Server/Methods/Request.swift:90:34: warning: capture of non-sendable type 'Response.Type' in an isolated closure
 88 | 	///   - completion: Closure called when either request has failed, or succeeded with the decoded Response type
 89 | 	///   - result: Result with either the decoded Response or and error describing where the request went wrong
 90 | 	static func request<Response>(_ endpoint: APIEndpoint<Response>, data: Data? = nil, completion: @escaping (_ result: Result<Response>) -> Void) {
    |                                  `- warning: capture of non-sendable type 'Response.Type' in an isolated closure
 91 |
 92 | 		guard !endpoint.requiresAuthentication || client.authenticator.isAuthenticated else {
[16/28] Compiling WeTransfer Upload.swift
/Users/admin/builder/spi-builder-workspace/WeTransfer/Server/Methods/Request.swift:127:39: warning: capture of non-sendable type 'Response.Type' in an isolated closure
125 | 					throw RequestError.invalidResponseData
126 | 				}
127 | 				let response = try client.decoder.decode(endpoint.responseType, from: data)
    |                                       `- warning: capture of non-sendable type 'Response.Type' in an isolated closure
128 | 				completion(.success(response))
129 | 			} catch {
/Users/admin/builder/spi-builder-workspace/WeTransfer/Server/Methods/Request.swift:90:34: warning: capture of non-sendable type 'Response.Type' in an isolated closure
 88 | 	///   - completion: Closure called when either request has failed, or succeeded with the decoded Response type
 89 | 	///   - result: Result with either the decoded Response or and error describing where the request went wrong
 90 | 	static func request<Response>(_ endpoint: APIEndpoint<Response>, data: Data? = nil, completion: @escaping (_ result: Result<Response>) -> Void) {
    |                                  `- warning: capture of non-sendable type 'Response.Type' in an isolated closure
 91 |
 92 | 		guard !endpoint.requiresAuthentication || client.authenticator.isAuthenticated else {
[17/28] Compiling WeTransfer Endpoints.swift
[18/28] Compiling WeTransfer AddFiles.swift
[19/28] Compiling WeTransfer Authorize.swift
[20/28] Compiling WeTransfer UploadChunkOperation.swift
/Users/admin/builder/spi-builder-workspace/WeTransfer/Server/Operations/UploadChunkOperation.swift:12:13: warning: class 'UploadChunkOperation' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// Uploads the chunk that resulted from the dependant `CreateChunkOperation`. The uploading is handled by the provided `URLSession`
12 | final class UploadChunkOperation: ChainedAsynchronousResultOperation<Chunk, Chunk> {
   |             `- warning: class 'UploadChunkOperation' must restate inherited '@unchecked Sendable' conformance
13 |
14 | 	enum Error: Swift.Error, LocalizedError {
/Users/admin/builder/spi-builder-workspace/WeTransfer/Server/Operations/UploadFileOperation.swift:12:13: warning: class 'UploadFileOperation' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// Responsible for creating the necessary operations to create and upload chunks for the provided file. Uses the provided operation queue to handle created operations and the actual uploading is done with the provided URLSession
12 | final class UploadFileOperation: AsynchronousResultOperation<File> {
   |             `- warning: class 'UploadFileOperation' must restate inherited '@unchecked Sendable' conformance
13 |
14 | 	enum Error: Swift.Error, LocalizedError {
[21/28] Compiling WeTransfer UploadFileOperation.swift
/Users/admin/builder/spi-builder-workspace/WeTransfer/Server/Operations/UploadChunkOperation.swift:12:13: warning: class 'UploadChunkOperation' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// Uploads the chunk that resulted from the dependant `CreateChunkOperation`. The uploading is handled by the provided `URLSession`
12 | final class UploadChunkOperation: ChainedAsynchronousResultOperation<Chunk, Chunk> {
   |             `- warning: class 'UploadChunkOperation' must restate inherited '@unchecked Sendable' conformance
13 |
14 | 	enum Error: Swift.Error, LocalizedError {
/Users/admin/builder/spi-builder-workspace/WeTransfer/Server/Operations/UploadFileOperation.swift:12:13: warning: class 'UploadFileOperation' must restate inherited '@unchecked Sendable' conformance
10 |
11 | /// Responsible for creating the necessary operations to create and upload chunks for the provided file. Uses the provided operation queue to handle created operations and the actual uploading is done with the provided URLSession
12 | final class UploadFileOperation: AsynchronousResultOperation<File> {
   |             `- warning: class 'UploadFileOperation' must restate inherited '@unchecked Sendable' conformance
13 |
14 | 	enum Error: Swift.Error, LocalizedError {
[22/28] Compiling WeTransfer ChainedAsynchronousResultOperation.swift
/Users/admin/builder/spi-builder-workspace/WeTransfer/Server/Operations/Abstract/ChainedAsynchronousResultOperation.swift:12:12: warning: class 'ChainedAsynchronousResultOperation' must restate inherited '@unchecked Sendable' conformance
 10 |
 11 | // An asynchronous operation which is dependent on a parent operation for its input.
 12 | open class ChainedAsynchronousResultOperation<Input, Output>: AsynchronousResultOperation<Output> {
    |            `- warning: class 'ChainedAsynchronousResultOperation' must restate inherited '@unchecked Sendable' conformance
 13 |
 14 | 	public enum Error: Swift.Error {
/Users/admin/builder/spi-builder-workspace/WeTransfer/Server/Operations/AddFilesOperation.swift:13:13: warning: class 'AddFilesOperation' must restate inherited '@unchecked Sendable' conformance
11 | /// Operation responsible for adding files to the provided transfer object and on the server as well. When succeeded the files will be updated with the appropriate data like identifiers and information about the chunks.
12 | /// - Note: The files will be added to the provided transfer object when the operation has started executing
13 | final class AddFilesOperation: ChainedAsynchronousResultOperation<Transfer, Transfer> {
   |             `- warning: class 'AddFilesOperation' must restate inherited '@unchecked Sendable' conformance
14 |
15 | 	/// The files to be added to the transfer if added during the initialization
[23/28] Compiling WeTransfer AddFilesOperation.swift
/Users/admin/builder/spi-builder-workspace/WeTransfer/Server/Operations/Abstract/ChainedAsynchronousResultOperation.swift:12:12: warning: class 'ChainedAsynchronousResultOperation' must restate inherited '@unchecked Sendable' conformance
 10 |
 11 | // An asynchronous operation which is dependent on a parent operation for its input.
 12 | open class ChainedAsynchronousResultOperation<Input, Output>: AsynchronousResultOperation<Output> {
    |            `- warning: class 'ChainedAsynchronousResultOperation' must restate inherited '@unchecked Sendable' conformance
 13 |
 14 | 	public enum Error: Swift.Error {
/Users/admin/builder/spi-builder-workspace/WeTransfer/Server/Operations/AddFilesOperation.swift:13:13: warning: class 'AddFilesOperation' must restate inherited '@unchecked Sendable' conformance
11 | /// Operation responsible for adding files to the provided transfer object and on the server as well. When succeeded the files will be updated with the appropriate data like identifiers and information about the chunks.
12 | /// - Note: The files will be added to the provided transfer object when the operation has started executing
13 | final class AddFilesOperation: ChainedAsynchronousResultOperation<Transfer, Transfer> {
   |             `- warning: class 'AddFilesOperation' must restate inherited '@unchecked Sendable' conformance
14 |
15 | 	/// The files to be added to the transfer if added during the initialization
[24/28] Compiling WeTransfer CreateTransferOperation.swift
/Users/admin/builder/spi-builder-workspace/WeTransfer/Server/Operations/CreateTransferOperation.swift:13:13: warning: class 'CreateTransferOperation' must restate inherited '@unchecked Sendable' conformance
11 | /// Operation responsible for creating the transfer on the server and providing the given transfer object with an identifier and URL when succeeded.
12 | /// This operation does not handle the requests necessary to add files to the server side transfer, which `AddFilesOperation` is responsible for
13 | final class CreateTransferOperation: AsynchronousResultOperation<Transfer> {
   |             `- warning: class 'CreateTransferOperation' must restate inherited '@unchecked Sendable' conformance
14 |
15 | 	private let transfer: Transfer
[25/28] Compiling WeTransfer Result.swift
/Users/admin/builder/spi-builder-workspace/WeTransfer/Server/Operations/CreateTransferOperation.swift:13:13: warning: class 'CreateTransferOperation' must restate inherited '@unchecked Sendable' conformance
11 | /// Operation responsible for creating the transfer on the server and providing the given transfer object with an identifier and URL when succeeded.
12 | /// This operation does not handle the requests necessary to add files to the server side transfer, which `AddFilesOperation` is responsible for
13 | final class CreateTransferOperation: AsynchronousResultOperation<Transfer> {
   |             `- warning: class 'CreateTransferOperation' must restate inherited '@unchecked Sendable' conformance
14 |
15 | 	private let transfer: Transfer
[26/28] Compiling WeTransfer Chunk.swift
[27/28] Compiling WeTransfer File.swift
[28/28] Compiling WeTransfer Transfer.swift
Build complete! (5.75s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "WeTransfer-Swift-SDK",
  "name" : "WeTransfer-Swift-SDK",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "WeTransfer",
      "targets" : [
        "WeTransfer"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "WeTransfer_Tests",
      "module_type" : "SwiftTarget",
      "name" : "WeTransfer Tests",
      "path" : "WeTransferTests",
      "sources" : [
        "AuthorizationTests.swift",
        "InitializationTests.swift",
        "RequestTests.swift",
        "Secrets.swift",
        "TestConfiguration.swift",
        "Transfer/AddFilesTests.swift",
        "Transfer/ChunksTests.swift",
        "Transfer/CreateTransferTests.swift",
        "Transfer/SimpleTransferTests.swift",
        "Transfer/UploadTests.swift"
      ],
      "target_dependencies" : [
        "WeTransfer"
      ],
      "type" : "test"
    },
    {
      "c99name" : "WeTransfer",
      "module_type" : "SwiftTarget",
      "name" : "WeTransfer",
      "path" : "WeTransfer",
      "product_memberships" : [
        "WeTransfer"
      ],
      "sources" : [
        "Models/Chunk.swift",
        "Models/File.swift",
        "Models/Transfer.swift",
        "Server/APIClient.swift",
        "Server/Authenticator.swift",
        "Server/Endpoints/APIEndpoint.swift",
        "Server/Endpoints/Endpoints.swift",
        "Server/Methods/AddFiles.swift",
        "Server/Methods/Authorize.swift",
        "Server/Methods/CreateTransfer.swift",
        "Server/Methods/Request.swift",
        "Server/Methods/Upload.swift",
        "Server/Operations/Abstract/AsynchronousDependencyResultOperation.swift",
        "Server/Operations/Abstract/AsynchronousOperation.swift",
        "Server/Operations/Abstract/AsynchronousResultOperation.swift",
        "Server/Operations/Abstract/ChainedAsynchronousResultOperation.swift",
        "Server/Operations/AddFilesOperation.swift",
        "Server/Operations/CompleteUploadOperation.swift",
        "Server/Operations/CreateChunkOperation.swift",
        "Server/Operations/CreateTransferOperation.swift",
        "Server/Operations/Helpers/Result.swift",
        "Server/Operations/UploadChunkOperation.swift",
        "Server/Operations/UploadFileOperation.swift",
        "Server/Operations/UploadFilesOperation.swift",
        "WeTransfer.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "4.0"
}
Done.