react-native-radar 4.33.0 → 4.35.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 (50) hide show
  1. package/android/build.gradle +1 -1
  2. package/android/src/main/java/com/radar/RadarModuleImpl.java +28 -0
  3. package/android/src/newarch/java/com/radar/RadarModule.kt +49 -2
  4. package/android/src/oldarch/java/com/radar/RadarModule.java +30 -2
  5. package/dist/@types/RadarNativeInterface.d.ts +5 -0
  6. package/dist/NativeRadar.d.ts +5 -0
  7. package/dist/helpers.d.ts +1 -0
  8. package/dist/helpers.js +3 -1
  9. package/dist/index.native.js +15 -0
  10. package/dist/ui/map.jsx +32 -4
  11. package/dist/version.d.ts +1 -1
  12. package/dist/version.js +1 -1
  13. package/ios/RNRadar.h +3 -2
  14. package/ios/RNRadar.mm +38 -2
  15. package/ios/RadarSDK.xcframework/ios-arm64/RadarSDK.framework/Headers/Radar.h +3 -4
  16. package/ios/RadarSDK.xcframework/ios-arm64/RadarSDK.framework/Headers/RadarSDK-Swift.h +1 -1
  17. package/ios/RadarSDK.xcframework/ios-arm64/RadarSDK.framework/Headers/RadarSdkConfiguration.h +1 -0
  18. package/ios/RadarSDK.xcframework/ios-arm64/RadarSDK.framework/Info.plist +0 -0
  19. package/ios/RadarSDK.xcframework/ios-arm64/RadarSDK.framework/Modules/RadarSDK.swiftmodule/arm64-apple-ios.abi.json +1447 -88
  20. package/ios/RadarSDK.xcframework/ios-arm64/RadarSDK.framework/Modules/RadarSDK.swiftmodule/arm64-apple-ios.private.swiftinterface +36 -2
  21. package/ios/RadarSDK.xcframework/ios-arm64/RadarSDK.framework/Modules/RadarSDK.swiftmodule/arm64-apple-ios.swiftdoc +0 -0
  22. package/ios/RadarSDK.xcframework/ios-arm64/RadarSDK.framework/Modules/RadarSDK.swiftmodule/arm64-apple-ios.swiftinterface +36 -2
  23. package/ios/RadarSDK.xcframework/ios-arm64/RadarSDK.framework/RadarSDK +0 -0
  24. package/ios/RadarSDK.xcframework/ios-arm64_x86_64-simulator/RadarSDK.framework/Headers/Radar.h +3 -4
  25. package/ios/RadarSDK.xcframework/ios-arm64_x86_64-simulator/RadarSDK.framework/Headers/RadarSDK-Swift.h +2 -2
  26. package/ios/RadarSDK.xcframework/ios-arm64_x86_64-simulator/RadarSDK.framework/Headers/RadarSdkConfiguration.h +1 -0
  27. package/ios/RadarSDK.xcframework/ios-arm64_x86_64-simulator/RadarSDK.framework/Info.plist +0 -0
  28. package/ios/RadarSDK.xcframework/ios-arm64_x86_64-simulator/RadarSDK.framework/Modules/RadarSDK.swiftmodule/arm64-apple-ios-simulator.abi.json +1447 -88
  29. package/ios/RadarSDK.xcframework/ios-arm64_x86_64-simulator/RadarSDK.framework/Modules/RadarSDK.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface +36 -2
  30. package/ios/RadarSDK.xcframework/ios-arm64_x86_64-simulator/RadarSDK.framework/Modules/RadarSDK.swiftmodule/arm64-apple-ios-simulator.swiftdoc +0 -0
  31. package/ios/RadarSDK.xcframework/ios-arm64_x86_64-simulator/RadarSDK.framework/Modules/RadarSDK.swiftmodule/arm64-apple-ios-simulator.swiftinterface +36 -2
  32. package/ios/RadarSDK.xcframework/ios-arm64_x86_64-simulator/RadarSDK.framework/Modules/RadarSDK.swiftmodule/x86_64-apple-ios-simulator.abi.json +1447 -88
  33. package/ios/RadarSDK.xcframework/ios-arm64_x86_64-simulator/RadarSDK.framework/Modules/RadarSDK.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface +36 -2
  34. package/ios/RadarSDK.xcframework/ios-arm64_x86_64-simulator/RadarSDK.framework/Modules/RadarSDK.swiftmodule/x86_64-apple-ios-simulator.swiftdoc +0 -0
  35. package/ios/RadarSDK.xcframework/ios-arm64_x86_64-simulator/RadarSDK.framework/Modules/RadarSDK.swiftmodule/x86_64-apple-ios-simulator.swiftinterface +36 -2
  36. package/ios/RadarSDK.xcframework/ios-arm64_x86_64-simulator/RadarSDK.framework/RadarSDK +0 -0
  37. package/ios/RadarSDK.xcframework/ios-arm64_x86_64-simulator/RadarSDK.framework/_CodeSignature/CodeDirectory +0 -0
  38. package/ios/RadarSDK.xcframework/ios-arm64_x86_64-simulator/RadarSDK.framework/_CodeSignature/CodeResources +27 -27
  39. package/ios/RadarSDKMotion.xcframework/Info.plist +5 -5
  40. package/ios/RadarSDKMotion.xcframework/ios-arm64/RadarSDKMotion.framework/Info.plist +0 -0
  41. package/ios/RadarSDKMotion.xcframework/ios-arm64_x86_64-simulator/RadarSDKMotion.framework/Info.plist +0 -0
  42. package/ios/RadarSDKMotion.xcframework/ios-arm64_x86_64-simulator/RadarSDKMotion.framework/_CodeSignature/CodeDirectory +0 -0
  43. package/ios/RadarSDKMotion.xcframework/ios-arm64_x86_64-simulator/RadarSDKMotion.framework/_CodeSignature/CodeResources +1 -1
  44. package/package.json +1 -1
  45. package/src/@types/RadarNativeInterface.ts +5 -0
  46. package/src/NativeRadar.ts +5 -0
  47. package/src/helpers.js +5 -1
  48. package/src/index.native.ts +15 -0
  49. package/src/ui/map.jsx +32 -4
  50. package/src/version.ts +1 -1
@@ -1131,6 +1131,131 @@
1131
1131
  ],
1132
1132
  "funcSelfKind": "NonMutating"
1133
1133
  },
