@doorstepai/dropoff-sdk 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (63) hide show
  1. package/DropoffSdk.podspec +27 -0
  2. package/LICENSE +20 -0
  3. package/README.md +33 -0
  4. package/android/build.gradle +93 -0
  5. package/android/gradle.properties +5 -0
  6. package/android/libs/doorstepai-tracking-sdk-api-prod-release.aar +0 -0
  7. package/android/src/main/AndroidManifest.xml +3 -0
  8. package/android/src/main/AndroidManifestNew.xml +2 -0
  9. package/android/src/main/java/com/doorstepai/dropoffsdk/DoorstepAIModule.kt +126 -0
  10. package/android/src/main/java/com/doorstepai/dropoffsdk/DropoffSdkPackage.kt +20 -0
  11. package/ios/DoorstepAI.mm +21 -0
  12. package/ios/DoorstepAI.swift +108 -0
  13. package/ios/DoorstepDropoffSDK.xcframework/Info.plist +48 -0
  14. package/ios/DoorstepDropoffSDK.xcframework/ios-arm64/DoorstepDropoffSDK.framework/DoorstepDropoffSDK +0 -0
  15. package/ios/DoorstepDropoffSDK.xcframework/ios-arm64/DoorstepDropoffSDK.framework/Headers/DoorstepDropoffSDK.h +18 -0
  16. package/ios/DoorstepDropoffSDK.xcframework/ios-arm64/DoorstepDropoffSDK.framework/Info.plist +0 -0
  17. package/ios/DoorstepDropoffSDK.xcframework/ios-arm64/DoorstepDropoffSDK.framework/Modules/DoorstepDropoffSDK.swiftmodule/arm64-apple-ios.abi.json +1779 -0
  18. package/ios/DoorstepDropoffSDK.xcframework/ios-arm64/DoorstepDropoffSDK.framework/Modules/DoorstepDropoffSDK.swiftmodule/arm64-apple-ios.private.swiftinterface +66 -0
  19. package/ios/DoorstepDropoffSDK.xcframework/ios-arm64/DoorstepDropoffSDK.framework/Modules/DoorstepDropoffSDK.swiftmodule/arm64-apple-ios.swiftdoc +0 -0
  20. package/ios/DoorstepDropoffSDK.xcframework/ios-arm64/DoorstepDropoffSDK.framework/Modules/DoorstepDropoffSDK.swiftmodule/arm64-apple-ios.swiftinterface +66 -0
  21. package/ios/DoorstepDropoffSDK.xcframework/ios-arm64/DoorstepDropoffSDK.framework/Modules/module.modulemap +6 -0
  22. package/ios/DoorstepDropoffSDK.xcframework/ios-arm64/DoorstepDropoffSDK.framework/_CodeSignature/CodeResources +179 -0
  23. package/ios/DoorstepDropoffSDK.xcframework/ios-arm64/dSYMs/DoorstepDropoffSDK.framework.dSYM/Contents/Info.plist +20 -0
  24. package/ios/DoorstepDropoffSDK.xcframework/ios-arm64/dSYMs/DoorstepDropoffSDK.framework.dSYM/Contents/Resources/DWARF/DoorstepDropoffSDK +0 -0
  25. package/ios/DoorstepDropoffSDK.xcframework/ios-arm64/dSYMs/DoorstepDropoffSDK.framework.dSYM/Contents/Resources/Relocations/aarch64/DoorstepDropoffSDK.yml +705 -0
  26. package/ios/DoorstepDropoffSDK.xcframework/ios-arm64_x86_64-simulator/DoorstepDropoffSDK.framework/DoorstepDropoffSDK +0 -0
  27. package/ios/DoorstepDropoffSDK.xcframework/ios-arm64_x86_64-simulator/DoorstepDropoffSDK.framework/Headers/DoorstepDropoffSDK.h +18 -0
  28. package/ios/DoorstepDropoffSDK.xcframework/ios-arm64_x86_64-simulator/DoorstepDropoffSDK.framework/Info.plist +0 -0
  29. package/ios/DoorstepDropoffSDK.xcframework/ios-arm64_x86_64-simulator/DoorstepDropoffSDK.framework/Modules/DoorstepDropoffSDK.swiftmodule/arm64-apple-ios-simulator.abi.json +1779 -0
  30. package/ios/DoorstepDropoffSDK.xcframework/ios-arm64_x86_64-simulator/DoorstepDropoffSDK.framework/Modules/DoorstepDropoffSDK.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface +66 -0
  31. package/ios/DoorstepDropoffSDK.xcframework/ios-arm64_x86_64-simulator/DoorstepDropoffSDK.framework/Modules/DoorstepDropoffSDK.swiftmodule/arm64-apple-ios-simulator.swiftdoc +0 -0
  32. package/ios/DoorstepDropoffSDK.xcframework/ios-arm64_x86_64-simulator/DoorstepDropoffSDK.framework/Modules/DoorstepDropoffSDK.swiftmodule/arm64-apple-ios-simulator.swiftinterface +66 -0
  33. package/ios/DoorstepDropoffSDK.xcframework/ios-arm64_x86_64-simulator/DoorstepDropoffSDK.framework/Modules/DoorstepDropoffSDK.swiftmodule/x86_64-apple-ios-simulator.abi.json +1779 -0
  34. package/ios/DoorstepDropoffSDK.xcframework/ios-arm64_x86_64-simulator/DoorstepDropoffSDK.framework/Modules/DoorstepDropoffSDK.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface +66 -0
  35. package/ios/DoorstepDropoffSDK.xcframework/ios-arm64_x86_64-simulator/DoorstepDropoffSDK.framework/Modules/DoorstepDropoffSDK.swiftmodule/x86_64-apple-ios-simulator.swiftdoc +0 -0
  36. package/ios/DoorstepDropoffSDK.xcframework/ios-arm64_x86_64-simulator/DoorstepDropoffSDK.framework/Modules/DoorstepDropoffSDK.swiftmodule/x86_64-apple-ios-simulator.swiftinterface +66 -0
  37. package/ios/DoorstepDropoffSDK.xcframework/ios-arm64_x86_64-simulator/DoorstepDropoffSDK.framework/Modules/module.modulemap +6 -0
  38. package/ios/DoorstepDropoffSDK.xcframework/ios-arm64_x86_64-simulator/DoorstepDropoffSDK.framework/_CodeSignature/CodeResources +234 -0
  39. package/ios/DoorstepDropoffSDK.xcframework/ios-arm64_x86_64-simulator/dSYMs/DoorstepDropoffSDK.framework.dSYM/Contents/Info.plist +20 -0
  40. package/ios/DoorstepDropoffSDK.xcframework/ios-arm64_x86_64-simulator/dSYMs/DoorstepDropoffSDK.framework.dSYM/Contents/Resources/DWARF/DoorstepDropoffSDK +0 -0
  41. package/ios/DoorstepDropoffSDK.xcframework/ios-arm64_x86_64-simulator/dSYMs/DoorstepDropoffSDK.framework.dSYM/Contents/Resources/Relocations/aarch64/DoorstepDropoffSDK.yml +705 -0
  42. package/ios/DoorstepDropoffSDK.xcframework/ios-arm64_x86_64-simulator/dSYMs/DoorstepDropoffSDK.framework.dSYM/Contents/Resources/Relocations/x86_64/DoorstepDropoffSDK.yml +704 -0
  43. package/ios/DropoffSdk-Bridging-Header.h +2 -0
  44. package/ios/RootDoorstepAIViewManager.mm +5 -0
  45. package/ios/RootDoorstepAIViewManager.swift +15 -0
  46. package/lib/module/DoorstepAI.js +66 -0
  47. package/lib/module/DoorstepAI.js.map +1 -0
  48. package/lib/module/RootDoorstepAI.js +25 -0
  49. package/lib/module/RootDoorstepAI.js.map +1 -0
  50. package/lib/module/index.js +6 -0
  51. package/lib/module/index.js.map +1 -0
  52. package/lib/module/package.json +1 -0
  53. package/lib/typescript/package.json +1 -0
  54. package/lib/typescript/src/DoorstepAI.d.ts +19 -0
  55. package/lib/typescript/src/DoorstepAI.d.ts.map +1 -0
  56. package/lib/typescript/src/RootDoorstepAI.d.ts +4 -0
  57. package/lib/typescript/src/RootDoorstepAI.d.ts.map +1 -0
  58. package/lib/typescript/src/index.d.ts +4 -0
  59. package/lib/typescript/src/index.d.ts.map +1 -0
  60. package/package.json +157 -0
  61. package/src/DoorstepAI.tsx +92 -0
  62. package/src/RootDoorstepAI.tsx +30 -0
  63. package/src/index.tsx +8 -0
