@new-project-media/client-frontends-shared-types 1.4.6 → 1.4.8
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/entity.d.ts +61 -28
- package/src/lib/dataGrid/api/entity.js +21 -17
- package/src/lib/dataGrid/api/entity.js.map +1 -1
- package/src/lib/dataGrid/api/queues.d.ts +1286 -188
- package/src/lib/dataGrid/api/queues.js +14 -17
- package/src/lib/dataGrid/api/queues.js.map +1 -1
- package/src/lib/dataGrid/api/signals.d.ts +4 -4
- package/src/lib/dataGrid/dataGrid.d.ts +3 -3
|
@@ -33,7 +33,7 @@ export declare const euQueueSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
33
33
|
}>, "many">>;
|
|
34
34
|
plannedOperationalDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
35
35
|
projectName: z.ZodOptional<z.ZodString>;
|
|
36
|
-
queueDataset: z.
|
|
36
|
+
queueDataset: z.ZodString;
|
|
37
37
|
queueDatasetType: z.ZodOptional<z.ZodString>;
|
|
38
38
|
queueDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
39
39
|
regions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -60,12 +60,14 @@ export declare const euQueueSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
60
60
|
totals: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
61
61
|
withdrawnDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
62
62
|
}, {
|
|
63
|
+
schema: z.ZodLiteral<"eu_queue">;
|
|
63
64
|
address: z.ZodOptional<z.ZodString>;
|
|
64
65
|
constructionDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
65
66
|
country: z.ZodString;
|
|
66
67
|
developmentStatus: z.ZodOptional<z.ZodString>;
|
|
67
68
|
geo: z.ZodOptional<z.ZodObject<{
|
|
68
|
-
|
|
69
|
+
defaultValue: z.ZodOptional<z.ZodString>;
|
|
70
|
+
default: z.ZodOptional<z.ZodObject<{
|
|
69
71
|
lon: z.ZodNumber;
|
|
70
72
|
lat: z.ZodNumber;
|
|
71
73
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -74,17 +76,73 @@ export declare const euQueueSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
74
76
|
}, {
|
|
75
77
|
lat?: number;
|
|
76
78
|
lon?: number;
|
|
77
|
-
}
|
|
79
|
+
}>>;
|
|
80
|
+
project: z.ZodOptional<z.ZodObject<{
|
|
81
|
+
lon: z.ZodNumber;
|
|
82
|
+
lat: z.ZodNumber;
|
|
83
|
+
}, "strip", z.ZodTypeAny, {
|
|
84
|
+
lat?: number;
|
|
85
|
+
lon?: number;
|
|
86
|
+
}, {
|
|
87
|
+
lat?: number;
|
|
88
|
+
lon?: number;
|
|
89
|
+
}>>;
|
|
90
|
+
county: z.ZodOptional<z.ZodObject<{
|
|
91
|
+
lon: z.ZodNumber;
|
|
92
|
+
lat: z.ZodNumber;
|
|
93
|
+
}, "strip", z.ZodTypeAny, {
|
|
94
|
+
lat?: number;
|
|
95
|
+
lon?: number;
|
|
96
|
+
}, {
|
|
97
|
+
lat?: number;
|
|
98
|
+
lon?: number;
|
|
99
|
+
}>>;
|
|
100
|
+
facility: z.ZodOptional<z.ZodObject<{
|
|
101
|
+
lon: z.ZodNumber;
|
|
102
|
+
lat: z.ZodNumber;
|
|
103
|
+
}, "strip", z.ZodTypeAny, {
|
|
104
|
+
lat?: number;
|
|
105
|
+
lon?: number;
|
|
106
|
+
}, {
|
|
107
|
+
lat?: number;
|
|
108
|
+
lon?: number;
|
|
109
|
+
}>>;
|
|
78
110
|
}, "strip", z.ZodTypeAny, {
|
|
111
|
+
county?: {
|
|
112
|
+
lat?: number;
|
|
113
|
+
lon?: number;
|
|
114
|
+
};
|
|
115
|
+
defaultValue?: string;
|
|
116
|
+
default?: {
|
|
117
|
+
lat?: number;
|
|
118
|
+
lon?: number;
|
|
119
|
+
};
|
|
79
120
|
project?: {
|
|
80
121
|
lat?: number;
|
|
81
122
|
lon?: number;
|
|
82
123
|
};
|
|
124
|
+
facility?: {
|
|
125
|
+
lat?: number;
|
|
126
|
+
lon?: number;
|
|
127
|
+
};
|
|
83
128
|
}, {
|
|
129
|
+
county?: {
|
|
130
|
+
lat?: number;
|
|
131
|
+
lon?: number;
|
|
132
|
+
};
|
|
133
|
+
defaultValue?: string;
|
|
134
|
+
default?: {
|
|
135
|
+
lat?: number;
|
|
136
|
+
lon?: number;
|
|
137
|
+
};
|
|
84
138
|
project?: {
|
|
85
139
|
lat?: number;
|
|
86
140
|
lon?: number;
|
|
87
141
|
};
|
|
142
|
+
facility?: {
|
|
143
|
+
lat?: number;
|
|
144
|
+
lon?: number;
|
|
145
|
+
};
|
|
88
146
|
}>>;
|
|
89
147
|
localCounty: z.ZodOptional<z.ZodString>;
|
|
90
148
|
localRegion: z.ZodOptional<z.ZodString>;
|
|
@@ -121,10 +179,23 @@ export declare const euQueueSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
121
179
|
ref?: string;
|
|
122
180
|
}[];
|
|
123
181
|
geo?: {
|
|
182
|
+
county?: {
|
|
183
|
+
lat?: number;
|
|
184
|
+
lon?: number;
|
|
185
|
+
};
|
|
186
|
+
defaultValue?: string;
|
|
187
|
+
default?: {
|
|
188
|
+
lat?: number;
|
|
189
|
+
lon?: number;
|
|
190
|
+
};
|
|
124
191
|
project?: {
|
|
125
192
|
lat?: number;
|
|
126
193
|
lon?: number;
|
|
127
194
|
};
|
|
195
|
+
facility?: {
|
|
196
|
+
lat?: number;
|
|
197
|
+
lon?: number;
|
|
198
|
+
};
|
|
128
199
|
};
|
|
129
200
|
audiences?: {
|
|
130
201
|
identifier?: string;
|
|
@@ -146,6 +217,7 @@ export declare const euQueueSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
146
217
|
}[];
|
|
147
218
|
reportDate?: string;
|
|
148
219
|
withdrawnDate?: string;
|
|
220
|
+
schema?: "eu_queue";
|
|
149
221
|
address?: string;
|
|
150
222
|
constructionDate?: string;
|
|
151
223
|
developmentStatus?: string;
|
|
@@ -182,10 +254,23 @@ export declare const euQueueSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
182
254
|
ref?: string;
|
|
183
255
|
}[];
|
|
184
256
|
geo?: {
|
|
257
|
+
county?: {
|
|
258
|
+
lat?: number;
|
|
259
|
+
lon?: number;
|
|
260
|
+
};
|
|
261
|
+
defaultValue?: string;
|
|
262
|
+
default?: {
|
|
263
|
+
lat?: number;
|
|
264
|
+
lon?: number;
|
|
265
|
+
};
|
|
185
266
|
project?: {
|
|
186
267
|
lat?: number;
|
|
187
268
|
lon?: number;
|
|
188
269
|
};
|
|
270
|
+
facility?: {
|
|
271
|
+
lat?: number;
|
|
272
|
+
lon?: number;
|
|
273
|
+
};
|
|
189
274
|
};
|
|
190
275
|
audiences?: {
|
|
191
276
|
identifier?: string;
|
|
@@ -207,6 +292,7 @@ export declare const euQueueSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
207
292
|
}[];
|
|
208
293
|
reportDate?: string;
|
|
209
294
|
withdrawnDate?: string;
|
|
295
|
+
schema?: "eu_queue";
|
|
210
296
|
address?: string;
|
|
211
297
|
constructionDate?: string;
|
|
212
298
|
developmentStatus?: string;
|
|
@@ -262,7 +348,7 @@ export declare const usQueueSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
262
348
|
}>, "many">>;
|
|
263
349
|
plannedOperationalDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
264
350
|
projectName: z.ZodOptional<z.ZodString>;
|
|
265
|
-
queueDataset: z.
|
|
351
|
+
queueDataset: z.ZodString;
|
|
266
352
|
queueDatasetType: z.ZodOptional<z.ZodString>;
|
|
267
353
|
queueDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
268
354
|
regions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -289,6 +375,7 @@ export declare const usQueueSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
289
375
|
totals: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
290
376
|
withdrawnDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
291
377
|
}, {
|
|
378
|
+
schema: z.ZodLiteral<"us_queue">;
|
|
292
379
|
'#developers': z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
293
380
|
'#keyPeople': z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
294
381
|
$organizations: z.ZodOptional<z.ZodString>;
|
|
@@ -352,8 +439,39 @@ export declare const usQueueSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
352
439
|
}>>;
|
|
353
440
|
dateAddedToNpm: z.ZodNullable<z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>>;
|
|
354
441
|
dateCreated: z.ZodEffects<z.ZodString, string, string>;
|
|
355
|
-
geo: z.ZodOptional<z.
|
|
356
|
-
|
|
442
|
+
geo: z.ZodOptional<z.ZodObject<{
|
|
443
|
+
defaultValue: z.ZodOptional<z.ZodString>;
|
|
444
|
+
default: z.ZodOptional<z.ZodObject<{
|
|
445
|
+
lon: z.ZodNumber;
|
|
446
|
+
lat: z.ZodNumber;
|
|
447
|
+
}, "strip", z.ZodTypeAny, {
|
|
448
|
+
lat?: number;
|
|
449
|
+
lon?: number;
|
|
450
|
+
}, {
|
|
451
|
+
lat?: number;
|
|
452
|
+
lon?: number;
|
|
453
|
+
}>>;
|
|
454
|
+
project: z.ZodOptional<z.ZodObject<{
|
|
455
|
+
lon: z.ZodNumber;
|
|
456
|
+
lat: z.ZodNumber;
|
|
457
|
+
}, "strip", z.ZodTypeAny, {
|
|
458
|
+
lat?: number;
|
|
459
|
+
lon?: number;
|
|
460
|
+
}, {
|
|
461
|
+
lat?: number;
|
|
462
|
+
lon?: number;
|
|
463
|
+
}>>;
|
|
464
|
+
county: z.ZodOptional<z.ZodObject<{
|
|
465
|
+
lon: z.ZodNumber;
|
|
466
|
+
lat: z.ZodNumber;
|
|
467
|
+
}, "strip", z.ZodTypeAny, {
|
|
468
|
+
lat?: number;
|
|
469
|
+
lon?: number;
|
|
470
|
+
}, {
|
|
471
|
+
lat?: number;
|
|
472
|
+
lon?: number;
|
|
473
|
+
}>>;
|
|
474
|
+
facility: z.ZodOptional<z.ZodObject<{
|
|
357
475
|
lon: z.ZodNumber;
|
|
358
476
|
lat: z.ZodNumber;
|
|
359
477
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -362,30 +480,44 @@ export declare const usQueueSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
362
480
|
}, {
|
|
363
481
|
lat?: number;
|
|
364
482
|
lon?: number;
|
|
365
|
-
}
|
|
366
|
-
defaultValue: z.ZodString;
|
|
483
|
+
}>>;
|
|
367
484
|
}, "strip", z.ZodTypeAny, {
|
|
368
|
-
|
|
485
|
+
county?: {
|
|
369
486
|
lat?: number;
|
|
370
487
|
lon?: number;
|
|
371
488
|
};
|
|
372
489
|
defaultValue?: string;
|
|
373
|
-
}, {
|
|
374
490
|
default?: {
|
|
375
491
|
lat?: number;
|
|
376
492
|
lon?: number;
|
|
377
493
|
};
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
494
|
+
project?: {
|
|
495
|
+
lat?: number;
|
|
496
|
+
lon?: number;
|
|
497
|
+
};
|
|
498
|
+
facility?: {
|
|
499
|
+
lat?: number;
|
|
500
|
+
lon?: number;
|
|
501
|
+
};
|
|
385
502
|
}, {
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
503
|
+
county?: {
|
|
504
|
+
lat?: number;
|
|
505
|
+
lon?: number;
|
|
506
|
+
};
|
|
507
|
+
defaultValue?: string;
|
|
508
|
+
default?: {
|
|
509
|
+
lat?: number;
|
|
510
|
+
lon?: number;
|
|
511
|
+
};
|
|
512
|
+
project?: {
|
|
513
|
+
lat?: number;
|
|
514
|
+
lon?: number;
|
|
515
|
+
};
|
|
516
|
+
facility?: {
|
|
517
|
+
lat?: number;
|
|
518
|
+
lon?: number;
|
|
519
|
+
};
|
|
520
|
+
}>>;
|
|
389
521
|
interconnectingEntity: z.ZodOptional<z.ZodString>;
|
|
390
522
|
isoRtoConnection: z.ZodOptional<z.ZodObject<{
|
|
391
523
|
identifier: z.ZodString;
|
|
@@ -446,41 +578,7 @@ export declare const usQueueSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
446
578
|
id?: string;
|
|
447
579
|
identifier?: string;
|
|
448
580
|
}>, "many">>;
|
|
449
|
-
meta: z.ZodObject<{
|
|
450
|
-
created: z.ZodEffects<z.ZodString, string, string>;
|
|
451
|
-
computedList: z.ZodArray<z.ZodString, "many">;
|
|
452
|
-
sk: z.ZodString;
|
|
453
|
-
modified: z.ZodEffects<z.ZodString, string, string>;
|
|
454
|
-
pk: z.ZodString;
|
|
455
|
-
entity: z.ZodString;
|
|
456
|
-
}, "strip", z.ZodTypeAny, {
|
|
457
|
-
created?: string;
|
|
458
|
-
computedList?: string[];
|
|
459
|
-
sk?: string;
|
|
460
|
-
modified?: string;
|
|
461
|
-
pk?: string;
|
|
462
|
-
entity?: string;
|
|
463
|
-
}, {
|
|
464
|
-
created?: string;
|
|
465
|
-
computedList?: string[];
|
|
466
|
-
sk?: string;
|
|
467
|
-
modified?: string;
|
|
468
|
-
pk?: string;
|
|
469
|
-
entity?: string;
|
|
470
|
-
}>;
|
|
471
581
|
nearestTownOrCounty: z.ZodOptional<z.ZodString>;
|
|
472
|
-
newToQ: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
473
|
-
npmOrganizationProfile: z.ZodOptional<z.ZodObject<{
|
|
474
|
-
identifier: z.ZodString;
|
|
475
|
-
id: z.ZodString;
|
|
476
|
-
}, "strip", z.ZodTypeAny, {
|
|
477
|
-
id?: string;
|
|
478
|
-
identifier?: string;
|
|
479
|
-
}, {
|
|
480
|
-
id?: string;
|
|
481
|
-
identifier?: string;
|
|
482
|
-
}>>;
|
|
483
|
-
totalMw: z.ZodNumber;
|
|
484
582
|
poiLocation: z.ZodOptional<z.ZodString>;
|
|
485
583
|
processInfo: z.ZodOptional<z.ZodObject<{
|
|
486
584
|
county: z.ZodOptional<z.ZodString>;
|
|
@@ -510,9 +608,11 @@ export declare const usQueueSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
510
608
|
newToQ?: string;
|
|
511
609
|
npmOrganizationProfile?: string;
|
|
512
610
|
}>>;
|
|
611
|
+
plannedOperationalDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
612
|
+
actualOperationalDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
513
613
|
queueKey: z.ZodString;
|
|
514
|
-
sourceUpdate: z.ZodString;
|
|
515
614
|
reportCount: z.ZodOptional<z.ZodNumber>;
|
|
615
|
+
sourceUpdate: z.ZodString;
|
|
516
616
|
state: z.ZodOptional<z.ZodObject<{
|
|
517
617
|
identifier: z.ZodString;
|
|
518
618
|
id: z.ZodString;
|
|
@@ -530,6 +630,7 @@ export declare const usQueueSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
530
630
|
}, {
|
|
531
631
|
identifier?: string;
|
|
532
632
|
}>, "many">>;
|
|
633
|
+
totalMw: z.ZodNumber;
|
|
533
634
|
utility: z.ZodOptional<z.ZodObject<{
|
|
534
635
|
identifier: z.ZodString;
|
|
535
636
|
id: z.ZodString;
|
|
@@ -586,15 +687,24 @@ export declare const usQueueSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
586
687
|
identifier?: string;
|
|
587
688
|
};
|
|
588
689
|
geo?: {
|
|
589
|
-
|
|
690
|
+
county?: {
|
|
590
691
|
lat?: number;
|
|
591
692
|
lon?: number;
|
|
592
693
|
};
|
|
593
694
|
defaultValue?: string;
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
695
|
+
default?: {
|
|
696
|
+
lat?: number;
|
|
697
|
+
lon?: number;
|
|
698
|
+
};
|
|
699
|
+
project?: {
|
|
700
|
+
lat?: number;
|
|
701
|
+
lon?: number;
|
|
702
|
+
};
|
|
703
|
+
facility?: {
|
|
704
|
+
lat?: number;
|
|
705
|
+
lon?: number;
|
|
706
|
+
};
|
|
707
|
+
};
|
|
598
708
|
audiences?: {
|
|
599
709
|
identifier?: string;
|
|
600
710
|
}[];
|
|
@@ -605,11 +715,6 @@ export declare const usQueueSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
605
715
|
id?: string;
|
|
606
716
|
identifier?: string;
|
|
607
717
|
};
|
|
608
|
-
newToQ?: string;
|
|
609
|
-
npmOrganizationProfile?: {
|
|
610
|
-
id?: string;
|
|
611
|
-
identifier?: string;
|
|
612
|
-
};
|
|
613
718
|
actualOperationalDate?: string;
|
|
614
719
|
applicationStatus?: string;
|
|
615
720
|
indexed_at?: string;
|
|
@@ -624,6 +729,7 @@ export declare const usQueueSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
624
729
|
}[];
|
|
625
730
|
reportDate?: string;
|
|
626
731
|
withdrawnDate?: string;
|
|
732
|
+
schema?: "us_queue";
|
|
627
733
|
localCounty?: {
|
|
628
734
|
id?: string;
|
|
629
735
|
identifier?: string;
|
|
@@ -652,14 +758,6 @@ export declare const usQueueSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
652
758
|
dateCreated?: string;
|
|
653
759
|
interconnectingEntity?: string;
|
|
654
760
|
kV?: number;
|
|
655
|
-
meta?: {
|
|
656
|
-
created?: string;
|
|
657
|
-
computedList?: string[];
|
|
658
|
-
sk?: string;
|
|
659
|
-
modified?: string;
|
|
660
|
-
pk?: string;
|
|
661
|
-
entity?: string;
|
|
662
|
-
};
|
|
663
761
|
nearestTownOrCounty?: string;
|
|
664
762
|
poiLocation?: string;
|
|
665
763
|
processInfo?: {
|
|
@@ -722,15 +820,24 @@ export declare const usQueueSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
722
820
|
identifier?: string;
|
|
723
821
|
};
|
|
724
822
|
geo?: {
|
|
725
|
-
|
|
823
|
+
county?: {
|
|
726
824
|
lat?: number;
|
|
727
825
|
lon?: number;
|
|
728
826
|
};
|
|
729
827
|
defaultValue?: string;
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
828
|
+
default?: {
|
|
829
|
+
lat?: number;
|
|
830
|
+
lon?: number;
|
|
831
|
+
};
|
|
832
|
+
project?: {
|
|
833
|
+
lat?: number;
|
|
834
|
+
lon?: number;
|
|
835
|
+
};
|
|
836
|
+
facility?: {
|
|
837
|
+
lat?: number;
|
|
838
|
+
lon?: number;
|
|
839
|
+
};
|
|
840
|
+
};
|
|
734
841
|
audiences?: {
|
|
735
842
|
identifier?: string;
|
|
736
843
|
}[];
|
|
@@ -741,11 +848,6 @@ export declare const usQueueSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
741
848
|
id?: string;
|
|
742
849
|
identifier?: string;
|
|
743
850
|
};
|
|
744
|
-
newToQ?: string;
|
|
745
|
-
npmOrganizationProfile?: {
|
|
746
|
-
id?: string;
|
|
747
|
-
identifier?: string;
|
|
748
|
-
};
|
|
749
851
|
actualOperationalDate?: string;
|
|
750
852
|
applicationStatus?: string;
|
|
751
853
|
indexed_at?: string;
|
|
@@ -760,6 +862,7 @@ export declare const usQueueSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
760
862
|
}[];
|
|
761
863
|
reportDate?: string;
|
|
762
864
|
withdrawnDate?: string;
|
|
865
|
+
schema?: "us_queue";
|
|
763
866
|
localCounty?: {
|
|
764
867
|
id?: string;
|
|
765
868
|
identifier?: string;
|
|
@@ -788,14 +891,6 @@ export declare const usQueueSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
788
891
|
dateCreated?: string;
|
|
789
892
|
interconnectingEntity?: string;
|
|
790
893
|
kV?: number;
|
|
791
|
-
meta?: {
|
|
792
|
-
created?: string;
|
|
793
|
-
computedList?: string[];
|
|
794
|
-
sk?: string;
|
|
795
|
-
modified?: string;
|
|
796
|
-
pk?: string;
|
|
797
|
-
entity?: string;
|
|
798
|
-
};
|
|
799
894
|
nearestTownOrCounty?: string;
|
|
800
895
|
poiLocation?: string;
|
|
801
896
|
processInfo?: {
|
|
@@ -848,7 +943,7 @@ export declare const QueueSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.extendSha
|
|
|
848
943
|
}>, "many">>;
|
|
849
944
|
plannedOperationalDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
850
945
|
projectName: z.ZodOptional<z.ZodString>;
|
|
851
|
-
queueDataset: z.
|
|
946
|
+
queueDataset: z.ZodString;
|
|
852
947
|
queueDatasetType: z.ZodOptional<z.ZodString>;
|
|
853
948
|
queueDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
854
949
|
regions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -875,6 +970,7 @@ export declare const QueueSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.extendSha
|
|
|
875
970
|
totals: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
876
971
|
withdrawnDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
877
972
|
}, {
|
|
973
|
+
schema: z.ZodLiteral<"us_queue">;
|
|
878
974
|
'#developers': z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
879
975
|
'#keyPeople': z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
880
976
|
$organizations: z.ZodOptional<z.ZodString>;
|
|
@@ -938,8 +1034,29 @@ export declare const QueueSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.extendSha
|
|
|
938
1034
|
}>>;
|
|
939
1035
|
dateAddedToNpm: z.ZodNullable<z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>>;
|
|
940
1036
|
dateCreated: z.ZodEffects<z.ZodString, string, string>;
|
|
941
|
-
geo: z.ZodOptional<z.
|
|
942
|
-
|
|
1037
|
+
geo: z.ZodOptional<z.ZodObject<{
|
|
1038
|
+
defaultValue: z.ZodOptional<z.ZodString>;
|
|
1039
|
+
default: z.ZodOptional<z.ZodObject<{
|
|
1040
|
+
lon: z.ZodNumber;
|
|
1041
|
+
lat: z.ZodNumber;
|
|
1042
|
+
}, "strip", z.ZodTypeAny, {
|
|
1043
|
+
lat?: number;
|
|
1044
|
+
lon?: number;
|
|
1045
|
+
}, {
|
|
1046
|
+
lat?: number;
|
|
1047
|
+
lon?: number;
|
|
1048
|
+
}>>;
|
|
1049
|
+
project: z.ZodOptional<z.ZodObject<{
|
|
1050
|
+
lon: z.ZodNumber;
|
|
1051
|
+
lat: z.ZodNumber;
|
|
1052
|
+
}, "strip", z.ZodTypeAny, {
|
|
1053
|
+
lat?: number;
|
|
1054
|
+
lon?: number;
|
|
1055
|
+
}, {
|
|
1056
|
+
lat?: number;
|
|
1057
|
+
lon?: number;
|
|
1058
|
+
}>>;
|
|
1059
|
+
county: z.ZodOptional<z.ZodObject<{
|
|
943
1060
|
lon: z.ZodNumber;
|
|
944
1061
|
lat: z.ZodNumber;
|
|
945
1062
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -948,30 +1065,54 @@ export declare const QueueSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.extendSha
|
|
|
948
1065
|
}, {
|
|
949
1066
|
lat?: number;
|
|
950
1067
|
lon?: number;
|
|
951
|
-
}
|
|
952
|
-
|
|
1068
|
+
}>>;
|
|
1069
|
+
facility: z.ZodOptional<z.ZodObject<{
|
|
1070
|
+
lon: z.ZodNumber;
|
|
1071
|
+
lat: z.ZodNumber;
|
|
1072
|
+
}, "strip", z.ZodTypeAny, {
|
|
1073
|
+
lat?: number;
|
|
1074
|
+
lon?: number;
|
|
1075
|
+
}, {
|
|
1076
|
+
lat?: number;
|
|
1077
|
+
lon?: number;
|
|
1078
|
+
}>>;
|
|
953
1079
|
}, "strip", z.ZodTypeAny, {
|
|
954
|
-
|
|
1080
|
+
county?: {
|
|
955
1081
|
lat?: number;
|
|
956
1082
|
lon?: number;
|
|
957
1083
|
};
|
|
958
1084
|
defaultValue?: string;
|
|
959
|
-
}, {
|
|
960
1085
|
default?: {
|
|
961
1086
|
lat?: number;
|
|
962
1087
|
lon?: number;
|
|
963
1088
|
};
|
|
964
|
-
|
|
965
|
-
|
|
966
|
-
|
|
967
|
-
|
|
968
|
-
|
|
969
|
-
|
|
970
|
-
|
|
1089
|
+
project?: {
|
|
1090
|
+
lat?: number;
|
|
1091
|
+
lon?: number;
|
|
1092
|
+
};
|
|
1093
|
+
facility?: {
|
|
1094
|
+
lat?: number;
|
|
1095
|
+
lon?: number;
|
|
1096
|
+
};
|
|
971
1097
|
}, {
|
|
972
|
-
|
|
973
|
-
|
|
974
|
-
|
|
1098
|
+
county?: {
|
|
1099
|
+
lat?: number;
|
|
1100
|
+
lon?: number;
|
|
1101
|
+
};
|
|
1102
|
+
defaultValue?: string;
|
|
1103
|
+
default?: {
|
|
1104
|
+
lat?: number;
|
|
1105
|
+
lon?: number;
|
|
1106
|
+
};
|
|
1107
|
+
project?: {
|
|
1108
|
+
lat?: number;
|
|
1109
|
+
lon?: number;
|
|
1110
|
+
};
|
|
1111
|
+
facility?: {
|
|
1112
|
+
lat?: number;
|
|
1113
|
+
lon?: number;
|
|
1114
|
+
};
|
|
1115
|
+
}>>;
|
|
975
1116
|
interconnectingEntity: z.ZodOptional<z.ZodString>;
|
|
976
1117
|
isoRtoConnection: z.ZodOptional<z.ZodObject<{
|
|
977
1118
|
identifier: z.ZodString;
|
|
@@ -1032,41 +1173,7 @@ export declare const QueueSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.extendSha
|
|
|
1032
1173
|
id?: string;
|
|
1033
1174
|
identifier?: string;
|
|
1034
1175
|
}>, "many">>;
|
|
1035
|
-
meta: z.ZodObject<{
|
|
1036
|
-
created: z.ZodEffects<z.ZodString, string, string>;
|
|
1037
|
-
computedList: z.ZodArray<z.ZodString, "many">;
|
|
1038
|
-
sk: z.ZodString;
|
|
1039
|
-
modified: z.ZodEffects<z.ZodString, string, string>;
|
|
1040
|
-
pk: z.ZodString;
|
|
1041
|
-
entity: z.ZodString;
|
|
1042
|
-
}, "strip", z.ZodTypeAny, {
|
|
1043
|
-
created?: string;
|
|
1044
|
-
computedList?: string[];
|
|
1045
|
-
sk?: string;
|
|
1046
|
-
modified?: string;
|
|
1047
|
-
pk?: string;
|
|
1048
|
-
entity?: string;
|
|
1049
|
-
}, {
|
|
1050
|
-
created?: string;
|
|
1051
|
-
computedList?: string[];
|
|
1052
|
-
sk?: string;
|
|
1053
|
-
modified?: string;
|
|
1054
|
-
pk?: string;
|
|
1055
|
-
entity?: string;
|
|
1056
|
-
}>;
|
|
1057
1176
|
nearestTownOrCounty: z.ZodOptional<z.ZodString>;
|
|
1058
|
-
newToQ: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
1059
|
-
npmOrganizationProfile: z.ZodOptional<z.ZodObject<{
|
|
1060
|
-
identifier: z.ZodString;
|
|
1061
|
-
id: z.ZodString;
|
|
1062
|
-
}, "strip", z.ZodTypeAny, {
|
|
1063
|
-
id?: string;
|
|
1064
|
-
identifier?: string;
|
|
1065
|
-
}, {
|
|
1066
|
-
id?: string;
|
|
1067
|
-
identifier?: string;
|
|
1068
|
-
}>>;
|
|
1069
|
-
totalMw: z.ZodNumber;
|
|
1070
1177
|
poiLocation: z.ZodOptional<z.ZodString>;
|
|
1071
1178
|
processInfo: z.ZodOptional<z.ZodObject<{
|
|
1072
1179
|
county: z.ZodOptional<z.ZodString>;
|
|
@@ -1096,9 +1203,11 @@ export declare const QueueSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.extendSha
|
|
|
1096
1203
|
newToQ?: string;
|
|
1097
1204
|
npmOrganizationProfile?: string;
|
|
1098
1205
|
}>>;
|
|
1206
|
+
plannedOperationalDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
1207
|
+
actualOperationalDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
1099
1208
|
queueKey: z.ZodString;
|
|
1100
|
-
sourceUpdate: z.ZodString;
|
|
1101
1209
|
reportCount: z.ZodOptional<z.ZodNumber>;
|
|
1210
|
+
sourceUpdate: z.ZodString;
|
|
1102
1211
|
state: z.ZodOptional<z.ZodObject<{
|
|
1103
1212
|
identifier: z.ZodString;
|
|
1104
1213
|
id: z.ZodString;
|
|
@@ -1116,6 +1225,7 @@ export declare const QueueSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.extendSha
|
|
|
1116
1225
|
}, {
|
|
1117
1226
|
identifier?: string;
|
|
1118
1227
|
}>, "many">>;
|
|
1228
|
+
totalMw: z.ZodNumber;
|
|
1119
1229
|
utility: z.ZodOptional<z.ZodObject<{
|
|
1120
1230
|
identifier: z.ZodString;
|
|
1121
1231
|
id: z.ZodString;
|
|
@@ -1172,27 +1282,31 @@ export declare const QueueSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.extendSha
|
|
|
1172
1282
|
identifier?: string;
|
|
1173
1283
|
};
|
|
1174
1284
|
geo?: {
|
|
1175
|
-
|
|
1285
|
+
county?: {
|
|
1176
1286
|
lat?: number;
|
|
1177
1287
|
lon?: number;
|
|
1178
1288
|
};
|
|
1179
1289
|
defaultValue?: string;
|
|
1180
|
-
|
|
1181
|
-
|
|
1182
|
-
|
|
1183
|
-
|
|
1184
|
-
|
|
1185
|
-
|
|
1186
|
-
|
|
1187
|
-
|
|
1188
|
-
|
|
1189
|
-
|
|
1190
|
-
|
|
1191
|
-
|
|
1192
|
-
identifier?: string;
|
|
1290
|
+
default?: {
|
|
1291
|
+
lat?: number;
|
|
1292
|
+
lon?: number;
|
|
1293
|
+
};
|
|
1294
|
+
project?: {
|
|
1295
|
+
lat?: number;
|
|
1296
|
+
lon?: number;
|
|
1297
|
+
};
|
|
1298
|
+
facility?: {
|
|
1299
|
+
lat?: number;
|
|
1300
|
+
lon?: number;
|
|
1301
|
+
};
|
|
1193
1302
|
};
|
|
1194
|
-
|
|
1195
|
-
|
|
1303
|
+
audiences?: {
|
|
1304
|
+
identifier?: string;
|
|
1305
|
+
}[];
|
|
1306
|
+
totals?: Record<string, number>;
|
|
1307
|
+
allSectors?: string;
|
|
1308
|
+
$organizations?: string;
|
|
1309
|
+
isoRtoConnection?: {
|
|
1196
1310
|
id?: string;
|
|
1197
1311
|
identifier?: string;
|
|
1198
1312
|
};
|
|
@@ -1210,6 +1324,7 @@ export declare const QueueSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.extendSha
|
|
|
1210
1324
|
}[];
|
|
1211
1325
|
reportDate?: string;
|
|
1212
1326
|
withdrawnDate?: string;
|
|
1327
|
+
schema?: "us_queue";
|
|
1213
1328
|
localCounty?: {
|
|
1214
1329
|
id?: string;
|
|
1215
1330
|
identifier?: string;
|
|
@@ -1238,14 +1353,6 @@ export declare const QueueSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.extendSha
|
|
|
1238
1353
|
dateCreated?: string;
|
|
1239
1354
|
interconnectingEntity?: string;
|
|
1240
1355
|
kV?: number;
|
|
1241
|
-
meta?: {
|
|
1242
|
-
created?: string;
|
|
1243
|
-
computedList?: string[];
|
|
1244
|
-
sk?: string;
|
|
1245
|
-
modified?: string;
|
|
1246
|
-
pk?: string;
|
|
1247
|
-
entity?: string;
|
|
1248
|
-
};
|
|
1249
1356
|
nearestTownOrCounty?: string;
|
|
1250
1357
|
poiLocation?: string;
|
|
1251
1358
|
processInfo?: {
|
|
@@ -1308,15 +1415,24 @@ export declare const QueueSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.extendSha
|
|
|
1308
1415
|
identifier?: string;
|
|
1309
1416
|
};
|
|
1310
1417
|
geo?: {
|
|
1311
|
-
|
|
1418
|
+
county?: {
|
|
1312
1419
|
lat?: number;
|
|
1313
1420
|
lon?: number;
|
|
1314
1421
|
};
|
|
1315
1422
|
defaultValue?: string;
|
|
1316
|
-
|
|
1317
|
-
|
|
1318
|
-
|
|
1319
|
-
|
|
1423
|
+
default?: {
|
|
1424
|
+
lat?: number;
|
|
1425
|
+
lon?: number;
|
|
1426
|
+
};
|
|
1427
|
+
project?: {
|
|
1428
|
+
lat?: number;
|
|
1429
|
+
lon?: number;
|
|
1430
|
+
};
|
|
1431
|
+
facility?: {
|
|
1432
|
+
lat?: number;
|
|
1433
|
+
lon?: number;
|
|
1434
|
+
};
|
|
1435
|
+
};
|
|
1320
1436
|
audiences?: {
|
|
1321
1437
|
identifier?: string;
|
|
1322
1438
|
}[];
|
|
@@ -1327,11 +1443,6 @@ export declare const QueueSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.extendSha
|
|
|
1327
1443
|
id?: string;
|
|
1328
1444
|
identifier?: string;
|
|
1329
1445
|
};
|
|
1330
|
-
newToQ?: string;
|
|
1331
|
-
npmOrganizationProfile?: {
|
|
1332
|
-
id?: string;
|
|
1333
|
-
identifier?: string;
|
|
1334
|
-
};
|
|
1335
1446
|
actualOperationalDate?: string;
|
|
1336
1447
|
applicationStatus?: string;
|
|
1337
1448
|
indexed_at?: string;
|
|
@@ -1346,6 +1457,7 @@ export declare const QueueSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.extendSha
|
|
|
1346
1457
|
}[];
|
|
1347
1458
|
reportDate?: string;
|
|
1348
1459
|
withdrawnDate?: string;
|
|
1460
|
+
schema?: "us_queue";
|
|
1349
1461
|
localCounty?: {
|
|
1350
1462
|
id?: string;
|
|
1351
1463
|
identifier?: string;
|
|
@@ -1374,14 +1486,6 @@ export declare const QueueSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.extendSha
|
|
|
1374
1486
|
dateCreated?: string;
|
|
1375
1487
|
interconnectingEntity?: string;
|
|
1376
1488
|
kV?: number;
|
|
1377
|
-
meta?: {
|
|
1378
|
-
created?: string;
|
|
1379
|
-
computedList?: string[];
|
|
1380
|
-
sk?: string;
|
|
1381
|
-
modified?: string;
|
|
1382
|
-
pk?: string;
|
|
1383
|
-
entity?: string;
|
|
1384
|
-
};
|
|
1385
1489
|
nearestTownOrCounty?: string;
|
|
1386
1490
|
poiLocation?: string;
|
|
1387
1491
|
processInfo?: {
|
|
@@ -1432,7 +1536,7 @@ export declare const QueueSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.extendSha
|
|
|
1432
1536
|
}>, "many">>;
|
|
1433
1537
|
plannedOperationalDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
1434
1538
|
projectName: z.ZodOptional<z.ZodString>;
|
|
1435
|
-
queueDataset: z.
|
|
1539
|
+
queueDataset: z.ZodString;
|
|
1436
1540
|
queueDatasetType: z.ZodOptional<z.ZodString>;
|
|
1437
1541
|
queueDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
1438
1542
|
regions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -1459,12 +1563,44 @@ export declare const QueueSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.extendSha
|
|
|
1459
1563
|
totals: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
1460
1564
|
withdrawnDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
1461
1565
|
}, {
|
|
1566
|
+
schema: z.ZodLiteral<"eu_queue">;
|
|
1462
1567
|
address: z.ZodOptional<z.ZodString>;
|
|
1463
1568
|
constructionDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
1464
1569
|
country: z.ZodString;
|
|
1465
1570
|
developmentStatus: z.ZodOptional<z.ZodString>;
|
|
1466
1571
|
geo: z.ZodOptional<z.ZodObject<{
|
|
1467
|
-
|
|
1572
|
+
defaultValue: z.ZodOptional<z.ZodString>;
|
|
1573
|
+
default: z.ZodOptional<z.ZodObject<{
|
|
1574
|
+
lon: z.ZodNumber;
|
|
1575
|
+
lat: z.ZodNumber;
|
|
1576
|
+
}, "strip", z.ZodTypeAny, {
|
|
1577
|
+
lat?: number;
|
|
1578
|
+
lon?: number;
|
|
1579
|
+
}, {
|
|
1580
|
+
lat?: number;
|
|
1581
|
+
lon?: number;
|
|
1582
|
+
}>>;
|
|
1583
|
+
project: z.ZodOptional<z.ZodObject<{
|
|
1584
|
+
lon: z.ZodNumber;
|
|
1585
|
+
lat: z.ZodNumber;
|
|
1586
|
+
}, "strip", z.ZodTypeAny, {
|
|
1587
|
+
lat?: number;
|
|
1588
|
+
lon?: number;
|
|
1589
|
+
}, {
|
|
1590
|
+
lat?: number;
|
|
1591
|
+
lon?: number;
|
|
1592
|
+
}>>;
|
|
1593
|
+
county: z.ZodOptional<z.ZodObject<{
|
|
1594
|
+
lon: z.ZodNumber;
|
|
1595
|
+
lat: z.ZodNumber;
|
|
1596
|
+
}, "strip", z.ZodTypeAny, {
|
|
1597
|
+
lat?: number;
|
|
1598
|
+
lon?: number;
|
|
1599
|
+
}, {
|
|
1600
|
+
lat?: number;
|
|
1601
|
+
lon?: number;
|
|
1602
|
+
}>>;
|
|
1603
|
+
facility: z.ZodOptional<z.ZodObject<{
|
|
1468
1604
|
lon: z.ZodNumber;
|
|
1469
1605
|
lat: z.ZodNumber;
|
|
1470
1606
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1473,17 +1609,43 @@ export declare const QueueSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.extendSha
|
|
|
1473
1609
|
}, {
|
|
1474
1610
|
lat?: number;
|
|
1475
1611
|
lon?: number;
|
|
1476
|
-
}
|
|
1612
|
+
}>>;
|
|
1477
1613
|
}, "strip", z.ZodTypeAny, {
|
|
1614
|
+
county?: {
|
|
1615
|
+
lat?: number;
|
|
1616
|
+
lon?: number;
|
|
1617
|
+
};
|
|
1618
|
+
defaultValue?: string;
|
|
1619
|
+
default?: {
|
|
1620
|
+
lat?: number;
|
|
1621
|
+
lon?: number;
|
|
1622
|
+
};
|
|
1478
1623
|
project?: {
|
|
1479
1624
|
lat?: number;
|
|
1480
1625
|
lon?: number;
|
|
1481
1626
|
};
|
|
1627
|
+
facility?: {
|
|
1628
|
+
lat?: number;
|
|
1629
|
+
lon?: number;
|
|
1630
|
+
};
|
|
1482
1631
|
}, {
|
|
1632
|
+
county?: {
|
|
1633
|
+
lat?: number;
|
|
1634
|
+
lon?: number;
|
|
1635
|
+
};
|
|
1636
|
+
defaultValue?: string;
|
|
1637
|
+
default?: {
|
|
1638
|
+
lat?: number;
|
|
1639
|
+
lon?: number;
|
|
1640
|
+
};
|
|
1483
1641
|
project?: {
|
|
1484
1642
|
lat?: number;
|
|
1485
1643
|
lon?: number;
|
|
1486
1644
|
};
|
|
1645
|
+
facility?: {
|
|
1646
|
+
lat?: number;
|
|
1647
|
+
lon?: number;
|
|
1648
|
+
};
|
|
1487
1649
|
}>>;
|
|
1488
1650
|
localCounty: z.ZodOptional<z.ZodString>;
|
|
1489
1651
|
localRegion: z.ZodOptional<z.ZodString>;
|
|
@@ -1520,10 +1682,23 @@ export declare const QueueSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.extendSha
|
|
|
1520
1682
|
ref?: string;
|
|
1521
1683
|
}[];
|
|
1522
1684
|
geo?: {
|
|
1685
|
+
county?: {
|
|
1686
|
+
lat?: number;
|
|
1687
|
+
lon?: number;
|
|
1688
|
+
};
|
|
1689
|
+
defaultValue?: string;
|
|
1690
|
+
default?: {
|
|
1691
|
+
lat?: number;
|
|
1692
|
+
lon?: number;
|
|
1693
|
+
};
|
|
1523
1694
|
project?: {
|
|
1524
1695
|
lat?: number;
|
|
1525
1696
|
lon?: number;
|
|
1526
1697
|
};
|
|
1698
|
+
facility?: {
|
|
1699
|
+
lat?: number;
|
|
1700
|
+
lon?: number;
|
|
1701
|
+
};
|
|
1527
1702
|
};
|
|
1528
1703
|
audiences?: {
|
|
1529
1704
|
identifier?: string;
|
|
@@ -1545,6 +1720,7 @@ export declare const QueueSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.extendSha
|
|
|
1545
1720
|
}[];
|
|
1546
1721
|
reportDate?: string;
|
|
1547
1722
|
withdrawnDate?: string;
|
|
1723
|
+
schema?: "eu_queue";
|
|
1548
1724
|
address?: string;
|
|
1549
1725
|
constructionDate?: string;
|
|
1550
1726
|
developmentStatus?: string;
|
|
@@ -1581,10 +1757,23 @@ export declare const QueueSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.extendSha
|
|
|
1581
1757
|
ref?: string;
|
|
1582
1758
|
}[];
|
|
1583
1759
|
geo?: {
|
|
1760
|
+
county?: {
|
|
1761
|
+
lat?: number;
|
|
1762
|
+
lon?: number;
|
|
1763
|
+
};
|
|
1764
|
+
defaultValue?: string;
|
|
1765
|
+
default?: {
|
|
1766
|
+
lat?: number;
|
|
1767
|
+
lon?: number;
|
|
1768
|
+
};
|
|
1584
1769
|
project?: {
|
|
1585
1770
|
lat?: number;
|
|
1586
1771
|
lon?: number;
|
|
1587
1772
|
};
|
|
1773
|
+
facility?: {
|
|
1774
|
+
lat?: number;
|
|
1775
|
+
lon?: number;
|
|
1776
|
+
};
|
|
1588
1777
|
};
|
|
1589
1778
|
audiences?: {
|
|
1590
1779
|
identifier?: string;
|
|
@@ -1606,6 +1795,7 @@ export declare const QueueSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.extendSha
|
|
|
1606
1795
|
}[];
|
|
1607
1796
|
reportDate?: string;
|
|
1608
1797
|
withdrawnDate?: string;
|
|
1798
|
+
schema?: "eu_queue";
|
|
1609
1799
|
address?: string;
|
|
1610
1800
|
constructionDate?: string;
|
|
1611
1801
|
developmentStatus?: string;
|
|
@@ -1626,4 +1816,912 @@ export declare const QueueSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.extendSha
|
|
|
1626
1816
|
totalMw?: number;
|
|
1627
1817
|
windFarmName?: string;
|
|
1628
1818
|
}>]>;
|
|
1819
|
+
export declare const QueueUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.ZodObject<z.objectUtil.extendShape<{
|
|
1820
|
+
actualOperationalDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
1821
|
+
allSectors: z.ZodDefault<z.ZodString>;
|
|
1822
|
+
applicationId: z.ZodString;
|
|
1823
|
+
applicationStatus: z.ZodOptional<z.ZodString>;
|
|
1824
|
+
audiences: z.ZodArray<z.ZodObject<{
|
|
1825
|
+
identifier: z.ZodString;
|
|
1826
|
+
}, "strip", z.ZodTypeAny, {
|
|
1827
|
+
identifier?: string;
|
|
1828
|
+
}, {
|
|
1829
|
+
identifier?: string;
|
|
1830
|
+
}>, "many">;
|
|
1831
|
+
id: z.ZodString;
|
|
1832
|
+
indexed_at: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
1833
|
+
lastModified: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
1834
|
+
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
|
|
1835
|
+
identifier: z.ZodString;
|
|
1836
|
+
id: z.ZodString;
|
|
1837
|
+
}, {
|
|
1838
|
+
role: z.ZodString;
|
|
1839
|
+
ref: z.ZodOptional<z.ZodString>;
|
|
1840
|
+
}>, "strip", z.ZodTypeAny, {
|
|
1841
|
+
id?: string;
|
|
1842
|
+
identifier?: string;
|
|
1843
|
+
role?: string;
|
|
1844
|
+
ref?: string;
|
|
1845
|
+
}, {
|
|
1846
|
+
id?: string;
|
|
1847
|
+
identifier?: string;
|
|
1848
|
+
role?: string;
|
|
1849
|
+
ref?: string;
|
|
1850
|
+
}>, "many">>;
|
|
1851
|
+
plannedOperationalDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
1852
|
+
projectName: z.ZodOptional<z.ZodString>;
|
|
1853
|
+
queueDataset: z.ZodString;
|
|
1854
|
+
queueDatasetType: z.ZodOptional<z.ZodString>;
|
|
1855
|
+
queueDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
1856
|
+
regions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1857
|
+
identifier: z.ZodString;
|
|
1858
|
+
id: z.ZodString;
|
|
1859
|
+
}, "strip", z.ZodTypeAny, {
|
|
1860
|
+
id?: string;
|
|
1861
|
+
identifier?: string;
|
|
1862
|
+
}, {
|
|
1863
|
+
id?: string;
|
|
1864
|
+
identifier?: string;
|
|
1865
|
+
}>, "many">>;
|
|
1866
|
+
reportDate: z.ZodEffects<z.ZodString, string, string>;
|
|
1867
|
+
sectors: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
1868
|
+
identifier: z.ZodString;
|
|
1869
|
+
id: z.ZodString;
|
|
1870
|
+
}, "strip", z.ZodTypeAny, {
|
|
1871
|
+
id?: string;
|
|
1872
|
+
identifier?: string;
|
|
1873
|
+
}, {
|
|
1874
|
+
id?: string;
|
|
1875
|
+
identifier?: string;
|
|
1876
|
+
}>, "many">>;
|
|
1877
|
+
totals: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
1878
|
+
withdrawnDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
1879
|
+
}, {
|
|
1880
|
+
schema: z.ZodLiteral<"eu_queue">;
|
|
1881
|
+
address: z.ZodOptional<z.ZodString>;
|
|
1882
|
+
constructionDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
1883
|
+
country: z.ZodString;
|
|
1884
|
+
developmentStatus: z.ZodOptional<z.ZodString>;
|
|
1885
|
+
geo: z.ZodOptional<z.ZodObject<{
|
|
1886
|
+
defaultValue: z.ZodOptional<z.ZodString>;
|
|
1887
|
+
default: z.ZodOptional<z.ZodObject<{
|
|
1888
|
+
lon: z.ZodNumber;
|
|
1889
|
+
lat: z.ZodNumber;
|
|
1890
|
+
}, "strip", z.ZodTypeAny, {
|
|
1891
|
+
lat?: number;
|
|
1892
|
+
lon?: number;
|
|
1893
|
+
}, {
|
|
1894
|
+
lat?: number;
|
|
1895
|
+
lon?: number;
|
|
1896
|
+
}>>;
|
|
1897
|
+
project: z.ZodOptional<z.ZodObject<{
|
|
1898
|
+
lon: z.ZodNumber;
|
|
1899
|
+
lat: z.ZodNumber;
|
|
1900
|
+
}, "strip", z.ZodTypeAny, {
|
|
1901
|
+
lat?: number;
|
|
1902
|
+
lon?: number;
|
|
1903
|
+
}, {
|
|
1904
|
+
lat?: number;
|
|
1905
|
+
lon?: number;
|
|
1906
|
+
}>>;
|
|
1907
|
+
county: z.ZodOptional<z.ZodObject<{
|
|
1908
|
+
lon: z.ZodNumber;
|
|
1909
|
+
lat: z.ZodNumber;
|
|
1910
|
+
}, "strip", z.ZodTypeAny, {
|
|
1911
|
+
lat?: number;
|
|
1912
|
+
lon?: number;
|
|
1913
|
+
}, {
|
|
1914
|
+
lat?: number;
|
|
1915
|
+
lon?: number;
|
|
1916
|
+
}>>;
|
|
1917
|
+
facility: z.ZodOptional<z.ZodObject<{
|
|
1918
|
+
lon: z.ZodNumber;
|
|
1919
|
+
lat: z.ZodNumber;
|
|
1920
|
+
}, "strip", z.ZodTypeAny, {
|
|
1921
|
+
lat?: number;
|
|
1922
|
+
lon?: number;
|
|
1923
|
+
}, {
|
|
1924
|
+
lat?: number;
|
|
1925
|
+
lon?: number;
|
|
1926
|
+
}>>;
|
|
1927
|
+
}, "strip", z.ZodTypeAny, {
|
|
1928
|
+
county?: {
|
|
1929
|
+
lat?: number;
|
|
1930
|
+
lon?: number;
|
|
1931
|
+
};
|
|
1932
|
+
defaultValue?: string;
|
|
1933
|
+
default?: {
|
|
1934
|
+
lat?: number;
|
|
1935
|
+
lon?: number;
|
|
1936
|
+
};
|
|
1937
|
+
project?: {
|
|
1938
|
+
lat?: number;
|
|
1939
|
+
lon?: number;
|
|
1940
|
+
};
|
|
1941
|
+
facility?: {
|
|
1942
|
+
lat?: number;
|
|
1943
|
+
lon?: number;
|
|
1944
|
+
};
|
|
1945
|
+
}, {
|
|
1946
|
+
county?: {
|
|
1947
|
+
lat?: number;
|
|
1948
|
+
lon?: number;
|
|
1949
|
+
};
|
|
1950
|
+
defaultValue?: string;
|
|
1951
|
+
default?: {
|
|
1952
|
+
lat?: number;
|
|
1953
|
+
lon?: number;
|
|
1954
|
+
};
|
|
1955
|
+
project?: {
|
|
1956
|
+
lat?: number;
|
|
1957
|
+
lon?: number;
|
|
1958
|
+
};
|
|
1959
|
+
facility?: {
|
|
1960
|
+
lat?: number;
|
|
1961
|
+
lon?: number;
|
|
1962
|
+
};
|
|
1963
|
+
}>>;
|
|
1964
|
+
localCounty: z.ZodOptional<z.ZodString>;
|
|
1965
|
+
localRegion: z.ZodOptional<z.ZodString>;
|
|
1966
|
+
localState: z.ZodOptional<z.ZodString>;
|
|
1967
|
+
localTown: z.ZodOptional<z.ZodString>;
|
|
1968
|
+
mwGross: z.ZodOptional<z.ZodNumber>;
|
|
1969
|
+
mwNet: z.ZodOptional<z.ZodNumber>;
|
|
1970
|
+
planningGranted: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
1971
|
+
postalCode: z.ZodOptional<z.ZodString>;
|
|
1972
|
+
refId: z.ZodString;
|
|
1973
|
+
sectorDetail: z.ZodDefault<z.ZodString>;
|
|
1974
|
+
sourceUpdate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
1975
|
+
status: z.ZodString;
|
|
1976
|
+
storageCapacity: z.ZodOptional<z.ZodNumber>;
|
|
1977
|
+
storageType: z.ZodOptional<z.ZodString>;
|
|
1978
|
+
technology: z.ZodOptional<z.ZodString>;
|
|
1979
|
+
totalMw: z.ZodOptional<z.ZodNumber>;
|
|
1980
|
+
windFarmName: z.ZodOptional<z.ZodString>;
|
|
1981
|
+
$organizations: z.ZodOptional<z.ZodString>;
|
|
1982
|
+
}>, "strip", z.ZodTypeAny, {
|
|
1983
|
+
sectors?: {
|
|
1984
|
+
id?: string;
|
|
1985
|
+
identifier?: string;
|
|
1986
|
+
}[];
|
|
1987
|
+
id?: string;
|
|
1988
|
+
status?: string;
|
|
1989
|
+
applicationId?: string;
|
|
1990
|
+
queueDataset?: string;
|
|
1991
|
+
country?: string;
|
|
1992
|
+
organizations?: {
|
|
1993
|
+
id?: string;
|
|
1994
|
+
identifier?: string;
|
|
1995
|
+
role?: string;
|
|
1996
|
+
ref?: string;
|
|
1997
|
+
}[];
|
|
1998
|
+
geo?: {
|
|
1999
|
+
county?: {
|
|
2000
|
+
lat?: number;
|
|
2001
|
+
lon?: number;
|
|
2002
|
+
};
|
|
2003
|
+
defaultValue?: string;
|
|
2004
|
+
default?: {
|
|
2005
|
+
lat?: number;
|
|
2006
|
+
lon?: number;
|
|
2007
|
+
};
|
|
2008
|
+
project?: {
|
|
2009
|
+
lat?: number;
|
|
2010
|
+
lon?: number;
|
|
2011
|
+
};
|
|
2012
|
+
facility?: {
|
|
2013
|
+
lat?: number;
|
|
2014
|
+
lon?: number;
|
|
2015
|
+
};
|
|
2016
|
+
};
|
|
2017
|
+
audiences?: {
|
|
2018
|
+
identifier?: string;
|
|
2019
|
+
}[];
|
|
2020
|
+
totals?: Record<string, number>;
|
|
2021
|
+
allSectors?: string;
|
|
2022
|
+
$organizations?: string;
|
|
2023
|
+
actualOperationalDate?: string;
|
|
2024
|
+
applicationStatus?: string;
|
|
2025
|
+
indexed_at?: string;
|
|
2026
|
+
lastModified?: string;
|
|
2027
|
+
plannedOperationalDate?: string;
|
|
2028
|
+
projectName?: string;
|
|
2029
|
+
queueDatasetType?: string;
|
|
2030
|
+
queueDate?: string;
|
|
2031
|
+
regions?: {
|
|
2032
|
+
id?: string;
|
|
2033
|
+
identifier?: string;
|
|
2034
|
+
}[];
|
|
2035
|
+
reportDate?: string;
|
|
2036
|
+
withdrawnDate?: string;
|
|
2037
|
+
schema?: "eu_queue";
|
|
2038
|
+
address?: string;
|
|
2039
|
+
constructionDate?: string;
|
|
2040
|
+
developmentStatus?: string;
|
|
2041
|
+
localCounty?: string;
|
|
2042
|
+
localRegion?: string;
|
|
2043
|
+
localState?: string;
|
|
2044
|
+
localTown?: string;
|
|
2045
|
+
mwGross?: number;
|
|
2046
|
+
mwNet?: number;
|
|
2047
|
+
planningGranted?: string;
|
|
2048
|
+
postalCode?: string;
|
|
2049
|
+
refId?: string;
|
|
2050
|
+
sectorDetail?: string;
|
|
2051
|
+
sourceUpdate?: string;
|
|
2052
|
+
storageCapacity?: number;
|
|
2053
|
+
storageType?: string;
|
|
2054
|
+
technology?: string;
|
|
2055
|
+
totalMw?: number;
|
|
2056
|
+
windFarmName?: string;
|
|
2057
|
+
}, {
|
|
2058
|
+
sectors?: {
|
|
2059
|
+
id?: string;
|
|
2060
|
+
identifier?: string;
|
|
2061
|
+
}[];
|
|
2062
|
+
id?: string;
|
|
2063
|
+
status?: string;
|
|
2064
|
+
applicationId?: string;
|
|
2065
|
+
queueDataset?: string;
|
|
2066
|
+
country?: string;
|
|
2067
|
+
organizations?: {
|
|
2068
|
+
id?: string;
|
|
2069
|
+
identifier?: string;
|
|
2070
|
+
role?: string;
|
|
2071
|
+
ref?: string;
|
|
2072
|
+
}[];
|
|
2073
|
+
geo?: {
|
|
2074
|
+
county?: {
|
|
2075
|
+
lat?: number;
|
|
2076
|
+
lon?: number;
|
|
2077
|
+
};
|
|
2078
|
+
defaultValue?: string;
|
|
2079
|
+
default?: {
|
|
2080
|
+
lat?: number;
|
|
2081
|
+
lon?: number;
|
|
2082
|
+
};
|
|
2083
|
+
project?: {
|
|
2084
|
+
lat?: number;
|
|
2085
|
+
lon?: number;
|
|
2086
|
+
};
|
|
2087
|
+
facility?: {
|
|
2088
|
+
lat?: number;
|
|
2089
|
+
lon?: number;
|
|
2090
|
+
};
|
|
2091
|
+
};
|
|
2092
|
+
audiences?: {
|
|
2093
|
+
identifier?: string;
|
|
2094
|
+
}[];
|
|
2095
|
+
totals?: Record<string, number>;
|
|
2096
|
+
allSectors?: string;
|
|
2097
|
+
$organizations?: string;
|
|
2098
|
+
actualOperationalDate?: string;
|
|
2099
|
+
applicationStatus?: string;
|
|
2100
|
+
indexed_at?: string;
|
|
2101
|
+
lastModified?: string;
|
|
2102
|
+
plannedOperationalDate?: string;
|
|
2103
|
+
projectName?: string;
|
|
2104
|
+
queueDatasetType?: string;
|
|
2105
|
+
queueDate?: string;
|
|
2106
|
+
regions?: {
|
|
2107
|
+
id?: string;
|
|
2108
|
+
identifier?: string;
|
|
2109
|
+
}[];
|
|
2110
|
+
reportDate?: string;
|
|
2111
|
+
withdrawnDate?: string;
|
|
2112
|
+
schema?: "eu_queue";
|
|
2113
|
+
address?: string;
|
|
2114
|
+
constructionDate?: string;
|
|
2115
|
+
developmentStatus?: string;
|
|
2116
|
+
localCounty?: string;
|
|
2117
|
+
localRegion?: string;
|
|
2118
|
+
localState?: string;
|
|
2119
|
+
localTown?: string;
|
|
2120
|
+
mwGross?: number;
|
|
2121
|
+
mwNet?: number;
|
|
2122
|
+
planningGranted?: string;
|
|
2123
|
+
postalCode?: string;
|
|
2124
|
+
refId?: string;
|
|
2125
|
+
sectorDetail?: string;
|
|
2126
|
+
sourceUpdate?: string;
|
|
2127
|
+
storageCapacity?: number;
|
|
2128
|
+
storageType?: string;
|
|
2129
|
+
technology?: string;
|
|
2130
|
+
totalMw?: number;
|
|
2131
|
+
windFarmName?: string;
|
|
2132
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
2133
|
+
actualOperationalDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
2134
|
+
allSectors: z.ZodDefault<z.ZodString>;
|
|
2135
|
+
applicationId: z.ZodString;
|
|
2136
|
+
applicationStatus: z.ZodOptional<z.ZodString>;
|
|
2137
|
+
audiences: z.ZodArray<z.ZodObject<{
|
|
2138
|
+
identifier: z.ZodString;
|
|
2139
|
+
}, "strip", z.ZodTypeAny, {
|
|
2140
|
+
identifier?: string;
|
|
2141
|
+
}, {
|
|
2142
|
+
identifier?: string;
|
|
2143
|
+
}>, "many">;
|
|
2144
|
+
id: z.ZodString;
|
|
2145
|
+
indexed_at: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
2146
|
+
lastModified: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
2147
|
+
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
|
|
2148
|
+
identifier: z.ZodString;
|
|
2149
|
+
id: z.ZodString;
|
|
2150
|
+
}, {
|
|
2151
|
+
role: z.ZodString;
|
|
2152
|
+
ref: z.ZodOptional<z.ZodString>;
|
|
2153
|
+
}>, "strip", z.ZodTypeAny, {
|
|
2154
|
+
id?: string;
|
|
2155
|
+
identifier?: string;
|
|
2156
|
+
role?: string;
|
|
2157
|
+
ref?: string;
|
|
2158
|
+
}, {
|
|
2159
|
+
id?: string;
|
|
2160
|
+
identifier?: string;
|
|
2161
|
+
role?: string;
|
|
2162
|
+
ref?: string;
|
|
2163
|
+
}>, "many">>;
|
|
2164
|
+
plannedOperationalDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
2165
|
+
projectName: z.ZodOptional<z.ZodString>;
|
|
2166
|
+
queueDataset: z.ZodString;
|
|
2167
|
+
queueDatasetType: z.ZodOptional<z.ZodString>;
|
|
2168
|
+
queueDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
2169
|
+
regions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2170
|
+
identifier: z.ZodString;
|
|
2171
|
+
id: z.ZodString;
|
|
2172
|
+
}, "strip", z.ZodTypeAny, {
|
|
2173
|
+
id?: string;
|
|
2174
|
+
identifier?: string;
|
|
2175
|
+
}, {
|
|
2176
|
+
id?: string;
|
|
2177
|
+
identifier?: string;
|
|
2178
|
+
}>, "many">>;
|
|
2179
|
+
reportDate: z.ZodEffects<z.ZodString, string, string>;
|
|
2180
|
+
sectors: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
2181
|
+
identifier: z.ZodString;
|
|
2182
|
+
id: z.ZodString;
|
|
2183
|
+
}, "strip", z.ZodTypeAny, {
|
|
2184
|
+
id?: string;
|
|
2185
|
+
identifier?: string;
|
|
2186
|
+
}, {
|
|
2187
|
+
id?: string;
|
|
2188
|
+
identifier?: string;
|
|
2189
|
+
}>, "many">>;
|
|
2190
|
+
totals: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
2191
|
+
withdrawnDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
2192
|
+
}, {
|
|
2193
|
+
schema: z.ZodLiteral<"us_queue">;
|
|
2194
|
+
'#developers': z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2195
|
+
'#keyPeople': z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2196
|
+
$organizations: z.ZodOptional<z.ZodString>;
|
|
2197
|
+
applicationTags: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2198
|
+
identifier: z.ZodString;
|
|
2199
|
+
}, "strip", z.ZodTypeAny, {
|
|
2200
|
+
identifier?: string;
|
|
2201
|
+
}, {
|
|
2202
|
+
identifier?: string;
|
|
2203
|
+
}>, "many">>;
|
|
2204
|
+
applicationType: z.ZodOptional<z.ZodString>;
|
|
2205
|
+
city: z.ZodOptional<z.ZodObject<{
|
|
2206
|
+
identifier: z.ZodString;
|
|
2207
|
+
id: z.ZodString;
|
|
2208
|
+
}, "strip", z.ZodTypeAny, {
|
|
2209
|
+
id?: string;
|
|
2210
|
+
identifier?: string;
|
|
2211
|
+
}, {
|
|
2212
|
+
id?: string;
|
|
2213
|
+
identifier?: string;
|
|
2214
|
+
}>>;
|
|
2215
|
+
compositeQueue: z.ZodString;
|
|
2216
|
+
cost: z.ZodOptional<z.ZodObject<{
|
|
2217
|
+
costCompany: z.ZodString;
|
|
2218
|
+
costYear: z.ZodNumber;
|
|
2219
|
+
networkCostKW: z.ZodNumber;
|
|
2220
|
+
poiCostKW: z.ZodNumber;
|
|
2221
|
+
totalCostKW: z.ZodNumber;
|
|
2222
|
+
}, "strip", z.ZodTypeAny, {
|
|
2223
|
+
costCompany?: string;
|
|
2224
|
+
costYear?: number;
|
|
2225
|
+
networkCostKW?: number;
|
|
2226
|
+
poiCostKW?: number;
|
|
2227
|
+
totalCostKW?: number;
|
|
2228
|
+
}, {
|
|
2229
|
+
costCompany?: string;
|
|
2230
|
+
costYear?: number;
|
|
2231
|
+
networkCostKW?: number;
|
|
2232
|
+
poiCostKW?: number;
|
|
2233
|
+
totalCostKW?: number;
|
|
2234
|
+
}>>;
|
|
2235
|
+
country: z.ZodArray<z.ZodObject<{
|
|
2236
|
+
identifier: z.ZodString;
|
|
2237
|
+
id: z.ZodString;
|
|
2238
|
+
}, "strip", z.ZodTypeAny, {
|
|
2239
|
+
id?: string;
|
|
2240
|
+
identifier?: string;
|
|
2241
|
+
}, {
|
|
2242
|
+
id?: string;
|
|
2243
|
+
identifier?: string;
|
|
2244
|
+
}>, "many">;
|
|
2245
|
+
county: z.ZodOptional<z.ZodObject<{
|
|
2246
|
+
identifier: z.ZodString;
|
|
2247
|
+
id: z.ZodString;
|
|
2248
|
+
}, "strip", z.ZodTypeAny, {
|
|
2249
|
+
id?: string;
|
|
2250
|
+
identifier?: string;
|
|
2251
|
+
}, {
|
|
2252
|
+
id?: string;
|
|
2253
|
+
identifier?: string;
|
|
2254
|
+
}>>;
|
|
2255
|
+
dateAddedToNpm: z.ZodNullable<z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>>;
|
|
2256
|
+
dateCreated: z.ZodEffects<z.ZodString, string, string>;
|
|
2257
|
+
geo: z.ZodOptional<z.ZodObject<{
|
|
2258
|
+
defaultValue: z.ZodOptional<z.ZodString>;
|
|
2259
|
+
default: z.ZodOptional<z.ZodObject<{
|
|
2260
|
+
lon: z.ZodNumber;
|
|
2261
|
+
lat: z.ZodNumber;
|
|
2262
|
+
}, "strip", z.ZodTypeAny, {
|
|
2263
|
+
lat?: number;
|
|
2264
|
+
lon?: number;
|
|
2265
|
+
}, {
|
|
2266
|
+
lat?: number;
|
|
2267
|
+
lon?: number;
|
|
2268
|
+
}>>;
|
|
2269
|
+
project: z.ZodOptional<z.ZodObject<{
|
|
2270
|
+
lon: z.ZodNumber;
|
|
2271
|
+
lat: z.ZodNumber;
|
|
2272
|
+
}, "strip", z.ZodTypeAny, {
|
|
2273
|
+
lat?: number;
|
|
2274
|
+
lon?: number;
|
|
2275
|
+
}, {
|
|
2276
|
+
lat?: number;
|
|
2277
|
+
lon?: number;
|
|
2278
|
+
}>>;
|
|
2279
|
+
county: z.ZodOptional<z.ZodObject<{
|
|
2280
|
+
lon: z.ZodNumber;
|
|
2281
|
+
lat: z.ZodNumber;
|
|
2282
|
+
}, "strip", z.ZodTypeAny, {
|
|
2283
|
+
lat?: number;
|
|
2284
|
+
lon?: number;
|
|
2285
|
+
}, {
|
|
2286
|
+
lat?: number;
|
|
2287
|
+
lon?: number;
|
|
2288
|
+
}>>;
|
|
2289
|
+
facility: z.ZodOptional<z.ZodObject<{
|
|
2290
|
+
lon: z.ZodNumber;
|
|
2291
|
+
lat: z.ZodNumber;
|
|
2292
|
+
}, "strip", z.ZodTypeAny, {
|
|
2293
|
+
lat?: number;
|
|
2294
|
+
lon?: number;
|
|
2295
|
+
}, {
|
|
2296
|
+
lat?: number;
|
|
2297
|
+
lon?: number;
|
|
2298
|
+
}>>;
|
|
2299
|
+
}, "strip", z.ZodTypeAny, {
|
|
2300
|
+
county?: {
|
|
2301
|
+
lat?: number;
|
|
2302
|
+
lon?: number;
|
|
2303
|
+
};
|
|
2304
|
+
defaultValue?: string;
|
|
2305
|
+
default?: {
|
|
2306
|
+
lat?: number;
|
|
2307
|
+
lon?: number;
|
|
2308
|
+
};
|
|
2309
|
+
project?: {
|
|
2310
|
+
lat?: number;
|
|
2311
|
+
lon?: number;
|
|
2312
|
+
};
|
|
2313
|
+
facility?: {
|
|
2314
|
+
lat?: number;
|
|
2315
|
+
lon?: number;
|
|
2316
|
+
};
|
|
2317
|
+
}, {
|
|
2318
|
+
county?: {
|
|
2319
|
+
lat?: number;
|
|
2320
|
+
lon?: number;
|
|
2321
|
+
};
|
|
2322
|
+
defaultValue?: string;
|
|
2323
|
+
default?: {
|
|
2324
|
+
lat?: number;
|
|
2325
|
+
lon?: number;
|
|
2326
|
+
};
|
|
2327
|
+
project?: {
|
|
2328
|
+
lat?: number;
|
|
2329
|
+
lon?: number;
|
|
2330
|
+
};
|
|
2331
|
+
facility?: {
|
|
2332
|
+
lat?: number;
|
|
2333
|
+
lon?: number;
|
|
2334
|
+
};
|
|
2335
|
+
}>>;
|
|
2336
|
+
interconnectingEntity: z.ZodOptional<z.ZodString>;
|
|
2337
|
+
isoRtoConnection: z.ZodOptional<z.ZodObject<{
|
|
2338
|
+
identifier: z.ZodString;
|
|
2339
|
+
id: z.ZodString;
|
|
2340
|
+
}, "strip", z.ZodTypeAny, {
|
|
2341
|
+
id?: string;
|
|
2342
|
+
identifier?: string;
|
|
2343
|
+
}, {
|
|
2344
|
+
id?: string;
|
|
2345
|
+
identifier?: string;
|
|
2346
|
+
}>>;
|
|
2347
|
+
keyPeople: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2348
|
+
linkedinUrl: z.ZodOptional<z.ZodString>;
|
|
2349
|
+
phone: z.ZodOptional<z.ZodString>;
|
|
2350
|
+
created: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
2351
|
+
roles: z.ZodArray<z.ZodOptional<z.ZodString>, "many">;
|
|
2352
|
+
fullName: z.ZodOptional<z.ZodString>;
|
|
2353
|
+
id: z.ZodOptional<z.ZodString>;
|
|
2354
|
+
source: z.ZodOptional<z.ZodString>;
|
|
2355
|
+
email: z.ZodOptional<z.ZodString>;
|
|
2356
|
+
}, "strip", z.ZodTypeAny, {
|
|
2357
|
+
id?: string;
|
|
2358
|
+
linkedinUrl?: string;
|
|
2359
|
+
fullName?: string;
|
|
2360
|
+
email?: string;
|
|
2361
|
+
phone?: string;
|
|
2362
|
+
source?: string;
|
|
2363
|
+
created?: string;
|
|
2364
|
+
roles?: string[];
|
|
2365
|
+
}, {
|
|
2366
|
+
id?: string;
|
|
2367
|
+
linkedinUrl?: string;
|
|
2368
|
+
fullName?: string;
|
|
2369
|
+
email?: string;
|
|
2370
|
+
phone?: string;
|
|
2371
|
+
source?: string;
|
|
2372
|
+
created?: string;
|
|
2373
|
+
roles?: string[];
|
|
2374
|
+
}>, "many">>;
|
|
2375
|
+
kV: z.ZodOptional<z.ZodNumber>;
|
|
2376
|
+
localCounty: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2377
|
+
identifier: z.ZodString;
|
|
2378
|
+
id: z.ZodString;
|
|
2379
|
+
}, "strip", z.ZodTypeAny, {
|
|
2380
|
+
id?: string;
|
|
2381
|
+
identifier?: string;
|
|
2382
|
+
}, {
|
|
2383
|
+
id?: string;
|
|
2384
|
+
identifier?: string;
|
|
2385
|
+
}>, "many">>;
|
|
2386
|
+
localState: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2387
|
+
identifier: z.ZodString;
|
|
2388
|
+
id: z.ZodString;
|
|
2389
|
+
}, "strip", z.ZodTypeAny, {
|
|
2390
|
+
id?: string;
|
|
2391
|
+
identifier?: string;
|
|
2392
|
+
}, {
|
|
2393
|
+
id?: string;
|
|
2394
|
+
identifier?: string;
|
|
2395
|
+
}>, "many">>;
|
|
2396
|
+
nearestTownOrCounty: z.ZodOptional<z.ZodString>;
|
|
2397
|
+
poiLocation: z.ZodOptional<z.ZodString>;
|
|
2398
|
+
processInfo: z.ZodOptional<z.ZodObject<{
|
|
2399
|
+
county: z.ZodOptional<z.ZodString>;
|
|
2400
|
+
isoRtoConnection: z.ZodOptional<z.ZodString>;
|
|
2401
|
+
newRecord: z.ZodOptional<z.ZodString>;
|
|
2402
|
+
newToQ: z.ZodOptional<z.ZodString>;
|
|
2403
|
+
npmOrganizationProfile: z.ZodOptional<z.ZodString>;
|
|
2404
|
+
sectors: z.ZodOptional<z.ZodString>;
|
|
2405
|
+
state: z.ZodOptional<z.ZodString>;
|
|
2406
|
+
utility: z.ZodOptional<z.ZodString>;
|
|
2407
|
+
}, "strip", z.ZodTypeAny, {
|
|
2408
|
+
sectors?: string;
|
|
2409
|
+
state?: string;
|
|
2410
|
+
county?: string;
|
|
2411
|
+
utility?: string;
|
|
2412
|
+
isoRtoConnection?: string;
|
|
2413
|
+
newRecord?: string;
|
|
2414
|
+
newToQ?: string;
|
|
2415
|
+
npmOrganizationProfile?: string;
|
|
2416
|
+
}, {
|
|
2417
|
+
sectors?: string;
|
|
2418
|
+
state?: string;
|
|
2419
|
+
county?: string;
|
|
2420
|
+
utility?: string;
|
|
2421
|
+
isoRtoConnection?: string;
|
|
2422
|
+
newRecord?: string;
|
|
2423
|
+
newToQ?: string;
|
|
2424
|
+
npmOrganizationProfile?: string;
|
|
2425
|
+
}>>;
|
|
2426
|
+
plannedOperationalDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
2427
|
+
actualOperationalDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
2428
|
+
queueKey: z.ZodString;
|
|
2429
|
+
reportCount: z.ZodOptional<z.ZodNumber>;
|
|
2430
|
+
sourceUpdate: z.ZodString;
|
|
2431
|
+
state: z.ZodOptional<z.ZodObject<{
|
|
2432
|
+
identifier: z.ZodString;
|
|
2433
|
+
id: z.ZodString;
|
|
2434
|
+
}, "strip", z.ZodTypeAny, {
|
|
2435
|
+
id?: string;
|
|
2436
|
+
identifier?: string;
|
|
2437
|
+
}, {
|
|
2438
|
+
id?: string;
|
|
2439
|
+
identifier?: string;
|
|
2440
|
+
}>>;
|
|
2441
|
+
tags: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2442
|
+
identifier: z.ZodString;
|
|
2443
|
+
}, "strip", z.ZodTypeAny, {
|
|
2444
|
+
identifier?: string;
|
|
2445
|
+
}, {
|
|
2446
|
+
identifier?: string;
|
|
2447
|
+
}>, "many">>;
|
|
2448
|
+
totalMw: z.ZodNumber;
|
|
2449
|
+
utility: z.ZodOptional<z.ZodObject<{
|
|
2450
|
+
identifier: z.ZodString;
|
|
2451
|
+
id: z.ZodString;
|
|
2452
|
+
}, "strip", z.ZodTypeAny, {
|
|
2453
|
+
id?: string;
|
|
2454
|
+
identifier?: string;
|
|
2455
|
+
}, {
|
|
2456
|
+
id?: string;
|
|
2457
|
+
identifier?: string;
|
|
2458
|
+
}>>;
|
|
2459
|
+
}>, "strip", z.ZodTypeAny, {
|
|
2460
|
+
sectors?: {
|
|
2461
|
+
id?: string;
|
|
2462
|
+
identifier?: string;
|
|
2463
|
+
}[];
|
|
2464
|
+
state?: {
|
|
2465
|
+
id?: string;
|
|
2466
|
+
identifier?: string;
|
|
2467
|
+
};
|
|
2468
|
+
county?: {
|
|
2469
|
+
id?: string;
|
|
2470
|
+
identifier?: string;
|
|
2471
|
+
};
|
|
2472
|
+
keyPeople?: {
|
|
2473
|
+
id?: string;
|
|
2474
|
+
linkedinUrl?: string;
|
|
2475
|
+
fullName?: string;
|
|
2476
|
+
email?: string;
|
|
2477
|
+
phone?: string;
|
|
2478
|
+
source?: string;
|
|
2479
|
+
created?: string;
|
|
2480
|
+
roles?: string[];
|
|
2481
|
+
}[];
|
|
2482
|
+
id?: string;
|
|
2483
|
+
queueKey?: string;
|
|
2484
|
+
applicationId?: string;
|
|
2485
|
+
queueDataset?: string;
|
|
2486
|
+
city?: {
|
|
2487
|
+
id?: string;
|
|
2488
|
+
identifier?: string;
|
|
2489
|
+
};
|
|
2490
|
+
country?: {
|
|
2491
|
+
id?: string;
|
|
2492
|
+
identifier?: string;
|
|
2493
|
+
}[];
|
|
2494
|
+
organizations?: {
|
|
2495
|
+
id?: string;
|
|
2496
|
+
identifier?: string;
|
|
2497
|
+
role?: string;
|
|
2498
|
+
ref?: string;
|
|
2499
|
+
}[];
|
|
2500
|
+
utility?: {
|
|
2501
|
+
id?: string;
|
|
2502
|
+
identifier?: string;
|
|
2503
|
+
};
|
|
2504
|
+
geo?: {
|
|
2505
|
+
county?: {
|
|
2506
|
+
lat?: number;
|
|
2507
|
+
lon?: number;
|
|
2508
|
+
};
|
|
2509
|
+
defaultValue?: string;
|
|
2510
|
+
default?: {
|
|
2511
|
+
lat?: number;
|
|
2512
|
+
lon?: number;
|
|
2513
|
+
};
|
|
2514
|
+
project?: {
|
|
2515
|
+
lat?: number;
|
|
2516
|
+
lon?: number;
|
|
2517
|
+
};
|
|
2518
|
+
facility?: {
|
|
2519
|
+
lat?: number;
|
|
2520
|
+
lon?: number;
|
|
2521
|
+
};
|
|
2522
|
+
};
|
|
2523
|
+
audiences?: {
|
|
2524
|
+
identifier?: string;
|
|
2525
|
+
}[];
|
|
2526
|
+
totals?: Record<string, number>;
|
|
2527
|
+
allSectors?: string;
|
|
2528
|
+
$organizations?: string;
|
|
2529
|
+
isoRtoConnection?: {
|
|
2530
|
+
id?: string;
|
|
2531
|
+
identifier?: string;
|
|
2532
|
+
};
|
|
2533
|
+
actualOperationalDate?: string;
|
|
2534
|
+
applicationStatus?: string;
|
|
2535
|
+
indexed_at?: string;
|
|
2536
|
+
lastModified?: string;
|
|
2537
|
+
plannedOperationalDate?: string;
|
|
2538
|
+
projectName?: string;
|
|
2539
|
+
queueDatasetType?: string;
|
|
2540
|
+
queueDate?: string;
|
|
2541
|
+
regions?: {
|
|
2542
|
+
id?: string;
|
|
2543
|
+
identifier?: string;
|
|
2544
|
+
}[];
|
|
2545
|
+
reportDate?: string;
|
|
2546
|
+
withdrawnDate?: string;
|
|
2547
|
+
schema?: "us_queue";
|
|
2548
|
+
localCounty?: {
|
|
2549
|
+
id?: string;
|
|
2550
|
+
identifier?: string;
|
|
2551
|
+
}[];
|
|
2552
|
+
localState?: {
|
|
2553
|
+
id?: string;
|
|
2554
|
+
identifier?: string;
|
|
2555
|
+
}[];
|
|
2556
|
+
sourceUpdate?: string;
|
|
2557
|
+
totalMw?: number;
|
|
2558
|
+
'#developers'?: string[];
|
|
2559
|
+
'#keyPeople'?: string[];
|
|
2560
|
+
applicationTags?: {
|
|
2561
|
+
identifier?: string;
|
|
2562
|
+
}[];
|
|
2563
|
+
applicationType?: string;
|
|
2564
|
+
compositeQueue?: string;
|
|
2565
|
+
cost?: {
|
|
2566
|
+
costCompany?: string;
|
|
2567
|
+
costYear?: number;
|
|
2568
|
+
networkCostKW?: number;
|
|
2569
|
+
poiCostKW?: number;
|
|
2570
|
+
totalCostKW?: number;
|
|
2571
|
+
};
|
|
2572
|
+
dateAddedToNpm?: string;
|
|
2573
|
+
dateCreated?: string;
|
|
2574
|
+
interconnectingEntity?: string;
|
|
2575
|
+
kV?: number;
|
|
2576
|
+
nearestTownOrCounty?: string;
|
|
2577
|
+
poiLocation?: string;
|
|
2578
|
+
processInfo?: {
|
|
2579
|
+
sectors?: string;
|
|
2580
|
+
state?: string;
|
|
2581
|
+
county?: string;
|
|
2582
|
+
utility?: string;
|
|
2583
|
+
isoRtoConnection?: string;
|
|
2584
|
+
newRecord?: string;
|
|
2585
|
+
newToQ?: string;
|
|
2586
|
+
npmOrganizationProfile?: string;
|
|
2587
|
+
};
|
|
2588
|
+
reportCount?: number;
|
|
2589
|
+
tags?: {
|
|
2590
|
+
identifier?: string;
|
|
2591
|
+
}[];
|
|
2592
|
+
}, {
|
|
2593
|
+
sectors?: {
|
|
2594
|
+
id?: string;
|
|
2595
|
+
identifier?: string;
|
|
2596
|
+
}[];
|
|
2597
|
+
state?: {
|
|
2598
|
+
id?: string;
|
|
2599
|
+
identifier?: string;
|
|
2600
|
+
};
|
|
2601
|
+
county?: {
|
|
2602
|
+
id?: string;
|
|
2603
|
+
identifier?: string;
|
|
2604
|
+
};
|
|
2605
|
+
keyPeople?: {
|
|
2606
|
+
id?: string;
|
|
2607
|
+
linkedinUrl?: string;
|
|
2608
|
+
fullName?: string;
|
|
2609
|
+
email?: string;
|
|
2610
|
+
phone?: string;
|
|
2611
|
+
source?: string;
|
|
2612
|
+
created?: string;
|
|
2613
|
+
roles?: string[];
|
|
2614
|
+
}[];
|
|
2615
|
+
id?: string;
|
|
2616
|
+
queueKey?: string;
|
|
2617
|
+
applicationId?: string;
|
|
2618
|
+
queueDataset?: string;
|
|
2619
|
+
city?: {
|
|
2620
|
+
id?: string;
|
|
2621
|
+
identifier?: string;
|
|
2622
|
+
};
|
|
2623
|
+
country?: {
|
|
2624
|
+
id?: string;
|
|
2625
|
+
identifier?: string;
|
|
2626
|
+
}[];
|
|
2627
|
+
organizations?: {
|
|
2628
|
+
id?: string;
|
|
2629
|
+
identifier?: string;
|
|
2630
|
+
role?: string;
|
|
2631
|
+
ref?: string;
|
|
2632
|
+
}[];
|
|
2633
|
+
utility?: {
|
|
2634
|
+
id?: string;
|
|
2635
|
+
identifier?: string;
|
|
2636
|
+
};
|
|
2637
|
+
geo?: {
|
|
2638
|
+
county?: {
|
|
2639
|
+
lat?: number;
|
|
2640
|
+
lon?: number;
|
|
2641
|
+
};
|
|
2642
|
+
defaultValue?: string;
|
|
2643
|
+
default?: {
|
|
2644
|
+
lat?: number;
|
|
2645
|
+
lon?: number;
|
|
2646
|
+
};
|
|
2647
|
+
project?: {
|
|
2648
|
+
lat?: number;
|
|
2649
|
+
lon?: number;
|
|
2650
|
+
};
|
|
2651
|
+
facility?: {
|
|
2652
|
+
lat?: number;
|
|
2653
|
+
lon?: number;
|
|
2654
|
+
};
|
|
2655
|
+
};
|
|
2656
|
+
audiences?: {
|
|
2657
|
+
identifier?: string;
|
|
2658
|
+
}[];
|
|
2659
|
+
totals?: Record<string, number>;
|
|
2660
|
+
allSectors?: string;
|
|
2661
|
+
$organizations?: string;
|
|
2662
|
+
isoRtoConnection?: {
|
|
2663
|
+
id?: string;
|
|
2664
|
+
identifier?: string;
|
|
2665
|
+
};
|
|
2666
|
+
actualOperationalDate?: string;
|
|
2667
|
+
applicationStatus?: string;
|
|
2668
|
+
indexed_at?: string;
|
|
2669
|
+
lastModified?: string;
|
|
2670
|
+
plannedOperationalDate?: string;
|
|
2671
|
+
projectName?: string;
|
|
2672
|
+
queueDatasetType?: string;
|
|
2673
|
+
queueDate?: string;
|
|
2674
|
+
regions?: {
|
|
2675
|
+
id?: string;
|
|
2676
|
+
identifier?: string;
|
|
2677
|
+
}[];
|
|
2678
|
+
reportDate?: string;
|
|
2679
|
+
withdrawnDate?: string;
|
|
2680
|
+
schema?: "us_queue";
|
|
2681
|
+
localCounty?: {
|
|
2682
|
+
id?: string;
|
|
2683
|
+
identifier?: string;
|
|
2684
|
+
}[];
|
|
2685
|
+
localState?: {
|
|
2686
|
+
id?: string;
|
|
2687
|
+
identifier?: string;
|
|
2688
|
+
}[];
|
|
2689
|
+
sourceUpdate?: string;
|
|
2690
|
+
totalMw?: number;
|
|
2691
|
+
'#developers'?: string[];
|
|
2692
|
+
'#keyPeople'?: string[];
|
|
2693
|
+
applicationTags?: {
|
|
2694
|
+
identifier?: string;
|
|
2695
|
+
}[];
|
|
2696
|
+
applicationType?: string;
|
|
2697
|
+
compositeQueue?: string;
|
|
2698
|
+
cost?: {
|
|
2699
|
+
costCompany?: string;
|
|
2700
|
+
costYear?: number;
|
|
2701
|
+
networkCostKW?: number;
|
|
2702
|
+
poiCostKW?: number;
|
|
2703
|
+
totalCostKW?: number;
|
|
2704
|
+
};
|
|
2705
|
+
dateAddedToNpm?: string;
|
|
2706
|
+
dateCreated?: string;
|
|
2707
|
+
interconnectingEntity?: string;
|
|
2708
|
+
kV?: number;
|
|
2709
|
+
nearestTownOrCounty?: string;
|
|
2710
|
+
poiLocation?: string;
|
|
2711
|
+
processInfo?: {
|
|
2712
|
+
sectors?: string;
|
|
2713
|
+
state?: string;
|
|
2714
|
+
county?: string;
|
|
2715
|
+
utility?: string;
|
|
2716
|
+
isoRtoConnection?: string;
|
|
2717
|
+
newRecord?: string;
|
|
2718
|
+
newToQ?: string;
|
|
2719
|
+
npmOrganizationProfile?: string;
|
|
2720
|
+
};
|
|
2721
|
+
reportCount?: number;
|
|
2722
|
+
tags?: {
|
|
2723
|
+
identifier?: string;
|
|
2724
|
+
}[];
|
|
2725
|
+
}>]>;
|
|
1629
2726
|
export type QueueType = z.infer<typeof QueueSchema>;
|
|
2727
|
+
export type QueueUnionType = z.infer<typeof QueueUnionSchema>;
|