@new-project-media/client-frontends-shared-types 3.24.1 → 3.24.3

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.
@@ -148,19 +148,15 @@ export declare const euSignalFullSchemaV1: z.ZodObject<{
148
148
  lng: z.ZodNumber;
149
149
  }, z.core.$strip>>;
150
150
  override: z.ZodOptional<z.ZodBoolean>;
151
- accuracy: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
152
- identifier: z.ZodLiteral<"A - Exact lat/lon or address hit">;
153
- id: z.ZodLiteral<import("../entity").LocationAccuracy.A>;
154
- }, z.core.$strip>, z.ZodObject<{
155
- identifier: z.ZodLiteral<"B - Exact POI known / Approximate / near known point">;
156
- id: z.ZodLiteral<import("../entity").LocationAccuracy.B>;
157
- }, z.core.$strip>, z.ZodObject<{
158
- identifier: z.ZodLiteral<"C - County or town centroid">;
159
- id: z.ZodLiteral<import("../entity").LocationAccuracy.C>;
160
- }, z.core.$strip>, z.ZodObject<{
161
- identifier: z.ZodUnion<[z.ZodLiteral<"Not Yet Determined">, z.ZodLiteral<"Unknown or pending verification">]>;
162
- id: z.ZodLiteral<import("../entity").LocationAccuracy.NOT_DETERMINED>;
163
- }, z.core.$strip>]>>>;
151
+ accuracy: z.ZodOptional<z.ZodArray<z.ZodObject<{
152
+ identifier: z.ZodString;
153
+ id: z.ZodEnum<{
154
+ location_accuracy_a: import("../entity").LocationAccuracy.A;
155
+ location_accuracy_b: import("../entity").LocationAccuracy.B;
156
+ location_accuracy_c: import("../entity").LocationAccuracy.C;
157
+ location_accuracy_not_determined: import("../entity").LocationAccuracy.NOT_DETERMINED;
158
+ }>;
159
+ }, z.core.$strip>>>;
164
160
  source: z.ZodOptional<z.ZodString>;
165
161
  }, z.core.$strip>>>;
166
162
  projectPipeline: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -355,19 +351,15 @@ export declare const usSignalFullSchemaV1: z.ZodObject<{
355
351
  lng: z.ZodNumber;
356
352
  }, z.core.$strip>>;
357
353
  override: z.ZodOptional<z.ZodBoolean>;
358
- accuracy: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
359
- identifier: z.ZodLiteral<"A - Exact lat/lon or address hit">;
360
- id: z.ZodLiteral<import("../entity").LocationAccuracy.A>;
361
- }, z.core.$strip>, z.ZodObject<{
362
- identifier: z.ZodLiteral<"B - Exact POI known / Approximate / near known point">;
363
- id: z.ZodLiteral<import("../entity").LocationAccuracy.B>;
364
- }, z.core.$strip>, z.ZodObject<{
365
- identifier: z.ZodLiteral<"C - County or town centroid">;
366
- id: z.ZodLiteral<import("../entity").LocationAccuracy.C>;
367
- }, z.core.$strip>, z.ZodObject<{
368
- identifier: z.ZodUnion<[z.ZodLiteral<"Not Yet Determined">, z.ZodLiteral<"Unknown or pending verification">]>;
369
- id: z.ZodLiteral<import("../entity").LocationAccuracy.NOT_DETERMINED>;
370
- }, z.core.$strip>]>>>;
354
+ accuracy: z.ZodOptional<z.ZodArray<z.ZodObject<{
355
+ identifier: z.ZodString;
356
+ id: z.ZodEnum<{
357
+ location_accuracy_a: import("../entity").LocationAccuracy.A;
358
+ location_accuracy_b: import("../entity").LocationAccuracy.B;
359
+ location_accuracy_c: import("../entity").LocationAccuracy.C;
360
+ location_accuracy_not_determined: import("../entity").LocationAccuracy.NOT_DETERMINED;
361
+ }>;
362
+ }, z.core.$strip>>>;
371
363
  source: z.ZodOptional<z.ZodString>;
372
364
  }, z.core.$strip>>>;
373
365
  projectPipeline: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -576,19 +568,15 @@ export declare const globalSignalFullSchemaV1: z.ZodObject<{
576
568
  lng: z.ZodNumber;
577
569
  }, z.core.$strip>>;
578
570
  override: z.ZodOptional<z.ZodBoolean>;
579
- accuracy: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
580
- identifier: z.ZodLiteral<"A - Exact lat/lon or address hit">;
581
- id: z.ZodLiteral<import("../entity").LocationAccuracy.A>;
582
- }, z.core.$strip>, z.ZodObject<{
583
- identifier: z.ZodLiteral<"B - Exact POI known / Approximate / near known point">;
584
- id: z.ZodLiteral<import("../entity").LocationAccuracy.B>;
585
- }, z.core.$strip>, z.ZodObject<{
586
- identifier: z.ZodLiteral<"C - County or town centroid">;
587
- id: z.ZodLiteral<import("../entity").LocationAccuracy.C>;
588
- }, z.core.$strip>, z.ZodObject<{
589
- identifier: z.ZodUnion<[z.ZodLiteral<"Not Yet Determined">, z.ZodLiteral<"Unknown or pending verification">]>;
590
- id: z.ZodLiteral<import("../entity").LocationAccuracy.NOT_DETERMINED>;
591
- }, z.core.$strip>]>>>;
571
+ accuracy: z.ZodOptional<z.ZodArray<z.ZodObject<{
572
+ identifier: z.ZodString;
573
+ id: z.ZodEnum<{
574
+ location_accuracy_a: import("../entity").LocationAccuracy.A;
575
+ location_accuracy_b: import("../entity").LocationAccuracy.B;
576
+ location_accuracy_c: import("../entity").LocationAccuracy.C;
577
+ location_accuracy_not_determined: import("../entity").LocationAccuracy.NOT_DETERMINED;
578
+ }>;
579
+ }, z.core.$strip>>>;
592
580
  source: z.ZodOptional<z.ZodString>;
593
581
  }, z.core.$strip>>>;
594
582
  projectPipeline: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -694,19 +682,15 @@ export declare const euSignalListSchemaV1: z.ZodObject<{
694
682
  lng: z.ZodNumber;
695
683
  }, z.core.$strip>>;
696
684
  override: z.ZodOptional<z.ZodBoolean>;
697
- accuracy: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
698
- identifier: z.ZodLiteral<"A - Exact lat/lon or address hit">;
699
- id: z.ZodLiteral<import("../entity").LocationAccuracy.A>;
700
- }, z.core.$strip>, z.ZodObject<{
701
- identifier: z.ZodLiteral<"B - Exact POI known / Approximate / near known point">;
702
- id: z.ZodLiteral<import("../entity").LocationAccuracy.B>;
703
- }, z.core.$strip>, z.ZodObject<{
704
- identifier: z.ZodLiteral<"C - County or town centroid">;
705
- id: z.ZodLiteral<import("../entity").LocationAccuracy.C>;
706
- }, z.core.$strip>, z.ZodObject<{
707
- identifier: z.ZodUnion<[z.ZodLiteral<"Not Yet Determined">, z.ZodLiteral<"Unknown or pending verification">]>;
708
- id: z.ZodLiteral<import("../entity").LocationAccuracy.NOT_DETERMINED>;
709
- }, z.core.$strip>]>>>;
685
+ accuracy: z.ZodOptional<z.ZodArray<z.ZodObject<{
686
+ identifier: z.ZodString;
687
+ id: z.ZodEnum<{
688
+ location_accuracy_a: import("../entity").LocationAccuracy.A;
689
+ location_accuracy_b: import("../entity").LocationAccuracy.B;
690
+ location_accuracy_c: import("../entity").LocationAccuracy.C;
691
+ location_accuracy_not_determined: import("../entity").LocationAccuracy.NOT_DETERMINED;
692
+ }>;
693
+ }, z.core.$strip>>>;
710
694
  source: z.ZodOptional<z.ZodString>;
711
695
  }, z.core.$strip>>>;
712
696
  country: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -837,19 +821,15 @@ export declare const usSignalListSchemaV1: z.ZodObject<{
837
821
  lng: z.ZodNumber;
838
822
  }, z.core.$strip>>;
839
823
  override: z.ZodOptional<z.ZodBoolean>;
840
- accuracy: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
841
- identifier: z.ZodLiteral<"A - Exact lat/lon or address hit">;
842
- id: z.ZodLiteral<import("../entity").LocationAccuracy.A>;
843
- }, z.core.$strip>, z.ZodObject<{
844
- identifier: z.ZodLiteral<"B - Exact POI known / Approximate / near known point">;
845
- id: z.ZodLiteral<import("../entity").LocationAccuracy.B>;
846
- }, z.core.$strip>, z.ZodObject<{
847
- identifier: z.ZodLiteral<"C - County or town centroid">;
848
- id: z.ZodLiteral<import("../entity").LocationAccuracy.C>;
849
- }, z.core.$strip>, z.ZodObject<{
850
- identifier: z.ZodUnion<[z.ZodLiteral<"Not Yet Determined">, z.ZodLiteral<"Unknown or pending verification">]>;
851
- id: z.ZodLiteral<import("../entity").LocationAccuracy.NOT_DETERMINED>;
852
- }, z.core.$strip>]>>>;
824
+ accuracy: z.ZodOptional<z.ZodArray<z.ZodObject<{
825
+ identifier: z.ZodString;
826
+ id: z.ZodEnum<{
827
+ location_accuracy_a: import("../entity").LocationAccuracy.A;
828
+ location_accuracy_b: import("../entity").LocationAccuracy.B;
829
+ location_accuracy_c: import("../entity").LocationAccuracy.C;
830
+ location_accuracy_not_determined: import("../entity").LocationAccuracy.NOT_DETERMINED;
831
+ }>;
832
+ }, z.core.$strip>>>;
853
833
  source: z.ZodOptional<z.ZodString>;
854
834
  }, z.core.$strip>>>;
855
835
  country: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -984,19 +964,15 @@ export declare const globalSignalListSchemaV1: z.ZodObject<{
984
964
  lng: z.ZodNumber;
985
965
  }, z.core.$strip>>;
986
966
  override: z.ZodOptional<z.ZodBoolean>;
987
- accuracy: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
988
- identifier: z.ZodLiteral<"A - Exact lat/lon or address hit">;
989
- id: z.ZodLiteral<import("../entity").LocationAccuracy.A>;
990
- }, z.core.$strip>, z.ZodObject<{
991
- identifier: z.ZodLiteral<"B - Exact POI known / Approximate / near known point">;
992
- id: z.ZodLiteral<import("../entity").LocationAccuracy.B>;
993
- }, z.core.$strip>, z.ZodObject<{
994
- identifier: z.ZodLiteral<"C - County or town centroid">;
995
- id: z.ZodLiteral<import("../entity").LocationAccuracy.C>;
996
- }, z.core.$strip>, z.ZodObject<{
997
- identifier: z.ZodUnion<[z.ZodLiteral<"Not Yet Determined">, z.ZodLiteral<"Unknown or pending verification">]>;
998
- id: z.ZodLiteral<import("../entity").LocationAccuracy.NOT_DETERMINED>;
999
- }, z.core.$strip>]>>>;
967
+ accuracy: z.ZodOptional<z.ZodArray<z.ZodObject<{
968
+ identifier: z.ZodString;
969
+ id: z.ZodEnum<{
970
+ location_accuracy_a: import("../entity").LocationAccuracy.A;
971
+ location_accuracy_b: import("../entity").LocationAccuracy.B;
972
+ location_accuracy_c: import("../entity").LocationAccuracy.C;
973
+ location_accuracy_not_determined: import("../entity").LocationAccuracy.NOT_DETERMINED;
974
+ }>;
975
+ }, z.core.$strip>>>;
1000
976
  source: z.ZodOptional<z.ZodString>;
1001
977
  }, z.core.$strip>>>;
1002
978
  country: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -1123,19 +1099,15 @@ export declare const euSignalListWithSortSchemaV1: z.ZodObject<{
1123
1099
  lng: z.ZodNumber;
1124
1100
  }, z.core.$strip>>;
1125
1101
  override: z.ZodOptional<z.ZodBoolean>;
