@new-project-media/client-frontends-shared-types 3.24.3 → 3.25.1
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.
- package/package.json +1 -1
- package/src/lib/cognito.d.ts +8 -1
- package/src/lib/cognito.js +7 -0
- package/src/lib/cognito.js.map +1 -1
- package/src/lib/dataGrid/api/signals/index.d.ts +2 -2
- package/src/lib/dataGrid/api/signals/index.js +6 -1
- package/src/lib/dataGrid/api/signals/index.js.map +1 -1
- package/src/lib/dataGrid/api/signals/v1.d.ts +3045 -677
- package/src/lib/dataGrid/api/signals/v1.js +120 -5
- package/src/lib/dataGrid/api/signals/v1.js.map +1 -1
|
@@ -632,9 +632,197 @@ export declare const globalSignalFullSchemaV1: z.ZodObject<{
|
|
|
632
632
|
status: z.ZodEnum<typeof PublishStatus>;
|
|
633
633
|
totalMw: z.ZodOptional<z.ZodNumber>;
|
|
634
634
|
}, z.core.$strict>;
|
|
635
|
+
export declare const apacSignalFullSchemaV1: z.ZodObject<{
|
|
636
|
+
id: z.ZodString;
|
|
637
|
+
schema: z.ZodLiteral<"apac_signal">;
|
|
638
|
+
recordStatus: z.ZodString;
|
|
639
|
+
allSectors: z.ZodOptional<z.ZodString>;
|
|
640
|
+
commercialOperationDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
641
|
+
country: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
642
|
+
identifier: z.ZodString;
|
|
643
|
+
id: z.ZodString;
|
|
644
|
+
}, z.core.$strip>>>;
|
|
645
|
+
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
646
|
+
filename: z.ZodString;
|
|
647
|
+
created: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
648
|
+
document_id: z.ZodString;
|
|
649
|
+
mimetype: z.ZodString;
|
|
650
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
651
|
+
type: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
652
|
+
key: z.ZodOptional<z.ZodString>;
|
|
653
|
+
userName: z.ZodOptional<z.ZodString>;
|
|
654
|
+
url: z.ZodOptional<z.ZodString>;
|
|
655
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
656
|
+
file: z.ZodOptional<z.ZodString>;
|
|
657
|
+
url: z.ZodString;
|
|
658
|
+
created: z.ZodOptional<z.ZodString>;
|
|
659
|
+
type: z.ZodArray<z.ZodString>;
|
|
660
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
661
|
+
documentDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
662
|
+
source: z.ZodOptional<z.ZodString>;
|
|
663
|
+
id: z.ZodOptional<z.ZodString>;
|
|
664
|
+
}, z.core.$strip>]>>>;
|
|
665
|
+
facilityAddress: z.ZodOptional<z.ZodObject<{
|
|
666
|
+
full: z.ZodOptional<z.ZodString>;
|
|
667
|
+
city: z.ZodOptional<z.ZodString>;
|
|
668
|
+
state: z.ZodOptional<z.ZodString>;
|
|
669
|
+
street: z.ZodOptional<z.ZodString>;
|
|
670
|
+
street2: z.ZodOptional<z.ZodString>;
|
|
671
|
+
zip: z.ZodOptional<z.ZodString>;
|
|
672
|
+
country: z.ZodOptional<z.ZodString>;
|
|
673
|
+
latitude: z.ZodOptional<z.ZodNumber>;
|
|
674
|
+
longitude: z.ZodOptional<z.ZodNumber>;
|
|
675
|
+
}, z.core.$strip>>;
|
|
676
|
+
facilityName: z.ZodOptional<z.ZodString>;
|
|
677
|
+
filingDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
678
|
+
geo: z.ZodObject<{
|
|
679
|
+
default: z.ZodOptional<z.ZodObject<{
|
|
680
|
+
lat: z.ZodNumber;
|
|
681
|
+
lon: z.ZodNumber;
|
|
682
|
+
}, z.core.$strip>>;
|
|
683
|
+
defaultValue: z.ZodOptional<z.ZodString>;
|
|
684
|
+
location: z.ZodOptional<z.ZodObject<{
|
|
685
|
+
lat: z.ZodNumber;
|
|
686
|
+
lon: z.ZodNumber;
|
|
687
|
+
}, z.core.$strip>>;
|
|
688
|
+
facility: z.ZodOptional<z.ZodObject<{
|
|
689
|
+
lat: z.ZodNumber;
|
|
690
|
+
lon: z.ZodNumber;
|
|
691
|
+
}, z.core.$strip>>;
|
|
692
|
+
county: z.ZodOptional<z.ZodObject<{
|
|
693
|
+
lat: z.ZodNumber;
|
|
694
|
+
lon: z.ZodNumber;
|
|
695
|
+
}, z.core.$strip>>;
|
|
696
|
+
}, z.core.$strip>;
|
|
697
|
+
headline: z.ZodString;
|
|
698
|
+
keyPeople: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
699
|
+
id: z.ZodOptional<z.ZodString>;
|
|
700
|
+
identifier: z.ZodOptional<z.ZodString>;
|
|
701
|
+
linkedinUrl: z.ZodOptional<z.ZodString>;
|
|
702
|
+
role: z.ZodOptional<z.ZodString>;
|
|
703
|
+
fullName: z.ZodOptional<z.ZodString>;
|
|
704
|
+
email: z.ZodOptional<z.ZodString>;
|
|
705
|
+
phone: z.ZodOptional<z.ZodString>;
|
|
706
|
+
source: z.ZodOptional<z.ZodString>;
|
|
707
|
+
}, z.core.$strip>>>;
|
|
708
|
+
mw: z.ZodOptional<z.ZodNumber>;
|
|
709
|
+
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
710
|
+
identifier: z.ZodString;
|
|
711
|
+
id: z.ZodString;
|
|
712
|
+
role: z.ZodString;
|
|
713
|
+
ref: z.ZodOptional<z.ZodString>;
|
|
714
|
+
}, z.core.$strip>>>;
|
|
715
|
+
publishedDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
716
|
+
subType: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
717
|
+
identifier: z.ZodString;
|
|
718
|
+
id: z.ZodString;
|
|
719
|
+
}, z.core.$strip>>>;
|
|
720
|
+
totals: z.ZodOptional<z.ZodObject<{
|
|
721
|
+
projects: z.ZodOptional<z.ZodNumber>;
|
|
722
|
+
keyPeople: z.ZodOptional<z.ZodNumber>;
|
|
723
|
+
documents: z.ZodOptional<z.ZodNumber>;
|
|
724
|
+
organizations: z.ZodOptional<z.ZodNumber>;
|
|
725
|
+
queueApplications: z.ZodOptional<z.ZodNumber>;
|
|
726
|
+
intels: z.ZodOptional<z.ZodNumber>;
|
|
727
|
+
signals: z.ZodOptional<z.ZodNumber>;
|
|
728
|
+
developer: z.ZodOptional<z.ZodNumber>;
|
|
729
|
+
developers: z.ZodOptional<z.ZodNumber>;
|
|
730
|
+
utility: z.ZodOptional<z.ZodNumber>;
|
|
731
|
+
offtaker: z.ZodOptional<z.ZodNumber>;
|
|
732
|
+
epc: z.ZodOptional<z.ZodNumber>;
|
|
733
|
+
puc: z.ZodOptional<z.ZodNumber>;
|
|
734
|
+
}, z.core.$strip>>;
|
|
735
|
+
type: z.ZodOptional<z.ZodObject<{
|
|
736
|
+
identifier: z.ZodString;
|
|
737
|
+
id: z.ZodString;
|
|
738
|
+
}, z.core.$strip>>;
|
|
739
|
+
$organizations: z.ZodOptional<z.ZodString>;
|
|
740
|
+
audiences: z.ZodArray<z.ZodObject<{
|
|
741
|
+
identifier: z.ZodString;
|
|
742
|
+
id: z.ZodString;
|
|
743
|
+
}, z.core.$strip>>;
|
|
744
|
+
body: z.ZodOptional<z.ZodString>;
|
|
745
|
+
location: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
746
|
+
identifier: z.ZodString;
|
|
747
|
+
id: z.ZodString;
|
|
748
|
+
isApproximate: z.ZodOptional<z.ZodBoolean>;
|
|
749
|
+
components: z.ZodOptional<z.ZodObject<{
|
|
750
|
+
'ISO_3166-1_alpha-2': z.ZodOptional<z.ZodString>;
|
|
751
|
+
'ISO_3166-1_alpha-3': z.ZodOptional<z.ZodString>;
|
|
752
|
+
'ISO_3166-2': z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
753
|
+
_category: z.ZodOptional<z.ZodString>;
|
|
754
|
+
_normalized_city: z.ZodOptional<z.ZodString>;
|
|
755
|
+
_type: z.ZodString;
|
|
756
|
+
city: z.ZodOptional<z.ZodString>;
|
|
757
|
+
continent: z.ZodOptional<z.ZodString>;
|
|
758
|
+
country: z.ZodOptional<z.ZodString>;
|
|
759
|
+
country_code: z.ZodOptional<z.ZodString>;
|
|
760
|
+
state_code: z.ZodOptional<z.ZodString>;
|
|
761
|
+
county: z.ZodOptional<z.ZodString>;
|
|
762
|
+
municipality: z.ZodOptional<z.ZodString>;
|
|
763
|
+
political_union: z.ZodOptional<z.ZodString>;
|
|
764
|
+
state: z.ZodOptional<z.ZodString>;
|
|
765
|
+
state_district: z.ZodOptional<z.ZodString>;
|
|
766
|
+
}, z.core.$strip>>;
|
|
767
|
+
geometry: z.ZodOptional<z.ZodObject<{
|
|
768
|
+
lat: z.ZodNumber;
|
|
769
|
+
lng: z.ZodNumber;
|
|
770
|
+
}, z.core.$strip>>;
|
|
771
|
+
override: z.ZodOptional<z.ZodBoolean>;
|
|
772
|
+
accuracy: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
773
|
+
identifier: z.ZodString;
|
|
774
|
+
id: z.ZodEnum<{
|
|
775
|
+
location_accuracy_a: import("../entity").LocationAccuracy.A;
|
|
776
|
+
location_accuracy_b: import("../entity").LocationAccuracy.B;
|
|
777
|
+
location_accuracy_c: import("../entity").LocationAccuracy.C;
|
|
778
|
+
location_accuracy_not_determined: import("../entity").LocationAccuracy.NOT_DETERMINED;
|
|
779
|
+
}>;
|
|
780
|
+
}, z.core.$strip>>>;
|
|
781
|
+
source: z.ZodOptional<z.ZodString>;
|
|
782
|
+
}, z.core.$strip>>>;
|
|
783
|
+
projectPipeline: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
784
|
+
identifier: z.ZodString;
|
|
785
|
+
id: z.ZodString;
|
|
786
|
+
}, z.core.$strip>>>;
|
|
787
|
+
queueApplications: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
788
|
+
queueKey: z.ZodOptional<z.ZodString>;
|
|
789
|
+
applicationId: z.ZodOptional<z.ZodString>;
|
|
790
|
+
queueDataset: z.ZodOptional<z.ZodString>;
|
|
791
|
+
id: z.ZodString;
|
|
792
|
+
identifier: z.ZodString;
|
|
793
|
+
}, z.core.$strip>>>;
|
|
794
|
+
sectors: z.ZodArray<z.ZodObject<{
|
|
795
|
+
identifier: z.ZodString;
|
|
796
|
+
id: z.ZodString;
|
|
797
|
+
}, z.core.$strip>>;
|
|
798
|
+
created: z.ZodString;
|
|
799
|
+
updated: z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>;
|
|
800
|
+
dataCenters: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
801
|
+
identifier: z.ZodString;
|
|
802
|
+
id: z.ZodString;
|
|
803
|
+
}, z.core.$strip>>>;
|
|
804
|
+
meta: z.ZodOptional<z.ZodObject<{
|
|
805
|
+
pk: z.ZodString;
|
|
806
|
+
sk: z.ZodString;
|
|
807
|
+
entity_type: z.ZodOptional<z.ZodString>;
|
|
808
|
+
showOnMap: z.ZodOptional<z.ZodBoolean>;
|
|
809
|
+
computedList: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
810
|
+
}, z.core.$strip>>;
|
|
811
|
+
queueDatasets: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
812
|
+
identifier: z.ZodString;
|
|
813
|
+
id: z.ZodString;
|
|
814
|
+
}, z.core.$strip>>>;
|
|
815
|
+
regions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
816
|
+
identifier: z.ZodString;
|
|
817
|
+
id: z.ZodString;
|
|
818
|
+
}, z.core.$strip>>>;
|
|
819
|
+
status: z.ZodEnum<typeof PublishStatus>;
|
|
820
|
+
totalMw: z.ZodOptional<z.ZodNumber>;
|
|
821
|
+
}, z.core.$strict>;
|
|
635
822
|
export type EUSignalFullTypeV1 = z.infer<typeof euSignalFullSchemaV1>;
|
|
636
823
|
export type USSignalFullTypeV1 = z.infer<typeof usSignalFullSchemaV1>;
|
|
637
824
|
export type GlobalSignalFullTypeV1 = z.infer<typeof globalSignalFullSchemaV1>;
|
|
825
|
+
export type APACSignalFullTypeV1 = z.infer<typeof apacSignalFullSchemaV1>;
|
|
638
826
|
export declare const euSignalListSchemaV1: z.ZodObject<{
|
|
639
827
|
type: z.ZodOptional<z.ZodObject<{
|
|
640
828
|
identifier: z.ZodString;
|
|
@@ -1052,7 +1240,7 @@ export declare const globalSignalListSchemaV1: z.ZodObject<{
|
|
|
1052
1240
|
defaultValue: z.ZodOptional<z.ZodString>;
|
|
1053
1241
|
}, z.core.$strip>>;
|
|
1054
1242
|
}, z.core.$strict>;
|
|
1055
|
-
export declare const
|
|
1243
|
+
export declare const apacSignalListSchemaV1: z.ZodObject<{
|
|
1056
1244
|
type: z.ZodOptional<z.ZodObject<{
|
|
1057
1245
|
identifier: z.ZodString;
|
|
1058
1246
|
id: z.ZodString;
|
|
@@ -1141,7 +1329,7 @@ export declare const euSignalListWithSortSchemaV1: z.ZodObject<{
|
|
|
1141
1329
|
ref: z.ZodOptional<z.ZodString>;
|
|
1142
1330
|
}, z.core.$strip>>>;
|
|
1143
1331
|
headline: z.ZodString;
|
|
1144
|
-
schema: z.ZodLiteral<"
|
|
1332
|
+
schema: z.ZodLiteral<"apac_signal">;
|
|
1145
1333
|
allSectors: z.ZodOptional<z.ZodString>;
|
|
1146
1334
|
commercialOperationDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1147
1335
|
facilityAddress: z.ZodOptional<z.ZodObject<{
|
|
@@ -1182,9 +1370,8 @@ export declare const euSignalListWithSortSchemaV1: z.ZodObject<{
|
|
|
1182
1370
|
}, z.core.$strip>>;
|
|
1183
1371
|
defaultValue: z.ZodOptional<z.ZodString>;
|
|
1184
1372
|
}, z.core.$strip>>;
|
|
1185
|
-
sort: z.ZodTuple<[z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>, z.ZodNumber], null>;
|
|
1186
1373
|
}, z.core.$strict>;
|
|
1187
|
-
export declare const
|
|
1374
|
+
export declare const euSignalListWithSortSchemaV1: z.ZodObject<{
|
|
1188
1375
|
type: z.ZodOptional<z.ZodObject<{
|
|
1189
1376
|
identifier: z.ZodString;
|
|
1190
1377
|
id: z.ZodString;
|
|
@@ -1193,14 +1380,6 @@ export declare const usSignalListWithSortSchemaV1: z.ZodObject<{
|
|
|
1193
1380
|
identifier: z.ZodString;
|
|
1194
1381
|
id: z.ZodString;
|
|
1195
1382
|
}, z.core.$strip>>>;
|
|
1196
|
-
state: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1197
|
-
identifier: z.ZodString;
|
|
1198
|
-
id: z.ZodString;
|
|
1199
|
-
}, z.core.$strip>>>;
|
|
1200
|
-
county: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1201
|
-
identifier: z.ZodString;
|
|
1202
|
-
id: z.ZodString;
|
|
1203
|
-
}, z.core.$strip>>>;
|
|
1204
1383
|
keyPeople: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1205
1384
|
id: z.ZodOptional<z.ZodString>;
|
|
1206
1385
|
identifier: z.ZodOptional<z.ZodString>;
|
|
@@ -1254,10 +1433,6 @@ export declare const usSignalListWithSortSchemaV1: z.ZodObject<{
|
|
|
1254
1433
|
identifier: z.ZodString;
|
|
1255
1434
|
id: z.ZodString;
|
|
1256
1435
|
}, z.core.$strip>>>;
|
|
1257
|
-
projects: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1258
|
-
identifier: z.ZodString;
|
|
1259
|
-
id: z.ZodString;
|
|
1260
|
-
}, z.core.$strip>>>;
|
|
1261
1436
|
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
1262
1437
|
filename: z.ZodString;
|
|
1263
1438
|
created: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -1285,7 +1460,7 @@ export declare const usSignalListWithSortSchemaV1: z.ZodObject<{
|
|
|
1285
1460
|
ref: z.ZodOptional<z.ZodString>;
|
|
1286
1461
|
}, z.core.$strip>>>;
|
|
1287
1462
|
headline: z.ZodString;
|
|
1288
|
-
schema: z.ZodLiteral<"
|
|
1463
|
+
schema: z.ZodLiteral<"eu_signal">;
|
|
1289
1464
|
allSectors: z.ZodOptional<z.ZodString>;
|
|
1290
1465
|
commercialOperationDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1291
1466
|
facilityAddress: z.ZodOptional<z.ZodObject<{
|
|
@@ -1328,7 +1503,7 @@ export declare const usSignalListWithSortSchemaV1: z.ZodObject<{
|
|
|
1328
1503
|
}, z.core.$strip>>;
|
|
1329
1504
|
sort: z.ZodTuple<[z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>, z.ZodNumber], null>;
|
|
1330
1505
|
}, z.core.$strict>;
|
|
1331
|
-
export declare const
|
|
1506
|
+
export declare const usSignalListWithSortSchemaV1: z.ZodObject<{
|
|
1332
1507
|
type: z.ZodOptional<z.ZodObject<{
|
|
1333
1508
|
identifier: z.ZodString;
|
|
1334
1509
|
id: z.ZodString;
|
|
@@ -1429,7 +1604,7 @@ export declare const globalSignalListWithSortSchemaV1: z.ZodObject<{
|
|
|
1429
1604
|
ref: z.ZodOptional<z.ZodString>;
|
|
1430
1605
|
}, z.core.$strip>>>;
|
|
1431
1606
|
headline: z.ZodString;
|
|
1432
|
-
schema: z.ZodLiteral<"
|
|
1607
|
+
schema: z.ZodLiteral<"us_signal">;
|
|
1433
1608
|
allSectors: z.ZodOptional<z.ZodString>;
|
|
1434
1609
|
commercialOperationDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1435
1610
|
facilityAddress: z.ZodOptional<z.ZodObject<{
|
|
@@ -1472,7 +1647,7 @@ export declare const globalSignalListWithSortSchemaV1: z.ZodObject<{
|
|
|
1472
1647
|
}, z.core.$strip>>;
|
|
1473
1648
|
sort: z.ZodTuple<[z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>, z.ZodNumber], null>;
|
|
1474
1649
|
}, z.core.$strict>;
|
|
1475
|
-
export declare const
|
|
1650
|
+
export declare const globalSignalListWithSortSchemaV1: z.ZodObject<{
|
|
1476
1651
|
type: z.ZodOptional<z.ZodObject<{
|
|
1477
1652
|
identifier: z.ZodString;
|
|
1478
1653
|
id: z.ZodString;
|
|
@@ -1481,6 +1656,14 @@ export declare const signalListSchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
1481
1656
|
identifier: z.ZodString;
|
|
1482
1657
|
id: z.ZodString;
|
|
1483
1658
|
}, z.core.$strip>>>;
|
|
1659
|
+
state: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1660
|
+
identifier: z.ZodString;
|
|
1661
|
+
id: z.ZodString;
|
|
1662
|
+
}, z.core.$strip>>>;
|
|
1663
|
+
county: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1664
|
+
identifier: z.ZodString;
|
|
1665
|
+
id: z.ZodString;
|
|
1666
|
+
}, z.core.$strip>>>;
|
|
1484
1667
|
keyPeople: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1485
1668
|
id: z.ZodOptional<z.ZodString>;
|
|
1486
1669
|
identifier: z.ZodOptional<z.ZodString>;
|
|
@@ -1534,6 +1717,10 @@ export declare const signalListSchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
1534
1717
|
identifier: z.ZodString;
|
|
1535
1718
|
id: z.ZodString;
|
|
1536
1719
|
}, z.core.$strip>>>;
|
|
1720
|
+
projects: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1721
|
+
identifier: z.ZodString;
|
|
1722
|
+
id: z.ZodString;
|
|
1723
|
+
}, z.core.$strip>>>;
|
|
1537
1724
|
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
1538
1725
|
filename: z.ZodString;
|
|
1539
1726
|
created: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -1561,7 +1748,7 @@ export declare const signalListSchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
1561
1748
|
ref: z.ZodOptional<z.ZodString>;
|
|
1562
1749
|
}, z.core.$strip>>>;
|
|
1563
1750
|
headline: z.ZodString;
|
|
1564
|
-
schema: z.ZodLiteral<"
|
|
1751
|
+
schema: z.ZodLiteral<"global_signal">;
|
|
1565
1752
|
allSectors: z.ZodOptional<z.ZodString>;
|
|
1566
1753
|
commercialOperationDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1567
1754
|
facilityAddress: z.ZodOptional<z.ZodObject<{
|
|
@@ -1603,7 +1790,8 @@ export declare const signalListSchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
1603
1790
|
defaultValue: z.ZodOptional<z.ZodString>;
|
|
1604
1791
|
}, z.core.$strip>>;
|
|
1605
1792
|
sort: z.ZodTuple<[z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>, z.ZodNumber], null>;
|
|
1606
|
-
}, z.core.$strict
|
|
1793
|
+
}, z.core.$strict>;
|
|
1794
|
+
export declare const apacSignalListWithSortSchemaV1: z.ZodObject<{
|
|
1607
1795
|
type: z.ZodOptional<z.ZodObject<{
|
|
1608
1796
|
identifier: z.ZodString;
|
|
1609
1797
|
id: z.ZodString;
|
|
@@ -1612,14 +1800,6 @@ export declare const signalListSchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
1612
1800
|
identifier: z.ZodString;
|
|
1613
1801
|
id: z.ZodString;
|
|
1614
1802
|
}, z.core.$strip>>>;
|
|
1615
|
-
state: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1616
|
-
identifier: z.ZodString;
|
|
1617
|
-
id: z.ZodString;
|
|
1618
|
-
}, z.core.$strip>>>;
|
|
1619
|
-
county: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1620
|
-
identifier: z.ZodString;
|
|
1621
|
-
id: z.ZodString;
|
|
1622
|
-
}, z.core.$strip>>>;
|
|
1623
1803
|
keyPeople: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1624
1804
|
id: z.ZodOptional<z.ZodString>;
|
|
1625
1805
|
identifier: z.ZodOptional<z.ZodString>;
|
|
@@ -1673,10 +1853,6 @@ export declare const signalListSchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
1673
1853
|
identifier: z.ZodString;
|
|
1674
1854
|
id: z.ZodString;
|
|
1675
1855
|
}, z.core.$strip>>>;
|
|
1676
|
-
projects: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1677
|
-
identifier: z.ZodString;
|
|
1678
|
-
id: z.ZodString;
|
|
1679
|
-
}, z.core.$strip>>>;
|
|
1680
1856
|
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
1681
1857
|
filename: z.ZodString;
|
|
1682
1858
|
created: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -1704,7 +1880,7 @@ export declare const signalListSchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
1704
1880
|
ref: z.ZodOptional<z.ZodString>;
|
|
1705
1881
|
}, z.core.$strip>>>;
|
|
1706
1882
|
headline: z.ZodString;
|
|
1707
|
-
schema: z.ZodLiteral<"
|
|
1883
|
+
schema: z.ZodLiteral<"apac_signal">;
|
|
1708
1884
|
allSectors: z.ZodOptional<z.ZodString>;
|
|
1709
1885
|
commercialOperationDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1710
1886
|
facilityAddress: z.ZodOptional<z.ZodObject<{
|
|
@@ -1746,7 +1922,8 @@ export declare const signalListSchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
1746
1922
|
defaultValue: z.ZodOptional<z.ZodString>;
|
|
1747
1923
|
}, z.core.$strip>>;
|
|
1748
1924
|
sort: z.ZodTuple<[z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>, z.ZodNumber], null>;
|
|
1749
|
-
}, z.core.$strict
|
|
1925
|
+
}, z.core.$strict>;
|
|
1926
|
+
export declare const signalListSchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
1750
1927
|
type: z.ZodOptional<z.ZodObject<{
|
|
1751
1928
|
identifier: z.ZodString;
|
|
1752
1929
|
id: z.ZodString;
|
|
@@ -1755,14 +1932,6 @@ export declare const signalListSchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
1755
1932
|
identifier: z.ZodString;
|
|
1756
1933
|
id: z.ZodString;
|
|
1757
1934
|
}, z.core.$strip>>>;
|
|
1758
|
-
state: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1759
|
-
identifier: z.ZodString;
|
|
1760
|
-
id: z.ZodString;
|
|
1761
|
-
}, z.core.$strip>>>;
|
|
1762
|
-
county: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1763
|
-
identifier: z.ZodString;
|
|
1764
|
-
id: z.ZodString;
|
|
1765
|
-
}, z.core.$strip>>>;
|
|
1766
1935
|
keyPeople: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1767
1936
|
id: z.ZodOptional<z.ZodString>;
|
|
1768
1937
|
identifier: z.ZodOptional<z.ZodString>;
|
|
@@ -1816,10 +1985,6 @@ export declare const signalListSchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
1816
1985
|
identifier: z.ZodString;
|
|
1817
1986
|
id: z.ZodString;
|
|
1818
1987
|
}, z.core.$strip>>>;
|
|
1819
|
-
projects: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1820
|
-
identifier: z.ZodString;
|
|
1821
|
-
id: z.ZodString;
|
|
1822
|
-
}, z.core.$strip>>>;
|
|
1823
1988
|
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
1824
1989
|
filename: z.ZodString;
|
|
1825
1990
|
created: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -1847,7 +2012,7 @@ export declare const signalListSchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
1847
2012
|
ref: z.ZodOptional<z.ZodString>;
|
|
1848
2013
|
}, z.core.$strip>>>;
|
|
1849
2014
|
headline: z.ZodString;
|
|
1850
|
-
schema: z.ZodLiteral<"
|
|
2015
|
+
schema: z.ZodLiteral<"eu_signal">;
|
|
1851
2016
|
allSectors: z.ZodOptional<z.ZodString>;
|
|
1852
2017
|
commercialOperationDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1853
2018
|
facilityAddress: z.ZodOptional<z.ZodObject<{
|
|
@@ -1889,8 +2054,7 @@ export declare const signalListSchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
1889
2054
|
defaultValue: z.ZodOptional<z.ZodString>;
|
|
1890
2055
|
}, z.core.$strip>>;
|
|
1891
2056
|
sort: z.ZodTuple<[z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>, z.ZodNumber], null>;
|
|
1892
|
-
}, z.core.$strict
|
|
1893
|
-
export declare const signalListUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
2057
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
1894
2058
|
type: z.ZodOptional<z.ZodObject<{
|
|
1895
2059
|
identifier: z.ZodString;
|
|
1896
2060
|
id: z.ZodString;
|
|
@@ -1899,6 +2063,14 @@ export declare const signalListUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
1899
2063
|
identifier: z.ZodString;
|
|
1900
2064
|
id: z.ZodString;
|
|
1901
2065
|
}, z.core.$strip>>>;
|
|
2066
|
+
state: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2067
|
+
identifier: z.ZodString;
|
|
2068
|
+
id: z.ZodString;
|
|
2069
|
+
}, z.core.$strip>>>;
|
|
2070
|
+
county: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2071
|
+
identifier: z.ZodString;
|
|
2072
|
+
id: z.ZodString;
|
|
2073
|
+
}, z.core.$strip>>>;
|
|
1902
2074
|
keyPeople: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1903
2075
|
id: z.ZodOptional<z.ZodString>;
|
|
1904
2076
|
identifier: z.ZodOptional<z.ZodString>;
|
|
@@ -1952,6 +2124,10 @@ export declare const signalListUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
1952
2124
|
identifier: z.ZodString;
|
|
1953
2125
|
id: z.ZodString;
|
|
1954
2126
|
}, z.core.$strip>>>;
|
|
2127
|
+
projects: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2128
|
+
identifier: z.ZodString;
|
|
2129
|
+
id: z.ZodString;
|
|
2130
|
+
}, z.core.$strip>>>;
|
|
1955
2131
|
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
1956
2132
|
filename: z.ZodString;
|
|
1957
2133
|
created: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -1979,7 +2155,7 @@ export declare const signalListUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
1979
2155
|
ref: z.ZodOptional<z.ZodString>;
|
|
1980
2156
|
}, z.core.$strip>>>;
|
|
1981
2157
|
headline: z.ZodString;
|
|
1982
|
-
schema: z.ZodLiteral<"
|
|
2158
|
+
schema: z.ZodLiteral<"us_signal">;
|
|
1983
2159
|
allSectors: z.ZodOptional<z.ZodString>;
|
|
1984
2160
|
commercialOperationDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1985
2161
|
facilityAddress: z.ZodOptional<z.ZodObject<{
|
|
@@ -2021,7 +2197,7 @@ export declare const signalListUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
2021
2197
|
defaultValue: z.ZodOptional<z.ZodString>;
|
|
2022
2198
|
}, z.core.$strip>>;
|
|
2023
2199
|
sort: z.ZodTuple<[z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>, z.ZodNumber], null>;
|
|
2024
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
2200
|
+
}, z.core.$strict>]>, z.ZodObject<{
|
|
2025
2201
|
type: z.ZodOptional<z.ZodObject<{
|
|
2026
2202
|
identifier: z.ZodString;
|
|
2027
2203
|
id: z.ZodString;
|
|
@@ -2122,7 +2298,7 @@ export declare const signalListUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
2122
2298
|
ref: z.ZodOptional<z.ZodString>;
|
|
2123
2299
|
}, z.core.$strip>>>;
|
|
2124
2300
|
headline: z.ZodString;
|
|
2125
|
-
schema: z.ZodLiteral<"
|
|
2301
|
+
schema: z.ZodLiteral<"global_signal">;
|
|
2126
2302
|
allSectors: z.ZodOptional<z.ZodString>;
|
|
2127
2303
|
commercialOperationDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2128
2304
|
facilityAddress: z.ZodOptional<z.ZodObject<{
|
|
@@ -2164,7 +2340,7 @@ export declare const signalListUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
2164
2340
|
defaultValue: z.ZodOptional<z.ZodString>;
|
|
2165
2341
|
}, z.core.$strip>>;
|
|
2166
2342
|
sort: z.ZodTuple<[z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>, z.ZodNumber], null>;
|
|
2167
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
2343
|
+
}, z.core.$strict>]>, z.ZodObject<{
|
|
2168
2344
|
type: z.ZodOptional<z.ZodObject<{
|
|
2169
2345
|
identifier: z.ZodString;
|
|
2170
2346
|
id: z.ZodString;
|
|
@@ -2173,14 +2349,6 @@ export declare const signalListUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
2173
2349
|
identifier: z.ZodString;
|
|
2174
2350
|
id: z.ZodString;
|
|
2175
2351
|
}, z.core.$strip>>>;
|
|
2176
|
-
state: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2177
|
-
identifier: z.ZodString;
|
|
2178
|
-
id: z.ZodString;
|
|
2179
|
-
}, z.core.$strip>>>;
|
|
2180
|
-
county: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2181
|
-
identifier: z.ZodString;
|
|
2182
|
-
id: z.ZodString;
|
|
2183
|
-
}, z.core.$strip>>>;
|
|
2184
2352
|
keyPeople: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2185
2353
|
id: z.ZodOptional<z.ZodString>;
|
|
2186
2354
|
identifier: z.ZodOptional<z.ZodString>;
|
|
@@ -2234,10 +2402,6 @@ export declare const signalListUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
2234
2402
|
identifier: z.ZodString;
|
|
2235
2403
|
id: z.ZodString;
|
|
2236
2404
|
}, z.core.$strip>>>;
|
|
2237
|
-
projects: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2238
|
-
identifier: z.ZodString;
|
|
2239
|
-
id: z.ZodString;
|
|
2240
|
-
}, z.core.$strip>>>;
|
|
2241
2405
|
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
2242
2406
|
filename: z.ZodString;
|
|
2243
2407
|
created: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -2265,7 +2429,7 @@ export declare const signalListUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
2265
2429
|
ref: z.ZodOptional<z.ZodString>;
|
|
2266
2430
|
}, z.core.$strip>>>;
|
|
2267
2431
|
headline: z.ZodString;
|
|
2268
|
-
schema: z.ZodLiteral<"
|
|
2432
|
+
schema: z.ZodLiteral<"apac_signal">;
|
|
2269
2433
|
allSectors: z.ZodOptional<z.ZodString>;
|
|
2270
2434
|
commercialOperationDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2271
2435
|
facilityAddress: z.ZodOptional<z.ZodObject<{
|
|
@@ -2307,8 +2471,8 @@ export declare const signalListUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
2307
2471
|
defaultValue: z.ZodOptional<z.ZodString>;
|
|
2308
2472
|
}, z.core.$strip>>;
|
|
2309
2473
|
sort: z.ZodTuple<[z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>, z.ZodNumber], null>;
|
|
2310
|
-
}, z.core.$strict>]
|
|
2311
|
-
export declare const
|
|
2474
|
+
}, z.core.$strict>]>;
|
|
2475
|
+
export declare const signalListUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
2312
2476
|
type: z.ZodOptional<z.ZodObject<{
|
|
2313
2477
|
identifier: z.ZodString;
|
|
2314
2478
|
id: z.ZodString;
|
|
@@ -2438,6 +2602,7 @@ export declare const signalListBaseUnionSchemaV1: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
2438
2602
|
}, z.core.$strip>>;
|
|
2439
2603
|
defaultValue: z.ZodOptional<z.ZodString>;
|
|
2440
2604
|
}, z.core.$strip>>;
|
|
2605
|
+
sort: z.ZodTuple<[z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>, z.ZodNumber], null>;
|
|
2441
2606
|
}, z.core.$strict>, z.ZodObject<{
|
|
2442
2607
|
type: z.ZodOptional<z.ZodObject<{
|
|
2443
2608
|
identifier: z.ZodString;
|
|
@@ -2580,6 +2745,7 @@ export declare const signalListBaseUnionSchemaV1: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
2580
2745
|
}, z.core.$strip>>;
|
|
2581
2746
|
defaultValue: z.ZodOptional<z.ZodString>;
|
|
2582
2747
|
}, z.core.$strip>>;
|
|
2748
|
+
sort: z.ZodTuple<[z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>, z.ZodNumber], null>;
|
|
2583
2749
|
}, z.core.$strict>, z.ZodObject<{
|
|
2584
2750
|
type: z.ZodOptional<z.ZodObject<{
|
|
2585
2751
|
identifier: z.ZodString;
|
|
@@ -2722,8 +2888,8 @@ export declare const signalListBaseUnionSchemaV1: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
2722
2888
|
}, z.core.$strip>>;
|
|
2723
2889
|
defaultValue: z.ZodOptional<z.ZodString>;
|
|
2724
2890
|
}, z.core.$strip>>;
|
|
2725
|
-
|
|
2726
|
-
|
|
2891
|
+
sort: z.ZodTuple<[z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>, z.ZodNumber], null>;
|
|
2892
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
2727
2893
|
type: z.ZodOptional<z.ZodObject<{
|
|
2728
2894
|
identifier: z.ZodString;
|
|
2729
2895
|
id: z.ZodString;
|
|
@@ -2732,10 +2898,6 @@ export declare const euSignalDetailsSchemaV1: z.ZodObject<{
|
|
|
2732
2898
|
identifier: z.ZodString;
|
|
2733
2899
|
id: z.ZodString;
|
|
2734
2900
|
}, z.core.$strip>>>;
|
|
2735
|
-
sectors: z.ZodArray<z.ZodObject<{
|
|
2736
|
-
identifier: z.ZodString;
|
|
2737
|
-
id: z.ZodString;
|
|
2738
|
-
}, z.core.$strip>>;
|
|
2739
2901
|
keyPeople: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2740
2902
|
id: z.ZodOptional<z.ZodString>;
|
|
2741
2903
|
identifier: z.ZodOptional<z.ZodString>;
|
|
@@ -2815,19 +2977,8 @@ export declare const euSignalDetailsSchemaV1: z.ZodObject<{
|
|
|
2815
2977
|
role: z.ZodString;
|
|
2816
2978
|
ref: z.ZodOptional<z.ZodString>;
|
|
2817
2979
|
}, z.core.$strip>>>;
|
|
2818
|
-
queueApplications: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2819
|
-
queueKey: z.ZodOptional<z.ZodString>;
|
|
2820
|
-
applicationId: z.ZodOptional<z.ZodString>;
|
|
2821
|
-
queueDataset: z.ZodOptional<z.ZodString>;
|
|
2822
|
-
id: z.ZodString;
|
|
2823
|
-
identifier: z.ZodString;
|
|
2824
|
-
}, z.core.$strip>>>;
|
|
2825
|
-
audiences: z.ZodArray<z.ZodObject<{
|
|
2826
|
-
identifier: z.ZodString;
|
|
2827
|
-
id: z.ZodString;
|
|
2828
|
-
}, z.core.$strip>>;
|
|
2829
2980
|
headline: z.ZodString;
|
|
2830
|
-
schema: z.ZodLiteral<"
|
|
2981
|
+
schema: z.ZodLiteral<"apac_signal">;
|
|
2831
2982
|
allSectors: z.ZodOptional<z.ZodString>;
|
|
2832
2983
|
commercialOperationDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2833
2984
|
facilityAddress: z.ZodOptional<z.ZodObject<{
|
|
@@ -2843,25 +2994,6 @@ export declare const euSignalDetailsSchemaV1: z.ZodObject<{
|
|
|
2843
2994
|
}, z.core.$strip>>;
|
|
2844
2995
|
facilityName: z.ZodOptional<z.ZodString>;
|
|
2845
2996
|
filingDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2846
|
-
geo: z.ZodObject<{
|
|
2847
|
-
default: z.ZodOptional<z.ZodObject<{
|
|
2848
|
-
lat: z.ZodNumber;
|
|
2849
|
-
lon: z.ZodNumber;
|
|
2850
|
-
}, z.core.$strip>>;
|
|
2851
|
-
defaultValue: z.ZodOptional<z.ZodString>;
|
|
2852
|
-
location: z.ZodOptional<z.ZodObject<{
|
|
2853
|
-
lat: z.ZodNumber;
|
|
2854
|
-
lon: z.ZodNumber;
|
|
2855
|
-
}, z.core.$strip>>;
|
|
2856
|
-
facility: z.ZodOptional<z.ZodObject<{
|
|
2857
|
-
lat: z.ZodNumber;
|
|
2858
|
-
lon: z.ZodNumber;
|
|
2859
|
-
}, z.core.$strip>>;
|
|
2860
|
-
county: z.ZodOptional<z.ZodObject<{
|
|
2861
|
-
lat: z.ZodNumber;
|
|
2862
|
-
lon: z.ZodNumber;
|
|
2863
|
-
}, z.core.$strip>>;
|
|
2864
|
-
}, z.core.$strip>;
|
|
2865
2997
|
mw: z.ZodOptional<z.ZodNumber>;
|
|
2866
2998
|
publishedDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2867
2999
|
totals: z.ZodOptional<z.ZodObject<{
|
|
@@ -2879,15 +3011,17 @@ export declare const euSignalDetailsSchemaV1: z.ZodObject<{
|
|
|
2879
3011
|
epc: z.ZodOptional<z.ZodNumber>;
|
|
2880
3012
|
puc: z.ZodOptional<z.ZodNumber>;
|
|
2881
3013
|
}, z.core.$strip>>;
|
|
2882
|
-
$organizations: z.ZodOptional<z.ZodString>;
|
|
2883
|
-
body: z.ZodOptional<z.ZodString>;
|
|
2884
|
-
projectPipeline: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2885
|
-
identifier: z.ZodString;
|
|
2886
|
-
id: z.ZodString;
|
|
2887
|
-
}, z.core.$strip>>>;
|
|
2888
3014
|
updated: z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>;
|
|
2889
|
-
|
|
2890
|
-
|
|
3015
|
+
geo: z.ZodOptional<z.ZodObject<{
|
|
3016
|
+
default: z.ZodOptional<z.ZodObject<{
|
|
3017
|
+
lat: z.ZodNumber;
|
|
3018
|
+
lon: z.ZodNumber;
|
|
3019
|
+
}, z.core.$strip>>;
|
|
3020
|
+
defaultValue: z.ZodOptional<z.ZodString>;
|
|
3021
|
+
}, z.core.$strip>>;
|
|
3022
|
+
sort: z.ZodTuple<[z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>, z.ZodNumber], null>;
|
|
3023
|
+
}, z.core.$strict>], "schema">;
|
|
3024
|
+
export declare const signalListBaseUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
2891
3025
|
type: z.ZodOptional<z.ZodObject<{
|
|
2892
3026
|
identifier: z.ZodString;
|
|
2893
3027
|
id: z.ZodString;
|
|
@@ -2896,18 +3030,6 @@ export declare const usSignalDetailsSchemaV1: z.ZodObject<{
|
|
|
2896
3030
|
identifier: z.ZodString;
|
|
2897
3031
|
id: z.ZodString;
|
|
2898
3032
|
}, z.core.$strip>>>;
|
|
2899
|
-
sectors: z.ZodArray<z.ZodObject<{
|
|
2900
|
-
identifier: z.ZodString;
|
|
2901
|
-
id: z.ZodString;
|
|
2902
|
-
}, z.core.$strip>>;
|
|
2903
|
-
state: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2904
|
-
identifier: z.ZodString;
|
|
2905
|
-
id: z.ZodString;
|
|
2906
|
-
}, z.core.$strip>>>;
|
|
2907
|
-
county: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2908
|
-
identifier: z.ZodString;
|
|
2909
|
-
id: z.ZodString;
|
|
2910
|
-
}, z.core.$strip>>>;
|
|
2911
3033
|
keyPeople: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2912
3034
|
id: z.ZodOptional<z.ZodString>;
|
|
2913
3035
|
identifier: z.ZodOptional<z.ZodString>;
|
|
@@ -2961,10 +3083,6 @@ export declare const usSignalDetailsSchemaV1: z.ZodObject<{
|
|
|
2961
3083
|
identifier: z.ZodString;
|
|
2962
3084
|
id: z.ZodString;
|
|
2963
3085
|
}, z.core.$strip>>>;
|
|
2964
|
-
projects: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2965
|
-
identifier: z.ZodString;
|
|
2966
|
-
id: z.ZodString;
|
|
2967
|
-
}, z.core.$strip>>>;
|
|
2968
3086
|
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
2969
3087
|
filename: z.ZodString;
|
|
2970
3088
|
created: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -2991,19 +3109,8 @@ export declare const usSignalDetailsSchemaV1: z.ZodObject<{
|
|
|
2991
3109
|
role: z.ZodString;
|
|
2992
3110
|
ref: z.ZodOptional<z.ZodString>;
|
|
2993
3111
|
}, z.core.$strip>>>;
|
|
2994
|
-
queueApplications: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2995
|
-
queueKey: z.ZodOptional<z.ZodString>;
|
|
2996
|
-
applicationId: z.ZodOptional<z.ZodString>;
|
|
2997
|
-
queueDataset: z.ZodOptional<z.ZodString>;
|
|
2998
|
-
id: z.ZodString;
|
|
2999
|
-
identifier: z.ZodString;
|
|
3000
|
-
}, z.core.$strip>>>;
|
|
3001
|
-
audiences: z.ZodArray<z.ZodObject<{
|
|
3002
|
-
identifier: z.ZodString;
|
|
3003
|
-
id: z.ZodString;
|
|
3004
|
-
}, z.core.$strip>>;
|
|
3005
3112
|
headline: z.ZodString;
|
|
3006
|
-
schema: z.ZodLiteral<"
|
|
3113
|
+
schema: z.ZodLiteral<"eu_signal">;
|
|
3007
3114
|
allSectors: z.ZodOptional<z.ZodString>;
|
|
3008
3115
|
commercialOperationDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3009
3116
|
facilityAddress: z.ZodOptional<z.ZodObject<{
|
|
@@ -3019,25 +3126,6 @@ export declare const usSignalDetailsSchemaV1: z.ZodObject<{
|
|
|
3019
3126
|
}, z.core.$strip>>;
|
|
3020
3127
|
facilityName: z.ZodOptional<z.ZodString>;
|
|
3021
3128
|
filingDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3022
|
-
geo: z.ZodObject<{
|
|
3023
|
-
default: z.ZodOptional<z.ZodObject<{
|
|
3024
|
-
lat: z.ZodNumber;
|
|
3025
|
-
lon: z.ZodNumber;
|
|
3026
|
-
}, z.core.$strip>>;
|
|
3027
|
-
defaultValue: z.ZodOptional<z.ZodString>;
|
|
3028
|
-
location: z.ZodOptional<z.ZodObject<{
|
|
3029
|
-
lat: z.ZodNumber;
|
|
3030
|
-
lon: z.ZodNumber;
|
|
3031
|
-
}, z.core.$strip>>;
|
|
3032
|
-
facility: z.ZodOptional<z.ZodObject<{
|
|
3033
|
-
lat: z.ZodNumber;
|
|
3034
|
-
lon: z.ZodNumber;
|
|
3035
|
-
}, z.core.$strip>>;
|
|
3036
|
-
county: z.ZodOptional<z.ZodObject<{
|
|
3037
|
-
lat: z.ZodNumber;
|
|
3038
|
-
lon: z.ZodNumber;
|
|
3039
|
-
}, z.core.$strip>>;
|
|
3040
|
-
}, z.core.$strip>;
|
|
3041
3129
|
mw: z.ZodOptional<z.ZodNumber>;
|
|
3042
3130
|
publishedDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3043
3131
|
totals: z.ZodOptional<z.ZodObject<{
|
|
@@ -3055,27 +3143,15 @@ export declare const usSignalDetailsSchemaV1: z.ZodObject<{
|
|
|
3055
3143
|
epc: z.ZodOptional<z.ZodNumber>;
|
|
3056
3144
|
puc: z.ZodOptional<z.ZodNumber>;
|
|
3057
3145
|
}, z.core.$strip>>;
|
|
3058
|
-
$organizations: z.ZodOptional<z.ZodString>;
|
|
3059
|
-
body: z.ZodOptional<z.ZodString>;
|
|
3060
|
-
projectPipeline: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3061
|
-
identifier: z.ZodString;
|
|
3062
|
-
id: z.ZodString;
|
|
3063
|
-
}, z.core.$strip>>>;
|
|
3064
3146
|
updated: z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>;
|
|
3065
|
-
|
|
3066
|
-
|
|
3067
|
-
|
|
3068
|
-
|
|
3069
|
-
|
|
3070
|
-
|
|
3071
|
-
|
|
3072
|
-
|
|
3073
|
-
schoolDistrict: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3074
|
-
identifier: z.ZodString;
|
|
3075
|
-
id: z.ZodString;
|
|
3076
|
-
}, z.core.$strip>>>;
|
|
3077
|
-
}, z.core.$strict>;
|
|
3078
|
-
export declare const globalSignalDetailsSchemaV1: z.ZodObject<{
|
|
3147
|
+
geo: z.ZodOptional<z.ZodObject<{
|
|
3148
|
+
default: z.ZodOptional<z.ZodObject<{
|
|
3149
|
+
lat: z.ZodNumber;
|
|
3150
|
+
lon: z.ZodNumber;
|
|
3151
|
+
}, z.core.$strip>>;
|
|
3152
|
+
defaultValue: z.ZodOptional<z.ZodString>;
|
|
3153
|
+
}, z.core.$strip>>;
|
|
3154
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
3079
3155
|
type: z.ZodOptional<z.ZodObject<{
|
|
3080
3156
|
identifier: z.ZodString;
|
|
3081
3157
|
id: z.ZodString;
|
|
@@ -3084,10 +3160,6 @@ export declare const globalSignalDetailsSchemaV1: z.ZodObject<{
|
|
|
3084
3160
|
identifier: z.ZodString;
|
|
3085
3161
|
id: z.ZodString;
|
|
3086
3162
|
}, z.core.$strip>>>;
|
|
3087
|
-
sectors: z.ZodArray<z.ZodObject<{
|
|
3088
|
-
identifier: z.ZodString;
|
|
3089
|
-
id: z.ZodString;
|
|
3090
|
-
}, z.core.$strip>>;
|
|
3091
3163
|
state: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3092
3164
|
identifier: z.ZodString;
|
|
3093
3165
|
id: z.ZodString;
|
|
@@ -3179,19 +3251,8 @@ export declare const globalSignalDetailsSchemaV1: z.ZodObject<{
|
|
|
3179
3251
|
role: z.ZodString;
|
|
3180
3252
|
ref: z.ZodOptional<z.ZodString>;
|
|
3181
3253
|
}, z.core.$strip>>>;
|
|
3182
|
-
queueApplications: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3183
|
-
queueKey: z.ZodOptional<z.ZodString>;
|
|
3184
|
-
applicationId: z.ZodOptional<z.ZodString>;
|
|
3185
|
-
queueDataset: z.ZodOptional<z.ZodString>;
|
|
3186
|
-
id: z.ZodString;
|
|
3187
|
-
identifier: z.ZodString;
|
|
3188
|
-
}, z.core.$strip>>>;
|
|
3189
|
-
audiences: z.ZodArray<z.ZodObject<{
|
|
3190
|
-
identifier: z.ZodString;
|
|
3191
|
-
id: z.ZodString;
|
|
3192
|
-
}, z.core.$strip>>;
|
|
3193
3254
|
headline: z.ZodString;
|
|
3194
|
-
schema: z.ZodLiteral<"
|
|
3255
|
+
schema: z.ZodLiteral<"us_signal">;
|
|
3195
3256
|
allSectors: z.ZodOptional<z.ZodString>;
|
|
3196
3257
|
commercialOperationDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3197
3258
|
facilityAddress: z.ZodOptional<z.ZodObject<{
|
|
@@ -3207,25 +3268,6 @@ export declare const globalSignalDetailsSchemaV1: z.ZodObject<{
|
|
|
3207
3268
|
}, z.core.$strip>>;
|
|
3208
3269
|
facilityName: z.ZodOptional<z.ZodString>;
|
|
3209
3270
|
filingDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3210
|
-
geo: z.ZodObject<{
|
|
3211
|
-
default: z.ZodOptional<z.ZodObject<{
|
|
3212
|
-
lat: z.ZodNumber;
|
|
3213
|
-
lon: z.ZodNumber;
|
|
3214
|
-
}, z.core.$strip>>;
|
|
3215
|
-
defaultValue: z.ZodOptional<z.ZodString>;
|
|
3216
|
-
location: z.ZodOptional<z.ZodObject<{
|
|
3217
|
-
lat: z.ZodNumber;
|
|
3218
|
-
lon: z.ZodNumber;
|
|
3219
|
-
}, z.core.$strip>>;
|
|
3220
|
-
facility: z.ZodOptional<z.ZodObject<{
|
|
3221
|
-
lat: z.ZodNumber;
|
|
3222
|
-
lon: z.ZodNumber;
|
|
3223
|
-
}, z.core.$strip>>;
|
|
3224
|
-
county: z.ZodOptional<z.ZodObject<{
|
|
3225
|
-
lat: z.ZodNumber;
|
|
3226
|
-
lon: z.ZodNumber;
|
|
3227
|
-
}, z.core.$strip>>;
|
|
3228
|
-
}, z.core.$strip>;
|
|
3229
3271
|
mw: z.ZodOptional<z.ZodNumber>;
|
|
3230
3272
|
publishedDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3231
3273
|
totals: z.ZodOptional<z.ZodObject<{
|
|
@@ -3243,39 +3285,31 @@ export declare const globalSignalDetailsSchemaV1: z.ZodObject<{
|
|
|
3243
3285
|
epc: z.ZodOptional<z.ZodNumber>;
|
|
3244
3286
|
puc: z.ZodOptional<z.ZodNumber>;
|
|
3245
3287
|
}, z.core.$strip>>;
|
|
3246
|
-
$organizations: z.ZodOptional<z.ZodString>;
|
|
3247
|
-
body: z.ZodOptional<z.ZodString>;
|
|
3248
|
-
projectPipeline: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3249
|
-
identifier: z.ZodString;
|
|
3250
|
-
id: z.ZodString;
|
|
3251
|
-
}, z.core.$strip>>>;
|
|
3252
3288
|
updated: z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>;
|
|
3253
|
-
|
|
3289
|
+
geo: z.ZodOptional<z.ZodObject<{
|
|
3290
|
+
default: z.ZodOptional<z.ZodObject<{
|
|
3291
|
+
lat: z.ZodNumber;
|
|
3292
|
+
lon: z.ZodNumber;
|
|
3293
|
+
}, z.core.$strip>>;
|
|
3294
|
+
defaultValue: z.ZodOptional<z.ZodString>;
|
|
3295
|
+
}, z.core.$strip>>;
|
|
3296
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
3297
|
+
type: z.ZodOptional<z.ZodObject<{
|
|
3254
3298
|
identifier: z.ZodString;
|
|
3255
3299
|
id: z.ZodString;
|
|
3256
|
-
}, z.core.$strip
|
|
3257
|
-
|
|
3300
|
+
}, z.core.$strip>>;
|
|
3301
|
+
subType: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3258
3302
|
identifier: z.ZodString;
|
|
3259
3303
|
id: z.ZodString;
|
|
3260
3304
|
}, z.core.$strip>>>;
|
|
3261
|
-
|
|
3305
|
+
state: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3262
3306
|
identifier: z.ZodString;
|
|
3263
3307
|
id: z.ZodString;
|
|
3264
3308
|
}, z.core.$strip>>>;
|
|
3265
|
-
|
|
3266
|
-
export declare const signalDetailsSchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
3267
|
-
type: z.ZodOptional<z.ZodObject<{
|
|
3268
|
-
identifier: z.ZodString;
|
|
3269
|
-
id: z.ZodString;
|
|
3270
|
-
}, z.core.$strip>>;
|
|
3271
|
-
subType: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3309
|
+
county: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3272
3310
|
identifier: z.ZodString;
|
|
3273
3311
|
id: z.ZodString;
|
|
3274
3312
|
}, z.core.$strip>>>;
|
|
3275
|
-
sectors: z.ZodArray<z.ZodObject<{
|
|
3276
|
-
identifier: z.ZodString;
|
|
3277
|
-
id: z.ZodString;
|
|
3278
|
-
}, z.core.$strip>>;
|
|
3279
3313
|
keyPeople: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3280
3314
|
id: z.ZodOptional<z.ZodString>;
|
|
3281
3315
|
identifier: z.ZodOptional<z.ZodString>;
|
|
@@ -3329,6 +3363,10 @@ export declare const signalDetailsSchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<
|
|
|
3329
3363
|
identifier: z.ZodString;
|
|
3330
3364
|
id: z.ZodString;
|
|
3331
3365
|
}, z.core.$strip>>>;
|
|
3366
|
+
projects: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3367
|
+
identifier: z.ZodString;
|
|
3368
|
+
id: z.ZodString;
|
|
3369
|
+
}, z.core.$strip>>>;
|
|
3332
3370
|
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
3333
3371
|
filename: z.ZodString;
|
|
3334
3372
|
created: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -3355,19 +3393,8 @@ export declare const signalDetailsSchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<
|
|
|
3355
3393
|
role: z.ZodString;
|
|
3356
3394
|
ref: z.ZodOptional<z.ZodString>;
|
|
3357
3395
|
}, z.core.$strip>>>;
|
|
3358
|
-
queueApplications: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3359
|
-
queueKey: z.ZodOptional<z.ZodString>;
|
|
3360
|
-
applicationId: z.ZodOptional<z.ZodString>;
|
|
3361
|
-
queueDataset: z.ZodOptional<z.ZodString>;
|
|
3362
|
-
id: z.ZodString;
|
|
3363
|
-
identifier: z.ZodString;
|
|
3364
|
-
}, z.core.$strip>>>;
|
|
3365
|
-
audiences: z.ZodArray<z.ZodObject<{
|
|
3366
|
-
identifier: z.ZodString;
|
|
3367
|
-
id: z.ZodString;
|
|
3368
|
-
}, z.core.$strip>>;
|
|
3369
3396
|
headline: z.ZodString;
|
|
3370
|
-
schema: z.ZodLiteral<"
|
|
3397
|
+
schema: z.ZodLiteral<"global_signal">;
|
|
3371
3398
|
allSectors: z.ZodOptional<z.ZodString>;
|
|
3372
3399
|
commercialOperationDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3373
3400
|
facilityAddress: z.ZodOptional<z.ZodObject<{
|
|
@@ -3383,25 +3410,6 @@ export declare const signalDetailsSchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<
|
|
|
3383
3410
|
}, z.core.$strip>>;
|
|
3384
3411
|
facilityName: z.ZodOptional<z.ZodString>;
|
|
3385
3412
|
filingDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3386
|
-
geo: z.ZodObject<{
|
|
3387
|
-
default: z.ZodOptional<z.ZodObject<{
|
|
3388
|
-
lat: z.ZodNumber;
|
|
3389
|
-
lon: z.ZodNumber;
|
|
3390
|
-
}, z.core.$strip>>;
|
|
3391
|
-
defaultValue: z.ZodOptional<z.ZodString>;
|
|
3392
|
-
location: z.ZodOptional<z.ZodObject<{
|
|
3393
|
-
lat: z.ZodNumber;
|
|
3394
|
-
lon: z.ZodNumber;
|
|
3395
|
-
}, z.core.$strip>>;
|
|
3396
|
-
facility: z.ZodOptional<z.ZodObject<{
|
|
3397
|
-
lat: z.ZodNumber;
|
|
3398
|
-
lon: z.ZodNumber;
|
|
3399
|
-
}, z.core.$strip>>;
|
|
3400
|
-
county: z.ZodOptional<z.ZodObject<{
|
|
3401
|
-
lat: z.ZodNumber;
|
|
3402
|
-
lon: z.ZodNumber;
|
|
3403
|
-
}, z.core.$strip>>;
|
|
3404
|
-
}, z.core.$strip>;
|
|
3405
3413
|
mw: z.ZodOptional<z.ZodNumber>;
|
|
3406
3414
|
publishedDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3407
3415
|
totals: z.ZodOptional<z.ZodObject<{
|
|
@@ -3419,13 +3427,14 @@ export declare const signalDetailsSchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<
|
|
|
3419
3427
|
epc: z.ZodOptional<z.ZodNumber>;
|
|
3420
3428
|
puc: z.ZodOptional<z.ZodNumber>;
|
|
3421
3429
|
}, z.core.$strip>>;
|
|
3422
|
-
$organizations: z.ZodOptional<z.ZodString>;
|
|
3423
|
-
body: z.ZodOptional<z.ZodString>;
|
|
3424
|
-
projectPipeline: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3425
|
-
identifier: z.ZodString;
|
|
3426
|
-
id: z.ZodString;
|
|
3427
|
-
}, z.core.$strip>>>;
|
|
3428
3430
|
updated: z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>;
|
|
3431
|
+
geo: z.ZodOptional<z.ZodObject<{
|
|
3432
|
+
default: z.ZodOptional<z.ZodObject<{
|
|
3433
|
+
lat: z.ZodNumber;
|
|
3434
|
+
lon: z.ZodNumber;
|
|
3435
|
+
}, z.core.$strip>>;
|
|
3436
|
+
defaultValue: z.ZodOptional<z.ZodString>;
|
|
3437
|
+
}, z.core.$strip>>;
|
|
3429
3438
|
}, z.core.$strict>, z.ZodObject<{
|
|
3430
3439
|
type: z.ZodOptional<z.ZodObject<{
|
|
3431
3440
|
identifier: z.ZodString;
|
|
@@ -3435,18 +3444,6 @@ export declare const signalDetailsSchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<
|
|
|
3435
3444
|
identifier: z.ZodString;
|
|
3436
3445
|
id: z.ZodString;
|
|
3437
3446
|
}, z.core.$strip>>>;
|
|
3438
|
-
sectors: z.ZodArray<z.ZodObject<{
|
|
3439
|
-
identifier: z.ZodString;
|
|
3440
|
-
id: z.ZodString;
|
|
3441
|
-
}, z.core.$strip>>;
|
|
3442
|
-
state: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3443
|
-
identifier: z.ZodString;
|
|
3444
|
-
id: z.ZodString;
|
|
3445
|
-
}, z.core.$strip>>>;
|
|
3446
|
-
county: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3447
|
-
identifier: z.ZodString;
|
|
3448
|
-
id: z.ZodString;
|
|
3449
|
-
}, z.core.$strip>>>;
|
|
3450
3447
|
keyPeople: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3451
3448
|
id: z.ZodOptional<z.ZodString>;
|
|
3452
3449
|
identifier: z.ZodOptional<z.ZodString>;
|
|
@@ -3500,10 +3497,6 @@ export declare const signalDetailsSchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<
|
|
|
3500
3497
|
identifier: z.ZodString;
|
|
3501
3498
|
id: z.ZodString;
|
|
3502
3499
|
}, z.core.$strip>>>;
|
|
3503
|
-
projects: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3504
|
-
identifier: z.ZodString;
|
|
3505
|
-
id: z.ZodString;
|
|
3506
|
-
}, z.core.$strip>>>;
|
|
3507
3500
|
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
3508
3501
|
filename: z.ZodString;
|
|
3509
3502
|
created: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -3530,19 +3523,8 @@ export declare const signalDetailsSchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<
|
|
|
3530
3523
|
role: z.ZodString;
|
|
3531
3524
|
ref: z.ZodOptional<z.ZodString>;
|
|
3532
3525
|
}, z.core.$strip>>>;
|
|
3533
|
-
queueApplications: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3534
|
-
queueKey: z.ZodOptional<z.ZodString>;
|
|
3535
|
-
applicationId: z.ZodOptional<z.ZodString>;
|
|
3536
|
-
queueDataset: z.ZodOptional<z.ZodString>;
|
|
3537
|
-
id: z.ZodString;
|
|
3538
|
-
identifier: z.ZodString;
|
|
3539
|
-
}, z.core.$strip>>>;
|
|
3540
|
-
audiences: z.ZodArray<z.ZodObject<{
|
|
3541
|
-
identifier: z.ZodString;
|
|
3542
|
-
id: z.ZodString;
|
|
3543
|
-
}, z.core.$strip>>;
|
|
3544
3526
|
headline: z.ZodString;
|
|
3545
|
-
schema: z.ZodLiteral<"
|
|
3527
|
+
schema: z.ZodLiteral<"apac_signal">;
|
|
3546
3528
|
allSectors: z.ZodOptional<z.ZodString>;
|
|
3547
3529
|
commercialOperationDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3548
3530
|
facilityAddress: z.ZodOptional<z.ZodObject<{
|
|
@@ -3558,25 +3540,6 @@ export declare const signalDetailsSchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<
|
|
|
3558
3540
|
}, z.core.$strip>>;
|
|
3559
3541
|
facilityName: z.ZodOptional<z.ZodString>;
|
|
3560
3542
|
filingDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3561
|
-
geo: z.ZodObject<{
|
|
3562
|
-
default: z.ZodOptional<z.ZodObject<{
|
|
3563
|
-
lat: z.ZodNumber;
|
|
3564
|
-
lon: z.ZodNumber;
|
|
3565
|
-
}, z.core.$strip>>;
|
|
3566
|
-
defaultValue: z.ZodOptional<z.ZodString>;
|
|
3567
|
-
location: z.ZodOptional<z.ZodObject<{
|
|
3568
|
-
lat: z.ZodNumber;
|
|
3569
|
-
lon: z.ZodNumber;
|
|
3570
|
-
}, z.core.$strip>>;
|
|
3571
|
-
facility: z.ZodOptional<z.ZodObject<{
|
|
3572
|
-
lat: z.ZodNumber;
|
|
3573
|
-
lon: z.ZodNumber;
|
|
3574
|
-
}, z.core.$strip>>;
|
|
3575
|
-
county: z.ZodOptional<z.ZodObject<{
|
|
3576
|
-
lat: z.ZodNumber;
|
|
3577
|
-
lon: z.ZodNumber;
|
|
3578
|
-
}, z.core.$strip>>;
|
|
3579
|
-
}, z.core.$strip>;
|
|
3580
3543
|
mw: z.ZodOptional<z.ZodNumber>;
|
|
3581
3544
|
publishedDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3582
3545
|
totals: z.ZodOptional<z.ZodObject<{
|
|
@@ -3594,26 +3557,16 @@ export declare const signalDetailsSchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<
|
|
|
3594
3557
|
epc: z.ZodOptional<z.ZodNumber>;
|
|
3595
3558
|
puc: z.ZodOptional<z.ZodNumber>;
|
|
3596
3559
|
}, z.core.$strip>>;
|
|
3597
|
-
$organizations: z.ZodOptional<z.ZodString>;
|
|
3598
|
-
body: z.ZodOptional<z.ZodString>;
|
|
3599
|
-
projectPipeline: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3600
|
-
identifier: z.ZodString;
|
|
3601
|
-
id: z.ZodString;
|
|
3602
|
-
}, z.core.$strip>>>;
|
|
3603
3560
|
updated: z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>;
|
|
3604
|
-
|
|
3605
|
-
|
|
3606
|
-
|
|
3607
|
-
|
|
3608
|
-
|
|
3609
|
-
|
|
3610
|
-
|
|
3611
|
-
|
|
3612
|
-
|
|
3613
|
-
identifier: z.ZodString;
|
|
3614
|
-
id: z.ZodString;
|
|
3615
|
-
}, z.core.$strip>>>;
|
|
3616
|
-
}, z.core.$strict>]>, z.ZodObject<{
|
|
3561
|
+
geo: z.ZodOptional<z.ZodObject<{
|
|
3562
|
+
default: z.ZodOptional<z.ZodObject<{
|
|
3563
|
+
lat: z.ZodNumber;
|
|
3564
|
+
lon: z.ZodNumber;
|
|
3565
|
+
}, z.core.$strip>>;
|
|
3566
|
+
defaultValue: z.ZodOptional<z.ZodString>;
|
|
3567
|
+
}, z.core.$strip>>;
|
|
3568
|
+
}, z.core.$strict>], "schema">;
|
|
3569
|
+
export declare const euSignalDetailsSchemaV1: z.ZodObject<{
|
|
3617
3570
|
type: z.ZodOptional<z.ZodObject<{
|
|
3618
3571
|
identifier: z.ZodString;
|
|
3619
3572
|
id: z.ZodString;
|
|
@@ -3626,14 +3579,6 @@ export declare const signalDetailsSchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<
|
|
|
3626
3579
|
identifier: z.ZodString;
|
|
3627
3580
|
id: z.ZodString;
|
|
3628
3581
|
}, z.core.$strip>>;
|
|
3629
|
-
state: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3630
|
-
identifier: z.ZodString;
|
|
3631
|
-
id: z.ZodString;
|
|
3632
|
-
}, z.core.$strip>>>;
|
|
3633
|
-
county: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3634
|
-
identifier: z.ZodString;
|
|
3635
|
-
id: z.ZodString;
|
|
3636
|
-
}, z.core.$strip>>>;
|
|
3637
3582
|
keyPeople: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3638
3583
|
id: z.ZodOptional<z.ZodString>;
|
|
3639
3584
|
identifier: z.ZodOptional<z.ZodString>;
|
|
@@ -3687,10 +3632,6 @@ export declare const signalDetailsSchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<
|
|
|
3687
3632
|
identifier: z.ZodString;
|
|
3688
3633
|
id: z.ZodString;
|
|
3689
3634
|
}, z.core.$strip>>>;
|
|
3690
|
-
projects: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3691
|
-
identifier: z.ZodString;
|
|
3692
|
-
id: z.ZodString;
|
|
3693
|
-
}, z.core.$strip>>>;
|
|
3694
3635
|
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
3695
3636
|
filename: z.ZodString;
|
|
3696
3637
|
created: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -3729,7 +3670,7 @@ export declare const signalDetailsSchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<
|
|
|
3729
3670
|
id: z.ZodString;
|
|
3730
3671
|
}, z.core.$strip>>;
|
|
3731
3672
|
headline: z.ZodString;
|
|
3732
|
-
schema: z.ZodLiteral<"
|
|
3673
|
+
schema: z.ZodLiteral<"eu_signal">;
|
|
3733
3674
|
allSectors: z.ZodOptional<z.ZodString>;
|
|
3734
3675
|
commercialOperationDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3735
3676
|
facilityAddress: z.ZodOptional<z.ZodObject<{
|
|
@@ -3788,32 +3729,28 @@ export declare const signalDetailsSchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<
|
|
|
3788
3729
|
id: z.ZodString;
|
|
3789
3730
|
}, z.core.$strip>>>;
|
|
3790
3731
|
updated: z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>;
|
|
3791
|
-
|
|
3792
|
-
|
|
3793
|
-
|
|
3794
|
-
}, z.core.$strip>>>;
|
|
3795
|
-
pucTracker: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3732
|
+
}, z.core.$strict>;
|
|
3733
|
+
export declare const usSignalDetailsSchemaV1: z.ZodObject<{
|
|
3734
|
+
type: z.ZodOptional<z.ZodObject<{
|
|
3796
3735
|
identifier: z.ZodString;
|
|
3797
3736
|
id: z.ZodString;
|
|
3798
|
-
}, z.core.$strip
|
|
3799
|
-
|
|
3737
|
+
}, z.core.$strip>>;
|
|
3738
|
+
subType: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3800
3739
|
identifier: z.ZodString;
|
|
3801
3740
|
id: z.ZodString;
|
|
3802
3741
|
}, z.core.$strip>>>;
|
|
3803
|
-
|
|
3804
|
-
export declare const signalDetailsUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
3805
|
-
type: z.ZodOptional<z.ZodObject<{
|
|
3742
|
+
sectors: z.ZodArray<z.ZodObject<{
|
|
3806
3743
|
identifier: z.ZodString;
|
|
3807
3744
|
id: z.ZodString;
|
|
3808
3745
|
}, z.core.$strip>>;
|
|
3809
|
-
|
|
3746
|
+
state: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3810
3747
|
identifier: z.ZodString;
|
|
3811
3748
|
id: z.ZodString;
|
|
3812
3749
|
}, z.core.$strip>>>;
|
|
3813
|
-
|
|
3750
|
+
county: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3814
3751
|
identifier: z.ZodString;
|
|
3815
3752
|
id: z.ZodString;
|
|
3816
|
-
}, z.core.$strip
|
|
3753
|
+
}, z.core.$strip>>>;
|
|
3817
3754
|
keyPeople: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3818
3755
|
id: z.ZodOptional<z.ZodString>;
|
|
3819
3756
|
identifier: z.ZodOptional<z.ZodString>;
|
|
@@ -3867,6 +3804,10 @@ export declare const signalDetailsUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodO
|
|
|
3867
3804
|
identifier: z.ZodString;
|
|
3868
3805
|
id: z.ZodString;
|
|
3869
3806
|
}, z.core.$strip>>>;
|
|
3807
|
+
projects: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3808
|
+
identifier: z.ZodString;
|
|
3809
|
+
id: z.ZodString;
|
|
3810
|
+
}, z.core.$strip>>>;
|
|
3870
3811
|
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
3871
3812
|
filename: z.ZodString;
|
|
3872
3813
|
created: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -3905,7 +3846,7 @@ export declare const signalDetailsUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodO
|
|
|
3905
3846
|
id: z.ZodString;
|
|
3906
3847
|
}, z.core.$strip>>;
|
|
3907
3848
|
headline: z.ZodString;
|
|
3908
|
-
schema: z.ZodLiteral<"
|
|
3849
|
+
schema: z.ZodLiteral<"us_signal">;
|
|
3909
3850
|
allSectors: z.ZodOptional<z.ZodString>;
|
|
3910
3851
|
commercialOperationDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3911
3852
|
facilityAddress: z.ZodOptional<z.ZodObject<{
|
|
@@ -3964,7 +3905,20 @@ export declare const signalDetailsUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodO
|
|
|
3964
3905
|
id: z.ZodString;
|
|
3965
3906
|
}, z.core.$strip>>>;
|
|
3966
3907
|
updated: z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>;
|
|
3967
|
-
|
|
3908
|
+
countyBoard: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3909
|
+
identifier: z.ZodString;
|
|
3910
|
+
id: z.ZodString;
|
|
3911
|
+
}, z.core.$strip>>>;
|
|
3912
|
+
pucTracker: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3913
|
+
identifier: z.ZodString;
|
|
3914
|
+
id: z.ZodString;
|
|
3915
|
+
}, z.core.$strip>>>;
|
|
3916
|
+
schoolDistrict: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3917
|
+
identifier: z.ZodString;
|
|
3918
|
+
id: z.ZodString;
|
|
3919
|
+
}, z.core.$strip>>>;
|
|
3920
|
+
}, z.core.$strict>;
|
|
3921
|
+
export declare const globalSignalDetailsSchemaV1: z.ZodObject<{
|
|
3968
3922
|
type: z.ZodOptional<z.ZodObject<{
|
|
3969
3923
|
identifier: z.ZodString;
|
|
3970
3924
|
id: z.ZodString;
|
|
@@ -4080,7 +4034,7 @@ export declare const signalDetailsUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodO
|
|
|
4080
4034
|
id: z.ZodString;
|
|
4081
4035
|
}, z.core.$strip>>;
|
|
4082
4036
|
headline: z.ZodString;
|
|
4083
|
-
schema: z.ZodLiteral<"
|
|
4037
|
+
schema: z.ZodLiteral<"global_signal">;
|
|
4084
4038
|
allSectors: z.ZodOptional<z.ZodString>;
|
|
4085
4039
|
commercialOperationDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4086
4040
|
facilityAddress: z.ZodOptional<z.ZodObject<{
|
|
@@ -4151,7 +4105,8 @@ export declare const signalDetailsUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodO
|
|
|
4151
4105
|
identifier: z.ZodString;
|
|
4152
4106
|
id: z.ZodString;
|
|
4153
4107
|
}, z.core.$strip>>>;
|
|
4154
|
-
}, z.core.$strict
|
|
4108
|
+
}, z.core.$strict>;
|
|
4109
|
+
export declare const apacSignalDetailsSchemaV1: z.ZodObject<{
|
|
4155
4110
|
type: z.ZodOptional<z.ZodObject<{
|
|
4156
4111
|
identifier: z.ZodString;
|
|
4157
4112
|
id: z.ZodString;
|
|
@@ -4164,14 +4119,6 @@ export declare const signalDetailsUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodO
|
|
|
4164
4119
|
identifier: z.ZodString;
|
|
4165
4120
|
id: z.ZodString;
|
|
4166
4121
|
}, z.core.$strip>>;
|
|
4167
|
-
state: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4168
|
-
identifier: z.ZodString;
|
|
4169
|
-
id: z.ZodString;
|
|
4170
|
-
}, z.core.$strip>>>;
|
|
4171
|
-
county: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4172
|
-
identifier: z.ZodString;
|
|
4173
|
-
id: z.ZodString;
|
|
4174
|
-
}, z.core.$strip>>>;
|
|
4175
4122
|
keyPeople: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4176
4123
|
id: z.ZodOptional<z.ZodString>;
|
|
4177
4124
|
identifier: z.ZodOptional<z.ZodString>;
|
|
@@ -4225,10 +4172,6 @@ export declare const signalDetailsUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodO
|
|
|
4225
4172
|
identifier: z.ZodString;
|
|
4226
4173
|
id: z.ZodString;
|
|
4227
4174
|
}, z.core.$strip>>>;
|
|
4228
|
-
projects: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4229
|
-
identifier: z.ZodString;
|
|
4230
|
-
id: z.ZodString;
|
|
4231
|
-
}, z.core.$strip>>>;
|
|
4232
4175
|
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
4233
4176
|
filename: z.ZodString;
|
|
4234
4177
|
created: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -4267,7 +4210,7 @@ export declare const signalDetailsUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodO
|
|
|
4267
4210
|
id: z.ZodString;
|
|
4268
4211
|
}, z.core.$strip>>;
|
|
4269
4212
|
headline: z.ZodString;
|
|
4270
|
-
schema: z.ZodLiteral<"
|
|
4213
|
+
schema: z.ZodLiteral<"apac_signal">;
|
|
4271
4214
|
allSectors: z.ZodOptional<z.ZodString>;
|
|
4272
4215
|
commercialOperationDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4273
4216
|
facilityAddress: z.ZodOptional<z.ZodObject<{
|
|
@@ -4326,24 +4269,30 @@ export declare const signalDetailsUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodO
|
|
|
4326
4269
|
id: z.ZodString;
|
|
4327
4270
|
}, z.core.$strip>>>;
|
|
4328
4271
|
updated: z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>;
|
|
4329
|
-
|
|
4330
|
-
|
|
4331
|
-
|
|
4332
|
-
}, z.core.$strip>>>;
|
|
4333
|
-
pucTracker: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4272
|
+
}, z.core.$strict>;
|
|
4273
|
+
export declare const signalDetailsSchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
4274
|
+
type: z.ZodOptional<z.ZodObject<{
|
|
4334
4275
|
identifier: z.ZodString;
|
|
4335
4276
|
id: z.ZodString;
|
|
4336
|
-
}, z.core.$strip
|
|
4337
|
-
|
|
4277
|
+
}, z.core.$strip>>;
|
|
4278
|
+
subType: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4338
4279
|
identifier: z.ZodString;
|
|
4339
4280
|
id: z.ZodString;
|
|
4340
4281
|
}, z.core.$strip>>>;
|
|
4341
|
-
|
|
4342
|
-
export declare const euSignalByLocationListSchemaV1: z.ZodObject<{
|
|
4343
|
-
type: z.ZodOptional<z.ZodObject<{
|
|
4282
|
+
sectors: z.ZodArray<z.ZodObject<{
|
|
4344
4283
|
identifier: z.ZodString;
|
|
4345
4284
|
id: z.ZodString;
|
|
4346
4285
|
}, z.core.$strip>>;
|
|
4286
|
+
keyPeople: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4287
|
+
id: z.ZodOptional<z.ZodString>;
|
|
4288
|
+
identifier: z.ZodOptional<z.ZodString>;
|
|
4289
|
+
linkedinUrl: z.ZodOptional<z.ZodString>;
|
|
4290
|
+
role: z.ZodOptional<z.ZodString>;
|
|
4291
|
+
fullName: z.ZodOptional<z.ZodString>;
|
|
4292
|
+
email: z.ZodOptional<z.ZodString>;
|
|
4293
|
+
phone: z.ZodOptional<z.ZodString>;
|
|
4294
|
+
source: z.ZodOptional<z.ZodString>;
|
|
4295
|
+
}, z.core.$strip>>>;
|
|
4347
4296
|
id: z.ZodString;
|
|
4348
4297
|
location: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4349
4298
|
identifier: z.ZodString;
|
|
@@ -4387,14 +4336,47 @@ export declare const euSignalByLocationListSchemaV1: z.ZodObject<{
|
|
|
4387
4336
|
identifier: z.ZodString;
|
|
4388
4337
|
id: z.ZodString;
|
|
4389
4338
|
}, z.core.$strip>>>;
|
|
4339
|
+
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
4340
|
+
filename: z.ZodString;
|
|
4341
|
+
created: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4342
|
+
document_id: z.ZodString;
|
|
4343
|
+
mimetype: z.ZodString;
|
|
4344
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
4345
|
+
type: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4346
|
+
key: z.ZodOptional<z.ZodString>;
|
|
4347
|
+
userName: z.ZodOptional<z.ZodString>;
|
|
4348
|
+
url: z.ZodOptional<z.ZodString>;
|
|
4349
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
4350
|
+
file: z.ZodOptional<z.ZodString>;
|
|
4351
|
+
url: z.ZodString;
|
|
4352
|
+
created: z.ZodOptional<z.ZodString>;
|
|
4353
|
+
type: z.ZodArray<z.ZodString>;
|
|
4354
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
4355
|
+
documentDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4356
|
+
source: z.ZodOptional<z.ZodString>;
|
|
4357
|
+
id: z.ZodOptional<z.ZodString>;
|
|
4358
|
+
}, z.core.$strip>]>>>;
|
|
4390
4359
|
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4391
4360
|
identifier: z.ZodString;
|
|
4392
4361
|
id: z.ZodString;
|
|
4393
4362
|
role: z.ZodString;
|
|
4394
4363
|
ref: z.ZodOptional<z.ZodString>;
|
|
4395
4364
|
}, z.core.$strip>>>;
|
|
4365
|
+
queueApplications: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4366
|
+
queueKey: z.ZodOptional<z.ZodString>;
|
|
4367
|
+
applicationId: z.ZodOptional<z.ZodString>;
|
|
4368
|
+
queueDataset: z.ZodOptional<z.ZodString>;
|
|
4369
|
+
id: z.ZodString;
|
|
4370
|
+
identifier: z.ZodString;
|
|
4371
|
+
}, z.core.$strip>>>;
|
|
4372
|
+
audiences: z.ZodArray<z.ZodObject<{
|
|
4373
|
+
identifier: z.ZodString;
|
|
4374
|
+
id: z.ZodString;
|
|
4375
|
+
}, z.core.$strip>>;
|
|
4376
|
+
headline: z.ZodString;
|
|
4396
4377
|
schema: z.ZodLiteral<"eu_signal">;
|
|
4397
4378
|
allSectors: z.ZodOptional<z.ZodString>;
|
|
4379
|
+
commercialOperationDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4398
4380
|
facilityAddress: z.ZodOptional<z.ZodObject<{
|
|
4399
4381
|
full: z.ZodOptional<z.ZodString>;
|
|
4400
4382
|
city: z.ZodOptional<z.ZodString>;
|
|
@@ -4406,22 +4388,2009 @@ export declare const euSignalByLocationListSchemaV1: z.ZodObject<{
|
|
|
4406
4388
|
latitude: z.ZodOptional<z.ZodNumber>;
|
|
4407
4389
|
longitude: z.ZodOptional<z.ZodNumber>;
|
|
4408
4390
|
}, z.core.$strip>>;
|
|
4409
|
-
|
|
4410
|
-
|
|
4391
|
+
facilityName: z.ZodOptional<z.ZodString>;
|
|
4392
|
+
filingDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4393
|
+
geo: z.ZodObject<{
|
|
4411
4394
|
default: z.ZodOptional<z.ZodObject<{
|
|
4412
4395
|
lat: z.ZodNumber;
|
|
4413
4396
|
lon: z.ZodNumber;
|
|
4414
4397
|
}, z.core.$strip>>;
|
|
4415
4398
|
defaultValue: z.ZodOptional<z.ZodString>;
|
|
4416
|
-
|
|
4417
|
-
|
|
4418
|
-
|
|
4419
|
-
|
|
4420
|
-
|
|
4421
|
-
|
|
4422
|
-
|
|
4423
|
-
|
|
4424
|
-
|
|
4399
|
+
location: z.ZodOptional<z.ZodObject<{
|
|
4400
|
+
lat: z.ZodNumber;
|
|
4401
|
+
lon: z.ZodNumber;
|
|
4402
|
+
}, z.core.$strip>>;
|
|
4403
|
+
facility: z.ZodOptional<z.ZodObject<{
|
|
4404
|
+
lat: z.ZodNumber;
|
|
4405
|
+
lon: z.ZodNumber;
|
|
4406
|
+
}, z.core.$strip>>;
|
|
4407
|
+
county: z.ZodOptional<z.ZodObject<{
|
|
4408
|
+
lat: z.ZodNumber;
|
|
4409
|
+
lon: z.ZodNumber;
|
|
4410
|
+
}, z.core.$strip>>;
|
|
4411
|
+
}, z.core.$strip>;
|
|
4412
|
+
mw: z.ZodOptional<z.ZodNumber>;
|
|
4413
|
+
publishedDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4414
|
+
totals: z.ZodOptional<z.ZodObject<{
|
|
4415
|
+
projects: z.ZodOptional<z.ZodNumber>;
|
|
4416
|
+
keyPeople: z.ZodOptional<z.ZodNumber>;
|
|
4417
|
+
documents: z.ZodOptional<z.ZodNumber>;
|
|
4418
|
+
organizations: z.ZodOptional<z.ZodNumber>;
|
|
4419
|
+
queueApplications: z.ZodOptional<z.ZodNumber>;
|
|
4420
|
+
intels: z.ZodOptional<z.ZodNumber>;
|
|
4421
|
+
signals: z.ZodOptional<z.ZodNumber>;
|
|
4422
|
+
developer: z.ZodOptional<z.ZodNumber>;
|
|
4423
|
+
developers: z.ZodOptional<z.ZodNumber>;
|
|
4424
|
+
utility: z.ZodOptional<z.ZodNumber>;
|
|
4425
|
+
offtaker: z.ZodOptional<z.ZodNumber>;
|
|
4426
|
+
epc: z.ZodOptional<z.ZodNumber>;
|
|
4427
|
+
puc: z.ZodOptional<z.ZodNumber>;
|
|
4428
|
+
}, z.core.$strip>>;
|
|
4429
|
+
$organizations: z.ZodOptional<z.ZodString>;
|
|
4430
|
+
body: z.ZodOptional<z.ZodString>;
|
|
4431
|
+
projectPipeline: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4432
|
+
identifier: z.ZodString;
|
|
4433
|
+
id: z.ZodString;
|
|
4434
|
+
}, z.core.$strip>>>;
|
|
4435
|
+
updated: z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>;
|
|
4436
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
4437
|
+
type: z.ZodOptional<z.ZodObject<{
|
|
4438
|
+
identifier: z.ZodString;
|
|
4439
|
+
id: z.ZodString;
|
|
4440
|
+
}, z.core.$strip>>;
|
|
4441
|
+
subType: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4442
|
+
identifier: z.ZodString;
|
|
4443
|
+
id: z.ZodString;
|
|
4444
|
+
}, z.core.$strip>>>;
|
|
4445
|
+
sectors: z.ZodArray<z.ZodObject<{
|
|
4446
|
+
identifier: z.ZodString;
|
|
4447
|
+
id: z.ZodString;
|
|
4448
|
+
}, z.core.$strip>>;
|
|
4449
|
+
state: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4450
|
+
identifier: z.ZodString;
|
|
4451
|
+
id: z.ZodString;
|
|
4452
|
+
}, z.core.$strip>>>;
|
|
4453
|
+
county: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4454
|
+
identifier: z.ZodString;
|
|
4455
|
+
id: z.ZodString;
|
|
4456
|
+
}, z.core.$strip>>>;
|
|
4457
|
+
keyPeople: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4458
|
+
id: z.ZodOptional<z.ZodString>;
|
|
4459
|
+
identifier: z.ZodOptional<z.ZodString>;
|
|
4460
|
+
linkedinUrl: z.ZodOptional<z.ZodString>;
|
|
4461
|
+
role: z.ZodOptional<z.ZodString>;
|
|
4462
|
+
fullName: z.ZodOptional<z.ZodString>;
|
|
4463
|
+
email: z.ZodOptional<z.ZodString>;
|
|
4464
|
+
phone: z.ZodOptional<z.ZodString>;
|
|
4465
|
+
source: z.ZodOptional<z.ZodString>;
|
|
4466
|
+
}, z.core.$strip>>>;
|
|
4467
|
+
id: z.ZodString;
|
|
4468
|
+
location: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4469
|
+
identifier: z.ZodString;
|
|
4470
|
+
id: z.ZodString;
|
|
4471
|
+
isApproximate: z.ZodOptional<z.ZodBoolean>;
|
|
4472
|
+
components: z.ZodOptional<z.ZodObject<{
|
|
4473
|
+
'ISO_3166-1_alpha-2': z.ZodOptional<z.ZodString>;
|
|
4474
|
+
'ISO_3166-1_alpha-3': z.ZodOptional<z.ZodString>;
|
|
4475
|
+
'ISO_3166-2': z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4476
|
+
_category: z.ZodOptional<z.ZodString>;
|
|
4477
|
+
_normalized_city: z.ZodOptional<z.ZodString>;
|
|
4478
|
+
_type: z.ZodString;
|
|
4479
|
+
city: z.ZodOptional<z.ZodString>;
|
|
4480
|
+
continent: z.ZodOptional<z.ZodString>;
|
|
4481
|
+
country: z.ZodOptional<z.ZodString>;
|
|
4482
|
+
country_code: z.ZodOptional<z.ZodString>;
|
|
4483
|
+
state_code: z.ZodOptional<z.ZodString>;
|
|
4484
|
+
county: z.ZodOptional<z.ZodString>;
|
|
4485
|
+
municipality: z.ZodOptional<z.ZodString>;
|
|
4486
|
+
political_union: z.ZodOptional<z.ZodString>;
|
|
4487
|
+
state: z.ZodOptional<z.ZodString>;
|
|
4488
|
+
state_district: z.ZodOptional<z.ZodString>;
|
|
4489
|
+
}, z.core.$strip>>;
|
|
4490
|
+
geometry: z.ZodOptional<z.ZodObject<{
|
|
4491
|
+
lat: z.ZodNumber;
|
|
4492
|
+
lng: z.ZodNumber;
|
|
4493
|
+
}, z.core.$strip>>;
|
|
4494
|
+
override: z.ZodOptional<z.ZodBoolean>;
|
|
4495
|
+
accuracy: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4496
|
+
identifier: z.ZodString;
|
|
4497
|
+
id: z.ZodEnum<{
|
|
4498
|
+
location_accuracy_a: import("../entity").LocationAccuracy.A;
|
|
4499
|
+
location_accuracy_b: import("../entity").LocationAccuracy.B;
|
|
4500
|
+
location_accuracy_c: import("../entity").LocationAccuracy.C;
|
|
4501
|
+
location_accuracy_not_determined: import("../entity").LocationAccuracy.NOT_DETERMINED;
|
|
4502
|
+
}>;
|
|
4503
|
+
}, z.core.$strip>>>;
|
|
4504
|
+
source: z.ZodOptional<z.ZodString>;
|
|
4505
|
+
}, z.core.$strip>>>;
|
|
4506
|
+
country: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4507
|
+
identifier: z.ZodString;
|
|
4508
|
+
id: z.ZodString;
|
|
4509
|
+
}, z.core.$strip>>>;
|
|
4510
|
+
projects: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4511
|
+
identifier: z.ZodString;
|
|
4512
|
+
id: z.ZodString;
|
|
4513
|
+
}, z.core.$strip>>>;
|
|
4514
|
+
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
4515
|
+
filename: z.ZodString;
|
|
4516
|
+
created: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4517
|
+
document_id: z.ZodString;
|
|
4518
|
+
mimetype: z.ZodString;
|
|
4519
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
4520
|
+
type: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4521
|
+
key: z.ZodOptional<z.ZodString>;
|
|
4522
|
+
userName: z.ZodOptional<z.ZodString>;
|
|
4523
|
+
url: z.ZodOptional<z.ZodString>;
|
|
4524
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
4525
|
+
file: z.ZodOptional<z.ZodString>;
|
|
4526
|
+
url: z.ZodString;
|
|
4527
|
+
created: z.ZodOptional<z.ZodString>;
|
|
4528
|
+
type: z.ZodArray<z.ZodString>;
|
|
4529
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
4530
|
+
documentDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4531
|
+
source: z.ZodOptional<z.ZodString>;
|
|
4532
|
+
id: z.ZodOptional<z.ZodString>;
|
|
4533
|
+
}, z.core.$strip>]>>>;
|
|
4534
|
+
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4535
|
+
identifier: z.ZodString;
|
|
4536
|
+
id: z.ZodString;
|
|
4537
|
+
role: z.ZodString;
|
|
4538
|
+
ref: z.ZodOptional<z.ZodString>;
|
|
4539
|
+
}, z.core.$strip>>>;
|
|
4540
|
+
queueApplications: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4541
|
+
queueKey: z.ZodOptional<z.ZodString>;
|
|
4542
|
+
applicationId: z.ZodOptional<z.ZodString>;
|
|
4543
|
+
queueDataset: z.ZodOptional<z.ZodString>;
|
|
4544
|
+
id: z.ZodString;
|
|
4545
|
+
identifier: z.ZodString;
|
|
4546
|
+
}, z.core.$strip>>>;
|
|
4547
|
+
audiences: z.ZodArray<z.ZodObject<{
|
|
4548
|
+
identifier: z.ZodString;
|
|
4549
|
+
id: z.ZodString;
|
|
4550
|
+
}, z.core.$strip>>;
|
|
4551
|
+
headline: z.ZodString;
|
|
4552
|
+
schema: z.ZodLiteral<"us_signal">;
|
|
4553
|
+
allSectors: z.ZodOptional<z.ZodString>;
|
|
4554
|
+
commercialOperationDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4555
|
+
facilityAddress: z.ZodOptional<z.ZodObject<{
|
|
4556
|
+
full: z.ZodOptional<z.ZodString>;
|
|
4557
|
+
city: z.ZodOptional<z.ZodString>;
|
|
4558
|
+
state: z.ZodOptional<z.ZodString>;
|
|
4559
|
+
street: z.ZodOptional<z.ZodString>;
|
|
4560
|
+
street2: z.ZodOptional<z.ZodString>;
|
|
4561
|
+
zip: z.ZodOptional<z.ZodString>;
|
|
4562
|
+
country: z.ZodOptional<z.ZodString>;
|
|
4563
|
+
latitude: z.ZodOptional<z.ZodNumber>;
|
|
4564
|
+
longitude: z.ZodOptional<z.ZodNumber>;
|
|
4565
|
+
}, z.core.$strip>>;
|
|
4566
|
+
facilityName: z.ZodOptional<z.ZodString>;
|
|
4567
|
+
filingDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4568
|
+
geo: z.ZodObject<{
|
|
4569
|
+
default: z.ZodOptional<z.ZodObject<{
|
|
4570
|
+
lat: z.ZodNumber;
|
|
4571
|
+
lon: z.ZodNumber;
|
|
4572
|
+
}, z.core.$strip>>;
|
|
4573
|
+
defaultValue: z.ZodOptional<z.ZodString>;
|
|
4574
|
+
location: z.ZodOptional<z.ZodObject<{
|
|
4575
|
+
lat: z.ZodNumber;
|
|
4576
|
+
lon: z.ZodNumber;
|
|
4577
|
+
}, z.core.$strip>>;
|
|
4578
|
+
facility: z.ZodOptional<z.ZodObject<{
|
|
4579
|
+
lat: z.ZodNumber;
|
|
4580
|
+
lon: z.ZodNumber;
|
|
4581
|
+
}, z.core.$strip>>;
|
|
4582
|
+
county: z.ZodOptional<z.ZodObject<{
|
|
4583
|
+
lat: z.ZodNumber;
|
|
4584
|
+
lon: z.ZodNumber;
|
|
4585
|
+
}, z.core.$strip>>;
|
|
4586
|
+
}, z.core.$strip>;
|
|
4587
|
+
mw: z.ZodOptional<z.ZodNumber>;
|
|
4588
|
+
publishedDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4589
|
+
totals: z.ZodOptional<z.ZodObject<{
|
|
4590
|
+
projects: z.ZodOptional<z.ZodNumber>;
|
|
4591
|
+
keyPeople: z.ZodOptional<z.ZodNumber>;
|
|
4592
|
+
documents: z.ZodOptional<z.ZodNumber>;
|
|
4593
|
+
organizations: z.ZodOptional<z.ZodNumber>;
|
|
4594
|
+
queueApplications: z.ZodOptional<z.ZodNumber>;
|
|
4595
|
+
intels: z.ZodOptional<z.ZodNumber>;
|
|
4596
|
+
signals: z.ZodOptional<z.ZodNumber>;
|
|
4597
|
+
developer: z.ZodOptional<z.ZodNumber>;
|
|
4598
|
+
developers: z.ZodOptional<z.ZodNumber>;
|
|
4599
|
+
utility: z.ZodOptional<z.ZodNumber>;
|
|
4600
|
+
offtaker: z.ZodOptional<z.ZodNumber>;
|
|
4601
|
+
epc: z.ZodOptional<z.ZodNumber>;
|
|
4602
|
+
puc: z.ZodOptional<z.ZodNumber>;
|
|
4603
|
+
}, z.core.$strip>>;
|
|
4604
|
+
$organizations: z.ZodOptional<z.ZodString>;
|
|
4605
|
+
body: z.ZodOptional<z.ZodString>;
|
|
4606
|
+
projectPipeline: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4607
|
+
identifier: z.ZodString;
|
|
4608
|
+
id: z.ZodString;
|
|
4609
|
+
}, z.core.$strip>>>;
|
|
4610
|
+
updated: z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>;
|
|
4611
|
+
countyBoard: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4612
|
+
identifier: z.ZodString;
|
|
4613
|
+
id: z.ZodString;
|
|
4614
|
+
}, z.core.$strip>>>;
|
|
4615
|
+
pucTracker: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4616
|
+
identifier: z.ZodString;
|
|
4617
|
+
id: z.ZodString;
|
|
4618
|
+
}, z.core.$strip>>>;
|
|
4619
|
+
schoolDistrict: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4620
|
+
identifier: z.ZodString;
|
|
4621
|
+
id: z.ZodString;
|
|
4622
|
+
}, z.core.$strip>>>;
|
|
4623
|
+
}, z.core.$strict>]>, z.ZodObject<{
|
|
4624
|
+
type: z.ZodOptional<z.ZodObject<{
|
|
4625
|
+
identifier: z.ZodString;
|
|
4626
|
+
id: z.ZodString;
|
|
4627
|
+
}, z.core.$strip>>;
|
|
4628
|
+
subType: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4629
|
+
identifier: z.ZodString;
|
|
4630
|
+
id: z.ZodString;
|
|
4631
|
+
}, z.core.$strip>>>;
|
|
4632
|
+
sectors: z.ZodArray<z.ZodObject<{
|
|
4633
|
+
identifier: z.ZodString;
|
|
4634
|
+
id: z.ZodString;
|
|
4635
|
+
}, z.core.$strip>>;
|
|
4636
|
+
state: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4637
|
+
identifier: z.ZodString;
|
|
4638
|
+
id: z.ZodString;
|
|
4639
|
+
}, z.core.$strip>>>;
|
|
4640
|
+
county: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4641
|
+
identifier: z.ZodString;
|
|
4642
|
+
id: z.ZodString;
|
|
4643
|
+
}, z.core.$strip>>>;
|
|
4644
|
+
keyPeople: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4645
|
+
id: z.ZodOptional<z.ZodString>;
|
|
4646
|
+
identifier: z.ZodOptional<z.ZodString>;
|
|
4647
|
+
linkedinUrl: z.ZodOptional<z.ZodString>;
|
|
4648
|
+
role: z.ZodOptional<z.ZodString>;
|
|
4649
|
+
fullName: z.ZodOptional<z.ZodString>;
|
|
4650
|
+
email: z.ZodOptional<z.ZodString>;
|
|
4651
|
+
phone: z.ZodOptional<z.ZodString>;
|
|
4652
|
+
source: z.ZodOptional<z.ZodString>;
|
|
4653
|
+
}, z.core.$strip>>>;
|
|
4654
|
+
id: z.ZodString;
|
|
4655
|
+
location: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4656
|
+
identifier: z.ZodString;
|
|
4657
|
+
id: z.ZodString;
|
|
4658
|
+
isApproximate: z.ZodOptional<z.ZodBoolean>;
|
|
4659
|
+
components: z.ZodOptional<z.ZodObject<{
|
|
4660
|
+
'ISO_3166-1_alpha-2': z.ZodOptional<z.ZodString>;
|
|
4661
|
+
'ISO_3166-1_alpha-3': z.ZodOptional<z.ZodString>;
|
|
4662
|
+
'ISO_3166-2': z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4663
|
+
_category: z.ZodOptional<z.ZodString>;
|
|
4664
|
+
_normalized_city: z.ZodOptional<z.ZodString>;
|
|
4665
|
+
_type: z.ZodString;
|
|
4666
|
+
city: z.ZodOptional<z.ZodString>;
|
|
4667
|
+
continent: z.ZodOptional<z.ZodString>;
|
|
4668
|
+
country: z.ZodOptional<z.ZodString>;
|
|
4669
|
+
country_code: z.ZodOptional<z.ZodString>;
|
|
4670
|
+
state_code: z.ZodOptional<z.ZodString>;
|
|
4671
|
+
county: z.ZodOptional<z.ZodString>;
|
|
4672
|
+
municipality: z.ZodOptional<z.ZodString>;
|
|
4673
|
+
political_union: z.ZodOptional<z.ZodString>;
|
|
4674
|
+
state: z.ZodOptional<z.ZodString>;
|
|
4675
|
+
state_district: z.ZodOptional<z.ZodString>;
|
|
4676
|
+
}, z.core.$strip>>;
|
|
4677
|
+
geometry: z.ZodOptional<z.ZodObject<{
|
|
4678
|
+
lat: z.ZodNumber;
|
|
4679
|
+
lng: z.ZodNumber;
|
|
4680
|
+
}, z.core.$strip>>;
|
|
4681
|
+
override: z.ZodOptional<z.ZodBoolean>;
|
|
4682
|
+
accuracy: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4683
|
+
identifier: z.ZodString;
|
|
4684
|
+
id: z.ZodEnum<{
|
|
4685
|
+
location_accuracy_a: import("../entity").LocationAccuracy.A;
|
|
4686
|
+
location_accuracy_b: import("../entity").LocationAccuracy.B;
|
|
4687
|
+
location_accuracy_c: import("../entity").LocationAccuracy.C;
|
|
4688
|
+
location_accuracy_not_determined: import("../entity").LocationAccuracy.NOT_DETERMINED;
|
|
4689
|
+
}>;
|
|
4690
|
+
}, z.core.$strip>>>;
|
|
4691
|
+
source: z.ZodOptional<z.ZodString>;
|
|
4692
|
+
}, z.core.$strip>>>;
|
|
4693
|
+
country: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4694
|
+
identifier: z.ZodString;
|
|
4695
|
+
id: z.ZodString;
|
|
4696
|
+
}, z.core.$strip>>>;
|
|
4697
|
+
projects: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4698
|
+
identifier: z.ZodString;
|
|
4699
|
+
id: z.ZodString;
|
|
4700
|
+
}, z.core.$strip>>>;
|
|
4701
|
+
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
4702
|
+
filename: z.ZodString;
|
|
4703
|
+
created: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4704
|
+
document_id: z.ZodString;
|
|
4705
|
+
mimetype: z.ZodString;
|
|
4706
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
4707
|
+
type: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4708
|
+
key: z.ZodOptional<z.ZodString>;
|
|
4709
|
+
userName: z.ZodOptional<z.ZodString>;
|
|
4710
|
+
url: z.ZodOptional<z.ZodString>;
|
|
4711
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
4712
|
+
file: z.ZodOptional<z.ZodString>;
|
|
4713
|
+
url: z.ZodString;
|
|
4714
|
+
created: z.ZodOptional<z.ZodString>;
|
|
4715
|
+
type: z.ZodArray<z.ZodString>;
|
|
4716
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
4717
|
+
documentDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4718
|
+
source: z.ZodOptional<z.ZodString>;
|
|
4719
|
+
id: z.ZodOptional<z.ZodString>;
|
|
4720
|
+
}, z.core.$strip>]>>>;
|
|
4721
|
+
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4722
|
+
identifier: z.ZodString;
|
|
4723
|
+
id: z.ZodString;
|
|
4724
|
+
role: z.ZodString;
|
|
4725
|
+
ref: z.ZodOptional<z.ZodString>;
|
|
4726
|
+
}, z.core.$strip>>>;
|
|
4727
|
+
queueApplications: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4728
|
+
queueKey: z.ZodOptional<z.ZodString>;
|
|
4729
|
+
applicationId: z.ZodOptional<z.ZodString>;
|
|
4730
|
+
queueDataset: z.ZodOptional<z.ZodString>;
|
|
4731
|
+
id: z.ZodString;
|
|
4732
|
+
identifier: z.ZodString;
|
|
4733
|
+
}, z.core.$strip>>>;
|
|
4734
|
+
audiences: z.ZodArray<z.ZodObject<{
|
|
4735
|
+
identifier: z.ZodString;
|
|
4736
|
+
id: z.ZodString;
|
|
4737
|
+
}, z.core.$strip>>;
|
|
4738
|
+
headline: z.ZodString;
|
|
4739
|
+
schema: z.ZodLiteral<"global_signal">;
|
|
4740
|
+
allSectors: z.ZodOptional<z.ZodString>;
|
|
4741
|
+
commercialOperationDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4742
|
+
facilityAddress: z.ZodOptional<z.ZodObject<{
|
|
4743
|
+
full: z.ZodOptional<z.ZodString>;
|
|
4744
|
+
city: z.ZodOptional<z.ZodString>;
|
|
4745
|
+
state: z.ZodOptional<z.ZodString>;
|
|
4746
|
+
street: z.ZodOptional<z.ZodString>;
|
|
4747
|
+
street2: z.ZodOptional<z.ZodString>;
|
|
4748
|
+
zip: z.ZodOptional<z.ZodString>;
|
|
4749
|
+
country: z.ZodOptional<z.ZodString>;
|
|
4750
|
+
latitude: z.ZodOptional<z.ZodNumber>;
|
|
4751
|
+
longitude: z.ZodOptional<z.ZodNumber>;
|
|
4752
|
+
}, z.core.$strip>>;
|
|
4753
|
+
facilityName: z.ZodOptional<z.ZodString>;
|
|
4754
|
+
filingDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4755
|
+
geo: z.ZodObject<{
|
|
4756
|
+
default: z.ZodOptional<z.ZodObject<{
|
|
4757
|
+
lat: z.ZodNumber;
|
|
4758
|
+
lon: z.ZodNumber;
|
|
4759
|
+
}, z.core.$strip>>;
|
|
4760
|
+
defaultValue: z.ZodOptional<z.ZodString>;
|
|
4761
|
+
location: z.ZodOptional<z.ZodObject<{
|
|
4762
|
+
lat: z.ZodNumber;
|
|
4763
|
+
lon: z.ZodNumber;
|
|
4764
|
+
}, z.core.$strip>>;
|
|
4765
|
+
facility: z.ZodOptional<z.ZodObject<{
|
|
4766
|
+
lat: z.ZodNumber;
|
|
4767
|
+
lon: z.ZodNumber;
|
|
4768
|
+
}, z.core.$strip>>;
|
|
4769
|
+
county: z.ZodOptional<z.ZodObject<{
|
|
4770
|
+
lat: z.ZodNumber;
|
|
4771
|
+
lon: z.ZodNumber;
|
|
4772
|
+
}, z.core.$strip>>;
|
|
4773
|
+
}, z.core.$strip>;
|
|
4774
|
+
mw: z.ZodOptional<z.ZodNumber>;
|
|
4775
|
+
publishedDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4776
|
+
totals: z.ZodOptional<z.ZodObject<{
|
|
4777
|
+
projects: z.ZodOptional<z.ZodNumber>;
|
|
4778
|
+
keyPeople: z.ZodOptional<z.ZodNumber>;
|
|
4779
|
+
documents: z.ZodOptional<z.ZodNumber>;
|
|
4780
|
+
organizations: z.ZodOptional<z.ZodNumber>;
|
|
4781
|
+
queueApplications: z.ZodOptional<z.ZodNumber>;
|
|
4782
|
+
intels: z.ZodOptional<z.ZodNumber>;
|
|
4783
|
+
signals: z.ZodOptional<z.ZodNumber>;
|
|
4784
|
+
developer: z.ZodOptional<z.ZodNumber>;
|
|
4785
|
+
developers: z.ZodOptional<z.ZodNumber>;
|
|
4786
|
+
utility: z.ZodOptional<z.ZodNumber>;
|
|
4787
|
+
offtaker: z.ZodOptional<z.ZodNumber>;
|
|
4788
|
+
epc: z.ZodOptional<z.ZodNumber>;
|
|
4789
|
+
puc: z.ZodOptional<z.ZodNumber>;
|
|
4790
|
+
}, z.core.$strip>>;
|
|
4791
|
+
$organizations: z.ZodOptional<z.ZodString>;
|
|
4792
|
+
body: z.ZodOptional<z.ZodString>;
|
|
4793
|
+
projectPipeline: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4794
|
+
identifier: z.ZodString;
|
|
4795
|
+
id: z.ZodString;
|
|
4796
|
+
}, z.core.$strip>>>;
|
|
4797
|
+
updated: z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>;
|
|
4798
|
+
countyBoard: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4799
|
+
identifier: z.ZodString;
|
|
4800
|
+
id: z.ZodString;
|
|
4801
|
+
}, z.core.$strip>>>;
|
|
4802
|
+
pucTracker: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4803
|
+
identifier: z.ZodString;
|
|
4804
|
+
id: z.ZodString;
|
|
4805
|
+
}, z.core.$strip>>>;
|
|
4806
|
+
schoolDistrict: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4807
|
+
identifier: z.ZodString;
|
|
4808
|
+
id: z.ZodString;
|
|
4809
|
+
}, z.core.$strip>>>;
|
|
4810
|
+
}, z.core.$strict>]>, z.ZodObject<{
|
|
4811
|
+
type: z.ZodOptional<z.ZodObject<{
|
|
4812
|
+
identifier: z.ZodString;
|
|
4813
|
+
id: z.ZodString;
|
|
4814
|
+
}, z.core.$strip>>;
|
|
4815
|
+
subType: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4816
|
+
identifier: z.ZodString;
|
|
4817
|
+
id: z.ZodString;
|
|
4818
|
+
}, z.core.$strip>>>;
|
|
4819
|
+
sectors: z.ZodArray<z.ZodObject<{
|
|
4820
|
+
identifier: z.ZodString;
|
|
4821
|
+
id: z.ZodString;
|
|
4822
|
+
}, z.core.$strip>>;
|
|
4823
|
+
keyPeople: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4824
|
+
id: z.ZodOptional<z.ZodString>;
|
|
4825
|
+
identifier: z.ZodOptional<z.ZodString>;
|
|
4826
|
+
linkedinUrl: z.ZodOptional<z.ZodString>;
|
|
4827
|
+
role: z.ZodOptional<z.ZodString>;
|
|
4828
|
+
fullName: z.ZodOptional<z.ZodString>;
|
|
4829
|
+
email: z.ZodOptional<z.ZodString>;
|
|
4830
|
+
phone: z.ZodOptional<z.ZodString>;
|
|
4831
|
+
source: z.ZodOptional<z.ZodString>;
|
|
4832
|
+
}, z.core.$strip>>>;
|
|
4833
|
+
id: z.ZodString;
|
|
4834
|
+
location: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4835
|
+
identifier: z.ZodString;
|
|
4836
|
+
id: z.ZodString;
|
|
4837
|
+
isApproximate: z.ZodOptional<z.ZodBoolean>;
|
|
4838
|
+
components: z.ZodOptional<z.ZodObject<{
|
|
4839
|
+
'ISO_3166-1_alpha-2': z.ZodOptional<z.ZodString>;
|
|
4840
|
+
'ISO_3166-1_alpha-3': z.ZodOptional<z.ZodString>;
|
|
4841
|
+
'ISO_3166-2': z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4842
|
+
_category: z.ZodOptional<z.ZodString>;
|
|
4843
|
+
_normalized_city: z.ZodOptional<z.ZodString>;
|
|
4844
|
+
_type: z.ZodString;
|
|
4845
|
+
city: z.ZodOptional<z.ZodString>;
|
|
4846
|
+
continent: z.ZodOptional<z.ZodString>;
|
|
4847
|
+
country: z.ZodOptional<z.ZodString>;
|
|
4848
|
+
country_code: z.ZodOptional<z.ZodString>;
|
|
4849
|
+
state_code: z.ZodOptional<z.ZodString>;
|
|
4850
|
+
county: z.ZodOptional<z.ZodString>;
|
|
4851
|
+
municipality: z.ZodOptional<z.ZodString>;
|
|
4852
|
+
political_union: z.ZodOptional<z.ZodString>;
|
|
4853
|
+
state: z.ZodOptional<z.ZodString>;
|
|
4854
|
+
state_district: z.ZodOptional<z.ZodString>;
|
|
4855
|
+
}, z.core.$strip>>;
|
|
4856
|
+
geometry: z.ZodOptional<z.ZodObject<{
|
|
4857
|
+
lat: z.ZodNumber;
|
|
4858
|
+
lng: z.ZodNumber;
|
|
4859
|
+
}, z.core.$strip>>;
|
|
4860
|
+
override: z.ZodOptional<z.ZodBoolean>;
|
|
4861
|
+
accuracy: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4862
|
+
identifier: z.ZodString;
|
|
4863
|
+
id: z.ZodEnum<{
|
|
4864
|
+
location_accuracy_a: import("../entity").LocationAccuracy.A;
|
|
4865
|
+
location_accuracy_b: import("../entity").LocationAccuracy.B;
|
|
4866
|
+
location_accuracy_c: import("../entity").LocationAccuracy.C;
|
|
4867
|
+
location_accuracy_not_determined: import("../entity").LocationAccuracy.NOT_DETERMINED;
|
|
4868
|
+
}>;
|
|
4869
|
+
}, z.core.$strip>>>;
|
|
4870
|
+
source: z.ZodOptional<z.ZodString>;
|
|
4871
|
+
}, z.core.$strip>>>;
|
|
4872
|
+
country: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4873
|
+
identifier: z.ZodString;
|
|
4874
|
+
id: z.ZodString;
|
|
4875
|
+
}, z.core.$strip>>>;
|
|
4876
|
+
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
4877
|
+
filename: z.ZodString;
|
|
4878
|
+
created: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4879
|
+
document_id: z.ZodString;
|
|
4880
|
+
mimetype: z.ZodString;
|
|
4881
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
4882
|
+
type: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4883
|
+
key: z.ZodOptional<z.ZodString>;
|
|
4884
|
+
userName: z.ZodOptional<z.ZodString>;
|
|
4885
|
+
url: z.ZodOptional<z.ZodString>;
|
|
4886
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
4887
|
+
file: z.ZodOptional<z.ZodString>;
|
|
4888
|
+
url: z.ZodString;
|
|
4889
|
+
created: z.ZodOptional<z.ZodString>;
|
|
4890
|
+
type: z.ZodArray<z.ZodString>;
|
|
4891
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
4892
|
+
documentDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4893
|
+
source: z.ZodOptional<z.ZodString>;
|
|
4894
|
+
id: z.ZodOptional<z.ZodString>;
|
|
4895
|
+
}, z.core.$strip>]>>>;
|
|
4896
|
+
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4897
|
+
identifier: z.ZodString;
|
|
4898
|
+
id: z.ZodString;
|
|
4899
|
+
role: z.ZodString;
|
|
4900
|
+
ref: z.ZodOptional<z.ZodString>;
|
|
4901
|
+
}, z.core.$strip>>>;
|
|
4902
|
+
queueApplications: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4903
|
+
queueKey: z.ZodOptional<z.ZodString>;
|
|
4904
|
+
applicationId: z.ZodOptional<z.ZodString>;
|
|
4905
|
+
queueDataset: z.ZodOptional<z.ZodString>;
|
|
4906
|
+
id: z.ZodString;
|
|
4907
|
+
identifier: z.ZodString;
|
|
4908
|
+
}, z.core.$strip>>>;
|
|
4909
|
+
audiences: z.ZodArray<z.ZodObject<{
|
|
4910
|
+
identifier: z.ZodString;
|
|
4911
|
+
id: z.ZodString;
|
|
4912
|
+
}, z.core.$strip>>;
|
|
4913
|
+
headline: z.ZodString;
|
|
4914
|
+
schema: z.ZodLiteral<"apac_signal">;
|
|
4915
|
+
allSectors: z.ZodOptional<z.ZodString>;
|
|
4916
|
+
commercialOperationDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4917
|
+
facilityAddress: z.ZodOptional<z.ZodObject<{
|
|
4918
|
+
full: z.ZodOptional<z.ZodString>;
|
|
4919
|
+
city: z.ZodOptional<z.ZodString>;
|
|
4920
|
+
state: z.ZodOptional<z.ZodString>;
|
|
4921
|
+
street: z.ZodOptional<z.ZodString>;
|
|
4922
|
+
street2: z.ZodOptional<z.ZodString>;
|
|
4923
|
+
zip: z.ZodOptional<z.ZodString>;
|
|
4924
|
+
country: z.ZodOptional<z.ZodString>;
|
|
4925
|
+
latitude: z.ZodOptional<z.ZodNumber>;
|
|
4926
|
+
longitude: z.ZodOptional<z.ZodNumber>;
|
|
4927
|
+
}, z.core.$strip>>;
|
|
4928
|
+
facilityName: z.ZodOptional<z.ZodString>;
|
|
4929
|
+
filingDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4930
|
+
geo: z.ZodObject<{
|
|
4931
|
+
default: z.ZodOptional<z.ZodObject<{
|
|
4932
|
+
lat: z.ZodNumber;
|
|
4933
|
+
lon: z.ZodNumber;
|
|
4934
|
+
}, z.core.$strip>>;
|
|
4935
|
+
defaultValue: z.ZodOptional<z.ZodString>;
|
|
4936
|
+
location: z.ZodOptional<z.ZodObject<{
|
|
4937
|
+
lat: z.ZodNumber;
|
|
4938
|
+
lon: z.ZodNumber;
|
|
4939
|
+
}, z.core.$strip>>;
|
|
4940
|
+
facility: z.ZodOptional<z.ZodObject<{
|
|
4941
|
+
lat: z.ZodNumber;
|
|
4942
|
+
lon: z.ZodNumber;
|
|
4943
|
+
}, z.core.$strip>>;
|
|
4944
|
+
county: z.ZodOptional<z.ZodObject<{
|
|
4945
|
+
lat: z.ZodNumber;
|
|
4946
|
+
lon: z.ZodNumber;
|
|
4947
|
+
}, z.core.$strip>>;
|
|
4948
|
+
}, z.core.$strip>;
|
|
4949
|
+
mw: z.ZodOptional<z.ZodNumber>;
|
|
4950
|
+
publishedDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4951
|
+
totals: z.ZodOptional<z.ZodObject<{
|
|
4952
|
+
projects: z.ZodOptional<z.ZodNumber>;
|
|
4953
|
+
keyPeople: z.ZodOptional<z.ZodNumber>;
|
|
4954
|
+
documents: z.ZodOptional<z.ZodNumber>;
|
|
4955
|
+
organizations: z.ZodOptional<z.ZodNumber>;
|
|
4956
|
+
queueApplications: z.ZodOptional<z.ZodNumber>;
|
|
4957
|
+
intels: z.ZodOptional<z.ZodNumber>;
|
|
4958
|
+
signals: z.ZodOptional<z.ZodNumber>;
|
|
4959
|
+
developer: z.ZodOptional<z.ZodNumber>;
|
|
4960
|
+
developers: z.ZodOptional<z.ZodNumber>;
|
|
4961
|
+
utility: z.ZodOptional<z.ZodNumber>;
|
|
4962
|
+
offtaker: z.ZodOptional<z.ZodNumber>;
|
|
4963
|
+
epc: z.ZodOptional<z.ZodNumber>;
|
|
4964
|
+
puc: z.ZodOptional<z.ZodNumber>;
|
|
4965
|
+
}, z.core.$strip>>;
|
|
4966
|
+
$organizations: z.ZodOptional<z.ZodString>;
|
|
4967
|
+
body: z.ZodOptional<z.ZodString>;
|
|
4968
|
+
projectPipeline: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4969
|
+
identifier: z.ZodString;
|
|
4970
|
+
id: z.ZodString;
|
|
4971
|
+
}, z.core.$strip>>>;
|
|
4972
|
+
updated: z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>;
|
|
4973
|
+
}, z.core.$strict>]>;
|
|
4974
|
+
export declare const signalDetailsUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
4975
|
+
type: z.ZodOptional<z.ZodObject<{
|
|
4976
|
+
identifier: z.ZodString;
|
|
4977
|
+
id: z.ZodString;
|
|
4978
|
+
}, z.core.$strip>>;
|
|
4979
|
+
subType: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4980
|
+
identifier: z.ZodString;
|
|
4981
|
+
id: z.ZodString;
|
|
4982
|
+
}, z.core.$strip>>>;
|
|
4983
|
+
sectors: z.ZodArray<z.ZodObject<{
|
|
4984
|
+
identifier: z.ZodString;
|
|
4985
|
+
id: z.ZodString;
|
|
4986
|
+
}, z.core.$strip>>;
|
|
4987
|
+
keyPeople: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4988
|
+
id: z.ZodOptional<z.ZodString>;
|
|
4989
|
+
identifier: z.ZodOptional<z.ZodString>;
|
|
4990
|
+
linkedinUrl: z.ZodOptional<z.ZodString>;
|
|
4991
|
+
role: z.ZodOptional<z.ZodString>;
|
|
4992
|
+
fullName: z.ZodOptional<z.ZodString>;
|
|
4993
|
+
email: z.ZodOptional<z.ZodString>;
|
|
4994
|
+
phone: z.ZodOptional<z.ZodString>;
|
|
4995
|
+
source: z.ZodOptional<z.ZodString>;
|
|
4996
|
+
}, z.core.$strip>>>;
|
|
4997
|
+
id: z.ZodString;
|
|
4998
|
+
location: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4999
|
+
identifier: z.ZodString;
|
|
5000
|
+
id: z.ZodString;
|
|
5001
|
+
isApproximate: z.ZodOptional<z.ZodBoolean>;
|
|
5002
|
+
components: z.ZodOptional<z.ZodObject<{
|
|
5003
|
+
'ISO_3166-1_alpha-2': z.ZodOptional<z.ZodString>;
|
|
5004
|
+
'ISO_3166-1_alpha-3': z.ZodOptional<z.ZodString>;
|
|
5005
|
+
'ISO_3166-2': z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
5006
|
+
_category: z.ZodOptional<z.ZodString>;
|
|
5007
|
+
_normalized_city: z.ZodOptional<z.ZodString>;
|
|
5008
|
+
_type: z.ZodString;
|
|
5009
|
+
city: z.ZodOptional<z.ZodString>;
|
|
5010
|
+
continent: z.ZodOptional<z.ZodString>;
|
|
5011
|
+
country: z.ZodOptional<z.ZodString>;
|
|
5012
|
+
country_code: z.ZodOptional<z.ZodString>;
|
|
5013
|
+
state_code: z.ZodOptional<z.ZodString>;
|
|
5014
|
+
county: z.ZodOptional<z.ZodString>;
|
|
5015
|
+
municipality: z.ZodOptional<z.ZodString>;
|
|
5016
|
+
political_union: z.ZodOptional<z.ZodString>;
|
|
5017
|
+
state: z.ZodOptional<z.ZodString>;
|
|
5018
|
+
state_district: z.ZodOptional<z.ZodString>;
|
|
5019
|
+
}, z.core.$strip>>;
|
|
5020
|
+
geometry: z.ZodOptional<z.ZodObject<{
|
|
5021
|
+
lat: z.ZodNumber;
|
|
5022
|
+
lng: z.ZodNumber;
|
|
5023
|
+
}, z.core.$strip>>;
|
|
5024
|
+
override: z.ZodOptional<z.ZodBoolean>;
|
|
5025
|
+
accuracy: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5026
|
+
identifier: z.ZodString;
|
|
5027
|
+
id: z.ZodEnum<{
|
|
5028
|
+
location_accuracy_a: import("../entity").LocationAccuracy.A;
|
|
5029
|
+
location_accuracy_b: import("../entity").LocationAccuracy.B;
|
|
5030
|
+
location_accuracy_c: import("../entity").LocationAccuracy.C;
|
|
5031
|
+
location_accuracy_not_determined: import("../entity").LocationAccuracy.NOT_DETERMINED;
|
|
5032
|
+
}>;
|
|
5033
|
+
}, z.core.$strip>>>;
|
|
5034
|
+
source: z.ZodOptional<z.ZodString>;
|
|
5035
|
+
}, z.core.$strip>>>;
|
|
5036
|
+
country: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5037
|
+
identifier: z.ZodString;
|
|
5038
|
+
id: z.ZodString;
|
|
5039
|
+
}, z.core.$strip>>>;
|
|
5040
|
+
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
5041
|
+
filename: z.ZodString;
|
|
5042
|
+
created: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
5043
|
+
document_id: z.ZodString;
|
|
5044
|
+
mimetype: z.ZodString;
|
|
5045
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
5046
|
+
type: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
5047
|
+
key: z.ZodOptional<z.ZodString>;
|
|
5048
|
+
userName: z.ZodOptional<z.ZodString>;
|
|
5049
|
+
url: z.ZodOptional<z.ZodString>;
|
|
5050
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
5051
|
+
file: z.ZodOptional<z.ZodString>;
|
|
5052
|
+
url: z.ZodString;
|
|
5053
|
+
created: z.ZodOptional<z.ZodString>;
|
|
5054
|
+
type: z.ZodArray<z.ZodString>;
|
|
5055
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
5056
|
+
documentDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
5057
|
+
source: z.ZodOptional<z.ZodString>;
|
|
5058
|
+
id: z.ZodOptional<z.ZodString>;
|
|
5059
|
+
}, z.core.$strip>]>>>;
|
|
5060
|
+
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5061
|
+
identifier: z.ZodString;
|
|
5062
|
+
id: z.ZodString;
|
|
5063
|
+
role: z.ZodString;
|
|
5064
|
+
ref: z.ZodOptional<z.ZodString>;
|
|
5065
|
+
}, z.core.$strip>>>;
|
|
5066
|
+
queueApplications: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5067
|
+
queueKey: z.ZodOptional<z.ZodString>;
|
|
5068
|
+
applicationId: z.ZodOptional<z.ZodString>;
|
|
5069
|
+
queueDataset: z.ZodOptional<z.ZodString>;
|
|
5070
|
+
id: z.ZodString;
|
|
5071
|
+
identifier: z.ZodString;
|
|
5072
|
+
}, z.core.$strip>>>;
|
|
5073
|
+
audiences: z.ZodArray<z.ZodObject<{
|
|
5074
|
+
identifier: z.ZodString;
|
|
5075
|
+
id: z.ZodString;
|
|
5076
|
+
}, z.core.$strip>>;
|
|
5077
|
+
headline: z.ZodString;
|
|
5078
|
+
schema: z.ZodLiteral<"eu_signal">;
|
|
5079
|
+
allSectors: z.ZodOptional<z.ZodString>;
|
|
5080
|
+
commercialOperationDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
5081
|
+
facilityAddress: z.ZodOptional<z.ZodObject<{
|
|
5082
|
+
full: z.ZodOptional<z.ZodString>;
|
|
5083
|
+
city: z.ZodOptional<z.ZodString>;
|
|
5084
|
+
state: z.ZodOptional<z.ZodString>;
|
|
5085
|
+
street: z.ZodOptional<z.ZodString>;
|
|
5086
|
+
street2: z.ZodOptional<z.ZodString>;
|
|
5087
|
+
zip: z.ZodOptional<z.ZodString>;
|
|
5088
|
+
country: z.ZodOptional<z.ZodString>;
|
|
5089
|
+
latitude: z.ZodOptional<z.ZodNumber>;
|
|
5090
|
+
longitude: z.ZodOptional<z.ZodNumber>;
|
|
5091
|
+
}, z.core.$strip>>;
|
|
5092
|
+
facilityName: z.ZodOptional<z.ZodString>;
|
|
5093
|
+
filingDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
5094
|
+
geo: z.ZodObject<{
|
|
5095
|
+
default: z.ZodOptional<z.ZodObject<{
|
|
5096
|
+
lat: z.ZodNumber;
|
|
5097
|
+
lon: z.ZodNumber;
|
|
5098
|
+
}, z.core.$strip>>;
|
|
5099
|
+
defaultValue: z.ZodOptional<z.ZodString>;
|
|
5100
|
+
location: z.ZodOptional<z.ZodObject<{
|
|
5101
|
+
lat: z.ZodNumber;
|
|
5102
|
+
lon: z.ZodNumber;
|
|
5103
|
+
}, z.core.$strip>>;
|
|
5104
|
+
facility: z.ZodOptional<z.ZodObject<{
|
|
5105
|
+
lat: z.ZodNumber;
|
|
5106
|
+
lon: z.ZodNumber;
|
|
5107
|
+
}, z.core.$strip>>;
|
|
5108
|
+
county: z.ZodOptional<z.ZodObject<{
|
|
5109
|
+
lat: z.ZodNumber;
|
|
5110
|
+
lon: z.ZodNumber;
|
|
5111
|
+
}, z.core.$strip>>;
|
|
5112
|
+
}, z.core.$strip>;
|
|
5113
|
+
mw: z.ZodOptional<z.ZodNumber>;
|
|
5114
|
+
publishedDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
5115
|
+
totals: z.ZodOptional<z.ZodObject<{
|
|
5116
|
+
projects: z.ZodOptional<z.ZodNumber>;
|
|
5117
|
+
keyPeople: z.ZodOptional<z.ZodNumber>;
|
|
5118
|
+
documents: z.ZodOptional<z.ZodNumber>;
|
|
5119
|
+
organizations: z.ZodOptional<z.ZodNumber>;
|
|
5120
|
+
queueApplications: z.ZodOptional<z.ZodNumber>;
|
|
5121
|
+
intels: z.ZodOptional<z.ZodNumber>;
|
|
5122
|
+
signals: z.ZodOptional<z.ZodNumber>;
|
|
5123
|
+
developer: z.ZodOptional<z.ZodNumber>;
|
|
5124
|
+
developers: z.ZodOptional<z.ZodNumber>;
|
|
5125
|
+
utility: z.ZodOptional<z.ZodNumber>;
|
|
5126
|
+
offtaker: z.ZodOptional<z.ZodNumber>;
|
|
5127
|
+
epc: z.ZodOptional<z.ZodNumber>;
|
|
5128
|
+
puc: z.ZodOptional<z.ZodNumber>;
|
|
5129
|
+
}, z.core.$strip>>;
|
|
5130
|
+
$organizations: z.ZodOptional<z.ZodString>;
|
|
5131
|
+
body: z.ZodOptional<z.ZodString>;
|
|
5132
|
+
projectPipeline: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5133
|
+
identifier: z.ZodString;
|
|
5134
|
+
id: z.ZodString;
|
|
5135
|
+
}, z.core.$strip>>>;
|
|
5136
|
+
updated: z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>;
|
|
5137
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
5138
|
+
type: z.ZodOptional<z.ZodObject<{
|
|
5139
|
+
identifier: z.ZodString;
|
|
5140
|
+
id: z.ZodString;
|
|
5141
|
+
}, z.core.$strip>>;
|
|
5142
|
+
subType: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5143
|
+
identifier: z.ZodString;
|
|
5144
|
+
id: z.ZodString;
|
|
5145
|
+
}, z.core.$strip>>>;
|
|
5146
|
+
sectors: z.ZodArray<z.ZodObject<{
|
|
5147
|
+
identifier: z.ZodString;
|
|
5148
|
+
id: z.ZodString;
|
|
5149
|
+
}, z.core.$strip>>;
|
|
5150
|
+
state: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5151
|
+
identifier: z.ZodString;
|
|
5152
|
+
id: z.ZodString;
|
|
5153
|
+
}, z.core.$strip>>>;
|
|
5154
|
+
county: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5155
|
+
identifier: z.ZodString;
|
|
5156
|
+
id: z.ZodString;
|
|
5157
|
+
}, z.core.$strip>>>;
|
|
5158
|
+
keyPeople: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5159
|
+
id: z.ZodOptional<z.ZodString>;
|
|
5160
|
+
identifier: z.ZodOptional<z.ZodString>;
|
|
5161
|
+
linkedinUrl: z.ZodOptional<z.ZodString>;
|
|
5162
|
+
role: z.ZodOptional<z.ZodString>;
|
|
5163
|
+
fullName: z.ZodOptional<z.ZodString>;
|
|
5164
|
+
email: z.ZodOptional<z.ZodString>;
|
|
5165
|
+
phone: z.ZodOptional<z.ZodString>;
|
|
5166
|
+
source: z.ZodOptional<z.ZodString>;
|
|
5167
|
+
}, z.core.$strip>>>;
|
|
5168
|
+
id: z.ZodString;
|
|
5169
|
+
location: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5170
|
+
identifier: z.ZodString;
|
|
5171
|
+
id: z.ZodString;
|
|
5172
|
+
isApproximate: z.ZodOptional<z.ZodBoolean>;
|
|
5173
|
+
components: z.ZodOptional<z.ZodObject<{
|
|
5174
|
+
'ISO_3166-1_alpha-2': z.ZodOptional<z.ZodString>;
|
|
5175
|
+
'ISO_3166-1_alpha-3': z.ZodOptional<z.ZodString>;
|
|
5176
|
+
'ISO_3166-2': z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
5177
|
+
_category: z.ZodOptional<z.ZodString>;
|
|
5178
|
+
_normalized_city: z.ZodOptional<z.ZodString>;
|
|
5179
|
+
_type: z.ZodString;
|
|
5180
|
+
city: z.ZodOptional<z.ZodString>;
|
|
5181
|
+
continent: z.ZodOptional<z.ZodString>;
|
|
5182
|
+
country: z.ZodOptional<z.ZodString>;
|
|
5183
|
+
country_code: z.ZodOptional<z.ZodString>;
|
|
5184
|
+
state_code: z.ZodOptional<z.ZodString>;
|
|
5185
|
+
county: z.ZodOptional<z.ZodString>;
|
|
5186
|
+
municipality: z.ZodOptional<z.ZodString>;
|
|
5187
|
+
political_union: z.ZodOptional<z.ZodString>;
|
|
5188
|
+
state: z.ZodOptional<z.ZodString>;
|
|
5189
|
+
state_district: z.ZodOptional<z.ZodString>;
|
|
5190
|
+
}, z.core.$strip>>;
|
|
5191
|
+
geometry: z.ZodOptional<z.ZodObject<{
|
|
5192
|
+
lat: z.ZodNumber;
|
|
5193
|
+
lng: z.ZodNumber;
|
|
5194
|
+
}, z.core.$strip>>;
|
|
5195
|
+
override: z.ZodOptional<z.ZodBoolean>;
|
|
5196
|
+
accuracy: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5197
|
+
identifier: z.ZodString;
|
|
5198
|
+
id: z.ZodEnum<{
|
|
5199
|
+
location_accuracy_a: import("../entity").LocationAccuracy.A;
|
|
5200
|
+
location_accuracy_b: import("../entity").LocationAccuracy.B;
|
|
5201
|
+
location_accuracy_c: import("../entity").LocationAccuracy.C;
|
|
5202
|
+
location_accuracy_not_determined: import("../entity").LocationAccuracy.NOT_DETERMINED;
|
|
5203
|
+
}>;
|
|
5204
|
+
}, z.core.$strip>>>;
|
|
5205
|
+
source: z.ZodOptional<z.ZodString>;
|
|
5206
|
+
}, z.core.$strip>>>;
|
|
5207
|
+
country: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5208
|
+
identifier: z.ZodString;
|
|
5209
|
+
id: z.ZodString;
|
|
5210
|
+
}, z.core.$strip>>>;
|
|
5211
|
+
projects: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5212
|
+
identifier: z.ZodString;
|
|
5213
|
+
id: z.ZodString;
|
|
5214
|
+
}, z.core.$strip>>>;
|
|
5215
|
+
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
5216
|
+
filename: z.ZodString;
|
|
5217
|
+
created: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
5218
|
+
document_id: z.ZodString;
|
|
5219
|
+
mimetype: z.ZodString;
|
|
5220
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
5221
|
+
type: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
5222
|
+
key: z.ZodOptional<z.ZodString>;
|
|
5223
|
+
userName: z.ZodOptional<z.ZodString>;
|
|
5224
|
+
url: z.ZodOptional<z.ZodString>;
|
|
5225
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
5226
|
+
file: z.ZodOptional<z.ZodString>;
|
|
5227
|
+
url: z.ZodString;
|
|
5228
|
+
created: z.ZodOptional<z.ZodString>;
|
|
5229
|
+
type: z.ZodArray<z.ZodString>;
|
|
5230
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
5231
|
+
documentDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
5232
|
+
source: z.ZodOptional<z.ZodString>;
|
|
5233
|
+
id: z.ZodOptional<z.ZodString>;
|
|
5234
|
+
}, z.core.$strip>]>>>;
|
|
5235
|
+
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5236
|
+
identifier: z.ZodString;
|
|
5237
|
+
id: z.ZodString;
|
|
5238
|
+
role: z.ZodString;
|
|
5239
|
+
ref: z.ZodOptional<z.ZodString>;
|
|
5240
|
+
}, z.core.$strip>>>;
|
|
5241
|
+
queueApplications: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5242
|
+
queueKey: z.ZodOptional<z.ZodString>;
|
|
5243
|
+
applicationId: z.ZodOptional<z.ZodString>;
|
|
5244
|
+
queueDataset: z.ZodOptional<z.ZodString>;
|
|
5245
|
+
id: z.ZodString;
|
|
5246
|
+
identifier: z.ZodString;
|
|
5247
|
+
}, z.core.$strip>>>;
|
|
5248
|
+
audiences: z.ZodArray<z.ZodObject<{
|
|
5249
|
+
identifier: z.ZodString;
|
|
5250
|
+
id: z.ZodString;
|
|
5251
|
+
}, z.core.$strip>>;
|
|
5252
|
+
headline: z.ZodString;
|
|
5253
|
+
schema: z.ZodLiteral<"us_signal">;
|
|
5254
|
+
allSectors: z.ZodOptional<z.ZodString>;
|
|
5255
|
+
commercialOperationDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
5256
|
+
facilityAddress: z.ZodOptional<z.ZodObject<{
|
|
5257
|
+
full: z.ZodOptional<z.ZodString>;
|
|
5258
|
+
city: z.ZodOptional<z.ZodString>;
|
|
5259
|
+
state: z.ZodOptional<z.ZodString>;
|
|
5260
|
+
street: z.ZodOptional<z.ZodString>;
|
|
5261
|
+
street2: z.ZodOptional<z.ZodString>;
|
|
5262
|
+
zip: z.ZodOptional<z.ZodString>;
|
|
5263
|
+
country: z.ZodOptional<z.ZodString>;
|
|
5264
|
+
latitude: z.ZodOptional<z.ZodNumber>;
|
|
5265
|
+
longitude: z.ZodOptional<z.ZodNumber>;
|
|
5266
|
+
}, z.core.$strip>>;
|
|
5267
|
+
facilityName: z.ZodOptional<z.ZodString>;
|
|
5268
|
+
filingDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
5269
|
+
geo: z.ZodObject<{
|
|
5270
|
+
default: z.ZodOptional<z.ZodObject<{
|
|
5271
|
+
lat: z.ZodNumber;
|
|
5272
|
+
lon: z.ZodNumber;
|
|
5273
|
+
}, z.core.$strip>>;
|
|
5274
|
+
defaultValue: z.ZodOptional<z.ZodString>;
|
|
5275
|
+
location: z.ZodOptional<z.ZodObject<{
|
|
5276
|
+
lat: z.ZodNumber;
|
|
5277
|
+
lon: z.ZodNumber;
|
|
5278
|
+
}, z.core.$strip>>;
|
|
5279
|
+
facility: z.ZodOptional<z.ZodObject<{
|
|
5280
|
+
lat: z.ZodNumber;
|
|
5281
|
+
lon: z.ZodNumber;
|
|
5282
|
+
}, z.core.$strip>>;
|
|
5283
|
+
county: z.ZodOptional<z.ZodObject<{
|
|
5284
|
+
lat: z.ZodNumber;
|
|
5285
|
+
lon: z.ZodNumber;
|
|
5286
|
+
}, z.core.$strip>>;
|
|
5287
|
+
}, z.core.$strip>;
|
|
5288
|
+
mw: z.ZodOptional<z.ZodNumber>;
|
|
5289
|
+
publishedDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
5290
|
+
totals: z.ZodOptional<z.ZodObject<{
|
|
5291
|
+
projects: z.ZodOptional<z.ZodNumber>;
|
|
5292
|
+
keyPeople: z.ZodOptional<z.ZodNumber>;
|
|
5293
|
+
documents: z.ZodOptional<z.ZodNumber>;
|
|
5294
|
+
organizations: z.ZodOptional<z.ZodNumber>;
|
|
5295
|
+
queueApplications: z.ZodOptional<z.ZodNumber>;
|
|
5296
|
+
intels: z.ZodOptional<z.ZodNumber>;
|
|
5297
|
+
signals: z.ZodOptional<z.ZodNumber>;
|
|
5298
|
+
developer: z.ZodOptional<z.ZodNumber>;
|
|
5299
|
+
developers: z.ZodOptional<z.ZodNumber>;
|
|
5300
|
+
utility: z.ZodOptional<z.ZodNumber>;
|
|
5301
|
+
offtaker: z.ZodOptional<z.ZodNumber>;
|
|
5302
|
+
epc: z.ZodOptional<z.ZodNumber>;
|
|
5303
|
+
puc: z.ZodOptional<z.ZodNumber>;
|
|
5304
|
+
}, z.core.$strip>>;
|
|
5305
|
+
$organizations: z.ZodOptional<z.ZodString>;
|
|
5306
|
+
body: z.ZodOptional<z.ZodString>;
|
|
5307
|
+
projectPipeline: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5308
|
+
identifier: z.ZodString;
|
|
5309
|
+
id: z.ZodString;
|
|
5310
|
+
}, z.core.$strip>>>;
|
|
5311
|
+
updated: z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>;
|
|
5312
|
+
countyBoard: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5313
|
+
identifier: z.ZodString;
|
|
5314
|
+
id: z.ZodString;
|
|
5315
|
+
}, z.core.$strip>>>;
|
|
5316
|
+
pucTracker: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5317
|
+
identifier: z.ZodString;
|
|
5318
|
+
id: z.ZodString;
|
|
5319
|
+
}, z.core.$strip>>>;
|
|
5320
|
+
schoolDistrict: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5321
|
+
identifier: z.ZodString;
|
|
5322
|
+
id: z.ZodString;
|
|
5323
|
+
}, z.core.$strip>>>;
|
|
5324
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
5325
|
+
type: z.ZodOptional<z.ZodObject<{
|
|
5326
|
+
identifier: z.ZodString;
|
|
5327
|
+
id: z.ZodString;
|
|
5328
|
+
}, z.core.$strip>>;
|
|
5329
|
+
subType: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5330
|
+
identifier: z.ZodString;
|
|
5331
|
+
id: z.ZodString;
|
|
5332
|
+
}, z.core.$strip>>>;
|
|
5333
|
+
sectors: z.ZodArray<z.ZodObject<{
|
|
5334
|
+
identifier: z.ZodString;
|
|
5335
|
+
id: z.ZodString;
|
|
5336
|
+
}, z.core.$strip>>;
|
|
5337
|
+
state: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5338
|
+
identifier: z.ZodString;
|
|
5339
|
+
id: z.ZodString;
|
|
5340
|
+
}, z.core.$strip>>>;
|
|
5341
|
+
county: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5342
|
+
identifier: z.ZodString;
|
|
5343
|
+
id: z.ZodString;
|
|
5344
|
+
}, z.core.$strip>>>;
|
|
5345
|
+
keyPeople: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5346
|
+
id: z.ZodOptional<z.ZodString>;
|
|
5347
|
+
identifier: z.ZodOptional<z.ZodString>;
|
|
5348
|
+
linkedinUrl: z.ZodOptional<z.ZodString>;
|
|
5349
|
+
role: z.ZodOptional<z.ZodString>;
|
|
5350
|
+
fullName: z.ZodOptional<z.ZodString>;
|
|
5351
|
+
email: z.ZodOptional<z.ZodString>;
|
|
5352
|
+
phone: z.ZodOptional<z.ZodString>;
|
|
5353
|
+
source: z.ZodOptional<z.ZodString>;
|
|
5354
|
+
}, z.core.$strip>>>;
|
|
5355
|
+
id: z.ZodString;
|
|
5356
|
+
location: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5357
|
+
identifier: z.ZodString;
|
|
5358
|
+
id: z.ZodString;
|
|
5359
|
+
isApproximate: z.ZodOptional<z.ZodBoolean>;
|
|
5360
|
+
components: z.ZodOptional<z.ZodObject<{
|
|
5361
|
+
'ISO_3166-1_alpha-2': z.ZodOptional<z.ZodString>;
|
|
5362
|
+
'ISO_3166-1_alpha-3': z.ZodOptional<z.ZodString>;
|
|
5363
|
+
'ISO_3166-2': z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
5364
|
+
_category: z.ZodOptional<z.ZodString>;
|
|
5365
|
+
_normalized_city: z.ZodOptional<z.ZodString>;
|
|
5366
|
+
_type: z.ZodString;
|
|
5367
|
+
city: z.ZodOptional<z.ZodString>;
|
|
5368
|
+
continent: z.ZodOptional<z.ZodString>;
|
|
5369
|
+
country: z.ZodOptional<z.ZodString>;
|
|
5370
|
+
country_code: z.ZodOptional<z.ZodString>;
|
|
5371
|
+
state_code: z.ZodOptional<z.ZodString>;
|
|
5372
|
+
county: z.ZodOptional<z.ZodString>;
|
|
5373
|
+
municipality: z.ZodOptional<z.ZodString>;
|
|
5374
|
+
political_union: z.ZodOptional<z.ZodString>;
|
|
5375
|
+
state: z.ZodOptional<z.ZodString>;
|
|
5376
|
+
state_district: z.ZodOptional<z.ZodString>;
|
|
5377
|
+
}, z.core.$strip>>;
|
|
5378
|
+
geometry: z.ZodOptional<z.ZodObject<{
|
|
5379
|
+
lat: z.ZodNumber;
|
|
5380
|
+
lng: z.ZodNumber;
|
|
5381
|
+
}, z.core.$strip>>;
|
|
5382
|
+
override: z.ZodOptional<z.ZodBoolean>;
|
|
5383
|
+
accuracy: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5384
|
+
identifier: z.ZodString;
|
|
5385
|
+
id: z.ZodEnum<{
|
|
5386
|
+
location_accuracy_a: import("../entity").LocationAccuracy.A;
|
|
5387
|
+
location_accuracy_b: import("../entity").LocationAccuracy.B;
|
|
5388
|
+
location_accuracy_c: import("../entity").LocationAccuracy.C;
|
|
5389
|
+
location_accuracy_not_determined: import("../entity").LocationAccuracy.NOT_DETERMINED;
|
|
5390
|
+
}>;
|
|
5391
|
+
}, z.core.$strip>>>;
|
|
5392
|
+
source: z.ZodOptional<z.ZodString>;
|
|
5393
|
+
}, z.core.$strip>>>;
|
|
5394
|
+
country: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5395
|
+
identifier: z.ZodString;
|
|
5396
|
+
id: z.ZodString;
|
|
5397
|
+
}, z.core.$strip>>>;
|
|
5398
|
+
projects: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5399
|
+
identifier: z.ZodString;
|
|
5400
|
+
id: z.ZodString;
|
|
5401
|
+
}, z.core.$strip>>>;
|
|
5402
|
+
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
5403
|
+
filename: z.ZodString;
|
|
5404
|
+
created: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
5405
|
+
document_id: z.ZodString;
|
|
5406
|
+
mimetype: z.ZodString;
|
|
5407
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
5408
|
+
type: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
5409
|
+
key: z.ZodOptional<z.ZodString>;
|
|
5410
|
+
userName: z.ZodOptional<z.ZodString>;
|
|
5411
|
+
url: z.ZodOptional<z.ZodString>;
|
|
5412
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
5413
|
+
file: z.ZodOptional<z.ZodString>;
|
|
5414
|
+
url: z.ZodString;
|
|
5415
|
+
created: z.ZodOptional<z.ZodString>;
|
|
5416
|
+
type: z.ZodArray<z.ZodString>;
|
|
5417
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
5418
|
+
documentDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
5419
|
+
source: z.ZodOptional<z.ZodString>;
|
|
5420
|
+
id: z.ZodOptional<z.ZodString>;
|
|
5421
|
+
}, z.core.$strip>]>>>;
|
|
5422
|
+
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5423
|
+
identifier: z.ZodString;
|
|
5424
|
+
id: z.ZodString;
|
|
5425
|
+
role: z.ZodString;
|
|
5426
|
+
ref: z.ZodOptional<z.ZodString>;
|
|
5427
|
+
}, z.core.$strip>>>;
|
|
5428
|
+
queueApplications: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5429
|
+
queueKey: z.ZodOptional<z.ZodString>;
|
|
5430
|
+
applicationId: z.ZodOptional<z.ZodString>;
|
|
5431
|
+
queueDataset: z.ZodOptional<z.ZodString>;
|
|
5432
|
+
id: z.ZodString;
|
|
5433
|
+
identifier: z.ZodString;
|
|
5434
|
+
}, z.core.$strip>>>;
|
|
5435
|
+
audiences: z.ZodArray<z.ZodObject<{
|
|
5436
|
+
identifier: z.ZodString;
|
|
5437
|
+
id: z.ZodString;
|
|
5438
|
+
}, z.core.$strip>>;
|
|
5439
|
+
headline: z.ZodString;
|
|
5440
|
+
schema: z.ZodLiteral<"global_signal">;
|
|
5441
|
+
allSectors: z.ZodOptional<z.ZodString>;
|
|
5442
|
+
commercialOperationDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
5443
|
+
facilityAddress: z.ZodOptional<z.ZodObject<{
|
|
5444
|
+
full: z.ZodOptional<z.ZodString>;
|
|
5445
|
+
city: z.ZodOptional<z.ZodString>;
|
|
5446
|
+
state: z.ZodOptional<z.ZodString>;
|
|
5447
|
+
street: z.ZodOptional<z.ZodString>;
|
|
5448
|
+
street2: z.ZodOptional<z.ZodString>;
|
|
5449
|
+
zip: z.ZodOptional<z.ZodString>;
|
|
5450
|
+
country: z.ZodOptional<z.ZodString>;
|
|
5451
|
+
latitude: z.ZodOptional<z.ZodNumber>;
|
|
5452
|
+
longitude: z.ZodOptional<z.ZodNumber>;
|
|
5453
|
+
}, z.core.$strip>>;
|
|
5454
|
+
facilityName: z.ZodOptional<z.ZodString>;
|
|
5455
|
+
filingDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
5456
|
+
geo: z.ZodObject<{
|
|
5457
|
+
default: z.ZodOptional<z.ZodObject<{
|
|
5458
|
+
lat: z.ZodNumber;
|
|
5459
|
+
lon: z.ZodNumber;
|
|
5460
|
+
}, z.core.$strip>>;
|
|
5461
|
+
defaultValue: z.ZodOptional<z.ZodString>;
|
|
5462
|
+
location: z.ZodOptional<z.ZodObject<{
|
|
5463
|
+
lat: z.ZodNumber;
|
|
5464
|
+
lon: z.ZodNumber;
|
|
5465
|
+
}, z.core.$strip>>;
|
|
5466
|
+
facility: z.ZodOptional<z.ZodObject<{
|
|
5467
|
+
lat: z.ZodNumber;
|
|
5468
|
+
lon: z.ZodNumber;
|
|
5469
|
+
}, z.core.$strip>>;
|
|
5470
|
+
county: z.ZodOptional<z.ZodObject<{
|
|
5471
|
+
lat: z.ZodNumber;
|
|
5472
|
+
lon: z.ZodNumber;
|
|
5473
|
+
}, z.core.$strip>>;
|
|
5474
|
+
}, z.core.$strip>;
|
|
5475
|
+
mw: z.ZodOptional<z.ZodNumber>;
|
|
5476
|
+
publishedDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
5477
|
+
totals: z.ZodOptional<z.ZodObject<{
|
|
5478
|
+
projects: z.ZodOptional<z.ZodNumber>;
|
|
5479
|
+
keyPeople: z.ZodOptional<z.ZodNumber>;
|
|
5480
|
+
documents: z.ZodOptional<z.ZodNumber>;
|
|
5481
|
+
organizations: z.ZodOptional<z.ZodNumber>;
|
|
5482
|
+
queueApplications: z.ZodOptional<z.ZodNumber>;
|
|
5483
|
+
intels: z.ZodOptional<z.ZodNumber>;
|
|
5484
|
+
signals: z.ZodOptional<z.ZodNumber>;
|
|
5485
|
+
developer: z.ZodOptional<z.ZodNumber>;
|
|
5486
|
+
developers: z.ZodOptional<z.ZodNumber>;
|
|
5487
|
+
utility: z.ZodOptional<z.ZodNumber>;
|
|
5488
|
+
offtaker: z.ZodOptional<z.ZodNumber>;
|
|
5489
|
+
epc: z.ZodOptional<z.ZodNumber>;
|
|
5490
|
+
puc: z.ZodOptional<z.ZodNumber>;
|
|
5491
|
+
}, z.core.$strip>>;
|
|
5492
|
+
$organizations: z.ZodOptional<z.ZodString>;
|
|
5493
|
+
body: z.ZodOptional<z.ZodString>;
|
|
5494
|
+
projectPipeline: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5495
|
+
identifier: z.ZodString;
|
|
5496
|
+
id: z.ZodString;
|
|
5497
|
+
}, z.core.$strip>>>;
|
|
5498
|
+
updated: z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>;
|
|
5499
|
+
countyBoard: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5500
|
+
identifier: z.ZodString;
|
|
5501
|
+
id: z.ZodString;
|
|
5502
|
+
}, z.core.$strip>>>;
|
|
5503
|
+
pucTracker: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5504
|
+
identifier: z.ZodString;
|
|
5505
|
+
id: z.ZodString;
|
|
5506
|
+
}, z.core.$strip>>>;
|
|
5507
|
+
schoolDistrict: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5508
|
+
identifier: z.ZodString;
|
|
5509
|
+
id: z.ZodString;
|
|
5510
|
+
}, z.core.$strip>>>;
|
|
5511
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
5512
|
+
type: z.ZodOptional<z.ZodObject<{
|
|
5513
|
+
identifier: z.ZodString;
|
|
5514
|
+
id: z.ZodString;
|
|
5515
|
+
}, z.core.$strip>>;
|
|
5516
|
+
subType: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5517
|
+
identifier: z.ZodString;
|
|
5518
|
+
id: z.ZodString;
|
|
5519
|
+
}, z.core.$strip>>>;
|
|
5520
|
+
sectors: z.ZodArray<z.ZodObject<{
|
|
5521
|
+
identifier: z.ZodString;
|
|
5522
|
+
id: z.ZodString;
|
|
5523
|
+
}, z.core.$strip>>;
|
|
5524
|
+
keyPeople: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5525
|
+
id: z.ZodOptional<z.ZodString>;
|
|
5526
|
+
identifier: z.ZodOptional<z.ZodString>;
|
|
5527
|
+
linkedinUrl: z.ZodOptional<z.ZodString>;
|
|
5528
|
+
role: z.ZodOptional<z.ZodString>;
|
|
5529
|
+
fullName: z.ZodOptional<z.ZodString>;
|
|
5530
|
+
email: z.ZodOptional<z.ZodString>;
|
|
5531
|
+
phone: z.ZodOptional<z.ZodString>;
|
|
5532
|
+
source: z.ZodOptional<z.ZodString>;
|
|
5533
|
+
}, z.core.$strip>>>;
|
|
5534
|
+
id: z.ZodString;
|
|
5535
|
+
location: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5536
|
+
identifier: z.ZodString;
|
|
5537
|
+
id: z.ZodString;
|
|
5538
|
+
isApproximate: z.ZodOptional<z.ZodBoolean>;
|
|
5539
|
+
components: z.ZodOptional<z.ZodObject<{
|
|
5540
|
+
'ISO_3166-1_alpha-2': z.ZodOptional<z.ZodString>;
|
|
5541
|
+
'ISO_3166-1_alpha-3': z.ZodOptional<z.ZodString>;
|
|
5542
|
+
'ISO_3166-2': z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
5543
|
+
_category: z.ZodOptional<z.ZodString>;
|
|
5544
|
+
_normalized_city: z.ZodOptional<z.ZodString>;
|
|
5545
|
+
_type: z.ZodString;
|
|
5546
|
+
city: z.ZodOptional<z.ZodString>;
|
|
5547
|
+
continent: z.ZodOptional<z.ZodString>;
|
|
5548
|
+
country: z.ZodOptional<z.ZodString>;
|
|
5549
|
+
country_code: z.ZodOptional<z.ZodString>;
|
|
5550
|
+
state_code: z.ZodOptional<z.ZodString>;
|
|
5551
|
+
county: z.ZodOptional<z.ZodString>;
|
|
5552
|
+
municipality: z.ZodOptional<z.ZodString>;
|
|
5553
|
+
political_union: z.ZodOptional<z.ZodString>;
|
|
5554
|
+
state: z.ZodOptional<z.ZodString>;
|
|
5555
|
+
state_district: z.ZodOptional<z.ZodString>;
|
|
5556
|
+
}, z.core.$strip>>;
|
|
5557
|
+
geometry: z.ZodOptional<z.ZodObject<{
|
|
5558
|
+
lat: z.ZodNumber;
|
|
5559
|
+
lng: z.ZodNumber;
|
|
5560
|
+
}, z.core.$strip>>;
|
|
5561
|
+
override: z.ZodOptional<z.ZodBoolean>;
|
|
5562
|
+
accuracy: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5563
|
+
identifier: z.ZodString;
|
|
5564
|
+
id: z.ZodEnum<{
|
|
5565
|
+
location_accuracy_a: import("../entity").LocationAccuracy.A;
|
|
5566
|
+
location_accuracy_b: import("../entity").LocationAccuracy.B;
|
|
5567
|
+
location_accuracy_c: import("../entity").LocationAccuracy.C;
|
|
5568
|
+
location_accuracy_not_determined: import("../entity").LocationAccuracy.NOT_DETERMINED;
|
|
5569
|
+
}>;
|
|
5570
|
+
}, z.core.$strip>>>;
|
|
5571
|
+
source: z.ZodOptional<z.ZodString>;
|
|
5572
|
+
}, z.core.$strip>>>;
|
|
5573
|
+
country: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5574
|
+
identifier: z.ZodString;
|
|
5575
|
+
id: z.ZodString;
|
|
5576
|
+
}, z.core.$strip>>>;
|
|
5577
|
+
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
5578
|
+
filename: z.ZodString;
|
|
5579
|
+
created: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
5580
|
+
document_id: z.ZodString;
|
|
5581
|
+
mimetype: z.ZodString;
|
|
5582
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
5583
|
+
type: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
5584
|
+
key: z.ZodOptional<z.ZodString>;
|
|
5585
|
+
userName: z.ZodOptional<z.ZodString>;
|
|
5586
|
+
url: z.ZodOptional<z.ZodString>;
|
|
5587
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
5588
|
+
file: z.ZodOptional<z.ZodString>;
|
|
5589
|
+
url: z.ZodString;
|
|
5590
|
+
created: z.ZodOptional<z.ZodString>;
|
|
5591
|
+
type: z.ZodArray<z.ZodString>;
|
|
5592
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
5593
|
+
documentDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
5594
|
+
source: z.ZodOptional<z.ZodString>;
|
|
5595
|
+
id: z.ZodOptional<z.ZodString>;
|
|
5596
|
+
}, z.core.$strip>]>>>;
|
|
5597
|
+
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5598
|
+
identifier: z.ZodString;
|
|
5599
|
+
id: z.ZodString;
|
|
5600
|
+
role: z.ZodString;
|
|
5601
|
+
ref: z.ZodOptional<z.ZodString>;
|
|
5602
|
+
}, z.core.$strip>>>;
|
|
5603
|
+
queueApplications: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5604
|
+
queueKey: z.ZodOptional<z.ZodString>;
|
|
5605
|
+
applicationId: z.ZodOptional<z.ZodString>;
|
|
5606
|
+
queueDataset: z.ZodOptional<z.ZodString>;
|
|
5607
|
+
id: z.ZodString;
|
|
5608
|
+
identifier: z.ZodString;
|
|
5609
|
+
}, z.core.$strip>>>;
|
|
5610
|
+
audiences: z.ZodArray<z.ZodObject<{
|
|
5611
|
+
identifier: z.ZodString;
|
|
5612
|
+
id: z.ZodString;
|
|
5613
|
+
}, z.core.$strip>>;
|
|
5614
|
+
headline: z.ZodString;
|
|
5615
|
+
schema: z.ZodLiteral<"apac_signal">;
|
|
5616
|
+
allSectors: z.ZodOptional<z.ZodString>;
|
|
5617
|
+
commercialOperationDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
5618
|
+
facilityAddress: z.ZodOptional<z.ZodObject<{
|
|
5619
|
+
full: z.ZodOptional<z.ZodString>;
|
|
5620
|
+
city: z.ZodOptional<z.ZodString>;
|
|
5621
|
+
state: z.ZodOptional<z.ZodString>;
|
|
5622
|
+
street: z.ZodOptional<z.ZodString>;
|
|
5623
|
+
street2: z.ZodOptional<z.ZodString>;
|
|
5624
|
+
zip: z.ZodOptional<z.ZodString>;
|
|
5625
|
+
country: z.ZodOptional<z.ZodString>;
|
|
5626
|
+
latitude: z.ZodOptional<z.ZodNumber>;
|
|
5627
|
+
longitude: z.ZodOptional<z.ZodNumber>;
|
|
5628
|
+
}, z.core.$strip>>;
|
|
5629
|
+
facilityName: z.ZodOptional<z.ZodString>;
|
|
5630
|
+
filingDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
5631
|
+
geo: z.ZodObject<{
|
|
5632
|
+
default: z.ZodOptional<z.ZodObject<{
|
|
5633
|
+
lat: z.ZodNumber;
|
|
5634
|
+
lon: z.ZodNumber;
|
|
5635
|
+
}, z.core.$strip>>;
|
|
5636
|
+
defaultValue: z.ZodOptional<z.ZodString>;
|
|
5637
|
+
location: z.ZodOptional<z.ZodObject<{
|
|
5638
|
+
lat: z.ZodNumber;
|
|
5639
|
+
lon: z.ZodNumber;
|
|
5640
|
+
}, z.core.$strip>>;
|
|
5641
|
+
facility: z.ZodOptional<z.ZodObject<{
|
|
5642
|
+
lat: z.ZodNumber;
|
|
5643
|
+
lon: z.ZodNumber;
|
|
5644
|
+
}, z.core.$strip>>;
|
|
5645
|
+
county: z.ZodOptional<z.ZodObject<{
|
|
5646
|
+
lat: z.ZodNumber;
|
|
5647
|
+
lon: z.ZodNumber;
|
|
5648
|
+
}, z.core.$strip>>;
|
|
5649
|
+
}, z.core.$strip>;
|
|
5650
|
+
mw: z.ZodOptional<z.ZodNumber>;
|
|
5651
|
+
publishedDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
5652
|
+
totals: z.ZodOptional<z.ZodObject<{
|
|
5653
|
+
projects: z.ZodOptional<z.ZodNumber>;
|
|
5654
|
+
keyPeople: z.ZodOptional<z.ZodNumber>;
|
|
5655
|
+
documents: z.ZodOptional<z.ZodNumber>;
|
|
5656
|
+
organizations: z.ZodOptional<z.ZodNumber>;
|
|
5657
|
+
queueApplications: z.ZodOptional<z.ZodNumber>;
|
|
5658
|
+
intels: z.ZodOptional<z.ZodNumber>;
|
|
5659
|
+
signals: z.ZodOptional<z.ZodNumber>;
|
|
5660
|
+
developer: z.ZodOptional<z.ZodNumber>;
|
|
5661
|
+
developers: z.ZodOptional<z.ZodNumber>;
|
|
5662
|
+
utility: z.ZodOptional<z.ZodNumber>;
|
|
5663
|
+
offtaker: z.ZodOptional<z.ZodNumber>;
|
|
5664
|
+
epc: z.ZodOptional<z.ZodNumber>;
|
|
5665
|
+
puc: z.ZodOptional<z.ZodNumber>;
|
|
5666
|
+
}, z.core.$strip>>;
|
|
5667
|
+
$organizations: z.ZodOptional<z.ZodString>;
|
|
5668
|
+
body: z.ZodOptional<z.ZodString>;
|
|
5669
|
+
projectPipeline: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5670
|
+
identifier: z.ZodString;
|
|
5671
|
+
id: z.ZodString;
|
|
5672
|
+
}, z.core.$strip>>>;
|
|
5673
|
+
updated: z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>;
|
|
5674
|
+
}, z.core.$strict>], "schema">;
|
|
5675
|
+
export declare const euSignalByLocationListSchemaV1: z.ZodObject<{
|
|
5676
|
+
type: z.ZodOptional<z.ZodObject<{
|
|
5677
|
+
identifier: z.ZodString;
|
|
5678
|
+
id: z.ZodString;
|
|
5679
|
+
}, z.core.$strip>>;
|
|
5680
|
+
id: z.ZodString;
|
|
5681
|
+
location: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5682
|
+
identifier: z.ZodString;
|
|
5683
|
+
id: z.ZodString;
|
|
5684
|
+
isApproximate: z.ZodOptional<z.ZodBoolean>;
|
|
5685
|
+
components: z.ZodOptional<z.ZodObject<{
|
|
5686
|
+
'ISO_3166-1_alpha-2': z.ZodOptional<z.ZodString>;
|
|
5687
|
+
'ISO_3166-1_alpha-3': z.ZodOptional<z.ZodString>;
|
|
5688
|
+
'ISO_3166-2': z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
5689
|
+
_category: z.ZodOptional<z.ZodString>;
|
|
5690
|
+
_normalized_city: z.ZodOptional<z.ZodString>;
|
|
5691
|
+
_type: z.ZodString;
|
|
5692
|
+
city: z.ZodOptional<z.ZodString>;
|
|
5693
|
+
continent: z.ZodOptional<z.ZodString>;
|
|
5694
|
+
country: z.ZodOptional<z.ZodString>;
|
|
5695
|
+
country_code: z.ZodOptional<z.ZodString>;
|
|
5696
|
+
state_code: z.ZodOptional<z.ZodString>;
|
|
5697
|
+
county: z.ZodOptional<z.ZodString>;
|
|
5698
|
+
municipality: z.ZodOptional<z.ZodString>;
|
|
5699
|
+
political_union: z.ZodOptional<z.ZodString>;
|
|
5700
|
+
state: z.ZodOptional<z.ZodString>;
|
|
5701
|
+
state_district: z.ZodOptional<z.ZodString>;
|
|
5702
|
+
}, z.core.$strip>>;
|
|
5703
|
+
geometry: z.ZodOptional<z.ZodObject<{
|
|
5704
|
+
lat: z.ZodNumber;
|
|
5705
|
+
lng: z.ZodNumber;
|
|
5706
|
+
}, z.core.$strip>>;
|
|
5707
|
+
override: z.ZodOptional<z.ZodBoolean>;
|
|
5708
|
+
accuracy: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5709
|
+
identifier: z.ZodString;
|
|
5710
|
+
id: z.ZodEnum<{
|
|
5711
|
+
location_accuracy_a: import("../entity").LocationAccuracy.A;
|
|
5712
|
+
location_accuracy_b: import("../entity").LocationAccuracy.B;
|
|
5713
|
+
location_accuracy_c: import("../entity").LocationAccuracy.C;
|
|
5714
|
+
location_accuracy_not_determined: import("../entity").LocationAccuracy.NOT_DETERMINED;
|
|
5715
|
+
}>;
|
|
5716
|
+
}, z.core.$strip>>>;
|
|
5717
|
+
source: z.ZodOptional<z.ZodString>;
|
|
5718
|
+
}, z.core.$strip>>>;
|
|
5719
|
+
country: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5720
|
+
identifier: z.ZodString;
|
|
5721
|
+
id: z.ZodString;
|
|
5722
|
+
}, z.core.$strip>>>;
|
|
5723
|
+
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5724
|
+
identifier: z.ZodString;
|
|
5725
|
+
id: z.ZodString;
|
|
5726
|
+
role: z.ZodString;
|
|
5727
|
+
ref: z.ZodOptional<z.ZodString>;
|
|
5728
|
+
}, z.core.$strip>>>;
|
|
5729
|
+
schema: z.ZodLiteral<"eu_signal">;
|
|
5730
|
+
allSectors: z.ZodOptional<z.ZodString>;
|
|
5731
|
+
facilityAddress: z.ZodOptional<z.ZodObject<{
|
|
5732
|
+
full: z.ZodOptional<z.ZodString>;
|
|
5733
|
+
city: z.ZodOptional<z.ZodString>;
|
|
5734
|
+
state: z.ZodOptional<z.ZodString>;
|
|
5735
|
+
street: z.ZodOptional<z.ZodString>;
|
|
5736
|
+
street2: z.ZodOptional<z.ZodString>;
|
|
5737
|
+
zip: z.ZodOptional<z.ZodString>;
|
|
5738
|
+
country: z.ZodOptional<z.ZodString>;
|
|
5739
|
+
latitude: z.ZodOptional<z.ZodNumber>;
|
|
5740
|
+
longitude: z.ZodOptional<z.ZodNumber>;
|
|
5741
|
+
}, z.core.$strip>>;
|
|
5742
|
+
mw: z.ZodOptional<z.ZodNumber>;
|
|
5743
|
+
geo: z.ZodOptional<z.ZodObject<{
|
|
5744
|
+
default: z.ZodOptional<z.ZodObject<{
|
|
5745
|
+
lat: z.ZodNumber;
|
|
5746
|
+
lon: z.ZodNumber;
|
|
5747
|
+
}, z.core.$strip>>;
|
|
5748
|
+
defaultValue: z.ZodOptional<z.ZodString>;
|
|
5749
|
+
}, z.core.$strip>>;
|
|
5750
|
+
sort: z.ZodOptional<z.ZodArray<z.ZodNumber>>;
|
|
5751
|
+
}, z.core.$strict>;
|
|
5752
|
+
export declare const usSignalByLocationListSchemaV1: z.ZodObject<{
|
|
5753
|
+
type: z.ZodOptional<z.ZodObject<{
|
|
5754
|
+
identifier: z.ZodString;
|
|
5755
|
+
id: z.ZodString;
|
|
5756
|
+
}, z.core.$strip>>;
|
|
5757
|
+
state: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5758
|
+
identifier: z.ZodString;
|
|
5759
|
+
id: z.ZodString;
|
|
5760
|
+
}, z.core.$strip>>>;
|
|
5761
|
+
county: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5762
|
+
identifier: z.ZodString;
|
|
5763
|
+
id: z.ZodString;
|
|
5764
|
+
}, z.core.$strip>>>;
|
|
5765
|
+
id: z.ZodString;
|
|
5766
|
+
location: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5767
|
+
identifier: z.ZodString;
|
|
5768
|
+
id: z.ZodString;
|
|
5769
|
+
isApproximate: z.ZodOptional<z.ZodBoolean>;
|
|
5770
|
+
components: z.ZodOptional<z.ZodObject<{
|
|
5771
|
+
'ISO_3166-1_alpha-2': z.ZodOptional<z.ZodString>;
|
|
5772
|
+
'ISO_3166-1_alpha-3': z.ZodOptional<z.ZodString>;
|
|
5773
|
+
'ISO_3166-2': z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
5774
|
+
_category: z.ZodOptional<z.ZodString>;
|
|
5775
|
+
_normalized_city: z.ZodOptional<z.ZodString>;
|
|
5776
|
+
_type: z.ZodString;
|
|
5777
|
+
city: z.ZodOptional<z.ZodString>;
|
|
5778
|
+
continent: z.ZodOptional<z.ZodString>;
|
|
5779
|
+
country: z.ZodOptional<z.ZodString>;
|
|
5780
|
+
country_code: z.ZodOptional<z.ZodString>;
|
|
5781
|
+
state_code: z.ZodOptional<z.ZodString>;
|
|
5782
|
+
county: z.ZodOptional<z.ZodString>;
|
|
5783
|
+
municipality: z.ZodOptional<z.ZodString>;
|
|
5784
|
+
political_union: z.ZodOptional<z.ZodString>;
|
|
5785
|
+
state: z.ZodOptional<z.ZodString>;
|
|
5786
|
+
state_district: z.ZodOptional<z.ZodString>;
|
|
5787
|
+
}, z.core.$strip>>;
|
|
5788
|
+
geometry: z.ZodOptional<z.ZodObject<{
|
|
5789
|
+
lat: z.ZodNumber;
|
|
5790
|
+
lng: z.ZodNumber;
|
|
5791
|
+
}, z.core.$strip>>;
|
|
5792
|
+
override: z.ZodOptional<z.ZodBoolean>;
|
|
5793
|
+
accuracy: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5794
|
+
identifier: z.ZodString;
|
|
5795
|
+
id: z.ZodEnum<{
|
|
5796
|
+
location_accuracy_a: import("../entity").LocationAccuracy.A;
|
|
5797
|
+
location_accuracy_b: import("../entity").LocationAccuracy.B;
|
|
5798
|
+
location_accuracy_c: import("../entity").LocationAccuracy.C;
|
|
5799
|
+
location_accuracy_not_determined: import("../entity").LocationAccuracy.NOT_DETERMINED;
|
|
5800
|
+
}>;
|
|
5801
|
+
}, z.core.$strip>>>;
|
|
5802
|
+
source: z.ZodOptional<z.ZodString>;
|
|
5803
|
+
}, z.core.$strip>>>;
|
|
5804
|
+
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5805
|
+
identifier: z.ZodString;
|
|
5806
|
+
id: z.ZodString;
|
|
5807
|
+
role: z.ZodString;
|
|
5808
|
+
ref: z.ZodOptional<z.ZodString>;
|
|
5809
|
+
}, z.core.$strip>>>;
|
|
5810
|
+
schema: z.ZodLiteral<"us_signal">;
|
|
5811
|
+
allSectors: z.ZodOptional<z.ZodString>;
|
|
5812
|
+
facilityAddress: z.ZodOptional<z.ZodObject<{
|
|
5813
|
+
full: z.ZodOptional<z.ZodString>;
|
|
5814
|
+
city: z.ZodOptional<z.ZodString>;
|
|
5815
|
+
state: z.ZodOptional<z.ZodString>;
|
|
5816
|
+
street: z.ZodOptional<z.ZodString>;
|
|
5817
|
+
street2: z.ZodOptional<z.ZodString>;
|
|
5818
|
+
zip: z.ZodOptional<z.ZodString>;
|
|
5819
|
+
country: z.ZodOptional<z.ZodString>;
|
|
5820
|
+
latitude: z.ZodOptional<z.ZodNumber>;
|
|
5821
|
+
longitude: z.ZodOptional<z.ZodNumber>;
|
|
5822
|
+
}, z.core.$strip>>;
|
|
5823
|
+
mw: z.ZodOptional<z.ZodNumber>;
|
|
5824
|
+
geo: z.ZodOptional<z.ZodObject<{
|
|
5825
|
+
default: z.ZodOptional<z.ZodObject<{
|
|
5826
|
+
lat: z.ZodNumber;
|
|
5827
|
+
lon: z.ZodNumber;
|
|
5828
|
+
}, z.core.$strip>>;
|
|
5829
|
+
defaultValue: z.ZodOptional<z.ZodString>;
|
|
5830
|
+
}, z.core.$strip>>;
|
|
5831
|
+
sort: z.ZodOptional<z.ZodArray<z.ZodNumber>>;
|
|
5832
|
+
}, z.core.$strict>;
|
|
5833
|
+
export declare const globalSignalByLocationListSchemaV1: z.ZodObject<{
|
|
5834
|
+
type: z.ZodOptional<z.ZodObject<{
|
|
5835
|
+
identifier: z.ZodString;
|
|
5836
|
+
id: z.ZodString;
|
|
5837
|
+
}, z.core.$strip>>;
|
|
5838
|
+
state: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5839
|
+
identifier: z.ZodString;
|
|
5840
|
+
id: z.ZodString;
|
|
5841
|
+
}, z.core.$strip>>>;
|
|
5842
|
+
county: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5843
|
+
identifier: z.ZodString;
|
|
5844
|
+
id: z.ZodString;
|
|
5845
|
+
}, z.core.$strip>>>;
|
|
5846
|
+
id: z.ZodString;
|
|
5847
|
+
location: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5848
|
+
identifier: z.ZodString;
|
|
5849
|
+
id: z.ZodString;
|
|
5850
|
+
isApproximate: z.ZodOptional<z.ZodBoolean>;
|
|
5851
|
+
components: z.ZodOptional<z.ZodObject<{
|
|
5852
|
+
'ISO_3166-1_alpha-2': z.ZodOptional<z.ZodString>;
|
|
5853
|
+
'ISO_3166-1_alpha-3': z.ZodOptional<z.ZodString>;
|
|
5854
|
+
'ISO_3166-2': z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
5855
|
+
_category: z.ZodOptional<z.ZodString>;
|
|
5856
|
+
_normalized_city: z.ZodOptional<z.ZodString>;
|
|
5857
|
+
_type: z.ZodString;
|
|
5858
|
+
city: z.ZodOptional<z.ZodString>;
|
|
5859
|
+
continent: z.ZodOptional<z.ZodString>;
|
|
5860
|
+
country: z.ZodOptional<z.ZodString>;
|
|
5861
|
+
country_code: z.ZodOptional<z.ZodString>;
|
|
5862
|
+
state_code: z.ZodOptional<z.ZodString>;
|
|
5863
|
+
county: z.ZodOptional<z.ZodString>;
|
|
5864
|
+
municipality: z.ZodOptional<z.ZodString>;
|
|
5865
|
+
political_union: z.ZodOptional<z.ZodString>;
|
|
5866
|
+
state: z.ZodOptional<z.ZodString>;
|
|
5867
|
+
state_district: z.ZodOptional<z.ZodString>;
|
|
5868
|
+
}, z.core.$strip>>;
|
|
5869
|
+
geometry: z.ZodOptional<z.ZodObject<{
|
|
5870
|
+
lat: z.ZodNumber;
|
|
5871
|
+
lng: z.ZodNumber;
|
|
5872
|
+
}, z.core.$strip>>;
|
|
5873
|
+
override: z.ZodOptional<z.ZodBoolean>;
|
|
5874
|
+
accuracy: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5875
|
+
identifier: z.ZodString;
|
|
5876
|
+
id: z.ZodEnum<{
|
|
5877
|
+
location_accuracy_a: import("../entity").LocationAccuracy.A;
|
|
5878
|
+
location_accuracy_b: import("../entity").LocationAccuracy.B;
|
|
5879
|
+
location_accuracy_c: import("../entity").LocationAccuracy.C;
|
|
5880
|
+
location_accuracy_not_determined: import("../entity").LocationAccuracy.NOT_DETERMINED;
|
|
5881
|
+
}>;
|
|
5882
|
+
}, z.core.$strip>>>;
|
|
5883
|
+
source: z.ZodOptional<z.ZodString>;
|
|
5884
|
+
}, z.core.$strip>>>;
|
|
5885
|
+
country: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5886
|
+
identifier: z.ZodString;
|
|
5887
|
+
id: z.ZodString;
|
|
5888
|
+
}, z.core.$strip>>>;
|
|
5889
|
+
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5890
|
+
identifier: z.ZodString;
|
|
5891
|
+
id: z.ZodString;
|
|
5892
|
+
role: z.ZodString;
|
|
5893
|
+
ref: z.ZodOptional<z.ZodString>;
|
|
5894
|
+
}, z.core.$strip>>>;
|
|
5895
|
+
schema: z.ZodLiteral<"global_signal">;
|
|
5896
|
+
allSectors: z.ZodOptional<z.ZodString>;
|
|
5897
|
+
facilityAddress: z.ZodOptional<z.ZodObject<{
|
|
5898
|
+
full: z.ZodOptional<z.ZodString>;
|
|
5899
|
+
city: z.ZodOptional<z.ZodString>;
|
|
5900
|
+
state: z.ZodOptional<z.ZodString>;
|
|
5901
|
+
street: z.ZodOptional<z.ZodString>;
|
|
5902
|
+
street2: z.ZodOptional<z.ZodString>;
|
|
5903
|
+
zip: z.ZodOptional<z.ZodString>;
|
|
5904
|
+
country: z.ZodOptional<z.ZodString>;
|
|
5905
|
+
latitude: z.ZodOptional<z.ZodNumber>;
|
|
5906
|
+
longitude: z.ZodOptional<z.ZodNumber>;
|
|
5907
|
+
}, z.core.$strip>>;
|
|
5908
|
+
mw: z.ZodOptional<z.ZodNumber>;
|
|
5909
|
+
geo: z.ZodOptional<z.ZodObject<{
|
|
5910
|
+
default: z.ZodOptional<z.ZodObject<{
|
|
5911
|
+
lat: z.ZodNumber;
|
|
5912
|
+
lon: z.ZodNumber;
|
|
5913
|
+
}, z.core.$strip>>;
|
|
5914
|
+
defaultValue: z.ZodOptional<z.ZodString>;
|
|
5915
|
+
}, z.core.$strip>>;
|
|
5916
|
+
sort: z.ZodOptional<z.ZodArray<z.ZodNumber>>;
|
|
5917
|
+
}, z.core.$strict>;
|
|
5918
|
+
export declare const apacSignalByLocationListSchemaV1: z.ZodObject<{
|
|
5919
|
+
type: z.ZodOptional<z.ZodObject<{
|
|
5920
|
+
identifier: z.ZodString;
|
|
5921
|
+
id: z.ZodString;
|
|
5922
|
+
}, z.core.$strip>>;
|
|
5923
|
+
id: z.ZodString;
|
|
5924
|
+
location: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5925
|
+
identifier: z.ZodString;
|
|
5926
|
+
id: z.ZodString;
|
|
5927
|
+
isApproximate: z.ZodOptional<z.ZodBoolean>;
|
|
5928
|
+
components: z.ZodOptional<z.ZodObject<{
|
|
5929
|
+
'ISO_3166-1_alpha-2': z.ZodOptional<z.ZodString>;
|
|
5930
|
+
'ISO_3166-1_alpha-3': z.ZodOptional<z.ZodString>;
|
|
5931
|
+
'ISO_3166-2': z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
5932
|
+
_category: z.ZodOptional<z.ZodString>;
|
|
5933
|
+
_normalized_city: z.ZodOptional<z.ZodString>;
|
|
5934
|
+
_type: z.ZodString;
|
|
5935
|
+
city: z.ZodOptional<z.ZodString>;
|
|
5936
|
+
continent: z.ZodOptional<z.ZodString>;
|
|
5937
|
+
country: z.ZodOptional<z.ZodString>;
|
|
5938
|
+
country_code: z.ZodOptional<z.ZodString>;
|
|
5939
|
+
state_code: z.ZodOptional<z.ZodString>;
|
|
5940
|
+
county: z.ZodOptional<z.ZodString>;
|
|
5941
|
+
municipality: z.ZodOptional<z.ZodString>;
|
|
5942
|
+
political_union: z.ZodOptional<z.ZodString>;
|
|
5943
|
+
state: z.ZodOptional<z.ZodString>;
|
|
5944
|
+
state_district: z.ZodOptional<z.ZodString>;
|
|
5945
|
+
}, z.core.$strip>>;
|
|
5946
|
+
geometry: z.ZodOptional<z.ZodObject<{
|
|
5947
|
+
lat: z.ZodNumber;
|
|
5948
|
+
lng: z.ZodNumber;
|
|
5949
|
+
}, z.core.$strip>>;
|
|
5950
|
+
override: z.ZodOptional<z.ZodBoolean>;
|
|
5951
|
+
accuracy: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5952
|
+
identifier: z.ZodString;
|
|
5953
|
+
id: z.ZodEnum<{
|
|
5954
|
+
location_accuracy_a: import("../entity").LocationAccuracy.A;
|
|
5955
|
+
location_accuracy_b: import("../entity").LocationAccuracy.B;
|
|
5956
|
+
location_accuracy_c: import("../entity").LocationAccuracy.C;
|
|
5957
|
+
location_accuracy_not_determined: import("../entity").LocationAccuracy.NOT_DETERMINED;
|
|
5958
|
+
}>;
|
|
5959
|
+
}, z.core.$strip>>>;
|
|
5960
|
+
source: z.ZodOptional<z.ZodString>;
|
|
5961
|
+
}, z.core.$strip>>>;
|
|
5962
|
+
country: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5963
|
+
identifier: z.ZodString;
|
|
5964
|
+
id: z.ZodString;
|
|
5965
|
+
}, z.core.$strip>>>;
|
|
5966
|
+
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5967
|
+
identifier: z.ZodString;
|
|
5968
|
+
id: z.ZodString;
|
|
5969
|
+
role: z.ZodString;
|
|
5970
|
+
ref: z.ZodOptional<z.ZodString>;
|
|
5971
|
+
}, z.core.$strip>>>;
|
|
5972
|
+
schema: z.ZodLiteral<"apac_signal">;
|
|
5973
|
+
allSectors: z.ZodOptional<z.ZodString>;
|
|
5974
|
+
facilityAddress: z.ZodOptional<z.ZodObject<{
|
|
5975
|
+
full: z.ZodOptional<z.ZodString>;
|
|
5976
|
+
city: z.ZodOptional<z.ZodString>;
|
|
5977
|
+
state: z.ZodOptional<z.ZodString>;
|
|
5978
|
+
street: z.ZodOptional<z.ZodString>;
|
|
5979
|
+
street2: z.ZodOptional<z.ZodString>;
|
|
5980
|
+
zip: z.ZodOptional<z.ZodString>;
|
|
5981
|
+
country: z.ZodOptional<z.ZodString>;
|
|
5982
|
+
latitude: z.ZodOptional<z.ZodNumber>;
|
|
5983
|
+
longitude: z.ZodOptional<z.ZodNumber>;
|
|
5984
|
+
}, z.core.$strip>>;
|
|
5985
|
+
mw: z.ZodOptional<z.ZodNumber>;
|
|
5986
|
+
geo: z.ZodOptional<z.ZodObject<{
|
|
5987
|
+
default: z.ZodOptional<z.ZodObject<{
|
|
5988
|
+
lat: z.ZodNumber;
|
|
5989
|
+
lon: z.ZodNumber;
|
|
5990
|
+
}, z.core.$strip>>;
|
|
5991
|
+
defaultValue: z.ZodOptional<z.ZodString>;
|
|
5992
|
+
}, z.core.$strip>>;
|
|
5993
|
+
sort: z.ZodOptional<z.ZodArray<z.ZodNumber>>;
|
|
5994
|
+
}, z.core.$strict>;
|
|
5995
|
+
export declare const signalByLocationListSchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
5996
|
+
type: z.ZodOptional<z.ZodObject<{
|
|
5997
|
+
identifier: z.ZodString;
|
|
5998
|
+
id: z.ZodString;
|
|
5999
|
+
}, z.core.$strip>>;
|
|
6000
|
+
id: z.ZodString;
|
|
6001
|
+
location: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6002
|
+
identifier: z.ZodString;
|
|
6003
|
+
id: z.ZodString;
|
|
6004
|
+
isApproximate: z.ZodOptional<z.ZodBoolean>;
|
|
6005
|
+
components: z.ZodOptional<z.ZodObject<{
|
|
6006
|
+
'ISO_3166-1_alpha-2': z.ZodOptional<z.ZodString>;
|
|
6007
|
+
'ISO_3166-1_alpha-3': z.ZodOptional<z.ZodString>;
|
|
6008
|
+
'ISO_3166-2': z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
6009
|
+
_category: z.ZodOptional<z.ZodString>;
|
|
6010
|
+
_normalized_city: z.ZodOptional<z.ZodString>;
|
|
6011
|
+
_type: z.ZodString;
|
|
6012
|
+
city: z.ZodOptional<z.ZodString>;
|
|
6013
|
+
continent: z.ZodOptional<z.ZodString>;
|
|
6014
|
+
country: z.ZodOptional<z.ZodString>;
|
|
6015
|
+
country_code: z.ZodOptional<z.ZodString>;
|
|
6016
|
+
state_code: z.ZodOptional<z.ZodString>;
|
|
6017
|
+
county: z.ZodOptional<z.ZodString>;
|
|
6018
|
+
municipality: z.ZodOptional<z.ZodString>;
|
|
6019
|
+
political_union: z.ZodOptional<z.ZodString>;
|
|
6020
|
+
state: z.ZodOptional<z.ZodString>;
|
|
6021
|
+
state_district: z.ZodOptional<z.ZodString>;
|
|
6022
|
+
}, z.core.$strip>>;
|
|
6023
|
+
geometry: z.ZodOptional<z.ZodObject<{
|
|
6024
|
+
lat: z.ZodNumber;
|
|
6025
|
+
lng: z.ZodNumber;
|
|
6026
|
+
}, z.core.$strip>>;
|
|
6027
|
+
override: z.ZodOptional<z.ZodBoolean>;
|
|
6028
|
+
accuracy: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6029
|
+
identifier: z.ZodString;
|
|
6030
|
+
id: z.ZodEnum<{
|
|
6031
|
+
location_accuracy_a: import("../entity").LocationAccuracy.A;
|
|
6032
|
+
location_accuracy_b: import("../entity").LocationAccuracy.B;
|
|
6033
|
+
location_accuracy_c: import("../entity").LocationAccuracy.C;
|
|
6034
|
+
location_accuracy_not_determined: import("../entity").LocationAccuracy.NOT_DETERMINED;
|
|
6035
|
+
}>;
|
|
6036
|
+
}, z.core.$strip>>>;
|
|
6037
|
+
source: z.ZodOptional<z.ZodString>;
|
|
6038
|
+
}, z.core.$strip>>>;
|
|
6039
|
+
country: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6040
|
+
identifier: z.ZodString;
|
|
6041
|
+
id: z.ZodString;
|
|
6042
|
+
}, z.core.$strip>>>;
|
|
6043
|
+
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6044
|
+
identifier: z.ZodString;
|
|
6045
|
+
id: z.ZodString;
|
|
6046
|
+
role: z.ZodString;
|
|
6047
|
+
ref: z.ZodOptional<z.ZodString>;
|
|
6048
|
+
}, z.core.$strip>>>;
|
|
6049
|
+
schema: z.ZodLiteral<"eu_signal">;
|
|
6050
|
+
allSectors: z.ZodOptional<z.ZodString>;
|
|
6051
|
+
facilityAddress: z.ZodOptional<z.ZodObject<{
|
|
6052
|
+
full: z.ZodOptional<z.ZodString>;
|
|
6053
|
+
city: z.ZodOptional<z.ZodString>;
|
|
6054
|
+
state: z.ZodOptional<z.ZodString>;
|
|
6055
|
+
street: z.ZodOptional<z.ZodString>;
|
|
6056
|
+
street2: z.ZodOptional<z.ZodString>;
|
|
6057
|
+
zip: z.ZodOptional<z.ZodString>;
|
|
6058
|
+
country: z.ZodOptional<z.ZodString>;
|
|
6059
|
+
latitude: z.ZodOptional<z.ZodNumber>;
|
|
6060
|
+
longitude: z.ZodOptional<z.ZodNumber>;
|
|
6061
|
+
}, z.core.$strip>>;
|
|
6062
|
+
mw: z.ZodOptional<z.ZodNumber>;
|
|
6063
|
+
geo: z.ZodOptional<z.ZodObject<{
|
|
6064
|
+
default: z.ZodOptional<z.ZodObject<{
|
|
6065
|
+
lat: z.ZodNumber;
|
|
6066
|
+
lon: z.ZodNumber;
|
|
6067
|
+
}, z.core.$strip>>;
|
|
6068
|
+
defaultValue: z.ZodOptional<z.ZodString>;
|
|
6069
|
+
}, z.core.$strip>>;
|
|
6070
|
+
sort: z.ZodOptional<z.ZodArray<z.ZodNumber>>;
|
|
6071
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
6072
|
+
type: z.ZodOptional<z.ZodObject<{
|
|
6073
|
+
identifier: z.ZodString;
|
|
6074
|
+
id: z.ZodString;
|
|
6075
|
+
}, z.core.$strip>>;
|
|
6076
|
+
state: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6077
|
+
identifier: z.ZodString;
|
|
6078
|
+
id: z.ZodString;
|
|
6079
|
+
}, z.core.$strip>>>;
|
|
6080
|
+
county: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6081
|
+
identifier: z.ZodString;
|
|
6082
|
+
id: z.ZodString;
|
|
6083
|
+
}, z.core.$strip>>>;
|
|
6084
|
+
id: z.ZodString;
|
|
6085
|
+
location: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6086
|
+
identifier: z.ZodString;
|
|
6087
|
+
id: z.ZodString;
|
|
6088
|
+
isApproximate: z.ZodOptional<z.ZodBoolean>;
|
|
6089
|
+
components: z.ZodOptional<z.ZodObject<{
|
|
6090
|
+
'ISO_3166-1_alpha-2': z.ZodOptional<z.ZodString>;
|
|
6091
|
+
'ISO_3166-1_alpha-3': z.ZodOptional<z.ZodString>;
|
|
6092
|
+
'ISO_3166-2': z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
6093
|
+
_category: z.ZodOptional<z.ZodString>;
|
|
6094
|
+
_normalized_city: z.ZodOptional<z.ZodString>;
|
|
6095
|
+
_type: z.ZodString;
|
|
6096
|
+
city: z.ZodOptional<z.ZodString>;
|
|
6097
|
+
continent: z.ZodOptional<z.ZodString>;
|
|
6098
|
+
country: z.ZodOptional<z.ZodString>;
|
|
6099
|
+
country_code: z.ZodOptional<z.ZodString>;
|
|
6100
|
+
state_code: z.ZodOptional<z.ZodString>;
|
|
6101
|
+
county: z.ZodOptional<z.ZodString>;
|
|
6102
|
+
municipality: z.ZodOptional<z.ZodString>;
|
|
6103
|
+
political_union: z.ZodOptional<z.ZodString>;
|
|
6104
|
+
state: z.ZodOptional<z.ZodString>;
|
|
6105
|
+
state_district: z.ZodOptional<z.ZodString>;
|
|
6106
|
+
}, z.core.$strip>>;
|
|
6107
|
+
geometry: z.ZodOptional<z.ZodObject<{
|
|
6108
|
+
lat: z.ZodNumber;
|
|
6109
|
+
lng: z.ZodNumber;
|
|
6110
|
+
}, z.core.$strip>>;
|
|
6111
|
+
override: z.ZodOptional<z.ZodBoolean>;
|
|
6112
|
+
accuracy: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6113
|
+
identifier: z.ZodString;
|
|
6114
|
+
id: z.ZodEnum<{
|
|
6115
|
+
location_accuracy_a: import("../entity").LocationAccuracy.A;
|
|
6116
|
+
location_accuracy_b: import("../entity").LocationAccuracy.B;
|
|
6117
|
+
location_accuracy_c: import("../entity").LocationAccuracy.C;
|
|
6118
|
+
location_accuracy_not_determined: import("../entity").LocationAccuracy.NOT_DETERMINED;
|
|
6119
|
+
}>;
|
|
6120
|
+
}, z.core.$strip>>>;
|
|
6121
|
+
source: z.ZodOptional<z.ZodString>;
|
|
6122
|
+
}, z.core.$strip>>>;
|
|
6123
|
+
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6124
|
+
identifier: z.ZodString;
|
|
6125
|
+
id: z.ZodString;
|
|
6126
|
+
role: z.ZodString;
|
|
6127
|
+
ref: z.ZodOptional<z.ZodString>;
|
|
6128
|
+
}, z.core.$strip>>>;
|
|
6129
|
+
schema: z.ZodLiteral<"us_signal">;
|
|
6130
|
+
allSectors: z.ZodOptional<z.ZodString>;
|
|
6131
|
+
facilityAddress: z.ZodOptional<z.ZodObject<{
|
|
6132
|
+
full: z.ZodOptional<z.ZodString>;
|
|
6133
|
+
city: z.ZodOptional<z.ZodString>;
|
|
6134
|
+
state: z.ZodOptional<z.ZodString>;
|
|
6135
|
+
street: z.ZodOptional<z.ZodString>;
|
|
6136
|
+
street2: z.ZodOptional<z.ZodString>;
|
|
6137
|
+
zip: z.ZodOptional<z.ZodString>;
|
|
6138
|
+
country: z.ZodOptional<z.ZodString>;
|
|
6139
|
+
latitude: z.ZodOptional<z.ZodNumber>;
|
|
6140
|
+
longitude: z.ZodOptional<z.ZodNumber>;
|
|
6141
|
+
}, z.core.$strip>>;
|
|
6142
|
+
mw: z.ZodOptional<z.ZodNumber>;
|
|
6143
|
+
geo: z.ZodOptional<z.ZodObject<{
|
|
6144
|
+
default: z.ZodOptional<z.ZodObject<{
|
|
6145
|
+
lat: z.ZodNumber;
|
|
6146
|
+
lon: z.ZodNumber;
|
|
6147
|
+
}, z.core.$strip>>;
|
|
6148
|
+
defaultValue: z.ZodOptional<z.ZodString>;
|
|
6149
|
+
}, z.core.$strip>>;
|
|
6150
|
+
sort: z.ZodOptional<z.ZodArray<z.ZodNumber>>;
|
|
6151
|
+
}, z.core.$strict>]>, z.ZodObject<{
|
|
6152
|
+
type: z.ZodOptional<z.ZodObject<{
|
|
6153
|
+
identifier: z.ZodString;
|
|
6154
|
+
id: z.ZodString;
|
|
6155
|
+
}, z.core.$strip>>;
|
|
6156
|
+
state: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6157
|
+
identifier: z.ZodString;
|
|
6158
|
+
id: z.ZodString;
|
|
6159
|
+
}, z.core.$strip>>>;
|
|
6160
|
+
county: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6161
|
+
identifier: z.ZodString;
|
|
6162
|
+
id: z.ZodString;
|
|
6163
|
+
}, z.core.$strip>>>;
|
|
6164
|
+
id: z.ZodString;
|
|
6165
|
+
location: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6166
|
+
identifier: z.ZodString;
|
|
6167
|
+
id: z.ZodString;
|
|
6168
|
+
isApproximate: z.ZodOptional<z.ZodBoolean>;
|
|
6169
|
+
components: z.ZodOptional<z.ZodObject<{
|
|
6170
|
+
'ISO_3166-1_alpha-2': z.ZodOptional<z.ZodString>;
|
|
6171
|
+
'ISO_3166-1_alpha-3': z.ZodOptional<z.ZodString>;
|
|
6172
|
+
'ISO_3166-2': z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
6173
|
+
_category: z.ZodOptional<z.ZodString>;
|
|
6174
|
+
_normalized_city: z.ZodOptional<z.ZodString>;
|
|
6175
|
+
_type: z.ZodString;
|
|
6176
|
+
city: z.ZodOptional<z.ZodString>;
|
|
6177
|
+
continent: z.ZodOptional<z.ZodString>;
|
|
6178
|
+
country: z.ZodOptional<z.ZodString>;
|
|
6179
|
+
country_code: z.ZodOptional<z.ZodString>;
|
|
6180
|
+
state_code: z.ZodOptional<z.ZodString>;
|
|
6181
|
+
county: z.ZodOptional<z.ZodString>;
|
|
6182
|
+
municipality: z.ZodOptional<z.ZodString>;
|
|
6183
|
+
political_union: z.ZodOptional<z.ZodString>;
|
|
6184
|
+
state: z.ZodOptional<z.ZodString>;
|
|
6185
|
+
state_district: z.ZodOptional<z.ZodString>;
|
|
6186
|
+
}, z.core.$strip>>;
|
|
6187
|
+
geometry: z.ZodOptional<z.ZodObject<{
|
|
6188
|
+
lat: z.ZodNumber;
|
|
6189
|
+
lng: z.ZodNumber;
|
|
6190
|
+
}, z.core.$strip>>;
|
|
6191
|
+
override: z.ZodOptional<z.ZodBoolean>;
|
|
6192
|
+
accuracy: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6193
|
+
identifier: z.ZodString;
|
|
6194
|
+
id: z.ZodEnum<{
|
|
6195
|
+
location_accuracy_a: import("../entity").LocationAccuracy.A;
|
|
6196
|
+
location_accuracy_b: import("../entity").LocationAccuracy.B;
|
|
6197
|
+
location_accuracy_c: import("../entity").LocationAccuracy.C;
|
|
6198
|
+
location_accuracy_not_determined: import("../entity").LocationAccuracy.NOT_DETERMINED;
|
|
6199
|
+
}>;
|
|
6200
|
+
}, z.core.$strip>>>;
|
|
6201
|
+
source: z.ZodOptional<z.ZodString>;
|
|
6202
|
+
}, z.core.$strip>>>;
|
|
6203
|
+
country: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6204
|
+
identifier: z.ZodString;
|
|
6205
|
+
id: z.ZodString;
|
|
6206
|
+
}, z.core.$strip>>>;
|
|
6207
|
+
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6208
|
+
identifier: z.ZodString;
|
|
6209
|
+
id: z.ZodString;
|
|
6210
|
+
role: z.ZodString;
|
|
6211
|
+
ref: z.ZodOptional<z.ZodString>;
|
|
6212
|
+
}, z.core.$strip>>>;
|
|
6213
|
+
schema: z.ZodLiteral<"global_signal">;
|
|
6214
|
+
allSectors: z.ZodOptional<z.ZodString>;
|
|
6215
|
+
facilityAddress: z.ZodOptional<z.ZodObject<{
|
|
6216
|
+
full: z.ZodOptional<z.ZodString>;
|
|
6217
|
+
city: z.ZodOptional<z.ZodString>;
|
|
6218
|
+
state: z.ZodOptional<z.ZodString>;
|
|
6219
|
+
street: z.ZodOptional<z.ZodString>;
|
|
6220
|
+
street2: z.ZodOptional<z.ZodString>;
|
|
6221
|
+
zip: z.ZodOptional<z.ZodString>;
|
|
6222
|
+
country: z.ZodOptional<z.ZodString>;
|
|
6223
|
+
latitude: z.ZodOptional<z.ZodNumber>;
|
|
6224
|
+
longitude: z.ZodOptional<z.ZodNumber>;
|
|
6225
|
+
}, z.core.$strip>>;
|
|
6226
|
+
mw: z.ZodOptional<z.ZodNumber>;
|
|
6227
|
+
geo: z.ZodOptional<z.ZodObject<{
|
|
6228
|
+
default: z.ZodOptional<z.ZodObject<{
|
|
6229
|
+
lat: z.ZodNumber;
|
|
6230
|
+
lon: z.ZodNumber;
|
|
6231
|
+
}, z.core.$strip>>;
|
|
6232
|
+
defaultValue: z.ZodOptional<z.ZodString>;
|
|
6233
|
+
}, z.core.$strip>>;
|
|
6234
|
+
sort: z.ZodOptional<z.ZodArray<z.ZodNumber>>;
|
|
6235
|
+
}, z.core.$strict>]>, z.ZodObject<{
|
|
6236
|
+
type: z.ZodOptional<z.ZodObject<{
|
|
6237
|
+
identifier: z.ZodString;
|
|
6238
|
+
id: z.ZodString;
|
|
6239
|
+
}, z.core.$strip>>;
|
|
6240
|
+
id: z.ZodString;
|
|
6241
|
+
location: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6242
|
+
identifier: z.ZodString;
|
|
6243
|
+
id: z.ZodString;
|
|
6244
|
+
isApproximate: z.ZodOptional<z.ZodBoolean>;
|
|
6245
|
+
components: z.ZodOptional<z.ZodObject<{
|
|
6246
|
+
'ISO_3166-1_alpha-2': z.ZodOptional<z.ZodString>;
|
|
6247
|
+
'ISO_3166-1_alpha-3': z.ZodOptional<z.ZodString>;
|
|
6248
|
+
'ISO_3166-2': z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
6249
|
+
_category: z.ZodOptional<z.ZodString>;
|
|
6250
|
+
_normalized_city: z.ZodOptional<z.ZodString>;
|
|
6251
|
+
_type: z.ZodString;
|
|
6252
|
+
city: z.ZodOptional<z.ZodString>;
|
|
6253
|
+
continent: z.ZodOptional<z.ZodString>;
|
|
6254
|
+
country: z.ZodOptional<z.ZodString>;
|
|
6255
|
+
country_code: z.ZodOptional<z.ZodString>;
|
|
6256
|
+
state_code: z.ZodOptional<z.ZodString>;
|
|
6257
|
+
county: z.ZodOptional<z.ZodString>;
|
|
6258
|
+
municipality: z.ZodOptional<z.ZodString>;
|
|
6259
|
+
political_union: z.ZodOptional<z.ZodString>;
|
|
6260
|
+
state: z.ZodOptional<z.ZodString>;
|
|
6261
|
+
state_district: z.ZodOptional<z.ZodString>;
|
|
6262
|
+
}, z.core.$strip>>;
|
|
6263
|
+
geometry: z.ZodOptional<z.ZodObject<{
|
|
6264
|
+
lat: z.ZodNumber;
|
|
6265
|
+
lng: z.ZodNumber;
|
|
6266
|
+
}, z.core.$strip>>;
|
|
6267
|
+
override: z.ZodOptional<z.ZodBoolean>;
|
|
6268
|
+
accuracy: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6269
|
+
identifier: z.ZodString;
|
|
6270
|
+
id: z.ZodEnum<{
|
|
6271
|
+
location_accuracy_a: import("../entity").LocationAccuracy.A;
|
|
6272
|
+
location_accuracy_b: import("../entity").LocationAccuracy.B;
|
|
6273
|
+
location_accuracy_c: import("../entity").LocationAccuracy.C;
|
|
6274
|
+
location_accuracy_not_determined: import("../entity").LocationAccuracy.NOT_DETERMINED;
|
|
6275
|
+
}>;
|
|
6276
|
+
}, z.core.$strip>>>;
|
|
6277
|
+
source: z.ZodOptional<z.ZodString>;
|
|
6278
|
+
}, z.core.$strip>>>;
|
|
6279
|
+
country: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6280
|
+
identifier: z.ZodString;
|
|
6281
|
+
id: z.ZodString;
|
|
6282
|
+
}, z.core.$strip>>>;
|
|
6283
|
+
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6284
|
+
identifier: z.ZodString;
|
|
6285
|
+
id: z.ZodString;
|
|
6286
|
+
role: z.ZodString;
|
|
6287
|
+
ref: z.ZodOptional<z.ZodString>;
|
|
6288
|
+
}, z.core.$strip>>>;
|
|
6289
|
+
schema: z.ZodLiteral<"apac_signal">;
|
|
6290
|
+
allSectors: z.ZodOptional<z.ZodString>;
|
|
6291
|
+
facilityAddress: z.ZodOptional<z.ZodObject<{
|
|
6292
|
+
full: z.ZodOptional<z.ZodString>;
|
|
6293
|
+
city: z.ZodOptional<z.ZodString>;
|
|
6294
|
+
state: z.ZodOptional<z.ZodString>;
|
|
6295
|
+
street: z.ZodOptional<z.ZodString>;
|
|
6296
|
+
street2: z.ZodOptional<z.ZodString>;
|
|
6297
|
+
zip: z.ZodOptional<z.ZodString>;
|
|
6298
|
+
country: z.ZodOptional<z.ZodString>;
|
|
6299
|
+
latitude: z.ZodOptional<z.ZodNumber>;
|
|
6300
|
+
longitude: z.ZodOptional<z.ZodNumber>;
|
|
6301
|
+
}, z.core.$strip>>;
|
|
6302
|
+
mw: z.ZodOptional<z.ZodNumber>;
|
|
6303
|
+
geo: z.ZodOptional<z.ZodObject<{
|
|
6304
|
+
default: z.ZodOptional<z.ZodObject<{
|
|
6305
|
+
lat: z.ZodNumber;
|
|
6306
|
+
lon: z.ZodNumber;
|
|
6307
|
+
}, z.core.$strip>>;
|
|
6308
|
+
defaultValue: z.ZodOptional<z.ZodString>;
|
|
6309
|
+
}, z.core.$strip>>;
|
|
6310
|
+
sort: z.ZodOptional<z.ZodArray<z.ZodNumber>>;
|
|
6311
|
+
}, z.core.$strict>]>;
|
|
6312
|
+
export declare const signalByLocationListUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
6313
|
+
type: z.ZodOptional<z.ZodObject<{
|
|
6314
|
+
identifier: z.ZodString;
|
|
6315
|
+
id: z.ZodString;
|
|
6316
|
+
}, z.core.$strip>>;
|
|
6317
|
+
id: z.ZodString;
|
|
6318
|
+
location: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6319
|
+
identifier: z.ZodString;
|
|
6320
|
+
id: z.ZodString;
|
|
6321
|
+
isApproximate: z.ZodOptional<z.ZodBoolean>;
|
|
6322
|
+
components: z.ZodOptional<z.ZodObject<{
|
|
6323
|
+
'ISO_3166-1_alpha-2': z.ZodOptional<z.ZodString>;
|
|
6324
|
+
'ISO_3166-1_alpha-3': z.ZodOptional<z.ZodString>;
|
|
6325
|
+
'ISO_3166-2': z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
6326
|
+
_category: z.ZodOptional<z.ZodString>;
|
|
6327
|
+
_normalized_city: z.ZodOptional<z.ZodString>;
|
|
6328
|
+
_type: z.ZodString;
|
|
6329
|
+
city: z.ZodOptional<z.ZodString>;
|
|
6330
|
+
continent: z.ZodOptional<z.ZodString>;
|
|
6331
|
+
country: z.ZodOptional<z.ZodString>;
|
|
6332
|
+
country_code: z.ZodOptional<z.ZodString>;
|
|
6333
|
+
state_code: z.ZodOptional<z.ZodString>;
|
|
6334
|
+
county: z.ZodOptional<z.ZodString>;
|
|
6335
|
+
municipality: z.ZodOptional<z.ZodString>;
|
|
6336
|
+
political_union: z.ZodOptional<z.ZodString>;
|
|
6337
|
+
state: z.ZodOptional<z.ZodString>;
|
|
6338
|
+
state_district: z.ZodOptional<z.ZodString>;
|
|
6339
|
+
}, z.core.$strip>>;
|
|
6340
|
+
geometry: z.ZodOptional<z.ZodObject<{
|
|
6341
|
+
lat: z.ZodNumber;
|
|
6342
|
+
lng: z.ZodNumber;
|
|
6343
|
+
}, z.core.$strip>>;
|
|
6344
|
+
override: z.ZodOptional<z.ZodBoolean>;
|
|
6345
|
+
accuracy: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6346
|
+
identifier: z.ZodString;
|
|
6347
|
+
id: z.ZodEnum<{
|
|
6348
|
+
location_accuracy_a: import("../entity").LocationAccuracy.A;
|
|
6349
|
+
location_accuracy_b: import("../entity").LocationAccuracy.B;
|
|
6350
|
+
location_accuracy_c: import("../entity").LocationAccuracy.C;
|
|
6351
|
+
location_accuracy_not_determined: import("../entity").LocationAccuracy.NOT_DETERMINED;
|
|
6352
|
+
}>;
|
|
6353
|
+
}, z.core.$strip>>>;
|
|
6354
|
+
source: z.ZodOptional<z.ZodString>;
|
|
6355
|
+
}, z.core.$strip>>>;
|
|
6356
|
+
country: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6357
|
+
identifier: z.ZodString;
|
|
6358
|
+
id: z.ZodString;
|
|
6359
|
+
}, z.core.$strip>>>;
|
|
6360
|
+
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6361
|
+
identifier: z.ZodString;
|
|
6362
|
+
id: z.ZodString;
|
|
6363
|
+
role: z.ZodString;
|
|
6364
|
+
ref: z.ZodOptional<z.ZodString>;
|
|
6365
|
+
}, z.core.$strip>>>;
|
|
6366
|
+
schema: z.ZodLiteral<"eu_signal">;
|
|
6367
|
+
allSectors: z.ZodOptional<z.ZodString>;
|
|
6368
|
+
facilityAddress: z.ZodOptional<z.ZodObject<{
|
|
6369
|
+
full: z.ZodOptional<z.ZodString>;
|
|
6370
|
+
city: z.ZodOptional<z.ZodString>;
|
|
6371
|
+
state: z.ZodOptional<z.ZodString>;
|
|
6372
|
+
street: z.ZodOptional<z.ZodString>;
|
|
6373
|
+
street2: z.ZodOptional<z.ZodString>;
|
|
6374
|
+
zip: z.ZodOptional<z.ZodString>;
|
|
6375
|
+
country: z.ZodOptional<z.ZodString>;
|
|
6376
|
+
latitude: z.ZodOptional<z.ZodNumber>;
|
|
6377
|
+
longitude: z.ZodOptional<z.ZodNumber>;
|
|
6378
|
+
}, z.core.$strip>>;
|
|
6379
|
+
mw: z.ZodOptional<z.ZodNumber>;
|
|
6380
|
+
geo: z.ZodOptional<z.ZodObject<{
|
|
6381
|
+
default: z.ZodOptional<z.ZodObject<{
|
|
6382
|
+
lat: z.ZodNumber;
|
|
6383
|
+
lon: z.ZodNumber;
|
|
6384
|
+
}, z.core.$strip>>;
|
|
6385
|
+
defaultValue: z.ZodOptional<z.ZodString>;
|
|
6386
|
+
}, z.core.$strip>>;
|
|
6387
|
+
sort: z.ZodOptional<z.ZodArray<z.ZodNumber>>;
|
|
6388
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
6389
|
+
type: z.ZodOptional<z.ZodObject<{
|
|
6390
|
+
identifier: z.ZodString;
|
|
6391
|
+
id: z.ZodString;
|
|
6392
|
+
}, z.core.$strip>>;
|
|
6393
|
+
state: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4425
6394
|
identifier: z.ZodString;
|
|
4426
6395
|
id: z.ZodString;
|
|
4427
6396
|
}, z.core.$strip>>>;
|
|
@@ -4496,8 +6465,7 @@ export declare const usSignalByLocationListSchemaV1: z.ZodObject<{
|
|
|
4496
6465
|
defaultValue: z.ZodOptional<z.ZodString>;
|
|
4497
6466
|
}, z.core.$strip>>;
|
|
4498
6467
|
sort: z.ZodOptional<z.ZodArray<z.ZodNumber>>;
|
|
4499
|
-
}, z.core.$strict
|
|
4500
|
-
export declare const globalSignalByLocationListSchemaV1: z.ZodObject<{
|
|
6468
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
4501
6469
|
type: z.ZodOptional<z.ZodObject<{
|
|
4502
6470
|
identifier: z.ZodString;
|
|
4503
6471
|
id: z.ZodString;
|
|
@@ -4581,8 +6549,7 @@ export declare const globalSignalByLocationListSchemaV1: z.ZodObject<{
|
|
|
4581
6549
|
defaultValue: z.ZodOptional<z.ZodString>;
|
|
4582
6550
|
}, z.core.$strip>>;
|
|
4583
6551
|
sort: z.ZodOptional<z.ZodArray<z.ZodNumber>>;
|
|
4584
|
-
}, z.core.$strict
|
|
4585
|
-
export declare const signalByLocationListSchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
6552
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
4586
6553
|
type: z.ZodOptional<z.ZodObject<{
|
|
4587
6554
|
identifier: z.ZodString;
|
|
4588
6555
|
id: z.ZodString;
|
|
@@ -4636,7 +6603,7 @@ export declare const signalByLocationListSchemaV1: z.ZodUnion<[z.ZodUnion<[z.Zod
|
|
|
4636
6603
|
role: z.ZodString;
|
|
4637
6604
|
ref: z.ZodOptional<z.ZodString>;
|
|
4638
6605
|
}, z.core.$strip>>>;
|
|
4639
|
-
schema: z.ZodLiteral<"
|
|
6606
|
+
schema: z.ZodLiteral<"apac_signal">;
|
|
4640
6607
|
allSectors: z.ZodOptional<z.ZodString>;
|
|
4641
6608
|
facilityAddress: z.ZodOptional<z.ZodObject<{
|
|
4642
6609
|
full: z.ZodOptional<z.ZodString>;
|
|
@@ -4658,18 +6625,25 @@ export declare const signalByLocationListSchemaV1: z.ZodUnion<[z.ZodUnion<[z.Zod
|
|
|
4658
6625
|
defaultValue: z.ZodOptional<z.ZodString>;
|
|
4659
6626
|
}, z.core.$strip>>;
|
|
4660
6627
|
sort: z.ZodOptional<z.ZodArray<z.ZodNumber>>;
|
|
4661
|
-
}, z.core.$strict
|
|
6628
|
+
}, z.core.$strict>], "schema">;
|
|
6629
|
+
export declare const euSignalExportSchemaV1: z.ZodObject<{
|
|
4662
6630
|
type: z.ZodOptional<z.ZodObject<{
|
|
4663
6631
|
identifier: z.ZodString;
|
|
4664
6632
|
id: z.ZodString;
|
|
4665
6633
|
}, z.core.$strip>>;
|
|
4666
|
-
|
|
6634
|
+
subType: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4667
6635
|
identifier: z.ZodString;
|
|
4668
6636
|
id: z.ZodString;
|
|
4669
6637
|
}, z.core.$strip>>>;
|
|
4670
|
-
|
|
4671
|
-
|
|
4672
|
-
|
|
6638
|
+
keyPeople: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6639
|
+
id: z.ZodOptional<z.ZodString>;
|
|
6640
|
+
identifier: z.ZodOptional<z.ZodString>;
|
|
6641
|
+
linkedinUrl: z.ZodOptional<z.ZodString>;
|
|
6642
|
+
role: z.ZodOptional<z.ZodString>;
|
|
6643
|
+
fullName: z.ZodOptional<z.ZodString>;
|
|
6644
|
+
email: z.ZodOptional<z.ZodString>;
|
|
6645
|
+
phone: z.ZodOptional<z.ZodString>;
|
|
6646
|
+
source: z.ZodOptional<z.ZodString>;
|
|
4673
6647
|
}, z.core.$strip>>>;
|
|
4674
6648
|
id: z.ZodString;
|
|
4675
6649
|
location: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -4710,14 +6684,40 @@ export declare const signalByLocationListSchemaV1: z.ZodUnion<[z.ZodUnion<[z.Zod
|
|
|
4710
6684
|
}, z.core.$strip>>>;
|
|
4711
6685
|
source: z.ZodOptional<z.ZodString>;
|
|
4712
6686
|
}, z.core.$strip>>>;
|
|
6687
|
+
country: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6688
|
+
identifier: z.ZodString;
|
|
6689
|
+
id: z.ZodString;
|
|
6690
|
+
}, z.core.$strip>>>;
|
|
6691
|
+
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
6692
|
+
filename: z.ZodString;
|
|
6693
|
+
created: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
6694
|
+
document_id: z.ZodString;
|
|
6695
|
+
mimetype: z.ZodString;
|
|
6696
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
6697
|
+
type: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
6698
|
+
key: z.ZodOptional<z.ZodString>;
|
|
6699
|
+
userName: z.ZodOptional<z.ZodString>;
|
|
6700
|
+
url: z.ZodOptional<z.ZodString>;
|
|
6701
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
6702
|
+
file: z.ZodOptional<z.ZodString>;
|
|
6703
|
+
url: z.ZodString;
|
|
6704
|
+
created: z.ZodOptional<z.ZodString>;
|
|
6705
|
+
type: z.ZodArray<z.ZodString>;
|
|
6706
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
6707
|
+
documentDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
6708
|
+
source: z.ZodOptional<z.ZodString>;
|
|
6709
|
+
id: z.ZodOptional<z.ZodString>;
|
|
6710
|
+
}, z.core.$strip>]>>>;
|
|
4713
6711
|
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4714
6712
|
identifier: z.ZodString;
|
|
4715
6713
|
id: z.ZodString;
|
|
4716
6714
|
role: z.ZodString;
|
|
4717
6715
|
ref: z.ZodOptional<z.ZodString>;
|
|
4718
6716
|
}, z.core.$strip>>>;
|
|
4719
|
-
|
|
6717
|
+
headline: z.ZodString;
|
|
6718
|
+
schema: z.ZodLiteral<"eu_signal">;
|
|
4720
6719
|
allSectors: z.ZodOptional<z.ZodString>;
|
|
6720
|
+
commercialOperationDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4721
6721
|
facilityAddress: z.ZodOptional<z.ZodObject<{
|
|
4722
6722
|
full: z.ZodOptional<z.ZodString>;
|
|
4723
6723
|
city: z.ZodOptional<z.ZodString>;
|
|
@@ -4729,7 +6729,26 @@ export declare const signalByLocationListSchemaV1: z.ZodUnion<[z.ZodUnion<[z.Zod
|
|
|
4729
6729
|
latitude: z.ZodOptional<z.ZodNumber>;
|
|
4730
6730
|
longitude: z.ZodOptional<z.ZodNumber>;
|
|
4731
6731
|
}, z.core.$strip>>;
|
|
6732
|
+
facilityName: z.ZodOptional<z.ZodString>;
|
|
6733
|
+
filingDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4732
6734
|
mw: z.ZodOptional<z.ZodNumber>;
|
|
6735
|
+
publishedDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
6736
|
+
totals: z.ZodOptional<z.ZodObject<{
|
|
6737
|
+
projects: z.ZodOptional<z.ZodNumber>;
|
|
6738
|
+
keyPeople: z.ZodOptional<z.ZodNumber>;
|
|
6739
|
+
documents: z.ZodOptional<z.ZodNumber>;
|
|
6740
|
+
organizations: z.ZodOptional<z.ZodNumber>;
|
|
6741
|
+
queueApplications: z.ZodOptional<z.ZodNumber>;
|
|
6742
|
+
intels: z.ZodOptional<z.ZodNumber>;
|
|
6743
|
+
signals: z.ZodOptional<z.ZodNumber>;
|
|
6744
|
+
developer: z.ZodOptional<z.ZodNumber>;
|
|
6745
|
+
developers: z.ZodOptional<z.ZodNumber>;
|
|
6746
|
+
utility: z.ZodOptional<z.ZodNumber>;
|
|
6747
|
+
offtaker: z.ZodOptional<z.ZodNumber>;
|
|
6748
|
+
epc: z.ZodOptional<z.ZodNumber>;
|
|
6749
|
+
puc: z.ZodOptional<z.ZodNumber>;
|
|
6750
|
+
}, z.core.$strip>>;
|
|
6751
|
+
updated: z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>;
|
|
4733
6752
|
geo: z.ZodOptional<z.ZodObject<{
|
|
4734
6753
|
default: z.ZodOptional<z.ZodObject<{
|
|
4735
6754
|
lat: z.ZodNumber;
|
|
@@ -4737,12 +6756,17 @@ export declare const signalByLocationListSchemaV1: z.ZodUnion<[z.ZodUnion<[z.Zod
|
|
|
4737
6756
|
}, z.core.$strip>>;
|
|
4738
6757
|
defaultValue: z.ZodOptional<z.ZodString>;
|
|
4739
6758
|
}, z.core.$strip>>;
|
|
4740
|
-
sort: z.
|
|
4741
|
-
}, z.core.$strict
|
|
6759
|
+
sort: z.ZodTuple<[z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>, z.ZodNumber], null>;
|
|
6760
|
+
}, z.core.$strict>;
|
|
6761
|
+
export declare const usSignalExportSchemaV1: z.ZodObject<{
|
|
4742
6762
|
type: z.ZodOptional<z.ZodObject<{
|
|
4743
6763
|
identifier: z.ZodString;
|
|
4744
6764
|
id: z.ZodString;
|
|
4745
6765
|
}, z.core.$strip>>;
|
|
6766
|
+
subType: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6767
|
+
identifier: z.ZodString;
|
|
6768
|
+
id: z.ZodString;
|
|
6769
|
+
}, z.core.$strip>>>;
|
|
4746
6770
|
state: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4747
6771
|
identifier: z.ZodString;
|
|
4748
6772
|
id: z.ZodString;
|
|
@@ -4751,6 +6775,16 @@ export declare const signalByLocationListSchemaV1: z.ZodUnion<[z.ZodUnion<[z.Zod
|
|
|
4751
6775
|
identifier: z.ZodString;
|
|
4752
6776
|
id: z.ZodString;
|
|
4753
6777
|
}, z.core.$strip>>>;
|
|
6778
|
+
keyPeople: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6779
|
+
id: z.ZodOptional<z.ZodString>;
|
|
6780
|
+
identifier: z.ZodOptional<z.ZodString>;
|
|
6781
|
+
linkedinUrl: z.ZodOptional<z.ZodString>;
|
|
6782
|
+
role: z.ZodOptional<z.ZodString>;
|
|
6783
|
+
fullName: z.ZodOptional<z.ZodString>;
|
|
6784
|
+
email: z.ZodOptional<z.ZodString>;
|
|
6785
|
+
phone: z.ZodOptional<z.ZodString>;
|
|
6786
|
+
source: z.ZodOptional<z.ZodString>;
|
|
6787
|
+
}, z.core.$strip>>>;
|
|
4754
6788
|
id: z.ZodString;
|
|
4755
6789
|
location: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4756
6790
|
identifier: z.ZodString;
|
|
@@ -4794,14 +6828,40 @@ export declare const signalByLocationListSchemaV1: z.ZodUnion<[z.ZodUnion<[z.Zod
|
|
|
4794
6828
|
identifier: z.ZodString;
|
|
4795
6829
|
id: z.ZodString;
|
|
4796
6830
|
}, z.core.$strip>>>;
|
|
6831
|
+
projects: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6832
|
+
identifier: z.ZodString;
|
|
6833
|
+
id: z.ZodString;
|
|
6834
|
+
}, z.core.$strip>>>;
|
|
6835
|
+
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
6836
|
+
filename: z.ZodString;
|
|
6837
|
+
created: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
6838
|
+
document_id: z.ZodString;
|
|
6839
|
+
mimetype: z.ZodString;
|
|
6840
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
6841
|
+
type: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
6842
|
+
key: z.ZodOptional<z.ZodString>;
|
|
6843
|
+
userName: z.ZodOptional<z.ZodString>;
|
|
6844
|
+
url: z.ZodOptional<z.ZodString>;
|
|
6845
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
6846
|
+
file: z.ZodOptional<z.ZodString>;
|
|
6847
|
+
url: z.ZodString;
|
|
6848
|
+
created: z.ZodOptional<z.ZodString>;
|
|
6849
|
+
type: z.ZodArray<z.ZodString>;
|
|
6850
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
6851
|
+
documentDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
6852
|
+
source: z.ZodOptional<z.ZodString>;
|
|
6853
|
+
id: z.ZodOptional<z.ZodString>;
|
|
6854
|
+
}, z.core.$strip>]>>>;
|
|
4797
6855
|
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4798
6856
|
identifier: z.ZodString;
|
|
4799
6857
|
id: z.ZodString;
|
|
4800
6858
|
role: z.ZodString;
|
|
4801
6859
|
ref: z.ZodOptional<z.ZodString>;
|
|
4802
6860
|
}, z.core.$strip>>>;
|
|
4803
|
-
|
|
6861
|
+
headline: z.ZodString;
|
|
6862
|
+
schema: z.ZodLiteral<"us_signal">;
|
|
4804
6863
|
allSectors: z.ZodOptional<z.ZodString>;
|
|
6864
|
+
commercialOperationDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4805
6865
|
facilityAddress: z.ZodOptional<z.ZodObject<{
|
|
4806
6866
|
full: z.ZodOptional<z.ZodString>;
|
|
4807
6867
|
city: z.ZodOptional<z.ZodString>;
|
|
@@ -4813,7 +6873,26 @@ export declare const signalByLocationListSchemaV1: z.ZodUnion<[z.ZodUnion<[z.Zod
|
|
|
4813
6873
|
latitude: z.ZodOptional<z.ZodNumber>;
|
|
4814
6874
|
longitude: z.ZodOptional<z.ZodNumber>;
|
|
4815
6875
|
}, z.core.$strip>>;
|
|
6876
|
+
facilityName: z.ZodOptional<z.ZodString>;
|
|
6877
|
+
filingDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4816
6878
|
mw: z.ZodOptional<z.ZodNumber>;
|
|
6879
|
+
publishedDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
6880
|
+
totals: z.ZodOptional<z.ZodObject<{
|
|
6881
|
+
projects: z.ZodOptional<z.ZodNumber>;
|
|
6882
|
+
keyPeople: z.ZodOptional<z.ZodNumber>;
|
|
6883
|
+
documents: z.ZodOptional<z.ZodNumber>;
|
|
6884
|
+
organizations: z.ZodOptional<z.ZodNumber>;
|
|
6885
|
+
queueApplications: z.ZodOptional<z.ZodNumber>;
|
|
6886
|
+
intels: z.ZodOptional<z.ZodNumber>;
|
|
6887
|
+
signals: z.ZodOptional<z.ZodNumber>;
|
|
6888
|
+
developer: z.ZodOptional<z.ZodNumber>;
|
|
6889
|
+
developers: z.ZodOptional<z.ZodNumber>;
|
|
6890
|
+
utility: z.ZodOptional<z.ZodNumber>;
|
|
6891
|
+
offtaker: z.ZodOptional<z.ZodNumber>;
|
|
6892
|
+
epc: z.ZodOptional<z.ZodNumber>;
|
|
6893
|
+
puc: z.ZodOptional<z.ZodNumber>;
|
|
6894
|
+
}, z.core.$strip>>;
|
|
6895
|
+
updated: z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>;
|
|
4817
6896
|
geo: z.ZodOptional<z.ZodObject<{
|
|
4818
6897
|
default: z.ZodOptional<z.ZodObject<{
|
|
4819
6898
|
lat: z.ZodNumber;
|
|
@@ -4821,13 +6900,35 @@ export declare const signalByLocationListSchemaV1: z.ZodUnion<[z.ZodUnion<[z.Zod
|
|
|
4821
6900
|
}, z.core.$strip>>;
|
|
4822
6901
|
defaultValue: z.ZodOptional<z.ZodString>;
|
|
4823
6902
|
}, z.core.$strip>>;
|
|
4824
|
-
sort: z.
|
|
4825
|
-
}, z.core.$strict
|
|
4826
|
-
export declare const
|
|
6903
|
+
sort: z.ZodTuple<[z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>, z.ZodNumber], null>;
|
|
6904
|
+
}, z.core.$strict>;
|
|
6905
|
+
export declare const globalSignalExportSchemaV1: z.ZodObject<{
|
|
4827
6906
|
type: z.ZodOptional<z.ZodObject<{
|
|
4828
6907
|
identifier: z.ZodString;
|
|
4829
6908
|
id: z.ZodString;
|
|
4830
6909
|
}, z.core.$strip>>;
|
|
6910
|
+
subType: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6911
|
+
identifier: z.ZodString;
|
|
6912
|
+
id: z.ZodString;
|
|
6913
|
+
}, z.core.$strip>>>;
|
|
6914
|
+
state: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6915
|
+
identifier: z.ZodString;
|
|
6916
|
+
id: z.ZodString;
|
|
6917
|
+
}, z.core.$strip>>>;
|
|
6918
|
+
county: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6919
|
+
identifier: z.ZodString;
|
|
6920
|
+
id: z.ZodString;
|
|
6921
|
+
}, z.core.$strip>>>;
|
|
6922
|
+
keyPeople: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6923
|
+
id: z.ZodOptional<z.ZodString>;
|
|
6924
|
+
identifier: z.ZodOptional<z.ZodString>;
|
|
6925
|
+
linkedinUrl: z.ZodOptional<z.ZodString>;
|
|
6926
|
+
role: z.ZodOptional<z.ZodString>;
|
|
6927
|
+
fullName: z.ZodOptional<z.ZodString>;
|
|
6928
|
+
email: z.ZodOptional<z.ZodString>;
|
|
6929
|
+
phone: z.ZodOptional<z.ZodString>;
|
|
6930
|
+
source: z.ZodOptional<z.ZodString>;
|
|
6931
|
+
}, z.core.$strip>>>;
|
|
4831
6932
|
id: z.ZodString;
|
|
4832
6933
|
location: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4833
6934
|
identifier: z.ZodString;
|
|
@@ -4871,14 +6972,40 @@ export declare const signalByLocationListUnionSchemaV1: z.ZodDiscriminatedUnion<
|
|
|
4871
6972
|
identifier: z.ZodString;
|
|
4872
6973
|
id: z.ZodString;
|
|
4873
6974
|
}, z.core.$strip>>>;
|
|
6975
|
+
projects: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6976
|
+
identifier: z.ZodString;
|
|
6977
|
+
id: z.ZodString;
|
|
6978
|
+
}, z.core.$strip>>>;
|
|
6979
|
+
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
6980
|
+
filename: z.ZodString;
|
|
6981
|
+
created: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
6982
|
+
document_id: z.ZodString;
|
|
6983
|
+
mimetype: z.ZodString;
|
|
6984
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
6985
|
+
type: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
6986
|
+
key: z.ZodOptional<z.ZodString>;
|
|
6987
|
+
userName: z.ZodOptional<z.ZodString>;
|
|
6988
|
+
url: z.ZodOptional<z.ZodString>;
|
|
6989
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
6990
|
+
file: z.ZodOptional<z.ZodString>;
|
|
6991
|
+
url: z.ZodString;
|
|
6992
|
+
created: z.ZodOptional<z.ZodString>;
|
|
6993
|
+
type: z.ZodArray<z.ZodString>;
|
|
6994
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
6995
|
+
documentDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
6996
|
+
source: z.ZodOptional<z.ZodString>;
|
|
6997
|
+
id: z.ZodOptional<z.ZodString>;
|
|
6998
|
+
}, z.core.$strip>]>>>;
|
|
4874
6999
|
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4875
7000
|
identifier: z.ZodString;
|
|
4876
7001
|
id: z.ZodString;
|
|
4877
7002
|
role: z.ZodString;
|
|
4878
7003
|
ref: z.ZodOptional<z.ZodString>;
|
|
4879
7004
|
}, z.core.$strip>>>;
|
|
4880
|
-
|
|
7005
|
+
headline: z.ZodString;
|
|
7006
|
+
schema: z.ZodLiteral<"global_signal">;
|
|
4881
7007
|
allSectors: z.ZodOptional<z.ZodString>;
|
|
7008
|
+
commercialOperationDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4882
7009
|
facilityAddress: z.ZodOptional<z.ZodObject<{
|
|
4883
7010
|
full: z.ZodOptional<z.ZodString>;
|
|
4884
7011
|
city: z.ZodOptional<z.ZodString>;
|
|
@@ -4890,7 +7017,26 @@ export declare const signalByLocationListUnionSchemaV1: z.ZodDiscriminatedUnion<
|
|
|
4890
7017
|
latitude: z.ZodOptional<z.ZodNumber>;
|
|
4891
7018
|
longitude: z.ZodOptional<z.ZodNumber>;
|
|
4892
7019
|
}, z.core.$strip>>;
|
|
7020
|
+
facilityName: z.ZodOptional<z.ZodString>;
|
|
7021
|
+
filingDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4893
7022
|
mw: z.ZodOptional<z.ZodNumber>;
|
|
7023
|
+
publishedDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
7024
|
+
totals: z.ZodOptional<z.ZodObject<{
|
|
7025
|
+
projects: z.ZodOptional<z.ZodNumber>;
|
|
7026
|
+
keyPeople: z.ZodOptional<z.ZodNumber>;
|
|
7027
|
+
documents: z.ZodOptional<z.ZodNumber>;
|
|
7028
|
+
organizations: z.ZodOptional<z.ZodNumber>;
|
|
7029
|
+
queueApplications: z.ZodOptional<z.ZodNumber>;
|
|
7030
|
+
intels: z.ZodOptional<z.ZodNumber>;
|
|
7031
|
+
signals: z.ZodOptional<z.ZodNumber>;
|
|
7032
|
+
developer: z.ZodOptional<z.ZodNumber>;
|
|
7033
|
+
developers: z.ZodOptional<z.ZodNumber>;
|
|
7034
|
+
utility: z.ZodOptional<z.ZodNumber>;
|
|
7035
|
+
offtaker: z.ZodOptional<z.ZodNumber>;
|
|
7036
|
+
epc: z.ZodOptional<z.ZodNumber>;
|
|
7037
|
+
puc: z.ZodOptional<z.ZodNumber>;
|
|
7038
|
+
}, z.core.$strip>>;
|
|
7039
|
+
updated: z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>;
|
|
4894
7040
|
geo: z.ZodOptional<z.ZodObject<{
|
|
4895
7041
|
default: z.ZodOptional<z.ZodObject<{
|
|
4896
7042
|
lat: z.ZodNumber;
|
|
@@ -4898,19 +7044,26 @@ export declare const signalByLocationListUnionSchemaV1: z.ZodDiscriminatedUnion<
|
|
|
4898
7044
|
}, z.core.$strip>>;
|
|
4899
7045
|
defaultValue: z.ZodOptional<z.ZodString>;
|
|
4900
7046
|
}, z.core.$strip>>;
|
|
4901
|
-
sort: z.
|
|
4902
|
-
}, z.core.$strict
|
|
7047
|
+
sort: z.ZodTuple<[z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>, z.ZodNumber], null>;
|
|
7048
|
+
}, z.core.$strict>;
|
|
7049
|
+
export declare const apacSignalExportSchemaV1: z.ZodObject<{
|
|
4903
7050
|
type: z.ZodOptional<z.ZodObject<{
|
|
4904
7051
|
identifier: z.ZodString;
|
|
4905
7052
|
id: z.ZodString;
|
|
4906
7053
|
}, z.core.$strip>>;
|
|
4907
|
-
|
|
7054
|
+
subType: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4908
7055
|
identifier: z.ZodString;
|
|
4909
7056
|
id: z.ZodString;
|
|
4910
7057
|
}, z.core.$strip>>>;
|
|
4911
|
-
|
|
4912
|
-
|
|
4913
|
-
|
|
7058
|
+
keyPeople: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7059
|
+
id: z.ZodOptional<z.ZodString>;
|
|
7060
|
+
identifier: z.ZodOptional<z.ZodString>;
|
|
7061
|
+
linkedinUrl: z.ZodOptional<z.ZodString>;
|
|
7062
|
+
role: z.ZodOptional<z.ZodString>;
|
|
7063
|
+
fullName: z.ZodOptional<z.ZodString>;
|
|
7064
|
+
email: z.ZodOptional<z.ZodString>;
|
|
7065
|
+
phone: z.ZodOptional<z.ZodString>;
|
|
7066
|
+
source: z.ZodOptional<z.ZodString>;
|
|
4914
7067
|
}, z.core.$strip>>>;
|
|
4915
7068
|
id: z.ZodString;
|
|
4916
7069
|
location: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -4951,14 +7104,40 @@ export declare const signalByLocationListUnionSchemaV1: z.ZodDiscriminatedUnion<
|
|
|
4951
7104
|
}, z.core.$strip>>>;
|
|
4952
7105
|
source: z.ZodOptional<z.ZodString>;
|
|
4953
7106
|
}, z.core.$strip>>>;
|
|
7107
|
+
country: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7108
|
+
identifier: z.ZodString;
|
|
7109
|
+
id: z.ZodString;
|
|
7110
|
+
}, z.core.$strip>>>;
|
|
7111
|
+
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
7112
|
+
filename: z.ZodString;
|
|
7113
|
+
created: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
7114
|
+
document_id: z.ZodString;
|
|
7115
|
+
mimetype: z.ZodString;
|
|
7116
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
7117
|
+
type: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
7118
|
+
key: z.ZodOptional<z.ZodString>;
|
|
7119
|
+
userName: z.ZodOptional<z.ZodString>;
|
|
7120
|
+
url: z.ZodOptional<z.ZodString>;
|
|
7121
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
7122
|
+
file: z.ZodOptional<z.ZodString>;
|
|
7123
|
+
url: z.ZodString;
|
|
7124
|
+
created: z.ZodOptional<z.ZodString>;
|
|
7125
|
+
type: z.ZodArray<z.ZodString>;
|
|
7126
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
7127
|
+
documentDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
7128
|
+
source: z.ZodOptional<z.ZodString>;
|
|
7129
|
+
id: z.ZodOptional<z.ZodString>;
|
|
7130
|
+
}, z.core.$strip>]>>>;
|
|
4954
7131
|
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4955
7132
|
identifier: z.ZodString;
|
|
4956
7133
|
id: z.ZodString;
|
|
4957
7134
|
role: z.ZodString;
|
|
4958
7135
|
ref: z.ZodOptional<z.ZodString>;
|
|
4959
7136
|
}, z.core.$strip>>>;
|
|
4960
|
-
|
|
7137
|
+
headline: z.ZodString;
|
|
7138
|
+
schema: z.ZodLiteral<"apac_signal">;
|
|
4961
7139
|
allSectors: z.ZodOptional<z.ZodString>;
|
|
7140
|
+
commercialOperationDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4962
7141
|
facilityAddress: z.ZodOptional<z.ZodObject<{
|
|
4963
7142
|
full: z.ZodOptional<z.ZodString>;
|
|
4964
7143
|
city: z.ZodOptional<z.ZodString>;
|
|
@@ -4970,7 +7149,26 @@ export declare const signalByLocationListUnionSchemaV1: z.ZodDiscriminatedUnion<
|
|
|
4970
7149
|
latitude: z.ZodOptional<z.ZodNumber>;
|
|
4971
7150
|
longitude: z.ZodOptional<z.ZodNumber>;
|
|
4972
7151
|
}, z.core.$strip>>;
|
|
7152
|
+
facilityName: z.ZodOptional<z.ZodString>;
|
|
7153
|
+
filingDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4973
7154
|
mw: z.ZodOptional<z.ZodNumber>;
|
|
7155
|
+
publishedDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
7156
|
+
totals: z.ZodOptional<z.ZodObject<{
|
|
7157
|
+
projects: z.ZodOptional<z.ZodNumber>;
|
|
7158
|
+
keyPeople: z.ZodOptional<z.ZodNumber>;
|
|
7159
|
+
documents: z.ZodOptional<z.ZodNumber>;
|
|
7160
|
+
organizations: z.ZodOptional<z.ZodNumber>;
|
|
7161
|
+
queueApplications: z.ZodOptional<z.ZodNumber>;
|
|
7162
|
+
intels: z.ZodOptional<z.ZodNumber>;
|
|
7163
|
+
signals: z.ZodOptional<z.ZodNumber>;
|
|
7164
|
+
developer: z.ZodOptional<z.ZodNumber>;
|
|
7165
|
+
developers: z.ZodOptional<z.ZodNumber>;
|
|
7166
|
+
utility: z.ZodOptional<z.ZodNumber>;
|
|
7167
|
+
offtaker: z.ZodOptional<z.ZodNumber>;
|
|
7168
|
+
epc: z.ZodOptional<z.ZodNumber>;
|
|
7169
|
+
puc: z.ZodOptional<z.ZodNumber>;
|
|
7170
|
+
}, z.core.$strip>>;
|
|
7171
|
+
updated: z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>;
|
|
4974
7172
|
geo: z.ZodOptional<z.ZodObject<{
|
|
4975
7173
|
default: z.ZodOptional<z.ZodObject<{
|
|
4976
7174
|
lat: z.ZodNumber;
|
|
@@ -4978,19 +7176,26 @@ export declare const signalByLocationListUnionSchemaV1: z.ZodDiscriminatedUnion<
|
|
|
4978
7176
|
}, z.core.$strip>>;
|
|
4979
7177
|
defaultValue: z.ZodOptional<z.ZodString>;
|
|
4980
7178
|
}, z.core.$strip>>;
|
|
4981
|
-
sort: z.
|
|
4982
|
-
}, z.core.$strict
|
|
7179
|
+
sort: z.ZodTuple<[z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>, z.ZodNumber], null>;
|
|
7180
|
+
}, z.core.$strict>;
|
|
7181
|
+
export declare const signalExportUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
4983
7182
|
type: z.ZodOptional<z.ZodObject<{
|
|
4984
7183
|
identifier: z.ZodString;
|
|
4985
7184
|
id: z.ZodString;
|
|
4986
7185
|
}, z.core.$strip>>;
|
|
4987
|
-
|
|
7186
|
+
subType: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4988
7187
|
identifier: z.ZodString;
|
|
4989
7188
|
id: z.ZodString;
|
|
4990
7189
|
}, z.core.$strip>>>;
|
|
4991
|
-
|
|
4992
|
-
|
|
4993
|
-
|
|
7190
|
+
keyPeople: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7191
|
+
id: z.ZodOptional<z.ZodString>;
|
|
7192
|
+
identifier: z.ZodOptional<z.ZodString>;
|
|
7193
|
+
linkedinUrl: z.ZodOptional<z.ZodString>;
|
|
7194
|
+
role: z.ZodOptional<z.ZodString>;
|
|
7195
|
+
fullName: z.ZodOptional<z.ZodString>;
|
|
7196
|
+
email: z.ZodOptional<z.ZodString>;
|
|
7197
|
+
phone: z.ZodOptional<z.ZodString>;
|
|
7198
|
+
source: z.ZodOptional<z.ZodString>;
|
|
4994
7199
|
}, z.core.$strip>>>;
|
|
4995
7200
|
id: z.ZodString;
|
|
4996
7201
|
location: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -5035,14 +7240,36 @@ export declare const signalByLocationListUnionSchemaV1: z.ZodDiscriminatedUnion<
|
|
|
5035
7240
|
identifier: z.ZodString;
|
|
5036
7241
|
id: z.ZodString;
|
|
5037
7242
|
}, z.core.$strip>>>;
|
|
7243
|
+
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
7244
|
+
filename: z.ZodString;
|
|
7245
|
+
created: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
7246
|
+
document_id: z.ZodString;
|
|
7247
|
+
mimetype: z.ZodString;
|
|
7248
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
7249
|
+
type: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
7250
|
+
key: z.ZodOptional<z.ZodString>;
|
|
7251
|
+
userName: z.ZodOptional<z.ZodString>;
|
|
7252
|
+
url: z.ZodOptional<z.ZodString>;
|
|
7253
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
7254
|
+
file: z.ZodOptional<z.ZodString>;
|
|
7255
|
+
url: z.ZodString;
|
|
7256
|
+
created: z.ZodOptional<z.ZodString>;
|
|
7257
|
+
type: z.ZodArray<z.ZodString>;
|
|
7258
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
7259
|
+
documentDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
7260
|
+
source: z.ZodOptional<z.ZodString>;
|
|
7261
|
+
id: z.ZodOptional<z.ZodString>;
|
|
7262
|
+
}, z.core.$strip>]>>>;
|
|
5038
7263
|
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5039
7264
|
identifier: z.ZodString;
|
|
5040
7265
|
id: z.ZodString;
|
|
5041
7266
|
role: z.ZodString;
|
|
5042
7267
|
ref: z.ZodOptional<z.ZodString>;
|
|
5043
7268
|
}, z.core.$strip>>>;
|
|
5044
|
-
|
|
7269
|
+
headline: z.ZodString;
|
|
7270
|
+
schema: z.ZodLiteral<"eu_signal">;
|
|
5045
7271
|
allSectors: z.ZodOptional<z.ZodString>;
|
|
7272
|
+
commercialOperationDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
5046
7273
|
facilityAddress: z.ZodOptional<z.ZodObject<{
|
|
5047
7274
|
full: z.ZodOptional<z.ZodString>;
|
|
5048
7275
|
city: z.ZodOptional<z.ZodString>;
|
|
@@ -5054,7 +7281,26 @@ export declare const signalByLocationListUnionSchemaV1: z.ZodDiscriminatedUnion<
|
|
|
5054
7281
|
latitude: z.ZodOptional<z.ZodNumber>;
|
|
5055
7282
|
longitude: z.ZodOptional<z.ZodNumber>;
|
|
5056
7283
|
}, z.core.$strip>>;
|
|
7284
|
+
facilityName: z.ZodOptional<z.ZodString>;
|
|
7285
|
+
filingDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
5057
7286
|
mw: z.ZodOptional<z.ZodNumber>;
|
|
7287
|
+
publishedDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
7288
|
+
totals: z.ZodOptional<z.ZodObject<{
|
|
7289
|
+
projects: z.ZodOptional<z.ZodNumber>;
|
|
7290
|
+
keyPeople: z.ZodOptional<z.ZodNumber>;
|
|
7291
|
+
documents: z.ZodOptional<z.ZodNumber>;
|
|
7292
|
+
organizations: z.ZodOptional<z.ZodNumber>;
|
|
7293
|
+
queueApplications: z.ZodOptional<z.ZodNumber>;
|
|
7294
|
+
intels: z.ZodOptional<z.ZodNumber>;
|
|
7295
|
+
signals: z.ZodOptional<z.ZodNumber>;
|
|
7296
|
+
developer: z.ZodOptional<z.ZodNumber>;
|
|
7297
|
+
developers: z.ZodOptional<z.ZodNumber>;
|
|
7298
|
+
utility: z.ZodOptional<z.ZodNumber>;
|
|
7299
|
+
offtaker: z.ZodOptional<z.ZodNumber>;
|
|
7300
|
+
epc: z.ZodOptional<z.ZodNumber>;
|
|
7301
|
+
puc: z.ZodOptional<z.ZodNumber>;
|
|
7302
|
+
}, z.core.$strip>>;
|
|
7303
|
+
updated: z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>;
|
|
5058
7304
|
geo: z.ZodOptional<z.ZodObject<{
|
|
5059
7305
|
default: z.ZodOptional<z.ZodObject<{
|
|
5060
7306
|
lat: z.ZodNumber;
|
|
@@ -5062,9 +7308,8 @@ export declare const signalByLocationListUnionSchemaV1: z.ZodDiscriminatedUnion<
|
|
|
5062
7308
|
}, z.core.$strip>>;
|
|
5063
7309
|
defaultValue: z.ZodOptional<z.ZodString>;
|
|
5064
7310
|
}, z.core.$strip>>;
|
|
5065
|
-
sort: z.
|
|
5066
|
-
}, z.core.$strict
|
|
5067
|
-
export declare const euSignalExportSchemaV1: z.ZodObject<{
|
|
7311
|
+
sort: z.ZodTuple<[z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>, z.ZodNumber], null>;
|
|
7312
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
5068
7313
|
type: z.ZodOptional<z.ZodObject<{
|
|
5069
7314
|
identifier: z.ZodString;
|
|
5070
7315
|
id: z.ZodString;
|
|
@@ -5073,6 +7318,14 @@ export declare const euSignalExportSchemaV1: z.ZodObject<{
|
|
|
5073
7318
|
identifier: z.ZodString;
|
|
5074
7319
|
id: z.ZodString;
|
|
5075
7320
|
}, z.core.$strip>>>;
|
|
7321
|
+
state: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7322
|
+
identifier: z.ZodString;
|
|
7323
|
+
id: z.ZodString;
|
|
7324
|
+
}, z.core.$strip>>>;
|
|
7325
|
+
county: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7326
|
+
identifier: z.ZodString;
|
|
7327
|
+
id: z.ZodString;
|
|
7328
|
+
}, z.core.$strip>>>;
|
|
5076
7329
|
keyPeople: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5077
7330
|
id: z.ZodOptional<z.ZodString>;
|
|
5078
7331
|
identifier: z.ZodOptional<z.ZodString>;
|
|
@@ -5126,6 +7379,10 @@ export declare const euSignalExportSchemaV1: z.ZodObject<{
|
|
|
5126
7379
|
identifier: z.ZodString;
|
|
5127
7380
|
id: z.ZodString;
|
|
5128
7381
|
}, z.core.$strip>>>;
|
|
7382
|
+
projects: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7383
|
+
identifier: z.ZodString;
|
|
7384
|
+
id: z.ZodString;
|
|
7385
|
+
}, z.core.$strip>>>;
|
|
5129
7386
|
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
5130
7387
|
filename: z.ZodString;
|
|
5131
7388
|
created: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -5153,7 +7410,7 @@ export declare const euSignalExportSchemaV1: z.ZodObject<{
|
|
|
5153
7410
|
ref: z.ZodOptional<z.ZodString>;
|
|
5154
7411
|
}, z.core.$strip>>>;
|
|
5155
7412
|
headline: z.ZodString;
|
|
5156
|
-
schema: z.ZodLiteral<"
|
|
7413
|
+
schema: z.ZodLiteral<"us_signal">;
|
|
5157
7414
|
allSectors: z.ZodOptional<z.ZodString>;
|
|
5158
7415
|
commercialOperationDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
5159
7416
|
facilityAddress: z.ZodOptional<z.ZodObject<{
|
|
@@ -5195,8 +7452,7 @@ export declare const euSignalExportSchemaV1: z.ZodObject<{
|
|
|
5195
7452
|
defaultValue: z.ZodOptional<z.ZodString>;
|
|
5196
7453
|
}, z.core.$strip>>;
|
|
5197
7454
|
sort: z.ZodTuple<[z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>, z.ZodNumber], null>;
|
|
5198
|
-
}, z.core.$strict
|
|
5199
|
-
export declare const usSignalExportSchemaV1: z.ZodObject<{
|
|
7455
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
5200
7456
|
type: z.ZodOptional<z.ZodObject<{
|
|
5201
7457
|
identifier: z.ZodString;
|
|
5202
7458
|
id: z.ZodString;
|
|
@@ -5297,7 +7553,7 @@ export declare const usSignalExportSchemaV1: z.ZodObject<{
|
|
|
5297
7553
|
ref: z.ZodOptional<z.ZodString>;
|
|
5298
7554
|
}, z.core.$strip>>>;
|
|
5299
7555
|
headline: z.ZodString;
|
|
5300
|
-
schema: z.ZodLiteral<"
|
|
7556
|
+
schema: z.ZodLiteral<"global_signal">;
|
|
5301
7557
|
allSectors: z.ZodOptional<z.ZodString>;
|
|
5302
7558
|
commercialOperationDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
5303
7559
|
facilityAddress: z.ZodOptional<z.ZodObject<{
|
|
@@ -5339,8 +7595,7 @@ export declare const usSignalExportSchemaV1: z.ZodObject<{
|
|
|
5339
7595
|
defaultValue: z.ZodOptional<z.ZodString>;
|
|
5340
7596
|
}, z.core.$strip>>;
|
|
5341
7597
|
sort: z.ZodTuple<[z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>, z.ZodNumber], null>;
|
|
5342
|
-
}, z.core.$strict
|
|
5343
|
-
export declare const globalSignalExportSchemaV1: z.ZodObject<{
|
|
7598
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
5344
7599
|
type: z.ZodOptional<z.ZodObject<{
|
|
5345
7600
|
identifier: z.ZodString;
|
|
5346
7601
|
id: z.ZodString;
|
|
@@ -5349,14 +7604,6 @@ export declare const globalSignalExportSchemaV1: z.ZodObject<{
|
|
|
5349
7604
|
identifier: z.ZodString;
|
|
5350
7605
|
id: z.ZodString;
|
|
5351
7606
|
}, z.core.$strip>>>;
|
|
5352
|
-
state: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5353
|
-
identifier: z.ZodString;
|
|
5354
|
-
id: z.ZodString;
|
|
5355
|
-
}, z.core.$strip>>>;
|
|
5356
|
-
county: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5357
|
-
identifier: z.ZodString;
|
|
5358
|
-
id: z.ZodString;
|
|
5359
|
-
}, z.core.$strip>>>;
|
|
5360
7607
|
keyPeople: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5361
7608
|
id: z.ZodOptional<z.ZodString>;
|
|
5362
7609
|
identifier: z.ZodOptional<z.ZodString>;
|
|
@@ -5410,10 +7657,6 @@ export declare const globalSignalExportSchemaV1: z.ZodObject<{
|
|
|
5410
7657
|
identifier: z.ZodString;
|
|
5411
7658
|
id: z.ZodString;
|
|
5412
7659
|
}, z.core.$strip>>>;
|
|
5413
|
-
projects: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5414
|
-
identifier: z.ZodString;
|
|
5415
|
-
id: z.ZodString;
|
|
5416
|
-
}, z.core.$strip>>>;
|
|
5417
7660
|
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
5418
7661
|
filename: z.ZodString;
|
|
5419
7662
|
created: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -5441,7 +7684,7 @@ export declare const globalSignalExportSchemaV1: z.ZodObject<{
|
|
|
5441
7684
|
ref: z.ZodOptional<z.ZodString>;
|
|
5442
7685
|
}, z.core.$strip>>>;
|
|
5443
7686
|
headline: z.ZodString;
|
|
5444
|
-
schema: z.ZodLiteral<"
|
|
7687
|
+
schema: z.ZodLiteral<"apac_signal">;
|
|
5445
7688
|
allSectors: z.ZodOptional<z.ZodString>;
|
|
5446
7689
|
commercialOperationDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
5447
7690
|
facilityAddress: z.ZodOptional<z.ZodObject<{
|
|
@@ -5483,8 +7726,8 @@ export declare const globalSignalExportSchemaV1: z.ZodObject<{
|
|
|
5483
7726
|
defaultValue: z.ZodOptional<z.ZodString>;
|
|
5484
7727
|
}, z.core.$strip>>;
|
|
5485
7728
|
sort: z.ZodTuple<[z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>, z.ZodNumber], null>;
|
|
5486
|
-
}, z.core.$strict>;
|
|
5487
|
-
export declare const
|
|
7729
|
+
}, z.core.$strict>], "schema">;
|
|
7730
|
+
export declare const euSignalAPISchemaV1: z.ZodObject<{
|
|
5488
7731
|
type: z.ZodOptional<z.ZodObject<{
|
|
5489
7732
|
identifier: z.ZodString;
|
|
5490
7733
|
id: z.ZodString;
|
|
@@ -5493,6 +7736,10 @@ export declare const signalExportUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodOb
|
|
|
5493
7736
|
identifier: z.ZodString;
|
|
5494
7737
|
id: z.ZodString;
|
|
5495
7738
|
}, z.core.$strip>>>;
|
|
7739
|
+
sectors: z.ZodArray<z.ZodObject<{
|
|
7740
|
+
identifier: z.ZodString;
|
|
7741
|
+
id: z.ZodString;
|
|
7742
|
+
}, z.core.$strip>>;
|
|
5496
7743
|
keyPeople: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5497
7744
|
id: z.ZodOptional<z.ZodString>;
|
|
5498
7745
|
identifier: z.ZodOptional<z.ZodString>;
|
|
@@ -5533,45 +7780,41 @@ export declare const signalExportUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodOb
|
|
|
5533
7780
|
override: z.ZodOptional<z.ZodBoolean>;
|
|
5534
7781
|
accuracy: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5535
7782
|
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>>>;
|
|
5543
|
-
source: z.ZodOptional<z.ZodString>;
|
|
5544
|
-
}, z.core.$strip>>>;
|
|
5545
|
-
country: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5546
|
-
identifier: z.ZodString;
|
|
5547
|
-
id: z.ZodString;
|
|
5548
|
-
}, z.core.$strip>>>;
|
|
5549
|
-
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
5550
|
-
filename: z.ZodString;
|
|
5551
|
-
created: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
5552
|
-
document_id: z.ZodString;
|
|
5553
|
-
mimetype: z.ZodString;
|
|
5554
|
-
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
5555
|
-
type: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
5556
|
-
key: z.ZodOptional<z.ZodString>;
|
|
5557
|
-
userName: z.ZodOptional<z.ZodString>;
|
|
5558
|
-
url: z.ZodOptional<z.ZodString>;
|
|
5559
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
5560
|
-
file: z.ZodOptional<z.ZodString>;
|
|
5561
|
-
url: z.ZodString;
|
|
5562
|
-
created: z.ZodOptional<z.ZodString>;
|
|
5563
|
-
type: z.ZodArray<z.ZodString>;
|
|
5564
|
-
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
5565
|
-
documentDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
7783
|
+
id: z.ZodEnum<{
|
|
7784
|
+
location_accuracy_a: import("../entity").LocationAccuracy.A;
|
|
7785
|
+
location_accuracy_b: import("../entity").LocationAccuracy.B;
|
|
7786
|
+
location_accuracy_c: import("../entity").LocationAccuracy.C;
|
|
7787
|
+
location_accuracy_not_determined: import("../entity").LocationAccuracy.NOT_DETERMINED;
|
|
7788
|
+
}>;
|
|
7789
|
+
}, z.core.$strip>>>;
|
|
5566
7790
|
source: z.ZodOptional<z.ZodString>;
|
|
5567
|
-
|
|
5568
|
-
|
|
7791
|
+
}, z.core.$strip>>>;
|
|
7792
|
+
country: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7793
|
+
identifier: z.ZodString;
|
|
7794
|
+
id: z.ZodString;
|
|
7795
|
+
}, z.core.$strip>>>;
|
|
7796
|
+
created: z.ZodString;
|
|
5569
7797
|
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5570
7798
|
identifier: z.ZodString;
|
|
5571
7799
|
id: z.ZodString;
|
|
5572
7800
|
role: z.ZodString;
|
|
5573
7801
|
ref: z.ZodOptional<z.ZodString>;
|
|
5574
7802
|
}, z.core.$strip>>>;
|
|
7803
|
+
queueApplications: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7804
|
+
queueKey: z.ZodOptional<z.ZodString>;
|
|
7805
|
+
applicationId: z.ZodOptional<z.ZodString>;
|
|
7806
|
+
queueDataset: z.ZodOptional<z.ZodString>;
|
|
7807
|
+
id: z.ZodString;
|
|
7808
|
+
identifier: z.ZodString;
|
|
7809
|
+
}, z.core.$strip>>>;
|
|
7810
|
+
audiences: z.ZodArray<z.ZodObject<{
|
|
7811
|
+
identifier: z.ZodString;
|
|
7812
|
+
id: z.ZodString;
|
|
7813
|
+
}, z.core.$strip>>;
|
|
7814
|
+
regions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7815
|
+
identifier: z.ZodString;
|
|
7816
|
+
id: z.ZodString;
|
|
7817
|
+
}, z.core.$strip>>>;
|
|
5575
7818
|
headline: z.ZodString;
|
|
5576
7819
|
schema: z.ZodLiteral<"eu_signal">;
|
|
5577
7820
|
allSectors: z.ZodOptional<z.ZodString>;
|
|
@@ -5589,6 +7832,25 @@ export declare const signalExportUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodOb
|
|
|
5589
7832
|
}, z.core.$strip>>;
|
|
5590
7833
|
facilityName: z.ZodOptional<z.ZodString>;
|
|
5591
7834
|
filingDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
7835
|
+
geo: z.ZodObject<{
|
|
7836
|
+
default: z.ZodOptional<z.ZodObject<{
|
|
7837
|
+
lat: z.ZodNumber;
|
|
7838
|
+
lon: z.ZodNumber;
|
|
7839
|
+
}, z.core.$strip>>;
|
|
7840
|
+
defaultValue: z.ZodOptional<z.ZodString>;
|
|
7841
|
+
location: z.ZodOptional<z.ZodObject<{
|
|
7842
|
+
lat: z.ZodNumber;
|
|
7843
|
+
lon: z.ZodNumber;
|
|
7844
|
+
}, z.core.$strip>>;
|
|
7845
|
+
facility: z.ZodOptional<z.ZodObject<{
|
|
7846
|
+
lat: z.ZodNumber;
|
|
7847
|
+
lon: z.ZodNumber;
|
|
7848
|
+
}, z.core.$strip>>;
|
|
7849
|
+
county: z.ZodOptional<z.ZodObject<{
|
|
7850
|
+
lat: z.ZodNumber;
|
|
7851
|
+
lon: z.ZodNumber;
|
|
7852
|
+
}, z.core.$strip>>;
|
|
7853
|
+
}, z.core.$strip>;
|
|
5592
7854
|
mw: z.ZodOptional<z.ZodNumber>;
|
|
5593
7855
|
publishedDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
5594
7856
|
totals: z.ZodOptional<z.ZodObject<{
|
|
@@ -5606,16 +7868,46 @@ export declare const signalExportUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodOb
|
|
|
5606
7868
|
epc: z.ZodOptional<z.ZodNumber>;
|
|
5607
7869
|
puc: z.ZodOptional<z.ZodNumber>;
|
|
5608
7870
|
}, z.core.$strip>>;
|
|
7871
|
+
body: z.ZodOptional<z.ZodString>;
|
|
7872
|
+
projectPipeline: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7873
|
+
identifier: z.ZodString;
|
|
7874
|
+
id: z.ZodString;
|
|
7875
|
+
}, z.core.$strip>>>;
|
|
5609
7876
|
updated: z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>;
|
|
5610
|
-
|
|
5611
|
-
|
|
5612
|
-
|
|
5613
|
-
|
|
5614
|
-
|
|
5615
|
-
|
|
5616
|
-
|
|
5617
|
-
|
|
5618
|
-
|
|
7877
|
+
dataCenters: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7878
|
+
identifier: z.ZodString;
|
|
7879
|
+
id: z.ZodString;
|
|
7880
|
+
}, z.core.$strip>>>;
|
|
7881
|
+
queueDatasets: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7882
|
+
identifier: z.ZodString;
|
|
7883
|
+
id: z.ZodString;
|
|
7884
|
+
}, z.core.$strip>>>;
|
|
7885
|
+
status: z.ZodEnum<typeof PublishStatus>;
|
|
7886
|
+
totalMw: z.ZodOptional<z.ZodNumber>;
|
|
7887
|
+
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
7888
|
+
filename: z.ZodString;
|
|
7889
|
+
created: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
7890
|
+
document_id: z.ZodString;
|
|
7891
|
+
mimetype: z.ZodString;
|
|
7892
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
7893
|
+
type: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
7894
|
+
key: z.ZodOptional<z.ZodString>;
|
|
7895
|
+
userName: z.ZodOptional<z.ZodString>;
|
|
7896
|
+
url: z.ZodOptional<z.ZodString>;
|
|
7897
|
+
downloadUrl: z.ZodOptional<z.ZodString>;
|
|
7898
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
7899
|
+
file: z.ZodOptional<z.ZodString>;
|
|
7900
|
+
url: z.ZodString;
|
|
7901
|
+
created: z.ZodOptional<z.ZodString>;
|
|
7902
|
+
type: z.ZodArray<z.ZodString>;
|
|
7903
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
7904
|
+
documentDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
7905
|
+
source: z.ZodOptional<z.ZodString>;
|
|
7906
|
+
id: z.ZodOptional<z.ZodString>;
|
|
7907
|
+
}, z.core.$strip>]>>>;
|
|
7908
|
+
sort: z.ZodOptional<z.ZodTuple<[z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>, z.ZodNumber], null>>;
|
|
7909
|
+
}, z.core.$strict>;
|
|
7910
|
+
export declare const usSignalAPISchemaV1: z.ZodObject<{
|
|
5619
7911
|
type: z.ZodOptional<z.ZodObject<{
|
|
5620
7912
|
identifier: z.ZodString;
|
|
5621
7913
|
id: z.ZodString;
|
|
@@ -5624,6 +7916,10 @@ export declare const signalExportUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodOb
|
|
|
5624
7916
|
identifier: z.ZodString;
|
|
5625
7917
|
id: z.ZodString;
|
|
5626
7918
|
}, z.core.$strip>>>;
|
|
7919
|
+
sectors: z.ZodArray<z.ZodObject<{
|
|
7920
|
+
identifier: z.ZodString;
|
|
7921
|
+
id: z.ZodString;
|
|
7922
|
+
}, z.core.$strip>>;
|
|
5627
7923
|
state: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5628
7924
|
identifier: z.ZodString;
|
|
5629
7925
|
id: z.ZodString;
|
|
@@ -5685,36 +7981,32 @@ export declare const signalExportUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodOb
|
|
|
5685
7981
|
identifier: z.ZodString;
|
|
5686
7982
|
id: z.ZodString;
|
|
5687
7983
|
}, z.core.$strip>>>;
|
|
7984
|
+
created: z.ZodString;
|
|
5688
7985
|
projects: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5689
7986
|
identifier: z.ZodString;
|
|
5690
7987
|
id: z.ZodString;
|
|
5691
7988
|
}, z.core.$strip>>>;
|
|
5692
|
-
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
5693
|
-
filename: z.ZodString;
|
|
5694
|
-
created: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
5695
|
-
document_id: z.ZodString;
|
|
5696
|
-
mimetype: z.ZodString;
|
|
5697
|
-
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
5698
|
-
type: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
5699
|
-
key: z.ZodOptional<z.ZodString>;
|
|
5700
|
-
userName: z.ZodOptional<z.ZodString>;
|
|
5701
|
-
url: z.ZodOptional<z.ZodString>;
|
|
5702
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
5703
|
-
file: z.ZodOptional<z.ZodString>;
|
|
5704
|
-
url: z.ZodString;
|
|
5705
|
-
created: z.ZodOptional<z.ZodString>;
|
|
5706
|
-
type: z.ZodArray<z.ZodString>;
|
|
5707
|
-
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
5708
|
-
documentDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
5709
|
-
source: z.ZodOptional<z.ZodString>;
|
|
5710
|
-
id: z.ZodOptional<z.ZodString>;
|
|
5711
|
-
}, z.core.$strip>]>>>;
|
|
5712
7989
|
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5713
7990
|
identifier: z.ZodString;
|
|
5714
7991
|
id: z.ZodString;
|
|
5715
7992
|
role: z.ZodString;
|
|
5716
7993
|
ref: z.ZodOptional<z.ZodString>;
|
|
5717
7994
|
}, z.core.$strip>>>;
|
|
7995
|
+
queueApplications: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7996
|
+
queueKey: z.ZodOptional<z.ZodString>;
|
|
7997
|
+
applicationId: z.ZodOptional<z.ZodString>;
|
|
7998
|
+
queueDataset: z.ZodOptional<z.ZodString>;
|
|
7999
|
+
id: z.ZodString;
|
|
8000
|
+
identifier: z.ZodString;
|
|
8001
|
+
}, z.core.$strip>>>;
|
|
8002
|
+
audiences: z.ZodArray<z.ZodObject<{
|
|
8003
|
+
identifier: z.ZodString;
|
|
8004
|
+
id: z.ZodString;
|
|
8005
|
+
}, z.core.$strip>>;
|
|
8006
|
+
regions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8007
|
+
identifier: z.ZodString;
|
|
8008
|
+
id: z.ZodString;
|
|
8009
|
+
}, z.core.$strip>>>;
|
|
5718
8010
|
headline: z.ZodString;
|
|
5719
8011
|
schema: z.ZodLiteral<"us_signal">;
|
|
5720
8012
|
allSectors: z.ZodOptional<z.ZodString>;
|
|
@@ -5732,6 +8024,25 @@ export declare const signalExportUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodOb
|
|
|
5732
8024
|
}, z.core.$strip>>;
|
|
5733
8025
|
facilityName: z.ZodOptional<z.ZodString>;
|
|
5734
8026
|
filingDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
8027
|
+
geo: z.ZodObject<{
|
|
8028
|
+
default: z.ZodOptional<z.ZodObject<{
|
|
8029
|
+
lat: z.ZodNumber;
|
|
8030
|
+
lon: z.ZodNumber;
|
|
8031
|
+
}, z.core.$strip>>;
|
|
8032
|
+
defaultValue: z.ZodOptional<z.ZodString>;
|
|
8033
|
+
location: z.ZodOptional<z.ZodObject<{
|
|
8034
|
+
lat: z.ZodNumber;
|
|
8035
|
+
lon: z.ZodNumber;
|
|
8036
|
+
}, z.core.$strip>>;
|
|
8037
|
+
facility: z.ZodOptional<z.ZodObject<{
|
|
8038
|
+
lat: z.ZodNumber;
|
|
8039
|
+
lon: z.ZodNumber;
|
|
8040
|
+
}, z.core.$strip>>;
|
|
8041
|
+
county: z.ZodOptional<z.ZodObject<{
|
|
8042
|
+
lat: z.ZodNumber;
|
|
8043
|
+
lon: z.ZodNumber;
|
|
8044
|
+
}, z.core.$strip>>;
|
|
8045
|
+
}, z.core.$strip>;
|
|
5735
8046
|
mw: z.ZodOptional<z.ZodNumber>;
|
|
5736
8047
|
publishedDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
5737
8048
|
totals: z.ZodOptional<z.ZodObject<{
|
|
@@ -5749,16 +8060,58 @@ export declare const signalExportUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodOb
|
|
|
5749
8060
|
epc: z.ZodOptional<z.ZodNumber>;
|
|
5750
8061
|
puc: z.ZodOptional<z.ZodNumber>;
|
|
5751
8062
|
}, z.core.$strip>>;
|
|
8063
|
+
body: z.ZodOptional<z.ZodString>;
|
|
8064
|
+
projectPipeline: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8065
|
+
identifier: z.ZodString;
|
|
8066
|
+
id: z.ZodString;
|
|
8067
|
+
}, z.core.$strip>>>;
|
|
5752
8068
|
updated: z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>;
|
|
5753
|
-
|
|
5754
|
-
|
|
5755
|
-
|
|
5756
|
-
|
|
5757
|
-
|
|
5758
|
-
|
|
5759
|
-
|
|
5760
|
-
|
|
5761
|
-
|
|
8069
|
+
dataCenters: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8070
|
+
identifier: z.ZodString;
|
|
8071
|
+
id: z.ZodString;
|
|
8072
|
+
}, z.core.$strip>>>;
|
|
8073
|
+
queueDatasets: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8074
|
+
identifier: z.ZodString;
|
|
8075
|
+
id: z.ZodString;
|
|
8076
|
+
}, z.core.$strip>>>;
|
|
8077
|
+
status: z.ZodEnum<typeof PublishStatus>;
|
|
8078
|
+
totalMw: z.ZodOptional<z.ZodNumber>;
|
|
8079
|
+
countyBoard: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8080
|
+
identifier: z.ZodString;
|
|
8081
|
+
id: z.ZodString;
|
|
8082
|
+
}, z.core.$strip>>>;
|
|
8083
|
+
pucTracker: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8084
|
+
identifier: z.ZodString;
|
|
8085
|
+
id: z.ZodString;
|
|
8086
|
+
}, z.core.$strip>>>;
|
|
8087
|
+
schoolDistrict: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8088
|
+
identifier: z.ZodString;
|
|
8089
|
+
id: z.ZodString;
|
|
8090
|
+
}, z.core.$strip>>>;
|
|
8091
|
+
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
8092
|
+
filename: z.ZodString;
|
|
8093
|
+
created: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
8094
|
+
document_id: z.ZodString;
|
|
8095
|
+
mimetype: z.ZodString;
|
|
8096
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
8097
|
+
type: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
8098
|
+
key: z.ZodOptional<z.ZodString>;
|
|
8099
|
+
userName: z.ZodOptional<z.ZodString>;
|
|
8100
|
+
url: z.ZodOptional<z.ZodString>;
|
|
8101
|
+
downloadUrl: z.ZodOptional<z.ZodString>;
|
|
8102
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
8103
|
+
file: z.ZodOptional<z.ZodString>;
|
|
8104
|
+
url: z.ZodString;
|
|
8105
|
+
created: z.ZodOptional<z.ZodString>;
|
|
8106
|
+
type: z.ZodArray<z.ZodString>;
|
|
8107
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
8108
|
+
documentDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
8109
|
+
source: z.ZodOptional<z.ZodString>;
|
|
8110
|
+
id: z.ZodOptional<z.ZodString>;
|
|
8111
|
+
}, z.core.$strip>]>>>;
|
|
8112
|
+
sort: z.ZodOptional<z.ZodTuple<[z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>, z.ZodNumber], null>>;
|
|
8113
|
+
}, z.core.$strict>;
|
|
8114
|
+
export declare const globalSignalAPISchemaV1: z.ZodObject<{
|
|
5762
8115
|
type: z.ZodOptional<z.ZodObject<{
|
|
5763
8116
|
identifier: z.ZodString;
|
|
5764
8117
|
id: z.ZodString;
|
|
@@ -5767,6 +8120,10 @@ export declare const signalExportUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodOb
|
|
|
5767
8120
|
identifier: z.ZodString;
|
|
5768
8121
|
id: z.ZodString;
|
|
5769
8122
|
}, z.core.$strip>>>;
|
|
8123
|
+
sectors: z.ZodArray<z.ZodObject<{
|
|
8124
|
+
identifier: z.ZodString;
|
|
8125
|
+
id: z.ZodString;
|
|
8126
|
+
}, z.core.$strip>>;
|
|
5770
8127
|
state: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5771
8128
|
identifier: z.ZodString;
|
|
5772
8129
|
id: z.ZodString;
|
|
@@ -5828,35 +8185,31 @@ export declare const signalExportUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodOb
|
|
|
5828
8185
|
identifier: z.ZodString;
|
|
5829
8186
|
id: z.ZodString;
|
|
5830
8187
|
}, z.core.$strip>>>;
|
|
8188
|
+
created: z.ZodString;
|
|
5831
8189
|
projects: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5832
8190
|
identifier: z.ZodString;
|
|
5833
8191
|
id: z.ZodString;
|
|
5834
8192
|
}, z.core.$strip>>>;
|
|
5835
|
-
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
5836
|
-
filename: z.ZodString;
|
|
5837
|
-
created: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
5838
|
-
document_id: z.ZodString;
|
|
5839
|
-
mimetype: z.ZodString;
|
|
5840
|
-
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
5841
|
-
type: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
5842
|
-
key: z.ZodOptional<z.ZodString>;
|
|
5843
|
-
userName: z.ZodOptional<z.ZodString>;
|
|
5844
|
-
url: z.ZodOptional<z.ZodString>;
|
|
5845
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
5846
|
-
file: z.ZodOptional<z.ZodString>;
|
|
5847
|
-
url: z.ZodString;
|
|
5848
|
-
created: z.ZodOptional<z.ZodString>;
|
|
5849
|
-
type: z.ZodArray<z.ZodString>;
|
|
5850
|
-
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
5851
|
-
documentDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
5852
|
-
source: z.ZodOptional<z.ZodString>;
|
|
5853
|
-
id: z.ZodOptional<z.ZodString>;
|
|
5854
|
-
}, z.core.$strip>]>>>;
|
|
5855
8193
|
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5856
8194
|
identifier: z.ZodString;
|
|
5857
8195
|
id: z.ZodString;
|
|
5858
|
-
role: z.ZodString;
|
|
5859
|
-
ref: z.ZodOptional<z.ZodString>;
|
|
8196
|
+
role: z.ZodString;
|
|
8197
|
+
ref: z.ZodOptional<z.ZodString>;
|
|
8198
|
+
}, z.core.$strip>>>;
|
|
8199
|
+
queueApplications: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8200
|
+
queueKey: z.ZodOptional<z.ZodString>;
|
|
8201
|
+
applicationId: z.ZodOptional<z.ZodString>;
|
|
8202
|
+
queueDataset: z.ZodOptional<z.ZodString>;
|
|
8203
|
+
id: z.ZodString;
|
|
8204
|
+
identifier: z.ZodString;
|
|
8205
|
+
}, z.core.$strip>>>;
|
|
8206
|
+
audiences: z.ZodArray<z.ZodObject<{
|
|
8207
|
+
identifier: z.ZodString;
|
|
8208
|
+
id: z.ZodString;
|
|
8209
|
+
}, z.core.$strip>>;
|
|
8210
|
+
regions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8211
|
+
identifier: z.ZodString;
|
|
8212
|
+
id: z.ZodString;
|
|
5860
8213
|
}, z.core.$strip>>>;
|
|
5861
8214
|
headline: z.ZodString;
|
|
5862
8215
|
schema: z.ZodLiteral<"global_signal">;
|
|
@@ -5875,6 +8228,25 @@ export declare const signalExportUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodOb
|
|
|
5875
8228
|
}, z.core.$strip>>;
|
|
5876
8229
|
facilityName: z.ZodOptional<z.ZodString>;
|
|
5877
8230
|
filingDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
8231
|
+
geo: z.ZodObject<{
|
|
8232
|
+
default: z.ZodOptional<z.ZodObject<{
|
|
8233
|
+
lat: z.ZodNumber;
|
|
8234
|
+
lon: z.ZodNumber;
|
|
8235
|
+
}, z.core.$strip>>;
|
|
8236
|
+
defaultValue: z.ZodOptional<z.ZodString>;
|
|
8237
|
+
location: z.ZodOptional<z.ZodObject<{
|
|
8238
|
+
lat: z.ZodNumber;
|
|
8239
|
+
lon: z.ZodNumber;
|
|
8240
|
+
}, z.core.$strip>>;
|
|
8241
|
+
facility: z.ZodOptional<z.ZodObject<{
|
|
8242
|
+
lat: z.ZodNumber;
|
|
8243
|
+
lon: z.ZodNumber;
|
|
8244
|
+
}, z.core.$strip>>;
|
|
8245
|
+
county: z.ZodOptional<z.ZodObject<{
|
|
8246
|
+
lat: z.ZodNumber;
|
|
8247
|
+
lon: z.ZodNumber;
|
|
8248
|
+
}, z.core.$strip>>;
|
|
8249
|
+
}, z.core.$strip>;
|
|
5878
8250
|
mw: z.ZodOptional<z.ZodNumber>;
|
|
5879
8251
|
publishedDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
5880
8252
|
totals: z.ZodOptional<z.ZodObject<{
|
|
@@ -5892,17 +8264,58 @@ export declare const signalExportUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodOb
|
|
|
5892
8264
|
epc: z.ZodOptional<z.ZodNumber>;
|
|
5893
8265
|
puc: z.ZodOptional<z.ZodNumber>;
|
|
5894
8266
|
}, z.core.$strip>>;
|
|
8267
|
+
body: z.ZodOptional<z.ZodString>;
|
|
8268
|
+
projectPipeline: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8269
|
+
identifier: z.ZodString;
|
|
8270
|
+
id: z.ZodString;
|
|
8271
|
+
}, z.core.$strip>>>;
|
|
5895
8272
|
updated: z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>;
|
|
5896
|
-
|
|
5897
|
-
|
|
5898
|
-
|
|
5899
|
-
|
|
5900
|
-
|
|
5901
|
-
|
|
5902
|
-
|
|
5903
|
-
|
|
5904
|
-
|
|
5905
|
-
|
|
8273
|
+
dataCenters: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8274
|
+
identifier: z.ZodString;
|
|
8275
|
+
id: z.ZodString;
|
|
8276
|
+
}, z.core.$strip>>>;
|
|
8277
|
+
queueDatasets: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8278
|
+
identifier: z.ZodString;
|
|
8279
|
+
id: z.ZodString;
|
|
8280
|
+
}, z.core.$strip>>>;
|
|
8281
|
+
status: z.ZodEnum<typeof PublishStatus>;
|
|
8282
|
+
totalMw: z.ZodOptional<z.ZodNumber>;
|
|
8283
|
+
countyBoard: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8284
|
+
identifier: z.ZodString;
|
|
8285
|
+
id: z.ZodString;
|
|
8286
|
+
}, z.core.$strip>>>;
|
|
8287
|
+
pucTracker: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8288
|
+
identifier: z.ZodString;
|
|
8289
|
+
id: z.ZodString;
|
|
8290
|
+
}, z.core.$strip>>>;
|
|
8291
|
+
schoolDistrict: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8292
|
+
identifier: z.ZodString;
|
|
8293
|
+
id: z.ZodString;
|
|
8294
|
+
}, z.core.$strip>>>;
|
|
8295
|
+
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
8296
|
+
filename: z.ZodString;
|
|
8297
|
+
created: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
8298
|
+
document_id: z.ZodString;
|
|
8299
|
+
mimetype: z.ZodString;
|
|
8300
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
8301
|
+
type: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
8302
|
+
key: z.ZodOptional<z.ZodString>;
|
|
8303
|
+
userName: z.ZodOptional<z.ZodString>;
|
|
8304
|
+
url: z.ZodOptional<z.ZodString>;
|
|
8305
|
+
downloadUrl: z.ZodOptional<z.ZodString>;
|
|
8306
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
8307
|
+
file: z.ZodOptional<z.ZodString>;
|
|
8308
|
+
url: z.ZodString;
|
|
8309
|
+
created: z.ZodOptional<z.ZodString>;
|
|
8310
|
+
type: z.ZodArray<z.ZodString>;
|
|
8311
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
8312
|
+
documentDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
8313
|
+
source: z.ZodOptional<z.ZodString>;
|
|
8314
|
+
id: z.ZodOptional<z.ZodString>;
|
|
8315
|
+
}, z.core.$strip>]>>>;
|
|
8316
|
+
sort: z.ZodOptional<z.ZodTuple<[z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>, z.ZodNumber], null>>;
|
|
8317
|
+
}, z.core.$strict>;
|
|
8318
|
+
export declare const apacSignalAPISchemaV1: z.ZodObject<{
|
|
5906
8319
|
type: z.ZodOptional<z.ZodObject<{
|
|
5907
8320
|
identifier: z.ZodString;
|
|
5908
8321
|
id: z.ZodString;
|
|
@@ -5991,7 +8404,7 @@ export declare const euSignalAPISchemaV1: z.ZodObject<{
|
|
|
5991
8404
|
id: z.ZodString;
|
|
5992
8405
|
}, z.core.$strip>>>;
|
|
5993
8406
|
headline: z.ZodString;
|
|
5994
|
-
schema: z.ZodLiteral<"
|
|
8407
|
+
schema: z.ZodLiteral<"apac_signal">;
|
|
5995
8408
|
allSectors: z.ZodOptional<z.ZodString>;
|
|
5996
8409
|
commercialOperationDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
5997
8410
|
facilityAddress: z.ZodOptional<z.ZodObject<{
|
|
@@ -6082,7 +8495,7 @@ export declare const euSignalAPISchemaV1: z.ZodObject<{
|
|
|
6082
8495
|
}, z.core.$strip>]>>>;
|
|
6083
8496
|
sort: z.ZodOptional<z.ZodTuple<[z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>, z.ZodNumber], null>>;
|
|
6084
8497
|
}, z.core.$strict>;
|
|
6085
|
-
export declare const
|
|
8498
|
+
export declare const signalAPISchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
6086
8499
|
type: z.ZodOptional<z.ZodObject<{
|
|
6087
8500
|
identifier: z.ZodString;
|
|
6088
8501
|
id: z.ZodString;
|
|
@@ -6095,14 +8508,6 @@ export declare const usSignalAPISchemaV1: z.ZodObject<{
|
|
|
6095
8508
|
identifier: z.ZodString;
|
|
6096
8509
|
id: z.ZodString;
|
|
6097
8510
|
}, z.core.$strip>>;
|
|
6098
|
-
state: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6099
|
-
identifier: z.ZodString;
|
|
6100
|
-
id: z.ZodString;
|
|
6101
|
-
}, z.core.$strip>>>;
|
|
6102
|
-
county: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6103
|
-
identifier: z.ZodString;
|
|
6104
|
-
id: z.ZodString;
|
|
6105
|
-
}, z.core.$strip>>>;
|
|
6106
8511
|
keyPeople: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6107
8512
|
id: z.ZodOptional<z.ZodString>;
|
|
6108
8513
|
identifier: z.ZodOptional<z.ZodString>;
|
|
@@ -6157,10 +8562,6 @@ export declare const usSignalAPISchemaV1: z.ZodObject<{
|
|
|
6157
8562
|
id: z.ZodString;
|
|
6158
8563
|
}, z.core.$strip>>>;
|
|
6159
8564
|
created: z.ZodString;
|
|
6160
|
-
projects: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6161
|
-
identifier: z.ZodString;
|
|
6162
|
-
id: z.ZodString;
|
|
6163
|
-
}, z.core.$strip>>>;
|
|
6164
8565
|
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6165
8566
|
identifier: z.ZodString;
|
|
6166
8567
|
id: z.ZodString;
|
|
@@ -6183,7 +8584,7 @@ export declare const usSignalAPISchemaV1: z.ZodObject<{
|
|
|
6183
8584
|
id: z.ZodString;
|
|
6184
8585
|
}, z.core.$strip>>>;
|
|
6185
8586
|
headline: z.ZodString;
|
|
6186
|
-
schema: z.ZodLiteral<"
|
|
8587
|
+
schema: z.ZodLiteral<"eu_signal">;
|
|
6187
8588
|
allSectors: z.ZodOptional<z.ZodString>;
|
|
6188
8589
|
commercialOperationDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
6189
8590
|
facilityAddress: z.ZodOptional<z.ZodObject<{
|
|
@@ -6251,18 +8652,6 @@ export declare const usSignalAPISchemaV1: z.ZodObject<{
|
|
|
6251
8652
|
}, z.core.$strip>>>;
|
|
6252
8653
|
status: z.ZodEnum<typeof PublishStatus>;
|
|
6253
8654
|
totalMw: z.ZodOptional<z.ZodNumber>;
|
|
6254
|
-
countyBoard: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6255
|
-
identifier: z.ZodString;
|
|
6256
|
-
id: z.ZodString;
|
|
6257
|
-
}, z.core.$strip>>>;
|
|
6258
|
-
pucTracker: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6259
|
-
identifier: z.ZodString;
|
|
6260
|
-
id: z.ZodString;
|
|
6261
|
-
}, z.core.$strip>>>;
|
|
6262
|
-
schoolDistrict: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6263
|
-
identifier: z.ZodString;
|
|
6264
|
-
id: z.ZodString;
|
|
6265
|
-
}, z.core.$strip>>>;
|
|
6266
8655
|
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
6267
8656
|
filename: z.ZodString;
|
|
6268
8657
|
created: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -6285,8 +8674,7 @@ export declare const usSignalAPISchemaV1: z.ZodObject<{
|
|
|
6285
8674
|
id: z.ZodOptional<z.ZodString>;
|
|
6286
8675
|
}, z.core.$strip>]>>>;
|
|
6287
8676
|
sort: z.ZodOptional<z.ZodTuple<[z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>, z.ZodNumber], null>>;
|
|
6288
|
-
}, z.core.$strict
|
|
6289
|
-
export declare const globalSignalAPISchemaV1: z.ZodObject<{
|
|
8677
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
6290
8678
|
type: z.ZodOptional<z.ZodObject<{
|
|
6291
8679
|
identifier: z.ZodString;
|
|
6292
8680
|
id: z.ZodString;
|
|
@@ -6387,7 +8775,7 @@ export declare const globalSignalAPISchemaV1: z.ZodObject<{
|
|
|
6387
8775
|
id: z.ZodString;
|
|
6388
8776
|
}, z.core.$strip>>>;
|
|
6389
8777
|
headline: z.ZodString;
|
|
6390
|
-
schema: z.ZodLiteral<"
|
|
8778
|
+
schema: z.ZodLiteral<"us_signal">;
|
|
6391
8779
|
allSectors: z.ZodOptional<z.ZodString>;
|
|
6392
8780
|
commercialOperationDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
6393
8781
|
facilityAddress: z.ZodOptional<z.ZodObject<{
|
|
@@ -6489,8 +8877,7 @@ export declare const globalSignalAPISchemaV1: z.ZodObject<{
|
|
|
6489
8877
|
id: z.ZodOptional<z.ZodString>;
|
|
6490
8878
|
}, z.core.$strip>]>>>;
|
|
6491
8879
|
sort: z.ZodOptional<z.ZodTuple<[z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>, z.ZodNumber], null>>;
|
|
6492
|
-
}, z.core.$strict
|
|
6493
|
-
export declare const signalAPISchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
8880
|
+
}, z.core.$strict>]>, z.ZodObject<{
|
|
6494
8881
|
type: z.ZodOptional<z.ZodObject<{
|
|
6495
8882
|
identifier: z.ZodString;
|
|
6496
8883
|
id: z.ZodString;
|
|
@@ -6503,6 +8890,14 @@ export declare const signalAPISchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
6503
8890
|
identifier: z.ZodString;
|
|
6504
8891
|
id: z.ZodString;
|
|
6505
8892
|
}, z.core.$strip>>;
|
|
8893
|
+
state: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8894
|
+
identifier: z.ZodString;
|
|
8895
|
+
id: z.ZodString;
|
|
8896
|
+
}, z.core.$strip>>>;
|
|
8897
|
+
county: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8898
|
+
identifier: z.ZodString;
|
|
8899
|
+
id: z.ZodString;
|
|
8900
|
+
}, z.core.$strip>>>;
|
|
6506
8901
|
keyPeople: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6507
8902
|
id: z.ZodOptional<z.ZodString>;
|
|
6508
8903
|
identifier: z.ZodOptional<z.ZodString>;
|
|
@@ -6557,6 +8952,10 @@ export declare const signalAPISchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
6557
8952
|
id: z.ZodString;
|
|
6558
8953
|
}, z.core.$strip>>>;
|
|
6559
8954
|
created: z.ZodString;
|
|
8955
|
+
projects: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8956
|
+
identifier: z.ZodString;
|
|
8957
|
+
id: z.ZodString;
|
|
8958
|
+
}, z.core.$strip>>>;
|
|
6560
8959
|
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6561
8960
|
identifier: z.ZodString;
|
|
6562
8961
|
id: z.ZodString;
|
|
@@ -6579,7 +8978,7 @@ export declare const signalAPISchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
6579
8978
|
id: z.ZodString;
|
|
6580
8979
|
}, z.core.$strip>>>;
|
|
6581
8980
|
headline: z.ZodString;
|
|
6582
|
-
schema: z.ZodLiteral<"
|
|
8981
|
+
schema: z.ZodLiteral<"global_signal">;
|
|
6583
8982
|
allSectors: z.ZodOptional<z.ZodString>;
|
|
6584
8983
|
commercialOperationDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
6585
8984
|
facilityAddress: z.ZodOptional<z.ZodObject<{
|
|
@@ -6647,6 +9046,18 @@ export declare const signalAPISchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
6647
9046
|
}, z.core.$strip>>>;
|
|
6648
9047
|
status: z.ZodEnum<typeof PublishStatus>;
|
|
6649
9048
|
totalMw: z.ZodOptional<z.ZodNumber>;
|
|
9049
|
+
countyBoard: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
9050
|
+
identifier: z.ZodString;
|
|
9051
|
+
id: z.ZodString;
|
|
9052
|
+
}, z.core.$strip>>>;
|
|
9053
|
+
pucTracker: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
9054
|
+
identifier: z.ZodString;
|
|
9055
|
+
id: z.ZodString;
|
|
9056
|
+
}, z.core.$strip>>>;
|
|
9057
|
+
schoolDistrict: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
9058
|
+
identifier: z.ZodString;
|
|
9059
|
+
id: z.ZodString;
|
|
9060
|
+
}, z.core.$strip>>>;
|
|
6650
9061
|
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
6651
9062
|
filename: z.ZodString;
|
|
6652
9063
|
created: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -6669,7 +9080,7 @@ export declare const signalAPISchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
6669
9080
|
id: z.ZodOptional<z.ZodString>;
|
|
6670
9081
|
}, z.core.$strip>]>>>;
|
|
6671
9082
|
sort: z.ZodOptional<z.ZodTuple<[z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>, z.ZodNumber], null>>;
|
|
6672
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
9083
|
+
}, z.core.$strict>]>, z.ZodObject<{
|
|
6673
9084
|
type: z.ZodOptional<z.ZodObject<{
|
|
6674
9085
|
identifier: z.ZodString;
|
|
6675
9086
|
id: z.ZodString;
|
|
@@ -6682,14 +9093,6 @@ export declare const signalAPISchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
6682
9093
|
identifier: z.ZodString;
|
|
6683
9094
|
id: z.ZodString;
|
|
6684
9095
|
}, z.core.$strip>>;
|
|
6685
|
-
state: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6686
|
-
identifier: z.ZodString;
|
|
6687
|
-
id: z.ZodString;
|
|
6688
|
-
}, z.core.$strip>>>;
|
|
6689
|
-
county: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6690
|
-
identifier: z.ZodString;
|
|
6691
|
-
id: z.ZodString;
|
|
6692
|
-
}, z.core.$strip>>>;
|
|
6693
9096
|
keyPeople: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6694
9097
|
id: z.ZodOptional<z.ZodString>;
|
|
6695
9098
|
identifier: z.ZodOptional<z.ZodString>;
|
|
@@ -6744,10 +9147,6 @@ export declare const signalAPISchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
6744
9147
|
id: z.ZodString;
|
|
6745
9148
|
}, z.core.$strip>>>;
|
|
6746
9149
|
created: z.ZodString;
|
|
6747
|
-
projects: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6748
|
-
identifier: z.ZodString;
|
|
6749
|
-
id: z.ZodString;
|
|
6750
|
-
}, z.core.$strip>>>;
|
|
6751
9150
|
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6752
9151
|
identifier: z.ZodString;
|
|
6753
9152
|
id: z.ZodString;
|
|
@@ -6770,7 +9169,7 @@ export declare const signalAPISchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
6770
9169
|
id: z.ZodString;
|
|
6771
9170
|
}, z.core.$strip>>>;
|
|
6772
9171
|
headline: z.ZodString;
|
|
6773
|
-
schema: z.ZodLiteral<"
|
|
9172
|
+
schema: z.ZodLiteral<"apac_signal">;
|
|
6774
9173
|
allSectors: z.ZodOptional<z.ZodString>;
|
|
6775
9174
|
commercialOperationDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
6776
9175
|
facilityAddress: z.ZodOptional<z.ZodObject<{
|
|
@@ -6838,18 +9237,6 @@ export declare const signalAPISchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
6838
9237
|
}, z.core.$strip>>>;
|
|
6839
9238
|
status: z.ZodEnum<typeof PublishStatus>;
|
|
6840
9239
|
totalMw: z.ZodOptional<z.ZodNumber>;
|
|
6841
|
-
countyBoard: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6842
|
-
identifier: z.ZodString;
|
|
6843
|
-
id: z.ZodString;
|
|
6844
|
-
}, z.core.$strip>>>;
|
|
6845
|
-
pucTracker: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6846
|
-
identifier: z.ZodString;
|
|
6847
|
-
id: z.ZodString;
|
|
6848
|
-
}, z.core.$strip>>>;
|
|
6849
|
-
schoolDistrict: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6850
|
-
identifier: z.ZodString;
|
|
6851
|
-
id: z.ZodString;
|
|
6852
|
-
}, z.core.$strip>>>;
|
|
6853
9240
|
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
6854
9241
|
filename: z.ZodString;
|
|
6855
9242
|
created: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -6872,7 +9259,8 @@ export declare const signalAPISchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
6872
9259
|
id: z.ZodOptional<z.ZodString>;
|
|
6873
9260
|
}, z.core.$strip>]>>>;
|
|
6874
9261
|
sort: z.ZodOptional<z.ZodTuple<[z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>, z.ZodNumber], null>>;
|
|
6875
|
-
}, z.core.$strict>]
|
|
9262
|
+
}, z.core.$strict>]>;
|
|
9263
|
+
export declare const signalAPIUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
6876
9264
|
type: z.ZodOptional<z.ZodObject<{
|
|
6877
9265
|
identifier: z.ZodString;
|
|
6878
9266
|
id: z.ZodString;
|
|
@@ -6973,7 +9361,7 @@ export declare const signalAPISchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
6973
9361
|
id: z.ZodString;
|
|
6974
9362
|
}, z.core.$strip>>>;
|
|
6975
9363
|
headline: z.ZodString;
|
|
6976
|
-
schema: z.ZodLiteral<"
|
|
9364
|
+
schema: z.ZodLiteral<"us_signal">;
|
|
6977
9365
|
allSectors: z.ZodOptional<z.ZodString>;
|
|
6978
9366
|
commercialOperationDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
6979
9367
|
facilityAddress: z.ZodOptional<z.ZodObject<{
|
|
@@ -7075,8 +9463,7 @@ export declare const signalAPISchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
7075
9463
|
id: z.ZodOptional<z.ZodString>;
|
|
7076
9464
|
}, z.core.$strip>]>>>;
|
|
7077
9465
|
sort: z.ZodOptional<z.ZodTuple<[z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>, z.ZodNumber], null>>;
|
|
7078
|
-
}, z.core.$strict
|
|
7079
|
-
export declare const signalAPIUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
9466
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
7080
9467
|
type: z.ZodOptional<z.ZodObject<{
|
|
7081
9468
|
identifier: z.ZodString;
|
|
7082
9469
|
id: z.ZodString;
|
|
@@ -7089,14 +9476,6 @@ export declare const signalAPIUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodObjec
|
|
|
7089
9476
|
identifier: z.ZodString;
|
|
7090
9477
|
id: z.ZodString;
|
|
7091
9478
|
}, z.core.$strip>>;
|
|
7092
|
-
state: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7093
|
-
identifier: z.ZodString;
|
|
7094
|
-
id: z.ZodString;
|
|
7095
|
-
}, z.core.$strip>>>;
|
|
7096
|
-
county: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7097
|
-
identifier: z.ZodString;
|
|
7098
|
-
id: z.ZodString;
|
|
7099
|
-
}, z.core.$strip>>>;
|
|
7100
9479
|
keyPeople: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7101
9480
|
id: z.ZodOptional<z.ZodString>;
|
|
7102
9481
|
identifier: z.ZodOptional<z.ZodString>;
|
|
@@ -7151,10 +9530,6 @@ export declare const signalAPIUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodObjec
|
|
|
7151
9530
|
id: z.ZodString;
|
|
7152
9531
|
}, z.core.$strip>>>;
|
|
7153
9532
|
created: z.ZodString;
|
|
7154
|
-
projects: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7155
|
-
identifier: z.ZodString;
|
|
7156
|
-
id: z.ZodString;
|
|
7157
|
-
}, z.core.$strip>>>;
|
|
7158
9533
|
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7159
9534
|
identifier: z.ZodString;
|
|
7160
9535
|
id: z.ZodString;
|
|
@@ -7177,7 +9552,7 @@ export declare const signalAPIUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodObjec
|
|
|
7177
9552
|
id: z.ZodString;
|
|
7178
9553
|
}, z.core.$strip>>>;
|
|
7179
9554
|
headline: z.ZodString;
|
|
7180
|
-
schema: z.ZodLiteral<"
|
|
9555
|
+
schema: z.ZodLiteral<"eu_signal">;
|
|
7181
9556
|
allSectors: z.ZodOptional<z.ZodString>;
|
|
7182
9557
|
commercialOperationDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
7183
9558
|
facilityAddress: z.ZodOptional<z.ZodObject<{
|
|
@@ -7245,18 +9620,6 @@ export declare const signalAPIUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodObjec
|
|
|
7245
9620
|
}, z.core.$strip>>>;
|
|
7246
9621
|
status: z.ZodEnum<typeof PublishStatus>;
|
|
7247
9622
|
totalMw: z.ZodOptional<z.ZodNumber>;
|
|
7248
|
-
countyBoard: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7249
|
-
identifier: z.ZodString;
|
|
7250
|
-
id: z.ZodString;
|
|
7251
|
-
}, z.core.$strip>>>;
|
|
7252
|
-
pucTracker: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7253
|
-
identifier: z.ZodString;
|
|
7254
|
-
id: z.ZodString;
|
|
7255
|
-
}, z.core.$strip>>>;
|
|
7256
|
-
schoolDistrict: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7257
|
-
identifier: z.ZodString;
|
|
7258
|
-
id: z.ZodString;
|
|
7259
|
-
}, z.core.$strip>>>;
|
|
7260
9623
|
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
7261
9624
|
filename: z.ZodString;
|
|
7262
9625
|
created: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -7292,6 +9655,14 @@ export declare const signalAPIUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodObjec
|
|
|
7292
9655
|
identifier: z.ZodString;
|
|
7293
9656
|
id: z.ZodString;
|
|
7294
9657
|
}, z.core.$strip>>;
|
|
9658
|
+
state: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
9659
|
+
identifier: z.ZodString;
|
|
9660
|
+
id: z.ZodString;
|
|
9661
|
+
}, z.core.$strip>>>;
|
|
9662
|
+
county: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
9663
|
+
identifier: z.ZodString;
|
|
9664
|
+
id: z.ZodString;
|
|
9665
|
+
}, z.core.$strip>>>;
|
|
7295
9666
|
keyPeople: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7296
9667
|
id: z.ZodOptional<z.ZodString>;
|
|
7297
9668
|
identifier: z.ZodOptional<z.ZodString>;
|
|
@@ -7346,6 +9717,10 @@ export declare const signalAPIUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodObjec
|
|
|
7346
9717
|
id: z.ZodString;
|
|
7347
9718
|
}, z.core.$strip>>>;
|
|
7348
9719
|
created: z.ZodString;
|
|
9720
|
+
projects: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
9721
|
+
identifier: z.ZodString;
|
|
9722
|
+
id: z.ZodString;
|
|
9723
|
+
}, z.core.$strip>>>;
|
|
7349
9724
|
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7350
9725
|
identifier: z.ZodString;
|
|
7351
9726
|
id: z.ZodString;
|
|
@@ -7368,7 +9743,7 @@ export declare const signalAPIUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodObjec
|
|
|
7368
9743
|
id: z.ZodString;
|
|
7369
9744
|
}, z.core.$strip>>>;
|
|
7370
9745
|
headline: z.ZodString;
|
|
7371
|
-
schema: z.ZodLiteral<"
|
|
9746
|
+
schema: z.ZodLiteral<"global_signal">;
|
|
7372
9747
|
allSectors: z.ZodOptional<z.ZodString>;
|
|
7373
9748
|
commercialOperationDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
7374
9749
|
facilityAddress: z.ZodOptional<z.ZodObject<{
|
|
@@ -7436,6 +9811,18 @@ export declare const signalAPIUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodObjec
|
|
|
7436
9811
|
}, z.core.$strip>>>;
|
|
7437
9812
|
status: z.ZodEnum<typeof PublishStatus>;
|
|
7438
9813
|
totalMw: z.ZodOptional<z.ZodNumber>;
|
|
9814
|
+
countyBoard: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
9815
|
+
identifier: z.ZodString;
|
|
9816
|
+
id: z.ZodString;
|
|
9817
|
+
}, z.core.$strip>>>;
|
|
9818
|
+
pucTracker: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
9819
|
+
identifier: z.ZodString;
|
|
9820
|
+
id: z.ZodString;
|
|
9821
|
+
}, z.core.$strip>>>;
|
|
9822
|
+
schoolDistrict: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
9823
|
+
identifier: z.ZodString;
|
|
9824
|
+
id: z.ZodString;
|
|
9825
|
+
}, z.core.$strip>>>;
|
|
7439
9826
|
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
7440
9827
|
filename: z.ZodString;
|
|
7441
9828
|
created: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -7471,14 +9858,6 @@ export declare const signalAPIUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodObjec
|
|
|
7471
9858
|
identifier: z.ZodString;
|
|
7472
9859
|
id: z.ZodString;
|
|
7473
9860
|
}, z.core.$strip>>;
|
|
7474
|
-
state: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7475
|
-
identifier: z.ZodString;
|
|
7476
|
-
id: z.ZodString;
|
|
7477
|
-
}, z.core.$strip>>>;
|
|
7478
|
-
county: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7479
|
-
identifier: z.ZodString;
|
|
7480
|
-
id: z.ZodString;
|
|
7481
|
-
}, z.core.$strip>>>;
|
|
7482
9861
|
keyPeople: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7483
9862
|
id: z.ZodOptional<z.ZodString>;
|
|
7484
9863
|
identifier: z.ZodOptional<z.ZodString>;
|
|
@@ -7533,10 +9912,6 @@ export declare const signalAPIUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodObjec
|
|
|
7533
9912
|
id: z.ZodString;
|
|
7534
9913
|
}, z.core.$strip>>>;
|
|
7535
9914
|
created: z.ZodString;
|
|
7536
|
-
projects: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7537
|
-
identifier: z.ZodString;
|
|
7538
|
-
id: z.ZodString;
|
|
7539
|
-
}, z.core.$strip>>>;
|
|
7540
9915
|
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7541
9916
|
identifier: z.ZodString;
|
|
7542
9917
|
id: z.ZodString;
|
|
@@ -7559,7 +9934,7 @@ export declare const signalAPIUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodObjec
|
|
|
7559
9934
|
id: z.ZodString;
|
|
7560
9935
|
}, z.core.$strip>>>;
|
|
7561
9936
|
headline: z.ZodString;
|
|
7562
|
-
schema: z.ZodLiteral<"
|
|
9937
|
+
schema: z.ZodLiteral<"apac_signal">;
|
|
7563
9938
|
allSectors: z.ZodOptional<z.ZodString>;
|
|
7564
9939
|
commercialOperationDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
7565
9940
|
facilityAddress: z.ZodOptional<z.ZodObject<{
|
|
@@ -7627,18 +10002,6 @@ export declare const signalAPIUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodObjec
|
|
|
7627
10002
|
}, z.core.$strip>>>;
|
|
7628
10003
|
status: z.ZodEnum<typeof PublishStatus>;
|
|
7629
10004
|
totalMw: z.ZodOptional<z.ZodNumber>;
|
|
7630
|
-
countyBoard: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7631
|
-
identifier: z.ZodString;
|
|
7632
|
-
id: z.ZodString;
|
|
7633
|
-
}, z.core.$strip>>>;
|
|
7634
|
-
pucTracker: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7635
|
-
identifier: z.ZodString;
|
|
7636
|
-
id: z.ZodString;
|
|
7637
|
-
}, z.core.$strip>>>;
|
|
7638
|
-
schoolDistrict: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7639
|
-
identifier: z.ZodString;
|
|
7640
|
-
id: z.ZodString;
|
|
7641
|
-
}, z.core.$strip>>>;
|
|
7642
10005
|
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
7643
10006
|
filename: z.ZodString;
|
|
7644
10007
|
created: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -7668,22 +10031,27 @@ export type SignalListBaseUnionTypeV1 = z.infer<typeof signalListBaseUnionSchema
|
|
|
7668
10031
|
export type EUSignalListTypeV1 = z.infer<typeof euSignalListWithSortSchemaV1>;
|
|
7669
10032
|
export type USSignalListTypeV1 = z.infer<typeof usSignalListWithSortSchemaV1>;
|
|
7670
10033
|
export type GlobalSignalListTypeV1 = z.infer<typeof globalSignalListWithSortSchemaV1>;
|
|
10034
|
+
export type APACSignalListTypeV1 = z.infer<typeof apacSignalListWithSortSchemaV1>;
|
|
7671
10035
|
export type SignalDetailsTypeV1 = z.infer<typeof signalDetailsSchemaV1>;
|
|
7672
10036
|
export type SignalDetailsUnionTypeV1 = z.infer<typeof signalDetailsUnionSchemaV1>;
|
|
7673
10037
|
export type EUSignalDetailsTypeV1 = z.infer<typeof euSignalDetailsSchemaV1>;
|
|
7674
10038
|
export type USSignalDetailsTypeV1 = z.infer<typeof usSignalDetailsSchemaV1>;
|
|
7675
10039
|
export type GlobalSignalDetailsTypeV1 = z.infer<typeof globalSignalDetailsSchemaV1>;
|
|
10040
|
+
export type APACSignalDetailsTypeV1 = z.infer<typeof apacSignalDetailsSchemaV1>;
|
|
7676
10041
|
export type EUSignalByLocationListTypeV1 = z.infer<typeof euSignalByLocationListSchemaV1>;
|
|
7677
10042
|
export type USSignalByLocationListTypeV1 = z.infer<typeof usSignalByLocationListSchemaV1>;
|
|
7678
10043
|
export type GlobalSignalByLocationListTypeV1 = z.infer<typeof globalSignalByLocationListSchemaV1>;
|
|
10044
|
+
export type APACSignalByLocationListTypeV1 = z.infer<typeof apacSignalByLocationListSchemaV1>;
|
|
7679
10045
|
export type SignalByLocationListTypeV1 = z.infer<typeof signalByLocationListSchemaV1>;
|
|
7680
10046
|
export type SignalByLocationListUnionTypeV1 = z.infer<typeof signalByLocationListUnionSchemaV1>;
|
|
7681
10047
|
export type SignalExportUnionTypeV1 = z.infer<typeof signalExportUnionSchemaV1>;
|
|
7682
10048
|
export type EUSignalExportTypeV1 = z.infer<typeof euSignalExportSchemaV1>;
|
|
7683
10049
|
export type USSignalExportTypeV1 = z.infer<typeof usSignalExportSchemaV1>;
|
|
7684
10050
|
export type GlobalSignalExportTypeV1 = z.infer<typeof globalSignalExportSchemaV1>;
|
|
10051
|
+
export type APACSignalExportTypeV1 = z.infer<typeof apacSignalExportSchemaV1>;
|
|
7685
10052
|
export type SignalAPITypeV1 = z.infer<typeof signalAPISchemaV1>;
|
|
7686
10053
|
export type SignalAPIUnionTypeV1 = z.infer<typeof signalAPIUnionSchemaV1>;
|
|
7687
10054
|
export type EUSignalAPITypeV1 = z.infer<typeof euSignalAPISchemaV1>;
|
|
7688
10055
|
export type USSignalAPITypeV1 = z.infer<typeof usSignalAPISchemaV1>;
|
|
7689
10056
|
export type GlobalSignalAPITypeV1 = z.infer<typeof globalSignalAPISchemaV1>;
|
|
10057
|
+
export type APACSignalAPITypeV1 = z.infer<typeof apacSignalAPISchemaV1>;
|