react-native-radar 4.0.0 → 4.2.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 (81) hide show
  1. package/android/build.gradle +1 -1
  2. package/android/src/main/java/com/radar/RadarModuleImpl.java +110 -0
  3. package/android/src/newarch/java/com/radar/RadarModule.kt +45 -2
  4. package/android/src/oldarch/java/com/radar/RadarModule.java +56 -2
  5. package/dist/@types/RadarNativeInterface.d.ts +9 -2
  6. package/dist/@types/types.d.ts +47 -6
  7. package/dist/NativeRadar.d.ts +8 -1
  8. package/dist/index.native.js +35 -3
  9. package/dist/index.web.d.ts +6 -0
  10. package/dist/index.web.js +17 -0
  11. package/dist/version.d.ts +1 -1
  12. package/dist/version.js +1 -1
  13. package/ios/RNRadar.mm +155 -3
  14. package/ios/RadarSDK.xcframework/ios-arm64/RadarSDK.framework/Headers/Radar.h +108 -0
  15. package/ios/RadarSDK.xcframework/ios-arm64/RadarSDK.framework/Headers/RadarBeacon.h +10 -0
  16. package/ios/RadarSDK.xcframework/ios-arm64/RadarSDK.framework/Headers/RadarCoordinate.h +1 -0
  17. package/ios/RadarSDK.xcframework/ios-arm64/RadarSDK.framework/Headers/RadarGeofence.h +10 -0
  18. package/ios/RadarSDK.xcframework/ios-arm64/RadarSDK.framework/Headers/RadarInitializeOptions.h +0 -1
  19. package/ios/RadarSDK.xcframework/ios-arm64/RadarSDK.framework/Headers/RadarSDK-Swift.h +101 -7
  20. package/ios/RadarSDK.xcframework/ios-arm64/RadarSDK.framework/Headers/RadarSDK.h +1 -1
  21. package/ios/RadarSDK.xcframework/ios-arm64/RadarSDK.framework/Headers/RadarSDKFraudProtocol.h +26 -0
  22. package/ios/RadarSDK.xcframework/ios-arm64/RadarSDK.framework/Headers/RadarSdkConfiguration.h +23 -28
  23. package/ios/RadarSDK.xcframework/ios-arm64/RadarSDK.framework/Headers/RadarTrackingOptions.h +20 -1
  24. package/ios/RadarSDK.xcframework/ios-arm64/RadarSDK.framework/Headers/RadarTrip.h +15 -0
  25. package/ios/RadarSDK.xcframework/ios-arm64/RadarSDK.framework/Headers/RadarTripLeg.h +268 -0
  26. package/ios/RadarSDK.xcframework/ios-arm64/RadarSDK.framework/Headers/RadarTripOptions.h +6 -0
  27. package/ios/RadarSDK.xcframework/ios-arm64/RadarSDK.framework/Headers/RadarTripOrder.h +1 -1
  28. package/ios/RadarSDK.xcframework/ios-arm64/RadarSDK.framework/Headers/RadarUser.h +2 -0
  29. package/ios/RadarSDK.xcframework/ios-arm64/RadarSDK.framework/Info.plist +0 -0
  30. package/ios/RadarSDK.xcframework/ios-arm64/RadarSDK.framework/Modules/RadarSDK.swiftmodule/arm64-apple-ios.abi.json +1702 -209
  31. package/ios/RadarSDK.xcframework/ios-arm64/RadarSDK.framework/Modules/RadarSDK.swiftmodule/arm64-apple-ios.private.swiftinterface +34 -9
  32. package/ios/RadarSDK.xcframework/ios-arm64/RadarSDK.framework/Modules/RadarSDK.swiftmodule/arm64-apple-ios.swiftdoc +0 -0
  33. package/ios/RadarSDK.xcframework/ios-arm64/RadarSDK.framework/Modules/RadarSDK.swiftmodule/arm64-apple-ios.swiftinterface +34 -9
  34. package/ios/RadarSDK.xcframework/ios-arm64/RadarSDK.framework/Modules/module.modulemap +0 -1
  35. package/ios/RadarSDK.xcframework/ios-arm64/RadarSDK.framework/RadarSDK +0 -0
  36. package/ios/RadarSDK.xcframework/ios-arm64_x86_64-simulator/RadarSDK.framework/Headers/Radar.h +108 -0
  37. package/ios/RadarSDK.xcframework/ios-arm64_x86_64-simulator/RadarSDK.framework/Headers/RadarBeacon.h +10 -0
  38. package/ios/RadarSDK.xcframework/ios-arm64_x86_64-simulator/RadarSDK.framework/Headers/RadarCoordinate.h +1 -0
  39. package/ios/RadarSDK.xcframework/ios-arm64_x86_64-simulator/RadarSDK.framework/Headers/RadarGeofence.h +10 -0
  40. package/ios/RadarSDK.xcframework/ios-arm64_x86_64-simulator/RadarSDK.framework/Headers/RadarInitializeOptions.h +0 -1
  41. package/ios/RadarSDK.xcframework/ios-arm64_x86_64-simulator/RadarSDK.framework/Headers/RadarSDK-Swift.h +204 -16
  42. package/ios/RadarSDK.xcframework/ios-arm64_x86_64-simulator/RadarSDK.framework/Headers/RadarSDK.h +1 -1
  43. package/ios/RadarSDK.xcframework/ios-arm64_x86_64-simulator/RadarSDK.framework/Headers/RadarSDKFraudProtocol.h +26 -0
  44. package/ios/RadarSDK.xcframework/ios-arm64_x86_64-simulator/RadarSDK.framework/Headers/RadarSdkConfiguration.h +23 -28
  45. package/ios/RadarSDK.xcframework/ios-arm64_x86_64-simulator/RadarSDK.framework/Headers/RadarTrackingOptions.h +20 -1
  46. package/ios/RadarSDK.xcframework/ios-arm64_x86_64-simulator/RadarSDK.framework/Headers/RadarTrip.h +15 -0
  47. package/ios/RadarSDK.xcframework/ios-arm64_x86_64-simulator/RadarSDK.framework/Headers/RadarTripLeg.h +268 -0
  48. package/ios/RadarSDK.xcframework/ios-arm64_x86_64-simulator/RadarSDK.framework/Headers/RadarTripOptions.h +6 -0
  49. package/ios/RadarSDK.xcframework/ios-arm64_x86_64-simulator/RadarSDK.framework/Headers/RadarTripOrder.h +1 -1
  50. package/ios/RadarSDK.xcframework/ios-arm64_x86_64-simulator/RadarSDK.framework/Headers/RadarUser.h +2 -0
  51. package/ios/RadarSDK.xcframework/ios-arm64_x86_64-simulator/RadarSDK.framework/Info.plist +0 -0
  52. package/ios/RadarSDK.xcframework/ios-arm64_x86_64-simulator/RadarSDK.framework/Modules/RadarSDK.swiftmodule/arm64-apple-ios-simulator.abi.json +1702 -209
  53. package/ios/RadarSDK.xcframework/ios-arm64_x86_64-simulator/RadarSDK.framework/Modules/RadarSDK.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface +34 -9
  54. package/ios/RadarSDK.xcframework/ios-arm64_x86_64-simulator/RadarSDK.framework/Modules/RadarSDK.swiftmodule/arm64-apple-ios-simulator.swiftdoc +0 -0
  55. package/ios/RadarSDK.xcframework/ios-arm64_x86_64-simulator/RadarSDK.framework/Modules/RadarSDK.swiftmodule/arm64-apple-ios-simulator.swiftinterface +34 -9
  56. package/ios/RadarSDK.xcframework/ios-arm64_x86_64-simulator/RadarSDK.framework/Modules/RadarSDK.swiftmodule/x86_64-apple-ios-simulator.abi.json +1702 -209
  57. package/ios/RadarSDK.xcframework/ios-arm64_x86_64-simulator/RadarSDK.framework/Modules/RadarSDK.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface +34 -9
  58. package/ios/RadarSDK.xcframework/ios-arm64_x86_64-simulator/RadarSDK.framework/Modules/RadarSDK.swiftmodule/x86_64-apple-ios-simulator.swiftdoc +0 -0
  59. package/ios/RadarSDK.xcframework/ios-arm64_x86_64-simulator/RadarSDK.framework/Modules/RadarSDK.swiftmodule/x86_64-apple-ios-simulator.swiftinterface +34 -9
  60. package/ios/RadarSDK.xcframework/ios-arm64_x86_64-simulator/RadarSDK.framework/Modules/module.modulemap +0 -1
  61. package/ios/RadarSDK.xcframework/ios-arm64_x86_64-simulator/RadarSDK.framework/RadarSDK +0 -0
  62. package/ios/RadarSDK.xcframework/ios-arm64_x86_64-simulator/RadarSDK.framework/_CodeSignature/CodeDirectory +0 -0
  63. package/ios/RadarSDK.xcframework/ios-arm64_x86_64-simulator/RadarSDK.framework/_CodeSignature/CodeResources +71 -60
  64. package/ios/RadarSDKMotion.xcframework/ios-arm64/RadarSDKMotion.framework/Headers/RadarSDKMotion.h +0 -2
  65. package/ios/RadarSDKMotion.xcframework/ios-arm64/RadarSDKMotion.framework/Info.plist +0 -0
  66. package/ios/RadarSDKMotion.xcframework/ios-arm64/RadarSDKMotion.framework/RadarSDKMotion +0 -0
  67. package/ios/RadarSDKMotion.xcframework/ios-arm64_x86_64-simulator/RadarSDKMotion.framework/Headers/RadarSDKMotion.h +0 -2
  68. package/ios/RadarSDKMotion.xcframework/ios-arm64_x86_64-simulator/RadarSDKMotion.framework/Info.plist +0 -0
  69. package/ios/RadarSDKMotion.xcframework/ios-arm64_x86_64-simulator/RadarSDKMotion.framework/RadarSDKMotion +0 -0
  70. package/ios/RadarSDKMotion.xcframework/ios-arm64_x86_64-simulator/RadarSDKMotion.framework/_CodeSignature/CodeDirectory +0 -0
  71. package/ios/RadarSDKMotion.xcframework/ios-arm64_x86_64-simulator/RadarSDKMotion.framework/_CodeSignature/CodeResources +3 -3
  72. package/package.json +2 -2
  73. package/src/@types/RadarNativeInterface.ts +11 -2
  74. package/src/@types/maplibre-react-native.d.ts +1 -14
  75. package/src/@types/types.ts +65 -7
  76. package/src/NativeRadar.ts +8 -1
  77. package/src/index.native.ts +42 -3
  78. package/src/index.web.js +17 -0
  79. package/src/version.ts +1 -1
  80. package/ios/RadarSDK.xcframework/ios-arm64/RadarSDK.framework/Headers/Radar-Swift.h +0 -7
  81. package/ios/RadarSDK.xcframework/ios-arm64_x86_64-simulator/RadarSDK.framework/Headers/Radar-Swift.h +0 -7
@@ -4,6 +4,23 @@
4
4
  "name": "RadarSDK",
5
5
  "printedName": "RadarSDK",
6
6
  "children": [
7
+ {
8
+ "kind": "Import",
9
+ "name": "Foundation",
10
+ "printedName": "Foundation",
11
+ "declKind": "Import",
12
+ "moduleName": "RadarSDK",
13
+ "declAttributes": [
14
+ "RawDocComment"
15
+ ]
16
+ },
17
+ {
18
+ "kind": "Import",
19
+ "name": "CoreLocation",
20
+ "printedName": "CoreLocation",
21
+ "declKind": "Import",
22
+ "moduleName": "RadarSDK"
23
+ },
7
24
  {
8
25
  "kind": "Import",
9
26
  "name": "SwiftUI",
@@ -24,6 +41,23 @@
24
41
  "RawDocComment"
25
42
  ]
26
43
  },