1134
+ {
1135
+ "kind": "Function",
1136
+ "name": "getSyncedRegion",
1137
+ "printedName": "getSyncedRegion()",
1138
+ "children": [
1139
+ {
1140
+ "kind": "TypeNominal",
1141
+ "name": "Optional",
1142
+ "printedName": "CoreLocation.CLCircularRegion?",
1143
+ "children": [
1144
+ {
1145
+ "kind": "TypeNominal",
1146
+ "name": "CLCircularRegion",
1147
+ "printedName": "CoreLocation.CLCircularRegion",
1148
+ "usr": "c:objc(cs)CLCircularRegion"
1149
+ }
1150
+ ],
1151
+ "usr": "s:Sq"
1152
+ }
1153
+ ],
1154
+ "declKind": "Func",
1155
+ "usr": "s:8RadarSDK0A11SyncManagerC15getSyncedRegionSo010CLCircularG0CSgyFZ",
1156
+ "mangledName": "$s8RadarSDK0A11SyncManagerC15getSyncedRegionSo010CLCircularG0CSgyFZ",
1157
+ "moduleName": "RadarSDK",
1158
+ "static": true,
1159
+ "declAttributes": [
1160
+ "Final",
1161
+ "AccessControl",
1162
+ "RawDocComment"
1163
+ ],
1164
+ "funcSelfKind": "NonMutating"
1165
+ },
1166
+ {
1167
+ "kind": "Function",
1168
+ "name": "getSyncedGeofences",
1169
+ "printedName": "getSyncedGeofences()",
1170
+ "children": [
1171
+ {
1172
+ "kind": "TypeNominal",
1173
+ "name": "Array",
1174
+ "printedName": "[RadarSDK.RadarSyncedGeofenceSnapshot]",
1175
+ "children": [
1176
+ {
1177
+ "kind": "TypeNominal",
1178
+ "name": "RadarSyncedGeofenceSnapshot",
1179
+ "printedName": "RadarSDK.RadarSyncedGeofenceSnapshot",
1180
+ "usr": "s:8RadarSDK0A22SyncedGeofenceSnapshotV"
1181
+ }
1182
+ ],
1183
+ "usr": "s:Sa"
1184
+ }
1185
+ ],
1186
+ "declKind": "Func",
1187
+ "usr": "s:8RadarSDK0A11SyncManagerC18getSyncedGeofencesSayAA0aF16GeofenceSnapshotVGyFZ",
1188
+ "mangledName": "$s8RadarSDK0A11SyncManagerC18getSyncedGeofencesSayAA0aF16GeofenceSnapshotVGyFZ",
1189
+ "moduleName": "RadarSDK",
1190
+ "static": true,
1191
+ "declAttributes": [
1192
+ "Final",
1193
+ "AccessControl"
1194
+ ],
1195
+ "funcSelfKind": "NonMutating"
1196
+ },
1197
+ {
1198
+ "kind": "Function",
1199
+ "name": "getSyncedPlaces",
1200
+ "printedName": "getSyncedPlaces()",
1201
+ "children": [
1202
+ {
1203
+ "kind": "TypeNominal",
1204
+ "name": "Array",
1205
+ "printedName": "[RadarSDK.RadarSyncedPlaceSnapshot]",
1206
+ "children": [
1207
+ {
1208
+ "kind": "TypeNominal",
1209
+ "name": "RadarSyncedPlaceSnapshot",
1210
+ "printedName": "RadarSDK.RadarSyncedPlaceSnapshot",
1211
+ "usr": "s:8RadarSDK0A19SyncedPlaceSnapshotV"
1212
+ }
1213
+ ],
1214
+ "usr": "s:Sa"
1215
+ }
1216
+ ],
1217
+ "declKind": "Func",
1218
+ "usr": "s:8RadarSDK0A11SyncManagerC15getSyncedPlacesSayAA0aF13PlaceSnapshotVGyFZ",
1219
+ "mangledName": "$s8RadarSDK0A11SyncManagerC15getSyncedPlacesSayAA0aF13PlaceSnapshotVGyFZ",
1220
+ "moduleName": "RadarSDK",
1221
+ "static": true,
1222
+ "declAttributes": [
1223
+ "Final",
1224
+ "AccessControl"
1225
+ ],
1226
+ "funcSelfKind": "NonMutating"
1227
+ },
1228
+ {
1229
+ "kind": "Function",
1230
+ "name": "getSyncedBeacons",
1231
+ "printedName": "getSyncedBeacons()",
1232
+ "children": [
1233
+ {
1234
+ "kind": "TypeNominal",
1235
+ "name": "Array",
1236
+ "printedName": "[RadarSDK.RadarSyncedBeaconSnapshot]",
1237
+ "children": [
1238
+ {
1239
+ "kind": "TypeNominal",
1240
+ "name": "RadarSyncedBeaconSnapshot",
1241
+ "printedName": "RadarSDK.RadarSyncedBeaconSnapshot",
1242
+ "usr": "s:8RadarSDK0A20SyncedBeaconSnapshotV"
1243
+ }
1244
+ ],
1245
+ "usr": "s:Sa"
1246
+ }
1247
+ ],
1248
+ "declKind": "Func",
1249
+ "usr": "s:8RadarSDK0A11SyncManagerC16getSyncedBeaconsSayAA0aF14BeaconSnapshotVGyFZ",
1250
+ "mangledName": "$s8RadarSDK0A11SyncManagerC16getSyncedBeaconsSayAA0aF14BeaconSnapshotVGyFZ",
1251
+ "moduleName": "RadarSDK",
1252
+ "static": true,
1253
+ "declAttributes": [
1254
+ "Final",
1255
+ "AccessControl"
1256
+ ],
1257
+ "funcSelfKind": "NonMutating"
1258
+ },
1134
1259
  {
1135
1260
  "kind": "Constructor",
1136
1261
  "name": "init",
@@ -1138,63 +1263,1252 @@
1138
1263
  "children": [
1139
1264
  {
1140
1265
  "kind": "TypeNominal",
1141
- "name": "RadarSyncManager",
1142
- "printedName": "RadarSDK.RadarSyncManager",
1143
- "usr": "c:@M@RadarSDK@objc(cs)RadarSyncManager"
1266
+ "name": "RadarSyncManager",
1267
+ "printedName": "RadarSDK.RadarSyncManager",
1268
+ "usr": "c:@M@RadarSDK@objc(cs)RadarSyncManager"
1269
+ }
1270
+ ],
1271
+ "declKind": "Constructor",
1272
+ "usr": "c:@M@RadarSDK@objc(cs)RadarSyncManager(im)init",
1273
+ "mangledName": "$s8RadarSDK0A11SyncManagerCACycfc",
1274
+ "moduleName": "RadarSDK",
1275
+ "overriding": true,
1276
+ "implicit": true,
1277
+ "objc_name": "init",
1278
+ "declAttributes": [
1279
+ "Dynamic",
1280
+ "ObjC",
1281
+ "Override"
1282
+ ],
1283
+ "init_kind": "Designated"
1284
+ }
1285
+ ],
1286
+ "declKind": "Class",
1287
+ "usr": "c:@M@RadarSDK@objc(cs)RadarSyncManager",
1288
+ "mangledName": "$s8RadarSDK0A11SyncManagerC",
1289
+ "moduleName": "RadarSDK",
1290
+ "objc_name": "RadarSyncManager",
1291
+ "declAttributes": [
1292
+ "Final",
1293
+ "AccessControl",
1294
+ "ObjC"
1295
+ ],
1296
+ "superclassUsr": "c:objc(cs)NSObject",
1297
+ "inheritsConvenienceInitializers": true,
1298
+ "superclassNames": [
1299
+ "ObjectiveC.NSObject"
1300
+ ],
1301
+ "conformances": [
1302
+ {
1303
+ "kind": "Conformance",
1304
+ "name": "_KeyValueCodingAndObserving",
1305
+ "printedName": "_KeyValueCodingAndObserving",
1306
+ "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
1307
+ "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
1308
+ },
1309
+ {
1310
+ "kind": "Conformance",
1311
+ "name": "_KeyValueCodingAndObservingPublishing",
1312
+ "printedName": "_KeyValueCodingAndObservingPublishing",
1313
+ "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
1314
+ "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
1315
+ },
1316
+ {
1317
+ "kind": "Conformance",
1318
+ "name": "CVarArg",
1319
+ "printedName": "CVarArg",
1320
+ "usr": "s:s7CVarArgP",
1321
+ "mangledName": "$ss7CVarArgP"
1322
+ },
1323
+ {
1324
+ "kind": "Conformance",
1325
+ "name": "Copyable",
1326
+ "printedName": "Copyable",
1327
+ "usr": "s:s8CopyableP",
1328
+ "mangledName": "$ss8CopyableP"
1329
+ },
1330
+ {
1331
+ "kind": "Conformance",
1332
+ "name": "CustomDebugStringConvertible",
1333
+ "printedName": "CustomDebugStringConvertible",
1334
+ "usr": "s:s28CustomDebugStringConvertibleP",
1335
+ "mangledName": "$ss28CustomDebugStringConvertibleP"
1336
+ },
1337
+ {
1338
+ "kind": "Conformance",
1339
+ "name": "CustomStringConvertible",
1340
+ "printedName": "CustomStringConvertible",
1341
+ "usr": "s:s23CustomStringConvertibleP",
1342
+ "mangledName": "$ss23CustomStringConvertibleP"
1343
+ },
1344
+ {
1345
+ "kind": "Conformance",
1346
+ "name": "Equatable",
1347
+ "printedName": "Equatable",
1348
+ "usr": "s:SQ",
1349
+ "mangledName": "$sSQ"
1350
+ },
1351
+ {
1352
+ "kind": "Conformance",
1353
+ "name": "Escapable",
1354
+ "printedName": "Escapable",
1355
+ "usr": "s:s9EscapableP",
1356
+ "mangledName": "$ss9EscapableP"
1357
+ },
1358
+ {
1359
+ "kind": "Conformance",
1360
+ "name": "Hashable",
1361
+ "printedName": "Hashable",
1362
+ "usr": "s:SH",
1363
+ "mangledName": "$sSH"
1364
+ }
1365
+ ]
1366
+ },
1367
+ {
1368
+ "kind": "TypeDecl",
1369
+ "name": "RadarSyncedGeofenceSnapshot",
1370
+ "printedName": "RadarSyncedGeofenceSnapshot",
1371
+ "children": [
1372
+ {
1373
+ "kind": "Var",
1374
+ "name": "id",
1375
+ "printedName": "id",
1376
+ "children": [
1377
+ {
1378
+ "kind": "TypeNominal",
1379
+ "name": "String",
1380
+ "printedName": "Swift.String",
1381
+ "usr": "s:SS"
1382
+ }
1383
+ ],
1384
+ "declKind": "Var",
1385
+ "usr": "s:8RadarSDK0A22SyncedGeofenceSnapshotV2idSSvp",
1386
+ "mangledName": "$s8RadarSDK0A22SyncedGeofenceSnapshotV2idSSvp",
1387
+ "moduleName": "RadarSDK",
1388
+ "declAttributes": [
1389
+ "HasStorage",
1390
+ "AccessControl"
1391
+ ],
1392
+ "isLet": true,
1393
+ "hasStorage": true,
1394
+ "accessors": [
1395
+ {
1396
+ "kind": "Accessor",
1397
+ "name": "Get",
1398
+ "printedName": "Get()",
1399
+ "children": [
1400
+ {
1401
+ "kind": "TypeNominal",
1402
+ "name": "String",
1403
+ "printedName": "Swift.String",
1404
+ "usr": "s:SS"
1405
+ }
1406
+ ],
1407
+ "declKind": "Accessor",
1408
+ "usr": "s:8RadarSDK0A22SyncedGeofenceSnapshotV2idSSvg",
1409
+ "mangledName": "$s8RadarSDK0A22SyncedGeofenceSnapshotV2idSSvg",
1410
+ "moduleName": "RadarSDK",
1411
+ "implicit": true,
1412
+ "accessorKind": "get"
1413
+ }
1414
+ ]
1415
+ },
1416
+ {
1417
+ "kind": "Var",
1418
+ "name": "description",
1419
+ "printedName": "description",
1420
+ "children": [
1421
+ {
1422
+ "kind": "TypeNominal",
1423
+ "name": "String",
1424
+ "printedName": "Swift.String",
1425
+ "usr": "s:SS"
1426
+ }
1427
+ ],
1428
+ "declKind": "Var",
1429
+ "usr": "s:8RadarSDK0A22SyncedGeofenceSnapshotV11descriptionSSvp",
1430
+ "mangledName": "$s8RadarSDK0A22SyncedGeofenceSnapshotV11descriptionSSvp",
1431
+ "moduleName": "RadarSDK",
1432
+ "declAttributes": [
1433
+ "HasStorage",
1434
+ "AccessControl"
1435
+ ],
1436
+ "isLet": true,
1437
+ "hasStorage": true,
1438
+ "accessors": [
1439
+ {
1440
+ "kind": "Accessor",
1441
+ "name": "Get",
1442
+ "printedName": "Get()",
1443
+ "children": [
1444
+ {
1445
+ "kind": "TypeNominal",
1446
+ "name": "String",
1447
+ "printedName": "Swift.String",
1448
+ "usr": "s:SS"
1449
+ }
1450
+ ],
1451
+ "declKind": "Accessor",
1452
+ "usr": "s:8RadarSDK0A22SyncedGeofenceSnapshotV11descriptionSSvg",
1453
+ "mangledName": "$s8RadarSDK0A22SyncedGeofenceSnapshotV11descriptionSSvg",
1454
+ "moduleName": "RadarSDK",
1455
+ "implicit": true,
1456
+ "accessorKind": "get"
1457
+ }
1458
+ ]
1459
+ },
1460
+ {
1461
+ "kind": "Var",
1462
+ "name": "tag",
1463
+ "printedName": "tag",
1464
+ "children": [
1465
+ {
1466
+ "kind": "TypeNominal",
1467
+ "name": "Optional",
1468
+ "printedName": "Swift.String?",
1469
+ "children": [
1470
+ {
1471
+ "kind": "TypeNominal",
1472
+ "name": "String",
1473
+ "printedName": "Swift.String",
1474
+ "usr": "s:SS"
1475
+ }
1476
+ ],
1477
+ "usr": "s:Sq"
1478
+ }
1479
+ ],
1480
+ "declKind": "Var",
1481
+ "usr": "s:8RadarSDK0A22SyncedGeofenceSnapshotV3tagSSSgvp",
1482
+ "mangledName": "$s8RadarSDK0A22SyncedGeofenceSnapshotV3tagSSSgvp",
1483
+ "moduleName": "RadarSDK",
1484
+ "declAttributes": [
1485
+ "HasStorage",
1486
+ "AccessControl"
1487
+ ],
1488
+ "isLet": true,
1489
+ "hasStorage": true,
1490
+ "accessors": [
1491
+ {
1492
+ "kind": "Accessor",
1493
+ "name": "Get",
1494
+ "printedName": "Get()",
1495
+ "children": [
1496
+ {
1497
+ "kind": "TypeNominal",
1498
+ "name": "Optional",
1499
+ "printedName": "Swift.String?",
1500
+ "children": [
1501
+ {
1502
+ "kind": "TypeNominal",
1503
+ "name": "String",
1504
+ "printedName": "Swift.String",
1505
+ "usr": "s:SS"
1506
+ }
1507
+ ],
1508
+ "usr": "s:Sq"
1509
+ }
1510
+ ],
1511
+ "declKind": "Accessor",
1512
+ "usr": "s:8RadarSDK0A22SyncedGeofenceSnapshotV3tagSSSgvg",
1513
+ "mangledName": "$s8RadarSDK0A22SyncedGeofenceSnapshotV3tagSSSgvg",
1514
+ "moduleName": "RadarSDK",
1515
+ "implicit": true,
1516
+ "accessorKind": "get"
1517
+ }
1518
+ ]
1519
+ },
1520
+ {
1521
+ "kind": "Var",
1522
+ "name": "externalId",
1523
+ "printedName": "externalId",
1524
+ "children": [
1525
+ {
1526
+ "kind": "TypeNominal",
1527
+ "name": "Optional",
1528
+ "printedName": "Swift.String?",
1529
+ "children": [
1530
+ {
1531
+ "kind": "TypeNominal",
1532
+ "name": "String",
1533
+ "printedName": "Swift.String",
1534
+ "usr": "s:SS"
1535
+ }
1536
+ ],
1537
+ "usr": "s:Sq"
1538
+ }
1539
+ ],
1540
+ "declKind": "Var",
1541
+ "usr": "s:8RadarSDK0A22SyncedGeofenceSnapshotV10externalIdSSSgvp",
1542
+ "mangledName": "$s8RadarSDK0A22SyncedGeofenceSnapshotV10externalIdSSSgvp",
1543
+ "moduleName": "RadarSDK",
1544
+ "declAttributes": [
1545
+ "HasStorage",
1546
+ "AccessControl"
1547
+ ],
1548
+ "isLet": true,
1549
+ "hasStorage": true,
1550
+ "accessors": [
1551
+ {
1552
+ "kind": "Accessor",
1553
+ "name": "Get",
1554
+ "printedName": "Get()",
1555
+ "children": [
1556
+ {
1557
+ "kind": "TypeNominal",
1558
+ "name": "Optional",
1559
+ "printedName": "Swift.String?",
1560
+ "children": [
1561
+ {
1562
+ "kind": "TypeNominal",
1563
+ "name": "String",
1564
+ "printedName": "Swift.String",
1565
+ "usr": "s:SS"
1566
+ }
1567
+ ],
1568
+ "usr": "s:Sq"
1569
+ }
1570
+ ],
1571
+ "declKind": "Accessor",
1572
+ "usr": "s:8RadarSDK0A22SyncedGeofenceSnapshotV10externalIdSSSgvg",
1573
+ "mangledName": "$s8RadarSDK0A22SyncedGeofenceSnapshotV10externalIdSSSgvg",
1574
+ "moduleName": "RadarSDK",
1575
+ "implicit": true,
1576
+ "accessorKind": "get"
1577
+ }
1578
+ ]
1579
+ },
1580
+ {
1581
+ "kind": "Var",
1582
+ "name": "geometry",
1583
+ "printedName": "geometry",
1584
+ "children": [
1585
+ {
1586
+ "kind": "TypeNominal",
1587
+ "name": "Geometry",
1588
+ "printedName": "RadarSDK.RadarSyncedGeofenceSnapshot.Geometry",
1589
+ "usr": "s:8RadarSDK0A22SyncedGeofenceSnapshotV8GeometryO"
1590
+ }
1591
+ ],
1592
+ "declKind": "Var",
1593
+ "usr": "s:8RadarSDK0A22SyncedGeofenceSnapshotV8geometryAC8GeometryOvp",
1594
+ "mangledName": "$s8RadarSDK0A22SyncedGeofenceSnapshotV8geometryAC8GeometryOvp",
1595
+ "moduleName": "RadarSDK",
1596
+ "declAttributes": [
1597
+ "HasStorage",
1598
+ "AccessControl"
1599
+ ],
1600
+ "isLet": true,
1601
+ "hasStorage": true,
1602
+ "accessors": [
1603
+ {
1604
+ "kind": "Accessor",
1605
+ "name": "Get",
1606
+ "printedName": "Get()",
1607
+ "children": [
1608
+ {
1609
+ "kind": "TypeNominal",
1610
+ "name": "Geometry",
1611
+ "printedName": "RadarSDK.RadarSyncedGeofenceSnapshot.Geometry",
1612
+ "usr": "s:8RadarSDK0A22SyncedGeofenceSnapshotV8GeometryO"
1613
+ }
1614
+ ],
1615
+ "declKind": "Accessor",
1616
+ "usr": "s:8RadarSDK0A22SyncedGeofenceSnapshotV8geometryAC8GeometryOvg",
1617
+ "mangledName": "$s8RadarSDK0A22SyncedGeofenceSnapshotV8geometryAC8GeometryOvg",
1618
+ "moduleName": "RadarSDK",
1619
+ "implicit": true,
1620
+ "accessorKind": "get"
1621
+ }
1622
+ ]
1623
+ },
1624
+ {
1625
+ "kind": "TypeDecl",
1626
+ "name": "Geometry",
1627
+ "printedName": "Geometry",
1628
+ "children": [
1629
+ {
1630
+ "kind": "Var",
1631
+ "name": "circle",
1632
+ "printedName": "circle",
1633
+ "children": [
1634
+ {
1635
+ "kind": "TypeFunc",
1636
+ "name": "Function",
1637
+ "printedName": "(RadarSDK.RadarSyncedGeofenceSnapshot.Geometry.Type) -> (_LocationEssentials.CLLocationCoordinate2D, Swift.Double) -> RadarSDK.RadarSyncedGeofenceSnapshot.Geometry",
1638
+ "children": [
1639
+ {
1640
+ "kind": "TypeFunc",
1641
+ "name": "Function",
1642
+ "printedName": "(_LocationEssentials.CLLocationCoordinate2D, Swift.Double) -> RadarSDK.RadarSyncedGeofenceSnapshot.Geometry",
1643
+ "children": [
1644
+ {
1645
+ "kind": "TypeNominal",
1646
+ "name": "Geometry",
1647
+ "printedName": "RadarSDK.RadarSyncedGeofenceSnapshot.Geometry",
1648
+ "usr": "s:8RadarSDK0A22SyncedGeofenceSnapshotV8GeometryO"
1649
+ },
1650
+ {
1651
+ "kind": "TypeNominal",
1652
+ "name": "Tuple",
1653
+ "printedName": "(center: _LocationEssentials.CLLocationCoordinate2D, radius: Swift.Double)",
1654
+ "children": [
1655
+ {
1656
+ "kind": "TypeNominal",
1657
+ "name": "CLLocationCoordinate2D",
1658
+ "printedName": "_LocationEssentials.CLLocationCoordinate2D",
1659
+ "usr": "c:@S@CLLocationCoordinate2D"
1660
+ },
1661
+ {
1662
+ "kind": "TypeNominal",
1663
+ "name": "Double",
1664
+ "printedName": "Swift.Double",
1665
+ "usr": "s:Sd"
1666
+ }
1667
+ ]
1668
+ }
1669
+ ]
1670
+ },
1671
+ {
1672
+ "kind": "TypeNominal",
1673
+ "name": "Metatype",
1674
+ "printedName": "RadarSDK.RadarSyncedGeofenceSnapshot.Geometry.Type",
1675
+ "children": [
1676
+ {
1677
+ "kind": "TypeNominal",
1678
+ "name": "Geometry",
1679
+ "printedName": "RadarSDK.RadarSyncedGeofenceSnapshot.Geometry",
1680
+ "usr": "s:8RadarSDK0A22SyncedGeofenceSnapshotV8GeometryO"
1681
+ }
1682
+ ]
1683
+ }
1684
+ ]
1685
+ }
1686
+ ],
1687
+ "declKind": "EnumElement",
1688
+ "usr": "s:8RadarSDK0A22SyncedGeofenceSnapshotV8GeometryO6circleyAESo22CLLocationCoordinate2DV_SdtcAEmF",
1689
+ "mangledName": "$s8RadarSDK0A22SyncedGeofenceSnapshotV8GeometryO6circleyAESo22CLLocationCoordinate2DV_SdtcAEmF",
1690
+ "moduleName": "RadarSDK"
1691
+ },
1692
+ {
1693
+ "kind": "Var",
1694
+ "name": "polygon",
1695
+ "printedName": "polygon",
1696
+ "children": [
1697
+ {
1698
+ "kind": "TypeFunc",
1699
+ "name": "Function",
1700
+ "printedName": "(RadarSDK.RadarSyncedGeofenceSnapshot.Geometry.Type) -> ([_LocationEssentials.CLLocationCoordinate2D], _LocationEssentials.CLLocationCoordinate2D, Swift.Double) -> RadarSDK.RadarSyncedGeofenceSnapshot.Geometry",
1701
+ "children": [
1702
+ {
1703
+ "kind": "TypeFunc",
1704
+ "name": "Function",
1705
+ "printedName": "([_LocationEssentials.CLLocationCoordinate2D], _LocationEssentials.CLLocationCoordinate2D, Swift.Double) -> RadarSDK.RadarSyncedGeofenceSnapshot.Geometry",
1706
+ "children": [
1707
+ {
1708
+ "kind": "TypeNominal",
1709
+ "name": "Geometry",
1710
+ "printedName": "RadarSDK.RadarSyncedGeofenceSnapshot.Geometry",
1711
+ "usr": "s:8RadarSDK0A22SyncedGeofenceSnapshotV8GeometryO"
1712
+ },
1713
+ {
1714
+ "kind": "TypeNominal",
1715
+ "name": "Tuple",
1716
+ "printedName": "(coordinates: [_LocationEssentials.CLLocationCoordinate2D], center: _LocationEssentials.CLLocationCoordinate2D, radius: Swift.Double)",
1717
+ "children": [
1718
+ {
1719
+ "kind": "TypeNominal",
1720
+ "name": "Array",
1721
+ "printedName": "[_LocationEssentials.CLLocationCoordinate2D]",
1722
+ "children": [
1723
+ {
1724
+ "kind": "TypeNominal",
1725
+ "name": "CLLocationCoordinate2D",
1726
+ "printedName": "_LocationEssentials.CLLocationCoordinate2D",
1727
+ "usr": "c:@S@CLLocationCoordinate2D"
1728
+ }
1729
+ ],
1730
+ "usr": "s:Sa"
1731
+ },
1732
+ {
1733
+ "kind": "TypeNominal",
1734
+ "name": "CLLocationCoordinate2D",
1735
+ "printedName": "_LocationEssentials.CLLocationCoordinate2D",
1736
+ "usr": "c:@S@CLLocationCoordinate2D"
1737
+ },
1738
+ {
1739
+ "kind": "TypeNominal",
1740
+ "name": "Double",
1741
+ "printedName": "Swift.Double",
1742
+ "usr": "s:Sd"
1743
+ }
1744
+ ]
1745
+ }
1746
+ ]
1747
+ },
1748
+ {
1749
+ "kind": "TypeNominal",
1750
+ "name": "Metatype",
1751
+ "printedName": "RadarSDK.RadarSyncedGeofenceSnapshot.Geometry.Type",
1752
+ "children": [
1753
+ {
1754
+ "kind": "TypeNominal",
1755
+ "name": "Geometry",
1756
+ "printedName": "RadarSDK.RadarSyncedGeofenceSnapshot.Geometry",
1757
+ "usr": "s:8RadarSDK0A22SyncedGeofenceSnapshotV8GeometryO"
1758
+ }
1759
+ ]
1760
+ }
1761
+ ]
1762
+ }
1763
+ ],
1764
+ "declKind": "EnumElement",
1765
+ "usr": "s:8RadarSDK0A22SyncedGeofenceSnapshotV8GeometryO7polygonyAESaySo22CLLocationCoordinate2DVG_AHSdtcAEmF",
1766
+ "mangledName": "$s8RadarSDK0A22SyncedGeofenceSnapshotV8GeometryO7polygonyAESaySo22CLLocationCoordinate2DVG_AHSdtcAEmF",
1767
+ "moduleName": "RadarSDK"
1768
+ },
1769
+ {
1770
+ "kind": "Var",
1771
+ "name": "center",
1772
+ "printedName": "center",
1773
+ "children": [
1774
+ {
1775
+ "kind": "TypeNominal",
1776
+ "name": "CLLocationCoordinate2D",
1777
+ "printedName": "_LocationEssentials.CLLocationCoordinate2D",
1778
+ "usr": "c:@S@CLLocationCoordinate2D"
1779
+ }
1780
+ ],
1781
+ "declKind": "Var",
1782
+ "usr": "s:8RadarSDK0A22SyncedGeofenceSnapshotV8GeometryO6centerSo22CLLocationCoordinate2DVvp",
1783
+ "mangledName": "$s8RadarSDK0A22SyncedGeofenceSnapshotV8GeometryO6centerSo22CLLocationCoordinate2DVvp",
1784
+ "moduleName": "RadarSDK",
1785
+ "declAttributes": [
1786
+ "AccessControl"
1787
+ ],
1788
+ "accessors": [
1789
+ {
1790
+ "kind": "Accessor",
1791
+ "name": "Get",
1792
+ "printedName": "Get()",
1793
+ "children": [
1794
+ {
1795
+ "kind": "TypeNominal",
1796
+ "name": "CLLocationCoordinate2D",
1797
+ "printedName": "_LocationEssentials.CLLocationCoordinate2D",
1798
+ "usr": "c:@S@CLLocationCoordinate2D"
1799
+ }
1800
+ ],
1801
+ "declKind": "Accessor",
1802
+ "usr": "s:8RadarSDK0A22SyncedGeofenceSnapshotV8GeometryO6centerSo22CLLocationCoordinate2DVvg",
1803
+ "mangledName": "$s8RadarSDK0A22SyncedGeofenceSnapshotV8GeometryO6centerSo22CLLocationCoordinate2DVvg",
1804
+ "moduleName": "RadarSDK",
1805
+ "accessorKind": "get"
1806
+ }
1807
+ ]
1808
+ }
1809
+ ],
1810
+ "declKind": "Enum",
1811
+ "usr": "s:8RadarSDK0A22SyncedGeofenceSnapshotV8GeometryO",
1812
+ "mangledName": "$s8RadarSDK0A22SyncedGeofenceSnapshotV8GeometryO",
1813
+ "moduleName": "RadarSDK",
1814
+ "declAttributes": [
1815
+ "AccessControl"
1816
+ ],
1817
+ "conformances": [
1818
+ {
1819
+ "kind": "Conformance",
1820
+ "name": "Copyable",
1821
+ "printedName": "Copyable",
1822
+ "usr": "s:s8CopyableP",
1823
+ "mangledName": "$ss8CopyableP"
1824
+ },
1825
+ {
1826
+ "kind": "Conformance",
1827
+ "name": "Escapable",
1828
+ "printedName": "Escapable",
1829
+ "usr": "s:s9EscapableP",
1830
+ "mangledName": "$ss9EscapableP"
1831
+ }
1832
+ ]
1833
+ }
1834
+ ],
1835
+ "declKind": "Struct",
1836
+ "usr": "s:8RadarSDK0A22SyncedGeofenceSnapshotV",
1837
+ "mangledName": "$s8RadarSDK0A22SyncedGeofenceSnapshotV",
1838
+ "moduleName": "RadarSDK",
1839
+ "declAttributes": [
1840
+ "AccessControl",
1841
+ "RawDocComment"
1842
+ ],
1843
+ "conformances": [
1844
+ {
1845
+ "kind": "Conformance",
1846
+ "name": "Copyable",
1847
+ "printedName": "Copyable",
1848
+ "usr": "s:s8CopyableP",
1849
+ "mangledName": "$ss8CopyableP"
1850
+ },
1851
+ {
1852
+ "kind": "Conformance",
1853
+ "name": "Escapable",
1854
+ "printedName": "Escapable",
1855
+ "usr": "s:s9EscapableP",
1856
+ "mangledName": "$ss9EscapableP"
1857
+ }
1858
+ ]
1859
+ },
1860
+ {
1861
+ "kind": "TypeDecl",
1862
+ "name": "RadarSyncedPlaceSnapshot",
1863
+ "printedName": "RadarSyncedPlaceSnapshot",
1864
+ "children": [
1865
+ {
1866
+ "kind": "Var",
1867
+ "name": "id",
1868
+ "printedName": "id",
1869
+ "children": [
1870
+ {
1871
+ "kind": "TypeNominal",
1872
+ "name": "String",
1873
+ "printedName": "Swift.String",
1874
+ "usr": "s:SS"
1875
+ }
1876
+ ],
1877
+ "declKind": "Var",
1878
+ "usr": "s:8RadarSDK0A19SyncedPlaceSnapshotV2idSSvp",
1879
+ "mangledName": "$s8RadarSDK0A19SyncedPlaceSnapshotV2idSSvp",
1880
+ "moduleName": "RadarSDK",
1881
+ "declAttributes": [
1882
+ "HasStorage",
1883
+ "AccessControl"
1884
+ ],
1885
+ "isLet": true,
1886
+ "hasStorage": true,
1887
+ "accessors": [
1888
+ {
1889
+ "kind": "Accessor",
1890
+ "name": "Get",
1891
+ "printedName": "Get()",
1892
+ "children": [
1893
+ {
1894
+ "kind": "TypeNominal",
1895
+ "name": "String",
1896
+ "printedName": "Swift.String",
1897
+ "usr": "s:SS"
1898
+ }
1899
+ ],
1900
+ "declKind": "Accessor",
1901
+ "usr": "s:8RadarSDK0A19SyncedPlaceSnapshotV2idSSvg",
1902
+ "mangledName": "$s8RadarSDK0A19SyncedPlaceSnapshotV2idSSvg",
1903
+ "moduleName": "RadarSDK",
1904
+ "implicit": true,
1905
+ "accessorKind": "get"
1906
+ }
1907
+ ]
1908
+ },
1909
+ {
1910
+ "kind": "Var",
1911
+ "name": "name",
1912
+ "printedName": "name",
1913
+ "children": [
1914
+ {
1915
+ "kind": "TypeNominal",
1916
+ "name": "String",
1917
+ "printedName": "Swift.String",
1918
+ "usr": "s:SS"
1919
+ }
1920
+ ],
1921
+ "declKind": "Var",
1922
+ "usr": "s:8RadarSDK0A19SyncedPlaceSnapshotV4nameSSvp",
1923
+ "mangledName": "$s8RadarSDK0A19SyncedPlaceSnapshotV4nameSSvp",
1924
+ "moduleName": "RadarSDK",
1925
+ "declAttributes": [
1926
+ "HasStorage",
1927
+ "AccessControl"
1928
+ ],
1929
+ "isLet": true,
1930
+ "hasStorage": true,
1931
+ "accessors": [
1932
+ {
1933
+ "kind": "Accessor",
1934
+ "name": "Get",
1935
+ "printedName": "Get()",
1936
+ "children": [
1937
+ {
1938
+ "kind": "TypeNominal",
1939
+ "name": "String",
1940
+ "printedName": "Swift.String",
1941
+ "usr": "s:SS"
1942
+ }
1943
+ ],
1944
+ "declKind": "Accessor",
1945
+ "usr": "s:8RadarSDK0A19SyncedPlaceSnapshotV4nameSSvg",
1946
+ "mangledName": "$s8RadarSDK0A19SyncedPlaceSnapshotV4nameSSvg",
1947
+ "moduleName": "RadarSDK",
1948
+ "implicit": true,
1949
+ "accessorKind": "get"
1950
+ }
1951
+ ]
1952
+ },
1953
+ {
1954
+ "kind": "Var",
1955
+ "name": "categories",
1956
+ "printedName": "categories",
1957
+ "children": [
1958
+ {
1959
+ "kind": "TypeNominal",
1960
+ "name": "Array",
1961
+ "printedName": "[Swift.String]",
1962
+ "children": [
1963
+ {
1964
+ "kind": "TypeNominal",
1965
+ "name": "String",
1966
+ "printedName": "Swift.String",
1967
+ "usr": "s:SS"
1968
+ }
1969
+ ],
1970
+ "usr": "s:Sa"
1971
+ }
1972
+ ],
1973
+ "declKind": "Var",
1974
+ "usr": "s:8RadarSDK0A19SyncedPlaceSnapshotV10categoriesSaySSGvp",
1975
+ "mangledName": "$s8RadarSDK0A19SyncedPlaceSnapshotV10categoriesSaySSGvp",
1976
+ "moduleName": "RadarSDK",
1977
+ "declAttributes": [
1978
+ "HasStorage",
1979
+ "AccessControl"
1980
+ ],
1981
+ "isLet": true,
1982
+ "hasStorage": true,
1983
+ "accessors": [
1984
+ {
1985
+ "kind": "Accessor",
1986
+ "name": "Get",
1987
+ "printedName": "Get()",
1988
+ "children": [
1989
+ {
1990
+ "kind": "TypeNominal",
1991
+ "name": "Array",
1992
+ "printedName": "[Swift.String]",
1993
+ "children": [
1994
+ {
1995
+ "kind": "TypeNominal",
1996
+ "name": "String",
1997
+ "printedName": "Swift.String",
1998
+ "usr": "s:SS"
1999
+ }
2000
+ ],
2001
+ "usr": "s:Sa"
2002
+ }
2003
+ ],
2004
+ "declKind": "Accessor",
2005
+ "usr": "s:8RadarSDK0A19SyncedPlaceSnapshotV10categoriesSaySSGvg",
2006
+ "mangledName": "$s8RadarSDK0A19SyncedPlaceSnapshotV10categoriesSaySSGvg",
2007
+ "moduleName": "RadarSDK",
2008
+ "implicit": true,
2009
+ "accessorKind": "get"
2010
+ }
2011
+ ]
2012
+ },
2013
+ {
2014
+ "kind": "Var",
2015
+ "name": "group",
2016
+ "printedName": "group",
2017
+ "children": [
2018
+ {
2019
+ "kind": "TypeNominal",
2020
+ "name": "Optional",
2021
+ "printedName": "Swift.String?",
2022
+ "children": [
2023
+ {
2024
+ "kind": "TypeNominal",
2025
+ "name": "String",
2026
+ "printedName": "Swift.String",
2027
+ "usr": "s:SS"
2028
+ }
2029
+ ],
2030
+ "usr": "s:Sq"
2031
+ }
2032
+ ],
2033
+ "declKind": "Var",
2034
+ "usr": "s:8RadarSDK0A19SyncedPlaceSnapshotV5groupSSSgvp",
2035
+ "mangledName": "$s8RadarSDK0A19SyncedPlaceSnapshotV5groupSSSgvp",
2036
+ "moduleName": "RadarSDK",
2037
+ "declAttributes": [
2038
+ "HasStorage",
2039
+ "AccessControl"
2040
+ ],
2041
+ "isLet": true,
2042
+ "hasStorage": true,
2043
+ "accessors": [
2044
+ {
2045
+ "kind": "Accessor",
2046
+ "name": "Get",
2047
+ "printedName": "Get()",
2048
+ "children": [
2049
+ {
2050
+ "kind": "TypeNominal",
2051
+ "name": "Optional",
2052
+ "printedName": "Swift.String?",
2053
+ "children": [
2054
+ {
2055
+ "kind": "TypeNominal",
2056
+ "name": "String",
2057
+ "printedName": "Swift.String",
2058
+ "usr": "s:SS"
2059
+ }
2060
+ ],
2061
+ "usr": "s:Sq"
2062
+ }
2063
+ ],
2064
+ "declKind": "Accessor",
2065
+ "usr": "s:8RadarSDK0A19SyncedPlaceSnapshotV5groupSSSgvg",
2066
+ "mangledName": "$s8RadarSDK0A19SyncedPlaceSnapshotV5groupSSSgvg",
2067
+ "moduleName": "RadarSDK",
2068
+ "implicit": true,
2069
+ "accessorKind": "get"
2070
+ }
2071
+ ]
2072
+ },
2073
+ {
2074
+ "kind": "Var",
2075
+ "name": "location",
2076
+ "printedName": "location",
2077
+ "children": [
2078
+ {
2079
+ "kind": "TypeNominal",
2080
+ "name": "CLLocationCoordinate2D",
2081
+ "printedName": "_LocationEssentials.CLLocationCoordinate2D",
2082
+ "usr": "c:@S@CLLocationCoordinate2D"
2083
+ }
2084
+ ],
2085
+ "declKind": "Var",
2086
+ "usr": "s:8RadarSDK0A19SyncedPlaceSnapshotV8locationSo22CLLocationCoordinate2DVvp",
2087
+ "mangledName": "$s8RadarSDK0A19SyncedPlaceSnapshotV8locationSo22CLLocationCoordinate2DVvp",
2088
+ "moduleName": "RadarSDK",
2089
+ "declAttributes": [
2090
+ "HasStorage",
2091
+ "AccessControl"
2092
+ ],
2093
+ "isLet": true,
2094
+ "hasStorage": true,
2095
+ "accessors": [
2096
+ {
2097
+ "kind": "Accessor",
2098
+ "name": "Get",
2099
+ "printedName": "Get()",
2100
+ "children": [
2101
+ {
2102
+ "kind": "TypeNominal",
2103
+ "name": "CLLocationCoordinate2D",
2104
+ "printedName": "_LocationEssentials.CLLocationCoordinate2D",
2105
+ "usr": "c:@S@CLLocationCoordinate2D"
2106
+ }
2107
+ ],
2108
+ "declKind": "Accessor",
2109
+ "usr": "s:8RadarSDK0A19SyncedPlaceSnapshotV8locationSo22CLLocationCoordinate2DVvg",
2110
+ "mangledName": "$s8RadarSDK0A19SyncedPlaceSnapshotV8locationSo22CLLocationCoordinate2DVvg",
2111
+ "moduleName": "RadarSDK",
2112
+ "implicit": true,
2113
+ "accessorKind": "get"
2114
+ }
2115
+ ]
2116
+ }
2117
+ ],
2118
+ "declKind": "Struct",
2119
+ "usr": "s:8RadarSDK0A19SyncedPlaceSnapshotV",
2120
+ "mangledName": "$s8RadarSDK0A19SyncedPlaceSnapshotV",
2121
+ "moduleName": "RadarSDK",
2122
+ "declAttributes": [
2123
+ "AccessControl"
2124
+ ],
2125
+ "conformances": [
2126
+ {
2127
+ "kind": "Conformance",
2128
+ "name": "Copyable",
2129
+ "printedName": "Copyable",
2130
+ "usr": "s:s8CopyableP",
2131
+ "mangledName": "$ss8CopyableP"
2132
+ },
2133
+ {
2134
+ "kind": "Conformance",
2135
+ "name": "Escapable",
2136
+ "printedName": "Escapable",
2137
+ "usr": "s:s9EscapableP",
2138
+ "mangledName": "$ss9EscapableP"
2139
+ }
2140
+ ]
2141
+ },
2142
+ {
2143
+ "kind": "TypeDecl",
2144
+ "name": "RadarSyncedBeaconSnapshot",
2145
+ "printedName": "RadarSyncedBeaconSnapshot",
2146
+ "children": [
2147
+ {
2148
+ "kind": "Var",
2149
+ "name": "id",
2150
+ "printedName": "id",
2151
+ "children": [
2152
+ {
2153
+ "kind": "TypeNominal",
2154
+ "name": "String",
2155
+ "printedName": "Swift.String",
2156
+ "usr": "s:SS"
2157
+ }
2158
+ ],
2159
+ "declKind": "Var",
2160
+ "usr": "s:8RadarSDK0A20SyncedBeaconSnapshotV2idSSvp",
2161
+ "mangledName": "$s8RadarSDK0A20SyncedBeaconSnapshotV2idSSvp",
2162
+ "moduleName": "RadarSDK",
2163
+ "declAttributes": [
2164
+ "HasStorage",
2165
+ "AccessControl"
2166
+ ],
2167
+ "isLet": true,
2168
+ "hasStorage": true,
2169
+ "accessors": [
2170
+ {
2171
+ "kind": "Accessor",
2172
+ "name": "Get",
2173
+ "printedName": "Get()",
2174
+ "children": [
2175
+ {
2176
+ "kind": "TypeNominal",
2177
+ "name": "String",
2178
+ "printedName": "Swift.String",
2179
+ "usr": "s:SS"
2180
+ }
2181
+ ],
2182
+ "declKind": "Accessor",
2183
+ "usr": "s:8RadarSDK0A20SyncedBeaconSnapshotV2idSSvg",
2184
+ "mangledName": "$s8RadarSDK0A20SyncedBeaconSnapshotV2idSSvg",
2185
+ "moduleName": "RadarSDK",
2186
+ "implicit": true,
2187
+ "accessorKind": "get"
2188
+ }
2189
+ ]
2190
+ },
2191
+ {
2192
+ "kind": "Var",
2193
+ "name": "description",
2194
+ "printedName": "description",
2195
+ "children": [
2196
+ {
2197
+ "kind": "TypeNominal",
2198
+ "name": "Optional",
2199
+ "printedName": "Swift.String?",
2200
+ "children": [
2201
+ {
2202
+ "kind": "TypeNominal",
2203
+ "name": "String",
2204
+ "printedName": "Swift.String",
2205
+ "usr": "s:SS"
2206
+ }
2207
+ ],
2208
+ "usr": "s:Sq"
2209
+ }
2210
+ ],
2211
+ "declKind": "Var",
2212
+ "usr": "s:8RadarSDK0A20SyncedBeaconSnapshotV11descriptionSSSgvp",
2213
+ "mangledName": "$s8RadarSDK0A20SyncedBeaconSnapshotV11descriptionSSSgvp",
2214
+ "moduleName": "RadarSDK",
2215
+ "declAttributes": [
2216
+ "HasStorage",
2217
+ "AccessControl"
2218
+ ],
2219
+ "isLet": true,
2220
+ "hasStorage": true,
2221
+ "accessors": [
2222
+ {
2223
+ "kind": "Accessor",
2224
+ "name": "Get",
2225
+ "printedName": "Get()",
2226
+ "children": [
2227
+ {
2228
+ "kind": "TypeNominal",
2229
+ "name": "Optional",
2230
+ "printedName": "Swift.String?",
2231
+ "children": [
2232
+ {
2233
+ "kind": "TypeNominal",
2234
+ "name": "String",
2235
+ "printedName": "Swift.String",
2236
+ "usr": "s:SS"
2237
+ }
2238
+ ],
2239
+ "usr": "s:Sq"
2240
+ }
2241
+ ],
2242
+ "declKind": "Accessor",
2243
+ "usr": "s:8RadarSDK0A20SyncedBeaconSnapshotV11descriptionSSSgvg",
2244
+ "mangledName": "$s8RadarSDK0A20SyncedBeaconSnapshotV11descriptionSSSgvg",
2245
+ "moduleName": "RadarSDK",
2246
+ "implicit": true,
2247
+ "accessorKind": "get"
2248
+ }
2249
+ ]
2250
+ },
2251
+ {
2252
+ "kind": "Var",
2253
+ "name": "tag",
2254
+ "printedName": "tag",
2255
+ "children": [
2256
+ {
2257
+ "kind": "TypeNominal",
2258
+ "name": "Optional",
2259
+ "printedName": "Swift.String?",
2260
+ "children": [
2261
+ {
2262
+ "kind": "TypeNominal",
2263
+ "name": "String",
2264
+ "printedName": "Swift.String",
2265
+ "usr": "s:SS"
2266
+ }
2267
+ ],
2268
+ "usr": "s:Sq"
2269
+ }
2270
+ ],
2271
+ "declKind": "Var",
2272
+ "usr": "s:8RadarSDK0A20SyncedBeaconSnapshotV3tagSSSgvp",
2273
+ "mangledName": "$s8RadarSDK0A20SyncedBeaconSnapshotV3tagSSSgvp",
2274
+ "moduleName": "RadarSDK",
2275
+ "declAttributes": [
2276
+ "HasStorage",
2277
+ "AccessControl"
2278
+ ],
2279
+ "isLet": true,
2280
+ "hasStorage": true,
2281
+ "accessors": [
2282
+ {
2283
+ "kind": "Accessor",
2284
+ "name": "Get",
2285
+ "printedName": "Get()",
2286
+ "children": [
2287
+ {
2288
+ "kind": "TypeNominal",
2289
+ "name": "Optional",
2290
+ "printedName": "Swift.String?",
2291
+ "children": [
2292
+ {
2293
+ "kind": "TypeNominal",
2294
+ "name": "String",
2295
+ "printedName": "Swift.String",
2296
+ "usr": "s:SS"
2297
+ }
2298
+ ],
2299
+ "usr": "s:Sq"
2300
+ }
2301
+ ],
2302
+ "declKind": "Accessor",
2303
+ "usr": "s:8RadarSDK0A20SyncedBeaconSnapshotV3tagSSSgvg",
2304
+ "mangledName": "$s8RadarSDK0A20SyncedBeaconSnapshotV3tagSSSgvg",
2305
+ "moduleName": "RadarSDK",
2306
+ "implicit": true,
2307
+ "accessorKind": "get"
2308
+ }
2309
+ ]
2310
+ },
2311
+ {
2312
+ "kind": "Var",
2313
+ "name": "uuid",
2314
+ "printedName": "uuid",
2315
+ "children": [
2316
+ {
2317
+ "kind": "TypeNominal",
2318
+ "name": "String",
2319
+ "printedName": "Swift.String",
2320
+ "usr": "s:SS"
2321
+ }
2322
+ ],
2323
+ "declKind": "Var",
2324
+ "usr": "s:8RadarSDK0A20SyncedBeaconSnapshotV4uuidSSvp",
2325
+ "mangledName": "$s8RadarSDK0A20SyncedBeaconSnapshotV4uuidSSvp",
2326
+ "moduleName": "RadarSDK",
2327
+ "declAttributes": [
2328
+ "HasStorage",
2329
+ "AccessControl"
2330
+ ],
2331
+ "isLet": true,
2332
+ "hasStorage": true,
2333
+ "accessors": [
2334
+ {
2335
+ "kind": "Accessor",
2336
+ "name": "Get",
2337
+ "printedName": "Get()",
2338
+ "children": [
2339
+ {
2340
+ "kind": "TypeNominal",
2341
+ "name": "String",
2342
+ "printedName": "Swift.String",
2343
+ "usr": "s:SS"
2344
+ }
2345
+ ],
2346
+ "declKind": "Accessor",
2347
+ "usr": "s:8RadarSDK0A20SyncedBeaconSnapshotV4uuidSSvg",
2348
+ "mangledName": "$s8RadarSDK0A20SyncedBeaconSnapshotV4uuidSSvg",
2349
+ "moduleName": "RadarSDK",
2350
+ "implicit": true,
2351
+ "accessorKind": "get"
2352
+ }
2353
+ ]
2354
+ },
2355
+ {
2356
+ "kind": "Var",
2357
+ "name": "major",
2358
+ "printedName": "major",
2359
+ "children": [
2360
+ {
2361
+ "kind": "TypeNominal",
2362
+ "name": "String",
2363
+ "printedName": "Swift.String",
2364
+ "usr": "s:SS"
1144
2365
  }
1145
2366
  ],
1146
- "declKind": "Constructor",
1147
- "usr": "c:@M@RadarSDK@objc(cs)RadarSyncManager(im)init",
1148
- "mangledName": "$s8RadarSDK0A11SyncManagerCACycfc",
2367
+ "declKind": "Var",
2368
+ "usr": "s:8RadarSDK0A20SyncedBeaconSnapshotV5majorSSvp",
2369
+ "mangledName": "$s8RadarSDK0A20SyncedBeaconSnapshotV5majorSSvp",
1149
2370
  "moduleName": "RadarSDK",
1150
- "overriding": true,
1151
- "implicit": true,
1152
- "objc_name": "init",
1153
2371
  "declAttributes": [
1154
- "Dynamic",
1155
- "ObjC",
1156
- "Override"
2372
+ "HasStorage",
2373
+ "AccessControl"
1157
2374
  ],
1158
- "init_kind": "Designated"
2375
+ "isLet": true,
2376
+ "hasStorage": true,
2377
+ "accessors": [
2378
+ {
2379
+ "kind": "Accessor",
2380
+ "name": "Get",
2381
+ "printedName": "Get()",
2382
+ "children": [
2383
+ {
2384
+ "kind": "TypeNominal",
2385
+ "name": "String",
2386
+ "printedName": "Swift.String",
2387
+ "usr": "s:SS"
2388
+ }
2389
+ ],
2390
+ "declKind": "Accessor",
2391
+ "usr": "s:8RadarSDK0A20SyncedBeaconSnapshotV5majorSSvg",
2392
+ "mangledName": "$s8RadarSDK0A20SyncedBeaconSnapshotV5majorSSvg",
2393
+ "moduleName": "RadarSDK",
2394
+ "implicit": true,
2395
+ "accessorKind": "get"
2396
+ }
2397
+ ]
2398
+ },
2399
+ {
2400
+ "kind": "Var",
2401
+ "name": "minor",
2402
+ "printedName": "minor",
2403
+ "children": [
2404
+ {
2405
+ "kind": "TypeNominal",
2406
+ "name": "String",
2407
+ "printedName": "Swift.String",
2408
+ "usr": "s:SS"
2409
+ }
2410
+ ],
2411
+ "declKind": "Var",
2412
+ "usr": "s:8RadarSDK0A20SyncedBeaconSnapshotV5minorSSvp",
2413
+ "mangledName": "$s8RadarSDK0A20SyncedBeaconSnapshotV5minorSSvp",
2414
+ "moduleName": "RadarSDK",
2415
+ "declAttributes": [
2416
+ "HasStorage",
2417
+ "AccessControl"
2418
+ ],
2419
+ "isLet": true,
2420
+ "hasStorage": true,
2421
+ "accessors": [
2422
+ {
2423
+ "kind": "Accessor",
2424
+ "name": "Get",
2425
+ "printedName": "Get()",
2426
+ "children": [
2427
+ {
2428
+ "kind": "TypeNominal",
2429
+ "name": "String",
2430
+ "printedName": "Swift.String",
2431
+ "usr": "s:SS"
2432
+ }
2433
+ ],
2434
+ "declKind": "Accessor",
2435
+ "usr": "s:8RadarSDK0A20SyncedBeaconSnapshotV5minorSSvg",
2436
+ "mangledName": "$s8RadarSDK0A20SyncedBeaconSnapshotV5minorSSvg",
2437
+ "moduleName": "RadarSDK",
2438
+ "implicit": true,
2439
+ "accessorKind": "get"
2440
+ }
2441
+ ]
2442
+ },
2443
+ {
2444
+ "kind": "Var",
2445
+ "name": "location",
2446
+ "printedName": "location",
2447
+ "children": [
2448
+ {
2449
+ "kind": "TypeNominal",
2450
+ "name": "Optional",
2451
+ "printedName": "_LocationEssentials.CLLocationCoordinate2D?",
2452
+ "children": [
2453
+ {
2454
+ "kind": "TypeNominal",
2455
+ "name": "CLLocationCoordinate2D",
2456
+ "printedName": "_LocationEssentials.CLLocationCoordinate2D",
2457
+ "usr": "c:@S@CLLocationCoordinate2D"
2458
+ }
2459
+ ],
2460
+ "usr": "s:Sq"
2461
+ }
2462
+ ],
2463
+ "declKind": "Var",
2464
+ "usr": "s:8RadarSDK0A20SyncedBeaconSnapshotV8locationSo22CLLocationCoordinate2DVSgvp",
2465
+ "mangledName": "$s8RadarSDK0A20SyncedBeaconSnapshotV8locationSo22CLLocationCoordinate2DVSgvp",
2466
+ "moduleName": "RadarSDK",
2467
+ "declAttributes": [
2468
+ "HasStorage",
2469
+ "AccessControl"
2470
+ ],
2471
+ "isLet": true,
2472
+ "hasStorage": true,
2473
+ "accessors": [
2474
+ {
2475
+ "kind": "Accessor",
2476
+ "name": "Get",
2477
+ "printedName": "Get()",
2478
+ "children": [
2479
+ {
2480
+ "kind": "TypeNominal",
2481
+ "name": "Optional",
2482
+ "printedName": "_LocationEssentials.CLLocationCoordinate2D?",
2483
+ "children": [
2484
+ {
2485
+ "kind": "TypeNominal",
2486
+ "name": "CLLocationCoordinate2D",
2487
+ "printedName": "_LocationEssentials.CLLocationCoordinate2D",
2488
+ "usr": "c:@S@CLLocationCoordinate2D"
2489
+ }
2490
+ ],
2491
+ "usr": "s:Sq"
2492
+ }
2493
+ ],
2494
+ "declKind": "Accessor",
2495
+ "usr": "s:8RadarSDK0A20SyncedBeaconSnapshotV8locationSo22CLLocationCoordinate2DVSgvg",
2496
+ "mangledName": "$s8RadarSDK0A20SyncedBeaconSnapshotV8locationSo22CLLocationCoordinate2DVSgvg",
2497
+ "moduleName": "RadarSDK",
2498
+ "implicit": true,
2499
+ "accessorKind": "get"
2500
+ }
2501
+ ]
1159
2502
  }
1160
2503
  ],
1161
- "declKind": "Class",
1162
- "usr": "c:@M@RadarSDK@objc(cs)RadarSyncManager",
1163
- "mangledName": "$s8RadarSDK0A11SyncManagerC",
2504
+ "declKind": "Struct",
2505
+ "usr": "s:8RadarSDK0A20SyncedBeaconSnapshotV",
2506
+ "mangledName": "$s8RadarSDK0A20SyncedBeaconSnapshotV",
1164
2507
  "moduleName": "RadarSDK",
1165
- "objc_name": "RadarSyncManager",
1166
2508
  "declAttributes": [
1167
- "Final",
1168
- "AccessControl",
1169
- "ObjC"
1170
- ],
1171
- "superclassUsr": "c:objc(cs)NSObject",
1172
- "inheritsConvenienceInitializers": true,
1173
- "superclassNames": [
1174
- "ObjectiveC.NSObject"
2509
+ "AccessControl"
1175
2510
  ],
1176
2511
  "conformances": [
1177
- {
1178
- "kind": "Conformance",
1179
- "name": "_KeyValueCodingAndObserving",
1180
- "printedName": "_KeyValueCodingAndObserving",
1181
- "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
1182
- "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
1183
- },
1184
- {
1185
- "kind": "Conformance",
1186
- "name": "_KeyValueCodingAndObservingPublishing",
1187
- "printedName": "_KeyValueCodingAndObservingPublishing",
1188
- "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
1189
- "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
1190
- },
1191
- {
1192
- "kind": "Conformance",
1193
- "name": "CVarArg",
1194
- "printedName": "CVarArg",
1195
- "usr": "s:s7CVarArgP",
1196
- "mangledName": "$ss7CVarArgP"
1197
- },
1198
2512
  {
1199
2513
  "kind": "Conformance",
1200
2514
  "name": "Copyable",
@@ -1202,40 +2516,12 @@
1202
2516
  "usr": "s:s8CopyableP",
1203
2517
  "mangledName": "$ss8CopyableP"
1204
2518
  },
1205
- {
1206
- "kind": "Conformance",
1207
- "name": "CustomDebugStringConvertible",
1208
- "printedName": "CustomDebugStringConvertible",
1209
- "usr": "s:s28CustomDebugStringConvertibleP",
1210
- "mangledName": "$ss28CustomDebugStringConvertibleP"
1211
- },
1212
- {
1213
- "kind": "Conformance",
1214
- "name": "CustomStringConvertible",
1215
- "printedName": "CustomStringConvertible",
1216
- "usr": "s:s23CustomStringConvertibleP",
1217
- "mangledName": "$ss23CustomStringConvertibleP"
1218
- },
1219
- {
1220
- "kind": "Conformance",
1221
- "name": "Equatable",
1222
- "printedName": "Equatable",
1223
- "usr": "s:SQ",
1224
- "mangledName": "$sSQ"
1225
- },
1226
2519
  {
1227
2520
  "kind": "Conformance",
1228
2521
  "name": "Escapable",
1229
2522
  "printedName": "Escapable",
1230
2523
  "usr": "s:s9EscapableP",
1231
2524
  "mangledName": "$ss9EscapableP"
1232
- },
1233
- {
1234
- "kind": "Conformance",
1235
- "name": "Hashable",
1236
- "printedName": "Hashable",
1237
- "usr": "s:SH",
1238
- "mangledName": "$sSH"
1239
2525
  }
1240
2526
  ]
1241
2527
  },
