@new-project-media/client-frontends-shared-types 3.14.1 → 3.14.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/lib/dataGrid/api/dataCenters/v1.d.ts +188 -180
- package/src/lib/dataGrid/api/dataCenters/v1.js +141 -53
- package/src/lib/dataGrid/api/dataCenters/v1.js.map +1 -1
- package/src/lib/dataGrid/api/entity.js +1 -1
- package/src/lib/dataGrid/api/entity.js.map +1 -1
- package/src/lib/dataGrid/api/queues/v1.d.ts +6 -0
- package/src/lib/dataGrid/api/queues/v1.js +75 -31
- package/src/lib/dataGrid/api/queues/v1.js.map +1 -1
- package/src/lib/dataGrid/api/signals/v1.d.ts +48 -48
- package/src/lib/dataGrid/dataGrid.d.ts +5 -1
- package/src/lib/dataGrid/dataGrid.js +7 -1
- package/src/lib/dataGrid/dataGrid.js.map +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@new-project-media/client-frontends-shared-types",
|
|
3
|
-
"version": "3.14.
|
|
3
|
+
"version": "3.14.3",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"build": "tsc -p tsconfig.json",
|
|
6
6
|
"postbuild": "mkdir -p ../../dist/packages/client-frontends-shared-types/ && cp package.json ../../dist/packages/client-frontends-shared-types/",
|
|
@@ -60,6 +60,7 @@ export declare const signalDocumentSchema: z.ZodObject<{
|
|
|
60
60
|
filename: z.ZodString;
|
|
61
61
|
size: z.ZodOptional<z.ZodString>;
|
|
62
62
|
created: z.ZodOptional<z.ZodString>;
|
|
63
|
+
downloadUrl: z.ZodOptional<z.ZodString>;
|
|
63
64
|
filing_id: z.ZodOptional<z.ZodString>;
|
|
64
65
|
mimetype: z.ZodOptional<z.ZodString>;
|
|
65
66
|
type: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -91,6 +92,7 @@ export declare const signalsSchema: z.ZodObject<{
|
|
|
91
92
|
filename: z.ZodString;
|
|
92
93
|
size: z.ZodOptional<z.ZodString>;
|
|
93
94
|
created: z.ZodOptional<z.ZodString>;
|
|
95
|
+
downloadUrl: z.ZodOptional<z.ZodString>;
|
|
94
96
|
filing_id: z.ZodOptional<z.ZodString>;
|
|
95
97
|
mimetype: z.ZodOptional<z.ZodString>;
|
|
96
98
|
type: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -364,6 +366,7 @@ export declare const dataCenterFullSchemaV1: z.ZodObject<{
|
|
|
364
366
|
filename: z.ZodString;
|
|
365
367
|
size: z.ZodOptional<z.ZodString>;
|
|
366
368
|
created: z.ZodOptional<z.ZodString>;
|
|
369
|
+
downloadUrl: z.ZodOptional<z.ZodString>;
|
|
367
370
|
filing_id: z.ZodOptional<z.ZodString>;
|
|
368
371
|
mimetype: z.ZodOptional<z.ZodString>;
|
|
369
372
|
type: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -552,42 +555,6 @@ export declare const dataCenterListSchemaV1: z.ZodObject<{
|
|
|
552
555
|
phone: z.ZodOptional<z.ZodString>;
|
|
553
556
|
}, z.core.$strip>>>;
|
|
554
557
|
id: z.ZodString;
|
|
555
|
-
plannedOperationalDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
556
|
-
totalMw: z.ZodOptional<z.ZodNumber>;
|
|
557
|
-
signals: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
558
|
-
documents: z.ZodArray<z.ZodObject<{
|
|
559
|
-
filename: z.ZodString;
|
|
560
|
-
size: z.ZodOptional<z.ZodString>;
|
|
561
|
-
created: z.ZodOptional<z.ZodString>;
|
|
562
|
-
filing_id: z.ZodOptional<z.ZodString>;
|
|
563
|
-
mimetype: z.ZodOptional<z.ZodString>;
|
|
564
|
-
type: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
565
|
-
document_id: z.ZodString;
|
|
566
|
-
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
567
|
-
key: z.ZodOptional<z.ZodString>;
|
|
568
|
-
username: z.ZodOptional<z.ZodString>;
|
|
569
|
-
url: z.ZodOptional<z.ZodString>;
|
|
570
|
-
}, z.core.$strip>>;
|
|
571
|
-
subType: z.ZodArray<z.ZodObject<{
|
|
572
|
-
identifier: z.ZodString;
|
|
573
|
-
id: z.ZodString;
|
|
574
|
-
parentId: z.ZodOptional<z.ZodString>;
|
|
575
|
-
}, z.core.$strip>>;
|
|
576
|
-
id: z.ZodString;
|
|
577
|
-
type: z.ZodObject<{
|
|
578
|
-
identifier: z.ZodString;
|
|
579
|
-
id: z.ZodString;
|
|
580
|
-
}, z.core.$strip>;
|
|
581
|
-
headline: z.ZodString;
|
|
582
|
-
keyPeople: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
583
|
-
identifier: z.ZodString;
|
|
584
|
-
fullName: z.ZodString;
|
|
585
|
-
id: z.ZodString;
|
|
586
|
-
linkedinUrl: z.ZodOptional<z.ZodString>;
|
|
587
|
-
role: z.ZodOptional<z.ZodString>;
|
|
588
|
-
email: z.ZodOptional<z.ZodString>;
|
|
589
|
-
}, z.core.$strip>>>;
|
|
590
|
-
}, z.core.$strip>>>;
|
|
591
558
|
location: z.ZodArray<z.ZodObject<{
|
|
592
559
|
identifier: z.ZodString;
|
|
593
560
|
id: z.ZodString;
|
|
@@ -659,6 +626,41 @@ export declare const dataCenterListSchemaV1: z.ZodObject<{
|
|
|
659
626
|
id: z.ZodString;
|
|
660
627
|
identifier: z.ZodString;
|
|
661
628
|
}, z.core.$strip>>>;
|
|
629
|
+
signals: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
630
|
+
documents: z.ZodArray<z.ZodObject<{
|
|
631
|
+
filename: z.ZodString;
|
|
632
|
+
size: z.ZodOptional<z.ZodString>;
|
|
633
|
+
created: z.ZodOptional<z.ZodString>;
|
|
634
|
+
downloadUrl: z.ZodOptional<z.ZodString>;
|
|
635
|
+
filing_id: z.ZodOptional<z.ZodString>;
|
|
636
|
+
mimetype: z.ZodOptional<z.ZodString>;
|
|
637
|
+
type: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
638
|
+
document_id: z.ZodString;
|
|
639
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
640
|
+
key: z.ZodOptional<z.ZodString>;
|
|
641
|
+
username: z.ZodOptional<z.ZodString>;
|
|
642
|
+
url: z.ZodOptional<z.ZodString>;
|
|
643
|
+
}, z.core.$strip>>;
|
|
644
|
+
subType: z.ZodArray<z.ZodObject<{
|
|
645
|
+
identifier: z.ZodString;
|
|
646
|
+
id: z.ZodString;
|
|
647
|
+
parentId: z.ZodOptional<z.ZodString>;
|
|
648
|
+
}, z.core.$strip>>;
|
|
649
|
+
id: z.ZodString;
|
|
650
|
+
type: z.ZodObject<{
|
|
651
|
+
identifier: z.ZodString;
|
|
652
|
+
id: z.ZodString;
|
|
653
|
+
}, z.core.$strip>;
|
|
654
|
+
headline: z.ZodString;
|
|
655
|
+
keyPeople: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
656
|
+
identifier: z.ZodString;
|
|
657
|
+
fullName: z.ZodString;
|
|
658
|
+
id: z.ZodString;
|
|
659
|
+
linkedinUrl: z.ZodOptional<z.ZodString>;
|
|
660
|
+
role: z.ZodOptional<z.ZodString>;
|
|
661
|
+
email: z.ZodOptional<z.ZodString>;
|
|
662
|
+
}, z.core.$strip>>>;
|
|
663
|
+
}, z.core.$strip>>>;
|
|
662
664
|
powerCapacity: z.ZodOptional<z.ZodObject<{
|
|
663
665
|
value: z.ZodOptional<z.ZodNumber>;
|
|
664
666
|
unit: z.ZodOptional<z.ZodString>;
|
|
@@ -732,8 +734,10 @@ export declare const dataCenterListSchemaV1: z.ZodObject<{
|
|
|
732
734
|
identifier: z.ZodString;
|
|
733
735
|
id: z.ZodString;
|
|
734
736
|
}, z.core.$strip>>;
|
|
737
|
+
totalMw: z.ZodOptional<z.ZodNumber>;
|
|
735
738
|
localCounty: z.ZodOptional<z.ZodString>;
|
|
736
739
|
localState: z.ZodOptional<z.ZodString>;
|
|
740
|
+
plannedOperationalDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
737
741
|
projectName: z.ZodString;
|
|
738
742
|
cost: z.ZodOptional<z.ZodObject<{
|
|
739
743
|
value: z.ZodOptional<z.ZodNumber>;
|
|
@@ -923,42 +927,6 @@ export declare const dataCenterDetailsSchemaV1: z.ZodObject<{
|
|
|
923
927
|
phone: z.ZodOptional<z.ZodString>;
|
|
924
928
|
}, z.core.$strip>>>;
|
|
925
929
|
id: z.ZodString;
|
|
926
|
-
plannedOperationalDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
927
|
-
totalMw: z.ZodOptional<z.ZodNumber>;
|
|
928
|
-
signals: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
929
|
-
documents: z.ZodArray<z.ZodObject<{
|
|
930
|
-
filename: z.ZodString;
|
|
931
|
-
size: z.ZodOptional<z.ZodString>;
|
|
932
|
-
created: z.ZodOptional<z.ZodString>;
|
|
933
|
-
filing_id: z.ZodOptional<z.ZodString>;
|
|
934
|
-
mimetype: z.ZodOptional<z.ZodString>;
|
|
935
|
-
type: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
936
|
-
document_id: z.ZodString;
|
|
937
|
-
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
938
|
-
key: z.ZodOptional<z.ZodString>;
|
|
939
|
-
username: z.ZodOptional<z.ZodString>;
|
|
940
|
-
url: z.ZodOptional<z.ZodString>;
|
|
941
|
-
}, z.core.$strip>>;
|
|
942
|
-
subType: z.ZodArray<z.ZodObject<{
|
|
943
|
-
identifier: z.ZodString;
|
|
944
|
-
id: z.ZodString;
|
|
945
|
-
parentId: z.ZodOptional<z.ZodString>;
|
|
946
|
-
}, z.core.$strip>>;
|
|
947
|
-
id: z.ZodString;
|
|
948
|
-
type: z.ZodObject<{
|
|
949
|
-
identifier: z.ZodString;
|
|
950
|
-
id: z.ZodString;
|
|
951
|
-
}, z.core.$strip>;
|
|
952
|
-
headline: z.ZodString;
|
|
953
|
-
keyPeople: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
954
|
-
identifier: z.ZodString;
|
|
955
|
-
fullName: z.ZodString;
|
|
956
|
-
id: z.ZodString;
|
|
957
|
-
linkedinUrl: z.ZodOptional<z.ZodString>;
|
|
958
|
-
role: z.ZodOptional<z.ZodString>;
|
|
959
|
-
email: z.ZodOptional<z.ZodString>;
|
|
960
|
-
}, z.core.$strip>>>;
|
|
961
|
-
}, z.core.$strip>>>;
|
|
962
930
|
location: z.ZodArray<z.ZodObject<{
|
|
963
931
|
identifier: z.ZodString;
|
|
964
932
|
id: z.ZodString;
|
|
@@ -1030,6 +998,41 @@ export declare const dataCenterDetailsSchemaV1: z.ZodObject<{
|
|
|
1030
998
|
id: z.ZodString;
|
|
1031
999
|
identifier: z.ZodString;
|
|
1032
1000
|
}, z.core.$strip>>>;
|
|
1001
|
+
signals: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1002
|
+
documents: z.ZodArray<z.ZodObject<{
|
|
1003
|
+
filename: z.ZodString;
|
|
1004
|
+
size: z.ZodOptional<z.ZodString>;
|
|
1005
|
+
created: z.ZodOptional<z.ZodString>;
|
|
1006
|
+
downloadUrl: z.ZodOptional<z.ZodString>;
|
|
1007
|
+
filing_id: z.ZodOptional<z.ZodString>;
|
|
1008
|
+
mimetype: z.ZodOptional<z.ZodString>;
|
|
1009
|
+
type: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1010
|
+
document_id: z.ZodString;
|
|
1011
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
1012
|
+
key: z.ZodOptional<z.ZodString>;
|
|
1013
|
+
username: z.ZodOptional<z.ZodString>;
|
|
1014
|
+
url: z.ZodOptional<z.ZodString>;
|
|
1015
|
+
}, z.core.$strip>>;
|
|
1016
|
+
subType: z.ZodArray<z.ZodObject<{
|
|
1017
|
+
identifier: z.ZodString;
|
|
1018
|
+
id: z.ZodString;
|
|
1019
|
+
parentId: z.ZodOptional<z.ZodString>;
|
|
1020
|
+
}, z.core.$strip>>;
|
|
1021
|
+
id: z.ZodString;
|
|
1022
|
+
type: z.ZodObject<{
|
|
1023
|
+
identifier: z.ZodString;
|
|
1024
|
+
id: z.ZodString;
|
|
1025
|
+
}, z.core.$strip>;
|
|
1026
|
+
headline: z.ZodString;
|
|
1027
|
+
keyPeople: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1028
|
+
identifier: z.ZodString;
|
|
1029
|
+
fullName: z.ZodString;
|
|
1030
|
+
id: z.ZodString;
|
|
1031
|
+
linkedinUrl: z.ZodOptional<z.ZodString>;
|
|
1032
|
+
role: z.ZodOptional<z.ZodString>;
|
|
1033
|
+
email: z.ZodOptional<z.ZodString>;
|
|
1034
|
+
}, z.core.$strip>>>;
|
|
1035
|
+
}, z.core.$strip>>>;
|
|
1033
1036
|
powerCapacity: z.ZodOptional<z.ZodObject<{
|
|
1034
1037
|
value: z.ZodOptional<z.ZodNumber>;
|
|
1035
1038
|
unit: z.ZodOptional<z.ZodString>;
|
|
@@ -1103,8 +1106,10 @@ export declare const dataCenterDetailsSchemaV1: z.ZodObject<{
|
|
|
1103
1106
|
identifier: z.ZodString;
|
|
1104
1107
|
id: z.ZodString;
|
|
1105
1108
|
}, z.core.$strip>>;
|
|
1109
|
+
totalMw: z.ZodOptional<z.ZodNumber>;
|
|
1106
1110
|
localCounty: z.ZodOptional<z.ZodString>;
|
|
1107
1111
|
localState: z.ZodOptional<z.ZodString>;
|
|
1112
|
+
plannedOperationalDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1108
1113
|
projectName: z.ZodString;
|
|
1109
1114
|
cost: z.ZodOptional<z.ZodObject<{
|
|
1110
1115
|
value: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1293,42 +1298,6 @@ export declare const dataCenterExportSchemaV1: z.ZodObject<{
|
|
|
1293
1298
|
phone: z.ZodOptional<z.ZodString>;
|
|
1294
1299
|
}, z.core.$strip>>>;
|
|
1295
1300
|
id: z.ZodString;
|
|
1296
|
-
plannedOperationalDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1297
|
-
totalMw: z.ZodOptional<z.ZodNumber>;
|
|
1298
|
-
signals: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1299
|
-
documents: z.ZodArray<z.ZodObject<{
|
|
1300
|
-
filename: z.ZodString;
|
|
1301
|
-
size: z.ZodOptional<z.ZodString>;
|
|
1302
|
-
created: z.ZodOptional<z.ZodString>;
|
|
1303
|
-
filing_id: z.ZodOptional<z.ZodString>;
|
|
1304
|
-
mimetype: z.ZodOptional<z.ZodString>;
|
|
1305
|
-
type: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1306
|
-
document_id: z.ZodString;
|
|
1307
|
-
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
1308
|
-
key: z.ZodOptional<z.ZodString>;
|
|
1309
|
-
username: z.ZodOptional<z.ZodString>;
|
|
1310
|
-
url: z.ZodOptional<z.ZodString>;
|
|
1311
|
-
}, z.core.$strip>>;
|
|
1312
|
-
subType: z.ZodArray<z.ZodObject<{
|
|
1313
|
-
identifier: z.ZodString;
|
|
1314
|
-
id: z.ZodString;
|
|
1315
|
-
parentId: z.ZodOptional<z.ZodString>;
|
|
1316
|
-
}, z.core.$strip>>;
|
|
1317
|
-
id: z.ZodString;
|
|
1318
|
-
type: z.ZodObject<{
|
|
1319
|
-
identifier: z.ZodString;
|
|
1320
|
-
id: z.ZodString;
|
|
1321
|
-
}, z.core.$strip>;
|
|
1322
|
-
headline: z.ZodString;
|
|
1323
|
-
keyPeople: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1324
|
-
identifier: z.ZodString;
|
|
1325
|
-
fullName: z.ZodString;
|
|
1326
|
-
id: z.ZodString;
|
|
1327
|
-
linkedinUrl: z.ZodOptional<z.ZodString>;
|
|
1328
|
-
role: z.ZodOptional<z.ZodString>;
|
|
1329
|
-
email: z.ZodOptional<z.ZodString>;
|
|
1330
|
-
}, z.core.$strip>>>;
|
|
1331
|
-
}, z.core.$strip>>>;
|
|
1332
1301
|
location: z.ZodArray<z.ZodObject<{
|
|
1333
1302
|
identifier: z.ZodString;
|
|
1334
1303
|
id: z.ZodString;
|
|
@@ -1400,6 +1369,41 @@ export declare const dataCenterExportSchemaV1: z.ZodObject<{
|
|
|
1400
1369
|
id: z.ZodString;
|
|
1401
1370
|
identifier: z.ZodString;
|
|
1402
1371
|
}, z.core.$strip>>>;
|
|
1372
|
+
signals: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1373
|
+
documents: z.ZodArray<z.ZodObject<{
|
|
1374
|
+
filename: z.ZodString;
|
|
1375
|
+
size: z.ZodOptional<z.ZodString>;
|
|
1376
|
+
created: z.ZodOptional<z.ZodString>;
|
|
1377
|
+
downloadUrl: z.ZodOptional<z.ZodString>;
|
|
1378
|
+
filing_id: z.ZodOptional<z.ZodString>;
|
|
1379
|
+
mimetype: z.ZodOptional<z.ZodString>;
|
|
1380
|
+
type: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1381
|
+
document_id: z.ZodString;
|
|
1382
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
1383
|
+
key: z.ZodOptional<z.ZodString>;
|
|
1384
|
+
username: z.ZodOptional<z.ZodString>;
|
|
1385
|
+
url: z.ZodOptional<z.ZodString>;
|
|
1386
|
+
}, z.core.$strip>>;
|
|
1387
|
+
subType: z.ZodArray<z.ZodObject<{
|
|
1388
|
+
identifier: z.ZodString;
|
|
1389
|
+
id: z.ZodString;
|
|
1390
|
+
parentId: z.ZodOptional<z.ZodString>;
|
|
1391
|
+
}, z.core.$strip>>;
|
|
1392
|
+
id: z.ZodString;
|
|
1393
|
+
type: z.ZodObject<{
|
|
1394
|
+
identifier: z.ZodString;
|
|
1395
|
+
id: z.ZodString;
|
|
1396
|
+
}, z.core.$strip>;
|
|
1397
|
+
headline: z.ZodString;
|
|
1398
|
+
keyPeople: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1399
|
+
identifier: z.ZodString;
|
|
1400
|
+
fullName: z.ZodString;
|
|
1401
|
+
id: z.ZodString;
|
|
1402
|
+
linkedinUrl: z.ZodOptional<z.ZodString>;
|
|
1403
|
+
role: z.ZodOptional<z.ZodString>;
|
|
1404
|
+
email: z.ZodOptional<z.ZodString>;
|
|
1405
|
+
}, z.core.$strip>>>;
|
|
1406
|
+
}, z.core.$strip>>>;
|
|
1403
1407
|
powerCapacity: z.ZodOptional<z.ZodObject<{
|
|
1404
1408
|
value: z.ZodOptional<z.ZodNumber>;
|
|
1405
1409
|
unit: z.ZodOptional<z.ZodString>;
|
|
@@ -1473,8 +1477,10 @@ export declare const dataCenterExportSchemaV1: z.ZodObject<{
|
|
|
1473
1477
|
identifier: z.ZodString;
|
|
1474
1478
|
id: z.ZodString;
|
|
1475
1479
|
}, z.core.$strip>>;
|
|
1480
|
+
totalMw: z.ZodOptional<z.ZodNumber>;
|
|
1476
1481
|
localCounty: z.ZodOptional<z.ZodString>;
|
|
1477
1482
|
localState: z.ZodOptional<z.ZodString>;
|
|
1483
|
+
plannedOperationalDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1478
1484
|
projectName: z.ZodString;
|
|
1479
1485
|
cost: z.ZodOptional<z.ZodObject<{
|
|
1480
1486
|
value: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1664,42 +1670,6 @@ export declare const dataCenterByLocationListSchemaV1: z.ZodObject<{
|
|
|
1664
1670
|
phone: z.ZodOptional<z.ZodString>;
|
|
1665
1671
|
}, z.core.$strip>>>;
|
|
1666
1672
|
id: z.ZodString;
|
|
1667
|
-
plannedOperationalDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1668
|
-
totalMw: z.ZodOptional<z.ZodNumber>;
|
|
1669
|
-
signals: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1670
|
-
documents: z.ZodArray<z.ZodObject<{
|
|
1671
|
-
filename: z.ZodString;
|
|
1672
|
-
size: z.ZodOptional<z.ZodString>;
|
|
1673
|
-
created: z.ZodOptional<z.ZodString>;
|
|
1674
|
-
filing_id: z.ZodOptional<z.ZodString>;
|
|
1675
|
-
mimetype: z.ZodOptional<z.ZodString>;
|
|
1676
|
-
type: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1677
|
-
document_id: z.ZodString;
|
|
1678
|
-
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
1679
|
-
key: z.ZodOptional<z.ZodString>;
|
|
1680
|
-
username: z.ZodOptional<z.ZodString>;
|
|
1681
|
-
url: z.ZodOptional<z.ZodString>;
|
|
1682
|
-
}, z.core.$strip>>;
|
|
1683
|
-
subType: z.ZodArray<z.ZodObject<{
|
|
1684
|
-
identifier: z.ZodString;
|
|
1685
|
-
id: z.ZodString;
|
|
1686
|
-
parentId: z.ZodOptional<z.ZodString>;
|
|
1687
|
-
}, z.core.$strip>>;
|
|
1688
|
-
id: z.ZodString;
|
|
1689
|
-
type: z.ZodObject<{
|
|
1690
|
-
identifier: z.ZodString;
|
|
1691
|
-
id: z.ZodString;
|
|
1692
|
-
}, z.core.$strip>;
|
|
1693
|
-
headline: z.ZodString;
|
|
1694
|
-
keyPeople: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1695
|
-
identifier: z.ZodString;
|
|
1696
|
-
fullName: z.ZodString;
|
|
1697
|
-
id: z.ZodString;
|
|
1698
|
-
linkedinUrl: z.ZodOptional<z.ZodString>;
|
|
1699
|
-
role: z.ZodOptional<z.ZodString>;
|
|
1700
|
-
email: z.ZodOptional<z.ZodString>;
|
|
1701
|
-
}, z.core.$strip>>>;
|
|
1702
|
-
}, z.core.$strip>>>;
|
|
1703
1673
|
location: z.ZodArray<z.ZodObject<{
|
|
1704
1674
|
identifier: z.ZodString;
|
|
1705
1675
|
id: z.ZodString;
|
|
@@ -1771,6 +1741,41 @@ export declare const dataCenterByLocationListSchemaV1: z.ZodObject<{
|
|
|
1771
1741
|
id: z.ZodString;
|
|
1772
1742
|
identifier: z.ZodString;
|
|
1773
1743
|
}, z.core.$strip>>>;
|
|
1744
|
+
signals: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1745
|
+
documents: z.ZodArray<z.ZodObject<{
|
|
1746
|
+
filename: z.ZodString;
|
|
1747
|
+
size: z.ZodOptional<z.ZodString>;
|
|
1748
|
+
created: z.ZodOptional<z.ZodString>;
|
|
1749
|
+
downloadUrl: z.ZodOptional<z.ZodString>;
|
|
1750
|
+
filing_id: z.ZodOptional<z.ZodString>;
|
|
1751
|
+
mimetype: z.ZodOptional<z.ZodString>;
|
|
1752
|
+
type: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1753
|
+
document_id: z.ZodString;
|
|
1754
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
1755
|
+
key: z.ZodOptional<z.ZodString>;
|
|
1756
|
+
username: z.ZodOptional<z.ZodString>;
|
|
1757
|
+
url: z.ZodOptional<z.ZodString>;
|
|
1758
|
+
}, z.core.$strip>>;
|
|
1759
|
+
subType: z.ZodArray<z.ZodObject<{
|
|
1760
|
+
identifier: z.ZodString;
|
|
1761
|
+
id: z.ZodString;
|
|
1762
|
+
parentId: z.ZodOptional<z.ZodString>;
|
|
1763
|
+
}, z.core.$strip>>;
|
|
1764
|
+
id: z.ZodString;
|
|
1765
|
+
type: z.ZodObject<{
|
|
1766
|
+
identifier: z.ZodString;
|
|
1767
|
+
id: z.ZodString;
|
|
1768
|
+
}, z.core.$strip>;
|
|
1769
|
+
headline: z.ZodString;
|
|
1770
|
+
keyPeople: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1771
|
+
identifier: z.ZodString;
|
|
1772
|
+
fullName: z.ZodString;
|
|
1773
|
+
id: z.ZodString;
|
|
1774
|
+
linkedinUrl: z.ZodOptional<z.ZodString>;
|
|
1775
|
+
role: z.ZodOptional<z.ZodString>;
|
|
1776
|
+
email: z.ZodOptional<z.ZodString>;
|
|
1777
|
+
}, z.core.$strip>>>;
|
|
1778
|
+
}, z.core.$strip>>>;
|
|
1774
1779
|
powerCapacity: z.ZodOptional<z.ZodObject<{
|
|
1775
1780
|
value: z.ZodOptional<z.ZodNumber>;
|
|
1776
1781
|
unit: z.ZodOptional<z.ZodString>;
|
|
@@ -1844,8 +1849,10 @@ export declare const dataCenterByLocationListSchemaV1: z.ZodObject<{
|
|
|
1844
1849
|
identifier: z.ZodString;
|
|
1845
1850
|
id: z.ZodString;
|
|
1846
1851
|
}, z.core.$strip>>;
|
|
1852
|
+
totalMw: z.ZodOptional<z.ZodNumber>;
|
|
1847
1853
|
localCounty: z.ZodOptional<z.ZodString>;
|
|
1848
1854
|
localState: z.ZodOptional<z.ZodString>;
|
|
1855
|
+
plannedOperationalDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1849
1856
|
projectName: z.ZodString;
|
|
1850
1857
|
cost: z.ZodOptional<z.ZodObject<{
|
|
1851
1858
|
value: z.ZodOptional<z.ZodNumber>;
|
|
@@ -2035,42 +2042,6 @@ export declare const dataCenterAPISchemaV1: z.ZodObject<{
|
|
|
2035
2042
|
phone: z.ZodOptional<z.ZodString>;
|
|
2036
2043
|
}, z.core.$strip>>>;
|
|
2037
2044
|
id: z.ZodString;
|
|
2038
|
-
plannedOperationalDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2039
|
-
totalMw: z.ZodOptional<z.ZodNumber>;
|
|
2040
|
-
signals: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2041
|
-
documents: z.ZodArray<z.ZodObject<{
|
|
2042
|
-
filename: z.ZodString;
|
|
2043
|
-
size: z.ZodOptional<z.ZodString>;
|
|
2044
|
-
created: z.ZodOptional<z.ZodString>;
|
|
2045
|
-
filing_id: z.ZodOptional<z.ZodString>;
|
|
2046
|
-
mimetype: z.ZodOptional<z.ZodString>;
|
|
2047
|
-
type: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2048
|
-
document_id: z.ZodString;
|
|
2049
|
-
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
2050
|
-
key: z.ZodOptional<z.ZodString>;
|
|
2051
|
-
username: z.ZodOptional<z.ZodString>;
|
|
2052
|
-
url: z.ZodOptional<z.ZodString>;
|
|
2053
|
-
}, z.core.$strip>>;
|
|
2054
|
-
subType: z.ZodArray<z.ZodObject<{
|
|
2055
|
-
identifier: z.ZodString;
|
|
2056
|
-
id: z.ZodString;
|
|
2057
|
-
parentId: z.ZodOptional<z.ZodString>;
|
|
2058
|
-
}, z.core.$strip>>;
|
|
2059
|
-
id: z.ZodString;
|
|
2060
|
-
type: z.ZodObject<{
|
|
2061
|
-
identifier: z.ZodString;
|
|
2062
|
-
id: z.ZodString;
|
|
2063
|
-
}, z.core.$strip>;
|
|
2064
|
-
headline: z.ZodString;
|
|
2065
|
-
keyPeople: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2066
|
-
identifier: z.ZodString;
|
|
2067
|
-
fullName: z.ZodString;
|
|
2068
|
-
id: z.ZodString;
|
|
2069
|
-
linkedinUrl: z.ZodOptional<z.ZodString>;
|
|
2070
|
-
role: z.ZodOptional<z.ZodString>;
|
|
2071
|
-
email: z.ZodOptional<z.ZodString>;
|
|
2072
|
-
}, z.core.$strip>>>;
|
|
2073
|
-
}, z.core.$strip>>>;
|
|
2074
2045
|
location: z.ZodArray<z.ZodObject<{
|
|
2075
2046
|
identifier: z.ZodString;
|
|
2076
2047
|
id: z.ZodString;
|
|
@@ -2128,6 +2099,41 @@ export declare const dataCenterAPISchemaV1: z.ZodObject<{
|
|
|
2128
2099
|
id: z.ZodString;
|
|
2129
2100
|
identifier: z.ZodString;
|
|
2130
2101
|
}, z.core.$strip>>>;
|
|
2102
|
+
signals: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2103
|
+
documents: z.ZodArray<z.ZodObject<{
|
|
2104
|
+
filename: z.ZodString;
|
|
2105
|
+
size: z.ZodOptional<z.ZodString>;
|
|
2106
|
+
created: z.ZodOptional<z.ZodString>;
|
|
2107
|
+
downloadUrl: z.ZodOptional<z.ZodString>;
|
|
2108
|
+
filing_id: z.ZodOptional<z.ZodString>;
|
|
2109
|
+
mimetype: z.ZodOptional<z.ZodString>;
|
|
2110
|
+
type: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2111
|
+
document_id: z.ZodString;
|
|
2112
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
2113
|
+
key: z.ZodOptional<z.ZodString>;
|
|
2114
|
+
username: z.ZodOptional<z.ZodString>;
|
|
2115
|
+
url: z.ZodOptional<z.ZodString>;
|
|
2116
|
+
}, z.core.$strip>>;
|
|
2117
|
+
subType: z.ZodArray<z.ZodObject<{
|
|
2118
|
+
identifier: z.ZodString;
|
|
2119
|
+
id: z.ZodString;
|
|
2120
|
+
parentId: z.ZodOptional<z.ZodString>;
|
|
2121
|
+
}, z.core.$strip>>;
|
|
2122
|
+
id: z.ZodString;
|
|
2123
|
+
type: z.ZodObject<{
|
|
2124
|
+
identifier: z.ZodString;
|
|
2125
|
+
id: z.ZodString;
|
|
2126
|
+
}, z.core.$strip>;
|
|
2127
|
+
headline: z.ZodString;
|
|
2128
|
+
keyPeople: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2129
|
+
identifier: z.ZodString;
|
|
2130
|
+
fullName: z.ZodString;
|
|
2131
|
+
id: z.ZodString;
|
|
2132
|
+
linkedinUrl: z.ZodOptional<z.ZodString>;
|
|
2133
|
+
role: z.ZodOptional<z.ZodString>;
|
|
2134
|
+
email: z.ZodOptional<z.ZodString>;
|
|
2135
|
+
}, z.core.$strip>>>;
|
|
2136
|
+
}, z.core.$strip>>>;
|
|
2131
2137
|
powerCapacity: z.ZodOptional<z.ZodObject<{
|
|
2132
2138
|
value: z.ZodOptional<z.ZodNumber>;
|
|
2133
2139
|
unit: z.ZodOptional<z.ZodString>;
|
|
@@ -2201,8 +2207,10 @@ export declare const dataCenterAPISchemaV1: z.ZodObject<{
|
|
|
2201
2207
|
identifier: z.ZodString;
|
|
2202
2208
|
id: z.ZodString;
|
|
2203
2209
|
}, z.core.$strip>>;
|
|
2210
|
+
totalMw: z.ZodOptional<z.ZodNumber>;
|
|
2204
2211
|
localCounty: z.ZodOptional<z.ZodString>;
|
|
2205
2212
|
localState: z.ZodOptional<z.ZodString>;
|
|
2213
|
+
plannedOperationalDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2206
2214
|
projectName: z.ZodString;
|
|
2207
2215
|
cost: z.ZodOptional<z.ZodObject<{
|
|
2208
2216
|
value: z.ZodOptional<z.ZodNumber>;
|