44
+ {
45
+ "kind": "Import",
46
+ "name": "CoreLocation",
47
+ "printedName": "CoreLocation",
48
+ "declKind": "Import",
49
+ "moduleName": "RadarSDK"
50
+ },
51
+ {
52
+ "kind": "Import",
53
+ "name": "Foundation",
54
+ "printedName": "Foundation",
55
+ "declKind": "Import",
56
+ "moduleName": "RadarSDK",
57
+ "declAttributes": [
58
+ "RawDocComment"
59
+ ]
60
+ },
27
61
  {
28
62
  "kind": "Import",
29
63
  "name": "SwiftUI",
@@ -304,31 +338,17 @@
304
338
  "conformances": [
305
339
  {
306
340
  "kind": "Conformance",
307
- "name": "Copyable",
308
- "printedName": "Copyable",
309
- "usr": "s:s8CopyableP",
310
- "mangledName": "$ss8CopyableP"
311
- },
312
- {
313
- "kind": "Conformance",
314
- "name": "Escapable",
315
- "printedName": "Escapable",
316
- "usr": "s:s9EscapableP",
317
- "mangledName": "$ss9EscapableP"
318
- },
319
- {
320
- "kind": "Conformance",
321
- "name": "Equatable",
322
- "printedName": "Equatable",
323
- "usr": "s:SQ",
324
- "mangledName": "$sSQ"
341
+ "name": "_KeyValueCodingAndObserving",
342
+ "printedName": "_KeyValueCodingAndObserving",
343
+ "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
344
+ "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
325
345
  },
326
346
  {
327
347
  "kind": "Conformance",
328
- "name": "Hashable",
329
- "printedName": "Hashable",
330
- "usr": "s:SH",
331
- "mangledName": "$sSH"
348
+ "name": "_KeyValueCodingAndObservingPublishing",
349
+ "printedName": "_KeyValueCodingAndObservingPublishing",
350
+ "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
351
+ "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
332
352
  },
333
353
  {
334
354
  "kind": "Conformance",
@@ -339,17 +359,17 @@
339
359
  },
340
360
  {
341
361
  "kind": "Conformance",
342
- "name": "_KeyValueCodingAndObservingPublishing",
343
- "printedName": "_KeyValueCodingAndObservingPublishing",
344
- "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
345
- "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
362
+ "name": "Copyable",
363
+ "printedName": "Copyable",
364
+ "usr": "s:s8CopyableP",
365
+ "mangledName": "$ss8CopyableP"
346
366
  },
347
367
  {
348
368
  "kind": "Conformance",
349
- "name": "_KeyValueCodingAndObserving",
350
- "printedName": "_KeyValueCodingAndObserving",
351
- "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
352
- "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
369
+ "name": "CustomDebugStringConvertible",
370
+ "printedName": "CustomDebugStringConvertible",
371
+ "usr": "s:s28CustomDebugStringConvertibleP",
372
+ "mangledName": "$ss28CustomDebugStringConvertibleP"
353
373
  },
354
374
  {
355
375
  "kind": "Conformance",
@@ -360,10 +380,24 @@
360
380
  },
361
381
  {
362
382
  "kind": "Conformance",
363
- "name": "CustomDebugStringConvertible",
364
- "printedName": "CustomDebugStringConvertible",
365
- "usr": "s:s28CustomDebugStringConvertibleP",
366
- "mangledName": "$ss28CustomDebugStringConvertibleP"
383
+ "name": "Equatable",
384
+ "printedName": "Equatable",
385
+ "usr": "s:SQ",
386
+ "mangledName": "$sSQ"
387
+ },
388
+ {
389
+ "kind": "Conformance",
390
+ "name": "Escapable",
391
+ "printedName": "Escapable",
392
+ "usr": "s:s9EscapableP",
393
+ "mangledName": "$ss9EscapableP"
394
+ },
395
+ {
396
+ "kind": "Conformance",
397
+ "name": "Hashable",
398
+ "printedName": "Hashable",
399
+ "usr": "s:SH",
400
+ "mangledName": "$sSH"
367
401
  },
368
402
  {
369
403
  "kind": "Conformance",
@@ -384,6 +418,23 @@
384
418
  "RawDocComment"
385
419
  ]
386
420
  },
421
+ {
422
+ "kind": "Import",
423
+ "name": "CoreLocation",
424
+ "printedName": "CoreLocation",
425
+ "declKind": "Import",
426
+ "moduleName": "RadarSDK"
427
+ },
428
+ {
429
+ "kind": "Import",
430
+ "name": "Foundation",
431
+ "printedName": "Foundation",
432
+ "declKind": "Import",
433
+ "moduleName": "RadarSDK",
434
+ "declAttributes": [
435
+ "RawDocComment"
436
+ ]
437
+ },
387
438
  {
388
439
  "kind": "Import",
389
440
  "name": "Foundation",
@@ -515,20 +566,47 @@
515
566
  },
516
567
  {
517
568
  "kind": "Import",
518
- "name": "OSLog",
519
- "printedName": "OSLog",
569
+ "name": "Foundation",
570
+ "printedName": "Foundation",
571
+ "declKind": "Import",
572
+ "moduleName": "RadarSDK",
573
+ "declAttributes": [
574
+ "RawDocComment"
575
+ ]
576
+ },
577
+ {
578
+ "kind": "Import",
579
+ "name": "CoreLocation",
580
+ "printedName": "CoreLocation",
581
+ "declKind": "Import",
582
+ "moduleName": "RadarSDK"
583
+ },
584
+ {
585
+ "kind": "Import",
586
+ "name": "Foundation",
587
+ "printedName": "Foundation",
588
+ "declKind": "Import",
589
+ "moduleName": "RadarSDK",
590
+ "declAttributes": [
591
+ "RawDocComment"
592
+ ]
593
+ },
594
+ {
595
+ "kind": "Import",
596
+ "name": "CoreLocation",
597
+ "printedName": "CoreLocation",
520
598
  "declKind": "Import",
521
599
  "moduleName": "RadarSDK"
522
600
  },
523
601
  {
524
602
  "kind": "TypeDecl",
525
- "name": "RadarLogger",
526
- "printedName": "RadarLogger",
603
+ "name": "RadarSyncManager",
604
+ "printedName": "RadarSyncManager",
527
605
  "children": [
528
606
  {
529
607
  "kind": "Function",
530
- "name": "setDelegate",
531
- "printedName": "setDelegate(_:)",
608
+ "name": "start",
609
+ "printedName": "start(interval:)",
532
610
  "children": [
533
611
  {
534
612
  "kind": "TypeNominal",
@@ -537,101 +615,825 @@
537
615
  },
538
616
  {
539
617
  "kind": "TypeNominal",
540
- "name": "RadarDelegate",
541
- "printedName": "any RadarSDK.RadarDelegate",
542
- "usr": "c:objc(pl)RadarDelegate"
618
+ "name": "Double",
619
+ "printedName": "Swift.Double",
620
+ "usr": "s:Sd"
543
621
  }
544
622
  ],
545
623
  "declKind": "Func",
546
- "usr": "c:@M@RadarSDK@objc(cs)RadarLogger_Swift(cm)setDelegate:",
547
- "mangledName": "$s8RadarSDK0A6LoggerC11setDelegateyySo0aE0_pFZ",
624
+ "usr": "c:@M@RadarSDK@objc(cs)RadarSyncManager(cm)startWithInterval:",
625
+ "mangledName": "$s8RadarSDK0A11SyncManagerC5start8intervalySd_tFZ",
548
626
  "moduleName": "RadarSDK",
549
627
  "static": true,
628
+ "objc_name": "startWithInterval:",
550
629
  "declAttributes": [
551
630
  "Final",
552
631
  "AccessControl",
553
632
  "ObjC",
554
- "Custom"
633
+ "RawDocComment"
555
634
  ],
556
635
  "funcSelfKind": "NonMutating"
557
636
  },
558
637
  {
559
- "kind": "Constructor",
560
- "name": "init",
561
- "printedName": "init()",
638
+ "kind": "Function",
639
+ "name": "stop",
640
+ "printedName": "stop()",
562
641
  "children": [
563
642
  {
564
643
  "kind": "TypeNominal",
565
- "name": "RadarLogger",
566
- "printedName": "RadarSDK.RadarLogger",
567
- "usr": "c:@M@RadarSDK@objc(cs)RadarLogger_Swift"
644
+ "name": "Void",
645
+ "printedName": "()"
568
646
  }
569
647
  ],
570
- "declKind": "Constructor",
571
- "usr": "c:@M@RadarSDK@objc(cs)RadarLogger_Swift(im)init",
572
- "mangledName": "$s8RadarSDK0A6LoggerCACycfc",
648
+ "declKind": "Func",
649
+ "usr": "c:@M@RadarSDK@objc(cs)RadarSyncManager(cm)stop",
650
+ "mangledName": "$s8RadarSDK0A11SyncManagerC4stopyyFZ",
573
651
  "moduleName": "RadarSDK",
574
- "overriding": true,
575
- "implicit": true,
576
- "objc_name": "init",
652
+ "static": true,
577
653
  "declAttributes": [
578
- "Dynamic",
579
- "ObjC",
580
- "Override"
654
+ "Final",
655
+ "AccessControl",
656
+ "ObjC"
581
657
  ],
582
- "init_kind": "Designated"
583
- }
584
- ],
585
- "declKind": "Class",
586
- "usr": "c:@M@RadarSDK@objc(cs)RadarLogger_Swift",
587
- "mangledName": "$s8RadarSDK0A6LoggerC",
588
- "moduleName": "RadarSDK",
589
- "objc_name": "RadarLogger_Swift",
590
- "declAttributes": [
591
- "Final",
592
- "AccessControl",
593
- "ObjC"
594
- ],
595
- "superclassUsr": "c:objc(cs)NSObject",
596
- "inheritsConvenienceInitializers": true,
597
- "superclassNames": [
598
- "ObjectiveC.NSObject"
599
- ],
600
- "conformances": [
601
- {
602
- "kind": "Conformance",
603
- "name": "Sendable",
604
- "printedName": "Sendable",
605
- "usr": "s:s8SendableP",
606
- "mangledName": "$ss8SendableP"
658
+ "funcSelfKind": "NonMutating"
607
659
  },
608
660
  {
609
- "kind": "Conformance",
610
- "name": "Copyable",
611
- "printedName": "Copyable",
612
- "usr": "s:s8CopyableP",
613
- "mangledName": "$ss8CopyableP"
661
+ "kind": "Function",
662
+ "name": "fetchSyncRegion",
663
+ "printedName": "fetchSyncRegion()",
664
+ "children": [
665
+ {
666
+ "kind": "TypeNominal",
667
+ "name": "Void",
668
+ "printedName": "()"
669
+ }
670
+ ],
671
+ "declKind": "Func",
672
+ "usr": "c:@M@RadarSDK@objc(cs)RadarSyncManager(cm)fetchSyncRegion",
673
+ "mangledName": "$s8RadarSDK0A11SyncManagerC05fetchC6RegionyyFZ",
674
+ "moduleName": "RadarSDK",
675
+ "static": true,
676
+ "declAttributes": [
677
+ "Final",
678
+ "AccessControl",
679
+ "ObjC",
680
+ "RawDocComment"
681
+ ],
682
+ "funcSelfKind": "NonMutating"
614
683
  },
615
684
  {
616
- "kind": "Conformance",
617
- "name": "Escapable",
618
- "printedName": "Escapable",
619
- "usr": "s:s9EscapableP",
620
- "mangledName": "$ss9EscapableP"
685
+ "kind": "Function",
686
+ "name": "shouldTrack",
687
+ "printedName": "shouldTrack(location:options:)",
688
+ "children": [
689
+ {
690
+ "kind": "TypeNominal",
691
+ "name": "Bool",
692
+ "printedName": "Swift.Bool",
693
+ "usr": "s:Sb"
694
+ },
695
+ {
696
+ "kind": "TypeNominal",
697
+ "name": "CLLocation",
698
+ "printedName": "_LocationEssentials.CLLocation",
699
+ "usr": "c:objc(cs)CLLocation"
700
+ },
701
+ {
702
+ "kind": "TypeNominal",
703
+ "name": "RadarTrackingOptions",
704
+ "printedName": "RadarSDK.RadarTrackingOptions",
705
+ "usr": "c:objc(cs)RadarTrackingOptions"
706
+ }
707
+ ],
708
+ "declKind": "Func",
709
+ "usr": "c:@M@RadarSDK@objc(cs)RadarSyncManager(cm)shouldTrackWithLocation:options:",
710
+ "mangledName": "$s8RadarSDK0A11SyncManagerC11shouldTrack8location7optionsSbSo10CLLocationC_So0A15TrackingOptionsCtFZ",
711
+ "moduleName": "RadarSDK",
712
+ "static": true,
713
+ "objc_name": "shouldTrackWithLocation:options:",
714
+ "declAttributes": [
715
+ "Final",
716
+ "AccessControl",
717
+ "ObjC",
718
+ "RawDocComment"
719
+ ],
720
+ "funcSelfKind": "NonMutating"
621
721
  },
622
722
  {
623
- "kind": "Conformance",
624
- "name": "Equatable",
625
- "printedName": "Equatable",
626
- "usr": "s:SQ",
627
- "mangledName": "$sSQ"
628
- },
723
+ "kind": "Function",
724
+ "name": "isNearSyncedRegionBoundary",
725
+ "printedName": "isNearSyncedRegionBoundary(location:)",
726
+ "children": [
727
+ {
728
+ "kind": "TypeNominal",
729
+ "name": "Bool",
730
+ "printedName": "Swift.Bool",
731
+ "usr": "s:Sb"
732
+ },
733
+ {
734
+ "kind": "TypeNominal",
735
+ "name": "CLLocation",
736
+ "printedName": "_LocationEssentials.CLLocation",
737
+ "usr": "c:objc(cs)CLLocation"
738
+ }
739
+ ],
740
+ "declKind": "Func",
741
+ "usr": "c:@M@RadarSDK@objc(cs)RadarSyncManager(cm)isNearSyncedRegionBoundaryWithLocation:",
742
+ "mangledName": "$s8RadarSDK0A11SyncManagerC26isNearSyncedRegionBoundary8locationSbSo10CLLocationC_tFZ",
743
+ "moduleName": "RadarSDK",
744
+ "static": true,
745
+ "objc_name": "isNearSyncedRegionBoundaryWithLocation:",
746
+ "declAttributes": [
747
+ "Final",
748
+ "AccessControl",
749
+ "ObjC"
750
+ ],
751
+ "funcSelfKind": "NonMutating"
752
+ },
753
+ {
754
+ "kind": "Function",
755
+ "name": "isOutsideSyncedRegion",
756
+ "printedName": "isOutsideSyncedRegion(location:)",
757
+ "children": [
758
+ {
759
+ "kind": "TypeNominal",
760
+ "name": "Bool",
761
+ "printedName": "Swift.Bool",
762
+ "usr": "s:Sb"
763
+ },
764
+ {
765
+ "kind": "TypeNominal",
766
+ "name": "CLLocation",
767
+ "printedName": "_LocationEssentials.CLLocation",
768
+ "usr": "c:objc(cs)CLLocation"
769
+ }
770
+ ],
771
+ "declKind": "Func",
772
+ "usr": "c:@M@RadarSDK@objc(cs)RadarSyncManager(cm)isOutsideSyncedRegionWithLocation:",
773
+ "mangledName": "$s8RadarSDK0A11SyncManagerC21isOutsideSyncedRegion8locationSbSo10CLLocationC_tFZ",
774
+ "moduleName": "RadarSDK",
775
+ "static": true,
776
+ "objc_name": "isOutsideSyncedRegionWithLocation:",
777
+ "declAttributes": [
778
+ "Final",
779
+ "AccessControl",
780
+ "ObjC"
781
+ ],
782
+ "funcSelfKind": "NonMutating"
783
+ },
784
+ {
785
+ "kind": "Function",
786
+ "name": "isPoint",
787
+ "printedName": "isPoint(_:insideCircleWithCenter:radius:)",
788
+ "children": [
789
+ {
790
+ "kind": "TypeNominal",
791
+ "name": "Bool",
792
+ "printedName": "Swift.Bool",
793
+ "usr": "s:Sb"
794
+ },
795
+ {
796
+ "kind": "TypeNominal",
797
+ "name": "CLLocation",
798
+ "printedName": "_LocationEssentials.CLLocation",
799
+ "usr": "c:objc(cs)CLLocation"
800
+ },
801
+ {
802
+ "kind": "TypeNominal",
803
+ "name": "CLLocationCoordinate2D",
804
+ "printedName": "_LocationEssentials.CLLocationCoordinate2D",
805
+ "usr": "c:@S@CLLocationCoordinate2D"
806
+ },
807
+ {
808
+ "kind": "TypeNominal",
809
+ "name": "Double",
810
+ "printedName": "Swift.Double",
811
+ "usr": "s:Sd"
812
+ }
813
+ ],
814
+ "declKind": "Func",
815
+ "usr": "c:@M@RadarSDK@objc(cs)RadarSyncManager(cm)isPoint:insideCircleWithCenter:radius:",
816
+ "mangledName": "$s8RadarSDK0A11SyncManagerC7isPoint_22insideCircleWithCenter6radiusSbSo10CLLocationC_So0L12Coordinate2DVSdtFZ",
817
+ "moduleName": "RadarSDK",
818
+ "static": true,
819
+ "declAttributes": [
820
+ "Final",
821
+ "AccessControl",
822
+ "ObjC",
823
+ "RawDocComment"
824
+ ],
825
+ "funcSelfKind": "NonMutating"
826
+ },
827
+ {
828
+ "kind": "Function",
829
+ "name": "hasSyncedRegion",
830
+ "printedName": "hasSyncedRegion()",
831
+ "children": [
832
+ {
833
+ "kind": "TypeNominal",
834
+ "name": "Bool",
835
+ "printedName": "Swift.Bool",
836
+ "usr": "s:Sb"
837
+ }
838
+ ],
839
+ "declKind": "Func",
840
+ "usr": "c:@M@RadarSDK@objc(cs)RadarSyncManager(cm)hasSyncedRegion",
841
+ "mangledName": "$s8RadarSDK0A11SyncManagerC15hasSyncedRegionSbyFZ",
842
+ "moduleName": "RadarSDK",
843
+ "static": true,
844
+ "declAttributes": [
845
+ "Final",
846
+ "AccessControl",
847
+ "ObjC",
848
+ "RawDocComment"
849
+ ],
850
+ "funcSelfKind": "NonMutating"
851
+ },
852
+ {
853
+ "kind": "Function",
854
+ "name": "hasGeofenceStateChanged",
855
+ "printedName": "hasGeofenceStateChanged(location:)",
856
+ "children": [
857
+ {
858
+ "kind": "TypeNominal",
859
+ "name": "Bool",
860
+ "printedName": "Swift.Bool",
861
+ "usr": "s:Sb"
862
+ },
863
+ {
864
+ "kind": "TypeNominal",
865
+ "name": "CLLocation",
866
+ "printedName": "_LocationEssentials.CLLocation",
867
+ "usr": "c:objc(cs)CLLocation"
868
+ }
869
+ ],
870
+ "declKind": "Func",
871
+ "usr": "c:@M@RadarSDK@objc(cs)RadarSyncManager(cm)hasGeofenceStateChangedWithLocation:",
872
+ "mangledName": "$s8RadarSDK0A11SyncManagerC23hasGeofenceStateChanged8locationSbSo10CLLocationC_tFZ",
873
+ "moduleName": "RadarSDK",
874
+ "static": true,
875
+ "objc_name": "hasGeofenceStateChangedWithLocation:",
876
+ "declAttributes": [
877
+ "Final",
878
+ "AccessControl",
879
+ "ObjC"
880
+ ],
881
+ "funcSelfKind": "NonMutating"
882
+ },
883
+ {
884
+ "kind": "Function",
885
+ "name": "hasBeaconStateChanged",
886
+ "printedName": "hasBeaconStateChanged(rangedBeaconIds:)",
887
+ "children": [
888
+ {
889
+ "kind": "TypeNominal",
890
+ "name": "Bool",
891
+ "printedName": "Swift.Bool",
892
+ "usr": "s:Sb"
893
+ },
894
+ {
895
+ "kind": "TypeNominal",
896
+ "name": "Set",
897
+ "printedName": "Swift.Set<Swift.String>",
898
+ "children": [
899
+ {
900
+ "kind": "TypeNominal",
901
+ "name": "String",
902
+ "printedName": "Swift.String",
903
+ "usr": "s:SS"
904
+ }
905
+ ],
906
+ "usr": "s:Sh"
907
+ }
908
+ ],
909
+ "declKind": "Func",
910
+ "usr": "c:@M@RadarSDK@objc(cs)RadarSyncManager(cm)hasBeaconStateChangedWithRangedBeaconIds:",
911
+ "mangledName": "$s8RadarSDK0A11SyncManagerC21hasBeaconStateChanged06rangedF3IdsSbShySSG_tFZ",
912
+ "moduleName": "RadarSDK",
913
+ "static": true,
914
+ "objc_name": "hasBeaconStateChangedWithRangedBeaconIds:",
915
+ "declAttributes": [
916
+ "Final",
917
+ "AccessControl",
918
+ "ObjC"
919
+ ],
920
+ "funcSelfKind": "NonMutating"
921
+ },
922
+ {
923
+ "kind": "Function",
924
+ "name": "hasPlaceStateChanged",
925
+ "printedName": "hasPlaceStateChanged(location:)",
926
+ "children": [
927
+ {
928
+ "kind": "TypeNominal",
929
+ "name": "Bool",
930
+ "printedName": "Swift.Bool",
931
+ "usr": "s:Sb"
932
+ },
933
+ {
934
+ "kind": "TypeNominal",
935
+ "name": "CLLocation",
936
+ "printedName": "_LocationEssentials.CLLocation",
937
+ "usr": "c:objc(cs)CLLocation"
938
+ }
939
+ ],
940
+ "declKind": "Func",
941
+ "usr": "c:@M@RadarSDK@objc(cs)RadarSyncManager(cm)hasPlaceStateChangedWithLocation:",
942
+ "mangledName": "$s8RadarSDK0A11SyncManagerC20hasPlaceStateChanged8locationSbSo10CLLocationC_tFZ",
943
+ "moduleName": "RadarSDK",
944
+ "static": true,
945
+ "objc_name": "hasPlaceStateChangedWithLocation:",
946
+ "declAttributes": [
947
+ "Final",
948
+ "AccessControl",
949
+ "ObjC"
950
+ ],
951
+ "funcSelfKind": "NonMutating"
952
+ },
953
+ {
954
+ "kind": "Function",
955
+ "name": "reconcileSyncState",
956
+ "printedName": "reconcileSyncState(user:)",
957
+ "children": [
958
+ {
959
+ "kind": "TypeNominal",
960
+ "name": "Void",
961
+ "printedName": "()"
962
+ },
963
+ {
964
+ "kind": "TypeNominal",
965
+ "name": "RadarUser",
966
+ "printedName": "RadarSDK.RadarUser",
967
+ "usr": "c:objc(cs)RadarUser"
968
+ }
969
+ ],
970
+ "declKind": "Func",
971
+ "usr": "c:@M@RadarSDK@objc(cs)RadarSyncManager(cm)reconcileSyncStateWithUser:",
972
+ "mangledName": "$s8RadarSDK0A11SyncManagerC09reconcileC5State4userySo0A4UserC_tFZ",
973
+ "moduleName": "RadarSDK",
974
+ "static": true,
975
+ "objc_name": "reconcileSyncStateWithUser:",
976
+ "declAttributes": [
977
+ "Final",
978
+ "AccessControl",
979
+ "ObjC"
980
+ ],
981
+ "funcSelfKind": "NonMutating"
982
+ },
983
+ {
984
+ "kind": "Function",
985
+ "name": "saveBeaconState",
986
+ "printedName": "saveBeaconState(beaconIds:)",
987
+ "children": [
988
+ {
989
+ "kind": "TypeNominal",
990
+ "name": "Void",
991
+ "printedName": "()"
992
+ },
993
+ {
994
+ "kind": "TypeNominal",
995
+ "name": "Array",
996
+ "printedName": "[Swift.String]",
997
+ "children": [
998
+ {
999
+ "kind": "TypeNominal",
1000
+ "name": "String",
1001
+ "printedName": "Swift.String",
1002
+ "usr": "s:SS"
1003
+ }
1004
+ ],
1005
+ "usr": "s:Sa"
1006
+ }
1007
+ ],
1008
+ "declKind": "Func",
1009
+ "usr": "c:@M@RadarSDK@objc(cs)RadarSyncManager(cm)saveBeaconStateWithBeaconIds:",
1010
+ "mangledName": "$s8RadarSDK0A11SyncManagerC15saveBeaconState9beaconIdsySaySSG_tFZ",
1011
+ "moduleName": "RadarSDK",
1012
+ "static": true,
1013
+ "objc_name": "saveBeaconStateWithBeaconIds:",
1014
+ "declAttributes": [
1015
+ "Final",
1016
+ "AccessControl",
1017
+ "ObjC"
1018
+ ],
1019
+ "funcSelfKind": "NonMutating"
1020
+ },
1021
+ {
1022
+ "kind": "Function",
1023
+ "name": "rollbackSyncState",
1024
+ "printedName": "rollbackSyncState()",
1025
+ "children": [
1026
+ {
1027
+ "kind": "TypeNominal",
1028
+ "name": "Void",
1029
+ "printedName": "()"
1030
+ }
1031
+ ],
1032
+ "declKind": "Func",
1033
+ "usr": "c:@M@RadarSDK@objc(cs)RadarSyncManager(cm)rollbackSyncState",
1034
+ "mangledName": "$s8RadarSDK0A11SyncManagerC08rollbackC5StateyyFZ",
1035
+ "moduleName": "RadarSDK",
1036
+ "static": true,
1037
+ "declAttributes": [
1038
+ "Final",
1039
+ "AccessControl",
1040
+ "ObjC"
1041
+ ],
1042
+ "funcSelfKind": "NonMutating"
1043
+ },
1044
+ {
1045
+ "kind": "Function",
1046
+ "name": "markDwellFired",
1047
+ "printedName": "markDwellFired(_:)",
1048
+ "children": [
1049
+ {
1050
+ "kind": "TypeNominal",
1051
+ "name": "Void",
1052
+ "printedName": "()"
1053
+ },
1054
+ {
1055
+ "kind": "TypeNominal",
1056
+ "name": "String",
1057
+ "printedName": "Swift.String",
1058
+ "usr": "s:SS"
1059
+ }
1060
+ ],
1061
+ "declKind": "Func",
1062
+ "usr": "c:@M@RadarSDK@objc(cs)RadarSyncManager(cm)markDwellFired:",
1063
+ "mangledName": "$s8RadarSDK0A11SyncManagerC14markDwellFiredyySSFZ",
1064
+ "moduleName": "RadarSDK",
1065
+ "static": true,
1066
+ "declAttributes": [
1067
+ "Final",
1068
+ "AccessControl",
1069
+ "ObjC"
1070
+ ],
1071
+ "funcSelfKind": "NonMutating"
1072
+ },
1073
+ {
1074
+ "kind": "Function",
1075
+ "name": "getSyncedRegion",
1076
+ "printedName": "getSyncedRegion()",
1077
+ "children": [
1078
+ {
1079
+ "kind": "TypeNominal",
1080
+ "name": "Optional",
1081
+ "printedName": "CoreLocation.CLCircularRegion?",
1082
+ "children": [
1083
+ {
1084
+ "kind": "TypeNominal",
1085
+ "name": "CLCircularRegion",
1086
+ "printedName": "CoreLocation.CLCircularRegion",
1087
+ "usr": "c:objc(cs)CLCircularRegion"
1088
+ }
1089
+ ],
1090
+ "usr": "s:Sq"
1091
+ }
1092
+ ],
1093
+ "declKind": "Func",
1094
+ "usr": "c:@M@RadarSDK@objc(cs)RadarSyncManager(cm)getSyncedRegion",
1095
+ "mangledName": "$s8RadarSDK0A11SyncManagerC15getSyncedRegionSo010CLCircularG0CSgyFZ",
1096
+ "moduleName": "RadarSDK",
1097
+ "static": true,
1098
+ "declAttributes": [
1099
+ "Final",
1100
+ "AccessControl",
1101
+ "ObjC",
1102
+ "RawDocComment"
1103
+ ],
1104
+ "funcSelfKind": "NonMutating"
1105
+ },
1106
+ {
1107
+ "kind": "Function",
1108
+ "name": "getSyncedStateJSON",
1109
+ "printedName": "getSyncedStateJSON()",
1110
+ "children": [
1111
+ {
1112
+ "kind": "TypeNominal",
1113
+ "name": "Optional",
1114
+ "printedName": "[Swift.String : Any]?",
1115
+ "children": [
1116
+ {
1117
+ "kind": "TypeNominal",
1118
+ "name": "Dictionary",
1119
+ "printedName": "[Swift.String : Any]",
1120
+ "children": [
1121
+ {
1122
+ "kind": "TypeNominal",
1123
+ "name": "String",
1124
+ "printedName": "Swift.String",
1125
+ "usr": "s:SS"
1126
+ },
1127
+ {
1128
+ "kind": "TypeNominal",
1129
+ "name": "ProtocolComposition",
1130
+ "printedName": "Any"
1131
+ }
1132
+ ],
1133
+ "usr": "s:SD"
1134
+ }
1135
+ ],
1136
+ "usr": "s:Sq"
1137
+ }
1138
+ ],
1139
+ "declKind": "Func",
1140
+ "usr": "c:@M@RadarSDK@objc(cs)RadarSyncManager(cm)getSyncedStateJSON",
1141
+ "mangledName": "$s8RadarSDK0A11SyncManagerC18getSyncedStateJSONSDySSypGSgyFZ",
1142
+ "moduleName": "RadarSDK",
1143
+ "static": true,
1144
+ "declAttributes": [
1145
+ "Final",
1146
+ "AccessControl",
1147
+ "ObjC"
1148
+ ],
1149
+ "funcSelfKind": "NonMutating"
1150
+ },
1151
+ {
1152
+ "kind": "Function",
1153
+ "name": "getObjCBeacons",
1154
+ "printedName": "getObjCBeacons(for:)",
1155
+ "children": [
1156
+ {
1157
+ "kind": "TypeNominal",
1158
+ "name": "Array",
1159
+ "printedName": "[RadarSDK.RadarBeacon]",
1160
+ "children": [
1161
+ {
1162
+ "kind": "TypeNominal",
1163
+ "name": "RadarBeacon",
1164
+ "printedName": "RadarSDK.RadarBeacon",
1165
+ "usr": "c:objc(cs)RadarBeacon"
1166
+ }
1167
+ ],
1168
+ "usr": "s:Sa"
1169
+ },
1170
+ {
1171
+ "kind": "TypeNominal",
1172
+ "name": "CLLocation",
1173
+ "printedName": "_LocationEssentials.CLLocation",
1174
+ "usr": "c:objc(cs)CLLocation"
1175
+ }
1176
+ ],
1177
+ "declKind": "Func",
1178
+ "usr": "c:@M@RadarSDK@objc(cs)RadarSyncManager(cm)getObjCBeaconsFor:",
1179
+ "mangledName": "$s8RadarSDK0A11SyncManagerC14getObjCBeacons3forSaySo0A6BeaconCGSo10CLLocationC_tFZ",
1180
+ "moduleName": "RadarSDK",
1181
+ "static": true,
1182
+ "objc_name": "getObjCBeaconsFor:",
1183
+ "declAttributes": [
1184
+ "Final",
1185
+ "AccessControl",
1186
+ "ObjC",
1187
+ "RawDocComment"
1188
+ ],
1189
+ "funcSelfKind": "NonMutating"
1190
+ },
1191
+ {
1192
+ "kind": "Constructor",
1193
+ "name": "init",
1194
+ "printedName": "init()",
1195
+ "children": [
1196
+ {
1197
+ "kind": "TypeNominal",
1198
+ "name": "RadarSyncManager",
1199
+ "printedName": "RadarSDK.RadarSyncManager",
1200
+ "usr": "c:@M@RadarSDK@objc(cs)RadarSyncManager"
1201
+ }
1202
+ ],
1203
+ "declKind": "Constructor",
1204
+ "usr": "c:@M@RadarSDK@objc(cs)RadarSyncManager(im)init",
1205
+ "mangledName": "$s8RadarSDK0A11SyncManagerCACycfc",
1206
+ "moduleName": "RadarSDK",
1207
+ "overriding": true,
1208
+ "implicit": true,
1209
+ "objc_name": "init",
1210
+ "declAttributes": [
1211
+ "Dynamic",
1212
+ "ObjC",
1213
+ "Override"
1214
+ ],
1215
+ "init_kind": "Designated"
1216
+ }
1217
+ ],
1218
+ "declKind": "Class",
1219
+ "usr": "c:@M@RadarSDK@objc(cs)RadarSyncManager",
1220
+ "mangledName": "$s8RadarSDK0A11SyncManagerC",
1221
+ "moduleName": "RadarSDK",
1222
+ "objc_name": "RadarSyncManager",
1223
+ "declAttributes": [
1224
+ "Final",
1225
+ "AccessControl",
1226
+ "ObjC"
1227
+ ],
1228
+ "superclassUsr": "c:objc(cs)NSObject",
1229
+ "inheritsConvenienceInitializers": true,
1230
+ "superclassNames": [
1231
+ "ObjectiveC.NSObject"
1232
+ ],
1233
+ "conformances": [
1234
+ {
1235
+ "kind": "Conformance",
1236
+ "name": "_KeyValueCodingAndObserving",
1237
+ "printedName": "_KeyValueCodingAndObserving",
1238
+ "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
1239
+ "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
1240
+ },
1241
+ {
1242
+ "kind": "Conformance",
1243
+ "name": "_KeyValueCodingAndObservingPublishing",
1244
+ "printedName": "_KeyValueCodingAndObservingPublishing",
1245
+ "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
1246
+ "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
1247
+ },
1248
+ {
1249
+ "kind": "Conformance",
1250
+ "name": "CVarArg",
1251
+ "printedName": "CVarArg",
1252
+ "usr": "s:s7CVarArgP",
1253
+ "mangledName": "$ss7CVarArgP"
1254
+ },
1255
+ {
1256
+ "kind": "Conformance",
1257
+ "name": "Copyable",
1258
+ "printedName": "Copyable",
1259
+ "usr": "s:s8CopyableP",
1260
+ "mangledName": "$ss8CopyableP"
1261
+ },
1262
+ {
1263
+ "kind": "Conformance",
1264
+ "name": "CustomDebugStringConvertible",
1265
+ "printedName": "CustomDebugStringConvertible",
1266
+ "usr": "s:s28CustomDebugStringConvertibleP",
1267
+ "mangledName": "$ss28CustomDebugStringConvertibleP"
1268
+ },
1269
+ {
1270
+ "kind": "Conformance",
1271
+ "name": "CustomStringConvertible",
1272
+ "printedName": "CustomStringConvertible",
1273
+ "usr": "s:s23CustomStringConvertibleP",
1274
+ "mangledName": "$ss23CustomStringConvertibleP"
1275
+ },
1276
+ {
1277
+ "kind": "Conformance",
1278
+ "name": "Equatable",
1279
+ "printedName": "Equatable",
1280
+ "usr": "s:SQ",
1281
+ "mangledName": "$sSQ"
1282
+ },
1283
+ {
1284
+ "kind": "Conformance",
1285
+ "name": "Escapable",
1286
+ "printedName": "Escapable",
1287
+ "usr": "s:s9EscapableP",
1288
+ "mangledName": "$ss9EscapableP"
1289
+ },
629
1290
  {
630
1291
  "kind": "Conformance",
631
1292
  "name": "Hashable",
632
1293
  "printedName": "Hashable",
633
1294
  "usr": "s:SH",
634
1295
  "mangledName": "$sSH"
1296
+ }
1297
+ ]
1298
+ },
1299
+ {
1300
+ "kind": "Import",
1301
+ "name": "Foundation",
1302
+ "printedName": "Foundation",
1303
+ "declKind": "Import",
1304
+ "moduleName": "RadarSDK",
1305
+ "declAttributes": [
1306
+ "RawDocComment"
1307
+ ]
1308
+ },
1309
+ {
1310
+ "kind": "Import",
1311
+ "name": "Foundation",
1312
+ "printedName": "Foundation",
1313
+ "declKind": "Import",
1314
+ "moduleName": "RadarSDK",
1315
+ "declAttributes": [
1316
+ "RawDocComment"
1317
+ ]
1318
+ },
1319
+ {
1320
+ "kind": "Import",
1321
+ "name": "Foundation",
1322
+ "printedName": "Foundation",
1323
+ "declKind": "Import",
1324
+ "moduleName": "RadarSDK",
1325
+ "declAttributes": [
1326
+ "RawDocComment"
1327
+ ]
1328
+ },
1329
+ {
1330
+ "kind": "Import",
1331
+ "name": "Foundation",
1332
+ "printedName": "Foundation",
1333
+ "declKind": "Import",
1334
+ "moduleName": "RadarSDK",
1335
+ "declAttributes": [
1336
+ "RawDocComment"
1337
+ ]
1338
+ },
1339
+ {
1340
+ "kind": "Import",
1341
+ "name": "OSLog",
1342
+ "printedName": "OSLog",
1343
+ "declKind": "Import",
1344
+ "moduleName": "RadarSDK"
1345
+ },
1346
+ {
1347
+ "kind": "TypeDecl",
1348
+ "name": "RadarLogger",
1349
+ "printedName": "RadarLogger",
1350
+ "children": [
1351
+ {
1352
+ "kind": "Function",
1353
+ "name": "setDelegate",
1354
+ "printedName": "setDelegate(_:)",
1355
+ "children": [
1356
+ {
1357
+ "kind": "TypeNominal",
1358
+ "name": "Void",
1359
+ "printedName": "()"
1360
+ },
1361
+ {
1362
+ "kind": "TypeNominal",
1363
+ "name": "RadarDelegate",
1364
+ "printedName": "any RadarSDK.RadarDelegate",
1365
+ "usr": "c:objc(pl)RadarDelegate"
1366
+ }
1367
+ ],
1368
+ "declKind": "Func",
1369
+ "usr": "c:@M@RadarSDK@objc(cs)RadarLogger_Swift(cm)setDelegate:",
1370
+ "mangledName": "$s8RadarSDK0A6LoggerC11setDelegateyySo0aE0_pFZ",
1371
+ "moduleName": "RadarSDK",
1372
+ "static": true,
1373
+ "declAttributes": [
1374
+ "Final",
1375
+ "AccessControl",
1376
+ "ObjC",
1377
+ "Custom"
1378
+ ],
1379
+ "funcSelfKind": "NonMutating"
1380
+ },
1381
+ {
1382
+ "kind": "Constructor",
1383
+ "name": "init",
1384
+ "printedName": "init()",
1385
+ "children": [
1386
+ {
1387
+ "kind": "TypeNominal",
1388
+ "name": "RadarLogger",
1389
+ "printedName": "RadarSDK.RadarLogger",
1390
+ "usr": "c:@M@RadarSDK@objc(cs)RadarLogger_Swift"
1391
+ }
1392
+ ],
1393
+ "declKind": "Constructor",
1394
+ "usr": "c:@M@RadarSDK@objc(cs)RadarLogger_Swift(im)init",
1395
+ "mangledName": "$s8RadarSDK0A6LoggerCACycfc",
1396
+ "moduleName": "RadarSDK",
1397
+ "overriding": true,
1398
+ "implicit": true,
1399
+ "objc_name": "init",
1400
+ "declAttributes": [
1401
+ "Dynamic",
1402
+ "ObjC",
1403
+ "Override"
1404
+ ],
1405
+ "init_kind": "Designated"
1406
+ }
1407
+ ],
1408
+ "declKind": "Class",
1409
+ "usr": "c:@M@RadarSDK@objc(cs)RadarLogger_Swift",
1410
+ "mangledName": "$s8RadarSDK0A6LoggerC",
1411
+ "moduleName": "RadarSDK",
1412
+ "objc_name": "RadarLogger_Swift",
1413
+ "declAttributes": [
1414
+ "Final",
1415
+ "AccessControl",
1416
+ "ObjC"
1417
+ ],
1418
+ "superclassUsr": "c:objc(cs)NSObject",
1419
+ "inheritsConvenienceInitializers": true,
1420
+ "superclassNames": [
1421
+ "ObjectiveC.NSObject"
1422
+ ],
1423
+ "conformances": [
1424
+ {
1425
+ "kind": "Conformance",
1426
+ "name": "_KeyValueCodingAndObserving",
1427
+ "printedName": "_KeyValueCodingAndObserving",
1428
+ "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
1429
+ "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
1430
+ },
1431
+ {
1432
+ "kind": "Conformance",
1433
+ "name": "_KeyValueCodingAndObservingPublishing",
1434
+ "printedName": "_KeyValueCodingAndObservingPublishing",
1435
+ "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
1436
+ "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
635
1437
  },
636
1438
  {
637
1439
  "kind": "Conformance",
@@ -642,17 +1444,17 @@
642
1444
  },
643
1445
  {
644
1446
  "kind": "Conformance",
645
- "name": "_KeyValueCodingAndObservingPublishing",
646
- "printedName": "_KeyValueCodingAndObservingPublishing",
647
- "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
648
- "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
1447
+ "name": "Copyable",
1448
+ "printedName": "Copyable",
1449
+ "usr": "s:s8CopyableP",
1450
+ "mangledName": "$ss8CopyableP"
649
1451
  },
650
1452
  {
651
1453
  "kind": "Conformance",
652
- "name": "_KeyValueCodingAndObserving",
653
- "printedName": "_KeyValueCodingAndObserving",
654
- "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
655
- "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
1454
+ "name": "CustomDebugStringConvertible",
1455
+ "printedName": "CustomDebugStringConvertible",
1456
+ "usr": "s:s28CustomDebugStringConvertibleP",
1457
+ "mangledName": "$ss28CustomDebugStringConvertibleP"
656
1458
  },
657
1459
  {
658
1460
  "kind": "Conformance",
@@ -663,10 +1465,24 @@
663
1465
  },
664
1466
  {
665
1467
  "kind": "Conformance",
666
- "name": "CustomDebugStringConvertible",
667
- "printedName": "CustomDebugStringConvertible",
668
- "usr": "s:s28CustomDebugStringConvertibleP",
669
- "mangledName": "$ss28CustomDebugStringConvertibleP"
1468
+ "name": "Equatable",
1469
+ "printedName": "Equatable",
1470
+ "usr": "s:SQ",
1471
+ "mangledName": "$sSQ"
1472
+ },
1473
+ {
1474
+ "kind": "Conformance",
1475
+ "name": "Escapable",
1476
+ "printedName": "Escapable",
1477
+ "usr": "s:s9EscapableP",
1478
+ "mangledName": "$ss9EscapableP"
1479
+ },
1480
+ {
1481
+ "kind": "Conformance",
1482
+ "name": "Hashable",
1483
+ "printedName": "Hashable",
1484
+ "usr": "s:SH",
1485
+ "mangledName": "$sSH"
670
1486
  },
671
1487
  {
672
1488
  "kind": "Conformance",
@@ -674,6 +1490,13 @@
674
1490
  "printedName": "SendableMetatype",
675
1491
  "usr": "s:s16SendableMetatypeP",
676
1492
  "mangledName": "$ss16SendableMetatypeP"
1493
+ },
1494
+ {
1495
+ "kind": "Conformance",
1496
+ "name": "Sendable",
1497
+ "printedName": "Sendable",
1498
+ "usr": "s:s8SendableP",
1499
+ "mangledName": "$ss8SendableP"
677
1500
  }
678
1501
  ]
679
1502
  },