1126
- accuracy: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
1127
- identifier: z.ZodLiteral<"A - Exact lat/lon or address hit">;
1128
- id: z.ZodLiteral<import("../entity").LocationAccuracy.A>;
1129
- }, z.core.$strip>, z.ZodObject<{
1130
- identifier: z.ZodLiteral<"B - Exact POI known / Approximate / near known point">;
1131
- id: z.ZodLiteral<import("../entity").LocationAccuracy.B>;
1132
- }, z.core.$strip>, z.ZodObject<{
1133
- identifier: z.ZodLiteral<"C - County or town centroid">;
1134
- id: z.ZodLiteral<import("../entity").LocationAccuracy.C>;
1135
- }, z.core.$strip>, z.ZodObject<{
1136
- identifier: z.ZodUnion<[z.ZodLiteral<"Not Yet Determined">, z.ZodLiteral<"Unknown or pending verification">]>;
1137
- id: z.ZodLiteral<import("../entity").LocationAccuracy.NOT_DETERMINED>;
1138
- }, z.core.$strip>]>>>;
1102
+ accuracy: z.ZodOptional<z.ZodArray<z.ZodObject<{
1103
+ identifier: z.ZodString;
1104
+ id: z.ZodEnum<{
1105
+ location_accuracy_a: import("../entity").LocationAccuracy.A;
1106
+ location_accuracy_b: import("../entity").LocationAccuracy.B;
1107
+ location_accuracy_c: import("../entity").LocationAccuracy.C;
1108
+ location_accuracy_not_determined: import("../entity").LocationAccuracy.NOT_DETERMINED;
1109
+ }>;
1110
+ }, z.core.$strip>>>;
1139
1111
  source: z.ZodOptional<z.ZodString>;
1140
1112
  }, z.core.$strip>>>;
1141
1113
  country: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -1267,19 +1239,15 @@ export declare const usSignalListWithSortSchemaV1: z.ZodObject<{
1267
1239
  lng: z.ZodNumber;
1268
1240
  }, z.core.$strip>>;
1269
1241
  override: z.ZodOptional<z.ZodBoolean>;
1270
- accuracy: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
1271
- identifier: z.ZodLiteral<"A - Exact lat/lon or address hit">;
1272
- id: z.ZodLiteral<import("../entity").LocationAccuracy.A>;
1273
- }, z.core.$strip>, z.ZodObject<{
1274
- identifier: z.ZodLiteral<"B - Exact POI known / Approximate / near known point">;
1275
- id: z.ZodLiteral<import("../entity").LocationAccuracy.B>;
1276
- }, z.core.$strip>, z.ZodObject<{
1277
- identifier: z.ZodLiteral<"C - County or town centroid">;
1278
- id: z.ZodLiteral<import("../entity").LocationAccuracy.C>;
1279
- }, z.core.$strip>, z.ZodObject<{
1280
- identifier: z.ZodUnion<[z.ZodLiteral<"Not Yet Determined">, z.ZodLiteral<"Unknown or pending verification">]>;
1281
- id: z.ZodLiteral<import("../entity").LocationAccuracy.NOT_DETERMINED>;
1282
- }, z.core.$strip>]>>>;
1242
+ accuracy: z.ZodOptional<z.ZodArray<z.ZodObject<{
1243
+ identifier: z.ZodString;
1244
+ id: z.ZodEnum<{
1245
+ location_accuracy_a: import("../entity").LocationAccuracy.A;
1246
+ location_accuracy_b: import("../entity").LocationAccuracy.B;
1247
+ location_accuracy_c: import("../entity").LocationAccuracy.C;
1248
+ location_accuracy_not_determined: import("../entity").LocationAccuracy.NOT_DETERMINED;
1249
+ }>;
1250
+ }, z.core.$strip>>>;
1283
1251
  source: z.ZodOptional<z.ZodString>;
1284
1252
  }, z.core.$strip>>>;
1285
1253
  country: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -1415,19 +1383,15 @@ export declare const globalSignalListWithSortSchemaV1: z.ZodObject<{
1415
1383
  lng: z.ZodNumber;
1416
1384
  }, z.core.$strip>>;
1417
1385
  override: z.ZodOptional<z.ZodBoolean>;
1418
- accuracy: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
1419
- identifier: z.ZodLiteral<"A - Exact lat/lon or address hit">;
1420
- id: z.ZodLiteral<import("../entity").LocationAccuracy.A>;
1421
- }, z.core.$strip>, z.ZodObject<{
1422
- identifier: z.ZodLiteral<"B - Exact POI known / Approximate / near known point">;
1423
- id: z.ZodLiteral<import("../entity").LocationAccuracy.B>;
1424
- }, z.core.$strip>, z.ZodObject<{
1425
- identifier: z.ZodLiteral<"C - County or town centroid">;
1426
- id: z.ZodLiteral<import("../entity").LocationAccuracy.C>;
1427
- }, z.core.$strip>, z.ZodObject<{
1428
- identifier: z.ZodUnion<[z.ZodLiteral<"Not Yet Determined">, z.ZodLiteral<"Unknown or pending verification">]>;
1429
- id: z.ZodLiteral<import("../entity").LocationAccuracy.NOT_DETERMINED>;
1430
- }, z.core.$strip>]>>>;
1386
+ accuracy: z.ZodOptional<z.ZodArray<z.ZodObject<{
1387
+ identifier: z.ZodString;
1388
+ id: z.ZodEnum<{
1389
+ location_accuracy_a: import("../entity").LocationAccuracy.A;
1390
+ location_accuracy_b: import("../entity").LocationAccuracy.B;
1391
+ location_accuracy_c: import("../entity").LocationAccuracy.C;
1392
+ location_accuracy_not_determined: import("../entity").LocationAccuracy.NOT_DETERMINED;
1393
+ }>;
1394
+ }, z.core.$strip>>>;
1431
1395
  source: z.ZodOptional<z.ZodString>;
1432
1396
  }, z.core.$strip>>>;
1433
1397
  country: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -1555,19 +1519,15 @@ export declare const signalListSchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
1555
1519
  lng: z.ZodNumber;
1556
1520
  }, z.core.$strip>>;
1557
1521
  override: z.ZodOptional<z.ZodBoolean>;
1558
- accuracy: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
1559
- identifier: z.ZodLiteral<"A - Exact lat/lon or address hit">;
1560
- id: z.ZodLiteral<import("../entity").LocationAccuracy.A>;
1561
- }, z.core.$strip>, z.ZodObject<{
1562
- identifier: z.ZodLiteral<"B - Exact POI known / Approximate / near known point">;
1563
- id: z.ZodLiteral<import("../entity").LocationAccuracy.B>;
1564
- }, z.core.$strip>, z.ZodObject<{
1565
- identifier: z.ZodLiteral<"C - County or town centroid">;
1566
- id: z.ZodLiteral<import("../entity").LocationAccuracy.C>;
1567
- }, z.core.$strip>, z.ZodObject<{
1568
- identifier: z.ZodUnion<[z.ZodLiteral<"Not Yet Determined">, z.ZodLiteral<"Unknown or pending verification">]>;
1569
- id: z.ZodLiteral<import("../entity").LocationAccuracy.NOT_DETERMINED>;
1570
- }, z.core.$strip>]>>>;
1522
+ accuracy: z.ZodOptional<z.ZodArray<z.ZodObject<{
1523
+ identifier: z.ZodString;
1524
+ id: z.ZodEnum<{
1525
+ location_accuracy_a: import("../entity").LocationAccuracy.A;
1526
+ location_accuracy_b: import("../entity").LocationAccuracy.B;
1527
+ location_accuracy_c: import("../entity").LocationAccuracy.C;
1528
+ location_accuracy_not_determined: import("../entity").LocationAccuracy.NOT_DETERMINED;
1529
+ }>;
1530
+ }, z.core.$strip>>>;
1571
1531
  source: z.ZodOptional<z.ZodString>;
1572
1532
  }, z.core.$strip>>>;
1573
1533
  country: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -1698,19 +1658,15 @@ export declare const signalListSchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
1698
1658
  lng: z.ZodNumber;
1699
1659
  }, z.core.$strip>>;
1700
1660
  override: z.ZodOptional<z.ZodBoolean>;
1701
- accuracy: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
1702
- identifier: z.ZodLiteral<"A - Exact lat/lon or address hit">;
1703
- id: z.ZodLiteral<import("../entity").LocationAccuracy.A>;
1704
- }, z.core.$strip>, z.ZodObject<{
1705
- identifier: z.ZodLiteral<"B - Exact POI known / Approximate / near known point">;
1706
- id: z.ZodLiteral<import("../entity").LocationAccuracy.B>;
1707
- }, z.core.$strip>, z.ZodObject<{
1708
- identifier: z.ZodLiteral<"C - County or town centroid">;
1709
- id: z.ZodLiteral<import("../entity").LocationAccuracy.C>;
1710
- }, z.core.$strip>, z.ZodObject<{
1711
- identifier: z.ZodUnion<[z.ZodLiteral<"Not Yet Determined">, z.ZodLiteral<"Unknown or pending verification">]>;
1712
- id: z.ZodLiteral<import("../entity").LocationAccuracy.NOT_DETERMINED>;
1713
- }, z.core.$strip>]>>>;
1661
+ accuracy: z.ZodOptional<z.ZodArray<z.ZodObject<{
1662
+ identifier: z.ZodString;
1663
+ id: z.ZodEnum<{
1664
+ location_accuracy_a: import("../entity").LocationAccuracy.A;
1665
+ location_accuracy_b: import("../entity").LocationAccuracy.B;
1666
+ location_accuracy_c: import("../entity").LocationAccuracy.C;
1667
+ location_accuracy_not_determined: import("../entity").LocationAccuracy.NOT_DETERMINED;
1668
+ }>;
1669
+ }, z.core.$strip>>>;
1714
1670
  source: z.ZodOptional<z.ZodString>;
1715
1671
  }, z.core.$strip>>>;
1716
1672
  country: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -1845,19 +1801,15 @@ export declare const signalListSchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
1845
1801
  lng: z.ZodNumber;
1846
1802
  }, z.core.$strip>>;
1847
1803
  override: z.ZodOptional<z.ZodBoolean>;
1848
- accuracy: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
1849
- identifier: z.ZodLiteral<"A - Exact lat/lon or address hit">;
1850
- id: z.ZodLiteral<import("../entity").LocationAccuracy.A>;
1851
- }, z.core.$strip>, z.ZodObject<{
1852
- identifier: z.ZodLiteral<"B - Exact POI known / Approximate / near known point">;
1853
- id: z.ZodLiteral<import("../entity").LocationAccuracy.B>;
1854
- }, z.core.$strip>, z.ZodObject<{
1855
- identifier: z.ZodLiteral<"C - County or town centroid">;
1856
- id: z.ZodLiteral<import("../entity").LocationAccuracy.C>;
1857
- }, z.core.$strip>, z.ZodObject<{
1858
- identifier: z.ZodUnion<[z.ZodLiteral<"Not Yet Determined">, z.ZodLiteral<"Unknown or pending verification">]>;
1859
- id: z.ZodLiteral<import("../entity").LocationAccuracy.NOT_DETERMINED>;
1860
- }, z.core.$strip>]>>>;
1804
+ accuracy: z.ZodOptional<z.ZodArray<z.ZodObject<{
1805
+ identifier: z.ZodString;
1806
+ id: z.ZodEnum<{
1807
+ location_accuracy_a: import("../entity").LocationAccuracy.A;
1808
+ location_accuracy_b: import("../entity").LocationAccuracy.B;
1809
+ location_accuracy_c: import("../entity").LocationAccuracy.C;
1810
+ location_accuracy_not_determined: import("../entity").LocationAccuracy.NOT_DETERMINED;
1811
+ }>;
1812
+ }, z.core.$strip>>>;
1861
1813
  source: z.ZodOptional<z.ZodString>;
1862
1814
  }, z.core.$strip>>>;
1863
1815
  country: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -1985,19 +1937,15 @@ export declare const signalListUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodObje
1985
1937
  lng: z.ZodNumber;
1986
1938
  }, z.core.$strip>>;
1987
1939
  override: z.ZodOptional<z.ZodBoolean>;
1988
- accuracy: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
1989
- identifier: z.ZodLiteral<"A - Exact lat/lon or address hit">;
1990
- id: z.ZodLiteral<import("../entity").LocationAccuracy.A>;
1991
- }, z.core.$strip>, z.ZodObject<{
1992
- identifier: z.ZodLiteral<"B - Exact POI known / Approximate / near known point">;
1993
- id: z.ZodLiteral<import("../entity").LocationAccuracy.B>;
1994
- }, z.core.$strip>, z.ZodObject<{
1995
- identifier: z.ZodLiteral<"C - County or town centroid">;
1996
- id: z.ZodLiteral<import("../entity").LocationAccuracy.C>;
1997
- }, z.core.$strip>, z.ZodObject<{
1998
- identifier: z.ZodUnion<[z.ZodLiteral<"Not Yet Determined">, z.ZodLiteral<"Unknown or pending verification">]>;
1999
- id: z.ZodLiteral<import("../entity").LocationAccuracy.NOT_DETERMINED>;
2000
- }, z.core.$strip>]>>>;
1940
+ accuracy: z.ZodOptional<z.ZodArray<z.ZodObject<{
1941
+ identifier: z.ZodString;
1942
+ id: z.ZodEnum<{
1943
+ location_accuracy_a: import("../entity").LocationAccuracy.A;
1944
+ location_accuracy_b: import("../entity").LocationAccuracy.B;
1945
+ location_accuracy_c: import("../entity").LocationAccuracy.C;
1946
+ location_accuracy_not_determined: import("../entity").LocationAccuracy.NOT_DETERMINED;
1947
+ }>;
1948
+ }, z.core.$strip>>>;
2001
1949
  source: z.ZodOptional<z.ZodString>;