@@ -1350,6 +2636,16 @@
1350
2636
  "RawDocComment"
1351
2637
  ]
1352
2638
  },
2639
+ {
2640
+ "kind": "Import",
2641
+ "name": "Foundation",
2642
+ "printedName": "Foundation",
2643
+ "declKind": "Import",
2644
+ "moduleName": "RadarSDK",
2645
+ "declAttributes": [
2646
+ "RawDocComment"
2647
+ ]
2648
+ },
1353
2649
  {
1354
2650
  "kind": "TypeDecl",
1355
2651
  "name": "RadarInAppMessage_Swift",
@@ -4296,7 +5592,7 @@
4296
5592
  {
4297
5593
  "filePath": "\/tmp\/radar-static-build\/radar-sdk-ios\/RadarSDK\/RadarGeofence.swift",
4298
5594
  "kind": "StringLiteral",
4299
- "offset": 1819,
5595
+ "offset": 1865,
4300
5596
  "length": 5,
4301
5597
  "value": "\"_id\""
4302
5598
  },
@@ -4317,42 +5613,63 @@
4317
5613
  {
4318
5614
  "filePath": "\/tmp\/radar-static-build\/radar-sdk-ios\/RadarSDK\/RadarNotification.swift",
4319
5615
  "kind": "StringLiteral",
4320
- "offset": 4313,
5616
+ "offset": 2309,
5617
+ "length": 13,
5618
+ "value": "\"en_US_POSIX\""
5619
+ },
5620
+ {
5621
+ "filePath": "\/tmp\/radar-static-build\/radar-sdk-ios\/RadarSDK\/RadarNotification.swift",
5622
+ "kind": "StringLiteral",
5623
+ "offset": 2355,
5624
+ "length": 27,
5625
+ "value": "\"yyyy-MM-dd'T'HH:mm:ss.SSS\""
5626
+ },
5627
+ {
5628
+ "filePath": "\/tmp\/radar-static-build\/radar-sdk-ios\/RadarSDK\/RadarNotification.swift",
5629
+ "kind": "IntegerLiteral",
5630
+ "offset": 2629,
5631
+ "length": 2,
5632
+ "value": "23"
5633
+ },
5634
+ {
5635
+ "filePath": "\/tmp\/radar-static-build\/radar-sdk-ios\/RadarSDK\/RadarNotification.swift",
5636
+ "kind": "StringLiteral",
5637
+ "offset": 7744,
4321
5638
  "length": 8,
4322
5639
  "value": "\"denied\""
4323
5640
  },
4324
5641
  {
4325
5642
  "filePath": "\/tmp\/radar-static-build\/radar-sdk-ios\/RadarSDK\/RadarNotification.swift",
4326
5643
  "kind": "StringLiteral",
4327
- "offset": 4348,
5644
+ "offset": 7779,
4328
5645
  "length": 12,
4329
5646
  "value": "\"authorized\""
4330
5647
  },
4331
5648
  {
4332
5649
  "filePath": "\/tmp\/radar-static-build\/radar-sdk-ios\/RadarSDK\/RadarNotification.swift",
4333
5650
  "kind": "StringLiteral",
4334
- "offset": 4390,
5651
+ "offset": 7821,
4335
5652
  "length": 16,
4336
5653
  "value": "\"not_determined\""
4337
5654
  },
4338
5655
  {
4339
5656
  "filePath": "\/tmp\/radar-static-build\/radar-sdk-ios\/RadarSDK\/RadarNotification.swift",
4340
5657
  "kind": "StringLiteral",
4341
- "offset": 4432,
5658
+ "offset": 7863,
4342
5659
  "length": 11,
4343
5660
  "value": "\"ephemeral\""
4344
5661
  },
4345
5662
  {
4346
5663
  "filePath": "\/tmp\/radar-static-build\/radar-sdk-ios\/RadarSDK\/RadarNotification.swift",
4347
5664
  "kind": "StringLiteral",
4348
- "offset": 4471,
5665
+ "offset": 7902,
4349
5666
  "length": 13,
4350
5667
  "value": "\"provisional\""
4351
5668
  },
4352
5669
  {
4353
5670
  "filePath": "\/tmp\/radar-static-build\/radar-sdk-ios\/RadarSDK\/RadarNotification.swift",
4354
5671
  "kind": "StringLiteral",
4355
- "offset": 4508,
5672
+ "offset": 7939,
4356
5673
  "length": 9,
4357
5674
  "value": "\"unknown\""
4358
5675
  },
@@ -4632,21 +5949,42 @@
4632
5949
  {
4633
5950
  "filePath": "\/tmp\/radar-static-build\/radar-sdk-ios\/RadarSDK\/RadarOfflineEventManager.swift",
4634
5951
  "kind": "IntegerLiteral",
4635
- "offset": 8533,
5952
+ "offset": 8874,
4636
5953
  "length": 1,
4637
5954
  "value": "0"
4638
5955
  },
4639
5956
  {
4640
5957
  "filePath": "\/tmp\/radar-static-build\/radar-sdk-ios\/RadarSDK\/RadarLocationManager+Swift.swift",
4641
5958
  "kind": "StringLiteral",
4642
- "offset": 1352,
5959
+ "offset": 1342,
5960
+ "length": 8,
5961
+ "value": "\"radar_\""
5962
+ },
5963
+ {
5964
+ "filePath": "\/tmp\/radar-static-build\/radar-sdk-ios\/RadarSDK\/RadarLocationManager+Swift.swift",
5965
+ "kind": "StringLiteral",
5966
+ "offset": 1407,
5967
+ "length": 15,
5968
+ "value": "\"radar_bubble_\""
5969
+ },
5970
+ {
5971
+ "filePath": "\/tmp\/radar-static-build\/radar-sdk-ios\/RadarSDK\/RadarLocationManager+Swift.swift",
5972
+ "kind": "StringLiteral",
5973
+ "offset": 1477,
5974
+ "length": 17,
5975
+ "value": "\"radar_geofence_\""
5976
+ },
5977
+ {
5978
+ "filePath": "\/tmp\/radar-static-build\/radar-sdk-ios\/RadarSDK\/RadarLocationManager+Swift.swift",
5979
+ "kind": "StringLiteral",
5980
+ "offset": 1547,
4643
5981
  "length": 15,
4644
5982
  "value": "\"radar_beacon_\""
4645
5983
  },
4646
5984
  {
4647
5985
  "filePath": "\/tmp\/radar-static-build\/radar-sdk-ios\/RadarSDK\/RadarLocationManager+Swift.swift",
4648
5986
  "kind": "StringLiteral",
4649
- "offset": 1424,
5987
+ "offset": 1619,
4650
5988
  "length": 13,
4651
5989
  "value": "\"radar_uuid_\""
4652
5990
  },
@@ -4853,6 +6191,20 @@
4853
6191
  "length": 4,
4854
6192
  "value": "true"
4855
6193
  },