@@ -2412,31 +3235,17 @@
2412
3235
  "conformances": [
2413
3236
  {
2414
3237
  "kind": "Conformance",
2415
- "name": "Copyable",
2416
- "printedName": "Copyable",
2417
- "usr": "s:s8CopyableP",
2418
- "mangledName": "$ss8CopyableP"
2419
- },
2420
- {
2421
- "kind": "Conformance",
2422
- "name": "Escapable",
2423
- "printedName": "Escapable",
2424
- "usr": "s:s9EscapableP",
2425
- "mangledName": "$ss9EscapableP"
2426
- },
2427
- {
2428
- "kind": "Conformance",
2429
- "name": "Equatable",
2430
- "printedName": "Equatable",
2431
- "usr": "s:SQ",
2432
- "mangledName": "$sSQ"
3238
+ "name": "_KeyValueCodingAndObserving",
3239
+ "printedName": "_KeyValueCodingAndObserving",
3240
+ "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
3241
+ "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
2433
3242
  },
2434
3243
  {
2435
3244
  "kind": "Conformance",
2436
- "name": "Hashable",
2437
- "printedName": "Hashable",
2438
- "usr": "s:SH",
2439
- "mangledName": "$sSH"
3245
+ "name": "_KeyValueCodingAndObservingPublishing",
3246
+ "printedName": "_KeyValueCodingAndObservingPublishing",
3247
+ "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
3248
+ "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
2440
3249
  },
2441
3250
  {
2442
3251
  "kind": "Conformance",
@@ -2447,17 +3256,17 @@
2447
3256
  },
2448
3257
  {
2449
3258
  "kind": "Conformance",
2450
- "name": "_KeyValueCodingAndObservingPublishing",
2451
- "printedName": "_KeyValueCodingAndObservingPublishing",
2452
- "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
2453
- "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
3259
+ "name": "Copyable",
3260
+ "printedName": "Copyable",
3261
+ "usr": "s:s8CopyableP",
3262
+ "mangledName": "$ss8CopyableP"
2454
3263
  },
2455
3264
  {
2456
3265
  "kind": "Conformance",
2457
- "name": "_KeyValueCodingAndObserving",
2458
- "printedName": "_KeyValueCodingAndObserving",
2459
- "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
2460
- "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
3266
+ "name": "CustomDebugStringConvertible",
3267
+ "printedName": "CustomDebugStringConvertible",
3268
+ "usr": "s:s28CustomDebugStringConvertibleP",
3269
+ "mangledName": "$ss28CustomDebugStringConvertibleP"
2461
3270
  },
2462
3271
  {
2463
3272
  "kind": "Conformance",
@@ -2468,10 +3277,24 @@
2468
3277
  },
2469
3278
  {
2470
3279
  "kind": "Conformance",
2471
- "name": "CustomDebugStringConvertible",
2472
- "printedName": "CustomDebugStringConvertible",
2473
- "usr": "s:s28CustomDebugStringConvertibleP",
2474
- "mangledName": "$ss28CustomDebugStringConvertibleP"
3280
+ "name": "Equatable",
3281
+ "printedName": "Equatable",
3282
+ "usr": "s:SQ",
3283
+ "mangledName": "$sSQ"
3284
+ },
3285
+ {
3286
+ "kind": "Conformance",
3287
+ "name": "Escapable",
3288
+ "printedName": "Escapable",
3289
+ "usr": "s:s9EscapableP",
3290
+ "mangledName": "$ss9EscapableP"
3291
+ },
3292
+ {
3293
+ "kind": "Conformance",
3294
+ "name": "Hashable",
3295
+ "printedName": "Hashable",
3296
+ "usr": "s:SH",
3297
+ "mangledName": "$sSH"
2475
3298
  }
2476
3299
  ]