@@ -0,0 +1,1779 @@
1
+ {
2
+ "ABIRoot": {
3
+ "kind": "Root",
4
+ "name": "TopLevel",
5
+ "printedName": "TopLevel",
6
+ "children": [
7
+ {
8
+ "kind": "Import",
9
+ "name": "Foundation",
10
+ "printedName": "Foundation",
11
+ "declKind": "Import",
12
+ "moduleName": "DoorstepDropoffSDK",
13
+ "declAttributes": [
14
+ "RawDocComment"
15
+ ]
16
+ },
17
+ {
18
+ "kind": "Import",
19
+ "name": "CoreMotion",
20
+ "printedName": "CoreMotion",
21
+ "declKind": "Import",
22
+ "moduleName": "DoorstepDropoffSDK"
23
+ },
24
+ {
25
+ "kind": "Import",
26
+ "name": "Foundation",
27
+ "printedName": "Foundation",
28
+ "declKind": "Import",
29
+ "moduleName": "DoorstepDropoffSDK",
30
+ "declAttributes": [
31
+ "RawDocComment"
32
+ ]
33
+ },
34
+ {
35
+ "kind": "Import",
36
+ "name": "Foundation",
37
+ "printedName": "Foundation",
38
+ "declKind": "Import",
39
+ "moduleName": "DoorstepDropoffSDK",
40
+ "declAttributes": [
41
+ "RawDocComment"
42
+ ]
43
+ },
44
+ {
45
+ "kind": "Import",
46
+ "name": "SwiftUI",
47
+ "printedName": "SwiftUI",
48
+ "declKind": "Import",
49
+ "moduleName": "DoorstepDropoffSDK"
50
+ },
51
+ {
52
+ "kind": "Import",
53
+ "name": "Foundation",
54
+ "printedName": "Foundation",
55
+ "declKind": "Import",
56
+ "moduleName": "DoorstepDropoffSDK",
57
+ "declAttributes": [
58
+ "RawDocComment"
59
+ ]
60
+ },
61
+ {
62
+ "kind": "Import",
63
+ "name": "UIKit",
64
+ "printedName": "UIKit",
65
+ "declKind": "Import",
66
+ "moduleName": "DoorstepDropoffSDK"
67
+ },
68
+ {
69
+ "kind": "TypeDecl",
70
+ "name": "AddressType",
71
+ "printedName": "AddressType",
72
+ "children": [
73
+ {
74
+ "kind": "Var",
75
+ "name": "streetNumber",
76
+ "printedName": "streetNumber",
77
+ "children": [
78
+ {
79
+ "kind": "TypeNominal",
80
+ "name": "String",
81
+ "printedName": "Swift.String",
82
+ "usr": "s:SS"
83
+ }
84
+ ],
85
+ "declKind": "Var",
86
+ "usr": "s:18DoorstepDropoffSDK11AddressTypeV12streetNumberSSvp",
87
+ "mangledName": "$s18DoorstepDropoffSDK11AddressTypeV12streetNumberSSvp",
88
+ "moduleName": "DoorstepDropoffSDK",
89
+ "declAttributes": [
90
+ "HasStorage",
91
+ "AccessControl"
92
+ ],
93
+ "isLet": true,
94
+ "hasStorage": true,
95
+ "accessors": [
96
+ {
97
+ "kind": "Accessor",
98
+ "name": "Get",
99
+ "printedName": "Get()",
100
+ "children": [
101
+ {
102
+ "kind": "TypeNominal",
103
+ "name": "String",
104
+ "printedName": "Swift.String",
105
+ "usr": "s:SS"
106
+ }
107
+ ],
108
+ "declKind": "Accessor",
109
+ "usr": "s:18DoorstepDropoffSDK11AddressTypeV12streetNumberSSvg",
110
+ "mangledName": "$s18DoorstepDropoffSDK11AddressTypeV12streetNumberSSvg",
111
+ "moduleName": "DoorstepDropoffSDK",
112
+ "implicit": true,
113
+ "accessorKind": "get"
114
+ }
115
+ ]
116
+ },
117
+ {
118
+ "kind": "Var",
119
+ "name": "route",
120
+ "printedName": "route",
121
+ "children": [
122
+ {
123
+ "kind": "TypeNominal",
124
+ "name": "String",
125
+ "printedName": "Swift.String",
126
+ "usr": "s:SS"
127
+ }
128
+ ],
129
+ "declKind": "Var",
130
+ "usr": "s:18DoorstepDropoffSDK11AddressTypeV5routeSSvp",
131
+ "mangledName": "$s18DoorstepDropoffSDK11AddressTypeV5routeSSvp",
132
+ "moduleName": "DoorstepDropoffSDK",
133
+ "declAttributes": [
134
+ "HasStorage",
135
+ "AccessControl"
136
+ ],
137
+ "isLet": true,
138
+ "hasStorage": true,
139
+ "accessors": [
140
+ {
141
+ "kind": "Accessor",
142
+ "name": "Get",
143
+ "printedName": "Get()",
144
+ "children": [
145
+ {
146
+ "kind": "TypeNominal",
147
+ "name": "String",
148
+ "printedName": "Swift.String",
149
+ "usr": "s:SS"
150
+ }
151
+ ],
152
+ "declKind": "Accessor",
153
+ "usr": "s:18DoorstepDropoffSDK11AddressTypeV5routeSSvg",
154
+ "mangledName": "$s18DoorstepDropoffSDK11AddressTypeV5routeSSvg",
155
+ "moduleName": "DoorstepDropoffSDK",
156
+ "implicit": true,
157
+ "accessorKind": "get"
158
+ }
159
+ ]
160
+ },
161
+ {
162
+ "kind": "Var",
163
+ "name": "locality",
164
+ "printedName": "locality",
165
+ "children": [
166
+ {
167
+ "kind": "TypeNominal",
168
+ "name": "String",
169
+ "printedName": "Swift.String",
170
+ "usr": "s:SS"
171
+ }
172
+ ],
173
+ "declKind": "Var",
174
+ "usr": "s:18DoorstepDropoffSDK11AddressTypeV8localitySSvp",
175
+ "mangledName": "$s18DoorstepDropoffSDK11AddressTypeV8localitySSvp",
176
+ "moduleName": "DoorstepDropoffSDK",
177
+ "declAttributes": [
178
+ "HasStorage",
179
+ "AccessControl"
180
+ ],
181
+ "isLet": true,
182
+ "hasStorage": true,
183
+ "accessors": [
184
+ {
185
+ "kind": "Accessor",
186
+ "name": "Get",
187
+ "printedName": "Get()",
188
+ "children": [
189
+ {
190
+ "kind": "TypeNominal",
191
+ "name": "String",
192
+ "printedName": "Swift.String",
193
+ "usr": "s:SS"
194
+ }
195
+ ],
196
+ "declKind": "Accessor",
197
+ "usr": "s:18DoorstepDropoffSDK11AddressTypeV8localitySSvg",
198
+ "mangledName": "$s18DoorstepDropoffSDK11AddressTypeV8localitySSvg",
199
+ "moduleName": "DoorstepDropoffSDK",
200
+ "implicit": true,
201
+ "accessorKind": "get"
202
+ }
203
+ ]
204
+ },
205
+ {
206
+ "kind": "Var",
207
+ "name": "administrativeAreaLevel1",
208
+ "printedName": "administrativeAreaLevel1",
209
+ "children": [
210
+ {
211
+ "kind": "TypeNominal",
212
+ "name": "String",
213
+ "printedName": "Swift.String",
214
+ "usr": "s:SS"
215
+ }
216
+ ],
217
+ "declKind": "Var",
218
+ "usr": "s:18DoorstepDropoffSDK11AddressTypeV24administrativeAreaLevel1SSvp",
219
+ "mangledName": "$s18DoorstepDropoffSDK11AddressTypeV24administrativeAreaLevel1SSvp",
220
+ "moduleName": "DoorstepDropoffSDK",
221
+ "declAttributes": [
222
+ "HasStorage",
223
+ "AccessControl"
224
+ ],
225
+ "isLet": true,
226
+ "hasStorage": true,
227
+ "accessors": [
228
+ {
229
+ "kind": "Accessor",
230
+ "name": "Get",
231
+ "printedName": "Get()",
232
+ "children": [
233
+ {
234
+ "kind": "TypeNominal",
235
+ "name": "String",
236
+ "printedName": "Swift.String",
237
+ "usr": "s:SS"
238
+ }
239
+ ],
240
+ "declKind": "Accessor",
241
+ "usr": "s:18DoorstepDropoffSDK11AddressTypeV24administrativeAreaLevel1SSvg",
242
+ "mangledName": "$s18DoorstepDropoffSDK11AddressTypeV24administrativeAreaLevel1SSvg",
243
+ "moduleName": "DoorstepDropoffSDK",
244
+ "implicit": true,
245
+ "accessorKind": "get"
246
+ }
247
+ ]
248
+ },
249
+ {
250
+ "kind": "Var",
251
+ "name": "postalCode",
252
+ "printedName": "postalCode",
253
+ "children": [
254
+ {
255
+ "kind": "TypeNominal",
256
+ "name": "String",
257
+ "printedName": "Swift.String",
258
+ "usr": "s:SS"
259
+ }
260
+ ],
261
+ "declKind": "Var",
262
+ "usr": "s:18DoorstepDropoffSDK11AddressTypeV10postalCodeSSvp",
263
+ "mangledName": "$s18DoorstepDropoffSDK11AddressTypeV10postalCodeSSvp",
264
+ "moduleName": "DoorstepDropoffSDK",
265
+ "declAttributes": [
266
+ "HasStorage",
267
+ "AccessControl"
268
+ ],
269
+ "isLet": true,
270
+ "hasStorage": true,
271
+ "accessors": [
272
+ {
273
+ "kind": "Accessor",
274
+ "name": "Get",
275
+ "printedName": "Get()",
276
+ "children": [
277
+ {
278
+ "kind": "TypeNominal",
279
+ "name": "String",
280
+ "printedName": "Swift.String",
281
+ "usr": "s:SS"
282
+ }
283
+ ],
284
+ "declKind": "Accessor",
285
+ "usr": "s:18DoorstepDropoffSDK11AddressTypeV10postalCodeSSvg",
286
+ "mangledName": "$s18DoorstepDropoffSDK11AddressTypeV10postalCodeSSvg",
287
+ "moduleName": "DoorstepDropoffSDK",
288
+ "implicit": true,
289
+ "accessorKind": "get"
290
+ }
291
+ ]
292
+ },
293
+ {
294
+ "kind": "Constructor",
295
+ "name": "init",
296
+ "printedName": "init(streetNumber:route:locality:administrativeAreaLevel1:postalCode:)",
297
+ "children": [
298
+ {
299
+ "kind": "TypeNominal",
300
+ "name": "AddressType",
301
+ "printedName": "DoorstepDropoffSDK.AddressType",
302
+ "usr": "s:18DoorstepDropoffSDK11AddressTypeV"
303
+ },
304
+ {
305
+ "kind": "TypeNominal",
306
+ "name": "String",
307
+ "printedName": "Swift.String",
308
+ "usr": "s:SS"
309
+ },
310
+ {
311
+ "kind": "TypeNominal",
312
+ "name": "String",
313
+ "printedName": "Swift.String",
314
+ "usr": "s:SS"
315
+ },
316
+ {
317
+ "kind": "TypeNominal",
318
+ "name": "String",
319
+ "printedName": "Swift.String",
320
+ "usr": "s:SS"
321
+ },
322
+ {
323
+ "kind": "TypeNominal",
324
+ "name": "String",
325
+ "printedName": "Swift.String",
326
+ "usr": "s:SS"
327
+ },
328
+ {
329
+ "kind": "TypeNominal",
330
+ "name": "String",
331
+ "printedName": "Swift.String",
332
+ "usr": "s:SS"
333
+ }
334
+ ],
335
+ "declKind": "Constructor",
336
+ "usr": "s:18DoorstepDropoffSDK11AddressTypeV12streetNumber5route8locality24administrativeAreaLevel110postalCodeACSS_S4Stcfc",
337
+ "mangledName": "$s18DoorstepDropoffSDK11AddressTypeV12streetNumber5route8locality24administrativeAreaLevel110postalCodeACSS_S4Stcfc",
338
+ "moduleName": "DoorstepDropoffSDK",
339
+ "declAttributes": [
340
+ "AccessControl"
341
+ ],
342
+ "init_kind": "Designated"
343
+ },
344
+ {
345
+ "kind": "Var",
346
+ "name": "addressString",
347
+ "printedName": "addressString",
348
+ "children": [
349
+ {
350
+ "kind": "TypeNominal",
351
+ "name": "String",
352
+ "printedName": "Swift.String",
353
+ "usr": "s:SS"
354
+ }
355
+ ],
356
+ "declKind": "Var",
357
+ "usr": "s:18DoorstepDropoffSDK11AddressTypeV13addressStringSSvp",
358
+ "mangledName": "$s18DoorstepDropoffSDK11AddressTypeV13addressStringSSvp",
359
+ "moduleName": "DoorstepDropoffSDK",
360
+ "declAttributes": [
361
+ "AccessControl"
362
+ ],
363
+ "isFromExtension": true,
364
+ "accessors": [
365
+ {
366
+ "kind": "Accessor",
367
+ "name": "Get",
368
+ "printedName": "Get()",
369
+ "children": [
370
+ {
371
+ "kind": "TypeNominal",
372
+ "name": "String",
373
+ "printedName": "Swift.String",
374
+ "usr": "s:SS"
375
+ }
376
+ ],
377
+ "declKind": "Accessor",
378
+ "usr": "s:18DoorstepDropoffSDK11AddressTypeV13addressStringSSvg",
379
+ "mangledName": "$s18DoorstepDropoffSDK11AddressTypeV13addressStringSSvg",
380
+ "moduleName": "DoorstepDropoffSDK",
381
+ "isFromExtension": true,
382
+ "accessorKind": "get"
383
+ }
384
+ ]
385
+ }
386
+ ],
387
+ "declKind": "Struct",
388
+ "usr": "s:18DoorstepDropoffSDK11AddressTypeV",
389
+ "mangledName": "$s18DoorstepDropoffSDK11AddressTypeV",
390
+ "moduleName": "DoorstepDropoffSDK",
391
+ "declAttributes": [
392
+ "AccessControl"
393
+ ],
394
+ "conformances": [
395
+ {
396
+ "kind": "Conformance",
397
+ "name": "AddressDesignation",
398
+ "printedName": "AddressDesignation",
399
+ "usr": "s:18DoorstepDropoffSDK18AddressDesignationP",
400
+ "mangledName": "$s18DoorstepDropoffSDK18AddressDesignationP"
401
+ }
402
+ ]
403
+ },
404
+ {
405
+ "kind": "TypeDecl",
406
+ "name": "AddressDesignation",
407
+ "printedName": "AddressDesignation",
408
+ "children": [
409
+ {
410
+ "kind": "Var",
411
+ "name": "addressString",
412
+ "printedName": "addressString",
413
+ "children": [
414
+ {
415
+ "kind": "TypeNominal",
416
+ "name": "String",
417
+ "printedName": "Swift.String",
418
+ "usr": "s:SS"
419
+ }
420
+ ],
421
+ "declKind": "Var",
422
+ "usr": "s:18DoorstepDropoffSDK18AddressDesignationP13addressStringSSvp",
423
+ "mangledName": "$s18DoorstepDropoffSDK18AddressDesignationP13addressStringSSvp",
424
+ "moduleName": "DoorstepDropoffSDK",
425
+ "protocolReq": true,
426
+ "accessors": [
427
+ {
428
+ "kind": "Accessor",
429
+ "name": "Get",
430
+ "printedName": "Get()",
431
+ "children": [
432
+ {
433
+ "kind": "TypeNominal",
434
+ "name": "String",
435
+ "printedName": "Swift.String",
436
+ "usr": "s:SS"
437
+ }
438
+ ],
439
+ "declKind": "Accessor",
440
+ "usr": "s:18DoorstepDropoffSDK18AddressDesignationP13addressStringSSvg",
441
+ "mangledName": "$s18DoorstepDropoffSDK18AddressDesignationP13addressStringSSvg",
442
+ "moduleName": "DoorstepDropoffSDK",
443
+ "genericSig": "<τ_0_0 where τ_0_0 : DoorstepDropoffSDK.AddressDesignation>",
444
+ "sugared_genericSig": "<Self where Self : DoorstepDropoffSDK.AddressDesignation>",
445
+ "protocolReq": true,
446
+ "reqNewWitnessTableEntry": true,
447
+ "accessorKind": "get"
448
+ }
449
+ ]
450
+ }
451
+ ],
452
+ "declKind": "Protocol",
453
+ "usr": "s:18DoorstepDropoffSDK18AddressDesignationP",
454
+ "mangledName": "$s18DoorstepDropoffSDK18AddressDesignationP",
455
+ "moduleName": "DoorstepDropoffSDK",
456
+ "declAttributes": [
457
+ "AccessControl"
458
+ ]
459
+ },
460
+ {
461
+ "kind": "TypeDecl",
462
+ "name": "DoorstepAIError",
463
+ "printedName": "DoorstepAIError",
464
+ "children": [
465
+ {
466
+ "kind": "Var",
467
+ "name": "sessionCreationFailed",
468
+ "printedName": "sessionCreationFailed",
469
+ "children": [
470
+ {
471
+ "kind": "TypeFunc",
472
+ "name": "Function",
473
+ "printedName": "(DoorstepDropoffSDK.DoorstepAIError.Type) -> (Swift.String) -> DoorstepDropoffSDK.DoorstepAIError",
474
+ "children": [
475
+ {
476
+ "kind": "TypeFunc",
477
+ "name": "Function",
478
+ "printedName": "(Swift.String) -> DoorstepDropoffSDK.DoorstepAIError",
479
+ "children": [
480
+ {
481
+ "kind": "TypeNominal",
482
+ "name": "DoorstepAIError",
483
+ "printedName": "DoorstepDropoffSDK.DoorstepAIError",
484
+ "usr": "s:18DoorstepDropoffSDK0A7AIErrorO"
485
+ },
486
+ {
487
+ "kind": "TypeNominal",
488
+ "name": "String",
489
+ "printedName": "Swift.String",
490
+ "usr": "s:SS"
491
+ }
492
+ ]
493
+ },
494
+ {
495
+ "kind": "TypeNominal",
496
+ "name": "Metatype",
497
+ "printedName": "DoorstepDropoffSDK.DoorstepAIError.Type",
498
+ "children": [
499
+ {
500
+ "kind": "TypeNominal",
501
+ "name": "DoorstepAIError",
502
+ "printedName": "DoorstepDropoffSDK.DoorstepAIError",
503
+ "usr": "s:18DoorstepDropoffSDK0A7AIErrorO"
504
+ }
505
+ ]
506
+ }
507
+ ]
508
+ }
509
+ ],
510
+ "declKind": "EnumElement",
511
+ "usr": "s:18DoorstepDropoffSDK0A7AIErrorO21sessionCreationFailedyACSScACmF",
512
+ "mangledName": "$s18DoorstepDropoffSDK0A7AIErrorO21sessionCreationFailedyACSScACmF",
513
+ "moduleName": "DoorstepDropoffSDK"
514
+ },
515
+ {
516
+ "kind": "Var",
517
+ "name": "invalidAddress",
518
+ "printedName": "invalidAddress",
519
+ "children": [
520
+ {
521
+ "kind": "TypeFunc",
522
+ "name": "Function",
523
+ "printedName": "(DoorstepDropoffSDK.DoorstepAIError.Type) -> DoorstepDropoffSDK.DoorstepAIError",
524
+ "children": [
525
+ {
526
+ "kind": "TypeNominal",
527
+ "name": "DoorstepAIError",
528
+ "printedName": "DoorstepDropoffSDK.DoorstepAIError",
529
+ "usr": "s:18DoorstepDropoffSDK0A7AIErrorO"
530
+ },
531
+ {
532
+ "kind": "TypeNominal",
533
+ "name": "Metatype",
534
+ "printedName": "DoorstepDropoffSDK.DoorstepAIError.Type",
535
+ "children": [
536
+ {
537
+ "kind": "TypeNominal",
538
+ "name": "DoorstepAIError",
539
+ "printedName": "DoorstepDropoffSDK.DoorstepAIError",
540
+ "usr": "s:18DoorstepDropoffSDK0A7AIErrorO"
541
+ }
542
+ ]
543
+ }
544
+ ]
545
+ }
546
+ ],
547
+ "declKind": "EnumElement",
548
+ "usr": "s:18DoorstepDropoffSDK0A7AIErrorO14invalidAddressyA2CmF",
549
+ "mangledName": "$s18DoorstepDropoffSDK0A7AIErrorO14invalidAddressyA2CmF",
550
+ "moduleName": "DoorstepDropoffSDK"
551
+ }
552
+ ],
553
+ "declKind": "Enum",
554
+ "usr": "s:18DoorstepDropoffSDK0A7AIErrorO",
555
+ "mangledName": "$s18DoorstepDropoffSDK0A7AIErrorO",
556
+ "moduleName": "DoorstepDropoffSDK",
557
+ "declAttributes": [
558
+ "AccessControl"
559
+ ],
560
+ "conformances": [
561
+ {
562
+ "kind": "Conformance",
563
+ "name": "Error",
564
+ "printedName": "Error",
565
+ "usr": "s:s5ErrorP",
566
+ "mangledName": "$ss5ErrorP"
567
+ },
568
+ {
569
+ "kind": "Conformance",
570
+ "name": "Sendable",
571
+ "printedName": "Sendable",
572
+ "usr": "s:s8SendableP",
573
+ "mangledName": "$ss8SendableP"
574
+ }
575
+ ]
576
+ },
577
+ {
578
+ "kind": "TypeDecl",
579
+ "name": "DoorstepAI",
580
+ "printedName": "DoorstepAI",
581
+ "children": [
582
+ {
583
+ "kind": "Function",
584
+ "name": "setApiKey",
585
+ "printedName": "setApiKey(key:)",
586
+ "children": [
587
+ {
588
+ "kind": "TypeNominal",
589
+ "name": "Void",
590
+ "printedName": "()"
591
+ },
592
+ {
593
+ "kind": "TypeNominal",
594
+ "name": "String",
595
+ "printedName": "Swift.String",
596
+ "usr": "s:SS"
597
+ }
598
+ ],
599
+ "declKind": "Func",
600
+ "usr": "s:18DoorstepDropoffSDK0A2AIC9setApiKey3keyySS_tFZ",
601
+ "mangledName": "$s18DoorstepDropoffSDK0A2AIC9setApiKey3keyySS_tFZ",
602
+ "moduleName": "DoorstepDropoffSDK",
603
+ "static": true,
604
+ "declAttributes": [
605
+ "Final",
606
+ "AccessControl"
607
+ ],
608
+ "funcSelfKind": "NonMutating"
609
+ },
610
+ {
611
+ "kind": "Function",
612
+ "name": "startDeliveryByPlaceID",
613
+ "printedName": "startDeliveryByPlaceID(placeID:)",
614
+ "children": [
615
+ {
616
+ "kind": "TypeNominal",
617
+ "name": "Void",
618
+ "printedName": "()"
619
+ },
620
+ {
621
+ "kind": "TypeNominal",
622
+ "name": "String",
623
+ "printedName": "Swift.String",
624
+ "usr": "s:SS"
625
+ }
626
+ ],
627
+ "declKind": "Func",
628
+ "usr": "s:18DoorstepDropoffSDK0A2AIC22startDeliveryByPlaceID05placeI0ySS_tYaKFZ",
629
+ "mangledName": "$s18DoorstepDropoffSDK0A2AIC22startDeliveryByPlaceID05placeI0ySS_tYaKFZ",
630
+ "moduleName": "DoorstepDropoffSDK",
631
+ "static": true,
632
+ "declAttributes": [
633
+ "Final",
634
+ "AccessControl"
635
+ ],
636
+ "throwing": true,
637
+ "funcSelfKind": "NonMutating"
638
+ },
639
+ {
640
+ "kind": "Function",
641
+ "name": "startDeliveryByPlusCode",
642
+ "printedName": "startDeliveryByPlusCode(plusCode:)",
643
+ "children": [
644
+ {
645
+ "kind": "TypeNominal",
646
+ "name": "Void",
647
+ "printedName": "()"
648
+ },
649
+ {
650
+ "kind": "TypeNominal",
651
+ "name": "String",
652
+ "printedName": "Swift.String",
653
+ "usr": "s:SS"
654
+ }
655
+ ],
656
+ "declKind": "Func",
657
+ "usr": "s:18DoorstepDropoffSDK0A2AIC23startDeliveryByPlusCode04plusI0ySS_tYaKFZ",
658
+ "mangledName": "$s18DoorstepDropoffSDK0A2AIC23startDeliveryByPlusCode04plusI0ySS_tYaKFZ",
659
+ "moduleName": "DoorstepDropoffSDK",
660
+ "static": true,
661
+ "declAttributes": [
662
+ "Final",
663
+ "AccessControl"
664
+ ],
665
+ "throwing": true,
666
+ "funcSelfKind": "NonMutating"
667
+ },
668
+ {
669
+ "kind": "Function",
670
+ "name": "startDeliveryByAddressType",
671
+ "printedName": "startDeliveryByAddressType(address:)",
672
+ "children": [
673
+ {
674
+ "kind": "TypeNominal",
675
+ "name": "Void",
676
+ "printedName": "()"
677
+ },
678
+ {
679
+ "kind": "TypeNominal",
680
+ "name": "AddressType",
681
+ "printedName": "DoorstepDropoffSDK.AddressType",
682
+ "usr": "s:18DoorstepDropoffSDK11AddressTypeV"
683
+ }
684
+ ],
685
+ "declKind": "Func",
686
+ "usr": "s:18DoorstepDropoffSDK0A2AIC26startDeliveryByAddressType7addressyAA0hI0V_tYaKFZ",
687
+ "mangledName": "$s18DoorstepDropoffSDK0A2AIC26startDeliveryByAddressType7addressyAA0hI0V_tYaKFZ",
688
+ "moduleName": "DoorstepDropoffSDK",
689
+ "static": true,
690
+ "declAttributes": [
691
+ "Final",
692
+ "AccessControl"
693
+ ],
694
+ "throwing": true,
695
+ "funcSelfKind": "NonMutating"
696
+ },
697
+ {
698
+ "kind": "Function",
699
+ "name": "newEvent",
700
+ "printedName": "newEvent(eventName:)",
701
+ "children": [
702
+ {
703
+ "kind": "TypeNominal",
704
+ "name": "Void",
705
+ "printedName": "()"
706
+ },
707
+ {
708
+ "kind": "TypeNominal",
709
+ "name": "String",
710
+ "printedName": "Swift.String",
711
+ "usr": "s:SS"
712
+ }
713
+ ],
714
+ "declKind": "Func",
715
+ "usr": "s:18DoorstepDropoffSDK0A2AIC8newEvent9eventNameySS_tYaKFZ",
716
+ "mangledName": "$s18DoorstepDropoffSDK0A2AIC8newEvent9eventNameySS_tYaKFZ",
717
+ "moduleName": "DoorstepDropoffSDK",
718
+ "static": true,
719
+ "declAttributes": [
720
+ "Final",
721
+ "AccessControl"
722
+ ],
723
+ "throwing": true,
724
+ "funcSelfKind": "NonMutating"
725
+ },
726
+ {
727
+ "kind": "Function",
728
+ "name": "stopDelivery",
729
+ "printedName": "stopDelivery()",
730
+ "children": [
731
+ {
732
+ "kind": "TypeNominal",
733
+ "name": "Void",
734
+ "printedName": "()"
735
+ }
736
+ ],
737
+ "declKind": "Func",
738
+ "usr": "s:18DoorstepDropoffSDK0A2AIC12stopDeliveryyyYaFZ",
739
+ "mangledName": "$s18DoorstepDropoffSDK0A2AIC12stopDeliveryyyYaFZ",
740
+ "moduleName": "DoorstepDropoffSDK",
741
+ "static": true,
742
+ "declAttributes": [
743
+ "Final",
744
+ "AccessControl"
745
+ ],
746
+ "funcSelfKind": "NonMutating"
747
+ }
748
+ ],
749
+ "declKind": "Class",
750
+ "usr": "s:18DoorstepDropoffSDK0A2AIC",
751
+ "mangledName": "$s18DoorstepDropoffSDK0A2AIC",
752
+ "moduleName": "DoorstepDropoffSDK",
753
+ "declAttributes": [
754
+ "AccessControl"
755
+ ],
756
+ "hasMissingDesignatedInitializers": true
757
+ },
758
+ {
759
+ "kind": "Import",
760
+ "name": "Foundation",
761
+ "printedName": "Foundation",
762
+ "declKind": "Import",
763
+ "moduleName": "DoorstepDropoffSDK",
764
+ "declAttributes": [
765
+ "RawDocComment"
766
+ ]
767
+ },
768
+ {
769
+ "kind": "Import",
770
+ "name": "CoreLocation",
771
+ "printedName": "CoreLocation",
772
+ "declKind": "Import",
773
+ "moduleName": "DoorstepDropoffSDK"
774
+ },
775
+ {
776
+ "kind": "Import",
777
+ "name": "Foundation",
778
+ "printedName": "Foundation",
779
+ "declKind": "Import",
780
+ "moduleName": "DoorstepDropoffSDK",
781
+ "declAttributes": [
782
+ "RawDocComment"
783
+ ]
784
+ },
785
+ {
786
+ "kind": "Import",
787
+ "name": "SwiftUI",
788
+ "printedName": "SwiftUI",
789
+ "declKind": "Import",
790
+ "moduleName": "DoorstepDropoffSDK"
791
+ },
792
+ {
793
+ "kind": "TypeDecl",
794
+ "name": "DoorstepAIRoot",
795
+ "printedName": "DoorstepAIRoot",
796
+ "children": [
797
+ {
798
+ "kind": "Constructor",
799
+ "name": "init",
800
+ "printedName": "init()",
801
+ "children": [
802
+ {
803
+ "kind": "TypeNominal",
804
+ "name": "DoorstepAIRoot",
805
+ "printedName": "DoorstepDropoffSDK.DoorstepAIRoot",
806
+ "usr": "s:18DoorstepDropoffSDK0A6AIRootV"
807
+ }
808
+ ],
809
+ "declKind": "Constructor",
810
+ "usr": "s:18DoorstepDropoffSDK0A6AIRootVACycfc",
811
+ "mangledName": "$s18DoorstepDropoffSDK0A6AIRootVACycfc",
812
+ "moduleName": "DoorstepDropoffSDK",
813
+ "declAttributes": [
814
+ "AccessControl"
815
+ ],
816
+ "init_kind": "Designated"
817
+ },
818
+ {
819
+ "kind": "Var",
820
+ "name": "body",
821
+ "printedName": "body",
822
+ "children": [
823
+ {
824
+ "kind": "TypeNominal",
825
+ "name": "OpaqueTypeArchetype",
826
+ "printedName": "some SwiftUI.View",
827
+ "children": [
828
+ {
829
+ "kind": "TypeNominal",
830
+ "name": "View",
831
+ "printedName": "SwiftUI.View",
832
+ "usr": "s:7SwiftUI4ViewP"
833
+ }
834
+ ]
835
+ }
836
+ ],
837
+ "declKind": "Var",
838
+ "usr": "s:18DoorstepDropoffSDK0A6AIRootV4bodyQrvp",
839
+ "mangledName": "$s18DoorstepDropoffSDK0A6AIRootV4bodyQrvp",
840
+ "moduleName": "DoorstepDropoffSDK",
841
+ "declAttributes": [
842
+ "Custom",
843
+ "AccessControl"
844
+ ],
845
+ "accessors": [
846
+ {
847
+ "kind": "Accessor",
848
+ "name": "Get",
849
+ "printedName": "Get()",
850
+ "children": [
851
+ {
852
+ "kind": "TypeNominal",
853
+ "name": "OpaqueTypeArchetype",
854
+ "printedName": "some SwiftUI.View",
855
+ "children": [
856
+ {
857
+ "kind": "TypeNominal",
858
+ "name": "View",
859
+ "printedName": "SwiftUI.View",
860
+ "usr": "s:7SwiftUI4ViewP"
861
+ }
862
+ ]
863
+ }
864
+ ],
865
+ "declKind": "Accessor",
866
+ "usr": "s:18DoorstepDropoffSDK0A6AIRootV4bodyQrvg",
867
+ "mangledName": "$s18DoorstepDropoffSDK0A6AIRootV4bodyQrvg",
868
+ "moduleName": "DoorstepDropoffSDK",
869
+ "accessorKind": "get"
870
+ }
871
+ ]
872
+ }
873
+ ],
874
+ "declKind": "Struct",
875
+ "usr": "s:18DoorstepDropoffSDK0A6AIRootV",
876
+ "mangledName": "$s18DoorstepDropoffSDK0A6AIRootV",
877
+ "moduleName": "DoorstepDropoffSDK",
878
+ "declAttributes": [
879
+ "AccessControl"
880
+ ],
881
+ "conformances": [
882
+ {
883
+ "kind": "Conformance",
884
+ "name": "View",
885
+ "printedName": "View",
886
+ "children": [
887
+ {
888
+ "kind": "TypeWitness",
889
+ "name": "Body",
890
+ "printedName": "Body",
891
+ "children": [
892
+ {
893
+ "kind": "TypeNominal",
894
+ "name": "OpaqueTypeArchetype",
895
+ "printedName": "some SwiftUI.View",
896
+ "children": [
897
+ {
898
+ "kind": "TypeNominal",
899
+ "name": "View",
900
+ "printedName": "SwiftUI.View",
901
+ "usr": "s:7SwiftUI4ViewP"
902
+ }
903
+ ]
904
+ }
905
+ ]
906
+ }
907
+ ],
908
+ "usr": "s:7SwiftUI4ViewP",
909
+ "mangledName": "$s7SwiftUI4ViewP"
910
+ }
911
+ ]
912
+ },
913
+ {
914
+ "kind": "Import",
915
+ "name": "Foundation",
916
+ "printedName": "Foundation",
917
+ "declKind": "Import",
918
+ "moduleName": "DoorstepDropoffSDK",
919
+ "declAttributes": [
920
+ "RawDocComment"
921
+ ]
922
+ },
923
+ {
924
+ "kind": "Import",
925
+ "name": "UIKit",
926
+ "printedName": "UIKit",
927
+ "declKind": "Import",
928
+ "moduleName": "DoorstepDropoffSDK"
929
+ },
930
+ {
931
+ "kind": "Import",
932
+ "name": "Network",
933
+ "printedName": "Network",
934
+ "declKind": "Import",
935
+ "moduleName": "DoorstepDropoffSDK"
936
+ },
937
+ {
938
+ "kind": "Import",
939
+ "name": "os",
940
+ "printedName": "os",
941
+ "declKind": "Import",
942
+ "moduleName": "DoorstepDropoffSDK",
943
+ "declAttributes": [
944
+ "RawDocComment"
945
+ ]
946
+ },
947
+ {
948
+ "kind": "Import",
949
+ "name": "Foundation",
950
+ "printedName": "Foundation",
951
+ "declKind": "Import",
952
+ "moduleName": "DoorstepDropoffSDK",
953
+ "declAttributes": [
954
+ "RawDocComment"
955
+ ]
956
+ },
957
+ {
958
+ "kind": "Import",
959
+ "name": "CoreMotion",
960
+ "printedName": "CoreMotion",
961
+ "declKind": "Import",
962
+ "moduleName": "DoorstepDropoffSDK"
963
+ },
964
+ {
965
+ "kind": "Import",
966
+ "name": "UIKit",
967
+ "printedName": "UIKit",
968
+ "declKind": "Import",
969
+ "moduleName": "DoorstepDropoffSDK"
970
+ },
971
+ {
972
+ "kind": "TypeDecl",
973
+ "name": "String",
974
+ "printedName": "String",
975
+ "children": [
976
+ {
977
+ "kind": "Var",
978
+ "name": "addressString",
979
+ "printedName": "addressString",
980
+ "children": [
981
+ {
982
+ "kind": "TypeNominal",
983
+ "name": "String",
984
+ "printedName": "Swift.String",
985
+ "usr": "s:SS"
986
+ }
987
+ ],
988
+ "declKind": "Var",
989
+ "usr": "s:SS18DoorstepDropoffSDKE13addressStringSSvp",
990
+ "mangledName": "$sSS18DoorstepDropoffSDKE13addressStringSSvp",
991
+ "moduleName": "DoorstepDropoffSDK",
992
+ "declAttributes": [
993
+ "AccessControl"
994
+ ],
995
+ "isFromExtension": true,
996
+ "accessors": [
997
+ {
998
+ "kind": "Accessor",
999
+ "name": "Get",
1000
+ "printedName": "Get()",
1001
+ "children": [
1002
+ {
1003
+ "kind": "TypeNominal",
1004
+ "name": "String",
1005
+ "printedName": "Swift.String",
1006
+ "usr": "s:SS"
1007
+ }
1008
+ ],
1009
+ "declKind": "Accessor",
1010
+ "usr": "s:SS18DoorstepDropoffSDKE13addressStringSSvg",
1011
+ "mangledName": "$sSS18DoorstepDropoffSDKE13addressStringSSvg",
1012
+ "moduleName": "DoorstepDropoffSDK",
1013
+ "isFromExtension": true,
1014
+ "accessorKind": "get"
1015
+ }
1016
+ ]
1017
+ }
1018
+ ],
1019
+ "declKind": "Struct",
1020
+ "usr": "s:SS",
1021
+ "mangledName": "$sSS",
1022
+ "moduleName": "Swift",
1023
+ "declAttributes": [
1024
+ "EagerMove",
1025
+ "Frozen"
1026
+ ],
1027
+ "isExternal": true,
1028
+ "conformances": [
1029
+ {
1030
+ "kind": "Conformance",
1031
+ "name": "AddressDesignation",
1032
+ "printedName": "AddressDesignation",
1033
+ "usr": "s:18DoorstepDropoffSDK18AddressDesignationP",
1034
+ "mangledName": "$s18DoorstepDropoffSDK18AddressDesignationP"
1035
+ },
1036
+ {
1037
+ "kind": "Conformance",
1038
+ "name": "Equatable",
1039
+ "printedName": "Equatable",
1040
+ "usr": "s:SQ",
1041
+ "mangledName": "$sSQ"
1042
+ },
1043
+ {
1044
+ "kind": "Conformance",
1045
+ "name": "Decodable",
1046
+ "printedName": "Decodable",
1047
+ "usr": "s:Se",
1048
+ "mangledName": "$sSe"
1049
+ },
1050
+ {
1051
+ "kind": "Conformance",
1052
+ "name": "Encodable",
1053
+ "printedName": "Encodable",
1054
+ "usr": "s:SE",
1055
+ "mangledName": "$sSE"
1056
+ },
1057
+ {
1058
+ "kind": "Conformance",
1059
+ "name": "CodingKeyRepresentable",
1060
+ "printedName": "CodingKeyRepresentable",
1061
+ "usr": "s:s22CodingKeyRepresentableP",
1062
+ "mangledName": "$ss22CodingKeyRepresentableP"
1063
+ },
1064
+ {
1065
+ "kind": "Conformance",
1066
+ "name": "_HasContiguousBytes",
1067
+ "printedName": "_HasContiguousBytes",
1068
+ "usr": "s:s19_HasContiguousBytesP",
1069
+ "mangledName": "$ss19_HasContiguousBytesP"
1070
+ },
1071
+ {
1072
+ "kind": "Conformance",
1073
+ "name": "CustomReflectable",
1074
+ "printedName": "CustomReflectable",
1075
+ "usr": "s:s17CustomReflectableP",
1076
+ "mangledName": "$ss17CustomReflectableP"
1077
+ },
1078
+ {
1079
+ "kind": "Conformance",
1080
+ "name": "_CustomPlaygroundQuickLookable",
1081
+ "printedName": "_CustomPlaygroundQuickLookable",
1082
+ "usr": "s:s30_CustomPlaygroundQuickLookableP",
1083
+ "mangledName": "$ss30_CustomPlaygroundQuickLookableP"
1084
+ },
1085
+ {
1086
+ "kind": "Conformance",
1087
+ "name": "TextOutputStream",
1088
+ "printedName": "TextOutputStream",
1089
+ "usr": "s:s16TextOutputStreamP",
1090
+ "mangledName": "$ss16TextOutputStreamP"
1091
+ },
1092
+ {
1093
+ "kind": "Conformance",
1094
+ "name": "TextOutputStreamable",
1095
+ "printedName": "TextOutputStreamable",
1096
+ "usr": "s:s20TextOutputStreamableP",
1097
+ "mangledName": "$ss20TextOutputStreamableP"
1098
+ },
1099
+ {
1100
+ "kind": "Conformance",
1101
+ "name": "Hashable",
1102
+ "printedName": "Hashable",
1103
+ "usr": "s:SH",
1104
+ "mangledName": "$sSH"
1105
+ },
1106
+ {
1107
+ "kind": "Conformance",
1108
+ "name": "Sendable",
1109
+ "printedName": "Sendable",
1110
+ "usr": "s:s8SendableP",
1111
+ "mangledName": "$ss8SendableP"
1112
+ },
1113
+ {
1114
+ "kind": "Conformance",
1115
+ "name": "_ExpressibleByBuiltinUnicodeScalarLiteral",
1116
+ "printedName": "_ExpressibleByBuiltinUnicodeScalarLiteral",
1117
+ "usr": "s:s41_ExpressibleByBuiltinUnicodeScalarLiteralP",
1118
+ "mangledName": "$ss41_ExpressibleByBuiltinUnicodeScalarLiteralP"
1119
+ },
1120
+ {
1121
+ "kind": "Conformance",
1122
+ "name": "_ExpressibleByBuiltinExtendedGraphemeClusterLiteral",
1123
+ "printedName": "_ExpressibleByBuiltinExtendedGraphemeClusterLiteral",
1124
+ "usr": "s:s51_ExpressibleByBuiltinExtendedGraphemeClusterLiteralP",
1125
+ "mangledName": "$ss51_ExpressibleByBuiltinExtendedGraphemeClusterLiteralP"
1126
+ },
1127
+ {
1128
+ "kind": "Conformance",
1129
+ "name": "_ExpressibleByBuiltinStringLiteral",
1130
+ "printedName": "_ExpressibleByBuiltinStringLiteral",
1131
+ "usr": "s:s34_ExpressibleByBuiltinStringLiteralP",
1132
+ "mangledName": "$ss34_ExpressibleByBuiltinStringLiteralP"
1133
+ },
1134
+ {
1135
+ "kind": "Conformance",
1136
+ "name": "ExpressibleByStringLiteral",
1137
+ "printedName": "ExpressibleByStringLiteral",
1138
+ "children": [
1139
+ {
1140
+ "kind": "TypeWitness",
1141
+ "name": "StringLiteralType",
1142
+ "printedName": "StringLiteralType",
1143
+ "children": [
1144
+ {
1145
+ "kind": "TypeNominal",
1146
+ "name": "String",
1147
+ "printedName": "Swift.String",
1148
+ "usr": "s:SS"
1149
+ }
1150
+ ]
1151
+ }
1152
+ ],
1153
+ "usr": "s:s26ExpressibleByStringLiteralP",
1154
+ "mangledName": "$ss26ExpressibleByStringLiteralP"
1155
+ },
1156
+ {
1157
+ "kind": "Conformance",
1158
+ "name": "ExpressibleByExtendedGraphemeClusterLiteral",
1159
+ "printedName": "ExpressibleByExtendedGraphemeClusterLiteral",
1160
+ "children": [
1161
+ {
1162
+ "kind": "TypeWitness",
1163
+ "name": "ExtendedGraphemeClusterLiteralType",
1164
+ "printedName": "ExtendedGraphemeClusterLiteralType",
1165
+ "children": [
1166
+ {
1167
+ "kind": "TypeNominal",
1168
+ "name": "String",
1169
+ "printedName": "Swift.String",
1170
+ "usr": "s:SS"
1171
+ }
1172
+ ]
1173
+ }
1174
+ ],
1175
+ "usr": "s:s43ExpressibleByExtendedGraphemeClusterLiteralP",
1176
+ "mangledName": "$ss43ExpressibleByExtendedGraphemeClusterLiteralP"
1177
+ },
1178
+ {
1179
+ "kind": "Conformance",
1180
+ "name": "ExpressibleByUnicodeScalarLiteral",
1181
+ "printedName": "ExpressibleByUnicodeScalarLiteral",
1182
+ "children": [
1183
+ {
1184
+ "kind": "TypeWitness",
1185
+ "name": "UnicodeScalarLiteralType",
1186
+ "printedName": "UnicodeScalarLiteralType",
1187
+ "children": [
1188
+ {
1189
+ "kind": "TypeNominal",
1190
+ "name": "String",
1191
+ "printedName": "Swift.String",
1192
+ "usr": "s:SS"
1193
+ }
1194
+ ]
1195
+ }
1196
+ ],
1197
+ "usr": "s:s33ExpressibleByUnicodeScalarLiteralP",
1198
+ "mangledName": "$ss33ExpressibleByUnicodeScalarLiteralP"
1199
+ },
1200
+ {
1201
+ "kind": "Conformance",
1202
+ "name": "CustomDebugStringConvertible",
1203
+ "printedName": "CustomDebugStringConvertible",
1204
+ "usr": "s:s28CustomDebugStringConvertibleP",
1205
+ "mangledName": "$ss28CustomDebugStringConvertibleP"
1206
+ },
1207
+ {
1208
+ "kind": "Conformance",
1209
+ "name": "CustomStringConvertible",
1210
+ "printedName": "CustomStringConvertible",
1211
+ "usr": "s:s23CustomStringConvertibleP",
1212
+ "mangledName": "$ss23CustomStringConvertibleP"
1213
+ },
1214
+ {
1215
+ "kind": "Conformance",
1216
+ "name": "BidirectionalCollection",
1217
+ "printedName": "BidirectionalCollection",
1218
+ "children": [
1219
+ {
1220
+ "kind": "TypeWitness",
1221
+ "name": "Element",
1222
+ "printedName": "Element",
1223
+ "children": [
1224
+ {
1225
+ "kind": "TypeNominal",
1226
+ "name": "Character",
1227
+ "printedName": "Swift.Character",
1228
+ "usr": "s:SJ"
1229
+ }
1230
+ ]
1231
+ },
1232
+ {
1233
+ "kind": "TypeWitness",
1234
+ "name": "Index",
1235
+ "printedName": "Index",
1236
+ "children": [
1237
+ {
1238
+ "kind": "TypeNominal",
1239
+ "name": "Index",
1240
+ "printedName": "Swift.String.Index",
1241
+ "usr": "s:SS5IndexV"
1242
+ }
1243
+ ]
1244
+ },
1245
+ {
1246
+ "kind": "TypeWitness",
1247
+ "name": "SubSequence",
1248
+ "printedName": "SubSequence",
1249
+ "children": [
1250
+ {
1251
+ "kind": "TypeNominal",
1252
+ "name": "Substring",
1253
+ "printedName": "Swift.Substring",
1254
+ "usr": "s:Ss"
1255
+ }
1256
+ ]
1257
+ },
1258
+ {
1259
+ "kind": "TypeWitness",
1260
+ "name": "Indices",
1261
+ "printedName": "Indices",
1262
+ "children": [
1263
+ {
1264
+ "kind": "TypeNominal",
1265
+ "name": "DefaultIndices",
1266
+ "printedName": "Swift.DefaultIndices<Swift.String>",
1267
+ "children": [
1268
+ {
1269
+ "kind": "TypeNominal",
1270
+ "name": "String",
1271
+ "printedName": "Swift.String",
1272
+ "usr": "s:SS"
1273
+ }
1274
+ ],
1275
+ "usr": "s:SI"
1276
+ }
1277
+ ]
1278
+ }
1279
+ ],
1280
+ "usr": "s:SK",
1281
+ "mangledName": "$sSK"
1282
+ },
1283
+ {
1284
+ "kind": "Conformance",
1285
+ "name": "Collection",
1286
+ "printedName": "Collection",
1287
+ "children": [
1288
+ {
1289
+ "kind": "TypeWitness",
1290
+ "name": "Element",
1291
+ "printedName": "Element",
1292
+ "children": [
1293
+ {
1294
+ "kind": "TypeNominal",
1295
+ "name": "Character",
1296
+ "printedName": "Swift.Character",
1297
+ "usr": "s:SJ"
1298
+ }
1299
+ ]
1300
+ },
1301
+ {
1302
+ "kind": "TypeWitness",
1303
+ "name": "Index",
1304
+ "printedName": "Index",
1305
+ "children": [
1306
+ {
1307
+ "kind": "TypeNominal",
1308
+ "name": "Index",
1309
+ "printedName": "Swift.String.Index",
1310
+ "usr": "s:SS5IndexV"
1311
+ }
1312
+ ]
1313
+ },
1314
+ {
1315
+ "kind": "TypeWitness",
1316
+ "name": "Iterator",
1317
+ "printedName": "Iterator",
1318
+ "children": [
1319
+ {
1320
+ "kind": "TypeNominal",
1321
+ "name": "Iterator",
1322
+ "printedName": "Swift.String.Iterator",
1323
+ "usr": "s:SS8IteratorV"
1324
+ }
1325
+ ]
1326
+ },
1327
+ {
1328
+ "kind": "TypeWitness",
1329
+ "name": "SubSequence",
1330
+ "printedName": "SubSequence",
1331
+ "children": [
1332
+ {
1333
+ "kind": "TypeNominal",
1334
+ "name": "Substring",
1335
+ "printedName": "Swift.Substring",
1336
+ "usr": "s:Ss"
1337
+ }
1338
+ ]
1339
+ },
1340
+ {
1341
+ "kind": "TypeWitness",
1342
+ "name": "Indices",
1343
+ "printedName": "Indices",
1344
+ "children": [
1345
+ {
1346
+ "kind": "TypeNominal",
1347
+ "name": "DefaultIndices",
1348
+ "printedName": "Swift.DefaultIndices<Swift.String>",
1349
+ "children": [
1350
+ {
1351
+ "kind": "TypeNominal",
1352
+ "name": "String",
1353
+ "printedName": "Swift.String",
1354
+ "usr": "s:SS"
1355
+ }
1356
+ ],
1357
+ "usr": "s:SI"
1358
+ }
1359
+ ]
1360
+ }
1361
+ ],
1362
+ "usr": "s:Sl",
1363
+ "mangledName": "$sSl"
1364
+ },
1365
+ {
1366
+ "kind": "Conformance",
1367
+ "name": "Sequence",
1368
+ "printedName": "Sequence",
1369
+ "children": [
1370
+ {
1371
+ "kind": "TypeWitness",
1372
+ "name": "Element",
1373
+ "printedName": "Element",
1374
+ "children": [
1375
+ {
1376
+ "kind": "TypeNominal",
1377
+ "name": "Character",
1378
+ "printedName": "Swift.Character",
1379
+ "usr": "s:SJ"
1380
+ }
1381
+ ]
1382
+ },
1383
+ {
1384
+ "kind": "TypeWitness",
1385
+ "name": "Iterator",
1386
+ "printedName": "Iterator",
1387
+ "children": [
1388
+ {
1389
+ "kind": "TypeNominal",
1390
+ "name": "Iterator",
1391
+ "printedName": "Swift.String.Iterator",
1392
+ "usr": "s:SS8IteratorV"
1393
+ }
1394
+ ]
1395
+ }
1396
+ ],
1397
+ "usr": "s:ST",
1398
+ "mangledName": "$sST"
1399
+ },
1400
+ {
1401
+ "kind": "Conformance",
1402
+ "name": "Comparable",
1403
+ "printedName": "Comparable",
1404
+ "usr": "s:SL",
1405
+ "mangledName": "$sSL"
1406
+ },
1407
+ {
1408
+ "kind": "Conformance",
1409
+ "name": "StringProtocol",
1410
+ "printedName": "StringProtocol",
1411
+ "children": [
1412
+ {
1413
+ "kind": "TypeWitness",
1414
+ "name": "UTF8View",
1415
+ "printedName": "UTF8View",
1416
+ "children": [
1417
+ {
1418
+ "kind": "TypeNominal",
1419
+ "name": "UTF8View",
1420
+ "printedName": "Swift.String.UTF8View",
1421
+ "usr": "s:SS8UTF8ViewV"
1422
+ }
1423
+ ]
1424
+ },
1425
+ {
1426
+ "kind": "TypeWitness",
1427
+ "name": "UTF16View",
1428
+ "printedName": "UTF16View",
1429
+ "children": [
1430
+ {
1431
+ "kind": "TypeNominal",
1432
+ "name": "UTF16View",
1433
+ "printedName": "Swift.String.UTF16View",
1434
+ "usr": "s:SS9UTF16ViewV"
1435
+ }
1436
+ ]
1437
+ },
1438
+ {
1439
+ "kind": "TypeWitness",
1440
+ "name": "UnicodeScalarView",
1441
+ "printedName": "UnicodeScalarView",
1442
+ "children": [
1443
+ {
1444
+ "kind": "TypeNominal",
1445
+ "name": "UnicodeScalarView",
1446
+ "printedName": "Swift.String.UnicodeScalarView",
1447
+ "usr": "s:SS17UnicodeScalarViewV"
1448
+ }
1449
+ ]
1450
+ },
1451
+ {
1452
+ "kind": "TypeWitness",
1453
+ "name": "SubSequence",
1454
+ "printedName": "SubSequence",
1455
+ "children": [
1456
+ {
1457
+ "kind": "TypeNominal",
1458
+ "name": "Substring",
1459
+ "printedName": "Swift.Substring",
1460
+ "usr": "s:Ss"
1461
+ }
1462
+ ]
1463
+ }
1464
+ ],
1465
+ "usr": "s:Sy",
1466
+ "mangledName": "$sSy"
1467
+ },
1468
+ {
1469
+ "kind": "Conformance",
1470
+ "name": "ExpressibleByStringInterpolation",
1471
+ "printedName": "ExpressibleByStringInterpolation",
1472
+ "children": [
1473
+ {
1474
+ "kind": "TypeWitness",
1475
+ "name": "StringInterpolation",
1476
+ "printedName": "StringInterpolation",
1477
+ "children": [
1478
+ {
1479
+ "kind": "TypeNominal",
1480
+ "name": "DefaultStringInterpolation",
1481
+ "printedName": "Swift.DefaultStringInterpolation",
1482
+ "usr": "s:s26DefaultStringInterpolationV"
1483
+ }
1484
+ ]
1485
+ }
1486
+ ],
1487
+ "usr": "s:s32ExpressibleByStringInterpolationP",
1488
+ "mangledName": "$ss32ExpressibleByStringInterpolationP"
1489
+ },
1490
+ {
1491
+ "kind": "Conformance",
1492
+ "name": "LosslessStringConvertible",
1493
+ "printedName": "LosslessStringConvertible",
1494
+ "usr": "s:s25LosslessStringConvertibleP",
1495
+ "mangledName": "$ss25LosslessStringConvertibleP"
1496
+ },
1497
+ {
1498
+ "kind": "Conformance",
1499
+ "name": "RangeReplaceableCollection",
1500
+ "printedName": "RangeReplaceableCollection",
1501
+ "children": [
1502
+ {
1503
+ "kind": "TypeWitness",
1504
+ "name": "SubSequence",
1505
+ "printedName": "SubSequence",
1506
+ "children": [
1507
+ {
1508
+ "kind": "TypeNominal",
1509
+ "name": "Substring",
1510
+ "printedName": "Swift.Substring",
1511
+ "usr": "s:Ss"
1512
+ }
1513
+ ]
1514
+ }
1515
+ ],
1516
+ "usr": "s:Sm",
1517
+ "mangledName": "$sSm"
1518
+ },
1519
+ {
1520
+ "kind": "Conformance",
1521
+ "name": "MirrorPath",
1522
+ "printedName": "MirrorPath",
1523
+ "usr": "s:s10MirrorPathP",
1524
+ "mangledName": "$ss10MirrorPathP"
1525
+ },
1526
+ {
1527
+ "kind": "Conformance",
1528
+ "name": "_ObjectiveCBridgeable",
1529
+ "printedName": "_ObjectiveCBridgeable",
1530
+ "children": [
1531
+ {
1532
+ "kind": "TypeWitness",
1533
+ "name": "_ObjectiveCType",
1534
+ "printedName": "_ObjectiveCType",
1535
+ "children": [
1536
+ {
1537
+ "kind": "TypeNominal",
1538
+ "name": "NSString",
1539
+ "printedName": "Foundation.NSString",
1540
+ "usr": "c:objc(cs)NSString"
1541
+ }
1542
+ ]
1543
+ }
1544
+ ],
1545
+ "usr": "s:s21_ObjectiveCBridgeableP",
1546
+ "mangledName": "$ss21_ObjectiveCBridgeableP"
1547
+ },
1548
+ {
1549
+ "kind": "Conformance",
1550
+ "name": "CVarArg",
1551
+ "printedName": "CVarArg",
1552
+ "usr": "s:s7CVarArgP",
1553
+ "mangledName": "$ss7CVarArgP"
1554
+ },
1555
+ {
1556
+ "kind": "Conformance",
1557
+ "name": "Transferable",
1558
+ "printedName": "Transferable",
1559
+ "children": [
1560
+ {
1561
+ "kind": "TypeWitness",
1562
+ "name": "Representation",
1563
+ "printedName": "Representation",
1564
+ "children": [
1565
+ {
1566
+ "kind": "TypeNominal",
1567
+ "name": "OpaqueTypeArchetype",
1568
+ "printedName": "some CoreTransferable.TransferRepresentation",
1569
+ "children": [
1570
+ {
1571
+ "kind": "TypeNominal",
1572
+ "name": "TransferRepresentation",
1573
+ "printedName": "CoreTransferable.TransferRepresentation",
1574
+ "usr": "s:16CoreTransferable22TransferRepresentationP"
1575
+ },
1576
+ {
1577
+ "kind": "TypeNominal",
1578
+ "name": "Sendable",
1579
+ "printedName": "Swift.Sendable",
1580
+ "usr": "s:s8SendableP"
1581
+ }
1582
+ ]
1583
+ }
1584
+ ]
1585
+ }
1586
+ ],
1587
+ "usr": "s:16CoreTransferable0B0P",
1588
+ "mangledName": "$s16CoreTransferable0B0P"
1589
+ }
1590
+ ]
1591
+ }
1592
+ ],
1593
+ "json_format_version": 8
1594
+ },
1595
+ "ConstValues": [
1596
+ {
1597
+ "filePath": "\/Users\/sheelpatel\/Documents\/doorstepai\/doorstepai-track\/iOS\/DoorstepDropoffSDK\/DoorstepDropoffSDK\/src\/DataManager.swift",
1598
+ "kind": "Array",
1599
+ "offset": 541,
1600
+ "length": 2,
1601
+ "value": "[]"
1602
+ },
1603
+ {
1604
+ "filePath": "\/Users\/sheelpatel\/Documents\/doorstepai\/doorstepai-track\/iOS\/DoorstepDropoffSDK\/DoorstepDropoffSDK\/src\/DataManager.swift",
1605
+ "kind": "Array",
1606
+ "offset": 588,
1607
+ "length": 2,
1608
+ "value": "[]"
1609
+ },
1610
+ {
1611
+ "filePath": "\/Users\/sheelpatel\/Documents\/doorstepai\/doorstepai-track\/iOS\/DoorstepDropoffSDK\/DoorstepDropoffSDK\/src\/DataManager.swift",
1612
+ "kind": "Array",
1613
+ "offset": 635,
1614
+ "length": 2,
1615
+ "value": "[]"
1616
+ },
1617
+ {
1618
+ "filePath": "\/Users\/sheelpatel\/Documents\/doorstepai\/doorstepai-track\/iOS\/DoorstepDropoffSDK\/DoorstepDropoffSDK\/src\/DataManager.swift",
1619
+ "kind": "Array",
1620
+ "offset": 680,
1621
+ "length": 2,
1622
+ "value": "[]"
1623
+ },
1624
+ {
1625
+ "filePath": "\/Users\/sheelpatel\/Documents\/doorstepai\/doorstepai-track\/iOS\/DoorstepDropoffSDK\/DoorstepDropoffSDK\/src\/DataManager.swift",
1626
+ "kind": "Array",
1627
+ "offset": 792,
1628
+ "length": 2,
1629
+ "value": "[]"
1630
+ },
1631
+ {
1632
+ "filePath": "\/Users\/sheelpatel\/Documents\/doorstepai\/doorstepai-track\/iOS\/DoorstepDropoffSDK\/DoorstepDropoffSDK\/src\/DataManager.swift",
1633
+ "kind": "IntegerLiteral",
1634
+ "offset": 843,
1635
+ "length": 2,
1636
+ "value": "10"
1637
+ },
1638
+ {
1639
+ "filePath": "\/Users\/sheelpatel\/Documents\/doorstepai\/doorstepai-track\/iOS\/DoorstepDropoffSDK\/DoorstepDropoffSDK\/src\/DataHolder.swift",
1640
+ "kind": "StringLiteral",
1641
+ "offset": 409,
1642
+ "length": 13,
1643
+ "value": "\"dataCollect\""
1644
+ },
1645
+ {
1646
+ "filePath": "\/Users\/sheelpatel\/Documents\/doorstepai\/doorstepai-track\/iOS\/DoorstepDropoffSDK\/DoorstepDropoffSDK\/Environment.swift",
1647
+ "kind": "StringLiteral",
1648
+ "offset": 132,
1649
+ "length": 9,
1650
+ "value": "\"someKey\""
1651
+ },
1652
+ {
1653
+ "filePath": "\/Users\/sheelpatel\/Documents\/doorstepai\/doorstepai-track\/iOS\/DoorstepDropoffSDK\/DoorstepDropoffSDK\/Environment.swift",
1654
+ "kind": "StringLiteral",
1655
+ "offset": 167,
1656
+ "length": 21,
1657
+ "value": "\"https:\/\/someurl.com\""
1658
+ },
1659
+ {
1660
+ "filePath": "\/Users\/sheelpatel\/Documents\/doorstepai\/doorstepai-track\/iOS\/DoorstepDropoffSDK\/DoorstepDropoffSDK\/src\/Sensors\/LocationManager.swift",
1661
+ "kind": "BooleanLiteral",
1662
+ "offset": 909,
1663
+ "length": 5,
1664
+ "value": "false"
1665
+ },
1666
+ {
1667
+ "filePath": "\/Users\/sheelpatel\/Documents\/doorstepai\/doorstepai-track\/iOS\/DoorstepDropoffSDK\/DoorstepDropoffSDK\/src\/Sensors\/LocationManager.swift",
1668
+ "kind": "StringLiteral",
1669
+ "offset": 665,
1670
+ "length": 15,
1671
+ "value": "\"DoorstepDropoffSDK.LocationManager\""
1672
+ },
1673
+ {
1674
+ "filePath": "\/Users\/sheelpatel\/Documents\/doorstepai\/doorstepai-track\/iOS\/DoorstepDropoffSDK\/DoorstepDropoffSDK\/src\/Network.swift",
1675
+ "kind": "StringLiteral",
1676
+ "offset": 2276,
1677
+ "length": 42,
1678
+ "value": "\"https:\/\/collection.api.track.doorstep.ai\""
1679
+ },
1680
+ {
1681
+ "filePath": "\/Users\/sheelpatel\/Documents\/doorstepai\/doorstepai-track\/iOS\/DoorstepDropoffSDK\/DoorstepDropoffSDK\/src\/Network.swift",
1682
+ "kind": "StringLiteral",
1683
+ "offset": 2347,
1684
+ "length": 2,
1685
+ "value": "\"\""
1686
+ },
1687
+ {
1688
+ "filePath": "\/Users\/sheelpatel\/Documents\/doorstepai\/doorstepai-track\/iOS\/DoorstepDropoffSDK\/DoorstepDropoffSDK\/src\/Network.swift",
1689
+ "kind": "StringLiteral",
1690
+ "offset": 2456,
1691
+ "length": 21,
1692
+ "value": "\"NetworkMonitorQueue\""
1693
+ },
1694
+ {
1695
+ "filePath": "\/Users\/sheelpatel\/Documents\/doorstepai\/doorstepai-track\/iOS\/DoorstepDropoffSDK\/DoorstepDropoffSDK\/src\/Network.swift",
1696
+ "kind": "BooleanLiteral",
1697
+ "offset": 2509,
1698
+ "length": 4,
1699
+ "value": "true"
1700
+ },
1701
+ {
1702
+ "filePath": "\/Users\/sheelpatel\/Documents\/doorstepai\/doorstepai-track\/iOS\/DoorstepDropoffSDK\/DoorstepDropoffSDK\/src\/Network.swift",
1703
+ "kind": "IntegerLiteral",
1704
+ "offset": 2554,
1705
+ "length": 1,
1706
+ "value": "5"
1707
+ },
1708
+ {
1709
+ "filePath": "\/Users\/sheelpatel\/Documents\/doorstepai\/doorstepai-track\/iOS\/DoorstepDropoffSDK\/DoorstepDropoffSDK\/src\/Network.swift",
1710
+ "kind": "IntegerLiteral",
1711
+ "offset": 2599,
1712
+ "length": 2,
1713
+ "value": "20"
1714
+ },
1715
+ {
1716
+ "filePath": "\/Users\/sheelpatel\/Documents\/doorstepai\/doorstepai-track\/iOS\/DoorstepDropoffSDK\/DoorstepDropoffSDK\/src\/Network.swift",
1717
+ "kind": "Array",
1718
+ "offset": 2689,
1719
+ "length": 2,
1720
+ "value": "[]"
1721
+ },
1722
+ {
1723
+ "filePath": "\/Users\/sheelpatel\/Documents\/doorstepai\/doorstepai-track\/iOS\/DoorstepDropoffSDK\/DoorstepDropoffSDK\/src\/Network.swift",
1724
+ "kind": "StringLiteral",
1725
+ "offset": 2744,
1726
+ "length": 24,
1727
+ "value": "\"RequestQueueProcessing\""
1728
+ },
1729
+ {
1730
+ "filePath": "\/Users\/sheelpatel\/Documents\/doorstepai\/doorstepai-track\/iOS\/DoorstepDropoffSDK\/DoorstepDropoffSDK\/src\/Network.swift",
1731
+ "kind": "StringLiteral",
1732
+ "offset": 2822,
1733
+ "length": 24,
1734
+ "value": "\"pendingNetworkRequests\""
1735
+ },
1736
+ {
1737
+ "filePath": "\/Users\/sheelpatel\/Documents\/doorstepai\/doorstepai-track\/iOS\/DoorstepDropoffSDK\/DoorstepDropoffSDK\/src\/Network.swift",
1738
+ "kind": "StringLiteral",
1739
+ "offset": 2931,
1740
+ "length": 9,
1741
+ "value": "\"network\""
1742
+ },
1743
+ {
1744
+ "filePath": "\/Users\/sheelpatel\/Documents\/doorstepai\/doorstepai-track\/iOS\/DoorstepDropoffSDK\/DoorstepDropoffSDK\/src\/Network.swift",
1745
+ "kind": "BooleanLiteral",
1746
+ "offset": 2985,
1747
+ "length": 4,
1748
+ "value": "true"
1749
+ },
1750
+ {
1751
+ "filePath": "\/Users\/sheelpatel\/Documents\/doorstepai\/doorstepai-track\/iOS\/DoorstepDropoffSDK\/DoorstepDropoffSDK\/src\/Network.swift",
1752
+ "kind": "StringLiteral",
1753
+ "offset": 3054,
1754
+ "length": 2,
1755
+ "value": "\"\""
1756
+ },
1757
+ {
1758
+ "filePath": "\/Users\/sheelpatel\/Documents\/doorstepai\/doorstepai-track\/iOS\/DoorstepDropoffSDK\/DoorstepDropoffSDK\/src\/Network.swift",
1759
+ "kind": "IntegerLiteral",
1760
+ "offset": 13246,
1761
+ "length": 1,
1762
+ "value": "0"
1763
+ },
1764
+ {
1765
+ "filePath": "\/Users\/sheelpatel\/Documents\/doorstepai\/doorstepai-track\/iOS\/DoorstepDropoffSDK\/DoorstepDropoffSDK\/src\/Network.swift",
1766
+ "kind": "IntegerLiteral",
1767
+ "offset": 14370,
1768
+ "length": 1,
1769
+ "value": "0"
1770
+ },
1771
+ {
1772
+ "filePath": "\/Users\/sheelpatel\/Documents\/doorstepai\/doorstepai-track\/iOS\/DoorstepDropoffSDK\/DoorstepDropoffSDK\/src\/Sensors\/MotionManager.swift",
1773
+ "kind": "IntegerLiteral",
1774
+ "offset": 3049,
1775
+ "length": 1,
1776
+ "value": "0"
1777
+ }
1778
+ ]
1779
+ }