2002
1950
  }, z.core.$strip>>>;
2003
1951
  country: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -2128,19 +2076,15 @@ export declare const signalListUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodObje
2128
2076
  lng: z.ZodNumber;
2129
2077
  }, z.core.$strip>>;
2130
2078
  override: z.ZodOptional<z.ZodBoolean>;
2131
- accuracy: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
2132
- identifier: z.ZodLiteral<"A - Exact lat/lon or address hit">;
2133
- id: z.ZodLiteral<import("../entity").LocationAccuracy.A>;
2134
- }, z.core.$strip>, z.ZodObject<{
2135
- identifier: z.ZodLiteral<"B - Exact POI known / Approximate / near known point">;
2136
- id: z.ZodLiteral<import("../entity").LocationAccuracy.B>;
2137
- }, z.core.$strip>, z.ZodObject<{
2138
- identifier: z.ZodLiteral<"C - County or town centroid">;
2139
- id: z.ZodLiteral<import("../entity").LocationAccuracy.C>;
2140
- }, z.core.$strip>, z.ZodObject<{
2141
- identifier: z.ZodUnion<[z.ZodLiteral<"Not Yet Determined">, z.ZodLiteral<"Unknown or pending verification">]>;
2142
- id: z.ZodLiteral<import("../entity").LocationAccuracy.NOT_DETERMINED>;
2143
- }, z.core.$strip>]>>>;
2079
+ accuracy: z.ZodOptional<z.ZodArray<z.ZodObject<{
2080
+ identifier: z.ZodString;
2081
+ id: z.ZodEnum<{
2082
+ location_accuracy_a: import("../entity").LocationAccuracy.A;
2083
+ location_accuracy_b: import("../entity").LocationAccuracy.B;
2084
+ location_accuracy_c: import("../entity").LocationAccuracy.C;
2085
+ location_accuracy_not_determined: import("../entity").LocationAccuracy.NOT_DETERMINED;
2086
+ }>;
2087
+ }, z.core.$strip>>>;
2144
2088
  source: z.ZodOptional<z.ZodString>;
2145
2089
  }, z.core.$strip>>>;
2146
2090
  country: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -2275,19 +2219,15 @@ export declare const signalListUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodObje
2275
2219
  lng: z.ZodNumber;
2276
2220
  }, z.core.$strip>>;
2277
2221
  override: z.ZodOptional<z.ZodBoolean>;
2278
- accuracy: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
2279
- identifier: z.ZodLiteral<"A - Exact lat/lon or address hit">;
2280
- id: z.ZodLiteral<import("../entity").LocationAccuracy.A>;
2281
- }, z.core.$strip>, z.ZodObject<{
2282
- identifier: z.ZodLiteral<"B - Exact POI known / Approximate / near known point">;
2283
- id: z.ZodLiteral<import("../entity").LocationAccuracy.B>;
2284
- }, z.core.$strip>, z.ZodObject<{
2285
- identifier: z.ZodLiteral<"C - County or town centroid">;
2286
- id: z.ZodLiteral<import("../entity").LocationAccuracy.C>;
2287
- }, z.core.$strip>, z.ZodObject<{
2288
- identifier: z.ZodUnion<[z.ZodLiteral<"Not Yet Determined">, z.ZodLiteral<"Unknown or pending verification">]>;
2289
- id: z.ZodLiteral<import("../entity").LocationAccuracy.NOT_DETERMINED>;
2290
- }, z.core.$strip>]>>>;
2222
+ accuracy: z.ZodOptional<z.ZodArray<z.ZodObject<{
2223
+ identifier: z.ZodString;
2224
+ id: z.ZodEnum<{
2225
+ location_accuracy_a: import("../entity").LocationAccuracy.A;
2226
+ location_accuracy_b: import("../entity").LocationAccuracy.B;
2227
+ location_accuracy_c: import("../entity").LocationAccuracy.C;
2228
+ location_accuracy_not_determined: import("../entity").LocationAccuracy.NOT_DETERMINED;
2229
+ }>;
2230
+ }, z.core.$strip>>>;
2291
2231
  source: z.ZodOptional<z.ZodString>;
2292
2232
  }, z.core.$strip>>>;
2293
2233
  country: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -2415,19 +2355,15 @@ export declare const signalListBaseUnionSchemaV1: z.ZodDiscriminatedUnion<[z.Zod
2415
2355
  lng: z.ZodNumber;
2416
2356
  }, z.core.$strip>>;
2417
2357
  override: z.ZodOptional<z.ZodBoolean>;
2418
- accuracy: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
2419
- identifier: z.ZodLiteral<"A - Exact lat/lon or address hit">;
2420
- id: z.ZodLiteral<import("../entity").LocationAccuracy.A>;
2421
- }, z.core.$strip>, z.ZodObject<{
2422
- identifier: z.ZodLiteral<"B - Exact POI known / Approximate / near known point">;
2423
- id: z.ZodLiteral<import("../entity").LocationAccuracy.B>;
2424
- }, z.core.$strip>, z.ZodObject<{
2425
- identifier: z.ZodLiteral<"C - County or town centroid">;
2426
- id: z.ZodLiteral<import("../entity").LocationAccuracy.C>;
2427
- }, z.core.$strip>, z.ZodObject<{
2428
- identifier: z.ZodUnion<[z.ZodLiteral<"Not Yet Determined">, z.ZodLiteral<"Unknown or pending verification">]>;
2429
- id: z.ZodLiteral<import("../entity").LocationAccuracy.NOT_DETERMINED>;
2430
- }, z.core.$strip>]>>>;
2358
+ accuracy: z.ZodOptional<z.ZodArray<z.ZodObject<{
2359
+ identifier: z.ZodString;
2360
+ id: z.ZodEnum<{
2361
+ location_accuracy_a: import("../entity").LocationAccuracy.A;
2362
+ location_accuracy_b: import("../entity").LocationAccuracy.B;
2363
+ location_accuracy_c: import("../entity").LocationAccuracy.C;
2364
+ location_accuracy_not_determined: import("../entity").LocationAccuracy.NOT_DETERMINED;
2365
+ }>;
2366
+ }, z.core.$strip>>>;
2431
2367
  source: z.ZodOptional<z.ZodString>;
2432
2368
  }, z.core.$strip>>>;
2433
2369
  country: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -2557,19 +2493,15 @@ export declare const signalListBaseUnionSchemaV1: z.ZodDiscriminatedUnion<[z.Zod
2557
2493
  lng: z.ZodNumber;
2558
2494
  }, z.core.$strip>>;
2559
2495
  override: z.ZodOptional<z.ZodBoolean>;
2560
- accuracy: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
2561
- identifier: z.ZodLiteral<"A - Exact lat/lon or address hit">;
2562
- id: z.ZodLiteral<import("../entity").LocationAccuracy.A>;
2563
- }, z.core.$strip>, z.ZodObject<{
2564
- identifier: z.ZodLiteral<"B - Exact POI known / Approximate / near known point">;
2565
- id: z.ZodLiteral<import("../entity").LocationAccuracy.B>;
2566
- }, z.core.$strip>, z.ZodObject<{
2567
- identifier: z.ZodLiteral<"C - County or town centroid">;
2568
- id: z.ZodLiteral<import("../entity").LocationAccuracy.C>;
2569
- }, z.core.$strip>, z.ZodObject<{
2570
- identifier: z.ZodUnion<[z.ZodLiteral<"Not Yet Determined">, z.ZodLiteral<"Unknown or pending verification">]>;
2571
- id: z.ZodLiteral<import("../entity").LocationAccuracy.NOT_DETERMINED>;
2572
- }, z.core.$strip>]>>>;
2496
+ accuracy: z.ZodOptional<z.ZodArray<z.ZodObject<{
2497
+ identifier: z.ZodString;
2498
+ id: z.ZodEnum<{
2499
+ location_accuracy_a: import("../entity").LocationAccuracy.A;
2500
+ location_accuracy_b: import("../entity").LocationAccuracy.B;
2501
+ location_accuracy_c: import("../entity").LocationAccuracy.C;
2502
+ location_accuracy_not_determined: import("../entity").LocationAccuracy.NOT_DETERMINED;
2503
+ }>;
2504
+ }, z.core.$strip>>>;
2573
2505
  source: z.ZodOptional<z.ZodString>;
2574
2506
  }, z.core.$strip>>>;
2575
2507
  country: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -2703,19 +2635,15 @@ export declare const signalListBaseUnionSchemaV1: z.ZodDiscriminatedUnion<[z.Zod
2703
2635
  lng: z.ZodNumber;
2704
2636
  }, z.core.$strip>>;
2705
2637
  override: z.ZodOptional<z.ZodBoolean>;
2706
- accuracy: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
2707
- identifier: z.ZodLiteral<"A - Exact lat/lon or address hit">;
2708
- id: z.ZodLiteral<import("../entity").LocationAccuracy.A>;
2709
- }, z.core.$strip>, z.ZodObject<{
2710
- identifier: z.ZodLiteral<"B - Exact POI known / Approximate / near known point">;
2711
- id: z.ZodLiteral<import("../entity").LocationAccuracy.B>;
2712
- }, z.core.$strip>, z.ZodObject<{
2713
- identifier: z.ZodLiteral<"C - County or town centroid">;
2714
- id: z.ZodLiteral<import("../entity").LocationAccuracy.C>;
2715
- }, z.core.$strip>, z.ZodObject<{
2716
- identifier: z.ZodUnion<[z.ZodLiteral<"Not Yet Determined">, z.ZodLiteral<"Unknown or pending verification">]>;
2717
- id: z.ZodLiteral<import("../entity").LocationAccuracy.NOT_DETERMINED>;
2718
- }, z.core.$strip>]>>>;
2638
+ accuracy: z.ZodOptional<z.ZodArray<z.ZodObject<{
2639
+ identifier: z.ZodString;
2640
+ id: z.ZodEnum<{
2641
+ location_accuracy_a: import("../entity").LocationAccuracy.A;
2642
+ location_accuracy_b: import("../entity").LocationAccuracy.B;
2643
+ location_accuracy_c: import("../entity").LocationAccuracy.C;
2644
+ location_accuracy_not_determined: import("../entity").LocationAccuracy.NOT_DETERMINED;
2645
+ }>;
2646
+ }, z.core.$strip>>>;
2719
2647
  source: z.ZodOptional<z.ZodString>;
2720
2648
  }, z.core.$strip>>>;
2721
2649
  country: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -2846,19 +2774,15 @@ export declare const euSignalDetailsSchemaV1: z.ZodObject<{
2846
2774
  lng: z.ZodNumber;
2847
2775
  }, z.core.$strip>>;
2848
2776
  override: z.ZodOptional<z.ZodBoolean>;
2849
- accuracy: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
2850
- identifier: z.ZodLiteral<"A - Exact lat/lon or address hit">;
2851
- id: z.ZodLiteral<import("../entity").LocationAccuracy.A>;
2852
- }, z.core.$strip>, z.ZodObject<{
2853
- identifier: z.ZodLiteral<"B - Exact POI known / Approximate / near known point">;
2854
- id: z.ZodLiteral<import("../entity").LocationAccuracy.B>;
2855
- }, z.core.$strip>, z.ZodObject<{
2856
- identifier: z.ZodLiteral<"C - County or town centroid">;
2857
- id: z.ZodLiteral<import("../entity").LocationAccuracy.C>;
2858
- }, z.core.$strip>, z.ZodObject<{
2859
- identifier: z.ZodUnion<[z.ZodLiteral<"Not Yet Determined">, z.ZodLiteral<"Unknown or pending verification">]>;
2860
- id: z.ZodLiteral<import("../entity").LocationAccuracy.NOT_DETERMINED>;
2861
- }, z.core.$strip>]>>>;
2777
+ accuracy: z.ZodOptional<z.ZodArray<z.ZodObject<{
2778
+ identifier: z.ZodString;
2779
+ id: z.ZodEnum<{
2780
+ location_accuracy_a: import("../entity").LocationAccuracy.A;
2781
+ location_accuracy_b: import("../entity").LocationAccuracy.B;
2782
+ location_accuracy_c: import("../entity").LocationAccuracy.C;
2783
+ location_accuracy_not_determined: import("../entity").LocationAccuracy.NOT_DETERMINED;
2784
+ }>;
2785
+ }, z.core.$strip>>>;
2862
2786
  source: z.ZodOptional<z.ZodString>;
2863
2787
  }, z.core.$strip>>>;
2864
2788
  country: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -3022,19 +2946,15 @@ export declare const usSignalDetailsSchemaV1: z.ZodObject<{
3022
2946
  lng: z.ZodNumber;
3023
2947
  }, z.core.$strip>>;
3024
2948
  override: z.ZodOptional<z.ZodBoolean>;