2477
3300
  },
@@ -2485,6 +3308,30 @@
2485
3308
  "RawDocComment"
2486
3309
  ]
2487
3310
  },
3311
+ {
3312
+ "kind": "Import",
3313
+ "name": "UserNotifications",
3314
+ "printedName": "UserNotifications",
3315
+ "declKind": "Import",
3316
+ "moduleName": "RadarSDK"
3317
+ },
3318
+ {
3319
+ "kind": "Import",
3320
+ "name": "CoreLocation",
3321
+ "printedName": "CoreLocation",
3322
+ "declKind": "Import",
3323
+ "moduleName": "RadarSDK"
3324
+ },
3325
+ {
3326
+ "kind": "Import",
3327
+ "name": "Foundation",
3328
+ "printedName": "Foundation",
3329
+ "declKind": "Import",
3330
+ "moduleName": "RadarSDK",
3331
+ "declAttributes": [
3332
+ "RawDocComment"
3333
+ ]
3334
+ },
2488
3335
  {
2489
3336
  "kind": "Import",
2490
3337
  "name": "SwiftUI",
@@ -2895,6 +3742,27 @@
2895
3742
  "ObjectiveC.NSObject"
2896
3743
  ],
2897
3744
  "conformances": [
3745
+ {
3746
+ "kind": "Conformance",
3747
+ "name": "_KeyValueCodingAndObserving",
3748
+ "printedName": "_KeyValueCodingAndObserving",
3749
+ "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
3750
+ "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
3751
+ },
3752
+ {
3753
+ "kind": "Conformance",
3754
+ "name": "_KeyValueCodingAndObservingPublishing",
3755
+ "printedName": "_KeyValueCodingAndObservingPublishing",
3756
+ "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
3757
+ "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
3758
+ },
3759
+ {
3760
+ "kind": "Conformance",
3761
+ "name": "CVarArg",
3762
+ "printedName": "CVarArg",
3763
+ "usr": "s:s7CVarArgP",
3764
+ "mangledName": "$ss7CVarArgP"
3765
+ },
2898
3766
  {
2899
3767
  "kind": "Conformance",
2900
3768
  "name": "Copyable",
@@ -2902,6 +3770,27 @@
2902
3770
  "usr": "s:s8CopyableP",
2903
3771
  "mangledName": "$ss8CopyableP"
2904
3772
  },
3773
+ {
3774
+ "kind": "Conformance",
3775
+ "name": "CustomDebugStringConvertible",
3776
+ "printedName": "CustomDebugStringConvertible",
3777
+ "usr": "s:s28CustomDebugStringConvertibleP",
3778
+ "mangledName": "$ss28CustomDebugStringConvertibleP"
3779
+ },
3780
+ {
3781
+ "kind": "Conformance",
3782
+ "name": "CustomStringConvertible",
3783
+ "printedName": "CustomStringConvertible",
3784
+ "usr": "s:s23CustomStringConvertibleP",
3785
+ "mangledName": "$ss23CustomStringConvertibleP"
3786
+ },
3787
+ {
3788
+ "kind": "Conformance",
3789
+ "name": "Equatable",
3790
+ "printedName": "Equatable",
3791
+ "usr": "s:SQ",
3792
+ "mangledName": "$sSQ"
3793
+ },
2905
3794
  {
2906
3795
  "kind": "Conformance",
2907
3796
  "name": "Escapable",
@@ -2909,6 +3798,176 @@
2909
3798
  "usr": "s:s9EscapableP",
2910
3799
  "mangledName": "$ss9EscapableP"
2911
3800
  },
3801
+ {
3802
+ "kind": "Conformance",
3803
+ "name": "Hashable",
3804
+ "printedName": "Hashable",
3805
+ "usr": "s:SH",
3806
+ "mangledName": "$sSH"
3807
+ },
3808
+ {
3809
+ "kind": "Conformance",
3810
+ "name": "Sendable",
3811
+ "printedName": "Sendable",
3812
+ "usr": "s:s8SendableP",
3813
+ "mangledName": "$ss8SendableP"
3814
+ }
3815
+ ]
3816
+ },
3817
+ {
3818
+ "kind": "Import",
3819
+ "name": "Foundation",
3820
+ "printedName": "Foundation",
3821
+ "declKind": "Import",
3822
+ "moduleName": "RadarSDK",
3823
+ "declAttributes": [
3824
+ "RawDocComment"
3825
+ ]
3826
+ },
3827
+ {
3828
+ "kind": "Import",
3829
+ "name": "Foundation",
3830
+ "printedName": "Foundation",
3831
+ "declKind": "Import",
3832
+ "moduleName": "RadarSDK",
3833
+ "declAttributes": [
3834
+ "RawDocComment"
3835
+ ]
3836
+ },
3837
+ {
3838
+ "kind": "Import",
3839
+ "name": "UIKit",
3840
+ "printedName": "UIKit",
3841
+ "declKind": "Import",
3842
+ "moduleName": "RadarSDK"
3843
+ },
3844
+ {
3845
+ "kind": "Import",
3846
+ "name": "SystemConfiguration",
3847
+ "printedName": "SystemConfiguration",
3848
+ "declKind": "Import",
3849
+ "moduleName": "RadarSDK"
3850
+ },
3851
+ {
3852
+ "kind": "Import",
3853
+ "name": "CoreTelephony",
3854
+ "printedName": "CoreTelephony",
3855
+ "declKind": "Import",
3856
+ "moduleName": "RadarSDK"
3857
+ },
3858
+ {
3859
+ "kind": "TypeDecl",
3860
+ "name": "RadarLogLevel",
3861
+ "printedName": "RadarLogLevel",
3862
+ "children": [
3863
+ {
3864
+ "kind": "Function",
3865
+ "name": "encode",
3866
+ "printedName": "encode(to:)",
3867
+ "children": [
3868
+ {
3869
+ "kind": "TypeNominal",
3870
+ "name": "Void",
3871
+ "printedName": "()"
3872
+ },
3873
+ {
3874
+ "kind": "TypeNominal",
3875
+ "name": "Encoder",
3876
+ "printedName": "any Swift.Encoder",
3877
+ "usr": "s:s7EncoderP"
3878
+ }
3879
+ ],
3880
+ "declKind": "Func",
3881
+ "usr": "s:So13RadarLogLevelV0A3SDKE6encode2toys7Encoder_p_tKF",
3882
+ "mangledName": "$sSo13RadarLogLevelV0A3SDKE6encode2toys7Encoder_p_tKF",
3883
+ "moduleName": "RadarSDK",
3884
+ "declAttributes": [
3885
+ "AccessControl"
3886
+ ],
3887
+ "isFromExtension": true,
3888
+ "throwing": true,
3889
+ "funcSelfKind": "NonMutating"
3890
+ },
3891
+ {
3892
+ "kind": "Constructor",
3893
+ "name": "init",
3894
+ "printedName": "init(from:)",
3895
+ "children": [
3896
+ {
3897
+ "kind": "TypeNominal",
3898
+ "name": "RadarLogLevel",
3899
+ "printedName": "RadarSDK.RadarLogLevel",
3900
+ "usr": "c:@E@RadarLogLevel"
3901
+ },
3902
+ {
3903
+ "kind": "TypeNominal",
3904
+ "name": "Decoder",
3905
+ "printedName": "any Swift.Decoder",
3906
+ "usr": "s:s7DecoderP"
3907
+ }
3908
+ ],
3909
+ "declKind": "Constructor",
3910
+ "usr": "s:So13RadarLogLevelV0A3SDKE4fromABs7Decoder_p_tKcfc",
3911
+ "mangledName": "$sSo13RadarLogLevelV0A3SDKE4fromABs7Decoder_p_tKcfc",
3912
+ "moduleName": "RadarSDK",
3913
+ "declAttributes": [
3914
+ "AccessControl"
3915
+ ],
3916
+ "isFromExtension": true,
3917
+ "throwing": true,
3918
+ "init_kind": "Designated"
3919
+ }
3920
+ ],
3921
+ "declKind": "Enum",
3922
+ "usr": "c:@E@RadarLogLevel",
3923
+ "moduleName": "RadarSDK",
3924
+ "objc_name": "RadarLogLevel",
3925
+ "declAttributes": [
3926
+ "SynthesizedProtocol",
3927
+ "ObjC",
3928
+ "SynthesizedProtocol",
3929
+ "Sendable",
3930
+ "Dynamic"
3931
+ ],
3932
+ "enumRawTypeName": "Int",
3933
+ "isExternal": true,
3934
+ "conformances": [
3935
+ {
3936
+ "kind": "Conformance",
3937
+ "name": "Copyable",
3938
+ "printedName": "Copyable",
3939
+ "usr": "s:s8CopyableP",
3940
+ "mangledName": "$ss8CopyableP"
3941
+ },
3942
+ {
3943
+ "kind": "Conformance",
3944
+ "name": "RawRepresentable",
3945
+ "printedName": "RawRepresentable",
3946
+ "children": [
3947
+ {
3948
+ "kind": "TypeWitness",
3949
+ "name": "RawValue",
3950
+ "printedName": "RawValue",
3951
+ "children": [
3952
+ {
3953
+ "kind": "TypeNominal",
3954
+ "name": "Int",
3955
+ "printedName": "Swift.Int",
3956
+ "usr": "s:Si"
3957
+ }
3958
+ ]
3959
+ }
3960
+ ],
3961
+ "usr": "s:SY",
3962
+ "mangledName": "$sSY"
3963
+ },
3964
+ {
3965
+ "kind": "Conformance",
3966
+ "name": "Sendable",
3967
+ "printedName": "Sendable",
3968
+ "usr": "s:s8SendableP",
3969
+ "mangledName": "$ss8SendableP"
3970
+ },
2912
3971
  {
2913
3972
  "kind": "Conformance",
2914
3973
  "name": "Equatable",
@@ -2923,6 +3982,72 @@
2923
3982
  "usr": "s:SH",
2924
3983
  "mangledName": "$sSH"
2925
3984
  },
3985
+ {
3986
+ "kind": "Conformance",
3987
+ "name": "SendableMetatype",
3988
+ "printedName": "SendableMetatype",
3989
+ "usr": "s:s16SendableMetatypeP",
3990
+ "mangledName": "$ss16SendableMetatypeP"
3991
+ },
3992
+ {
3993
+ "kind": "Conformance",
3994
+ "name": "Encodable",
3995
+ "printedName": "Encodable",
3996
+ "usr": "s:SE",
3997
+ "mangledName": "$sSE"
3998
+ },
3999
+ {
4000
+ "kind": "Conformance",
4001
+ "name": "Decodable",
4002
+ "printedName": "Decodable",
4003
+ "usr": "s:Se",
4004
+ "mangledName": "$sSe"
4005
+ },
4006
+ {
4007
+ "kind": "Conformance",
4008
+ "name": "Escapable",
4009
+ "printedName": "Escapable",
4010
+ "usr": "s:s9EscapableP",
4011
+ "mangledName": "$ss9EscapableP"
4012
+ }
4013
+ ]
4014
+ },
4015
+ {
4016
+ "kind": "TypeDecl",
4017
+ "name": "UNUserNotificationCenter",
4018
+ "printedName": "UNUserNotificationCenter",
4019
+ "declKind": "Class",
4020
+ "usr": "c:objc(cs)UNUserNotificationCenter",
4021
+ "moduleName": "UserNotifications",
4022
+ "isOpen": true,
4023
+ "intro_iOS": "10.0",
4024
+ "objc_name": "UNUserNotificationCenter",
4025
+ "declAttributes": [
4026
+ "Available",
4027
+ "ObjC",
4028
+ "Dynamic"
4029
+ ],
4030
+ "superclassUsr": "c:objc(cs)NSObject",
4031
+ "isExternal": true,
4032
+ "inheritsConvenienceInitializers": true,
4033
+ "superclassNames": [
4034
+ "ObjectiveC.NSObject"
4035
+ ],
4036
+ "conformances": [
4037
+ {
4038
+ "kind": "Conformance",
4039
+ "name": "_KeyValueCodingAndObserving",
4040
+ "printedName": "_KeyValueCodingAndObserving",
4041
+ "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
4042
+ "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
4043
+ },
4044
+ {
4045
+ "kind": "Conformance",
4046
+ "name": "_KeyValueCodingAndObservingPublishing",
4047
+ "printedName": "_KeyValueCodingAndObservingPublishing",
4048
+ "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
4049
+ "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
4050
+ },
2926
4051
  {
2927
4052
  "kind": "Conformance",
2928
4053
  "name": "CVarArg",
@@ -2932,17 +4057,17 @@
2932
4057
  },
2933
4058
  {
2934
4059
  "kind": "Conformance",
2935
- "name": "_KeyValueCodingAndObservingPublishing",
2936
- "printedName": "_KeyValueCodingAndObservingPublishing",
2937
- "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
2938
- "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
4060
+ "name": "Copyable",
4061
+ "printedName": "Copyable",
4062
+ "usr": "s:s8CopyableP",
4063
+ "mangledName": "$ss8CopyableP"
2939
4064
  },
2940
4065
  {
2941
4066
  "kind": "Conformance",
2942
- "name": "_KeyValueCodingAndObserving",
2943
- "printedName": "_KeyValueCodingAndObserving",
2944
- "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
2945
- "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
4067
+ "name": "CustomDebugStringConvertible",
4068
+ "printedName": "CustomDebugStringConvertible",
4069
+ "usr": "s:s28CustomDebugStringConvertibleP",
4070
+ "mangledName": "$ss28CustomDebugStringConvertibleP"
2946
4071
  },
2947
4072
  {
2948
4073
  "kind": "Conformance",
@@ -2953,34 +4078,94 @@
2953
4078
  },
2954
4079
  {
2955
4080
  "kind": "Conformance",
2956
- "name": "CustomDebugStringConvertible",
2957
- "printedName": "CustomDebugStringConvertible",
2958
- "usr": "s:s28CustomDebugStringConvertibleP",
2959
- "mangledName": "$ss28CustomDebugStringConvertibleP"
4081
+ "name": "Equatable",
4082
+ "printedName": "Equatable",
4083
+ "usr": "s:SQ",
4084
+ "mangledName": "$sSQ"
2960
4085
  },
2961
4086
  {
2962
4087
  "kind": "Conformance",
2963
- "name": "Sendable",
2964
- "printedName": "Sendable",
2965
- "usr": "s:s8SendableP",
2966
- "mangledName": "$ss8SendableP"
4088
+ "name": "Escapable",
4089
+ "printedName": "Escapable",
4090
+ "usr": "s:s9EscapableP",
4091
+ "mangledName": "$ss9EscapableP"
4092
+ },
4093
+ {
4094
+ "kind": "Conformance",
4095
+ "name": "Hashable",
4096
+ "printedName": "Hashable",
4097
+ "usr": "s:SH",
4098
+ "mangledName": "$sSH"
2967
4099
  }
2968
4100
  ]
2969
- },
2970
- {
2971
- "kind": "Import",
2972
- "name": "Foundation",
2973
- "printedName": "Foundation",
2974
- "declKind": "Import",
2975
- "moduleName": "RadarSDK",
2976
- "declAttributes": [
2977
- "RawDocComment"
2978
- ]
2979
4101
  }