6194
+ {
6195
+ "filePath": "\/tmp\/radar-static-build\/radar-sdk-ios\/RadarSDK\/RadarOperatingHoursEvaluator.swift",
6196
+ "kind": "Array",
6197
+ "offset": 499,
6198
+ "length": 49,
6199
+ "value": "[\"Sun\", \"Mon\", \"Tue\", \"Wed\", \"Thu\", \"Fri\", \"Sat\"]"
6200
+ },
6201
+ {
6202
+ "filePath": "\/tmp\/radar-static-build\/radar-sdk-ios\/RadarSDK\/RadarOperatingHoursEvaluator.swift",
6203
+ "kind": "IntegerLiteral",
6204
+ "offset": 722,
6205
+ "length": 1,
6206
+ "value": "0"
6207
+ },
4856
6208
  {
4857
6209
  "filePath": "\/tmp\/radar-static-build\/radar-sdk-ios\/RadarSDK\/RadarNotificationHelper.swift",
4858
6210
  "kind": "BooleanLiteral",
@@ -4860,6 +6212,13 @@
4860
6212
  "length": 5,
4861
6213
  "value": "false"
4862
6214
  },
6215
+ {
6216
+ "filePath": "\/tmp\/radar-static-build\/radar-sdk-ios\/RadarSDK\/RadarNotificationHelper.swift",
6217
+ "kind": "StringLiteral",
6218
+ "offset": 1577,
6219
+ "length": 35,
6220
+ "value": "\"radar_notification_geofences.json\""
6221
+ },
4863
6222
  {
4864
6223
  "filePath": "\/tmp\/radar-static-build\/radar-sdk-ios\/RadarSDK\/RadarNotificationHelper.swift",
4865
6224
  "kind": "StringLiteral",
@@ -5299,7 +6658,7 @@
5299
6658
  "kind": "StringLiteral",
5300
6659
  "offset": 1358,
5301
6660
  "length": 8,
5302
- "value": "\"3.35.0\""
6661
+ "value": "\"3.37.1\""
5303
6662
  },