3025
- accuracy: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
3026
- identifier: z.ZodLiteral<"A - Exact lat/lon or address hit">;
3027
- id: z.ZodLiteral<import("../entity").LocationAccuracy.A>;
3028
- }, z.core.$strip>, z.ZodObject<{
3029
- identifier: z.ZodLiteral<"B - Exact POI known / Approximate / near known point">;
3030
- id: z.ZodLiteral<import("../entity").LocationAccuracy.B>;
3031
- }, z.core.$strip>, z.ZodObject<{
3032
- identifier: z.ZodLiteral<"C - County or town centroid">;
3033
- id: z.ZodLiteral<import("../entity").LocationAccuracy.C>;
3034
- }, z.core.$strip>, z.ZodObject<{
3035
- identifier: z.ZodUnion<[z.ZodLiteral<"Not Yet Determined">, z.ZodLiteral<"Unknown or pending verification">]>;
3036
- id: z.ZodLiteral<import("../entity").LocationAccuracy.NOT_DETERMINED>;
3037
- }, z.core.$strip>]>>>;
2949
+ accuracy: z.ZodOptional<z.ZodArray<z.ZodObject<{
2950
+ identifier: z.ZodString;
2951
+ id: z.ZodEnum<{
2952
+ location_accuracy_a: import("../entity").LocationAccuracy.A;
2953
+ location_accuracy_b: import("../entity").LocationAccuracy.B;
2954
+ location_accuracy_c: import("../entity").LocationAccuracy.C;
2955
+ location_accuracy_not_determined: import("../entity").LocationAccuracy.NOT_DETERMINED;
2956
+ }>;
2957
+ }, z.core.$strip>>>;
3038
2958
  source: z.ZodOptional<z.ZodString>;
3039
2959
  }, z.core.$strip>>>;
3040
2960
  country: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -3214,19 +3134,15 @@ export declare const globalSignalDetailsSchemaV1: z.ZodObject<{
3214
3134
  lng: z.ZodNumber;
3215
3135
  }, z.core.$strip>>;
3216
3136
  override: z.ZodOptional<z.ZodBoolean>;
3217
- accuracy: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
3218
- identifier: z.ZodLiteral<"A - Exact lat/lon or address hit">;
3219
- id: z.ZodLiteral<import("../entity").LocationAccuracy.A>;
3220
- }, z.core.$strip>, z.ZodObject<{
3221
- identifier: z.ZodLiteral<"B - Exact POI known / Approximate / near known point">;
3222
- id: z.ZodLiteral<import("../entity").LocationAccuracy.B>;
3223
- }, z.core.$strip>, z.ZodObject<{
3224
- identifier: z.ZodLiteral<"C - County or town centroid">;
3225
- id: z.ZodLiteral<import("../entity").LocationAccuracy.C>;
3226
- }, z.core.$strip>, z.ZodObject<{
3227
- identifier: z.ZodUnion<[z.ZodLiteral<"Not Yet Determined">, z.ZodLiteral<"Unknown or pending verification">]>;
3228
- id: z.ZodLiteral<import("../entity").LocationAccuracy.NOT_DETERMINED>;
3229
- }, z.core.$strip>]>>>;
3137
+ accuracy: z.ZodOptional<z.ZodArray<z.ZodObject<{
3138
+ identifier: z.ZodString;
3139
+ id: z.ZodEnum<{
3140
+ location_accuracy_a: import("../entity").LocationAccuracy.A;
3141
+ location_accuracy_b: import("../entity").LocationAccuracy.B;
3142
+ location_accuracy_c: import("../entity").LocationAccuracy.C;
3143
+ location_accuracy_not_determined: import("../entity").LocationAccuracy.NOT_DETERMINED;
3144
+ }>;
3145
+ }, z.core.$strip>>>;
3230
3146
  source: z.ZodOptional<z.ZodString>;
3231
3147
  }, z.core.$strip>>>;
3232
3148
  country: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -3398,19 +3314,15 @@ export declare const signalDetailsSchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<
3398
3314
  lng: z.ZodNumber;
3399
3315
  }, z.core.$strip>>;
3400
3316
  override: z.ZodOptional<z.ZodBoolean>;
3401
- accuracy: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
3402
- identifier: z.ZodLiteral<"A - Exact lat/lon or address hit">;
3403
- id: z.ZodLiteral<import("../entity").LocationAccuracy.A>;
3404
- }, z.core.$strip>, z.ZodObject<{
3405
- identifier: z.ZodLiteral<"B - Exact POI known / Approximate / near known point">;
3406
- id: z.ZodLiteral<import("../entity").LocationAccuracy.B>;
3407
- }, z.core.$strip>, z.ZodObject<{
3408
- identifier: z.ZodLiteral<"C - County or town centroid">;
3409
- id: z.ZodLiteral<import("../entity").LocationAccuracy.C>;
3410
- }, z.core.$strip>, z.ZodObject<{
3411
- identifier: z.ZodUnion<[z.ZodLiteral<"Not Yet Determined">, z.ZodLiteral<"Unknown or pending verification">]>;
3412
- id: z.ZodLiteral<import("../entity").LocationAccuracy.NOT_DETERMINED>;
3413
- }, z.core.$strip>]>>>;
3317
+ accuracy: z.ZodOptional<z.ZodArray<z.ZodObject<{
3318
+ identifier: z.ZodString;
3319
+ id: z.ZodEnum<{
3320
+ location_accuracy_a: import("../entity").LocationAccuracy.A;
3321
+ location_accuracy_b: import("../entity").LocationAccuracy.B;
3322
+ location_accuracy_c: import("../entity").LocationAccuracy.C;
3323
+ location_accuracy_not_determined: import("../entity").LocationAccuracy.NOT_DETERMINED;
3324
+ }>;
3325
+ }, z.core.$strip>>>;
3414
3326
  source: z.ZodOptional<z.ZodString>;
3415
3327
  }, z.core.$strip>>>;
3416
3328
  country: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -3573,19 +3485,15 @@ export declare const signalDetailsSchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<
3573
3485
  lng: z.ZodNumber;
3574
3486
  }, z.core.$strip>>;
3575
3487
  override: z.ZodOptional<z.ZodBoolean>;
3576
- accuracy: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
3577
- identifier: z.ZodLiteral<"A - Exact lat/lon or address hit">;
3578
- id: z.ZodLiteral<import("../entity").LocationAccuracy.A>;
3579
- }, z.core.$strip>, z.ZodObject<{
3580
- identifier: z.ZodLiteral<"B - Exact POI known / Approximate / near known point">;
3581
- id: z.ZodLiteral<import("../entity").LocationAccuracy.B>;
3582
- }, z.core.$strip>, z.ZodObject<{
3583
- identifier: z.ZodLiteral<"C - County or town centroid">;
3584
- id: z.ZodLiteral<import("../entity").LocationAccuracy.C>;
3585
- }, z.core.$strip>, z.ZodObject<{
3586
- identifier: z.ZodUnion<[z.ZodLiteral<"Not Yet Determined">, z.ZodLiteral<"Unknown or pending verification">]>;
3587
- id: z.ZodLiteral<import("../entity").LocationAccuracy.NOT_DETERMINED>;
3588
- }, z.core.$strip>]>>>;
3488
+ accuracy: z.ZodOptional<z.ZodArray<z.ZodObject<{
3489
+ identifier: z.ZodString;
3490
+ id: z.ZodEnum<{
3491
+ location_accuracy_a: import("../entity").LocationAccuracy.A;
3492
+ location_accuracy_b: import("../entity").LocationAccuracy.B;
3493
+ location_accuracy_c: import("../entity").LocationAccuracy.C;
3494
+ location_accuracy_not_determined: import("../entity").LocationAccuracy.NOT_DETERMINED;
3495
+ }>;
3496
+ }, z.core.$strip>>>;
3589
3497
  source: z.ZodOptional<z.ZodString>;
3590
3498
  }, z.core.$strip>>>;
3591
3499
  country: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -3764,19 +3672,15 @@ export declare const signalDetailsSchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<
3764
3672
  lng: z.ZodNumber;
3765
3673
  }, z.core.$strip>>;
3766
3674
  override: z.ZodOptional<z.ZodBoolean>;
3767
- accuracy: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
3768
- identifier: z.ZodLiteral<"A - Exact lat/lon or address hit">;
3769
- id: z.ZodLiteral<import("../entity").LocationAccuracy.A>;
3770
- }, z.core.$strip>, z.ZodObject<{
3771
- identifier: z.ZodLiteral<"B - Exact POI known / Approximate / near known point">;
3772
- id: z.ZodLiteral<import("../entity").LocationAccuracy.B>;
3773
- }, z.core.$strip>, z.ZodObject<{
3774
- identifier: z.ZodLiteral<"C - County or town centroid">;
3775
- id: z.ZodLiteral<import("../entity").LocationAccuracy.C>;
3776
- }, z.core.$strip>, z.ZodObject<{
3777
- identifier: z.ZodUnion<[z.ZodLiteral<"Not Yet Determined">, z.ZodLiteral<"Unknown or pending verification">]>;
3778
- id: z.ZodLiteral<import("../entity").LocationAccuracy.NOT_DETERMINED>;
3779
- }, z.core.$strip>]>>>;
3675
+ accuracy: z.ZodOptional<z.ZodArray<z.ZodObject<{
3676
+ identifier: z.ZodString;
3677
+ id: z.ZodEnum<{
3678
+ location_accuracy_a: import("../entity").LocationAccuracy.A;
3679
+ location_accuracy_b: import("../entity").LocationAccuracy.B;
3680
+ location_accuracy_c: import("../entity").LocationAccuracy.C;
3681
+ location_accuracy_not_determined: import("../entity").LocationAccuracy.NOT_DETERMINED;
3682
+ }>;
3683
+ }, z.core.$strip>>>;
3780
3684
  source: z.ZodOptional<z.ZodString>;
3781
3685
  }, z.core.$strip>>>;
3782
3686
  country: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -3948,19 +3852,15 @@ export declare const signalDetailsUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodO
3948
3852
  lng: z.ZodNumber;
3949
3853
  }, z.core.$strip>>;
3950
3854
  override: z.ZodOptional<z.ZodBoolean>;
3951
- accuracy: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
3952
- identifier: z.ZodLiteral<"A - Exact lat/lon or address hit">;
3953
- id: z.ZodLiteral<import("../entity").LocationAccuracy.A>;
3954
- }, z.core.$strip>, z.ZodObject<{
3955
- identifier: z.ZodLiteral<"B - Exact POI known / Approximate / near known point">;
3956
- id: z.ZodLiteral<import("../entity").LocationAccuracy.B>;
3957
- }, z.core.$strip>, z.ZodObject<{
3958
- identifier: z.ZodLiteral<"C - County or town centroid">;
3959
- id: z.ZodLiteral<import("../entity").LocationAccuracy.C>;
3960
- }, z.core.$strip>, z.ZodObject<{
3961
- identifier: z.ZodUnion<[z.ZodLiteral<"Not Yet Determined">, z.ZodLiteral<"Unknown or pending verification">]>;
3962
- id: z.ZodLiteral<import("../entity").LocationAccuracy.NOT_DETERMINED>;
3963
- }, z.core.$strip>]>>>;
3855
+ accuracy: z.ZodOptional<z.ZodArray<z.ZodObject<{
3856
+ identifier: z.ZodString;
3857
+ id: z.ZodEnum<{
3858
+ location_accuracy_a: import("../entity").LocationAccuracy.A;
3859
+ location_accuracy_b: import("../entity").LocationAccuracy.B;
3860
+ location_accuracy_c: import("../entity").LocationAccuracy.C;
3861
+ location_accuracy_not_determined: import("../entity").LocationAccuracy.NOT_DETERMINED;
3862
+ }>;
3863
+ }, z.core.$strip>>>;
3964
3864
  source: z.ZodOptional<z.ZodString>;
3965
3865
  }, z.core.$strip>>>;
3966
3866
  country: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -4123,19 +4023,15 @@ export declare const signalDetailsUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodO
4123
4023
  lng: z.ZodNumber;
4124
4024
  }, z.core.$strip>>;
4125
4025
  override: z.ZodOptional<z.ZodBoolean>;
4126
- accuracy: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
4127
- identifier: z.ZodLiteral<"A - Exact lat/lon or address hit">;
4128
- id: z.ZodLiteral<import("../entity").LocationAccuracy.A>;
4129
- }, z.core.$strip>, z.ZodObject<{
4130
- identifier: z.ZodLiteral<"B - Exact POI known / Approximate / near known point">;
4131
- id: z.ZodLiteral<import("../entity").LocationAccuracy.B>;
4132
- }, z.core.$strip>, z.ZodObject<{
4133
- identifier: z.ZodLiteral<"C - County or town centroid">;
4134
- id: z.ZodLiteral<import("../entity").LocationAccuracy.C>;
4135
- }, z.core.$strip>, z.ZodObject<{
4136
- identifier: z.ZodUnion<[z.ZodLiteral<"Not Yet Determined">, z.ZodLiteral<"Unknown or pending verification">]>;
4137
- id: z.ZodLiteral<import("../entity").LocationAccuracy.NOT_DETERMINED>;
4138
- }, z.core.$strip>]>>>;
4026
+ accuracy: z.ZodOptional<z.ZodArray<z.ZodObject<{
4027
+ identifier: z.ZodString;
4028
+ id: z.ZodEnum<{
4029
+ location_accuracy_a: import("../entity").LocationAccuracy.A;
4030
+ location_accuracy_b: import("../entity").LocationAccuracy.B;
4031
+ location_accuracy_c: import("../entity").LocationAccuracy.C;
4032
+ location_accuracy_not_determined: import("../entity").LocationAccuracy.NOT_DETERMINED;
4033
+ }>;
4034
+ }, z.core.$strip>>>;
4139
4035
  source: z.ZodOptional<z.ZodString>;