2980
4102
  ],
2981
4103
  "json_format_version": 8
2982
4104
  },
2983
4105
  "ConstValues": [
4106
+ {
4107
+ "filePath": "\/tmp\/radar-static-build\/radar-sdk-ios\/RadarSDK\/RadarGeofence.swift",
4108
+ "kind": "StringLiteral",
4109
+ "offset": 1073,
4110
+ "length": 5,
4111
+ "value": "\"_id\""
4112
+ },
4113
+ {
4114
+ "filePath": "\/tmp\/radar-static-build\/radar-sdk-ios\/RadarSDK\/RadarNotification.swift",
4115
+ "kind": "StringLiteral",
4116
+ "offset": 143,
4117
+ "length": 8,
4118
+ "value": "\"radar_\""
4119
+ },
4120
+ {
4121
+ "filePath": "\/tmp\/radar-static-build\/radar-sdk-ios\/RadarSDK\/RadarNotification.swift",
4122
+ "kind": "StringLiteral",
4123
+ "offset": 187,
4124
+ "length": 17,
4125
+ "value": "\"radar_geofence_\""
4126
+ },
4127
+ {
4128
+ "filePath": "\/tmp\/radar-static-build\/radar-sdk-ios\/RadarSDK\/RadarNotification.swift",
4129
+ "kind": "StringLiteral",
4130
+ "offset": 4394,
4131
+ "length": 8,
4132
+ "value": "\"denied\""
4133
+ },
4134
+ {
4135
+ "filePath": "\/tmp\/radar-static-build\/radar-sdk-ios\/RadarSDK\/RadarNotification.swift",
4136
+ "kind": "StringLiteral",
4137
+ "offset": 4429,
4138
+ "length": 12,
4139
+ "value": "\"authorized\""
4140
+ },
4141
+ {
4142
+ "filePath": "\/tmp\/radar-static-build\/radar-sdk-ios\/RadarSDK\/RadarNotification.swift",
4143
+ "kind": "StringLiteral",
4144
+ "offset": 4471,
4145
+ "length": 16,
4146
+ "value": "\"not_determined\""
4147
+ },
4148
+ {
4149
+ "filePath": "\/tmp\/radar-static-build\/radar-sdk-ios\/RadarSDK\/RadarNotification.swift",
4150
+ "kind": "StringLiteral",
4151
+ "offset": 4513,
4152
+ "length": 11,
4153
+ "value": "\"ephemeral\""
4154
+ },
4155
+ {
4156
+ "filePath": "\/tmp\/radar-static-build\/radar-sdk-ios\/RadarSDK\/RadarNotification.swift",
4157
+ "kind": "StringLiteral",
4158
+ "offset": 4552,
4159
+ "length": 13,
4160
+ "value": "\"provisional\""
4161
+ },
4162
+ {
4163
+ "filePath": "\/tmp\/radar-static-build\/radar-sdk-ios\/RadarSDK\/RadarNotification.swift",
4164
+ "kind": "StringLiteral",
4165
+ "offset": 4589,
4166
+ "length": 9,
4167
+ "value": "\"unknown\""
4168
+ },
2984
4169
  {
2985
4170
  "filePath": "\/tmp\/radar-static-build\/radar-sdk-ios\/RadarSDK\/RadarInAppMessageView.swift",
2986
4171
  "kind": "StringLiteral",
@@ -3065,6 +4250,13 @@
3065
4250
  "length": 15,
3066
4251
  "value": "\"Button tapped\""
3067
4252
  },
4253
+ {
4254
+ "filePath": "\/tmp\/radar-static-build\/radar-sdk-ios\/RadarSDK\/RadarBeacon.swift",
4255
+ "kind": "StringLiteral",
4256
+ "offset": 495,
4257
+ "length": 5,
4258
+ "value": "\"_id\""
4259
+ },
3068
4260
  {
3069
4261
  "filePath": "\/tmp\/radar-static-build\/radar-sdk-ios\/RadarSDK\/RadarAPIHelper.swift",
3070
4262
  "kind": "Dictionary",
@@ -3107,6 +4299,111 @@
3107
4299
  "length": 3,
3108
4300
  "value": "[]"
3109
4301
  },
4302
+ {
4303
+ "filePath": "\/tmp\/radar-static-build\/radar-sdk-ios\/RadarSDK\/RadarSyncState.swift",
4304
+ "kind": "Array",
4305
+ "offset": 469,
4306
+ "length": 2,
4307
+ "value": "[]"
4308
+ },
4309
+ {
4310
+ "filePath": "\/tmp\/radar-static-build\/radar-sdk-ios\/RadarSDK\/RadarSyncState.swift",
4311
+ "kind": "Array",
4312
+ "offset": 511,
4313
+ "length": 2,
4314
+ "value": "[]"
4315
+ },
4316
+ {
4317
+ "filePath": "\/tmp\/radar-static-build\/radar-sdk-ios\/RadarSDK\/RadarSyncState.swift",
4318
+ "kind": "Array",
4319
+ "offset": 554,
4320
+ "length": 2,
4321
+ "value": "[]"
4322
+ },
4323
+ {
4324
+ "filePath": "\/tmp\/radar-static-build\/radar-sdk-ios\/RadarSDK\/RadarSyncState.swift",
4325
+ "kind": "Dictionary",
4326
+ "offset": 609,
4327
+ "length": 3,
4328
+ "value": "[]"
4329
+ },
4330
+ {
4331
+ "filePath": "\/tmp\/radar-static-build\/radar-sdk-ios\/RadarSDK\/RadarSyncState.swift",
4332
+ "kind": "Array",
4333
+ "offset": 650,
4334
+ "length": 2,
4335
+ "value": "[]"
4336
+ },
4337
+ {
4338
+ "filePath": "\/tmp\/radar-static-build\/radar-sdk-ios\/RadarSDK\/RadarPlace.swift",
4339
+ "kind": "StringLiteral",
4340
+ "offset": 454,
4341
+ "length": 5,
4342
+ "value": "\"_id\""
4343
+ },
4344
+ {
4345
+ "filePath": "\/tmp\/radar-static-build\/radar-sdk-ios\/RadarSDK\/RadarSyncManager.swift",
4346
+ "kind": "StringLiteral",
4347
+ "offset": 336,
4348
+ "length": 23,
4349
+ "value": "\"radar_sync_state.json\""
4350
+ },
4351
+ {
4352
+ "filePath": "\/tmp\/radar-static-build\/radar-sdk-ios\/RadarSDK\/RadarSyncManager.swift",
4353
+ "kind": "FloatLiteral",
4354
+ "offset": 420,
4355
+ "length": 4,
4356
+ "value": "75.0"
4357
+ },
4358
+ {
4359
+ "filePath": "\/tmp\/radar-static-build\/radar-sdk-ios\/RadarSDK\/RadarSyncManager.swift",
4360
+ "kind": "FloatLiteral",
4361
+ "offset": 470,
4362
+ "length": 5,
4363
+ "value": "100.0"
4364
+ },
4365
+ {
4366
+ "filePath": "\/tmp\/radar-static-build\/radar-sdk-ios\/RadarSDK\/RadarSyncManager.swift",
4367
+ "kind": "FloatLiteral",
4368
+ "offset": 525,
4369
+ "length": 4,
4370
+ "value": "50.0"
4371
+ },
4372
+ {
4373
+ "filePath": "\/tmp\/radar-static-build\/radar-sdk-ios\/RadarSDK\/RadarSyncManager.swift",
4374
+ "kind": "FloatLiteral",
4375
+ "offset": 589,
4376
+ "length": 3,
4377
+ "value": "0.2"
4378
+ },
4379
+ {
4380
+ "filePath": "\/tmp\/radar-static-build\/radar-sdk-ios\/RadarSDK\/RadarSyncManager.swift",
4381
+ "kind": "StringLiteral",
4382
+ "offset": 645,
4383
+ "length": 15,
4384
+ "value": "\"radar_synced_\""
4385
+ },
4386
+ {
4387
+ "filePath": "\/tmp\/radar-static-build\/radar-sdk-ios\/RadarSDK\/RadarSyncManager.swift",
4388
+ "kind": "Array",
4389
+ "offset": 1034,
4390
+ "length": 2,
4391
+ "value": "[]"
4392
+ },
4393
+ {
4394
+ "filePath": "\/tmp\/radar-static-build\/radar-sdk-ios\/RadarSDK\/RadarSyncManager.swift",
4395
+ "kind": "BooleanLiteral",
4396
+ "offset": 13709,
4397
+ "length": 5,
4398
+ "value": "false"
4399
+ },
4400
+ {
4401
+ "filePath": "\/tmp\/radar-static-build\/radar-sdk-ios\/RadarSDK\/RadarFileStorage.swift",
4402
+ "kind": "BooleanLiteral",
4403
+ "offset": 371,
4404
+ "length": 5,
4405
+ "value": "false"
4406
+ },
3110
4407
  {
3111
4408
  "filePath": "\/tmp\/radar-static-build\/radar-sdk-ios\/RadarSDK\/RadarLogger.swift",
3112
4409
  "kind": "StringLiteral",
@@ -3243,31 +4540,45 @@
3243
4540
  {
3244
4541
  "filePath": "\/tmp\/radar-static-build\/radar-sdk-ios\/RadarSDK\/RadarSettings.swift",
3245
4542
  "kind": "IntegerLiteral",
3246
- "offset": 9566,
4543
+ "offset": 9856,
3247
4544
  "length": 1,
3248
4545
  "value": "0"
3249
4546
  },
3250
4547
  {
3251
4548
  "filePath": "\/tmp\/radar-static-build\/radar-sdk-ios\/RadarSDK\/RadarSettings.swift",
3252
4549
  "kind": "IntegerLiteral",
3253
- "offset": 10301,
4550
+ "offset": 10591,
3254
4551
  "length": 1,
3255
4552
  "value": "0"
3256
4553
  },
3257
4554
  {
3258
4555
  "filePath": "\/tmp\/radar-static-build\/radar-sdk-ios\/RadarSDK\/RadarSettings.swift",
3259
4556
  "kind": "BooleanLiteral",
3260
- "offset": 10416,
4557
+ "offset": 10706,
3261
4558
  "length": 5,
3262
4559
  "value": "false"
3263
4560
  },
3264
4561
  {
3265
4562
  "filePath": "\/tmp\/radar-static-build\/radar-sdk-ios\/RadarSDK\/RadarSettings.swift",
3266
4563
  "kind": "BooleanLiteral",
3267
- "offset": 10899,
4564
+ "offset": 11189,
3268
4565
  "length": 4,
3269
4566
  "value": "true"
3270
4567
  },
4568
+ {
4569
+ "filePath": "\/tmp\/radar-static-build\/radar-sdk-ios\/RadarSDK\/RadarNotificationHelper.swift",
4570
+ "kind": "BooleanLiteral",
4571
+ "offset": 1170,
4572
+ "length": 5,
4573
+ "value": "false"
4574
+ },
4575
+ {
4576
+ "filePath": "\/tmp\/radar-static-build\/radar-sdk-ios\/RadarSDK\/RadarNotificationHelper.swift",
4577
+ "kind": "StringLiteral",
4578
+ "offset": 1041,
4579
+ "length": 23,
4580
+ "value": "\"RadarSDK.RadarNotificationHelper\""
4581
+ },
3271
4582
  {
3272
4583
  "filePath": "\/tmp\/radar-static-build\/radar-sdk-ios\/RadarSDK\/RadarInAppMessageManager.swift",
3273
4584
  "kind": "BooleanLiteral",
@@ -3390,219 +4701,401 @@
3390
4701
  {
3391
4702
  "filePath": "\/tmp\/radar-static-build\/radar-sdk-ios\/RadarSDK\/RadarUserDefaults.swift",
3392
4703
  "kind": "StringLiteral",
3393
- "offset": 1045,
4704
+ "offset": 1041,
4705
+ "length": 12,
4706
+ "value": "\"radar-trip\""
4707
+ },
4708
+ {
4709
+ "filePath": "\/tmp\/radar-static-build\/radar-sdk-ios\/RadarSDK\/RadarUserDefaults.swift",
4710
+ "kind": "StringLiteral",
4711
+ "offset": 1078,
3394
4712
  "length": 16,
3395
4713
  "value": "\"radar-logLevel\""
3396
4714
  },
3397
4715
  {
3398
4716
  "filePath": "\/tmp\/radar-static-build\/radar-sdk-ios\/RadarSDK\/RadarUserDefaults.swift",
3399
4717
  "kind": "StringLiteral",
3400
- "offset": 1089,
4718
+ "offset": 1122,
3401
4719
  "length": 19,
3402
4720
  "value": "\"radar-beaconUUIDs\""
3403
4721
  },
3404
4722
  {
3405
4723
  "filePath": "\/tmp\/radar-static-build\/radar-sdk-ios\/RadarSDK\/RadarUserDefaults.swift",
3406
4724
  "kind": "StringLiteral",
3407
- "offset": 1129,
4725
+ "offset": 1162,
3408
4726
  "length": 12,
3409
4727
  "value": "\"radar-host\""
3410
4728
  },
3411
4729
  {
3412
4730
  "filePath": "\/tmp\/radar-static-build\/radar-sdk-ios\/RadarSDK\/RadarUserDefaults.swift",
3413
4731
  "kind": "StringLiteral",
3414
- "offset": 1173,
4732
+ "offset": 1206,
3415
4733
  "length": 23,
3416
4734
  "value": "\"radar-lastTrackedTime\""
3417
4735
  },
3418
4736
  {
3419
4737
  "filePath": "\/tmp\/radar-static-build\/radar-sdk-ios\/RadarSDK\/RadarUserDefaults.swift",
3420
4738
  "kind": "StringLiteral",
3421
- "offset": 1225,
4739
+ "offset": 1258,
3422
4740
  "length": 20,
3423
4741
  "value": "\"radar-verifiedHost\""
3424
4742
  },
3425
4743
  {
3426
4744
  "filePath": "\/tmp\/radar-static-build\/radar-sdk-ios\/RadarSDK\/RadarUserDefaults.swift",
3427
4745
  "kind": "StringLiteral",
3428
- "offset": 1277,
4746
+ "offset": 1310,
3429
4747
  "length": 23,
3430
4748
  "value": "\"radar-lastAppOpenTime\""
3431
4749
  },
3432
4750
  {
3433
4751
  "filePath": "\/tmp\/radar-static-build\/radar-sdk-ios\/RadarSDK\/RadarUserDefaults.swift",
3434
4752
  "kind": "StringLiteral",
3435
- "offset": 1326,
4753
+ "offset": 1359,
3436
4754
  "length": 17,
3437
4755
  "value": "\"radar-userDebug\""
3438
4756
  },
3439
4757
  {
3440
4758
  "filePath": "\/tmp\/radar-static-build\/radar-sdk-ios\/RadarSDK\/RadarUserDefaults.swift",
3441
4759
  "kind": "StringLiteral",
3442
- "offset": 1376,
4760
+ "offset": 1409,
3443
4761
  "length": 24,
3444
4762
  "value": "\"radar-xPlatformSDKType\""
3445
4763
  },
3446
4764
  {
3447
4765
  "filePath": "\/tmp\/radar-static-build\/radar-sdk-ios\/RadarSDK\/RadarUserDefaults.swift",
3448
4766
  "kind": "StringLiteral",
3449
- "offset": 1436,
4767
+ "offset": 1469,
3450
4768
  "length": 27,
3451
4769
  "value": "\"radar-xPlatformSDKVersion\""
3452
4770
  },
3453
4771
  {
3454
4772
  "filePath": "\/tmp\/radar-static-build\/radar-sdk-ios\/RadarSDK\/RadarUserDefaults.swift",
3455
4773
  "kind": "StringLiteral",
3456
- "offset": 1497,
4774
+ "offset": 1530,
3457
4775
  "length": 25,
3458
4776
  "value": "\"radar-initializeOptions\""
3459
4777
  },
3460
4778
  {
3461
4779
  "filePath": "\/tmp\/radar-static-build\/radar-sdk-ios\/RadarSDK\/RadarUserDefaults.swift",
3462
4780
  "kind": "StringLiteral",
3463
- "offset": 1547,
4781
+ "offset": 1580,
3464
4782
  "length": 16,
3465
4783
  "value": "\"radar-userTags\""
3466
4784
  },
3467
4785
  {
3468
4786
  "filePath": "\/tmp\/radar-static-build\/radar-sdk-ios\/RadarSDK\/RadarUserDefaults.swift",
3469
4787
  "kind": "StringLiteral",
3470
- "offset": 1601,
4788
+ "offset": 1634,
3471
4789
  "length": 29,
3472
4790
  "value": "\"radar-pushNotificationToken\""
3473
4791
  },
3474
4792
  {
3475
4793
  "filePath": "\/tmp\/radar-static-build\/radar-sdk-ios\/RadarSDK\/RadarUserDefaults.swift",
3476
4794
  "kind": "StringLiteral",
3477
- "offset": 1669,
4795
+ "offset": 1702,
3478
4796
  "length": 30,
3479
4797
  "value": "\"radar-locationExtensionToken\""
3480
4798
  },
3481
4799
  {
3482
4800
  "filePath": "\/tmp\/radar-static-build\/radar-sdk-ios\/RadarSDK\/RadarUserDefaults.swift",
3483
4801
  "kind": "StringLiteral",
3484
- "offset": 1728,
4802
+ "offset": 1761,
3485
4803
  "length": 20,
3486
4804
  "value": "\"radar-inSurveyMode\""
3487
4805
  },
3488
4806
  {
3489
4807
  "filePath": "\/tmp\/radar-static-build\/radar-sdk-ios\/RadarSDK\/RadarUserDefaults.swift",
3490
4808
  "kind": "StringLiteral",
3491
- "offset": 1773,
4809
+ "offset": 1806,
3492
4810
  "length": 16,
3493
4811
  "value": "\"radar-appGroup\""
3494
4812
  },
3495
4813
  {
3496
4814
  "filePath": "\/tmp\/radar-static-build\/radar-sdk-ios\/RadarSDK\/RadarUserDefaults.swift",
3497
4815
  "kind": "StringLiteral",
3498
- "offset": 1849,
4816
+ "offset": 1882,
3499
4817
  "length": 20,
3500
4818
  "value": "\"radar-lastLocation\""
3501
4819
  },
3502
4820
  {
3503
4821
  "filePath": "\/tmp\/radar-static-build\/radar-sdk-ios\/RadarSDK\/RadarUserDefaults.swift",
3504
4822
  "kind": "StringLiteral",
3505
- "offset": 1903,
4823
+ "offset": 1936,
3506
4824
  "length": 25,
3507
4825
  "value": "\"radar-lastMovedLocation\""
3508
4826
  },
3509
4827
  {
3510
4828
  "filePath": "\/tmp\/radar-static-build\/radar-sdk-ios\/RadarSDK\/RadarUserDefaults.swift",
3511
4829
  "kind": "StringLiteral",
3512
- "offset": 1956,
4830
+ "offset": 1989,
3513
4831
  "length": 19,
3514
4832
  "value": "\"radar-lastMovedAt\""
3515
4833
  },
3516
4834
  {
3517
4835
  "filePath": "\/tmp\/radar-static-build\/radar-sdk-ios\/RadarSDK\/RadarUserDefaults.swift",
3518
4836
  "kind": "StringLiteral",
3519
- "offset": 1999,
4837
+ "offset": 2032,
3520
4838
  "length": 15,
3521
4839
  "value": "\"radar-stopped\""
3522
4840
  },
3523
4841
  {
3524
4842
  "filePath": "\/tmp\/radar-static-build\/radar-sdk-ios\/RadarSDK\/RadarUserDefaults.swift",
3525
4843
  "kind": "StringLiteral",
3526
- "offset": 2041,
4844
+ "offset": 2074,
3527
4845
  "length": 18,
3528
4846
  "value": "\"radar-lastSentAt\""
3529
4847
  },
3530
4848
  {
3531
4849
  "filePath": "\/tmp\/radar-static-build\/radar-sdk-ios\/RadarSDK\/RadarUserDefaults.swift",
3532
4850
  "kind": "StringLiteral",
3533
- "offset": 2083,
4851
+ "offset": 2116,
3534
4852
  "length": 15,
3535
4853
  "value": "\"radar-canExit\""
3536
4854
  },
3537
4855
  {
3538
4856
  "filePath": "\/tmp\/radar-static-build\/radar-sdk-ios\/RadarSDK\/RadarUserDefaults.swift",
3539
4857
  "kind": "StringLiteral",
3540
- "offset": 2140,
4858
+ "offset": 2173,
3541
4859
  "length": 33,
3542
4860
  "value": "\"radar-lastFailedStoppedLocation\""
3543
4861
  },
3544
4862
  {
3545
4863
  "filePath": "\/tmp\/radar-static-build\/radar-sdk-ios\/RadarSDK\/RadarUserDefaults.swift",
3546
4864
  "kind": "StringLiteral",
3547
- "offset": 2201,
4865
+ "offset": 2234,
3548
4866
  "length": 19,
3549
4867
  "value": "\"radar-geofenceIds\""
3550
4868
  },
3551
4869
  {
3552
4870
  "filePath": "\/tmp\/radar-static-build\/radar-sdk-ios\/RadarSDK\/RadarUserDefaults.swift",
3553
4871
  "kind": "StringLiteral",
3554
- "offset": 2244,
4872
+ "offset": 2277,
3555
4873
  "length": 15,
3556
4874
  "value": "\"radar-placeId\""
3557
4875
  },
3558
4876
  {
3559
4877
  "filePath": "\/tmp\/radar-static-build\/radar-sdk-ios\/RadarSDK\/RadarUserDefaults.swift",
3560
4878
  "kind": "StringLiteral",
3561
- "offset": 2285,
4879
+ "offset": 2318,
3562
4880
  "length": 17,
3563
4881
  "value": "\"radar-regionIds\""
3564
4882
  },
3565
4883
  {
3566
4884
  "filePath": "\/tmp\/radar-static-build\/radar-sdk-ios\/RadarSDK\/RadarUserDefaults.swift",
3567
4885
  "kind": "StringLiteral",
3568
- "offset": 2328,
4886
+ "offset": 2361,
3569
4887
  "length": 17,
3570
4888
  "value": "\"radar-beaconIds\""
3571
4889
  },
3572
4890
  {
3573
4891
  "filePath": "\/tmp\/radar-static-build\/radar-sdk-ios\/RadarSDK\/RadarUserDefaults.swift",
3574
4892
  "kind": "StringLiteral",
3575
- "offset": 2377,
4893
+ "offset": 2410,
3576
4894
  "length": 23,
3577
4895
  "value": "\"radar-lastHeadingData\""
3578
4896
  },
3579
4897
  {
3580
4898
  "filePath": "\/tmp\/radar-static-build\/radar-sdk-ios\/RadarSDK\/RadarUserDefaults.swift",
3581
4899
  "kind": "StringLiteral",
3582
- "offset": 2439,
4900
+ "offset": 2472,
3583
4901
  "length": 30,
3584
4902
  "value": "\"radar-lastMotionActivityData\""
3585
4903
  },
3586
4904
  {
3587
4905
  "filePath": "\/tmp\/radar-static-build\/radar-sdk-ios\/RadarSDK\/RadarUserDefaults.swift",
3588
4906
  "kind": "StringLiteral",
3589
- "offset": 2502,
4907
+ "offset": 2535,
3590
4908
  "length": 24,
3591
4909
  "value": "\"radar-lastPressureData\""
3592
4910
  },
3593
4911
  {
3594
4912
  "filePath": "\/tmp\/radar-static-build\/radar-sdk-ios\/RadarSDK\/RadarUserDefaults.swift",
3595
4913
  "kind": "StringLiteral",
3596
- "offset": 2572,
4914
+ "offset": 2605,
3597
4915
  "length": 37,
3598
4916
  "value": "\"radar-notificationPermissionGranted\""
3599
4917
  },
3600
4918
  {
3601
4919
  "filePath": "\/tmp\/radar-static-build\/radar-sdk-ios\/RadarSDK\/RadarUserDefaults.swift",
3602
4920
  "kind": "StringLiteral",
3603
- "offset": 2649,
4921
+ "offset": 2682,
3604
4922
  "length": 31,
3605
4923
  "value": "\"radar-registeredNotifications\""
4924
+ },
4925
+ {
4926
+ "filePath": "\/tmp\/radar-static-build\/radar-sdk-ios\/RadarSDK\/RadarUtils.swift",
4927
+ "kind": "StringLiteral",
4928
+ "offset": 242,
4929
+ "length": 8,
4930
+ "value": "\"3.30.0\""
4931
+ },
4932
+ {
4933
+ "filePath": "\/tmp\/radar-static-build\/radar-sdk-ios\/RadarSDK\/RadarUtils.swift",
4934
+ "kind": "StringLiteral",
4935
+ "offset": 306,
4936
+ "length": 9,
4937
+ "value": "\"unknown\""
4938
+ },
4939
+ {
4940
+ "filePath": "\/tmp\/radar-static-build\/radar-sdk-ios\/RadarSDK\/RadarUtils.swift",
4941
+ "kind": "StringLiteral",
4942
+ "offset": 332,
4943
+ "length": 6,
4944
+ "value": "\"wifi\""
4945
+ },
4946
+ {
4947
+ "filePath": "\/tmp\/radar-static-build\/radar-sdk-ios\/RadarSDK\/RadarUtils.swift",
4948
+ "kind": "StringLiteral",
4949
+ "offset": 361,
4950
+ "length": 13,
4951
+ "value": "\"cellular-5g\""
4952
+ },
4953
+ {
4954
+ "filePath": "\/tmp\/radar-static-build\/radar-sdk-ios\/RadarSDK\/RadarUtils.swift",
4955
+ "kind": "StringLiteral",
4956
+ "offset": 398,
4957
+ "length": 14,
4958
+ "value": "\"cellular-lte\""
4959
+ },
4960
+ {
4961
+ "filePath": "\/tmp\/radar-static-build\/radar-sdk-ios\/RadarSDK\/RadarUtils.swift",
4962
+ "kind": "StringLiteral",
4963
+ "offset": 435,
4964
+ "length": 13,
4965
+ "value": "\"cellular-3g\""
4966
+ },
4967
+ {
4968
+ "filePath": "\/tmp\/radar-static-build\/radar-sdk-ios\/RadarSDK\/RadarUtils.swift",
4969
+ "kind": "StringLiteral",
4970
+ "offset": 471,
4971
+ "length": 13,
4972
+ "value": "\"cellular-2g\""
4973
+ },
4974
+ {
4975
+ "filePath": "\/tmp\/radar-static-build\/radar-sdk-ios\/RadarSDK\/RadarUtils.swift",
4976
+ "kind": "StringLiteral",
4977
+ "offset": 505,
4978
+ "length": 10,
4979
+ "value": "\"cellular\""
4980
+ },
4981
+ {
4982
+ "filePath": "\/tmp\/radar-static-build\/radar-sdk-ios\/RadarSDK\/RadarUtils.swift",
4983
+ "kind": "StringLiteral",
4984
+ "offset": 799,
4985
+ "length": 2,
4986
+ "value": "\"\""
4987
+ },
4988
+ {
4989
+ "filePath": "\/tmp\/radar-static-build\/radar-sdk-ios\/RadarSDK\/RadarUtils.swift",
4990
+ "kind": "IntegerLiteral",
4991
+ "offset": 891,
4992
+ "length": 1,
4993
+ "value": "0"
4994
+ },
4995
+ {
4996
+ "filePath": "\/tmp\/radar-static-build\/radar-sdk-ios\/RadarSDK\/RadarUtils.swift",
4997
+ "kind": "StringLiteral",
4998
+ "offset": 1729,
4999
+ "length": 5,
5000
+ "value": "\"iOS\""
5001
+ },
5002
+ {
5003
+ "filePath": "\/tmp\/radar-static-build\/radar-sdk-ios\/RadarSDK\/RadarUtils.swift",
5004
+ "kind": "StringLiteral",
5005
+ "offset": 1771,
5006
+ "length": 7,
5007
+ "value": "\"Apple\""
5008
+ },
5009
+ {
5010
+ "filePath": "\/tmp\/radar-static-build\/radar-sdk-ios\/RadarSDK\/RadarUtils.swift",
5011
+ "kind": "BooleanLiteral",
5012
+ "offset": 4017,
5013
+ "length": 5,
5014
+ "value": "false"
5015
+ },
5016
+ {
5017
+ "filePath": "\/tmp\/radar-static-build\/radar-sdk-ios\/RadarSDK\/RadarUtils.swift",
5018
+ "kind": "StringLiteral",
5019
+ "offset": 4175,
5020
+ "length": 19,
5021
+ "value": "\"UIBackgroundModes\""
5022
+ },
5023
+ {
5024
+ "filePath": "\/tmp\/radar-static-build\/radar-sdk-ios\/RadarSDK\/RadarUtils.swift",
5025
+ "kind": "BooleanLiteral",
5026
+ "offset": 4235,
5027
+ "length": 5,
5028
+ "value": "false"
5029
+ },
5030
+ {
5031
+ "filePath": "\/tmp\/radar-static-build\/radar-sdk-ios\/RadarSDK\/RadarUtils.swift",
5032
+ "kind": "StringLiteral",
5033
+ "offset": 4291,
5034
+ "length": 10,
5035
+ "value": "\"location\""
5036
+ },
5037
+ {
5038
+ "filePath": "\/tmp\/radar-static-build\/radar-sdk-ios\/RadarSDK\/RadarUtils.swift",
5039
+ "kind": "StringLiteral",
5040
+ "offset": 4720,
5041
+ "length": 20,
5042
+ "value": "\"GRANTED_FOREGROUND\""
5043
+ },
5044
+ {
5045
+ "filePath": "\/tmp\/radar-static-build\/radar-sdk-ios\/RadarSDK\/RadarUtils.swift",
5046
+ "kind": "StringLiteral",
5047
+ "offset": 4793,
5048
+ "length": 20,
5049
+ "value": "\"GRANTED_BACKGROUND\""
5050
+ },
5051
+ {
5052
+ "filePath": "\/tmp\/radar-static-build\/radar-sdk-ios\/RadarSDK\/RadarUtils.swift",
5053
+ "kind": "StringLiteral",
5054
+ "offset": 4856,
5055
+ "length": 8,
5056
+ "value": "\"DENIED\""
5057
+ },
5058
+ {
5059
+ "filePath": "\/tmp\/radar-static-build\/radar-sdk-ios\/RadarSDK\/RadarUtils.swift",
5060
+ "kind": "StringLiteral",
5061
+ "offset": 4911,
5062
+ "length": 8,
5063
+ "value": "\"DENIED\""
5064
+ },
5065
+ {
5066
+ "filePath": "\/tmp\/radar-static-build\/radar-sdk-ios\/RadarSDK\/RadarUtils.swift",
5067
+ "kind": "StringLiteral",
5068
+ "offset": 4969,
5069
+ "length": 16,
5070
+ "value": "\"NOT_DETERMINED\""
5071
+ },
5072
+ {
5073
+ "filePath": "\/tmp\/radar-static-build\/radar-sdk-ios\/RadarSDK\/RadarUtils.swift",
5074
+ "kind": "StringLiteral",
5075
+ "offset": 5032,
5076
+ "length": 16,
5077
+ "value": "\"NOT_DETERMINED\""
5078
+ },
5079
+ {
5080
+ "filePath": "\/tmp\/radar-static-build\/radar-sdk-ios\/RadarSDK\/RadarUtils.swift",
5081
+ "kind": "StringLiteral",
5082
+ "offset": 7457,
5083
+ "length": 13,
5084
+ "value": "\"en_US_POSIX\""
5085
+ },
5086
+ {
5087
+ "filePath": "\/tmp\/radar-static-build\/radar-sdk-ios\/RadarSDK\/RadarUtils.swift",
5088
+ "kind": "StringLiteral",
5089
+ "offset": 7503,
5090
+ "length": 28,
5091
+ "value": "\"yyyy-MM-dd'T'HH:mm:ss.SSSZ\""
5092
+ },
5093
+ {
5094
+ "filePath": "\/tmp\/radar-static-build\/radar-sdk-ios\/RadarSDK\/RadarUtils.swift",
5095
+ "kind": "IntegerLiteral",
5096
+ "offset": 7586,
5097
+ "length": 1,
5098
+ "value": "0"
3606
5099
  }
3607
5100
  ]
3608
5101
  }