5304
6663
  {
5305
6664
  "filePath": "\/tmp\/radar-static-build\/radar-sdk-ios\/RadarSDK\/RadarUtils.swift",
@@ -5514,21 +6873,21 @@
5514
6873
  {
5515
6874
  "filePath": "\/tmp\/radar-static-build\/radar-sdk-ios\/RadarSDK\/RadarUtils.swift",
5516
6875
  "kind": "StringLiteral",
5517
- "offset": 7525,
6876
+ "offset": 7548,
5518
6877
  "length": 13,
5519
6878
  "value": "\"en_US_POSIX\""
5520
6879
  },
5521
6880
  {
5522
6881
  "filePath": "\/tmp\/radar-static-build\/radar-sdk-ios\/RadarSDK\/RadarUtils.swift",
5523
6882
  "kind": "StringLiteral",
5524
- "offset": 7571,
6883
+ "offset": 7594,
5525
6884
  "length": 28,
5526
6885
  "value": "\"yyyy-MM-dd'T'HH:mm:ss.SSSZ\""
5527
6886
  },
5528
6887
  {
5529
6888
  "filePath": "\/tmp\/radar-static-build\/radar-sdk-ios\/RadarSDK\/RadarUtils.swift",
5530
6889
  "kind": "IntegerLiteral",
5531
- "offset": 7654,
6890
+ "offset": 7677,
5532
6891
  "length": 1,
5533
6892
  "value": "0"
5534
6893
  }