4140
4036
  }, z.core.$strip>>>;
4141
4037
  country: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -4314,19 +4210,15 @@ export declare const signalDetailsUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodO
4314
4210
  lng: z.ZodNumber;
4315
4211
  }, z.core.$strip>>;
4316
4212
  override: z.ZodOptional<z.ZodBoolean>;
4317
- accuracy: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
4318
- identifier: z.ZodLiteral<"A - Exact lat/lon or address hit">;
4319
- id: z.ZodLiteral<import("../entity").LocationAccuracy.A>;
4320
- }, z.core.$strip>, z.ZodObject<{
4321
- identifier: z.ZodLiteral<"B - Exact POI known / Approximate / near known point">;
4322
- id: z.ZodLiteral<import("../entity").LocationAccuracy.B>;
4323
- }, z.core.$strip>, z.ZodObject<{
4324
- identifier: z.ZodLiteral<"C - County or town centroid">;
4325
- id: z.ZodLiteral<import("../entity").LocationAccuracy.C>;
4326
- }, z.core.$strip>, z.ZodObject<{
4327
- identifier: z.ZodUnion<[z.ZodLiteral<"Not Yet Determined">, z.ZodLiteral<"Unknown or pending verification">]>;
4328
- id: z.ZodLiteral<import("../entity").LocationAccuracy.NOT_DETERMINED>;
4329
- }, z.core.$strip>]>>>;
4213
+ accuracy: z.ZodOptional<z.ZodArray<z.ZodObject<{
4214
+ identifier: z.ZodString;
4215
+ id: z.ZodEnum<{
4216
+ location_accuracy_a: import("../entity").LocationAccuracy.A;
4217
+ location_accuracy_b: import("../entity").LocationAccuracy.B;
4218
+ location_accuracy_c: import("../entity").LocationAccuracy.C;
4219
+ location_accuracy_not_determined: import("../entity").LocationAccuracy.NOT_DETERMINED;
4220
+ }>;
4221
+ }, z.core.$strip>>>;
4330
4222
  source: z.ZodOptional<z.ZodString>;
4331
4223
  }, z.core.$strip>>>;
4332
4224
  country: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -4480,19 +4372,15 @@ export declare const euSignalByLocationListSchemaV1: z.ZodObject<{
4480
4372
  lng: z.ZodNumber;
4481
4373
  }, z.core.$strip>>;
4482
4374
  override: z.ZodOptional<z.ZodBoolean>;
4483
- accuracy: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
4484
- identifier: z.ZodLiteral<"A - Exact lat/lon or address hit">;
4485
- id: z.ZodLiteral<import("../entity").LocationAccuracy.A>;
4486
- }, z.core.$strip>, z.ZodObject<{
4487
- identifier: z.ZodLiteral<"B - Exact POI known / Approximate / near known point">;
4488
- id: z.ZodLiteral<import("../entity").LocationAccuracy.B>;
4489
- }, z.core.$strip>, z.ZodObject<{
4490
- identifier: z.ZodLiteral<"C - County or town centroid">;
4491
- id: z.ZodLiteral<import("../entity").LocationAccuracy.C>;
4492
- }, z.core.$strip>, z.ZodObject<{
4493
- identifier: z.ZodUnion<[z.ZodLiteral<"Not Yet Determined">, z.ZodLiteral<"Unknown or pending verification">]>;
4494
- id: z.ZodLiteral<import("../entity").LocationAccuracy.NOT_DETERMINED>;
4495
- }, z.core.$strip>]>>>;
4375
+ accuracy: z.ZodOptional<z.ZodArray<z.ZodObject<{
4376
+ identifier: z.ZodString;
4377
+ id: z.ZodEnum<{
4378
+ location_accuracy_a: import("../entity").LocationAccuracy.A;
4379
+ location_accuracy_b: import("../entity").LocationAccuracy.B;
4380
+ location_accuracy_c: import("../entity").LocationAccuracy.C;
4381
+ location_accuracy_not_determined: import("../entity").LocationAccuracy.NOT_DETERMINED;
4382
+ }>;
4383
+ }, z.core.$strip>>>;
4496
4384
  source: z.ZodOptional<z.ZodString>;
4497
4385
  }, z.core.$strip>>>;
4498
4386
  country: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -4569,19 +4457,15 @@ export declare const usSignalByLocationListSchemaV1: z.ZodObject<{
4569
4457
  lng: z.ZodNumber;
4570
4458
  }, z.core.$strip>>;
4571
4459
  override: z.ZodOptional<z.ZodBoolean>;
4572
- accuracy: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
4573
- identifier: z.ZodLiteral<"A - Exact lat/lon or address hit">;
4574
- id: z.ZodLiteral<import("../entity").LocationAccuracy.A>;
4575
- }, z.core.$strip>, z.ZodObject<{
4576
- identifier: z.ZodLiteral<"B - Exact POI known / Approximate / near known point">;
4577
- id: z.ZodLiteral<import("../entity").LocationAccuracy.B>;
4578
- }, z.core.$strip>, z.ZodObject<{
4579
- identifier: z.ZodLiteral<"C - County or town centroid">;
4580
- id: z.ZodLiteral<import("../entity").LocationAccuracy.C>;
4581
- }, z.core.$strip>, z.ZodObject<{
4582
- identifier: z.ZodUnion<[z.ZodLiteral<"Not Yet Determined">, z.ZodLiteral<"Unknown or pending verification">]>;
4583
- id: z.ZodLiteral<import("../entity").LocationAccuracy.NOT_DETERMINED>;
4584
- }, z.core.$strip>]>>>;
4460
+ accuracy: z.ZodOptional<z.ZodArray<z.ZodObject<{
4461
+ identifier: z.ZodString;
4462
+ id: z.ZodEnum<{
4463
+ location_accuracy_a: import("../entity").LocationAccuracy.A;
4464
+ location_accuracy_b: import("../entity").LocationAccuracy.B;
4465
+ location_accuracy_c: import("../entity").LocationAccuracy.C;
4466
+ location_accuracy_not_determined: import("../entity").LocationAccuracy.NOT_DETERMINED;
4467
+ }>;
4468
+ }, z.core.$strip>>>;
4585
4469
  source: z.ZodOptional<z.ZodString>;
4586
4470
  }, z.core.$strip>>>;
4587
4471
  organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -4654,19 +4538,15 @@ export declare const globalSignalByLocationListSchemaV1: z.ZodObject<{
4654
4538
  lng: z.ZodNumber;
4655
4539
  }, z.core.$strip>>;
4656
4540
  override: z.ZodOptional<z.ZodBoolean>;
4657
- accuracy: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
4658
- identifier: z.ZodLiteral<"A - Exact lat/lon or address hit">;
4659
- id: z.ZodLiteral<import("../entity").LocationAccuracy.A>;
4660
- }, z.core.$strip>, z.ZodObject<{
4661
- identifier: z.ZodLiteral<"B - Exact POI known / Approximate / near known point">;
4662
- id: z.ZodLiteral<import("../entity").LocationAccuracy.B>;
4663
- }, z.core.$strip>, z.ZodObject<{
4664
- identifier: z.ZodLiteral<"C - County or town centroid">;
4665
- id: z.ZodLiteral<import("../entity").LocationAccuracy.C>;
4666
- }, z.core.$strip>, z.ZodObject<{
4667
- identifier: z.ZodUnion<[z.ZodLiteral<"Not Yet Determined">, z.ZodLiteral<"Unknown or pending verification">]>;
4668
- id: z.ZodLiteral<import("../entity").LocationAccuracy.NOT_DETERMINED>;
4669
- }, z.core.$strip>]>>>;
4541
+ accuracy: z.ZodOptional<z.ZodArray<z.ZodObject<{
4542
+ identifier: z.ZodString;
4543
+ id: z.ZodEnum<{
4544
+ location_accuracy_a: import("../entity").LocationAccuracy.A;
4545
+ location_accuracy_b: import("../entity").LocationAccuracy.B;
4546
+ location_accuracy_c: import("../entity").LocationAccuracy.C;
4547
+ location_accuracy_not_determined: import("../entity").LocationAccuracy.NOT_DETERMINED;
4548
+ }>;
4549
+ }, z.core.$strip>>>;
4670
4550
  source: z.ZodOptional<z.ZodString>;
4671
4551
  }, z.core.$strip>>>;
4672
4552
  country: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -4735,19 +4615,15 @@ export declare const signalByLocationListSchemaV1: z.ZodUnion<[z.ZodUnion<[z.Zod
4735
4615
  lng: z.ZodNumber;
4736
4616
  }, z.core.$strip>>;
4737
4617
  override: z.ZodOptional<z.ZodBoolean>;
4738
- accuracy: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
4739
- identifier: z.ZodLiteral<"A - Exact lat/lon or address hit">;
4740
- id: z.ZodLiteral<import("../entity").LocationAccuracy.A>;
4741
- }, z.core.$strip>, z.ZodObject<{
4742
- identifier: z.ZodLiteral<"B - Exact POI known / Approximate / near known point">;
4743
- id: z.ZodLiteral<import("../entity").LocationAccuracy.B>;
4744
- }, z.core.$strip>, z.ZodObject<{
4745
- identifier: z.ZodLiteral<"C - County or town centroid">;
4746
- id: z.ZodLiteral<import("../entity").LocationAccuracy.C>;
4747
- }, z.core.$strip>, z.ZodObject<{
4748
- identifier: z.ZodUnion<[z.ZodLiteral<"Not Yet Determined">, z.ZodLiteral<"Unknown or pending verification">]>;
4749
- id: z.ZodLiteral<import("../entity").LocationAccuracy.NOT_DETERMINED>;
4750
- }, z.core.$strip>]>>>;
4618
+ accuracy: z.ZodOptional<z.ZodArray<z.ZodObject<{
4619
+ identifier: z.ZodString;
4620
+ id: z.ZodEnum<{
4621
+ location_accuracy_a: import("../entity").LocationAccuracy.A;
4622
+ location_accuracy_b: import("../entity").LocationAccuracy.B;
4623
+ location_accuracy_c: import("../entity").LocationAccuracy.C;
4624
+ location_accuracy_not_determined: import("../entity").LocationAccuracy.NOT_DETERMINED;
4625
+ }>;
4626
+ }, z.core.$strip>>>;
4751
4627
  source: z.ZodOptional<z.ZodString>;
4752
4628
  }, z.core.$strip>>>;
4753
4629
  country: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -4823,19 +4699,15 @@ export declare const signalByLocationListSchemaV1: z.ZodUnion<[z.ZodUnion<[z.Zod
4823
4699
  lng: z.ZodNumber;
4824
4700
  }, z.core.$strip>>;
4825
4701
  override: z.ZodOptional<z.ZodBoolean>;
4826
- accuracy: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
4827
- identifier: z.ZodLiteral<"A - Exact lat/lon or address hit">;
4828
- id: z.ZodLiteral<import("../entity").LocationAccuracy.A>;
4829
- }, z.core.$strip>, z.ZodObject<{
4830
- identifier: z.ZodLiteral<"B - Exact POI known / Approximate / near known point">;
4831
- id: z.ZodLiteral<import("../entity").LocationAccuracy.B>;
4832
- }, z.core.$strip>, z.ZodObject<{
4833
- identifier: z.ZodLiteral<"C - County or town centroid">;
4834
- id: z.ZodLiteral<import("../entity").LocationAccuracy.C>;
4835
- }, z.core.$strip>, z.ZodObject<{
4836
- identifier: z.ZodUnion<[z.ZodLiteral<"Not Yet Determined">, z.ZodLiteral<"Unknown or pending verification">]>;
4837
- id: z.ZodLiteral<import("../entity").LocationAccuracy.NOT_DETERMINED>;
4838
- }, z.core.$strip>]>>>;
4702
+ accuracy: z.ZodOptional<z.ZodArray<z.ZodObject<{
4703
+ identifier: z.ZodString;
4704
+ id: z.ZodEnum<{
4705
+ location_accuracy_a: import("../entity").LocationAccuracy.A;
4706
+ location_accuracy_b: import("../entity").LocationAccuracy.B;
4707
+ location_accuracy_c: import("../entity").LocationAccuracy.C;
4708
+ location_accuracy_not_determined: import("../entity").LocationAccuracy.NOT_DETERMINED;
4709
+ }>;
4710
+ }, z.core.$strip>>>;
4839
4711
  source: z.ZodOptional<z.ZodString>;
