Build Information
Successful build of ParseSwift, reference main (c9d8c9
), with Swift 6.1 for macOS (SPM) on 1 May 2025 11:04:11 UTC.
Swift 6 data race errors: 41
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64
Build Log
138 | }
139 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/Query+async.swift:151:53: warning: converting a value of type '(__shared sending Result<([T], Int), ParseError>) -> ()' to type '(Result<([T], Int), ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
149 | try await withCheckedThrowingContinuation { continuation in
150 | self.withCount(options: options,
151 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<([T], Int), ParseError>) -> ()' to type '(Result<([T], Int), ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
152 | }
153 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/Query+async.swift:174:60: warning: converting a value of type '(__shared sending Result<[U], ParseError>) -> ()' to type '(Result<[U], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
172 | self.withCountExplain(usingMongoDB: usingMongoDB,
173 | options: options,
174 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[U], ParseError>) -> ()' to type '(Result<[U], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
175 | }
176 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/Query+async.swift:193:53: warning: converting a value of type '(__shared sending Result<[T], ParseError>) -> ()' to type '(Result<[T], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
191 | self.aggregate(pipeline,
192 | options: options,
193 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[T], ParseError>) -> ()' to type '(Result<[T], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
194 | }
195 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/Query+async.swift:222:60: warning: converting a value of type '(__shared sending Result<[U], ParseError>) -> ()' to type '(Result<[U], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
220 | usingMongoDB: usingMongoDB,
221 | options: options,
222 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[U], ParseError>) -> ()' to type '(Result<[U], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
223 | }
224 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/Query+async.swift:241:52: warning: converting a value of type '(__shared sending Result<[T], ParseError>) -> ()' to type '(Result<[T], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
239 | self.distinct(key,
240 | options: options,
241 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[T], ParseError>) -> ()' to type '(Result<[T], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
242 | }
243 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/Query+async.swift:270:59: warning: converting a value of type '(__shared sending Result<[U], ParseError>) -> ()' to type '(Result<[U], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
268 | usingMongoDB: usingMongoDB,
269 | options: options,
270 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[U], ParseError>) -> ()' to type '(Result<[U], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
271 | }
272 | }
[195/202] Compiling ParseSwift Pointer.swift
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/ParseSchema+async.swift:27:49: warning: converting a value of type '(__shared sending Result<ParseSchema<SchemaObject>, ParseError>) -> ()' to type '(Result<ParseSchema<SchemaObject>, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
25 | try await withCheckedThrowingContinuation { continuation in
26 | self.fetch(options: options,
27 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<ParseSchema<SchemaObject>, ParseError>) -> ()' to type '(Result<ParseSchema<SchemaObject>, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
28 | }
29 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/ParseSchema+async.swift:45:50: warning: converting a value of type '(__shared sending Result<ParseSchema<SchemaObject>, ParseError>) -> ()' to type '(Result<ParseSchema<SchemaObject>, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
43 | try await withCheckedThrowingContinuation { continuation in
44 | self.create(options: options,
45 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<ParseSchema<SchemaObject>, ParseError>) -> ()' to type '(Result<ParseSchema<SchemaObject>, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
46 | }
47 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/ParseSchema+async.swift:63:50: warning: converting a value of type '(__shared sending Result<ParseSchema<SchemaObject>, ParseError>) -> ()' to type '(Result<ParseSchema<SchemaObject>, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
61 | try await withCheckedThrowingContinuation { continuation in
62 | self.update(options: options,
63 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<ParseSchema<SchemaObject>, ParseError>) -> ()' to type '(Result<ParseSchema<SchemaObject>, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
64 | }
65 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/ParseSchema+async.swift:82:50: warning: converting a value of type '(sending Result<Void, ParseError>) -> ()' to type '(Result<Void, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
80 | let result = try await withCheckedThrowingContinuation { continuation in
81 | self.purge(options: options,
82 | completion: continuation.resume)
| |- warning: converting a value of type '(sending Result<Void, ParseError>) -> ()' to type '(Result<Void, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
83 | }
84 | if case let .failure(error) = result {
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/ParseSchema+async.swift:105:50: warning: converting a value of type '(sending Result<Void, ParseError>) -> ()' to type '(Result<Void, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
103 | let result = try await withCheckedThrowingContinuation { continuation in
104 | self.delete(options: options,
105 | completion: continuation.resume)
| |- warning: converting a value of type '(sending Result<Void, ParseError>) -> ()' to type '(Result<Void, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
106 | }
107 | if case let .failure(error) = result {
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/ParseServer+async.swift:29:50: warning: converting a value of type '(__shared sending Result<ParseServer.Status, ParseError>) -> ()' to type '(Result<ParseServer.Status, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
27 | Self.health(options: options,
28 | allowIntermediateResponses: false,
29 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<ParseServer.Status, ParseError>) -> ()' to type '(Result<ParseServer.Status, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
30 | }
31 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/ParseServer+async.swift:60:55: warning: converting a value of type '(__shared sending Result<ParseServer.Information, ParseError>) -> ()' to type '(Result<ParseServer.Information, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
58 | try await withCheckedThrowingContinuation { continuation in
59 | Self.information(options: options,
60 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<ParseServer.Information, ParseError>) -> ()' to type '(Result<ParseServer.Information, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
61 | }
62 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/Pointer+async.swift:28:49: warning: converting a value of type '(__shared sending Result<Pointer<T>.Object, ParseError>) -> ()' (aka '(__shared sending Result<T, ParseError>) -> ()') to type '(Result<Pointer<T>.Object, ParseError>) -> Void' (aka '(Result<T, ParseError>) -> ()') risks causing data races; this is an error in the Swift 6 language mode
26 | self.fetch(includeKeys: includeKeys,
27 | options: options,
28 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<Pointer<T>.Object, ParseError>) -> ()' (aka '(__shared sending Result<T, ParseError>) -> ()') to type '(Result<Pointer<T>.Object, ParseError>) -> Void' (aka '(Result<T, ParseError>) -> ()') risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
29 | }
30 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/Query+async.swift:24:48: warning: converting a value of type '(__shared sending Result<[T], ParseError>) -> ()' to type '(Result<[T], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
22 | try await withCheckedThrowingContinuation { continuation in
23 | self.find(options: options,
24 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[T], ParseError>) -> ()' to type '(Result<[T], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
25 | }
26 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/Query+async.swift:47:55: warning: converting a value of type '(__shared sending Result<[U], ParseError>) -> ()' to type '(Result<[U], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
45 | self.findExplain(usingMongoDB: usingMongoDB,
46 | options: options,
47 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[U], ParseError>) -> ()' to type '(Result<[U], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
48 | }
49 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/Query+async.swift:65:51: warning: converting a value of type '(__shared sending Result<[T], ParseError>) -> ()' to type '(Result<[T], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
63 | self.findAll(batchLimit: batchLimit,
64 | options: options,
65 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[T], ParseError>) -> ()' to type '(Result<[T], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
66 | }
67 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/Query+async.swift:78:49: warning: converting a value of type '(__shared sending Result<T, ParseError>) -> ()' to type '(Result<T, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
76 | try await withCheckedThrowingContinuation { continuation in
77 | self.first(options: options,
78 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<T, ParseError>) -> ()' to type '(Result<T, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
79 | }
80 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/Query+async.swift:101:56: warning: converting a value of type '(__shared sending Result<U, ParseError>) -> ()' to type '(Result<U, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
99 | self.firstExplain(usingMongoDB: usingMongoDB,
100 | options: options,
101 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<U, ParseError>) -> ()' to type '(Result<U, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
102 | }
103 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/Query+async.swift:114:49: warning: converting a value of type '(__shared sending Result<Int, ParseError>) -> ()' to type '(Result<Int, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
112 | try await withCheckedThrowingContinuation { continuation in
113 | self.count(options: options,
114 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<Int, ParseError>) -> ()' to type '(Result<Int, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
115 | }
116 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/Query+async.swift:137:56: warning: converting a value of type '(__shared sending Result<[U], ParseError>) -> ()' to type '(Result<[U], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
135 | self.countExplain(usingMongoDB: usingMongoDB,
136 | options: options,
137 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[U], ParseError>) -> ()' to type '(Result<[U], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
138 | }
139 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/Query+async.swift:151:53: warning: converting a value of type '(__shared sending Result<([T], Int), ParseError>) -> ()' to type '(Result<([T], Int), ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
149 | try await withCheckedThrowingContinuation { continuation in
150 | self.withCount(options: options,
151 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<([T], Int), ParseError>) -> ()' to type '(Result<([T], Int), ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
152 | }
153 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/Query+async.swift:174:60: warning: converting a value of type '(__shared sending Result<[U], ParseError>) -> ()' to type '(Result<[U], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
172 | self.withCountExplain(usingMongoDB: usingMongoDB,
173 | options: options,
174 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[U], ParseError>) -> ()' to type '(Result<[U], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
175 | }
176 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/Query+async.swift:193:53: warning: converting a value of type '(__shared sending Result<[T], ParseError>) -> ()' to type '(Result<[T], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
191 | self.aggregate(pipeline,
192 | options: options,
193 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[T], ParseError>) -> ()' to type '(Result<[T], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
194 | }
195 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/Query+async.swift:222:60: warning: converting a value of type '(__shared sending Result<[U], ParseError>) -> ()' to type '(Result<[U], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
220 | usingMongoDB: usingMongoDB,
221 | options: options,
222 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[U], ParseError>) -> ()' to type '(Result<[U], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
223 | }
224 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/Query+async.swift:241:52: warning: converting a value of type '(__shared sending Result<[T], ParseError>) -> ()' to type '(Result<[T], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
239 | self.distinct(key,
240 | options: options,
241 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[T], ParseError>) -> ()' to type '(Result<[T], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
242 | }
243 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/Query+async.swift:270:59: warning: converting a value of type '(__shared sending Result<[U], ParseError>) -> ()' to type '(Result<[U], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
268 | usingMongoDB: usingMongoDB,
269 | options: options,
270 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[U], ParseError>) -> ()' to type '(Result<[U], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
271 | }
272 | }
[196/202] Compiling ParseSwift Query+async.swift
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/ParseSchema+async.swift:27:49: warning: converting a value of type '(__shared sending Result<ParseSchema<SchemaObject>, ParseError>) -> ()' to type '(Result<ParseSchema<SchemaObject>, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
25 | try await withCheckedThrowingContinuation { continuation in
26 | self.fetch(options: options,
27 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<ParseSchema<SchemaObject>, ParseError>) -> ()' to type '(Result<ParseSchema<SchemaObject>, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
28 | }
29 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/ParseSchema+async.swift:45:50: warning: converting a value of type '(__shared sending Result<ParseSchema<SchemaObject>, ParseError>) -> ()' to type '(Result<ParseSchema<SchemaObject>, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
43 | try await withCheckedThrowingContinuation { continuation in
44 | self.create(options: options,
45 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<ParseSchema<SchemaObject>, ParseError>) -> ()' to type '(Result<ParseSchema<SchemaObject>, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
46 | }
47 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/ParseSchema+async.swift:63:50: warning: converting a value of type '(__shared sending Result<ParseSchema<SchemaObject>, ParseError>) -> ()' to type '(Result<ParseSchema<SchemaObject>, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
61 | try await withCheckedThrowingContinuation { continuation in
62 | self.update(options: options,
63 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<ParseSchema<SchemaObject>, ParseError>) -> ()' to type '(Result<ParseSchema<SchemaObject>, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
64 | }
65 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/ParseSchema+async.swift:82:50: warning: converting a value of type '(sending Result<Void, ParseError>) -> ()' to type '(Result<Void, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
80 | let result = try await withCheckedThrowingContinuation { continuation in
81 | self.purge(options: options,
82 | completion: continuation.resume)
| |- warning: converting a value of type '(sending Result<Void, ParseError>) -> ()' to type '(Result<Void, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
83 | }
84 | if case let .failure(error) = result {
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/ParseSchema+async.swift:105:50: warning: converting a value of type '(sending Result<Void, ParseError>) -> ()' to type '(Result<Void, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
103 | let result = try await withCheckedThrowingContinuation { continuation in
104 | self.delete(options: options,
105 | completion: continuation.resume)
| |- warning: converting a value of type '(sending Result<Void, ParseError>) -> ()' to type '(Result<Void, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
106 | }
107 | if case let .failure(error) = result {
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/ParseServer+async.swift:29:50: warning: converting a value of type '(__shared sending Result<ParseServer.Status, ParseError>) -> ()' to type '(Result<ParseServer.Status, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
27 | Self.health(options: options,
28 | allowIntermediateResponses: false,
29 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<ParseServer.Status, ParseError>) -> ()' to type '(Result<ParseServer.Status, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
30 | }
31 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/ParseServer+async.swift:60:55: warning: converting a value of type '(__shared sending Result<ParseServer.Information, ParseError>) -> ()' to type '(Result<ParseServer.Information, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
58 | try await withCheckedThrowingContinuation { continuation in
59 | Self.information(options: options,
60 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<ParseServer.Information, ParseError>) -> ()' to type '(Result<ParseServer.Information, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
61 | }
62 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/Pointer+async.swift:28:49: warning: converting a value of type '(__shared sending Result<Pointer<T>.Object, ParseError>) -> ()' (aka '(__shared sending Result<T, ParseError>) -> ()') to type '(Result<Pointer<T>.Object, ParseError>) -> Void' (aka '(Result<T, ParseError>) -> ()') risks causing data races; this is an error in the Swift 6 language mode
26 | self.fetch(includeKeys: includeKeys,
27 | options: options,
28 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<Pointer<T>.Object, ParseError>) -> ()' (aka '(__shared sending Result<T, ParseError>) -> ()') to type '(Result<Pointer<T>.Object, ParseError>) -> Void' (aka '(Result<T, ParseError>) -> ()') risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
29 | }
30 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/Query+async.swift:24:48: warning: converting a value of type '(__shared sending Result<[T], ParseError>) -> ()' to type '(Result<[T], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
22 | try await withCheckedThrowingContinuation { continuation in
23 | self.find(options: options,
24 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[T], ParseError>) -> ()' to type '(Result<[T], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
25 | }
26 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/Query+async.swift:47:55: warning: converting a value of type '(__shared sending Result<[U], ParseError>) -> ()' to type '(Result<[U], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
45 | self.findExplain(usingMongoDB: usingMongoDB,
46 | options: options,
47 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[U], ParseError>) -> ()' to type '(Result<[U], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
48 | }
49 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/Query+async.swift:65:51: warning: converting a value of type '(__shared sending Result<[T], ParseError>) -> ()' to type '(Result<[T], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
63 | self.findAll(batchLimit: batchLimit,
64 | options: options,
65 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[T], ParseError>) -> ()' to type '(Result<[T], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
66 | }
67 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/Query+async.swift:78:49: warning: converting a value of type '(__shared sending Result<T, ParseError>) -> ()' to type '(Result<T, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
76 | try await withCheckedThrowingContinuation { continuation in
77 | self.first(options: options,
78 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<T, ParseError>) -> ()' to type '(Result<T, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
79 | }
80 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/Query+async.swift:101:56: warning: converting a value of type '(__shared sending Result<U, ParseError>) -> ()' to type '(Result<U, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
99 | self.firstExplain(usingMongoDB: usingMongoDB,
100 | options: options,
101 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<U, ParseError>) -> ()' to type '(Result<U, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
102 | }
103 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/Query+async.swift:114:49: warning: converting a value of type '(__shared sending Result<Int, ParseError>) -> ()' to type '(Result<Int, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
112 | try await withCheckedThrowingContinuation { continuation in
113 | self.count(options: options,
114 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<Int, ParseError>) -> ()' to type '(Result<Int, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
115 | }
116 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/Query+async.swift:137:56: warning: converting a value of type '(__shared sending Result<[U], ParseError>) -> ()' to type '(Result<[U], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
135 | self.countExplain(usingMongoDB: usingMongoDB,
136 | options: options,
137 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[U], ParseError>) -> ()' to type '(Result<[U], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
138 | }
139 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/Query+async.swift:151:53: warning: converting a value of type '(__shared sending Result<([T], Int), ParseError>) -> ()' to type '(Result<([T], Int), ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
149 | try await withCheckedThrowingContinuation { continuation in
150 | self.withCount(options: options,
151 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<([T], Int), ParseError>) -> ()' to type '(Result<([T], Int), ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
152 | }
153 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/Query+async.swift:174:60: warning: converting a value of type '(__shared sending Result<[U], ParseError>) -> ()' to type '(Result<[U], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
172 | self.withCountExplain(usingMongoDB: usingMongoDB,
173 | options: options,
174 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[U], ParseError>) -> ()' to type '(Result<[U], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
175 | }
176 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/Query+async.swift:193:53: warning: converting a value of type '(__shared sending Result<[T], ParseError>) -> ()' to type '(Result<[T], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
191 | self.aggregate(pipeline,
192 | options: options,
193 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[T], ParseError>) -> ()' to type '(Result<[T], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
194 | }
195 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/Query+async.swift:222:60: warning: converting a value of type '(__shared sending Result<[U], ParseError>) -> ()' to type '(Result<[U], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
220 | usingMongoDB: usingMongoDB,
221 | options: options,
222 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[U], ParseError>) -> ()' to type '(Result<[U], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
223 | }
224 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/Query+async.swift:241:52: warning: converting a value of type '(__shared sending Result<[T], ParseError>) -> ()' to type '(Result<[T], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
239 | self.distinct(key,
240 | options: options,
241 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[T], ParseError>) -> ()' to type '(Result<[T], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
242 | }
243 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/Query+async.swift:270:59: warning: converting a value of type '(__shared sending Result<[U], ParseError>) -> ()' to type '(Result<[U], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
268 | usingMongoDB: usingMongoDB,
269 | options: options,
270 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[U], ParseError>) -> ()' to type '(Result<[U], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
271 | }
272 | }
[197/202] Compiling ParseSwift Query+combine.swift
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/ParseSchema+async.swift:27:49: warning: converting a value of type '(__shared sending Result<ParseSchema<SchemaObject>, ParseError>) -> ()' to type '(Result<ParseSchema<SchemaObject>, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
25 | try await withCheckedThrowingContinuation { continuation in
26 | self.fetch(options: options,
27 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<ParseSchema<SchemaObject>, ParseError>) -> ()' to type '(Result<ParseSchema<SchemaObject>, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
28 | }
29 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/ParseSchema+async.swift:45:50: warning: converting a value of type '(__shared sending Result<ParseSchema<SchemaObject>, ParseError>) -> ()' to type '(Result<ParseSchema<SchemaObject>, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
43 | try await withCheckedThrowingContinuation { continuation in
44 | self.create(options: options,
45 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<ParseSchema<SchemaObject>, ParseError>) -> ()' to type '(Result<ParseSchema<SchemaObject>, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
46 | }
47 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/ParseSchema+async.swift:63:50: warning: converting a value of type '(__shared sending Result<ParseSchema<SchemaObject>, ParseError>) -> ()' to type '(Result<ParseSchema<SchemaObject>, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
61 | try await withCheckedThrowingContinuation { continuation in
62 | self.update(options: options,
63 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<ParseSchema<SchemaObject>, ParseError>) -> ()' to type '(Result<ParseSchema<SchemaObject>, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
64 | }
65 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/ParseSchema+async.swift:82:50: warning: converting a value of type '(sending Result<Void, ParseError>) -> ()' to type '(Result<Void, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
80 | let result = try await withCheckedThrowingContinuation { continuation in
81 | self.purge(options: options,
82 | completion: continuation.resume)
| |- warning: converting a value of type '(sending Result<Void, ParseError>) -> ()' to type '(Result<Void, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
83 | }
84 | if case let .failure(error) = result {
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/ParseSchema+async.swift:105:50: warning: converting a value of type '(sending Result<Void, ParseError>) -> ()' to type '(Result<Void, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
103 | let result = try await withCheckedThrowingContinuation { continuation in
104 | self.delete(options: options,
105 | completion: continuation.resume)
| |- warning: converting a value of type '(sending Result<Void, ParseError>) -> ()' to type '(Result<Void, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
106 | }
107 | if case let .failure(error) = result {
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/ParseServer+async.swift:29:50: warning: converting a value of type '(__shared sending Result<ParseServer.Status, ParseError>) -> ()' to type '(Result<ParseServer.Status, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
27 | Self.health(options: options,
28 | allowIntermediateResponses: false,
29 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<ParseServer.Status, ParseError>) -> ()' to type '(Result<ParseServer.Status, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
30 | }
31 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/ParseServer+async.swift:60:55: warning: converting a value of type '(__shared sending Result<ParseServer.Information, ParseError>) -> ()' to type '(Result<ParseServer.Information, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
58 | try await withCheckedThrowingContinuation { continuation in
59 | Self.information(options: options,
60 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<ParseServer.Information, ParseError>) -> ()' to type '(Result<ParseServer.Information, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
61 | }
62 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/Pointer+async.swift:28:49: warning: converting a value of type '(__shared sending Result<Pointer<T>.Object, ParseError>) -> ()' (aka '(__shared sending Result<T, ParseError>) -> ()') to type '(Result<Pointer<T>.Object, ParseError>) -> Void' (aka '(Result<T, ParseError>) -> ()') risks causing data races; this is an error in the Swift 6 language mode
26 | self.fetch(includeKeys: includeKeys,
27 | options: options,
28 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<Pointer<T>.Object, ParseError>) -> ()' (aka '(__shared sending Result<T, ParseError>) -> ()') to type '(Result<Pointer<T>.Object, ParseError>) -> Void' (aka '(Result<T, ParseError>) -> ()') risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
29 | }
30 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/Query+async.swift:24:48: warning: converting a value of type '(__shared sending Result<[T], ParseError>) -> ()' to type '(Result<[T], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
22 | try await withCheckedThrowingContinuation { continuation in
23 | self.find(options: options,
24 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[T], ParseError>) -> ()' to type '(Result<[T], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
25 | }
26 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/Query+async.swift:47:55: warning: converting a value of type '(__shared sending Result<[U], ParseError>) -> ()' to type '(Result<[U], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
45 | self.findExplain(usingMongoDB: usingMongoDB,
46 | options: options,
47 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[U], ParseError>) -> ()' to type '(Result<[U], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
48 | }
49 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/Query+async.swift:65:51: warning: converting a value of type '(__shared sending Result<[T], ParseError>) -> ()' to type '(Result<[T], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
63 | self.findAll(batchLimit: batchLimit,
64 | options: options,
65 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[T], ParseError>) -> ()' to type '(Result<[T], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
66 | }
67 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/Query+async.swift:78:49: warning: converting a value of type '(__shared sending Result<T, ParseError>) -> ()' to type '(Result<T, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
76 | try await withCheckedThrowingContinuation { continuation in
77 | self.first(options: options,
78 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<T, ParseError>) -> ()' to type '(Result<T, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
79 | }
80 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/Query+async.swift:101:56: warning: converting a value of type '(__shared sending Result<U, ParseError>) -> ()' to type '(Result<U, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
99 | self.firstExplain(usingMongoDB: usingMongoDB,
100 | options: options,
101 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<U, ParseError>) -> ()' to type '(Result<U, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
102 | }
103 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/Query+async.swift:114:49: warning: converting a value of type '(__shared sending Result<Int, ParseError>) -> ()' to type '(Result<Int, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
112 | try await withCheckedThrowingContinuation { continuation in
113 | self.count(options: options,
114 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<Int, ParseError>) -> ()' to type '(Result<Int, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
115 | }
116 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/Query+async.swift:137:56: warning: converting a value of type '(__shared sending Result<[U], ParseError>) -> ()' to type '(Result<[U], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
135 | self.countExplain(usingMongoDB: usingMongoDB,
136 | options: options,
137 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[U], ParseError>) -> ()' to type '(Result<[U], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
138 | }
139 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/Query+async.swift:151:53: warning: converting a value of type '(__shared sending Result<([T], Int), ParseError>) -> ()' to type '(Result<([T], Int), ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
149 | try await withCheckedThrowingContinuation { continuation in
150 | self.withCount(options: options,
151 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<([T], Int), ParseError>) -> ()' to type '(Result<([T], Int), ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
152 | }
153 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/Query+async.swift:174:60: warning: converting a value of type '(__shared sending Result<[U], ParseError>) -> ()' to type '(Result<[U], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
172 | self.withCountExplain(usingMongoDB: usingMongoDB,
173 | options: options,
174 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[U], ParseError>) -> ()' to type '(Result<[U], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
175 | }
176 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/Query+async.swift:193:53: warning: converting a value of type '(__shared sending Result<[T], ParseError>) -> ()' to type '(Result<[T], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
191 | self.aggregate(pipeline,
192 | options: options,
193 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[T], ParseError>) -> ()' to type '(Result<[T], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
194 | }
195 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/Query+async.swift:222:60: warning: converting a value of type '(__shared sending Result<[U], ParseError>) -> ()' to type '(Result<[U], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
220 | usingMongoDB: usingMongoDB,
221 | options: options,
222 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[U], ParseError>) -> ()' to type '(Result<[U], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
223 | }
224 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/Query+async.swift:241:52: warning: converting a value of type '(__shared sending Result<[T], ParseError>) -> ()' to type '(Result<[T], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
239 | self.distinct(key,
240 | options: options,
241 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[T], ParseError>) -> ()' to type '(Result<[T], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
242 | }
243 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/Query+async.swift:270:59: warning: converting a value of type '(__shared sending Result<[U], ParseError>) -> ()' to type '(Result<[U], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
268 | usingMongoDB: usingMongoDB,
269 | options: options,
270 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[U], ParseError>) -> ()' to type '(Result<[U], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
271 | }
272 | }
[198/202] Compiling ParseSwift Query.swift
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/ParseSchema+async.swift:27:49: warning: converting a value of type '(__shared sending Result<ParseSchema<SchemaObject>, ParseError>) -> ()' to type '(Result<ParseSchema<SchemaObject>, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
25 | try await withCheckedThrowingContinuation { continuation in
26 | self.fetch(options: options,
27 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<ParseSchema<SchemaObject>, ParseError>) -> ()' to type '(Result<ParseSchema<SchemaObject>, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
28 | }
29 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/ParseSchema+async.swift:45:50: warning: converting a value of type '(__shared sending Result<ParseSchema<SchemaObject>, ParseError>) -> ()' to type '(Result<ParseSchema<SchemaObject>, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
43 | try await withCheckedThrowingContinuation { continuation in
44 | self.create(options: options,
45 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<ParseSchema<SchemaObject>, ParseError>) -> ()' to type '(Result<ParseSchema<SchemaObject>, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
46 | }
47 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/ParseSchema+async.swift:63:50: warning: converting a value of type '(__shared sending Result<ParseSchema<SchemaObject>, ParseError>) -> ()' to type '(Result<ParseSchema<SchemaObject>, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
61 | try await withCheckedThrowingContinuation { continuation in
62 | self.update(options: options,
63 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<ParseSchema<SchemaObject>, ParseError>) -> ()' to type '(Result<ParseSchema<SchemaObject>, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
64 | }
65 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/ParseSchema+async.swift:82:50: warning: converting a value of type '(sending Result<Void, ParseError>) -> ()' to type '(Result<Void, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
80 | let result = try await withCheckedThrowingContinuation { continuation in
81 | self.purge(options: options,
82 | completion: continuation.resume)
| |- warning: converting a value of type '(sending Result<Void, ParseError>) -> ()' to type '(Result<Void, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
83 | }
84 | if case let .failure(error) = result {
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/ParseSchema+async.swift:105:50: warning: converting a value of type '(sending Result<Void, ParseError>) -> ()' to type '(Result<Void, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
103 | let result = try await withCheckedThrowingContinuation { continuation in
104 | self.delete(options: options,
105 | completion: continuation.resume)
| |- warning: converting a value of type '(sending Result<Void, ParseError>) -> ()' to type '(Result<Void, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
106 | }
107 | if case let .failure(error) = result {
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/ParseServer+async.swift:29:50: warning: converting a value of type '(__shared sending Result<ParseServer.Status, ParseError>) -> ()' to type '(Result<ParseServer.Status, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
27 | Self.health(options: options,
28 | allowIntermediateResponses: false,
29 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<ParseServer.Status, ParseError>) -> ()' to type '(Result<ParseServer.Status, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
30 | }
31 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/ParseServer+async.swift:60:55: warning: converting a value of type '(__shared sending Result<ParseServer.Information, ParseError>) -> ()' to type '(Result<ParseServer.Information, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
58 | try await withCheckedThrowingContinuation { continuation in
59 | Self.information(options: options,
60 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<ParseServer.Information, ParseError>) -> ()' to type '(Result<ParseServer.Information, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
61 | }
62 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/Pointer+async.swift:28:49: warning: converting a value of type '(__shared sending Result<Pointer<T>.Object, ParseError>) -> ()' (aka '(__shared sending Result<T, ParseError>) -> ()') to type '(Result<Pointer<T>.Object, ParseError>) -> Void' (aka '(Result<T, ParseError>) -> ()') risks causing data races; this is an error in the Swift 6 language mode
26 | self.fetch(includeKeys: includeKeys,
27 | options: options,
28 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<Pointer<T>.Object, ParseError>) -> ()' (aka '(__shared sending Result<T, ParseError>) -> ()') to type '(Result<Pointer<T>.Object, ParseError>) -> Void' (aka '(Result<T, ParseError>) -> ()') risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
29 | }
30 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/Query+async.swift:24:48: warning: converting a value of type '(__shared sending Result<[T], ParseError>) -> ()' to type '(Result<[T], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
22 | try await withCheckedThrowingContinuation { continuation in
23 | self.find(options: options,
24 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[T], ParseError>) -> ()' to type '(Result<[T], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
25 | }
26 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/Query+async.swift:47:55: warning: converting a value of type '(__shared sending Result<[U], ParseError>) -> ()' to type '(Result<[U], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
45 | self.findExplain(usingMongoDB: usingMongoDB,
46 | options: options,
47 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[U], ParseError>) -> ()' to type '(Result<[U], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
48 | }
49 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/Query+async.swift:65:51: warning: converting a value of type '(__shared sending Result<[T], ParseError>) -> ()' to type '(Result<[T], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
63 | self.findAll(batchLimit: batchLimit,
64 | options: options,
65 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[T], ParseError>) -> ()' to type '(Result<[T], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
66 | }
67 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/Query+async.swift:78:49: warning: converting a value of type '(__shared sending Result<T, ParseError>) -> ()' to type '(Result<T, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
76 | try await withCheckedThrowingContinuation { continuation in
77 | self.first(options: options,
78 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<T, ParseError>) -> ()' to type '(Result<T, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
79 | }
80 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/Query+async.swift:101:56: warning: converting a value of type '(__shared sending Result<U, ParseError>) -> ()' to type '(Result<U, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
99 | self.firstExplain(usingMongoDB: usingMongoDB,
100 | options: options,
101 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<U, ParseError>) -> ()' to type '(Result<U, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
102 | }
103 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/Query+async.swift:114:49: warning: converting a value of type '(__shared sending Result<Int, ParseError>) -> ()' to type '(Result<Int, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
112 | try await withCheckedThrowingContinuation { continuation in
113 | self.count(options: options,
114 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<Int, ParseError>) -> ()' to type '(Result<Int, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
115 | }
116 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/Query+async.swift:137:56: warning: converting a value of type '(__shared sending Result<[U], ParseError>) -> ()' to type '(Result<[U], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
135 | self.countExplain(usingMongoDB: usingMongoDB,
136 | options: options,
137 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[U], ParseError>) -> ()' to type '(Result<[U], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
138 | }
139 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/Query+async.swift:151:53: warning: converting a value of type '(__shared sending Result<([T], Int), ParseError>) -> ()' to type '(Result<([T], Int), ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
149 | try await withCheckedThrowingContinuation { continuation in
150 | self.withCount(options: options,
151 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<([T], Int), ParseError>) -> ()' to type '(Result<([T], Int), ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
152 | }
153 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/Query+async.swift:174:60: warning: converting a value of type '(__shared sending Result<[U], ParseError>) -> ()' to type '(Result<[U], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
172 | self.withCountExplain(usingMongoDB: usingMongoDB,
173 | options: options,
174 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[U], ParseError>) -> ()' to type '(Result<[U], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
175 | }
176 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/Query+async.swift:193:53: warning: converting a value of type '(__shared sending Result<[T], ParseError>) -> ()' to type '(Result<[T], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
191 | self.aggregate(pipeline,
192 | options: options,
193 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[T], ParseError>) -> ()' to type '(Result<[T], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
194 | }
195 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/Query+async.swift:222:60: warning: converting a value of type '(__shared sending Result<[U], ParseError>) -> ()' to type '(Result<[U], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
220 | usingMongoDB: usingMongoDB,
221 | options: options,
222 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[U], ParseError>) -> ()' to type '(Result<[U], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
223 | }
224 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/Query+async.swift:241:52: warning: converting a value of type '(__shared sending Result<[T], ParseError>) -> ()' to type '(Result<[T], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
239 | self.distinct(key,
240 | options: options,
241 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[T], ParseError>) -> ()' to type '(Result<[T], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
242 | }
243 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/Query+async.swift:270:59: warning: converting a value of type '(__shared sending Result<[U], ParseError>) -> ()' to type '(Result<[U], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
268 | usingMongoDB: usingMongoDB,
269 | options: options,
270 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[U], ParseError>) -> ()' to type '(Result<[U], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
271 | }
272 | }
[199/202] Compiling ParseSwift QueryConstraint.swift
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/ParseSchema+async.swift:27:49: warning: converting a value of type '(__shared sending Result<ParseSchema<SchemaObject>, ParseError>) -> ()' to type '(Result<ParseSchema<SchemaObject>, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
25 | try await withCheckedThrowingContinuation { continuation in
26 | self.fetch(options: options,
27 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<ParseSchema<SchemaObject>, ParseError>) -> ()' to type '(Result<ParseSchema<SchemaObject>, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
28 | }
29 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/ParseSchema+async.swift:45:50: warning: converting a value of type '(__shared sending Result<ParseSchema<SchemaObject>, ParseError>) -> ()' to type '(Result<ParseSchema<SchemaObject>, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
43 | try await withCheckedThrowingContinuation { continuation in
44 | self.create(options: options,
45 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<ParseSchema<SchemaObject>, ParseError>) -> ()' to type '(Result<ParseSchema<SchemaObject>, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
46 | }
47 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/ParseSchema+async.swift:63:50: warning: converting a value of type '(__shared sending Result<ParseSchema<SchemaObject>, ParseError>) -> ()' to type '(Result<ParseSchema<SchemaObject>, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
61 | try await withCheckedThrowingContinuation { continuation in
62 | self.update(options: options,
63 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<ParseSchema<SchemaObject>, ParseError>) -> ()' to type '(Result<ParseSchema<SchemaObject>, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
64 | }
65 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/ParseSchema+async.swift:82:50: warning: converting a value of type '(sending Result<Void, ParseError>) -> ()' to type '(Result<Void, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
80 | let result = try await withCheckedThrowingContinuation { continuation in
81 | self.purge(options: options,
82 | completion: continuation.resume)
| |- warning: converting a value of type '(sending Result<Void, ParseError>) -> ()' to type '(Result<Void, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
83 | }
84 | if case let .failure(error) = result {
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/ParseSchema+async.swift:105:50: warning: converting a value of type '(sending Result<Void, ParseError>) -> ()' to type '(Result<Void, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
103 | let result = try await withCheckedThrowingContinuation { continuation in
104 | self.delete(options: options,
105 | completion: continuation.resume)
| |- warning: converting a value of type '(sending Result<Void, ParseError>) -> ()' to type '(Result<Void, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
106 | }
107 | if case let .failure(error) = result {
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/ParseServer+async.swift:29:50: warning: converting a value of type '(__shared sending Result<ParseServer.Status, ParseError>) -> ()' to type '(Result<ParseServer.Status, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
27 | Self.health(options: options,
28 | allowIntermediateResponses: false,
29 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<ParseServer.Status, ParseError>) -> ()' to type '(Result<ParseServer.Status, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
30 | }
31 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/ParseServer+async.swift:60:55: warning: converting a value of type '(__shared sending Result<ParseServer.Information, ParseError>) -> ()' to type '(Result<ParseServer.Information, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
58 | try await withCheckedThrowingContinuation { continuation in
59 | Self.information(options: options,
60 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<ParseServer.Information, ParseError>) -> ()' to type '(Result<ParseServer.Information, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
61 | }
62 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/Pointer+async.swift:28:49: warning: converting a value of type '(__shared sending Result<Pointer<T>.Object, ParseError>) -> ()' (aka '(__shared sending Result<T, ParseError>) -> ()') to type '(Result<Pointer<T>.Object, ParseError>) -> Void' (aka '(Result<T, ParseError>) -> ()') risks causing data races; this is an error in the Swift 6 language mode
26 | self.fetch(includeKeys: includeKeys,
27 | options: options,
28 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<Pointer<T>.Object, ParseError>) -> ()' (aka '(__shared sending Result<T, ParseError>) -> ()') to type '(Result<Pointer<T>.Object, ParseError>) -> Void' (aka '(Result<T, ParseError>) -> ()') risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
29 | }
30 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/Query+async.swift:24:48: warning: converting a value of type '(__shared sending Result<[T], ParseError>) -> ()' to type '(Result<[T], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
22 | try await withCheckedThrowingContinuation { continuation in
23 | self.find(options: options,
24 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[T], ParseError>) -> ()' to type '(Result<[T], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
25 | }
26 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/Query+async.swift:47:55: warning: converting a value of type '(__shared sending Result<[U], ParseError>) -> ()' to type '(Result<[U], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
45 | self.findExplain(usingMongoDB: usingMongoDB,
46 | options: options,
47 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[U], ParseError>) -> ()' to type '(Result<[U], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
48 | }
49 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/Query+async.swift:65:51: warning: converting a value of type '(__shared sending Result<[T], ParseError>) -> ()' to type '(Result<[T], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
63 | self.findAll(batchLimit: batchLimit,
64 | options: options,
65 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[T], ParseError>) -> ()' to type '(Result<[T], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
66 | }
67 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/Query+async.swift:78:49: warning: converting a value of type '(__shared sending Result<T, ParseError>) -> ()' to type '(Result<T, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
76 | try await withCheckedThrowingContinuation { continuation in
77 | self.first(options: options,
78 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<T, ParseError>) -> ()' to type '(Result<T, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
79 | }
80 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/Query+async.swift:101:56: warning: converting a value of type '(__shared sending Result<U, ParseError>) -> ()' to type '(Result<U, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
99 | self.firstExplain(usingMongoDB: usingMongoDB,
100 | options: options,
101 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<U, ParseError>) -> ()' to type '(Result<U, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
102 | }
103 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/Query+async.swift:114:49: warning: converting a value of type '(__shared sending Result<Int, ParseError>) -> ()' to type '(Result<Int, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
112 | try await withCheckedThrowingContinuation { continuation in
113 | self.count(options: options,
114 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<Int, ParseError>) -> ()' to type '(Result<Int, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
115 | }
116 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/Query+async.swift:137:56: warning: converting a value of type '(__shared sending Result<[U], ParseError>) -> ()' to type '(Result<[U], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
135 | self.countExplain(usingMongoDB: usingMongoDB,
136 | options: options,
137 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[U], ParseError>) -> ()' to type '(Result<[U], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
138 | }
139 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/Query+async.swift:151:53: warning: converting a value of type '(__shared sending Result<([T], Int), ParseError>) -> ()' to type '(Result<([T], Int), ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
149 | try await withCheckedThrowingContinuation { continuation in
150 | self.withCount(options: options,
151 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<([T], Int), ParseError>) -> ()' to type '(Result<([T], Int), ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
152 | }
153 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/Query+async.swift:174:60: warning: converting a value of type '(__shared sending Result<[U], ParseError>) -> ()' to type '(Result<[U], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
172 | self.withCountExplain(usingMongoDB: usingMongoDB,
173 | options: options,
174 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[U], ParseError>) -> ()' to type '(Result<[U], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
175 | }
176 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/Query+async.swift:193:53: warning: converting a value of type '(__shared sending Result<[T], ParseError>) -> ()' to type '(Result<[T], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
191 | self.aggregate(pipeline,
192 | options: options,
193 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[T], ParseError>) -> ()' to type '(Result<[T], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
194 | }
195 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/Query+async.swift:222:60: warning: converting a value of type '(__shared sending Result<[U], ParseError>) -> ()' to type '(Result<[U], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
220 | usingMongoDB: usingMongoDB,
221 | options: options,
222 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[U], ParseError>) -> ()' to type '(Result<[U], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
223 | }
224 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/Query+async.swift:241:52: warning: converting a value of type '(__shared sending Result<[T], ParseError>) -> ()' to type '(Result<[T], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
239 | self.distinct(key,
240 | options: options,
241 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[T], ParseError>) -> ()' to type '(Result<[T], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
242 | }
243 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/Query+async.swift:270:59: warning: converting a value of type '(__shared sending Result<[U], ParseError>) -> ()' to type '(Result<[U], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
268 | usingMongoDB: usingMongoDB,
269 | options: options,
270 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[U], ParseError>) -> ()' to type '(Result<[U], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
271 | }
272 | }
[200/202] Compiling ParseSwift QueryViewModel.swift
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/ParseSchema+async.swift:27:49: warning: converting a value of type '(__shared sending Result<ParseSchema<SchemaObject>, ParseError>) -> ()' to type '(Result<ParseSchema<SchemaObject>, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
25 | try await withCheckedThrowingContinuation { continuation in
26 | self.fetch(options: options,
27 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<ParseSchema<SchemaObject>, ParseError>) -> ()' to type '(Result<ParseSchema<SchemaObject>, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
28 | }
29 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/ParseSchema+async.swift:45:50: warning: converting a value of type '(__shared sending Result<ParseSchema<SchemaObject>, ParseError>) -> ()' to type '(Result<ParseSchema<SchemaObject>, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
43 | try await withCheckedThrowingContinuation { continuation in
44 | self.create(options: options,
45 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<ParseSchema<SchemaObject>, ParseError>) -> ()' to type '(Result<ParseSchema<SchemaObject>, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
46 | }
47 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/ParseSchema+async.swift:63:50: warning: converting a value of type '(__shared sending Result<ParseSchema<SchemaObject>, ParseError>) -> ()' to type '(Result<ParseSchema<SchemaObject>, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
61 | try await withCheckedThrowingContinuation { continuation in
62 | self.update(options: options,
63 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<ParseSchema<SchemaObject>, ParseError>) -> ()' to type '(Result<ParseSchema<SchemaObject>, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
64 | }
65 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/ParseSchema+async.swift:82:50: warning: converting a value of type '(sending Result<Void, ParseError>) -> ()' to type '(Result<Void, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
80 | let result = try await withCheckedThrowingContinuation { continuation in
81 | self.purge(options: options,
82 | completion: continuation.resume)
| |- warning: converting a value of type '(sending Result<Void, ParseError>) -> ()' to type '(Result<Void, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
83 | }
84 | if case let .failure(error) = result {
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/ParseSchema+async.swift:105:50: warning: converting a value of type '(sending Result<Void, ParseError>) -> ()' to type '(Result<Void, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
103 | let result = try await withCheckedThrowingContinuation { continuation in
104 | self.delete(options: options,
105 | completion: continuation.resume)
| |- warning: converting a value of type '(sending Result<Void, ParseError>) -> ()' to type '(Result<Void, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
106 | }
107 | if case let .failure(error) = result {
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/ParseServer+async.swift:29:50: warning: converting a value of type '(__shared sending Result<ParseServer.Status, ParseError>) -> ()' to type '(Result<ParseServer.Status, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
27 | Self.health(options: options,
28 | allowIntermediateResponses: false,
29 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<ParseServer.Status, ParseError>) -> ()' to type '(Result<ParseServer.Status, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
30 | }
31 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/ParseServer+async.swift:60:55: warning: converting a value of type '(__shared sending Result<ParseServer.Information, ParseError>) -> ()' to type '(Result<ParseServer.Information, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
58 | try await withCheckedThrowingContinuation { continuation in
59 | Self.information(options: options,
60 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<ParseServer.Information, ParseError>) -> ()' to type '(Result<ParseServer.Information, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
61 | }
62 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/Pointer+async.swift:28:49: warning: converting a value of type '(__shared sending Result<Pointer<T>.Object, ParseError>) -> ()' (aka '(__shared sending Result<T, ParseError>) -> ()') to type '(Result<Pointer<T>.Object, ParseError>) -> Void' (aka '(Result<T, ParseError>) -> ()') risks causing data races; this is an error in the Swift 6 language mode
26 | self.fetch(includeKeys: includeKeys,
27 | options: options,
28 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<Pointer<T>.Object, ParseError>) -> ()' (aka '(__shared sending Result<T, ParseError>) -> ()') to type '(Result<Pointer<T>.Object, ParseError>) -> Void' (aka '(Result<T, ParseError>) -> ()') risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
29 | }
30 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/Query+async.swift:24:48: warning: converting a value of type '(__shared sending Result<[T], ParseError>) -> ()' to type '(Result<[T], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
22 | try await withCheckedThrowingContinuation { continuation in
23 | self.find(options: options,
24 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[T], ParseError>) -> ()' to type '(Result<[T], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
25 | }
26 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/Query+async.swift:47:55: warning: converting a value of type '(__shared sending Result<[U], ParseError>) -> ()' to type '(Result<[U], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
45 | self.findExplain(usingMongoDB: usingMongoDB,
46 | options: options,
47 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[U], ParseError>) -> ()' to type '(Result<[U], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
48 | }
49 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/Query+async.swift:65:51: warning: converting a value of type '(__shared sending Result<[T], ParseError>) -> ()' to type '(Result<[T], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
63 | self.findAll(batchLimit: batchLimit,
64 | options: options,
65 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[T], ParseError>) -> ()' to type '(Result<[T], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
66 | }
67 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/Query+async.swift:78:49: warning: converting a value of type '(__shared sending Result<T, ParseError>) -> ()' to type '(Result<T, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
76 | try await withCheckedThrowingContinuation { continuation in
77 | self.first(options: options,
78 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<T, ParseError>) -> ()' to type '(Result<T, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
79 | }
80 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/Query+async.swift:101:56: warning: converting a value of type '(__shared sending Result<U, ParseError>) -> ()' to type '(Result<U, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
99 | self.firstExplain(usingMongoDB: usingMongoDB,
100 | options: options,
101 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<U, ParseError>) -> ()' to type '(Result<U, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
102 | }
103 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/Query+async.swift:114:49: warning: converting a value of type '(__shared sending Result<Int, ParseError>) -> ()' to type '(Result<Int, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
112 | try await withCheckedThrowingContinuation { continuation in
113 | self.count(options: options,
114 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<Int, ParseError>) -> ()' to type '(Result<Int, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
115 | }
116 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/Query+async.swift:137:56: warning: converting a value of type '(__shared sending Result<[U], ParseError>) -> ()' to type '(Result<[U], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
135 | self.countExplain(usingMongoDB: usingMongoDB,
136 | options: options,
137 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[U], ParseError>) -> ()' to type '(Result<[U], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
138 | }
139 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/Query+async.swift:151:53: warning: converting a value of type '(__shared sending Result<([T], Int), ParseError>) -> ()' to type '(Result<([T], Int), ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
149 | try await withCheckedThrowingContinuation { continuation in
150 | self.withCount(options: options,
151 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<([T], Int), ParseError>) -> ()' to type '(Result<([T], Int), ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
152 | }
153 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/Query+async.swift:174:60: warning: converting a value of type '(__shared sending Result<[U], ParseError>) -> ()' to type '(Result<[U], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
172 | self.withCountExplain(usingMongoDB: usingMongoDB,
173 | options: options,
174 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[U], ParseError>) -> ()' to type '(Result<[U], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
175 | }
176 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/Query+async.swift:193:53: warning: converting a value of type '(__shared sending Result<[T], ParseError>) -> ()' to type '(Result<[T], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
191 | self.aggregate(pipeline,
192 | options: options,
193 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[T], ParseError>) -> ()' to type '(Result<[T], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
194 | }
195 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/Query+async.swift:222:60: warning: converting a value of type '(__shared sending Result<[U], ParseError>) -> ()' to type '(Result<[U], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
220 | usingMongoDB: usingMongoDB,
221 | options: options,
222 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[U], ParseError>) -> ()' to type '(Result<[U], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
223 | }
224 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/Query+async.swift:241:52: warning: converting a value of type '(__shared sending Result<[T], ParseError>) -> ()' to type '(Result<[T], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
239 | self.distinct(key,
240 | options: options,
241 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[T], ParseError>) -> ()' to type '(Result<[T], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
242 | }
243 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/Query+async.swift:270:59: warning: converting a value of type '(__shared sending Result<[U], ParseError>) -> ()' to type '(Result<[U], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
268 | usingMongoDB: usingMongoDB,
269 | options: options,
270 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[U], ParseError>) -> ()' to type '(Result<[U], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
271 | }
272 | }
[201/202] Compiling ParseSwift QueryWhere.swift
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/ParseSchema+async.swift:27:49: warning: converting a value of type '(__shared sending Result<ParseSchema<SchemaObject>, ParseError>) -> ()' to type '(Result<ParseSchema<SchemaObject>, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
25 | try await withCheckedThrowingContinuation { continuation in
26 | self.fetch(options: options,
27 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<ParseSchema<SchemaObject>, ParseError>) -> ()' to type '(Result<ParseSchema<SchemaObject>, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
28 | }
29 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/ParseSchema+async.swift:45:50: warning: converting a value of type '(__shared sending Result<ParseSchema<SchemaObject>, ParseError>) -> ()' to type '(Result<ParseSchema<SchemaObject>, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
43 | try await withCheckedThrowingContinuation { continuation in
44 | self.create(options: options,
45 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<ParseSchema<SchemaObject>, ParseError>) -> ()' to type '(Result<ParseSchema<SchemaObject>, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
46 | }
47 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/ParseSchema+async.swift:63:50: warning: converting a value of type '(__shared sending Result<ParseSchema<SchemaObject>, ParseError>) -> ()' to type '(Result<ParseSchema<SchemaObject>, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
61 | try await withCheckedThrowingContinuation { continuation in
62 | self.update(options: options,
63 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<ParseSchema<SchemaObject>, ParseError>) -> ()' to type '(Result<ParseSchema<SchemaObject>, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
64 | }
65 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/ParseSchema+async.swift:82:50: warning: converting a value of type '(sending Result<Void, ParseError>) -> ()' to type '(Result<Void, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
80 | let result = try await withCheckedThrowingContinuation { continuation in
81 | self.purge(options: options,
82 | completion: continuation.resume)
| |- warning: converting a value of type '(sending Result<Void, ParseError>) -> ()' to type '(Result<Void, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
83 | }
84 | if case let .failure(error) = result {
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/ParseSchema+async.swift:105:50: warning: converting a value of type '(sending Result<Void, ParseError>) -> ()' to type '(Result<Void, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
103 | let result = try await withCheckedThrowingContinuation { continuation in
104 | self.delete(options: options,
105 | completion: continuation.resume)
| |- warning: converting a value of type '(sending Result<Void, ParseError>) -> ()' to type '(Result<Void, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
106 | }
107 | if case let .failure(error) = result {
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/ParseServer+async.swift:29:50: warning: converting a value of type '(__shared sending Result<ParseServer.Status, ParseError>) -> ()' to type '(Result<ParseServer.Status, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
27 | Self.health(options: options,
28 | allowIntermediateResponses: false,
29 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<ParseServer.Status, ParseError>) -> ()' to type '(Result<ParseServer.Status, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
30 | }
31 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/ParseServer+async.swift:60:55: warning: converting a value of type '(__shared sending Result<ParseServer.Information, ParseError>) -> ()' to type '(Result<ParseServer.Information, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
58 | try await withCheckedThrowingContinuation { continuation in
59 | Self.information(options: options,
60 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<ParseServer.Information, ParseError>) -> ()' to type '(Result<ParseServer.Information, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
61 | }
62 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/Pointer+async.swift:28:49: warning: converting a value of type '(__shared sending Result<Pointer<T>.Object, ParseError>) -> ()' (aka '(__shared sending Result<T, ParseError>) -> ()') to type '(Result<Pointer<T>.Object, ParseError>) -> Void' (aka '(Result<T, ParseError>) -> ()') risks causing data races; this is an error in the Swift 6 language mode
26 | self.fetch(includeKeys: includeKeys,
27 | options: options,
28 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<Pointer<T>.Object, ParseError>) -> ()' (aka '(__shared sending Result<T, ParseError>) -> ()') to type '(Result<Pointer<T>.Object, ParseError>) -> Void' (aka '(Result<T, ParseError>) -> ()') risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
29 | }
30 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/Query+async.swift:24:48: warning: converting a value of type '(__shared sending Result<[T], ParseError>) -> ()' to type '(Result<[T], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
22 | try await withCheckedThrowingContinuation { continuation in
23 | self.find(options: options,
24 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[T], ParseError>) -> ()' to type '(Result<[T], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
25 | }
26 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/Query+async.swift:47:55: warning: converting a value of type '(__shared sending Result<[U], ParseError>) -> ()' to type '(Result<[U], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
45 | self.findExplain(usingMongoDB: usingMongoDB,
46 | options: options,
47 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[U], ParseError>) -> ()' to type '(Result<[U], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
48 | }
49 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/Query+async.swift:65:51: warning: converting a value of type '(__shared sending Result<[T], ParseError>) -> ()' to type '(Result<[T], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
63 | self.findAll(batchLimit: batchLimit,
64 | options: options,
65 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[T], ParseError>) -> ()' to type '(Result<[T], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
66 | }
67 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/Query+async.swift:78:49: warning: converting a value of type '(__shared sending Result<T, ParseError>) -> ()' to type '(Result<T, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
76 | try await withCheckedThrowingContinuation { continuation in
77 | self.first(options: options,
78 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<T, ParseError>) -> ()' to type '(Result<T, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
79 | }
80 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/Query+async.swift:101:56: warning: converting a value of type '(__shared sending Result<U, ParseError>) -> ()' to type '(Result<U, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
99 | self.firstExplain(usingMongoDB: usingMongoDB,
100 | options: options,
101 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<U, ParseError>) -> ()' to type '(Result<U, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
102 | }
103 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/Query+async.swift:114:49: warning: converting a value of type '(__shared sending Result<Int, ParseError>) -> ()' to type '(Result<Int, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
112 | try await withCheckedThrowingContinuation { continuation in
113 | self.count(options: options,
114 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<Int, ParseError>) -> ()' to type '(Result<Int, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
115 | }
116 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/Query+async.swift:137:56: warning: converting a value of type '(__shared sending Result<[U], ParseError>) -> ()' to type '(Result<[U], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
135 | self.countExplain(usingMongoDB: usingMongoDB,
136 | options: options,
137 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[U], ParseError>) -> ()' to type '(Result<[U], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
138 | }
139 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/Query+async.swift:151:53: warning: converting a value of type '(__shared sending Result<([T], Int), ParseError>) -> ()' to type '(Result<([T], Int), ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
149 | try await withCheckedThrowingContinuation { continuation in
150 | self.withCount(options: options,
151 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<([T], Int), ParseError>) -> ()' to type '(Result<([T], Int), ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
152 | }
153 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/Query+async.swift:174:60: warning: converting a value of type '(__shared sending Result<[U], ParseError>) -> ()' to type '(Result<[U], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
172 | self.withCountExplain(usingMongoDB: usingMongoDB,
173 | options: options,
174 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[U], ParseError>) -> ()' to type '(Result<[U], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
175 | }
176 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/Query+async.swift:193:53: warning: converting a value of type '(__shared sending Result<[T], ParseError>) -> ()' to type '(Result<[T], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
191 | self.aggregate(pipeline,
192 | options: options,
193 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[T], ParseError>) -> ()' to type '(Result<[T], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
194 | }
195 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/Query+async.swift:222:60: warning: converting a value of type '(__shared sending Result<[U], ParseError>) -> ()' to type '(Result<[U], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
220 | usingMongoDB: usingMongoDB,
221 | options: options,
222 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[U], ParseError>) -> ()' to type '(Result<[U], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
223 | }
224 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/Query+async.swift:241:52: warning: converting a value of type '(__shared sending Result<[T], ParseError>) -> ()' to type '(Result<[T], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
239 | self.distinct(key,
240 | options: options,
241 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[T], ParseError>) -> ()' to type '(Result<[T], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
242 | }
243 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/Query+async.swift:270:59: warning: converting a value of type '(__shared sending Result<[U], ParseError>) -> ()' to type '(Result<[U], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
268 | usingMongoDB: usingMongoDB,
269 | options: options,
270 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[U], ParseError>) -> ()' to type '(Result<[U], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
271 | }
272 | }
[202/202] Compiling ParseSwift Utility.swift
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/ParseSchema+async.swift:27:49: warning: converting a value of type '(__shared sending Result<ParseSchema<SchemaObject>, ParseError>) -> ()' to type '(Result<ParseSchema<SchemaObject>, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
25 | try await withCheckedThrowingContinuation { continuation in
26 | self.fetch(options: options,
27 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<ParseSchema<SchemaObject>, ParseError>) -> ()' to type '(Result<ParseSchema<SchemaObject>, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
28 | }
29 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/ParseSchema+async.swift:45:50: warning: converting a value of type '(__shared sending Result<ParseSchema<SchemaObject>, ParseError>) -> ()' to type '(Result<ParseSchema<SchemaObject>, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
43 | try await withCheckedThrowingContinuation { continuation in
44 | self.create(options: options,
45 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<ParseSchema<SchemaObject>, ParseError>) -> ()' to type '(Result<ParseSchema<SchemaObject>, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
46 | }
47 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/ParseSchema+async.swift:63:50: warning: converting a value of type '(__shared sending Result<ParseSchema<SchemaObject>, ParseError>) -> ()' to type '(Result<ParseSchema<SchemaObject>, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
61 | try await withCheckedThrowingContinuation { continuation in
62 | self.update(options: options,
63 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<ParseSchema<SchemaObject>, ParseError>) -> ()' to type '(Result<ParseSchema<SchemaObject>, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
64 | }
65 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/ParseSchema+async.swift:82:50: warning: converting a value of type '(sending Result<Void, ParseError>) -> ()' to type '(Result<Void, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
80 | let result = try await withCheckedThrowingContinuation { continuation in
81 | self.purge(options: options,
82 | completion: continuation.resume)
| |- warning: converting a value of type '(sending Result<Void, ParseError>) -> ()' to type '(Result<Void, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
83 | }
84 | if case let .failure(error) = result {
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/ParseSchema+async.swift:105:50: warning: converting a value of type '(sending Result<Void, ParseError>) -> ()' to type '(Result<Void, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
103 | let result = try await withCheckedThrowingContinuation { continuation in
104 | self.delete(options: options,
105 | completion: continuation.resume)
| |- warning: converting a value of type '(sending Result<Void, ParseError>) -> ()' to type '(Result<Void, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
106 | }
107 | if case let .failure(error) = result {
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/ParseServer+async.swift:29:50: warning: converting a value of type '(__shared sending Result<ParseServer.Status, ParseError>) -> ()' to type '(Result<ParseServer.Status, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
27 | Self.health(options: options,
28 | allowIntermediateResponses: false,
29 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<ParseServer.Status, ParseError>) -> ()' to type '(Result<ParseServer.Status, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
30 | }
31 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/ParseServer+async.swift:60:55: warning: converting a value of type '(__shared sending Result<ParseServer.Information, ParseError>) -> ()' to type '(Result<ParseServer.Information, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
58 | try await withCheckedThrowingContinuation { continuation in
59 | Self.information(options: options,
60 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<ParseServer.Information, ParseError>) -> ()' to type '(Result<ParseServer.Information, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
61 | }
62 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/Pointer+async.swift:28:49: warning: converting a value of type '(__shared sending Result<Pointer<T>.Object, ParseError>) -> ()' (aka '(__shared sending Result<T, ParseError>) -> ()') to type '(Result<Pointer<T>.Object, ParseError>) -> Void' (aka '(Result<T, ParseError>) -> ()') risks causing data races; this is an error in the Swift 6 language mode
26 | self.fetch(includeKeys: includeKeys,
27 | options: options,
28 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<Pointer<T>.Object, ParseError>) -> ()' (aka '(__shared sending Result<T, ParseError>) -> ()') to type '(Result<Pointer<T>.Object, ParseError>) -> Void' (aka '(Result<T, ParseError>) -> ()') risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
29 | }
30 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/Query+async.swift:24:48: warning: converting a value of type '(__shared sending Result<[T], ParseError>) -> ()' to type '(Result<[T], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
22 | try await withCheckedThrowingContinuation { continuation in
23 | self.find(options: options,
24 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[T], ParseError>) -> ()' to type '(Result<[T], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
25 | }
26 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/Query+async.swift:47:55: warning: converting a value of type '(__shared sending Result<[U], ParseError>) -> ()' to type '(Result<[U], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
45 | self.findExplain(usingMongoDB: usingMongoDB,
46 | options: options,
47 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[U], ParseError>) -> ()' to type '(Result<[U], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
48 | }
49 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/Query+async.swift:65:51: warning: converting a value of type '(__shared sending Result<[T], ParseError>) -> ()' to type '(Result<[T], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
63 | self.findAll(batchLimit: batchLimit,
64 | options: options,
65 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[T], ParseError>) -> ()' to type '(Result<[T], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
66 | }
67 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/Query+async.swift:78:49: warning: converting a value of type '(__shared sending Result<T, ParseError>) -> ()' to type '(Result<T, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
76 | try await withCheckedThrowingContinuation { continuation in
77 | self.first(options: options,
78 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<T, ParseError>) -> ()' to type '(Result<T, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
79 | }
80 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/Query+async.swift:101:56: warning: converting a value of type '(__shared sending Result<U, ParseError>) -> ()' to type '(Result<U, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
99 | self.firstExplain(usingMongoDB: usingMongoDB,
100 | options: options,
101 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<U, ParseError>) -> ()' to type '(Result<U, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
102 | }
103 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/Query+async.swift:114:49: warning: converting a value of type '(__shared sending Result<Int, ParseError>) -> ()' to type '(Result<Int, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
112 | try await withCheckedThrowingContinuation { continuation in
113 | self.count(options: options,
114 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<Int, ParseError>) -> ()' to type '(Result<Int, ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
115 | }
116 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/Query+async.swift:137:56: warning: converting a value of type '(__shared sending Result<[U], ParseError>) -> ()' to type '(Result<[U], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
135 | self.countExplain(usingMongoDB: usingMongoDB,
136 | options: options,
137 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[U], ParseError>) -> ()' to type '(Result<[U], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
138 | }
139 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/Query+async.swift:151:53: warning: converting a value of type '(__shared sending Result<([T], Int), ParseError>) -> ()' to type '(Result<([T], Int), ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
149 | try await withCheckedThrowingContinuation { continuation in
150 | self.withCount(options: options,
151 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<([T], Int), ParseError>) -> ()' to type '(Result<([T], Int), ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
152 | }
153 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/Query+async.swift:174:60: warning: converting a value of type '(__shared sending Result<[U], ParseError>) -> ()' to type '(Result<[U], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
172 | self.withCountExplain(usingMongoDB: usingMongoDB,
173 | options: options,
174 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[U], ParseError>) -> ()' to type '(Result<[U], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
175 | }
176 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/Query+async.swift:193:53: warning: converting a value of type '(__shared sending Result<[T], ParseError>) -> ()' to type '(Result<[T], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
191 | self.aggregate(pipeline,
192 | options: options,
193 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[T], ParseError>) -> ()' to type '(Result<[T], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
194 | }
195 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/Query+async.swift:222:60: warning: converting a value of type '(__shared sending Result<[U], ParseError>) -> ()' to type '(Result<[U], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
220 | usingMongoDB: usingMongoDB,
221 | options: options,
222 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[U], ParseError>) -> ()' to type '(Result<[U], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
223 | }
224 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/Query+async.swift:241:52: warning: converting a value of type '(__shared sending Result<[T], ParseError>) -> ()' to type '(Result<[T], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
239 | self.distinct(key,
240 | options: options,
241 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[T], ParseError>) -> ()' to type '(Result<[T], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
242 | }
243 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParseSwift/Types/Query+async.swift:270:59: warning: converting a value of type '(__shared sending Result<[U], ParseError>) -> ()' to type '(Result<[U], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
268 | usingMongoDB: usingMongoDB,
269 | options: options,
270 | completion: continuation.resume)
| |- warning: converting a value of type '(__shared sending Result<[U], ParseError>) -> ()' to type '(Result<[U], ParseError>) -> Void' risks causing data races; this is an error in the Swift 6 language mode
| `- note: converting a function typed value with a sending parameter to one without risks allowing actor-isolated values to escape their isolation domain as an argument to an invocation of value
271 | }
272 | }
Build complete! (4.23s)
Build complete.
{
"dependencies" : [
],
"manifest_display_name" : "ParseSwift",
"name" : "ParseSwift",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "ios",
"version" : "13.0"
},
{
"name" : "maccatalyst",
"version" : "13.0"
},
{
"name" : "macos",
"version" : "10.15"
},
{
"name" : "tvos",
"version" : "13.0"
},
{
"name" : "watchos",
"version" : "6.0"
}
],
"products" : [
{
"name" : "ParseSwift",
"targets" : [
"ParseSwift"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "ParseSwiftTests",
"module_type" : "SwiftTarget",
"name" : "ParseSwiftTests",
"path" : "Tests/ParseSwiftTests",
"sources" : [
"APICommandMultipleAttemptsTests.swift",
"APICommandTests.swift",
"AnyCodableTests/AnyCodableTests.swift",
"AnyCodableTests/AnyDecodableTests.swift",
"AnyCodableTests/AnyEncodableTests.swift",
"BatchUtilsTests.swift",
"ExtensionsTests.swift",
"IOS13Tests.swift",
"InitializeSDKTests.swift",
"KeychainStoreTests.swift",
"MigrateObjCSDKCombineTests.swift",
"MigrateObjCSDKTests.swift",
"NetworkMocking/MockURLProtocol.swift",
"NetworkMocking/MockURLResponse.swift",
"ObjectEndpointTests.swift",
"ParseACLTests.swift",
"ParseAnalyticsAsyncTests.swift",
"ParseAnalyticsCombineTests.swift",
"ParseAnalyticsTests.swift",
"ParseAnonymousAsyncTests.swift",
"ParseAnonymousCombineTests.swift",
"ParseAnonymousTests.swift",
"ParseAppleCombineTests.swift",
"ParseAppleTests.swift",
"ParseAuthenticationAsyncTests.swift",
"ParseAuthenticationCombineTests.swift",
"ParseAuthenticationTests.swift",
"ParseBytesTests.swift",
"ParseCLPTests.swift",
"ParseCloudViewModelTests.swift",
"ParseCloudableAsyncTests.swift",
"ParseCloudableCombineTests.swift",
"ParseCloudableTests.swift",
"ParseConfigAsyncTests.swift",
"ParseConfigCodableCombineTests.swift",
"ParseConfigCodableTests.swift",
"ParseConfigCombineTests.swift",
"ParseConfigTests.swift",
"ParseEncoderTests/ParseEncoderExtraTests.swift",
"ParseEncoderTests/TestParseEncoder.swift",
"ParseErrorTests.swift",
"ParseFacebookCombineTests.swift",
"ParseFacebookTests.swift",
"ParseFileAsyncTests.swift",
"ParseFileCombineTests.swift",
"ParseFileManagerTests.swift",
"ParseFileTests.swift",
"ParseFileTransferableTests.swift",
"ParseGeoPointTests.swift",
"ParseGitHubCombineTests.swift",
"ParseGitHubTests.swift",
"ParseGoogleCombineTests.swift",
"ParseGoogleTests.swift",
"ParseHookFunctionCombineTests.swift",
"ParseHookFunctionRequestCombineTests.swift",
"ParseHookFunctionRequestTests.swift",
"ParseHookFunctionTests.swift",
"ParseHookResponseTests.swift",
"ParseHookTriggerCombineTests.swift",
"ParseHookTriggerRequestCombineTests.swift",
"ParseHookTriggerRequestTests.swift",
"ParseHookTriggerTests.swift",
"ParseInstagramCombineTests.swift",
"ParseInstagramTests.swift",
"ParseInstallationCombineTests.swift",
"ParseInstallationTests.swift",
"ParseKeychainAccessGroupTests.swift",
"ParseLDAPCombineTests.swift",
"ParseLDAPTests.swift",
"ParseLinkedInCombineTests.swift",
"ParseLinkedInTests.swift",
"ParseLiveQueryAsyncTests.swift",
"ParseLiveQueryCombineTests.swift",
"ParseLiveQueryTests.swift",
"ParseObjectAsyncTests.swift",
"ParseObjectBatchTests.swift",
"ParseObjectCombineTests.swift",
"ParseObjectCustomObjectIdTests.swift",
"ParseObjectTests.swift",
"ParseOperationAsyncTests.swift",
"ParseOperationCombineTests.swift",
"ParseOperationTests.swift",
"ParsePointerAsyncTests.swift",
"ParsePointerCombineTests.swift",
"ParsePointerTests.swift",
"ParsePolygonTests.swift",
"ParsePushAsyncTests.swift",
"ParsePushCombineTests.swift",
"ParsePushPayloadAnyTests.swift",
"ParsePushPayloadAppleTests.swift",
"ParsePushPayloadFirebaseTests.swift",
"ParsePushTests.swift",
"ParseQueryAsyncTests.swift",
"ParseQueryCacheTests.swift",
"ParseQueryCombineTests.swift",
"ParseQueryTests.swift",
"ParseQueryViewModelTests.swift",
"ParseRelationTests.swift",
"ParseRoleTests.swift",
"ParseSchemaAsyncTests.swift",
"ParseSchemaCombineTests.swift",
"ParseSchemaTests.swift",
"ParseServerAsyncTests.swift",
"ParseServerCombineTests.swift",
"ParseServerTests.swift",
"ParseSessionTests.swift",
"ParseSpotifyCombineTests.swift",
"ParseSpotifyTests.swift",
"ParseTwitterCombineTests.swift",
"ParseTwitterTests.swift",
"ParseUserCombineTests.swift",
"ParseUserTests.swift",
"ParseVersionTests.swift"
],
"target_dependencies" : [
"ParseSwift"
],
"type" : "test"
},
{
"c99name" : "ParseSwift",
"module_type" : "SwiftTarget",
"name" : "ParseSwift",
"path" : "Sources/ParseSwift",
"product_memberships" : [
"ParseSwift"
],
"sources" : [
"API/API+BatchCommand.swift",
"API/API+Command+async.swift",
"API/API+Command.swift",
"API/API+NonParseBodyCommand+async.swift",
"API/API+NonParseBodyCommand.swift",
"API/API.swift",
"API/BatchUtils.swift",
"API/ParseURLSessionDelegate.swift",
"API/Responses.swift",
"Authentication/3rd Party/ParseApple/ParseApple+async.swift",
"Authentication/3rd Party/ParseApple/ParseApple+combine.swift",
"Authentication/3rd Party/ParseApple/ParseApple.swift",
"Authentication/3rd Party/ParseFacebook/ParseFacebook+async.swift",
"Authentication/3rd Party/ParseFacebook/ParseFacebook+combine.swift",
"Authentication/3rd Party/ParseFacebook/ParseFacebook.swift",
"Authentication/3rd Party/ParseGithub/ParseGitHub+async.swift",
"Authentication/3rd Party/ParseGithub/ParseGitHub+combine.swift",
"Authentication/3rd Party/ParseGithub/ParseGitHub.swift",
"Authentication/3rd Party/ParseGoogle/ParseGoogle+async.swift",
"Authentication/3rd Party/ParseGoogle/ParseGoogle+combine.swift",
"Authentication/3rd Party/ParseGoogle/ParseGoogle.swift",
"Authentication/3rd Party/ParseInstagram/ParseInstagram+async.swift",
"Authentication/3rd Party/ParseInstagram/ParseInstagram+combine.swift",
"Authentication/3rd Party/ParseInstagram/ParseInstagram.swift",
"Authentication/3rd Party/ParseLDAP/ParseLDAP+async.swift",
"Authentication/3rd Party/ParseLDAP/ParseLDAP+combine.swift",
"Authentication/3rd Party/ParseLDAP/ParseLDAP.swift",
"Authentication/3rd Party/ParseLinkedIn/ParseLinkedIn+async.swift",
"Authentication/3rd Party/ParseLinkedIn/ParseLinkedIn+combine.swift",
"Authentication/3rd Party/ParseLinkedIn/ParseLinkedIn.swift",
"Authentication/3rd Party/ParseSpotify/ParseSpotify+async.swift",
"Authentication/3rd Party/ParseSpotify/ParseSpotify+combine.swift",
"Authentication/3rd Party/ParseSpotify/ParseSpotify.swift",
"Authentication/3rd Party/ParseTwitter/ParseTwitter+async.swift",
"Authentication/3rd Party/ParseTwitter/ParseTwitter+combine.swift",
"Authentication/3rd Party/ParseTwitter/ParseTwitter.swift",
"Authentication/Internal/ParseAnonymous+async.swift",
"Authentication/Internal/ParseAnonymous+combine.swift",
"Authentication/Internal/ParseAnonymous.swift",
"Authentication/Protocols/ParseAuthentication+async.swift",
"Authentication/Protocols/ParseAuthentication+combine.swift",
"Authentication/Protocols/ParseAuthentication.swift",
"Coding/AnyCodable.swift",
"Coding/AnyDecodable.swift",
"Coding/AnyEncodable.swift",
"Coding/ParseCoding.swift",
"Coding/ParseEncoder.swift",
"Extensions/Data.swift",
"Extensions/Date.swift",
"Extensions/Dictionary.swift",
"Extensions/Encodable.swift",
"Extensions/InputStream.swift",
"Extensions/URLCache.swift",
"Extensions/URLSession.swift",
"InternalObjects/BaseConfig.swift",
"InternalObjects/BaseParseInstallation.swift",
"InternalObjects/BaseParseUser.swift",
"InternalObjects/NoBody.swift",
"LiveQuery/LiveQueryConstants.swift",
"LiveQuery/LiveQuerySocket.swift",
"LiveQuery/Messages.swift",
"LiveQuery/Operations.swift",
"LiveQuery/ParseLiveQuery+async.swift",
"LiveQuery/ParseLiveQuery+combine.swift",
"LiveQuery/ParseLiveQuery.swift",
"LiveQuery/Protocols/LiveQuerySocketDelegate.swift",
"LiveQuery/Protocols/LiveQueryable.swift",
"LiveQuery/Protocols/ParseLiveQueryDelegate.swift",
"LiveQuery/Protocols/QuerySubscribable.swift",
"LiveQuery/SocketTasks.swift",
"LiveQuery/Subscription.swift",
"LiveQuery/SubscriptionCallback.swift",
"LiveQuery/Subscriptions.swift",
"Objects/ParseCloudUser.swift",
"Objects/ParseInstallation+async.swift",
"Objects/ParseInstallation+combine.swift",
"Objects/ParseInstallation.swift",
"Objects/ParseObject+async.swift",
"Objects/ParseObject+combine.swift",
"Objects/ParseObject.swift",
"Objects/ParsePushStatusable.swift",
"Objects/ParseRole.swift",
"Objects/ParseSession.swift",
"Objects/ParseUser+async.swift",
"Objects/ParseUser+combine.swift",
"Objects/ParseUser.swift",
"Parse.swift",
"ParseConstants.swift",
"Protocols/CloudObservable.swift",
"Protocols/Deletable.swift",
"Protocols/Fetchable.swift",
"Protocols/Fileable.swift",
"Protocols/Objectable.swift",
"Protocols/ParseCloudable+async.swift",
"Protocols/ParseCloudable+combine.swift",
"Protocols/ParseCloudable.swift",
"Protocols/ParseConfig+async.swift",
"Protocols/ParseConfig+combine.swift",
"Protocols/ParseConfig.swift",
"Protocols/ParseEncodable.swift",
"Protocols/ParseFileTransferable.swift",
"Protocols/ParseHookFunctionable+async.swift",
"Protocols/ParseHookFunctionable+combine.swift",
"Protocols/ParseHookFunctionable.swift",
"Protocols/ParseHookParametable.swift",
"Protocols/ParseHookRequestable+async.swift",
"Protocols/ParseHookRequestable+combine.swift",
"Protocols/ParseHookRequestable.swift",
"Protocols/ParseHookTriggerRequestable.swift",
"Protocols/ParseHookTriggerable+async.swift",
"Protocols/ParseHookTriggerable+combine.swift",
"Protocols/ParseHookTriggerable.swift",
"Protocols/ParseHookable.swift",
"Protocols/ParseOperationable.swift",
"Protocols/ParsePointerable+async.swift",
"Protocols/ParsePointerable+combine.swift",
"Protocols/ParsePointerable.swift",
"Protocols/ParsePushApplePayloadable.swift",
"Protocols/ParsePushFirebasePayloadable.swift",
"Protocols/ParsePushPayloadable.swift",
"Protocols/ParseQueryScorable.swift",
"Protocols/ParseRelationOperationable.swift",
"Protocols/ParseTypeable.swift",
"Protocols/QueryObservable.swift",
"Protocols/Queryable.swift",
"Protocols/Savable.swift",
"Storage/InMemoryPrimitiveStore.swift",
"Storage/KeychainStore.swift",
"Storage/ParseFileManager.swift",
"Storage/ParsePrimitiveStorable.swift",
"Storage/ParseStorage.swift",
"Storage/SecureStorable.swift",
"Types/CloudViewModel.swift",
"Types/Operations/ParseOperationAdd.swift",
"Types/Operations/ParseOperationAddRelation.swift",
"Types/Operations/ParseOperationAddUnique.swift",
"Types/Operations/ParseOperationBatch.swift",
"Types/Operations/ParseOperationCommand.swift",
"Types/Operations/ParseOperationDelete.swift",
"Types/Operations/ParseOperationIncrement.swift",
"Types/Operations/ParseOperationIncrementDouble.swift",
"Types/Operations/ParseOperationRemove.swift",
"Types/Operations/ParseOperationRemoveRelation.swift",
"Types/ParseACL.swift",
"Types/ParseAnalytics+async.swift",
"Types/ParseAnalytics+combine.swift",
"Types/ParseAnalytics.swift",
"Types/ParseBytes.swift",
"Types/ParseCLP.swift",
"Types/ParseConfigCodable+async.swift",
"Types/ParseConfigCodable+combine.swift",
"Types/ParseConfigCodable.swift",
"Types/ParseConfiguration.swift",
"Types/ParseError.swift",
"Types/ParseField.swift",
"Types/ParseFieldOptions.swift",
"Types/ParseFile+async.swift",
"Types/ParseFile+combine.swift",
"Types/ParseFile.swift",
"Types/ParseFileDefaultTransfer.swift",
"Types/ParseGeoPoint.swift",
"Types/ParseHookFunction.swift",
"Types/ParseHookFunctionRequest.swift",
"Types/ParseHookResponse.swift",
"Types/ParseHookTrigger.swift",
"Types/ParseHookTriggerObjectRequest.swift",
"Types/ParseHookTriggerRequest.swift",
"Types/ParseKeychainAccessGroup.swift",
"Types/ParseOperation+async.swift",
"Types/ParseOperation+combine.swift",
"Types/ParseOperation.swift",
"Types/ParsePolygon.swift",
"Types/ParsePush+async.swift",
"Types/ParsePush+combine.swift",
"Types/ParsePush.swift",
"Types/ParsePushPayload/Apple/ParsePushAppleAlert.swift",
"Types/ParsePushPayload/Apple/ParsePushAppleSound.swift",
"Types/ParsePushPayload/Apple/ParsePushPayloadApple.swift",
"Types/ParsePushPayload/Firebase/ParsePushFirebaseNotification.swift",
"Types/ParsePushPayload/Firebase/ParsePushPayloadFirebase.swift",
"Types/ParsePushPayload/ParsePushPayloadAny.swift",
"Types/ParsePushStatus.swift",
"Types/ParseRelation.swift",
"Types/ParseSchema+async.swift",
"Types/ParseSchema+combine.swift",
"Types/ParseSchema.swift",
"Types/ParseServer+async.swift",
"Types/ParseServer+combine.swift",
"Types/ParseServer.swift",
"Types/ParseVersion.swift",
"Types/Pointer+async.swift",
"Types/Pointer+combine.swift",
"Types/Pointer.swift",
"Types/Query+async.swift",
"Types/Query+combine.swift",
"Types/Query.swift",
"Types/QueryConstraint.swift",
"Types/QueryViewModel.swift",
"Types/QueryWhere.swift",
"Utility.swift"
],
"type" : "library"
}
],
"tools_version" : "5.7"
}
Done.