4840
4712
  }, z.core.$strip>>>;
4841
4713
  organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -4907,19 +4779,15 @@ export declare const signalByLocationListSchemaV1: z.ZodUnion<[z.ZodUnion<[z.Zod
4907
4779
  lng: z.ZodNumber;
4908
4780
  }, z.core.$strip>>;
4909
4781
  override: z.ZodOptional<z.ZodBoolean>;
4910
- accuracy: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
4911
- identifier: z.ZodLiteral<"A - Exact lat/lon or address hit">;
4912
- id: z.ZodLiteral<import("../entity").LocationAccuracy.A>;
4913
- }, z.core.$strip>, z.ZodObject<{
4914
- identifier: z.ZodLiteral<"B - Exact POI known / Approximate / near known point">;
4915
- id: z.ZodLiteral<import("../entity").LocationAccuracy.B>;
4916
- }, z.core.$strip>, z.ZodObject<{
4917
- identifier: z.ZodLiteral<"C - County or town centroid">;
4918
- id: z.ZodLiteral<import("../entity").LocationAccuracy.C>;
4919
- }, z.core.$strip>, z.ZodObject<{
4920
- identifier: z.ZodUnion<[z.ZodLiteral<"Not Yet Determined">, z.ZodLiteral<"Unknown or pending verification">]>;
4921
- id: z.ZodLiteral<import("../entity").LocationAccuracy.NOT_DETERMINED>;
4922
- }, z.core.$strip>]>>>;
4782
+ accuracy: z.ZodOptional<z.ZodArray<z.ZodObject<{
4783
+ identifier: z.ZodString;
4784
+ id: z.ZodEnum<{
4785
+ location_accuracy_a: import("../entity").LocationAccuracy.A;
4786
+ location_accuracy_b: import("../entity").LocationAccuracy.B;
4787
+ location_accuracy_c: import("../entity").LocationAccuracy.C;
4788
+ location_accuracy_not_determined: import("../entity").LocationAccuracy.NOT_DETERMINED;
4789
+ }>;
4790
+ }, z.core.$strip>>>;
4923
4791
  source: z.ZodOptional<z.ZodString>;
4924
4792
  }, z.core.$strip>>>;
4925
4793
  country: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -4988,19 +4856,15 @@ export declare const signalByLocationListUnionSchemaV1: z.ZodDiscriminatedUnion<
4988
4856
  lng: z.ZodNumber;
4989
4857
  }, z.core.$strip>>;
4990
4858
  override: z.ZodOptional<z.ZodBoolean>;
4991
- accuracy: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
4992
- identifier: z.ZodLiteral<"A - Exact lat/lon or address hit">;
4993
- id: z.ZodLiteral<import("../entity").LocationAccuracy.A>;
4994
- }, z.core.$strip>, z.ZodObject<{
4995
- identifier: z.ZodLiteral<"B - Exact POI known / Approximate / near known point">;
4996
- id: z.ZodLiteral<import("../entity").LocationAccuracy.B>;
4997
- }, z.core.$strip>, z.ZodObject<{
4998
- identifier: z.ZodLiteral<"C - County or town centroid">;
4999
- id: z.ZodLiteral<import("../entity").LocationAccuracy.C>;
5000
- }, z.core.$strip>, z.ZodObject<{
5001
- identifier: z.ZodUnion<[z.ZodLiteral<"Not Yet Determined">, z.ZodLiteral<"Unknown or pending verification">]>;
5002
- id: z.ZodLiteral<import("../entity").LocationAccuracy.NOT_DETERMINED>;
5003
- }, z.core.$strip>]>>>;
4859
+ accuracy: z.ZodOptional<z.ZodArray<z.ZodObject<{
4860
+ identifier: z.ZodString;
4861
+ id: z.ZodEnum<{
4862
+ location_accuracy_a: import("../entity").LocationAccuracy.A;
4863
+ location_accuracy_b: import("../entity").LocationAccuracy.B;
4864
+ location_accuracy_c: import("../entity").LocationAccuracy.C;
4865
+ location_accuracy_not_determined: import("../entity").LocationAccuracy.NOT_DETERMINED;
4866
+ }>;
4867
+ }, z.core.$strip>>>;
5004
4868
  source: z.ZodOptional<z.ZodString>;
5005
4869
  }, z.core.$strip>>>;
5006
4870
  country: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -5076,19 +4940,15 @@ export declare const signalByLocationListUnionSchemaV1: z.ZodDiscriminatedUnion<
5076
4940
  lng: z.ZodNumber;
5077
4941
  }, z.core.$strip>>;
5078
4942
  override: z.ZodOptional<z.ZodBoolean>;
5079
- accuracy: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
5080
- identifier: z.ZodLiteral<"A - Exact lat/lon or address hit">;
5081
- id: z.ZodLiteral<import("../entity").LocationAccuracy.A>;
5082
- }, z.core.$strip>, z.ZodObject<{
5083
- identifier: z.ZodLiteral<"B - Exact POI known / Approximate / near known point">;
5084
- id: z.ZodLiteral<import("../entity").LocationAccuracy.B>;
5085
- }, z.core.$strip>, z.ZodObject<{
5086
- identifier: z.ZodLiteral<"C - County or town centroid">;
5087
- id: z.ZodLiteral<import("../entity").LocationAccuracy.C>;
5088
- }, z.core.$strip>, z.ZodObject<{
5089
- identifier: z.ZodUnion<[z.ZodLiteral<"Not Yet Determined">, z.ZodLiteral<"Unknown or pending verification">]>;
5090
- id: z.ZodLiteral<import("../entity").LocationAccuracy.NOT_DETERMINED>;
5091
- }, z.core.$strip>]>>>;
4943
+ accuracy: z.ZodOptional<z.ZodArray<z.ZodObject<{
4944
+ identifier: z.ZodString;
4945
+ id: z.ZodEnum<{
4946
+ location_accuracy_a: import("../entity").LocationAccuracy.A;
4947
+ location_accuracy_b: import("../entity").LocationAccuracy.B;
4948
+ location_accuracy_c: import("../entity").LocationAccuracy.C;
4949
+ location_accuracy_not_determined: import("../entity").LocationAccuracy.NOT_DETERMINED;
4950
+ }>;
4951
+ }, z.core.$strip>>>;
5092
4952
  source: z.ZodOptional<z.ZodString>;
5093
4953
  }, z.core.$strip>>>;
5094
4954
  organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -5160,19 +5020,15 @@ export declare const signalByLocationListUnionSchemaV1: z.ZodDiscriminatedUnion<
5160
5020
  lng: z.ZodNumber;
5161
5021
  }, z.core.$strip>>;
5162
5022
  override: z.ZodOptional<z.ZodBoolean>;
5163
- accuracy: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
5164
- identifier: z.ZodLiteral<"A - Exact lat/lon or address hit">;
5165
- id: z.ZodLiteral<import("../entity").LocationAccuracy.A>;
5166
- }, z.core.$strip>, z.ZodObject<{
5167
- identifier: z.ZodLiteral<"B - Exact POI known / Approximate / near known point">;
5168
- id: z.ZodLiteral<import("../entity").LocationAccuracy.B>;
5169
- }, z.core.$strip>, z.ZodObject<{
5170
- identifier: z.ZodLiteral<"C - County or town centroid">;
5171
- id: z.ZodLiteral<import("../entity").LocationAccuracy.C>;
5172
- }, z.core.$strip>, z.ZodObject<{
5173
- identifier: z.ZodUnion<[z.ZodLiteral<"Not Yet Determined">, z.ZodLiteral<"Unknown or pending verification">]>;
5174
- id: z.ZodLiteral<import("../entity").LocationAccuracy.NOT_DETERMINED>;
5175
- }, z.core.$strip>]>>>;
5023
+ accuracy: z.ZodOptional<z.ZodArray<z.ZodObject<{
5024
+ identifier: z.ZodString;
5025
+ id: z.ZodEnum<{
5026
+ location_accuracy_a: import("../entity").LocationAccuracy.A;
5027
+ location_accuracy_b: import("../entity").LocationAccuracy.B;
5028
+ location_accuracy_c: import("../entity").LocationAccuracy.C;
5029
+ location_accuracy_not_determined: import("../entity").LocationAccuracy.NOT_DETERMINED;
5030
+ }>;
5031
+ }, z.core.$strip>>>;
5176
5032
  source: z.ZodOptional<z.ZodString>;
5177
5033
  }, z.core.$strip>>>;
5178
5034
  country: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -5255,19 +5111,15 @@ export declare const euSignalExportSchemaV1: z.ZodObject<{
5255
5111
  lng: z.ZodNumber;
5256
5112
  }, z.core.$strip>>;
5257
5113
  override: z.ZodOptional<z.ZodBoolean>;
5258
- accuracy: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
5259
- identifier: z.ZodLiteral<"A - Exact lat/lon or address hit">;
5260
- id: z.ZodLiteral<import("../entity").LocationAccuracy.A>;
5261
- }, z.core.$strip>, z.ZodObject<{
5262
- identifier: z.ZodLiteral<"B - Exact POI known / Approximate / near known point">;
5263
- id: z.ZodLiteral<import("../entity").LocationAccuracy.B>;
5264
- }, z.core.$strip>, z.ZodObject<{
5265
- identifier: z.ZodLiteral<"C - County or town centroid">;
5266
- id: z.ZodLiteral<import("../entity").LocationAccuracy.C>;
5267
- }, z.core.$strip>, z.ZodObject<{
5268
- identifier: z.ZodUnion<[z.ZodLiteral<"Not Yet Determined">, z.ZodLiteral<"Unknown or pending verification">]>;
5269
- id: z.ZodLiteral<import("../entity").LocationAccuracy.NOT_DETERMINED>;
5270
- }, z.core.$strip>]>>>;
5114
+ accuracy: z.ZodOptional<z.ZodArray<z.ZodObject<{
5115
+ identifier: z.ZodString;
5116
+ id: z.ZodEnum<{
5117
+ location_accuracy_a: import("../entity").LocationAccuracy.A;
5118
+ location_accuracy_b: import("../entity").LocationAccuracy.B;
5119
+ location_accuracy_c: import("../entity").LocationAccuracy.C;
5120
+ location_accuracy_not_determined: import("../entity").LocationAccuracy.NOT_DETERMINED;
5121
+ }>;
5122
+ }, z.core.$strip>>>;
5271
5123
  source: z.ZodOptional<z.ZodString>;
5272
5124
  }, z.core.$strip>>>;
5273
5125
  country: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -5399,19 +5251,15 @@ export declare const usSignalExportSchemaV1: z.ZodObject<{
5399
5251
  lng: z.ZodNumber;
5400
5252
  }, z.core.$strip>>;
5401
5253
  override: z.ZodOptional<z.ZodBoolean>;
5402
- accuracy: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
5403
- identifier: z.ZodLiteral<"A - Exact lat/lon or address hit">;
5404
- id: z.ZodLiteral<import("../entity").LocationAccuracy.A>;
5405
- }, z.core.$strip>, z.ZodObject<{
5406
- identifier: z.ZodLiteral<"B - Exact POI known / Approximate / near known point">;
5407
- id: z.ZodLiteral<import("../entity").LocationAccuracy.B>;
5408
- }, z.core.$strip>, z.ZodObject<{
5409
- identifier: z.ZodLiteral<"C - County or town centroid">;
5410
- id: z.ZodLiteral<import("../entity").LocationAccuracy.C>;
5411
- }, z.core.$strip>, z.ZodObject<{
5412
- identifier: z.ZodUnion<[z.ZodLiteral<"Not Yet Determined">, z.ZodLiteral<"Unknown or pending verification">]>;
5413
- id: z.ZodLiteral<import("../entity").LocationAccuracy.NOT_DETERMINED>;
5414
- }, z.core.$strip>]>>>;
5254
+ accuracy: z.ZodOptional<z.ZodArray<z.ZodObject<{
5255
+ identifier: z.ZodString;
5256
+ id: z.ZodEnum<{
5257
+ location_accuracy_a: import("../entity").LocationAccuracy.A;
5258
+ location_accuracy_b: import("../entity").LocationAccuracy.B;
5259
+ location_accuracy_c: import("../entity").LocationAccuracy.C;
5260
+ location_accuracy_not_determined: import("../entity").LocationAccuracy.NOT_DETERMINED;
5261
+ }>;
5262
+ }, z.core.$strip>>>;
5415
5263
  source: z.ZodOptional<z.ZodString>;
5416
5264
  }, z.core.$strip>>>;
5417
5265
  country: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -5547,19 +5395,15 @@ export declare const globalSignalExportSchemaV1: z.ZodObject<{
5547
5395
  lng: z.ZodNumber;
5548
5396
  }, z.core.$strip>>;
5549
5397
  override: z.ZodOptional<z.ZodBoolean>;
5550
- accuracy: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
5551
- identifier: z.ZodLiteral<"A - Exact lat/lon or address hit">;
5552
- id: z.ZodLiteral<import("../entity").LocationAccuracy.A>;
5553
- }, z.core.$strip>, z.ZodObject<{
5554
- identifier: z.ZodLiteral<"B - Exact POI known / Approximate / near known point">;
5555
- id: z.ZodLiteral<import("../entity").LocationAccuracy.B>;
5556
- }, z.core.$strip>, z.ZodObject<{
5557
- identifier: z.ZodLiteral<"C - County or town centroid">;
5558
- id: z.ZodLiteral<import("../entity").LocationAccuracy.C>;
5559
- }, z.core.$strip>, z.ZodObject<{
5560
- identifier: z.ZodUnion<[z.ZodLiteral<"Not Yet Determined">, z.ZodLiteral<"Unknown or pending verification">]>;
5561
- id: z.ZodLiteral<import("../entity").LocationAccuracy.NOT_DETERMINED>;
5562
- }, z.core.$strip>]>>>;
5398
+ accuracy: z.ZodOptional<z.ZodArray<z.ZodObject<{
5399
+ identifier: z.ZodString;
5400
+ id: z.ZodEnum<{
5401
+ location_accuracy_a: import("../entity").LocationAccuracy.A;
5402
+ location_accuracy_b: import("../entity").LocationAccuracy.B;
5403
+ location_accuracy_c: import("../entity").LocationAccuracy.C;
5404
+ location_accuracy_not_determined: import("../entity").LocationAccuracy.NOT_DETERMINED;
5405
+ }>;
5406
+ }, z.core.$strip>>>;
5563
5407
  source: z.ZodOptional<z.ZodString>;
5564
5408
  }, z.core.$strip>>>;
5565
5409
  country: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -5687,19 +5531,15 @@ export declare const signalExportUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodOb
5687
5531
  lng: z.ZodNumber;
5688
5532
  }, z.core.$strip>>;
5689
5533
  override: z.ZodOptional<z.ZodBoolean>;
5690
- accuracy: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
5691
- identifier: z.ZodLiteral<"A - Exact lat/lon or address hit">;
5692
- id: z.ZodLiteral<import("../entity").LocationAccuracy.A>;
5693
- }, z.core.$strip>, z.ZodObject<{
5694
- identifier: z.ZodLiteral<"B - Exact POI known / Approximate / near known point">;
5695
- id: z.ZodLiteral<import("../entity").LocationAccuracy.B>;
5696
- }, z.core.$strip>, z.ZodObject<{
5697
- identifier: z.ZodLiteral<"C - County or town centroid">;
5698
- id: z.ZodLiteral<import("../entity").LocationAccuracy.C>;
5699
- }, z.core.$strip>, z.ZodObject<{
5700
- identifier: z.ZodUnion<[z.ZodLiteral<"Not Yet Determined">, z.ZodLiteral<"Unknown or pending verification">]>;
5701
- id: z.ZodLiteral<import("../entity").LocationAccuracy.NOT_DETERMINED>;
5702
- }, z.core.$strip>]>>>;
5534
+ accuracy: z.ZodOptional<z.ZodArray<z.ZodObject<{
5535
+ identifier: z.ZodString;
5536
+ id: z.ZodEnum<{
5537
+ location_accuracy_a: import("../entity").LocationAccuracy.A;
5538
+ location_accuracy_b: import("../entity").LocationAccuracy.B;
5539
+ location_accuracy_c: import("../entity").LocationAccuracy.C;
5540
+ location_accuracy_not_determined: import("../entity").LocationAccuracy.NOT_DETERMINED;
5541
+ }>;
5542
+ }, z.core.$strip>>>;
5703
5543
  source: z.ZodOptional<z.ZodString>;
5704
5544
  }, z.core.$strip>>>;
5705
5545
  country: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -5830,19 +5670,15 @@ export declare const signalExportUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodOb
5830
5670
  lng: z.ZodNumber;
5831
5671
  }, z.core.$strip>>;
5832
5672
  override: z.ZodOptional<z.ZodBoolean>;
5833
- accuracy: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
5834
- identifier: z.ZodLiteral<"A - Exact lat/lon or address hit">;
5835
- id: z.ZodLiteral<import("../entity").LocationAccuracy.A>;
5836
- }, z.core.$strip>, z.ZodObject<{
5837
- identifier: z.ZodLiteral<"B - Exact POI known / Approximate / near known point">;
5838
- id: z.ZodLiteral<import("../entity").LocationAccuracy.B>;
5839
- }, z.core.$strip>, z.ZodObject<{
5840
- identifier: z.ZodLiteral<"C - County or town centroid">;
5841
- id: z.ZodLiteral<import("../entity").LocationAccuracy.C>;
5842
- }, z.core.$strip>, z.ZodObject<{
5843
- identifier: z.ZodUnion<[z.ZodLiteral<"Not Yet Determined">, z.ZodLiteral<"Unknown or pending verification">]>;
5844
- id: z.ZodLiteral<import("../entity").LocationAccuracy.NOT_DETERMINED>;
5845
- }, z.core.$strip>]>>>;
5673
+ accuracy: z.ZodOptional<z.ZodArray<z.ZodObject<{
5674
+ identifier: z.ZodString;
5675
+ id: z.ZodEnum<{
5676
+ location_accuracy_a: import("../entity").LocationAccuracy.A;
5677
+ location_accuracy_b: import("../entity").LocationAccuracy.B;
5678
+ location_accuracy_c: import("../entity").LocationAccuracy.C;
5679
+ location_accuracy_not_determined: import("../entity").LocationAccuracy.NOT_DETERMINED;
5680
+ }>;
5681
+ }, z.core.$strip>>>;
5846
5682
  source: z.ZodOptional<z.ZodString>;
5847
5683
  }, z.core.$strip>>>;
5848
5684
  country: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -5977,19 +5813,15 @@ export declare const signalExportUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodOb
5977
5813
  lng: z.ZodNumber;
5978
5814
  }, z.core.$strip>>;
5979
5815
  override: z.ZodOptional<z.ZodBoolean>;
5980
- accuracy: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
5981
- identifier: z.ZodLiteral<"A - Exact lat/lon or address hit">;
5982
- id: z.ZodLiteral<import("../entity").LocationAccuracy.A>;
5983
- }, z.core.$strip>, z.ZodObject<{
5984
- identifier: z.ZodLiteral<"B - Exact POI known / Approximate / near known point">;
5985
- id: z.ZodLiteral<import("../entity").LocationAccuracy.B>;
5986
- }, z.core.$strip>, z.ZodObject<{
5987
- identifier: z.ZodLiteral<"C - County or town centroid">;
5988
- id: z.ZodLiteral<import("../entity").LocationAccuracy.C>;
5989
- }, z.core.$strip>, z.ZodObject<{
5990
- identifier: z.ZodUnion<[z.ZodLiteral<"Not Yet Determined">, z.ZodLiteral<"Unknown or pending verification">]>;
5991
- id: z.ZodLiteral<import("../entity").LocationAccuracy.NOT_DETERMINED>;
5992
- }, z.core.$strip>]>>>;
5816
+ accuracy: z.ZodOptional<z.ZodArray<z.ZodObject<{
5817
+ identifier: z.ZodString;
5818
+ id: z.ZodEnum<{
5819
+ location_accuracy_a: import("../entity").LocationAccuracy.A;
5820
+ location_accuracy_b: import("../entity").LocationAccuracy.B;
5821
+ location_accuracy_c: import("../entity").LocationAccuracy.C;
5822
+ location_accuracy_not_determined: import("../entity").LocationAccuracy.NOT_DETERMINED;
5823
+ }>;
5824
+ }, z.core.$strip>>>;
5993
5825
  source: z.ZodOptional<z.ZodString>;
5994
5826
  }, z.core.$strip>>>;
5995
5827
  country: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -6121,19 +5953,15 @@ export declare const euSignalAPISchemaV1: z.ZodObject<{
6121
5953
  lng: z.ZodNumber;
6122
5954
  }, z.core.$strip>>;
6123
5955
  override: z.ZodOptional<z.ZodBoolean>;
6124
- accuracy: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
6125
- identifier: z.ZodLiteral<"A - Exact lat/lon or address hit">;
6126
- id: z.ZodLiteral<import("../entity").LocationAccuracy.A>;
6127
- }, z.core.$strip>, z.ZodObject<{
6128
- identifier: z.ZodLiteral<"B - Exact POI known / Approximate / near known point">;
6129
- id: z.ZodLiteral<import("../entity").LocationAccuracy.B>;
6130
- }, z.core.$strip>, z.ZodObject<{
6131
- identifier: z.ZodLiteral<"C - County or town centroid">;
6132
- id: z.ZodLiteral<import("../entity").LocationAccuracy.C>;
6133
- }, z.core.$strip>, z.ZodObject<{
6134
- identifier: z.ZodUnion<[z.ZodLiteral<"Not Yet Determined">, z.ZodLiteral<"Unknown or pending verification">]>;
6135
- id: z.ZodLiteral<import("../entity").LocationAccuracy.NOT_DETERMINED>;
6136
- }, z.core.$strip>]>>>;
5956
+ accuracy: z.ZodOptional<z.ZodArray<z.ZodObject<{
5957
+ identifier: z.ZodString;
5958
+ id: z.ZodEnum<{
5959
+ location_accuracy_a: import("../entity").LocationAccuracy.A;
5960
+ location_accuracy_b: import("../entity").LocationAccuracy.B;
5961
+ location_accuracy_c: import("../entity").LocationAccuracy.C;
5962
+ location_accuracy_not_determined: import("../entity").LocationAccuracy.NOT_DETERMINED;
5963
+ }>;
5964
+ }, z.core.$strip>>>;
6137
5965
  source: z.ZodOptional<z.ZodString>;
6138
5966
  }, z.core.$strip>>>;
6139
5967
  country: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -6313,19 +6141,15 @@ export declare const usSignalAPISchemaV1: z.ZodObject<{
6313
6141
  lng: z.ZodNumber;
6314
6142
  }, z.core.$strip>>;
6315
6143
  override: z.ZodOptional<z.ZodBoolean>;
6316
- accuracy: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
6317
- identifier: z.ZodLiteral<"A - Exact lat/lon or address hit">;
6318
- id: z.ZodLiteral<import("../entity").LocationAccuracy.A>;
6319
- }, z.core.$strip>, z.ZodObject<{
6320
- identifier: z.ZodLiteral<"B - Exact POI known / Approximate / near known point">;
6321
- id: z.ZodLiteral<import("../entity").LocationAccuracy.B>;
6322
- }, z.core.$strip>, z.ZodObject<{
6323
- identifier: z.ZodLiteral<"C - County or town centroid">;
6324
- id: z.ZodLiteral<import("../entity").LocationAccuracy.C>;
6325
- }, z.core.$strip>, z.ZodObject<{
6326
- identifier: z.ZodUnion<[z.ZodLiteral<"Not Yet Determined">, z.ZodLiteral<"Unknown or pending verification">]>;
6327
- id: z.ZodLiteral<import("../entity").LocationAccuracy.NOT_DETERMINED>;
6328
- }, z.core.$strip>]>>>;
6144
+ accuracy: z.ZodOptional<z.ZodArray<z.ZodObject<{
6145
+ identifier: z.ZodString;
6146
+ id: z.ZodEnum<{
6147
+ location_accuracy_a: import("../entity").LocationAccuracy.A;
6148
+ location_accuracy_b: import("../entity").LocationAccuracy.B;
6149
+ location_accuracy_c: import("../entity").LocationAccuracy.C;
6150
+ location_accuracy_not_determined: import("../entity").LocationAccuracy.NOT_DETERMINED;
6151
+ }>;
6152
+ }, z.core.$strip>>>;
6329
6153
  source: z.ZodOptional<z.ZodString>;
6330
6154
  }, z.core.$strip>>>;
6331
6155
  country: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -6521,19 +6345,15 @@ export declare const globalSignalAPISchemaV1: z.ZodObject<{
6521
6345
  lng: z.ZodNumber;
6522
6346
  }, z.core.$strip>>;
6523
6347
  override: z.ZodOptional<z.ZodBoolean>;
6524
- accuracy: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
6525
- identifier: z.ZodLiteral<"A - Exact lat/lon or address hit">;
6526
- id: z.ZodLiteral<import("../entity").LocationAccuracy.A>;
6527
- }, z.core.$strip>, z.ZodObject<{
6528
- identifier: z.ZodLiteral<"B - Exact POI known / Approximate / near known point">;
6529
- id: z.ZodLiteral<import("../entity").LocationAccuracy.B>;
6530
- }, z.core.$strip>, z.ZodObject<{
6531
- identifier: z.ZodLiteral<"C - County or town centroid">;
6532
- id: z.ZodLiteral<import("../entity").LocationAccuracy.C>;
6533
- }, z.core.$strip>, z.ZodObject<{
6534
- identifier: z.ZodUnion<[z.ZodLiteral<"Not Yet Determined">, z.ZodLiteral<"Unknown or pending verification">]>;
6535
- id: z.ZodLiteral<import("../entity").LocationAccuracy.NOT_DETERMINED>;
6536
- }, z.core.$strip>]>>>;
6348
+ accuracy: z.ZodOptional<z.ZodArray<z.ZodObject<{
6349
+ identifier: z.ZodString;
6350
+ id: z.ZodEnum<{
6351
+ location_accuracy_a: import("../entity").LocationAccuracy.A;
6352
+ location_accuracy_b: import("../entity").LocationAccuracy.B;
6353
+ location_accuracy_c: import("../entity").LocationAccuracy.C;
6354
+ location_accuracy_not_determined: import("../entity").LocationAccuracy.NOT_DETERMINED;
6355
+ }>;
6356
+ }, z.core.$strip>>>;
6537
6357
  source: z.ZodOptional<z.ZodString>;
6538
6358
  }, z.core.$strip>>>;
6539
6359
  country: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -6721,19 +6541,15 @@ export declare const signalAPISchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
6721
6541
  lng: z.ZodNumber;
6722
6542
  }, z.core.$strip>>;
6723
6543
  override: z.ZodOptional<z.ZodBoolean>;
6724
- accuracy: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
6725
- identifier: z.ZodLiteral<"A - Exact lat/lon or address hit">;
6726
- id: z.ZodLiteral<import("../entity").LocationAccuracy.A>;
6727
- }, z.core.$strip>, z.ZodObject<{
6728
- identifier: z.ZodLiteral<"B - Exact POI known / Approximate / near known point">;
6729
- id: z.ZodLiteral<import("../entity").LocationAccuracy.B>;
6730
- }, z.core.$strip>, z.ZodObject<{
6731
- identifier: z.ZodLiteral<"C - County or town centroid">;
6732
- id: z.ZodLiteral<import("../entity").LocationAccuracy.C>;
6733
- }, z.core.$strip>, z.ZodObject<{
6734
- identifier: z.ZodUnion<[z.ZodLiteral<"Not Yet Determined">, z.ZodLiteral<"Unknown or pending verification">]>;
6735
- id: z.ZodLiteral<import("../entity").LocationAccuracy.NOT_DETERMINED>;
6736
- }, z.core.$strip>]>>>;
6544
+ accuracy: z.ZodOptional<z.ZodArray<z.ZodObject<{
6545
+ identifier: z.ZodString;
6546
+ id: z.ZodEnum<{
6547
+ location_accuracy_a: import("../entity").LocationAccuracy.A;
6548
+ location_accuracy_b: import("../entity").LocationAccuracy.B;
6549
+ location_accuracy_c: import("../entity").LocationAccuracy.C;
6550
+ location_accuracy_not_determined: import("../entity").LocationAccuracy.NOT_DETERMINED;
6551
+ }>;
6552
+ }, z.core.$strip>>>;
6737
6553
  source: z.ZodOptional<z.ZodString>;
6738
6554
  }, z.core.$strip>>>;
6739
6555
  country: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -6912,19 +6728,15 @@ export declare const signalAPISchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
6912
6728
  lng: z.ZodNumber;
6913
6729
  }, z.core.$strip>>;
6914
6730
  override: z.ZodOptional<z.ZodBoolean>;
6915
- accuracy: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
6916
- identifier: z.ZodLiteral<"A - Exact lat/lon or address hit">;
6917
- id: z.ZodLiteral<import("../entity").LocationAccuracy.A>;
6918
- }, z.core.$strip>, z.ZodObject<{
6919
- identifier: z.ZodLiteral<"B - Exact POI known / Approximate / near known point">;
6920
- id: z.ZodLiteral<import("../entity").LocationAccuracy.B>;
6921
- }, z.core.$strip>, z.ZodObject<{
6922
- identifier: z.ZodLiteral<"C - County or town centroid">;
6923
- id: z.ZodLiteral<import("../entity").LocationAccuracy.C>;
6924
- }, z.core.$strip>, z.ZodObject<{
6925
- identifier: z.ZodUnion<[z.ZodLiteral<"Not Yet Determined">, z.ZodLiteral<"Unknown or pending verification">]>;
6926
- id: z.ZodLiteral<import("../entity").LocationAccuracy.NOT_DETERMINED>;
6927
- }, z.core.$strip>]>>>;
6731
+ accuracy: z.ZodOptional<z.ZodArray<z.ZodObject<{
6732
+ identifier: z.ZodString;
6733
+ id: z.ZodEnum<{
6734
+ location_accuracy_a: import("../entity").LocationAccuracy.A;
6735
+ location_accuracy_b: import("../entity").LocationAccuracy.B;
6736
+ location_accuracy_c: import("../entity").LocationAccuracy.C;
6737
+ location_accuracy_not_determined: import("../entity").LocationAccuracy.NOT_DETERMINED;
6738
+ }>;
6739
+ }, z.core.$strip>>>;
6928
6740
  source: z.ZodOptional<z.ZodString>;
6929
6741
  }, z.core.$strip>>>;
6930
6742
  country: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -7119,19 +6931,15 @@ export declare const signalAPISchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
7119
6931
  lng: z.ZodNumber;
7120
6932
  }, z.core.$strip>>;
7121
6933
  override: z.ZodOptional<z.ZodBoolean>;
7122
- accuracy: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
7123
- identifier: z.ZodLiteral<"A - Exact lat/lon or address hit">;
7124
- id: z.ZodLiteral<import("../entity").LocationAccuracy.A>;
7125
- }, z.core.$strip>, z.ZodObject<{
7126
- identifier: z.ZodLiteral<"B - Exact POI known / Approximate / near known point">;
7127
- id: z.ZodLiteral<import("../entity").LocationAccuracy.B>;
7128
- }, z.core.$strip>, z.ZodObject<{
7129
- identifier: z.ZodLiteral<"C - County or town centroid">;
7130
- id: z.ZodLiteral<import("../entity").LocationAccuracy.C>;
7131
- }, z.core.$strip>, z.ZodObject<{
7132
- identifier: z.ZodUnion<[z.ZodLiteral<"Not Yet Determined">, z.ZodLiteral<"Unknown or pending verification">]>;
7133
- id: z.ZodLiteral<import("../entity").LocationAccuracy.NOT_DETERMINED>;
7134
- }, z.core.$strip>]>>>;
6934
+ accuracy: z.ZodOptional<z.ZodArray<z.ZodObject<{
6935
+ identifier: z.ZodString;
6936
+ id: z.ZodEnum<{
6937
+ location_accuracy_a: import("../entity").LocationAccuracy.A;
6938
+ location_accuracy_b: import("../entity").LocationAccuracy.B;
6939
+ location_accuracy_c: import("../entity").LocationAccuracy.C;
6940
+ location_accuracy_not_determined: import("../entity").LocationAccuracy.NOT_DETERMINED;
6941
+ }>;
6942
+ }, z.core.$strip>>>;
7135
6943
  source: z.ZodOptional<z.ZodString>;
7136
6944
  }, z.core.$strip>>>;
7137
6945
  country: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -7327,19 +7135,15 @@ export declare const signalAPIUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodObjec
7327
7135
  lng: z.ZodNumber;
7328
7136
  }, z.core.$strip>>;
7329
7137
  override: z.ZodOptional<z.ZodBoolean>;
7330
- accuracy: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
7331
- identifier: z.ZodLiteral<"A - Exact lat/lon or address hit">;
7332
- id: z.ZodLiteral<import("../entity").LocationAccuracy.A>;
7333
- }, z.core.$strip>, z.ZodObject<{
7334
- identifier: z.ZodLiteral<"B - Exact POI known / Approximate / near known point">;
7335
- id: z.ZodLiteral<import("../entity").LocationAccuracy.B>;
7336
- }, z.core.$strip>, z.ZodObject<{
7337
- identifier: z.ZodLiteral<"C - County or town centroid">;
7338
- id: z.ZodLiteral<import("../entity").LocationAccuracy.C>;
7339
- }, z.core.$strip>, z.ZodObject<{
7340
- identifier: z.ZodUnion<[z.ZodLiteral<"Not Yet Determined">, z.ZodLiteral<"Unknown or pending verification">]>;
7341
- id: z.ZodLiteral<import("../entity").LocationAccuracy.NOT_DETERMINED>;
7342
- }, z.core.$strip>]>>>;
7138
+ accuracy: z.ZodOptional<z.ZodArray<z.ZodObject<{
7139
+ identifier: z.ZodString;
7140
+ id: z.ZodEnum<{
7141
+ location_accuracy_a: import("../entity").LocationAccuracy.A;
7142
+ location_accuracy_b: import("../entity").LocationAccuracy.B;
7143
+ location_accuracy_c: import("../entity").LocationAccuracy.C;
7144
+ location_accuracy_not_determined: import("../entity").LocationAccuracy.NOT_DETERMINED;
7145
+ }>;
7146
+ }, z.core.$strip>>>;
7343
7147
  source: z.ZodOptional<z.ZodString>;
7344
7148
  }, z.core.$strip>>>;
7345
7149
  country: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -7526,19 +7330,15 @@ export declare const signalAPIUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodObjec
7526
7330
  lng: z.ZodNumber;
7527
7331
  }, z.core.$strip>>;
7528
7332
  override: z.ZodOptional<z.ZodBoolean>;
7529
- accuracy: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
7530
- identifier: z.ZodLiteral<"A - Exact lat/lon or address hit">;
7531
- id: z.ZodLiteral<import("../entity").LocationAccuracy.A>;
7532
- }, z.core.$strip>, z.ZodObject<{
7533
- identifier: z.ZodLiteral<"B - Exact POI known / Approximate / near known point">;
7534
- id: z.ZodLiteral<import("../entity").LocationAccuracy.B>;
7535
- }, z.core.$strip>, z.ZodObject<{
7536
- identifier: z.ZodLiteral<"C - County or town centroid">;
7537
- id: z.ZodLiteral<import("../entity").LocationAccuracy.C>;
7538
- }, z.core.$strip>, z.ZodObject<{
7539
- identifier: z.ZodUnion<[z.ZodLiteral<"Not Yet Determined">, z.ZodLiteral<"Unknown or pending verification">]>;
7540
- id: z.ZodLiteral<import("../entity").LocationAccuracy.NOT_DETERMINED>;
7541
- }, z.core.$strip>]>>>;
7333
+ accuracy: z.ZodOptional<z.ZodArray<z.ZodObject<{
7334
+ identifier: z.ZodString;
7335
+ id: z.ZodEnum<{
7336
+ location_accuracy_a: import("../entity").LocationAccuracy.A;
7337
+ location_accuracy_b: import("../entity").LocationAccuracy.B;
7338
+ location_accuracy_c: import("../entity").LocationAccuracy.C;
7339
+ location_accuracy_not_determined: import("../entity").LocationAccuracy.NOT_DETERMINED;
7340
+ }>;
7341
+ }, z.core.$strip>>>;
7542
7342
  source: z.ZodOptional<z.ZodString>;
7543
7343
  }, z.core.$strip>>>;
7544
7344
  country: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -7717,19 +7517,15 @@ export declare const signalAPIUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodObjec
7717
7517
  lng: z.ZodNumber;
7718
7518
  }, z.core.$strip>>;
7719
7519
  override: z.ZodOptional<z.ZodBoolean>;
7720
- accuracy: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
7721
- identifier: z.ZodLiteral<"A - Exact lat/lon or address hit">;
7722
- id: z.ZodLiteral<import("../entity").LocationAccuracy.A>;
7723
- }, z.core.$strip>, z.ZodObject<{
7724
- identifier: z.ZodLiteral<"B - Exact POI known / Approximate / near known point">;
7725
- id: z.ZodLiteral<import("../entity").LocationAccuracy.B>;
7726
- }, z.core.$strip>, z.ZodObject<{
7727
- identifier: z.ZodLiteral<"C - County or town centroid">;
7728
- id: z.ZodLiteral<import("../entity").LocationAccuracy.C>;
7729
- }, z.core.$strip>, z.ZodObject<{
7730
- identifier: z.ZodUnion<[z.ZodLiteral<"Not Yet Determined">, z.ZodLiteral<"Unknown or pending verification">]>;
7731
- id: z.ZodLiteral<import("../entity").LocationAccuracy.NOT_DETERMINED>;
7732
- }, z.core.$strip>]>>>;
7520
+ accuracy: z.ZodOptional<z.ZodArray<z.ZodObject<{
7521
+ identifier: z.ZodString;
7522
+ id: z.ZodEnum<{
7523
+ location_accuracy_a: import("../entity").LocationAccuracy.A;
7524
+ location_accuracy_b: import("../entity").LocationAccuracy.B;
7525
+ location_accuracy_c: import("../entity").LocationAccuracy.C;
7526
+ location_accuracy_not_determined: import("../entity").LocationAccuracy.NOT_DETERMINED;
7527
+ }>;
7528
+ }, z.core.$strip>>>;
7733
7529
  source: z.ZodOptional<z.ZodString>;
7734
7530
  }, z.core.$strip>>>;
7735
7531
  country: z.ZodOptional<z.ZodArray<z.ZodObject<{