@new-project-media/client-frontends-shared-types 2.0.22 → 2.0.24
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.
|
@@ -121,8 +121,11 @@ declare const euQueueListSchema: z.ZodObject<{
|
|
|
121
121
|
projectName: z.ZodOptional<z.ZodString>;
|
|
122
122
|
queueDataset: z.ZodOptional<z.ZodString>;
|
|
123
123
|
queueDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
124
|
+
reportDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
125
|
+
sourceUpdate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
124
126
|
status: z.ZodOptional<z.ZodString>;
|
|
125
127
|
totalMw: z.ZodOptional<z.ZodNumber>;
|
|
128
|
+
totals: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
126
129
|
}, "strict", z.ZodTypeAny, {
|
|
127
130
|
id?: string;
|
|
128
131
|
status?: string;
|
|
@@ -155,6 +158,8 @@ declare const euQueueListSchema: z.ZodObject<{
|
|
|
155
158
|
lon?: number;
|
|
156
159
|
};
|
|
157
160
|
};
|
|
161
|
+
totals?: Record<string, number>;
|
|
162
|
+
reportDate?: string;
|
|
158
163
|
queueDate?: string;
|
|
159
164
|
schema?: "eu_queue";
|
|
160
165
|
actualOperationalDate?: string;
|
|
@@ -163,6 +168,7 @@ declare const euQueueListSchema: z.ZodObject<{
|
|
|
163
168
|
localState?: string;
|
|
164
169
|
plannedOperationalDate?: string;
|
|
165
170
|
projectName?: string;
|
|
171
|
+
sourceUpdate?: string;
|
|
166
172
|
totalMw?: number;
|
|
167
173
|
}, {
|
|
168
174
|
id?: string;
|
|
@@ -196,6 +202,8 @@ declare const euQueueListSchema: z.ZodObject<{
|
|
|
196
202
|
lon?: number;
|
|
197
203
|
};
|
|
198
204
|
};
|
|
205
|
+
totals?: Record<string, number>;
|
|
206
|
+
reportDate?: string;
|
|
199
207
|
queueDate?: string;
|
|
200
208
|
schema?: "eu_queue";
|
|
201
209
|
actualOperationalDate?: string;
|
|
@@ -204,6 +212,7 @@ declare const euQueueListSchema: z.ZodObject<{
|
|
|
204
212
|
localState?: string;
|
|
205
213
|
plannedOperationalDate?: string;
|
|
206
214
|
projectName?: string;
|
|
215
|
+
sourceUpdate?: string;
|
|
207
216
|
totalMw?: number;
|
|
208
217
|
}>;
|
|
209
218
|
declare const usQueueListSchema: z.ZodObject<{
|
|
@@ -222,6 +231,25 @@ declare const usQueueListSchema: z.ZodObject<{
|
|
|
222
231
|
}, {
|
|
223
232
|
identifier?: string;
|
|
224
233
|
}>, "many">>;
|
|
234
|
+
cost: z.ZodOptional<z.ZodObject<{
|
|
235
|
+
costCompany: z.ZodString;
|
|
236
|
+
costYear: z.ZodNumber;
|
|
237
|
+
networkCostKW: z.ZodNumber;
|
|
238
|
+
poiCostKW: z.ZodNumber;
|
|
239
|
+
totalCostKW: z.ZodNumber;
|
|
240
|
+
}, "strip", z.ZodTypeAny, {
|
|
241
|
+
costCompany?: string;
|
|
242
|
+
costYear?: number;
|
|
243
|
+
networkCostKW?: number;
|
|
244
|
+
poiCostKW?: number;
|
|
245
|
+
totalCostKW?: number;
|
|
246
|
+
}, {
|
|
247
|
+
costCompany?: string;
|
|
248
|
+
costYear?: number;
|
|
249
|
+
networkCostKW?: number;
|
|
250
|
+
poiCostKW?: number;
|
|
251
|
+
totalCostKW?: number;
|
|
252
|
+
}>>;
|
|
225
253
|
country: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
226
254
|
identifier: z.ZodString;
|
|
227
255
|
id: z.ZodString;
|
|
@@ -355,7 +383,12 @@ declare const usQueueListSchema: z.ZodObject<{
|
|
|
355
383
|
projectName: z.ZodOptional<z.ZodString>;
|
|
356
384
|
queueDataset: z.ZodOptional<z.ZodString>;
|
|
357
385
|
queueDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
386
|
+
reportCount: z.ZodOptional<z.ZodNumber>;
|
|
387
|
+
reportDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
388
|
+
sourceUpdate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
358
389
|
totalMw: z.ZodOptional<z.ZodNumber>;
|
|
390
|
+
totals: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
391
|
+
withdrawnDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
359
392
|
}, "strict", z.ZodTypeAny, {
|
|
360
393
|
id?: string;
|
|
361
394
|
country?: {
|
|
@@ -390,6 +423,8 @@ declare const usQueueListSchema: z.ZodObject<{
|
|
|
390
423
|
lon?: number;
|
|
391
424
|
};
|
|
392
425
|
};
|
|
426
|
+
totals?: Record<string, number>;
|
|
427
|
+
reportDate?: string;
|
|
393
428
|
applicationTags?: {
|
|
394
429
|
identifier?: string;
|
|
395
430
|
}[];
|
|
@@ -407,10 +442,20 @@ declare const usQueueListSchema: z.ZodObject<{
|
|
|
407
442
|
}[];
|
|
408
443
|
plannedOperationalDate?: string;
|
|
409
444
|
projectName?: string;
|
|
445
|
+
sourceUpdate?: string;
|
|
410
446
|
totalMw?: number;
|
|
411
447
|
applicationStatus?: string;
|
|
448
|
+
cost?: {
|
|
449
|
+
costCompany?: string;
|
|
450
|
+
costYear?: number;
|
|
451
|
+
networkCostKW?: number;
|
|
452
|
+
poiCostKW?: number;
|
|
453
|
+
totalCostKW?: number;
|
|
454
|
+
};
|
|
412
455
|
interconnectingEntity?: string;
|
|
413
456
|
poiLocation?: string | number;
|
|
457
|
+
reportCount?: number;
|
|
458
|
+
withdrawnDate?: string;
|
|
414
459
|
}, {
|
|
415
460
|
id?: string;
|
|
416
461
|
country?: {
|
|
@@ -445,6 +490,8 @@ declare const usQueueListSchema: z.ZodObject<{
|
|
|
445
490
|
lon?: number;
|
|
446
491
|
};
|
|
447
492
|
};
|
|
493
|
+
totals?: Record<string, number>;
|
|
494
|
+
reportDate?: string;
|
|
448
495
|
applicationTags?: {
|
|
449
496
|
identifier?: string;
|
|
450
497
|
}[];
|
|
@@ -462,10 +509,20 @@ declare const usQueueListSchema: z.ZodObject<{
|
|
|
462
509
|
}[];
|
|
463
510
|
plannedOperationalDate?: string;
|
|
464
511
|
projectName?: string;
|
|
512
|
+
sourceUpdate?: string;
|
|
465
513
|
totalMw?: number;
|
|
466
514
|
applicationStatus?: string;
|
|
515
|
+
cost?: {
|
|
516
|
+
costCompany?: string;
|
|
517
|
+
costYear?: number;
|
|
518
|
+
networkCostKW?: number;
|
|
519
|
+
poiCostKW?: number;
|
|
520
|
+
totalCostKW?: number;
|
|
521
|
+
};
|
|
467
522
|
interconnectingEntity?: string;
|
|
468
523
|
poiLocation?: string | number;
|
|
524
|
+
reportCount?: number;
|
|
525
|
+
withdrawnDate?: string;
|
|
469
526
|
}>;
|
|
470
527
|
declare const euQueueDetailsSchema: z.ZodObject<{
|
|
471
528
|
id: z.ZodString;
|
|
@@ -543,12 +600,12 @@ declare const euQueueDetailsSchema: z.ZodObject<{
|
|
|
543
600
|
localCounty?: string;
|
|
544
601
|
localState?: string;
|
|
545
602
|
projectName?: string;
|
|
603
|
+
sourceUpdate?: string;
|
|
546
604
|
totalMw?: number;
|
|
547
605
|
applicationStatus?: string;
|
|
548
606
|
localTown?: string;
|
|
549
607
|
mwNet?: number;
|
|
550
608
|
refId?: string;
|
|
551
|
-
sourceUpdate?: string;
|
|
552
609
|
storageCapacity?: number;
|
|
553
610
|
technology?: string;
|
|
554
611
|
windFarmName?: string;
|
|
@@ -576,12 +633,12 @@ declare const euQueueDetailsSchema: z.ZodObject<{
|
|
|
576
633
|
localCounty?: string;
|
|
577
634
|
localState?: string;
|
|
578
635
|
projectName?: string;
|
|
636
|
+
sourceUpdate?: string;
|
|
579
637
|
totalMw?: number;
|
|
580
638
|
applicationStatus?: string;
|
|
581
639
|
localTown?: string;
|
|
582
640
|
mwNet?: number;
|
|
583
641
|
refId?: string;
|
|
584
|
-
sourceUpdate?: string;
|
|
585
642
|
storageCapacity?: number;
|
|
586
643
|
technology?: string;
|
|
587
644
|
windFarmName?: string;
|
|
@@ -1070,12 +1127,9 @@ declare const usQueueDetailsSchema: z.ZodObject<{
|
|
|
1070
1127
|
}[];
|
|
1071
1128
|
plannedOperationalDate?: string;
|
|
1072
1129
|
projectName?: string;
|
|
1130
|
+
sourceUpdate?: string;
|
|
1073
1131
|
totalMw?: number;
|
|
1074
1132
|
applicationStatus?: string;
|
|
1075
|
-
interconnectingEntity?: string;
|
|
1076
|
-
poiLocation?: string | number;
|
|
1077
|
-
sourceUpdate?: string;
|
|
1078
|
-
applicationType?: string;
|
|
1079
1133
|
cost?: {
|
|
1080
1134
|
costCompany?: string;
|
|
1081
1135
|
costYear?: number;
|
|
@@ -1083,6 +1137,11 @@ declare const usQueueDetailsSchema: z.ZodObject<{
|
|
|
1083
1137
|
poiCostKW?: number;
|
|
1084
1138
|
totalCostKW?: number;
|
|
1085
1139
|
};
|
|
1140
|
+
interconnectingEntity?: string;
|
|
1141
|
+
poiLocation?: string | number;
|
|
1142
|
+
reportCount?: number;
|
|
1143
|
+
withdrawnDate?: string;
|
|
1144
|
+
applicationType?: string;
|
|
1086
1145
|
dateCreated?: string;
|
|
1087
1146
|
events?: {
|
|
1088
1147
|
id?: string;
|
|
@@ -1151,7 +1210,6 @@ declare const usQueueDetailsSchema: z.ZodObject<{
|
|
|
1151
1210
|
meta?: string;
|
|
1152
1211
|
poiGroup?: string;
|
|
1153
1212
|
};
|
|
1154
|
-
reportCount?: number;
|
|
1155
1213
|
signals?: {
|
|
1156
1214
|
type?: string;
|
|
1157
1215
|
subType?: string;
|
|
@@ -1160,7 +1218,6 @@ declare const usQueueDetailsSchema: z.ZodObject<{
|
|
|
1160
1218
|
headline?: string;
|
|
1161
1219
|
publishedDate?: string;
|
|
1162
1220
|
}[];
|
|
1163
|
-
withdrawnDate?: string;
|
|
1164
1221
|
}, {
|
|
1165
1222
|
sectors?: {
|
|
1166
1223
|
id?: string;
|
|
@@ -1217,12 +1274,9 @@ declare const usQueueDetailsSchema: z.ZodObject<{
|
|
|
1217
1274
|
}[];
|
|
1218
1275
|
plannedOperationalDate?: string;
|
|
1219
1276
|
projectName?: string;
|
|
1277
|
+
sourceUpdate?: string;
|
|
1220
1278
|
totalMw?: number;
|
|
1221
1279
|
applicationStatus?: string;
|
|
1222
|
-
interconnectingEntity?: string;
|
|
1223
|
-
poiLocation?: string | number;
|
|
1224
|
-
sourceUpdate?: string;
|
|
1225
|
-
applicationType?: string;
|
|
1226
1280
|
cost?: {
|
|
1227
1281
|
costCompany?: string;
|
|
1228
1282
|
costYear?: number;
|
|
@@ -1230,6 +1284,11 @@ declare const usQueueDetailsSchema: z.ZodObject<{
|
|
|
1230
1284
|
poiCostKW?: number;
|
|
1231
1285
|
totalCostKW?: number;
|
|
1232
1286
|
};
|
|
1287
|
+
interconnectingEntity?: string;
|
|
1288
|
+
poiLocation?: string | number;
|
|
1289
|
+
reportCount?: number;
|
|
1290
|
+
withdrawnDate?: string;
|
|
1291
|
+
applicationType?: string;
|
|
1233
1292
|
dateCreated?: string;
|
|
1234
1293
|
events?: {
|
|
1235
1294
|
id?: string;
|
|
@@ -1298,7 +1357,6 @@ declare const usQueueDetailsSchema: z.ZodObject<{
|
|
|
1298
1357
|
meta?: string;
|
|
1299
1358
|
poiGroup?: string;
|
|
1300
1359
|
};
|
|
1301
|
-
reportCount?: number;
|
|
1302
1360
|
signals?: {
|
|
1303
1361
|
type?: string;
|
|
1304
1362
|
subType?: string;
|
|
@@ -1307,7 +1365,6 @@ declare const usQueueDetailsSchema: z.ZodObject<{
|
|
|
1307
1365
|
headline?: string;
|
|
1308
1366
|
publishedDate?: string;
|
|
1309
1367
|
}[];
|
|
1310
|
-
withdrawnDate?: string;
|
|
1311
1368
|
}>;
|
|
1312
1369
|
declare const queueDetailsSchema: z.ZodUnion<[z.ZodObject<{
|
|
1313
1370
|
id: z.ZodString;
|
|
@@ -1385,12 +1442,12 @@ declare const queueDetailsSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1385
1442
|
localCounty?: string;
|
|
1386
1443
|
localState?: string;
|
|
1387
1444
|
projectName?: string;
|
|
1445
|
+
sourceUpdate?: string;
|
|
1388
1446
|
totalMw?: number;
|
|
1389
1447
|
applicationStatus?: string;
|
|
1390
1448
|
localTown?: string;
|
|
1391
1449
|
mwNet?: number;
|
|
1392
1450
|
refId?: string;
|
|
1393
|
-
sourceUpdate?: string;
|
|
1394
1451
|
storageCapacity?: number;
|
|
1395
1452
|
technology?: string;
|
|
1396
1453
|
windFarmName?: string;
|
|
@@ -1418,12 +1475,12 @@ declare const queueDetailsSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1418
1475
|
localCounty?: string;
|
|
1419
1476
|
localState?: string;
|
|
1420
1477
|
projectName?: string;
|
|
1478
|
+
sourceUpdate?: string;
|
|
1421
1479
|
totalMw?: number;
|
|
1422
1480
|
applicationStatus?: string;
|
|
1423
1481
|
localTown?: string;
|
|
1424
1482
|
mwNet?: number;
|
|
1425
1483
|
refId?: string;
|
|
1426
|
-
sourceUpdate?: string;
|
|
1427
1484
|
storageCapacity?: number;
|
|
1428
1485
|
technology?: string;
|
|
1429
1486
|
windFarmName?: string;
|
|
@@ -1911,12 +1968,9 @@ declare const queueDetailsSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1911
1968
|
}[];
|
|
1912
1969
|
plannedOperationalDate?: string;
|
|
1913
1970
|
projectName?: string;
|
|
1971
|
+
sourceUpdate?: string;
|
|
1914
1972
|
totalMw?: number;
|
|
1915
1973
|
applicationStatus?: string;
|
|
1916
|
-
interconnectingEntity?: string;
|
|
1917
|
-
poiLocation?: string | number;
|
|
1918
|
-
sourceUpdate?: string;
|
|
1919
|
-
applicationType?: string;
|
|
1920
1974
|
cost?: {
|
|
1921
1975
|
costCompany?: string;
|
|
1922
1976
|
costYear?: number;
|
|
@@ -1924,6 +1978,11 @@ declare const queueDetailsSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1924
1978
|
poiCostKW?: number;
|
|
1925
1979
|
totalCostKW?: number;
|
|
1926
1980
|
};
|
|
1981
|
+
interconnectingEntity?: string;
|
|
1982
|
+
poiLocation?: string | number;
|
|
1983
|
+
reportCount?: number;
|
|
1984
|
+
withdrawnDate?: string;
|
|
1985
|
+
applicationType?: string;
|
|
1927
1986
|
dateCreated?: string;
|
|
1928
1987
|
events?: {
|
|
1929
1988
|
id?: string;
|
|
@@ -1992,7 +2051,6 @@ declare const queueDetailsSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1992
2051
|
meta?: string;
|
|
1993
2052
|
poiGroup?: string;
|
|
1994
2053
|
};
|
|
1995
|
-
reportCount?: number;
|
|
1996
2054
|
signals?: {
|
|
1997
2055
|
type?: string;
|
|
1998
2056
|
subType?: string;
|
|
@@ -2001,7 +2059,6 @@ declare const queueDetailsSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2001
2059
|
headline?: string;
|
|
2002
2060
|
publishedDate?: string;
|
|
2003
2061
|
}[];
|
|
2004
|
-
withdrawnDate?: string;
|
|
2005
2062
|
}, {
|
|
2006
2063
|
sectors?: {
|
|
2007
2064
|
id?: string;
|
|
@@ -2058,12 +2115,9 @@ declare const queueDetailsSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2058
2115
|
}[];
|
|
2059
2116
|
plannedOperationalDate?: string;
|
|
2060
2117
|
projectName?: string;
|
|
2118
|
+
sourceUpdate?: string;
|
|
2061
2119
|
totalMw?: number;
|
|
2062
2120
|
applicationStatus?: string;
|
|
2063
|
-
interconnectingEntity?: string;
|
|
2064
|
-
poiLocation?: string | number;
|
|
2065
|
-
sourceUpdate?: string;
|
|
2066
|
-
applicationType?: string;
|
|
2067
2121
|
cost?: {
|
|
2068
2122
|
costCompany?: string;
|
|
2069
2123
|
costYear?: number;
|
|
@@ -2071,6 +2125,11 @@ declare const queueDetailsSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2071
2125
|
poiCostKW?: number;
|
|
2072
2126
|
totalCostKW?: number;
|
|
2073
2127
|
};
|
|
2128
|
+
interconnectingEntity?: string;
|
|
2129
|
+
poiLocation?: string | number;
|
|
2130
|
+
reportCount?: number;
|
|
2131
|
+
withdrawnDate?: string;
|
|
2132
|
+
applicationType?: string;
|
|
2074
2133
|
dateCreated?: string;
|
|
2075
2134
|
events?: {
|
|
2076
2135
|
id?: string;
|
|
@@ -2139,7 +2198,6 @@ declare const queueDetailsSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2139
2198
|
meta?: string;
|
|
2140
2199
|
poiGroup?: string;
|
|
2141
2200
|
};
|
|
2142
|
-
reportCount?: number;
|
|
2143
2201
|
signals?: {
|
|
2144
2202
|
type?: string;
|
|
2145
2203
|
subType?: string;
|
|
@@ -2148,7 +2206,6 @@ declare const queueDetailsSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2148
2206
|
headline?: string;
|
|
2149
2207
|
publishedDate?: string;
|
|
2150
2208
|
}[];
|
|
2151
|
-
withdrawnDate?: string;
|
|
2152
2209
|
}>]>;
|
|
2153
2210
|
export declare const queueDetailsUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.ZodObject<{
|
|
2154
2211
|
id: z.ZodString;
|
|
@@ -2226,12 +2283,12 @@ export declare const queueDetailsUnionSchema: z.ZodDiscriminatedUnion<"schema",
|
|
|
2226
2283
|
localCounty?: string;
|
|
2227
2284
|
localState?: string;
|
|
2228
2285
|
projectName?: string;
|
|
2286
|
+
sourceUpdate?: string;
|
|
2229
2287
|
totalMw?: number;
|
|
2230
2288
|
applicationStatus?: string;
|
|
2231
2289
|
localTown?: string;
|
|
2232
2290
|
mwNet?: number;
|
|
2233
2291
|
refId?: string;
|
|
2234
|
-
sourceUpdate?: string;
|
|
2235
2292
|
storageCapacity?: number;
|
|
2236
2293
|
technology?: string;
|
|
2237
2294
|
windFarmName?: string;
|
|
@@ -2259,12 +2316,12 @@ export declare const queueDetailsUnionSchema: z.ZodDiscriminatedUnion<"schema",
|
|
|
2259
2316
|
localCounty?: string;
|
|
2260
2317
|
localState?: string;
|
|
2261
2318
|
projectName?: string;
|
|
2319
|
+
sourceUpdate?: string;
|
|
2262
2320
|
totalMw?: number;
|
|
2263
2321
|
applicationStatus?: string;
|
|
2264
2322
|
localTown?: string;
|
|
2265
2323
|
mwNet?: number;
|
|
2266
2324
|
refId?: string;
|
|
2267
|
-
sourceUpdate?: string;
|
|
2268
2325
|
storageCapacity?: number;
|
|
2269
2326
|
technology?: string;
|
|
2270
2327
|
windFarmName?: string;
|
|
@@ -2752,12 +2809,9 @@ export declare const queueDetailsUnionSchema: z.ZodDiscriminatedUnion<"schema",
|
|
|
2752
2809
|
}[];
|
|
2753
2810
|
plannedOperationalDate?: string;
|
|
2754
2811
|
projectName?: string;
|
|
2812
|
+
sourceUpdate?: string;
|
|
2755
2813
|
totalMw?: number;
|
|
2756
2814
|
applicationStatus?: string;
|
|
2757
|
-
interconnectingEntity?: string;
|
|
2758
|
-
poiLocation?: string | number;
|
|
2759
|
-
sourceUpdate?: string;
|
|
2760
|
-
applicationType?: string;
|
|
2761
2815
|
cost?: {
|
|
2762
2816
|
costCompany?: string;
|
|
2763
2817
|
costYear?: number;
|
|
@@ -2765,6 +2819,11 @@ export declare const queueDetailsUnionSchema: z.ZodDiscriminatedUnion<"schema",
|
|
|
2765
2819
|
poiCostKW?: number;
|
|
2766
2820
|
totalCostKW?: number;
|
|
2767
2821
|
};
|
|
2822
|
+
interconnectingEntity?: string;
|
|
2823
|
+
poiLocation?: string | number;
|
|
2824
|
+
reportCount?: number;
|
|
2825
|
+
withdrawnDate?: string;
|
|
2826
|
+
applicationType?: string;
|
|
2768
2827
|
dateCreated?: string;
|
|
2769
2828
|
events?: {
|
|
2770
2829
|
id?: string;
|
|
@@ -2833,7 +2892,6 @@ export declare const queueDetailsUnionSchema: z.ZodDiscriminatedUnion<"schema",
|
|
|
2833
2892
|
meta?: string;
|
|
2834
2893
|
poiGroup?: string;
|
|
2835
2894
|
};
|
|
2836
|
-
reportCount?: number;
|
|
2837
2895
|
signals?: {
|
|
2838
2896
|
type?: string;
|
|
2839
2897
|
subType?: string;
|
|
@@ -2842,7 +2900,6 @@ export declare const queueDetailsUnionSchema: z.ZodDiscriminatedUnion<"schema",
|
|
|
2842
2900
|
headline?: string;
|
|
2843
2901
|
publishedDate?: string;
|
|
2844
2902
|
}[];
|
|
2845
|
-
withdrawnDate?: string;
|
|
2846
2903
|
}, {
|
|
2847
2904
|
sectors?: {
|
|
2848
2905
|
id?: string;
|
|
@@ -2899,12 +2956,9 @@ export declare const queueDetailsUnionSchema: z.ZodDiscriminatedUnion<"schema",
|
|
|
2899
2956
|
}[];
|
|
2900
2957
|
plannedOperationalDate?: string;
|
|
2901
2958
|
projectName?: string;
|
|
2959
|
+
sourceUpdate?: string;
|
|
2902
2960
|
totalMw?: number;
|
|
2903
2961
|
applicationStatus?: string;
|
|
2904
|
-
interconnectingEntity?: string;
|
|
2905
|
-
poiLocation?: string | number;
|
|
2906
|
-
sourceUpdate?: string;
|
|
2907
|
-
applicationType?: string;
|
|
2908
2962
|
cost?: {
|
|
2909
2963
|
costCompany?: string;
|
|
2910
2964
|
costYear?: number;
|
|
@@ -2912,6 +2966,11 @@ export declare const queueDetailsUnionSchema: z.ZodDiscriminatedUnion<"schema",
|
|
|
2912
2966
|
poiCostKW?: number;
|
|
2913
2967
|
totalCostKW?: number;
|
|
2914
2968
|
};
|
|
2969
|
+
interconnectingEntity?: string;
|
|
2970
|
+
poiLocation?: string | number;
|
|
2971
|
+
reportCount?: number;
|
|
2972
|
+
withdrawnDate?: string;
|
|
2973
|
+
applicationType?: string;
|
|
2915
2974
|
dateCreated?: string;
|
|
2916
2975
|
events?: {
|
|
2917
2976
|
id?: string;
|
|
@@ -2980,7 +3039,6 @@ export declare const queueDetailsUnionSchema: z.ZodDiscriminatedUnion<"schema",
|
|
|
2980
3039
|
meta?: string;
|
|
2981
3040
|
poiGroup?: string;
|
|
2982
3041
|
};
|
|
2983
|
-
reportCount?: number;
|
|
2984
3042
|
signals?: {
|
|
2985
3043
|
type?: string;
|
|
2986
3044
|
subType?: string;
|
|
@@ -2989,7 +3047,6 @@ export declare const queueDetailsUnionSchema: z.ZodDiscriminatedUnion<"schema",
|
|
|
2989
3047
|
headline?: string;
|
|
2990
3048
|
publishedDate?: string;
|
|
2991
3049
|
}[];
|
|
2992
|
-
withdrawnDate?: string;
|
|
2993
3050
|
}>]>;
|
|
2994
3051
|
export { baseQueueSchema, euQueueDetailsSchema, usQueueDetailsSchema, euQueueListSchema, usQueueListSchema, };
|
|
2995
3052
|
export type QueueDetailsType = z.infer<typeof queueDetailsSchema>;
|
|
@@ -3108,8 +3165,11 @@ declare const euQueueListWithSortSchema: z.ZodObject<{
|
|
|
3108
3165
|
projectName: z.ZodOptional<z.ZodString>;
|
|
3109
3166
|
queueDataset: z.ZodOptional<z.ZodString>;
|
|
3110
3167
|
queueDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
3168
|
+
reportDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
3169
|
+
sourceUpdate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
3111
3170
|
status: z.ZodOptional<z.ZodString>;
|
|
3112
3171
|
totalMw: z.ZodOptional<z.ZodNumber>;
|
|
3172
|
+
totals: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
3113
3173
|
} & {
|
|
3114
3174
|
sort: z.ZodTuple<[z.ZodUnion<[z.ZodNumber, z.ZodString]>, z.ZodNumber], null>;
|
|
3115
3175
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -3145,6 +3205,8 @@ declare const euQueueListWithSortSchema: z.ZodObject<{
|
|
|
3145
3205
|
lon?: number;
|
|
3146
3206
|
};
|
|
3147
3207
|
};
|
|
3208
|
+
totals?: Record<string, number>;
|
|
3209
|
+
reportDate?: string;
|
|
3148
3210
|
queueDate?: string;
|
|
3149
3211
|
schema?: "eu_queue";
|
|
3150
3212
|
actualOperationalDate?: string;
|
|
@@ -3153,6 +3215,7 @@ declare const euQueueListWithSortSchema: z.ZodObject<{
|
|
|
3153
3215
|
localState?: string;
|
|
3154
3216
|
plannedOperationalDate?: string;
|
|
3155
3217
|
projectName?: string;
|
|
3218
|
+
sourceUpdate?: string;
|
|
3156
3219
|
totalMw?: number;
|
|
3157
3220
|
}, {
|
|
3158
3221
|
id?: string;
|
|
@@ -3187,6 +3250,8 @@ declare const euQueueListWithSortSchema: z.ZodObject<{
|
|
|
3187
3250
|
lon?: number;
|
|
3188
3251
|
};
|
|
3189
3252
|
};
|
|
3253
|
+
totals?: Record<string, number>;
|
|
3254
|
+
reportDate?: string;
|
|
3190
3255
|
queueDate?: string;
|
|
3191
3256
|
schema?: "eu_queue";
|
|
3192
3257
|
actualOperationalDate?: string;
|
|
@@ -3195,6 +3260,7 @@ declare const euQueueListWithSortSchema: z.ZodObject<{
|
|
|
3195
3260
|
localState?: string;
|
|
3196
3261
|
plannedOperationalDate?: string;
|
|
3197
3262
|
projectName?: string;
|
|
3263
|
+
sourceUpdate?: string;
|
|
3198
3264
|
totalMw?: number;
|
|
3199
3265
|
}>;
|
|
3200
3266
|
declare const usQueueListWithSortSchema: z.ZodObject<{
|
|
@@ -3213,6 +3279,25 @@ declare const usQueueListWithSortSchema: z.ZodObject<{
|
|
|
3213
3279
|
}, {
|
|
3214
3280
|
identifier?: string;
|
|
3215
3281
|
}>, "many">>;
|
|
3282
|
+
cost: z.ZodOptional<z.ZodObject<{
|
|
3283
|
+
costCompany: z.ZodString;
|
|
3284
|
+
costYear: z.ZodNumber;
|
|
3285
|
+
networkCostKW: z.ZodNumber;
|
|
3286
|
+
poiCostKW: z.ZodNumber;
|
|
3287
|
+
totalCostKW: z.ZodNumber;
|
|
3288
|
+
}, "strip", z.ZodTypeAny, {
|
|
3289
|
+
costCompany?: string;
|
|
3290
|
+
costYear?: number;
|
|
3291
|
+
networkCostKW?: number;
|
|
3292
|
+
poiCostKW?: number;
|
|
3293
|
+
totalCostKW?: number;
|
|
3294
|
+
}, {
|
|
3295
|
+
costCompany?: string;
|
|
3296
|
+
costYear?: number;
|
|
3297
|
+
networkCostKW?: number;
|
|
3298
|
+
poiCostKW?: number;
|
|
3299
|
+
totalCostKW?: number;
|
|
3300
|
+
}>>;
|
|
3216
3301
|
country: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3217
3302
|
identifier: z.ZodString;
|
|
3218
3303
|
id: z.ZodString;
|
|
@@ -3346,7 +3431,12 @@ declare const usQueueListWithSortSchema: z.ZodObject<{
|
|
|
3346
3431
|
projectName: z.ZodOptional<z.ZodString>;
|
|
3347
3432
|
queueDataset: z.ZodOptional<z.ZodString>;
|
|
3348
3433
|
queueDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
3434
|
+
reportCount: z.ZodOptional<z.ZodNumber>;
|
|
3435
|
+
reportDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
3436
|
+
sourceUpdate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
3349
3437
|
totalMw: z.ZodOptional<z.ZodNumber>;
|
|
3438
|
+
totals: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
3439
|
+
withdrawnDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
3350
3440
|
} & {
|
|
3351
3441
|
sort: z.ZodTuple<[z.ZodUnion<[z.ZodNumber, z.ZodString]>, z.ZodNumber], null>;
|
|
3352
3442
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -3384,6 +3474,8 @@ declare const usQueueListWithSortSchema: z.ZodObject<{
|
|
|
3384
3474
|
lon?: number;
|
|
3385
3475
|
};
|
|
3386
3476
|
};
|
|
3477
|
+
totals?: Record<string, number>;
|
|
3478
|
+
reportDate?: string;
|
|
3387
3479
|
applicationTags?: {
|
|
3388
3480
|
identifier?: string;
|
|
3389
3481
|
}[];
|
|
@@ -3401,10 +3493,20 @@ declare const usQueueListWithSortSchema: z.ZodObject<{
|
|
|
3401
3493
|
}[];
|
|
3402
3494
|
plannedOperationalDate?: string;
|
|
3403
3495
|
projectName?: string;
|
|
3496
|
+
sourceUpdate?: string;
|
|
3404
3497
|
totalMw?: number;
|
|
3405
3498
|
applicationStatus?: string;
|
|
3499
|
+
cost?: {
|
|
3500
|
+
costCompany?: string;
|
|
3501
|
+
costYear?: number;
|
|
3502
|
+
networkCostKW?: number;
|
|
3503
|
+
poiCostKW?: number;
|
|
3504
|
+
totalCostKW?: number;
|
|
3505
|
+
};
|
|
3406
3506
|
interconnectingEntity?: string;
|
|
3407
3507
|
poiLocation?: string | number;
|
|
3508
|
+
reportCount?: number;
|
|
3509
|
+
withdrawnDate?: string;
|
|
3408
3510
|
}, {
|
|
3409
3511
|
id?: string;
|
|
3410
3512
|
sort?: [string | number, number, ...unknown[]];
|
|
@@ -3440,6 +3542,8 @@ declare const usQueueListWithSortSchema: z.ZodObject<{
|
|
|
3440
3542
|
lon?: number;
|
|
3441
3543
|
};
|
|
3442
3544
|
};
|
|
3545
|
+
totals?: Record<string, number>;
|
|
3546
|
+
reportDate?: string;
|
|
3443
3547
|
applicationTags?: {
|
|
3444
3548
|
identifier?: string;
|
|
3445
3549
|
}[];
|
|
@@ -3457,10 +3561,20 @@ declare const usQueueListWithSortSchema: z.ZodObject<{
|
|
|
3457
3561
|
}[];
|
|
3458
3562
|
plannedOperationalDate?: string;
|
|
3459
3563
|
projectName?: string;
|
|
3564
|
+
sourceUpdate?: string;
|
|
3460
3565
|
totalMw?: number;
|
|
3461
3566
|
applicationStatus?: string;
|
|
3567
|
+
cost?: {
|
|
3568
|
+
costCompany?: string;
|
|
3569
|
+
costYear?: number;
|
|
3570
|
+
networkCostKW?: number;
|
|
3571
|
+
poiCostKW?: number;
|
|
3572
|
+
totalCostKW?: number;
|
|
3573
|
+
};
|
|
3462
3574
|
interconnectingEntity?: string;
|
|
3463
3575
|
poiLocation?: string | number;
|
|
3576
|
+
reportCount?: number;
|
|
3577
|
+
withdrawnDate?: string;
|
|
3464
3578
|
}>;
|
|
3465
3579
|
declare const queueListSchema: z.ZodUnion<[z.ZodObject<{
|
|
3466
3580
|
id: z.ZodString;
|
|
@@ -3574,8 +3688,11 @@ declare const queueListSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3574
3688
|
projectName: z.ZodOptional<z.ZodString>;
|
|
3575
3689
|
queueDataset: z.ZodOptional<z.ZodString>;
|
|
3576
3690
|
queueDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
3691
|
+
reportDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
3692
|
+
sourceUpdate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
3577
3693
|
status: z.ZodOptional<z.ZodString>;
|
|
3578
3694
|
totalMw: z.ZodOptional<z.ZodNumber>;
|
|
3695
|
+
totals: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
3579
3696
|
} & {
|
|
3580
3697
|
sort: z.ZodTuple<[z.ZodUnion<[z.ZodNumber, z.ZodString]>, z.ZodNumber], null>;
|
|
3581
3698
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -3611,6 +3728,8 @@ declare const queueListSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3611
3728
|
lon?: number;
|
|
3612
3729
|
};
|
|
3613
3730
|
};
|
|
3731
|
+
totals?: Record<string, number>;
|
|
3732
|
+
reportDate?: string;
|
|
3614
3733
|
queueDate?: string;
|
|
3615
3734
|
schema?: "eu_queue";
|
|
3616
3735
|
actualOperationalDate?: string;
|
|
@@ -3619,6 +3738,7 @@ declare const queueListSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3619
3738
|
localState?: string;
|
|
3620
3739
|
plannedOperationalDate?: string;
|
|
3621
3740
|
projectName?: string;
|
|
3741
|
+
sourceUpdate?: string;
|
|
3622
3742
|
totalMw?: number;
|
|
3623
3743
|
}, {
|
|
3624
3744
|
id?: string;
|
|
@@ -3653,6 +3773,8 @@ declare const queueListSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3653
3773
|
lon?: number;
|
|
3654
3774
|
};
|
|
3655
3775
|
};
|
|
3776
|
+
totals?: Record<string, number>;
|
|
3777
|
+
reportDate?: string;
|
|
3656
3778
|
queueDate?: string;
|
|
3657
3779
|
schema?: "eu_queue";
|
|
3658
3780
|
actualOperationalDate?: string;
|
|
@@ -3661,6 +3783,7 @@ declare const queueListSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3661
3783
|
localState?: string;
|
|
3662
3784
|
plannedOperationalDate?: string;
|
|
3663
3785
|
projectName?: string;
|
|
3786
|
+
sourceUpdate?: string;
|
|
3664
3787
|
totalMw?: number;
|
|
3665
3788
|
}>, z.ZodObject<{
|
|
3666
3789
|
id: z.ZodString;
|
|
@@ -3678,6 +3801,25 @@ declare const queueListSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3678
3801
|
}, {
|
|
3679
3802
|
identifier?: string;
|
|
3680
3803
|
}>, "many">>;
|
|
3804
|
+
cost: z.ZodOptional<z.ZodObject<{
|
|
3805
|
+
costCompany: z.ZodString;
|
|
3806
|
+
costYear: z.ZodNumber;
|
|
3807
|
+
networkCostKW: z.ZodNumber;
|
|
3808
|
+
poiCostKW: z.ZodNumber;
|
|
3809
|
+
totalCostKW: z.ZodNumber;
|
|
3810
|
+
}, "strip", z.ZodTypeAny, {
|
|
3811
|
+
costCompany?: string;
|
|
3812
|
+
costYear?: number;
|
|
3813
|
+
networkCostKW?: number;
|
|
3814
|
+
poiCostKW?: number;
|
|
3815
|
+
totalCostKW?: number;
|
|
3816
|
+
}, {
|
|
3817
|
+
costCompany?: string;
|
|
3818
|
+
costYear?: number;
|
|
3819
|
+
networkCostKW?: number;
|
|
3820
|
+
poiCostKW?: number;
|
|
3821
|
+
totalCostKW?: number;
|
|
3822
|
+
}>>;
|
|
3681
3823
|
country: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3682
3824
|
identifier: z.ZodString;
|
|
3683
3825
|
id: z.ZodString;
|
|
@@ -3811,7 +3953,12 @@ declare const queueListSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3811
3953
|
projectName: z.ZodOptional<z.ZodString>;
|
|
3812
3954
|
queueDataset: z.ZodOptional<z.ZodString>;
|
|
3813
3955
|
queueDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
3956
|
+
reportCount: z.ZodOptional<z.ZodNumber>;
|
|
3957
|
+
reportDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
3958
|
+
sourceUpdate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
3814
3959
|
totalMw: z.ZodOptional<z.ZodNumber>;
|
|
3960
|
+
totals: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
3961
|
+
withdrawnDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
3815
3962
|
} & {
|
|
3816
3963
|
sort: z.ZodTuple<[z.ZodUnion<[z.ZodNumber, z.ZodString]>, z.ZodNumber], null>;
|
|
3817
3964
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -3849,6 +3996,8 @@ declare const queueListSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3849
3996
|
lon?: number;
|
|
3850
3997
|
};
|
|
3851
3998
|
};
|
|
3999
|
+
totals?: Record<string, number>;
|
|
4000
|
+
reportDate?: string;
|
|
3852
4001
|
applicationTags?: {
|
|
3853
4002
|
identifier?: string;
|
|
3854
4003
|
}[];
|
|
@@ -3866,10 +4015,20 @@ declare const queueListSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3866
4015
|
}[];
|
|
3867
4016
|
plannedOperationalDate?: string;
|
|
3868
4017
|
projectName?: string;
|
|
4018
|
+
sourceUpdate?: string;
|
|
3869
4019
|
totalMw?: number;
|
|
3870
4020
|
applicationStatus?: string;
|
|
4021
|
+
cost?: {
|
|
4022
|
+
costCompany?: string;
|
|
4023
|
+
costYear?: number;
|
|
4024
|
+
networkCostKW?: number;
|
|
4025
|
+
poiCostKW?: number;
|
|
4026
|
+
totalCostKW?: number;
|
|
4027
|
+
};
|
|
3871
4028
|
interconnectingEntity?: string;
|
|
3872
4029
|
poiLocation?: string | number;
|
|
4030
|
+
reportCount?: number;
|
|
4031
|
+
withdrawnDate?: string;
|
|
3873
4032
|
}, {
|
|
3874
4033
|
id?: string;
|
|
3875
4034
|
sort?: [string | number, number, ...unknown[]];
|
|
@@ -3905,6 +4064,8 @@ declare const queueListSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3905
4064
|
lon?: number;
|
|
3906
4065
|
};
|
|
3907
4066
|
};
|
|
4067
|
+
totals?: Record<string, number>;
|
|
4068
|
+
reportDate?: string;
|
|
3908
4069
|
applicationTags?: {
|
|
3909
4070
|
identifier?: string;
|
|
3910
4071
|
}[];
|
|
@@ -3922,10 +4083,20 @@ declare const queueListSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3922
4083
|
}[];
|
|
3923
4084
|
plannedOperationalDate?: string;
|
|
3924
4085
|
projectName?: string;
|
|
4086
|
+
sourceUpdate?: string;
|
|
3925
4087
|
totalMw?: number;
|
|
3926
4088
|
applicationStatus?: string;
|
|
4089
|
+
cost?: {
|
|
4090
|
+
costCompany?: string;
|
|
4091
|
+
costYear?: number;
|
|
4092
|
+
networkCostKW?: number;
|
|
4093
|
+
poiCostKW?: number;
|
|
4094
|
+
totalCostKW?: number;
|
|
4095
|
+
};
|
|
3927
4096
|
interconnectingEntity?: string;
|
|
3928
4097
|
poiLocation?: string | number;
|
|
4098
|
+
reportCount?: number;
|
|
4099
|
+
withdrawnDate?: string;
|
|
3929
4100
|
}>]>;
|
|
3930
4101
|
export declare const queueListUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.ZodObject<{
|
|
3931
4102
|
id: z.ZodString;
|
|
@@ -4039,8 +4210,11 @@ export declare const queueListUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.
|
|
|
4039
4210
|
projectName: z.ZodOptional<z.ZodString>;
|
|
4040
4211
|
queueDataset: z.ZodOptional<z.ZodString>;
|
|
4041
4212
|
queueDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
4213
|
+
reportDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
4214
|
+
sourceUpdate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
4042
4215
|
status: z.ZodOptional<z.ZodString>;
|
|
4043
4216
|
totalMw: z.ZodOptional<z.ZodNumber>;
|
|
4217
|
+
totals: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
4044
4218
|
} & {
|
|
4045
4219
|
sort: z.ZodTuple<[z.ZodUnion<[z.ZodNumber, z.ZodString]>, z.ZodNumber], null>;
|
|
4046
4220
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -4076,6 +4250,8 @@ export declare const queueListUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.
|
|
|
4076
4250
|
lon?: number;
|
|
4077
4251
|
};
|
|
4078
4252
|
};
|
|
4253
|
+
totals?: Record<string, number>;
|
|
4254
|
+
reportDate?: string;
|
|
4079
4255
|
queueDate?: string;
|
|
4080
4256
|
schema?: "eu_queue";
|
|
4081
4257
|
actualOperationalDate?: string;
|
|
@@ -4084,6 +4260,7 @@ export declare const queueListUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.
|
|
|
4084
4260
|
localState?: string;
|
|
4085
4261
|
plannedOperationalDate?: string;
|
|
4086
4262
|
projectName?: string;
|
|
4263
|
+
sourceUpdate?: string;
|
|
4087
4264
|
totalMw?: number;
|
|
4088
4265
|
}, {
|
|
4089
4266
|
id?: string;
|
|
@@ -4118,6 +4295,8 @@ export declare const queueListUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.
|
|
|
4118
4295
|
lon?: number;
|
|
4119
4296
|
};
|
|
4120
4297
|
};
|
|
4298
|
+
totals?: Record<string, number>;
|
|
4299
|
+
reportDate?: string;
|
|
4121
4300
|
queueDate?: string;
|
|
4122
4301
|
schema?: "eu_queue";
|
|
4123
4302
|
actualOperationalDate?: string;
|
|
@@ -4126,6 +4305,7 @@ export declare const queueListUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.
|
|
|
4126
4305
|
localState?: string;
|
|
4127
4306
|
plannedOperationalDate?: string;
|
|
4128
4307
|
projectName?: string;
|
|
4308
|
+
sourceUpdate?: string;
|
|
4129
4309
|
totalMw?: number;
|
|
4130
4310
|
}>, z.ZodObject<{
|
|
4131
4311
|
id: z.ZodString;
|
|
@@ -4143,6 +4323,25 @@ export declare const queueListUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.
|
|
|
4143
4323
|
}, {
|
|
4144
4324
|
identifier?: string;
|
|
4145
4325
|
}>, "many">>;
|
|
4326
|
+
cost: z.ZodOptional<z.ZodObject<{
|
|
4327
|
+
costCompany: z.ZodString;
|
|
4328
|
+
costYear: z.ZodNumber;
|
|
4329
|
+
networkCostKW: z.ZodNumber;
|
|
4330
|
+
poiCostKW: z.ZodNumber;
|
|
4331
|
+
totalCostKW: z.ZodNumber;
|
|
4332
|
+
}, "strip", z.ZodTypeAny, {
|
|
4333
|
+
costCompany?: string;
|
|
4334
|
+
costYear?: number;
|
|
4335
|
+
networkCostKW?: number;
|
|
4336
|
+
poiCostKW?: number;
|
|
4337
|
+
totalCostKW?: number;
|
|
4338
|
+
}, {
|
|
4339
|
+
costCompany?: string;
|
|
4340
|
+
costYear?: number;
|
|
4341
|
+
networkCostKW?: number;
|
|
4342
|
+
poiCostKW?: number;
|
|
4343
|
+
totalCostKW?: number;
|
|
4344
|
+
}>>;
|
|
4146
4345
|
country: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4147
4346
|
identifier: z.ZodString;
|
|
4148
4347
|
id: z.ZodString;
|
|
@@ -4276,7 +4475,12 @@ export declare const queueListUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.
|
|
|
4276
4475
|
projectName: z.ZodOptional<z.ZodString>;
|
|
4277
4476
|
queueDataset: z.ZodOptional<z.ZodString>;
|
|
4278
4477
|
queueDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
4478
|
+
reportCount: z.ZodOptional<z.ZodNumber>;
|
|
4479
|
+
reportDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
4480
|
+
sourceUpdate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
4279
4481
|
totalMw: z.ZodOptional<z.ZodNumber>;
|
|
4482
|
+
totals: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
4483
|
+
withdrawnDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
4280
4484
|
} & {
|
|
4281
4485
|
sort: z.ZodTuple<[z.ZodUnion<[z.ZodNumber, z.ZodString]>, z.ZodNumber], null>;
|
|
4282
4486
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -4314,6 +4518,8 @@ export declare const queueListUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.
|
|
|
4314
4518
|
lon?: number;
|
|
4315
4519
|
};
|
|
4316
4520
|
};
|
|
4521
|
+
totals?: Record<string, number>;
|
|
4522
|
+
reportDate?: string;
|
|
4317
4523
|
applicationTags?: {
|
|
4318
4524
|
identifier?: string;
|
|
4319
4525
|
}[];
|
|
@@ -4331,10 +4537,20 @@ export declare const queueListUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.
|
|
|
4331
4537
|
}[];
|
|
4332
4538
|
plannedOperationalDate?: string;
|
|
4333
4539
|
projectName?: string;
|
|
4540
|
+
sourceUpdate?: string;
|
|
4334
4541
|
totalMw?: number;
|
|
4335
4542
|
applicationStatus?: string;
|
|
4543
|
+
cost?: {
|
|
4544
|
+
costCompany?: string;
|
|
4545
|
+
costYear?: number;
|
|
4546
|
+
networkCostKW?: number;
|
|
4547
|
+
poiCostKW?: number;
|
|
4548
|
+
totalCostKW?: number;
|
|
4549
|
+
};
|
|
4336
4550
|
interconnectingEntity?: string;
|
|
4337
4551
|
poiLocation?: string | number;
|
|
4552
|
+
reportCount?: number;
|
|
4553
|
+
withdrawnDate?: string;
|
|
4338
4554
|
}, {
|
|
4339
4555
|
id?: string;
|
|
4340
4556
|
sort?: [string | number, number, ...unknown[]];
|
|
@@ -4370,6 +4586,8 @@ export declare const queueListUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.
|
|
|
4370
4586
|
lon?: number;
|
|
4371
4587
|
};
|
|
4372
4588
|
};
|
|
4589
|
+
totals?: Record<string, number>;
|
|
4590
|
+
reportDate?: string;
|
|
4373
4591
|
applicationTags?: {
|
|
4374
4592
|
identifier?: string;
|
|
4375
4593
|
}[];
|
|
@@ -4387,10 +4605,20 @@ export declare const queueListUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.
|
|
|
4387
4605
|
}[];
|
|
4388
4606
|
plannedOperationalDate?: string;
|
|
4389
4607
|
projectName?: string;
|
|
4608
|
+
sourceUpdate?: string;
|
|
4390
4609
|
totalMw?: number;
|
|
4391
4610
|
applicationStatus?: string;
|
|
4611
|
+
cost?: {
|
|
4612
|
+
costCompany?: string;
|
|
4613
|
+
costYear?: number;
|
|
4614
|
+
networkCostKW?: number;
|
|
4615
|
+
poiCostKW?: number;
|
|
4616
|
+
totalCostKW?: number;
|
|
4617
|
+
};
|
|
4392
4618
|
interconnectingEntity?: string;
|
|
4393
4619
|
poiLocation?: string | number;
|
|
4620
|
+
reportCount?: number;
|
|
4621
|
+
withdrawnDate?: string;
|
|
4394
4622
|
}>]>;
|
|
4395
4623
|
export declare const queueListBaseUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.ZodObject<{
|
|
4396
4624
|
id: z.ZodString;
|
|
@@ -4504,8 +4732,11 @@ export declare const queueListBaseUnionSchema: z.ZodDiscriminatedUnion<"schema",
|
|
|
4504
4732
|
projectName: z.ZodOptional<z.ZodString>;
|
|
4505
4733
|
queueDataset: z.ZodOptional<z.ZodString>;
|
|
4506
4734
|
queueDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
4735
|
+
reportDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
4736
|
+
sourceUpdate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
4507
4737
|
status: z.ZodOptional<z.ZodString>;
|
|
4508
4738
|
totalMw: z.ZodOptional<z.ZodNumber>;
|
|
4739
|
+
totals: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
4509
4740
|
}, "strict", z.ZodTypeAny, {
|
|
4510
4741
|
id?: string;
|
|
4511
4742
|
status?: string;
|
|
@@ -4538,6 +4769,8 @@ export declare const queueListBaseUnionSchema: z.ZodDiscriminatedUnion<"schema",
|
|
|
4538
4769
|
lon?: number;
|
|
4539
4770
|
};
|
|
4540
4771
|
};
|
|
4772
|
+
totals?: Record<string, number>;
|
|
4773
|
+
reportDate?: string;
|
|
4541
4774
|
queueDate?: string;
|
|
4542
4775
|
schema?: "eu_queue";
|
|
4543
4776
|
actualOperationalDate?: string;
|
|
@@ -4546,6 +4779,7 @@ export declare const queueListBaseUnionSchema: z.ZodDiscriminatedUnion<"schema",
|
|
|
4546
4779
|
localState?: string;
|
|
4547
4780
|
plannedOperationalDate?: string;
|
|
4548
4781
|
projectName?: string;
|
|
4782
|
+
sourceUpdate?: string;
|
|
4549
4783
|
totalMw?: number;
|
|
4550
4784
|
}, {
|
|
4551
4785
|
id?: string;
|
|
@@ -4579,6 +4813,8 @@ export declare const queueListBaseUnionSchema: z.ZodDiscriminatedUnion<"schema",
|
|
|
4579
4813
|
lon?: number;
|
|
4580
4814
|
};
|
|
4581
4815
|
};
|
|
4816
|
+
totals?: Record<string, number>;
|
|
4817
|
+
reportDate?: string;
|
|
4582
4818
|
queueDate?: string;
|
|
4583
4819
|
schema?: "eu_queue";
|
|
4584
4820
|
actualOperationalDate?: string;
|
|
@@ -4587,6 +4823,7 @@ export declare const queueListBaseUnionSchema: z.ZodDiscriminatedUnion<"schema",
|
|
|
4587
4823
|
localState?: string;
|
|
4588
4824
|
plannedOperationalDate?: string;
|
|
4589
4825
|
projectName?: string;
|
|
4826
|
+
sourceUpdate?: string;
|
|
4590
4827
|
totalMw?: number;
|
|
4591
4828
|
}>, z.ZodObject<{
|
|
4592
4829
|
id: z.ZodString;
|
|
@@ -4604,6 +4841,25 @@ export declare const queueListBaseUnionSchema: z.ZodDiscriminatedUnion<"schema",
|
|
|
4604
4841
|
}, {
|
|
4605
4842
|
identifier?: string;
|
|
4606
4843
|
}>, "many">>;
|
|
4844
|
+
cost: z.ZodOptional<z.ZodObject<{
|
|
4845
|
+
costCompany: z.ZodString;
|
|
4846
|
+
costYear: z.ZodNumber;
|
|
4847
|
+
networkCostKW: z.ZodNumber;
|
|
4848
|
+
poiCostKW: z.ZodNumber;
|
|
4849
|
+
totalCostKW: z.ZodNumber;
|
|
4850
|
+
}, "strip", z.ZodTypeAny, {
|
|
4851
|
+
costCompany?: string;
|
|
4852
|
+
costYear?: number;
|
|
4853
|
+
networkCostKW?: number;
|
|
4854
|
+
poiCostKW?: number;
|
|
4855
|
+
totalCostKW?: number;
|
|
4856
|
+
}, {
|
|
4857
|
+
costCompany?: string;
|
|
4858
|
+
costYear?: number;
|
|
4859
|
+
networkCostKW?: number;
|
|
4860
|
+
poiCostKW?: number;
|
|
4861
|
+
totalCostKW?: number;
|
|
4862
|
+
}>>;
|
|
4607
4863
|
country: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4608
4864
|
identifier: z.ZodString;
|
|
4609
4865
|
id: z.ZodString;
|
|
@@ -4737,7 +4993,12 @@ export declare const queueListBaseUnionSchema: z.ZodDiscriminatedUnion<"schema",
|
|
|
4737
4993
|
projectName: z.ZodOptional<z.ZodString>;
|
|
4738
4994
|
queueDataset: z.ZodOptional<z.ZodString>;
|
|
4739
4995
|
queueDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
4996
|
+
reportCount: z.ZodOptional<z.ZodNumber>;
|
|
4997
|
+
reportDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
4998
|
+
sourceUpdate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
4740
4999
|
totalMw: z.ZodOptional<z.ZodNumber>;
|
|
5000
|
+
totals: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
5001
|
+
withdrawnDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
4741
5002
|
}, "strict", z.ZodTypeAny, {
|
|
4742
5003
|
id?: string;
|
|
4743
5004
|
country?: {
|
|
@@ -4772,6 +5033,8 @@ export declare const queueListBaseUnionSchema: z.ZodDiscriminatedUnion<"schema",
|
|
|
4772
5033
|
lon?: number;
|
|
4773
5034
|
};
|
|
4774
5035
|
};
|
|
5036
|
+
totals?: Record<string, number>;
|
|
5037
|
+
reportDate?: string;
|
|
4775
5038
|
applicationTags?: {
|
|
4776
5039
|
identifier?: string;
|
|
4777
5040
|
}[];
|
|
@@ -4789,10 +5052,20 @@ export declare const queueListBaseUnionSchema: z.ZodDiscriminatedUnion<"schema",
|
|
|
4789
5052
|
}[];
|
|
4790
5053
|
plannedOperationalDate?: string;
|
|
4791
5054
|
projectName?: string;
|
|
5055
|
+
sourceUpdate?: string;
|
|
4792
5056
|
totalMw?: number;
|
|
4793
5057
|
applicationStatus?: string;
|
|
5058
|
+
cost?: {
|
|
5059
|
+
costCompany?: string;
|
|
5060
|
+
costYear?: number;
|
|
5061
|
+
networkCostKW?: number;
|
|
5062
|
+
poiCostKW?: number;
|
|
5063
|
+
totalCostKW?: number;
|
|
5064
|
+
};
|
|
4794
5065
|
interconnectingEntity?: string;
|
|
4795
5066
|
poiLocation?: string | number;
|
|
5067
|
+
reportCount?: number;
|
|
5068
|
+
withdrawnDate?: string;
|
|
4796
5069
|
}, {
|
|
4797
5070
|
id?: string;
|
|
4798
5071
|
country?: {
|
|
@@ -4827,6 +5100,8 @@ export declare const queueListBaseUnionSchema: z.ZodDiscriminatedUnion<"schema",
|
|
|
4827
5100
|
lon?: number;
|
|
4828
5101
|
};
|
|
4829
5102
|
};
|
|
5103
|
+
totals?: Record<string, number>;
|
|
5104
|
+
reportDate?: string;
|
|
4830
5105
|
applicationTags?: {
|
|
4831
5106
|
identifier?: string;
|
|
4832
5107
|
}[];
|
|
@@ -4844,10 +5119,20 @@ export declare const queueListBaseUnionSchema: z.ZodDiscriminatedUnion<"schema",
|
|
|
4844
5119
|
}[];
|
|
4845
5120
|
plannedOperationalDate?: string;
|
|
4846
5121
|
projectName?: string;
|
|
5122
|
+
sourceUpdate?: string;
|
|
4847
5123
|
totalMw?: number;
|
|
4848
5124
|
applicationStatus?: string;
|
|
5125
|
+
cost?: {
|
|
5126
|
+
costCompany?: string;
|
|
5127
|
+
costYear?: number;
|
|
5128
|
+
networkCostKW?: number;
|
|
5129
|
+
poiCostKW?: number;
|
|
5130
|
+
totalCostKW?: number;
|
|
5131
|
+
};
|
|
4849
5132
|
interconnectingEntity?: string;
|
|
4850
5133
|
poiLocation?: string | number;
|
|
5134
|
+
reportCount?: number;
|
|
5135
|
+
withdrawnDate?: string;
|
|
4851
5136
|
}>]>;
|
|
4852
5137
|
export type QueueListType = z.infer<typeof queueListSchema>;
|
|
4853
5138
|
export type QueueListUnionType = z.infer<typeof queueListUnionSchema>;
|
|
@@ -5066,17 +5351,17 @@ export declare const euQueueAPISchema: z.ZodObject<{
|
|
|
5066
5351
|
localState?: string;
|
|
5067
5352
|
plannedOperationalDate?: string;
|
|
5068
5353
|
projectName?: string;
|
|
5354
|
+
sourceUpdate?: string;
|
|
5069
5355
|
totalMw?: number;
|
|
5070
5356
|
applicationStatus?: string;
|
|
5357
|
+
withdrawnDate?: string;
|
|
5071
5358
|
localTown?: string;
|
|
5072
5359
|
mwNet?: number;
|
|
5073
5360
|
refId?: string;
|
|
5074
|
-
sourceUpdate?: string;
|
|
5075
5361
|
storageCapacity?: number;
|
|
5076
5362
|
technology?: string;
|
|
5077
5363
|
windFarmName?: string;
|
|
5078
5364
|
applicationType?: string;
|
|
5079
|
-
withdrawnDate?: string;
|
|
5080
5365
|
constructionDate?: string;
|
|
5081
5366
|
developmentStatus?: string;
|
|
5082
5367
|
localRegion?: string;
|
|
@@ -5140,17 +5425,17 @@ export declare const euQueueAPISchema: z.ZodObject<{
|
|
|
5140
5425
|
localState?: string;
|
|
5141
5426
|
plannedOperationalDate?: string;
|
|
5142
5427
|
projectName?: string;
|
|
5428
|
+
sourceUpdate?: string;
|
|
5143
5429
|
totalMw?: number;
|
|
5144
5430
|
applicationStatus?: string;
|
|
5431
|
+
withdrawnDate?: string;
|
|
5145
5432
|
localTown?: string;
|
|
5146
5433
|
mwNet?: number;
|
|
5147
5434
|
refId?: string;
|
|
5148
|
-
sourceUpdate?: string;
|
|
5149
5435
|
storageCapacity?: number;
|
|
5150
5436
|
technology?: string;
|
|
5151
5437
|
windFarmName?: string;
|
|
5152
5438
|
applicationType?: string;
|
|
5153
|
-
withdrawnDate?: string;
|
|
5154
5439
|
constructionDate?: string;
|
|
5155
5440
|
developmentStatus?: string;
|
|
5156
5441
|
localRegion?: string;
|
|
@@ -5168,25 +5453,6 @@ export declare const euQueueAPISchema: z.ZodObject<{
|
|
|
5168
5453
|
export declare const usQueueAPISchema: z.ZodObject<{
|
|
5169
5454
|
$organizations: z.ZodOptional<z.ZodString>;
|
|
5170
5455
|
applicationType: z.ZodOptional<z.ZodString>;
|
|
5171
|
-
cost: z.ZodOptional<z.ZodObject<{
|
|
5172
|
-
costCompany: z.ZodString;
|
|
5173
|
-
costYear: z.ZodNumber;
|
|
5174
|
-
networkCostKW: z.ZodNumber;
|
|
5175
|
-
poiCostKW: z.ZodNumber;
|
|
5176
|
-
totalCostKW: z.ZodNumber;
|
|
5177
|
-
}, "strip", z.ZodTypeAny, {
|
|
5178
|
-
costCompany?: string;
|
|
5179
|
-
costYear?: number;
|
|
5180
|
-
networkCostKW?: number;
|
|
5181
|
-
poiCostKW?: number;
|
|
5182
|
-
totalCostKW?: number;
|
|
5183
|
-
}, {
|
|
5184
|
-
costCompany?: string;
|
|
5185
|
-
costYear?: number;
|
|
5186
|
-
networkCostKW?: number;
|
|
5187
|
-
poiCostKW?: number;
|
|
5188
|
-
totalCostKW?: number;
|
|
5189
|
-
}>>;
|
|
5190
5456
|
dateCreated: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
5191
5457
|
documents: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5192
5458
|
date: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
@@ -5488,8 +5754,6 @@ export declare const usQueueAPISchema: z.ZodObject<{
|
|
|
5488
5754
|
meta?: string;
|
|
5489
5755
|
poiGroup?: string;
|
|
5490
5756
|
}>>;
|
|
5491
|
-
reportCount: z.ZodOptional<z.ZodNumber>;
|
|
5492
|
-
reportDate: z.ZodOptional<z.ZodString>;
|
|
5493
5757
|
sectors: z.ZodArray<z.ZodObject<{
|
|
5494
5758
|
identifier: z.ZodString;
|
|
5495
5759
|
id: z.ZodString;
|
|
@@ -5500,7 +5764,6 @@ export declare const usQueueAPISchema: z.ZodObject<{
|
|
|
5500
5764
|
id?: string;
|
|
5501
5765
|
identifier?: string;
|
|
5502
5766
|
}>, "many">;
|
|
5503
|
-
sourceUpdate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
5504
5767
|
signals: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5505
5768
|
filingDate: z.ZodString;
|
|
5506
5769
|
headline: z.ZodString;
|
|
@@ -5523,8 +5786,6 @@ export declare const usQueueAPISchema: z.ZodObject<{
|
|
|
5523
5786
|
headline?: string;
|
|
5524
5787
|
publishedDate?: string;
|
|
5525
5788
|
}>, "many">>;
|
|
5526
|
-
withdrawnDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
5527
|
-
} & {
|
|
5528
5789
|
id: z.ZodString;
|
|
5529
5790
|
schema: z.ZodLiteral<"us_queue">;
|
|
5530
5791
|
actualOperationalDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
@@ -5538,6 +5799,25 @@ export declare const usQueueAPISchema: z.ZodObject<{
|
|
|
5538
5799
|
}, {
|
|
5539
5800
|
identifier?: string;
|
|
5540
5801
|
}>, "many">>;
|
|
5802
|
+
cost: z.ZodOptional<z.ZodObject<{
|
|
5803
|
+
costCompany: z.ZodString;
|
|
5804
|
+
costYear: z.ZodNumber;
|
|
5805
|
+
networkCostKW: z.ZodNumber;
|
|
5806
|
+
poiCostKW: z.ZodNumber;
|
|
5807
|
+
totalCostKW: z.ZodNumber;
|
|
5808
|
+
}, "strip", z.ZodTypeAny, {
|
|
5809
|
+
costCompany?: string;
|
|
5810
|
+
costYear?: number;
|
|
5811
|
+
networkCostKW?: number;
|
|
5812
|
+
poiCostKW?: number;
|
|
5813
|
+
totalCostKW?: number;
|
|
5814
|
+
}, {
|
|
5815
|
+
costCompany?: string;
|
|
5816
|
+
costYear?: number;
|
|
5817
|
+
networkCostKW?: number;
|
|
5818
|
+
poiCostKW?: number;
|
|
5819
|
+
totalCostKW?: number;
|
|
5820
|
+
}>>;
|
|
5541
5821
|
country: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5542
5822
|
identifier: z.ZodString;
|
|
5543
5823
|
id: z.ZodString;
|
|
@@ -5671,7 +5951,11 @@ export declare const usQueueAPISchema: z.ZodObject<{
|
|
|
5671
5951
|
projectName: z.ZodOptional<z.ZodString>;
|
|
5672
5952
|
queueDataset: z.ZodOptional<z.ZodString>;
|
|
5673
5953
|
queueDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
5954
|
+
reportCount: z.ZodOptional<z.ZodNumber>;
|
|
5955
|
+
reportDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
5956
|
+
sourceUpdate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
5674
5957
|
totalMw: z.ZodOptional<z.ZodNumber>;
|
|
5958
|
+
withdrawnDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
5675
5959
|
} & {
|
|
5676
5960
|
audiences: z.ZodArray<z.ZodObject<{
|
|
5677
5961
|
identifier: z.ZodString;
|
|
@@ -5777,12 +6061,9 @@ export declare const usQueueAPISchema: z.ZodObject<{
|
|
|
5777
6061
|
}[];
|
|
5778
6062
|
plannedOperationalDate?: string;
|
|
5779
6063
|
projectName?: string;
|
|
6064
|
+
sourceUpdate?: string;
|
|
5780
6065
|
totalMw?: number;
|
|
5781
6066
|
applicationStatus?: string;
|
|
5782
|
-
interconnectingEntity?: string;
|
|
5783
|
-
poiLocation?: string | number;
|
|
5784
|
-
sourceUpdate?: string;
|
|
5785
|
-
applicationType?: string;
|
|
5786
6067
|
cost?: {
|
|
5787
6068
|
costCompany?: string;
|
|
5788
6069
|
costYear?: number;
|
|
@@ -5790,6 +6071,11 @@ export declare const usQueueAPISchema: z.ZodObject<{
|
|
|
5790
6071
|
poiCostKW?: number;
|
|
5791
6072
|
totalCostKW?: number;
|
|
5792
6073
|
};
|
|
6074
|
+
interconnectingEntity?: string;
|
|
6075
|
+
poiLocation?: string | number;
|
|
6076
|
+
reportCount?: number;
|
|
6077
|
+
withdrawnDate?: string;
|
|
6078
|
+
applicationType?: string;
|
|
5793
6079
|
dateCreated?: string;
|
|
5794
6080
|
events?: {
|
|
5795
6081
|
id?: string;
|
|
@@ -5858,7 +6144,6 @@ export declare const usQueueAPISchema: z.ZodObject<{
|
|
|
5858
6144
|
meta?: string;
|
|
5859
6145
|
poiGroup?: string;
|
|
5860
6146
|
};
|
|
5861
|
-
reportCount?: number;
|
|
5862
6147
|
signals?: {
|
|
5863
6148
|
type?: string;
|
|
5864
6149
|
subType?: string;
|
|
@@ -5867,7 +6152,6 @@ export declare const usQueueAPISchema: z.ZodObject<{
|
|
|
5867
6152
|
headline?: string;
|
|
5868
6153
|
publishedDate?: string;
|
|
5869
6154
|
}[];
|
|
5870
|
-
withdrawnDate?: string;
|
|
5871
6155
|
queueDataSetType?: string;
|
|
5872
6156
|
regions?: {
|
|
5873
6157
|
id?: string;
|
|
@@ -5957,12 +6241,9 @@ export declare const usQueueAPISchema: z.ZodObject<{
|
|
|
5957
6241
|
}[];
|
|
5958
6242
|
plannedOperationalDate?: string;
|
|
5959
6243
|
projectName?: string;
|
|
6244
|
+
sourceUpdate?: string;
|
|
5960
6245
|
totalMw?: number;
|
|
5961
6246
|
applicationStatus?: string;
|
|
5962
|
-
interconnectingEntity?: string;
|
|
5963
|
-
poiLocation?: string | number;
|
|
5964
|
-
sourceUpdate?: string;
|
|
5965
|
-
applicationType?: string;
|
|
5966
6247
|
cost?: {
|
|
5967
6248
|
costCompany?: string;
|
|
5968
6249
|
costYear?: number;
|
|
@@ -5970,6 +6251,11 @@ export declare const usQueueAPISchema: z.ZodObject<{
|
|
|
5970
6251
|
poiCostKW?: number;
|
|
5971
6252
|
totalCostKW?: number;
|
|
5972
6253
|
};
|
|
6254
|
+
interconnectingEntity?: string;
|
|
6255
|
+
poiLocation?: string | number;
|
|
6256
|
+
reportCount?: number;
|
|
6257
|
+
withdrawnDate?: string;
|
|
6258
|
+
applicationType?: string;
|
|
5973
6259
|
dateCreated?: string;
|
|
5974
6260
|
events?: {
|
|
5975
6261
|
id?: string;
|
|
@@ -6038,7 +6324,6 @@ export declare const usQueueAPISchema: z.ZodObject<{
|
|
|
6038
6324
|
meta?: string;
|
|
6039
6325
|
poiGroup?: string;
|
|
6040
6326
|
};
|
|
6041
|
-
reportCount?: number;
|
|
6042
6327
|
signals?: {
|
|
6043
6328
|
type?: string;
|
|
6044
6329
|
subType?: string;
|
|
@@ -6047,7 +6332,6 @@ export declare const usQueueAPISchema: z.ZodObject<{
|
|
|
6047
6332
|
headline?: string;
|
|
6048
6333
|
publishedDate?: string;
|
|
6049
6334
|
}[];
|
|
6050
|
-
withdrawnDate?: string;
|
|
6051
6335
|
queueDataSetType?: string;
|
|
6052
6336
|
regions?: {
|
|
6053
6337
|
id?: string;
|
|
@@ -6269,17 +6553,17 @@ export declare const queueAPISchema: z.ZodUnion<[z.ZodObject<{
|
|
|
6269
6553
|
localState?: string;
|
|
6270
6554
|
plannedOperationalDate?: string;
|
|
6271
6555
|
projectName?: string;
|
|
6556
|
+
sourceUpdate?: string;
|
|
6272
6557
|
totalMw?: number;
|
|
6273
6558
|
applicationStatus?: string;
|
|
6559
|
+
withdrawnDate?: string;
|
|
6274
6560
|
localTown?: string;
|
|
6275
6561
|
mwNet?: number;
|
|
6276
6562
|
refId?: string;
|
|
6277
|
-
sourceUpdate?: string;
|
|
6278
6563
|
storageCapacity?: number;
|
|
6279
6564
|
technology?: string;
|
|
6280
6565
|
windFarmName?: string;
|
|
6281
6566
|
applicationType?: string;
|
|
6282
|
-
withdrawnDate?: string;
|
|
6283
6567
|
constructionDate?: string;
|
|
6284
6568
|
developmentStatus?: string;
|
|
6285
6569
|
localRegion?: string;
|
|
@@ -6343,17 +6627,17 @@ export declare const queueAPISchema: z.ZodUnion<[z.ZodObject<{
|
|
|
6343
6627
|
localState?: string;
|
|
6344
6628
|
plannedOperationalDate?: string;
|
|
6345
6629
|
projectName?: string;
|
|
6630
|
+
sourceUpdate?: string;
|
|
6346
6631
|
totalMw?: number;
|
|
6347
6632
|
applicationStatus?: string;
|
|
6633
|
+
withdrawnDate?: string;
|
|
6348
6634
|
localTown?: string;
|
|
6349
6635
|
mwNet?: number;
|
|
6350
6636
|
refId?: string;
|
|
6351
|
-
sourceUpdate?: string;
|
|
6352
6637
|
storageCapacity?: number;
|
|
6353
6638
|
technology?: string;
|
|
6354
6639
|
windFarmName?: string;
|
|
6355
6640
|
applicationType?: string;
|
|
6356
|
-
withdrawnDate?: string;
|
|
6357
6641
|
constructionDate?: string;
|
|
6358
6642
|
developmentStatus?: string;
|
|
6359
6643
|
localRegion?: string;
|
|
@@ -6370,25 +6654,6 @@ export declare const queueAPISchema: z.ZodUnion<[z.ZodObject<{
|
|
|
6370
6654
|
}>, z.ZodObject<{
|
|
6371
6655
|
$organizations: z.ZodOptional<z.ZodString>;
|
|
6372
6656
|
applicationType: z.ZodOptional<z.ZodString>;
|
|
6373
|
-
cost: z.ZodOptional<z.ZodObject<{
|
|
6374
|
-
costCompany: z.ZodString;
|
|
6375
|
-
costYear: z.ZodNumber;
|
|
6376
|
-
networkCostKW: z.ZodNumber;
|
|
6377
|
-
poiCostKW: z.ZodNumber;
|
|
6378
|
-
totalCostKW: z.ZodNumber;
|
|
6379
|
-
}, "strip", z.ZodTypeAny, {
|
|
6380
|
-
costCompany?: string;
|
|
6381
|
-
costYear?: number;
|
|
6382
|
-
networkCostKW?: number;
|
|
6383
|
-
poiCostKW?: number;
|
|
6384
|
-
totalCostKW?: number;
|
|
6385
|
-
}, {
|
|
6386
|
-
costCompany?: string;
|
|
6387
|
-
costYear?: number;
|
|
6388
|
-
networkCostKW?: number;
|
|
6389
|
-
poiCostKW?: number;
|
|
6390
|
-
totalCostKW?: number;
|
|
6391
|
-
}>>;
|
|
6392
6657
|
dateCreated: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
6393
6658
|
documents: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6394
6659
|
date: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
@@ -6690,8 +6955,6 @@ export declare const queueAPISchema: z.ZodUnion<[z.ZodObject<{
|
|
|
6690
6955
|
meta?: string;
|
|
6691
6956
|
poiGroup?: string;
|
|
6692
6957
|
}>>;
|
|
6693
|
-
reportCount: z.ZodOptional<z.ZodNumber>;
|
|
6694
|
-
reportDate: z.ZodOptional<z.ZodString>;
|
|
6695
6958
|
sectors: z.ZodArray<z.ZodObject<{
|
|
6696
6959
|
identifier: z.ZodString;
|
|
6697
6960
|
id: z.ZodString;
|
|
@@ -6702,7 +6965,6 @@ export declare const queueAPISchema: z.ZodUnion<[z.ZodObject<{
|
|
|
6702
6965
|
id?: string;
|
|
6703
6966
|
identifier?: string;
|
|
6704
6967
|
}>, "many">;
|
|
6705
|
-
sourceUpdate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
6706
6968
|
signals: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6707
6969
|
filingDate: z.ZodString;
|
|
6708
6970
|
headline: z.ZodString;
|
|
@@ -6725,8 +6987,6 @@ export declare const queueAPISchema: z.ZodUnion<[z.ZodObject<{
|
|
|
6725
6987
|
headline?: string;
|
|
6726
6988
|
publishedDate?: string;
|
|
6727
6989
|
}>, "many">>;
|
|
6728
|
-
withdrawnDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
6729
|
-
} & {
|
|
6730
6990
|
id: z.ZodString;
|
|
6731
6991
|
schema: z.ZodLiteral<"us_queue">;
|
|
6732
6992
|
actualOperationalDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
@@ -6740,6 +7000,25 @@ export declare const queueAPISchema: z.ZodUnion<[z.ZodObject<{
|
|
|
6740
7000
|
}, {
|
|
6741
7001
|
identifier?: string;
|
|
6742
7002
|
}>, "many">>;
|
|
7003
|
+
cost: z.ZodOptional<z.ZodObject<{
|
|
7004
|
+
costCompany: z.ZodString;
|
|
7005
|
+
costYear: z.ZodNumber;
|
|
7006
|
+
networkCostKW: z.ZodNumber;
|
|
7007
|
+
poiCostKW: z.ZodNumber;
|
|
7008
|
+
totalCostKW: z.ZodNumber;
|
|
7009
|
+
}, "strip", z.ZodTypeAny, {
|
|
7010
|
+
costCompany?: string;
|
|
7011
|
+
costYear?: number;
|
|
7012
|
+
networkCostKW?: number;
|
|
7013
|
+
poiCostKW?: number;
|
|
7014
|
+
totalCostKW?: number;
|
|
7015
|
+
}, {
|
|
7016
|
+
costCompany?: string;
|
|
7017
|
+
costYear?: number;
|
|
7018
|
+
networkCostKW?: number;
|
|
7019
|
+
poiCostKW?: number;
|
|
7020
|
+
totalCostKW?: number;
|
|
7021
|
+
}>>;
|
|
6743
7022
|
country: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6744
7023
|
identifier: z.ZodString;
|
|
6745
7024
|
id: z.ZodString;
|
|
@@ -6873,7 +7152,11 @@ export declare const queueAPISchema: z.ZodUnion<[z.ZodObject<{
|
|
|
6873
7152
|
projectName: z.ZodOptional<z.ZodString>;
|
|
6874
7153
|
queueDataset: z.ZodOptional<z.ZodString>;
|
|
6875
7154
|
queueDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
7155
|
+
reportCount: z.ZodOptional<z.ZodNumber>;
|
|
7156
|
+
reportDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
7157
|
+
sourceUpdate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
6876
7158
|
totalMw: z.ZodOptional<z.ZodNumber>;
|
|
7159
|
+
withdrawnDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
6877
7160
|
} & {
|
|
6878
7161
|
audiences: z.ZodArray<z.ZodObject<{
|
|
6879
7162
|
identifier: z.ZodString;
|
|
@@ -6979,12 +7262,9 @@ export declare const queueAPISchema: z.ZodUnion<[z.ZodObject<{
|
|
|
6979
7262
|
}[];
|
|
6980
7263
|
plannedOperationalDate?: string;
|
|
6981
7264
|
projectName?: string;
|
|
7265
|
+
sourceUpdate?: string;
|
|
6982
7266
|
totalMw?: number;
|
|
6983
7267
|
applicationStatus?: string;
|
|
6984
|
-
interconnectingEntity?: string;
|
|
6985
|
-
poiLocation?: string | number;
|
|
6986
|
-
sourceUpdate?: string;
|
|
6987
|
-
applicationType?: string;
|
|
6988
7268
|
cost?: {
|
|
6989
7269
|
costCompany?: string;
|
|
6990
7270
|
costYear?: number;
|
|
@@ -6992,6 +7272,11 @@ export declare const queueAPISchema: z.ZodUnion<[z.ZodObject<{
|
|
|
6992
7272
|
poiCostKW?: number;
|
|
6993
7273
|
totalCostKW?: number;
|
|
6994
7274
|
};
|
|
7275
|
+
interconnectingEntity?: string;
|
|
7276
|
+
poiLocation?: string | number;
|
|
7277
|
+
reportCount?: number;
|
|
7278
|
+
withdrawnDate?: string;
|
|
7279
|
+
applicationType?: string;
|
|
6995
7280
|
dateCreated?: string;
|
|
6996
7281
|
events?: {
|
|
6997
7282
|
id?: string;
|
|
@@ -7060,7 +7345,6 @@ export declare const queueAPISchema: z.ZodUnion<[z.ZodObject<{
|
|
|
7060
7345
|
meta?: string;
|
|
7061
7346
|
poiGroup?: string;
|
|
7062
7347
|
};
|
|
7063
|
-
reportCount?: number;
|
|
7064
7348
|
signals?: {
|
|
7065
7349
|
type?: string;
|
|
7066
7350
|
subType?: string;
|
|
@@ -7069,7 +7353,6 @@ export declare const queueAPISchema: z.ZodUnion<[z.ZodObject<{
|
|
|
7069
7353
|
headline?: string;
|
|
7070
7354
|
publishedDate?: string;
|
|
7071
7355
|
}[];
|
|
7072
|
-
withdrawnDate?: string;
|
|
7073
7356
|
queueDataSetType?: string;
|
|
7074
7357
|
regions?: {
|
|
7075
7358
|
id?: string;
|
|
@@ -7159,12 +7442,9 @@ export declare const queueAPISchema: z.ZodUnion<[z.ZodObject<{
|
|
|
7159
7442
|
}[];
|
|
7160
7443
|
plannedOperationalDate?: string;
|
|
7161
7444
|
projectName?: string;
|
|
7445
|
+
sourceUpdate?: string;
|
|
7162
7446
|
totalMw?: number;
|
|
7163
7447
|
applicationStatus?: string;
|
|
7164
|
-
interconnectingEntity?: string;
|
|
7165
|
-
poiLocation?: string | number;
|
|
7166
|
-
sourceUpdate?: string;
|
|
7167
|
-
applicationType?: string;
|
|
7168
7448
|
cost?: {
|
|
7169
7449
|
costCompany?: string;
|
|
7170
7450
|
costYear?: number;
|
|
@@ -7172,6 +7452,11 @@ export declare const queueAPISchema: z.ZodUnion<[z.ZodObject<{
|
|
|
7172
7452
|
poiCostKW?: number;
|
|
7173
7453
|
totalCostKW?: number;
|
|
7174
7454
|
};
|
|
7455
|
+
interconnectingEntity?: string;
|
|
7456
|
+
poiLocation?: string | number;
|
|
7457
|
+
reportCount?: number;
|
|
7458
|
+
withdrawnDate?: string;
|
|
7459
|
+
applicationType?: string;
|
|
7175
7460
|
dateCreated?: string;
|
|
7176
7461
|
events?: {
|
|
7177
7462
|
id?: string;
|
|
@@ -7240,7 +7525,6 @@ export declare const queueAPISchema: z.ZodUnion<[z.ZodObject<{
|
|
|
7240
7525
|
meta?: string;
|
|
7241
7526
|
poiGroup?: string;
|
|
7242
7527
|
};
|
|
7243
|
-
reportCount?: number;
|
|
7244
7528
|
signals?: {
|
|
7245
7529
|
type?: string;
|
|
7246
7530
|
subType?: string;
|
|
@@ -7249,7 +7533,6 @@ export declare const queueAPISchema: z.ZodUnion<[z.ZodObject<{
|
|
|
7249
7533
|
headline?: string;
|
|
7250
7534
|
publishedDate?: string;
|
|
7251
7535
|
}[];
|
|
7252
|
-
withdrawnDate?: string;
|
|
7253
7536
|
queueDataSetType?: string;
|
|
7254
7537
|
regions?: {
|
|
7255
7538
|
id?: string;
|
|
@@ -7262,25 +7545,6 @@ export declare const queueAPISchema: z.ZodUnion<[z.ZodObject<{
|
|
|
7262
7545
|
export declare const queueAPIUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.ZodObject<{
|
|
7263
7546
|
$organizations: z.ZodOptional<z.ZodString>;
|
|
7264
7547
|
applicationType: z.ZodOptional<z.ZodString>;
|
|
7265
|
-
cost: z.ZodOptional<z.ZodObject<{
|
|
7266
|
-
costCompany: z.ZodString;
|
|
7267
|
-
costYear: z.ZodNumber;
|
|
7268
|
-
networkCostKW: z.ZodNumber;
|
|
7269
|
-
poiCostKW: z.ZodNumber;
|
|
7270
|
-
totalCostKW: z.ZodNumber;
|
|
7271
|
-
}, "strip", z.ZodTypeAny, {
|
|
7272
|
-
costCompany?: string;
|
|
7273
|
-
costYear?: number;
|
|
7274
|
-
networkCostKW?: number;
|
|
7275
|
-
poiCostKW?: number;
|
|
7276
|
-
totalCostKW?: number;
|
|
7277
|
-
}, {
|
|
7278
|
-
costCompany?: string;
|
|
7279
|
-
costYear?: number;
|
|
7280
|
-
networkCostKW?: number;
|
|
7281
|
-
poiCostKW?: number;
|
|
7282
|
-
totalCostKW?: number;
|
|
7283
|
-
}>>;
|
|
7284
7548
|
dateCreated: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
7285
7549
|
documents: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7286
7550
|
date: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
@@ -7582,8 +7846,6 @@ export declare const queueAPIUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.Z
|
|
|
7582
7846
|
meta?: string;
|
|
7583
7847
|
poiGroup?: string;
|
|
7584
7848
|
}>>;
|
|
7585
|
-
reportCount: z.ZodOptional<z.ZodNumber>;
|
|
7586
|
-
reportDate: z.ZodOptional<z.ZodString>;
|
|
7587
7849
|
sectors: z.ZodArray<z.ZodObject<{
|
|
7588
7850
|
identifier: z.ZodString;
|
|
7589
7851
|
id: z.ZodString;
|
|
@@ -7594,7 +7856,6 @@ export declare const queueAPIUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.Z
|
|
|
7594
7856
|
id?: string;
|
|
7595
7857
|
identifier?: string;
|
|
7596
7858
|
}>, "many">;
|
|
7597
|
-
sourceUpdate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
7598
7859
|
signals: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7599
7860
|
filingDate: z.ZodString;
|
|
7600
7861
|
headline: z.ZodString;
|
|
@@ -7617,8 +7878,6 @@ export declare const queueAPIUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.Z
|
|
|
7617
7878
|
headline?: string;
|
|
7618
7879
|
publishedDate?: string;
|
|
7619
7880
|
}>, "many">>;
|
|
7620
|
-
withdrawnDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
7621
|
-
} & {
|
|
7622
7881
|
id: z.ZodString;
|
|
7623
7882
|
schema: z.ZodLiteral<"us_queue">;
|
|
7624
7883
|
actualOperationalDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
@@ -7632,6 +7891,25 @@ export declare const queueAPIUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.Z
|
|
|
7632
7891
|
}, {
|
|
7633
7892
|
identifier?: string;
|
|
7634
7893
|
}>, "many">>;
|
|
7894
|
+
cost: z.ZodOptional<z.ZodObject<{
|
|
7895
|
+
costCompany: z.ZodString;
|
|
7896
|
+
costYear: z.ZodNumber;
|
|
7897
|
+
networkCostKW: z.ZodNumber;
|
|
7898
|
+
poiCostKW: z.ZodNumber;
|
|
7899
|
+
totalCostKW: z.ZodNumber;
|
|
7900
|
+
}, "strip", z.ZodTypeAny, {
|
|
7901
|
+
costCompany?: string;
|
|
7902
|
+
costYear?: number;
|
|
7903
|
+
networkCostKW?: number;
|
|
7904
|
+
poiCostKW?: number;
|
|
7905
|
+
totalCostKW?: number;
|
|
7906
|
+
}, {
|
|
7907
|
+
costCompany?: string;
|
|
7908
|
+
costYear?: number;
|
|
7909
|
+
networkCostKW?: number;
|
|
7910
|
+
poiCostKW?: number;
|
|
7911
|
+
totalCostKW?: number;
|
|
7912
|
+
}>>;
|
|
7635
7913
|
country: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7636
7914
|
identifier: z.ZodString;
|
|
7637
7915
|
id: z.ZodString;
|
|
@@ -7765,7 +8043,11 @@ export declare const queueAPIUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.Z
|
|
|
7765
8043
|
projectName: z.ZodOptional<z.ZodString>;
|
|
7766
8044
|
queueDataset: z.ZodOptional<z.ZodString>;
|
|
7767
8045
|
queueDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
8046
|
+
reportCount: z.ZodOptional<z.ZodNumber>;
|
|
8047
|
+
reportDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
8048
|
+
sourceUpdate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
7768
8049
|
totalMw: z.ZodOptional<z.ZodNumber>;
|
|
8050
|
+
withdrawnDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
7769
8051
|
} & {
|
|
7770
8052
|
audiences: z.ZodArray<z.ZodObject<{
|
|
7771
8053
|
identifier: z.ZodString;
|
|
@@ -7871,12 +8153,9 @@ export declare const queueAPIUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.Z
|
|
|
7871
8153
|
}[];
|
|
7872
8154
|
plannedOperationalDate?: string;
|
|
7873
8155
|
projectName?: string;
|
|
8156
|
+
sourceUpdate?: string;
|
|
7874
8157
|
totalMw?: number;
|
|
7875
8158
|
applicationStatus?: string;
|
|
7876
|
-
interconnectingEntity?: string;
|
|
7877
|
-
poiLocation?: string | number;
|
|
7878
|
-
sourceUpdate?: string;
|
|
7879
|
-
applicationType?: string;
|
|
7880
8159
|
cost?: {
|
|
7881
8160
|
costCompany?: string;
|
|
7882
8161
|
costYear?: number;
|
|
@@ -7884,6 +8163,11 @@ export declare const queueAPIUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.Z
|
|
|
7884
8163
|
poiCostKW?: number;
|
|
7885
8164
|
totalCostKW?: number;
|
|
7886
8165
|
};
|
|
8166
|
+
interconnectingEntity?: string;
|
|
8167
|
+
poiLocation?: string | number;
|
|
8168
|
+
reportCount?: number;
|
|
8169
|
+
withdrawnDate?: string;
|
|
8170
|
+
applicationType?: string;
|
|
7887
8171
|
dateCreated?: string;
|
|
7888
8172
|
events?: {
|
|
7889
8173
|
id?: string;
|
|
@@ -7952,7 +8236,6 @@ export declare const queueAPIUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.Z
|
|
|
7952
8236
|
meta?: string;
|
|
7953
8237
|
poiGroup?: string;
|
|
7954
8238
|
};
|
|
7955
|
-
reportCount?: number;
|
|
7956
8239
|
signals?: {
|
|
7957
8240
|
type?: string;
|
|
7958
8241
|
subType?: string;
|
|
@@ -7961,7 +8244,6 @@ export declare const queueAPIUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.Z
|
|
|
7961
8244
|
headline?: string;
|
|
7962
8245
|
publishedDate?: string;
|
|
7963
8246
|
}[];
|
|
7964
|
-
withdrawnDate?: string;
|
|
7965
8247
|
queueDataSetType?: string;
|
|
7966
8248
|
regions?: {
|
|
7967
8249
|
id?: string;
|
|
@@ -8051,12 +8333,9 @@ export declare const queueAPIUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.Z
|
|
|
8051
8333
|
}[];
|
|
8052
8334
|
plannedOperationalDate?: string;
|
|
8053
8335
|
projectName?: string;
|
|
8336
|
+
sourceUpdate?: string;
|
|
8054
8337
|
totalMw?: number;
|
|
8055
8338
|
applicationStatus?: string;
|
|
8056
|
-
interconnectingEntity?: string;
|
|
8057
|
-
poiLocation?: string | number;
|
|
8058
|
-
sourceUpdate?: string;
|
|
8059
|
-
applicationType?: string;
|
|
8060
8339
|
cost?: {
|
|
8061
8340
|
costCompany?: string;
|
|
8062
8341
|
costYear?: number;
|
|
@@ -8064,6 +8343,11 @@ export declare const queueAPIUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.Z
|
|
|
8064
8343
|
poiCostKW?: number;
|
|
8065
8344
|
totalCostKW?: number;
|
|
8066
8345
|
};
|
|
8346
|
+
interconnectingEntity?: string;
|
|
8347
|
+
poiLocation?: string | number;
|
|
8348
|
+
reportCount?: number;
|
|
8349
|
+
withdrawnDate?: string;
|
|
8350
|
+
applicationType?: string;
|
|
8067
8351
|
dateCreated?: string;
|
|
8068
8352
|
events?: {
|
|
8069
8353
|
id?: string;
|
|
@@ -8132,7 +8416,6 @@ export declare const queueAPIUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.Z
|
|
|
8132
8416
|
meta?: string;
|
|
8133
8417
|
poiGroup?: string;
|
|
8134
8418
|
};
|
|
8135
|
-
reportCount?: number;
|
|
8136
8419
|
signals?: {
|
|
8137
8420
|
type?: string;
|
|
8138
8421
|
subType?: string;
|
|
@@ -8141,7 +8424,6 @@ export declare const queueAPIUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.Z
|
|
|
8141
8424
|
headline?: string;
|
|
8142
8425
|
publishedDate?: string;
|
|
8143
8426
|
}[];
|
|
8144
|
-
withdrawnDate?: string;
|
|
8145
8427
|
queueDataSetType?: string;
|
|
8146
8428
|
regions?: {
|
|
8147
8429
|
id?: string;
|
|
@@ -8362,17 +8644,17 @@ export declare const queueAPIUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.Z
|
|
|
8362
8644
|
localState?: string;
|
|
8363
8645
|
plannedOperationalDate?: string;
|
|
8364
8646
|
projectName?: string;
|
|
8647
|
+
sourceUpdate?: string;
|
|
8365
8648
|
totalMw?: number;
|
|
8366
8649
|
applicationStatus?: string;
|
|
8650
|
+
withdrawnDate?: string;
|
|
8367
8651
|
localTown?: string;
|
|
8368
8652
|
mwNet?: number;
|
|
8369
8653
|
refId?: string;
|
|
8370
|
-
sourceUpdate?: string;
|
|
8371
8654
|
storageCapacity?: number;
|
|
8372
8655
|
technology?: string;
|
|
8373
8656
|
windFarmName?: string;
|
|
8374
8657
|
applicationType?: string;
|
|
8375
|
-
withdrawnDate?: string;
|
|
8376
8658
|
constructionDate?: string;
|
|
8377
8659
|
developmentStatus?: string;
|
|
8378
8660
|
localRegion?: string;
|
|
@@ -8436,17 +8718,17 @@ export declare const queueAPIUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.Z
|
|
|
8436
8718
|
localState?: string;
|
|
8437
8719
|
plannedOperationalDate?: string;
|
|
8438
8720
|
projectName?: string;
|
|
8721
|
+
sourceUpdate?: string;
|
|
8439
8722
|
totalMw?: number;
|
|
8440
8723
|
applicationStatus?: string;
|
|
8724
|
+
withdrawnDate?: string;
|
|
8441
8725
|
localTown?: string;
|
|
8442
8726
|
mwNet?: number;
|
|
8443
8727
|
refId?: string;
|
|
8444
|
-
sourceUpdate?: string;
|
|
8445
8728
|
storageCapacity?: number;
|
|
8446
8729
|
technology?: string;
|
|
8447
8730
|
windFarmName?: string;
|
|
8448
8731
|
applicationType?: string;
|
|
8449
|
-
withdrawnDate?: string;
|
|
8450
8732
|
constructionDate?: string;
|
|
8451
8733
|
developmentStatus?: string;
|
|
8452
8734
|
localRegion?: string;
|
|
@@ -8577,8 +8859,11 @@ declare const euQueueExportSchema: z.ZodObject<{
|
|
|
8577
8859
|
projectName: z.ZodOptional<z.ZodString>;
|
|
8578
8860
|
queueDataset: z.ZodOptional<z.ZodString>;
|
|
8579
8861
|
queueDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
8862
|
+
reportDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
8863
|
+
sourceUpdate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
8580
8864
|
status: z.ZodOptional<z.ZodString>;
|
|
8581
8865
|
totalMw: z.ZodOptional<z.ZodNumber>;
|
|
8866
|
+
totals: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
8582
8867
|
} & {
|
|
8583
8868
|
sort: z.ZodTuple<[z.ZodUnion<[z.ZodNumber, z.ZodString]>, z.ZodNumber], null>;
|
|
8584
8869
|
} & {
|
|
@@ -8629,6 +8914,8 @@ declare const euQueueExportSchema: z.ZodObject<{
|
|
|
8629
8914
|
lon?: number;
|
|
8630
8915
|
};
|
|
8631
8916
|
};
|
|
8917
|
+
totals?: Record<string, number>;
|
|
8918
|
+
reportDate?: string;
|
|
8632
8919
|
queueDate?: string;
|
|
8633
8920
|
schema?: "eu_queue";
|
|
8634
8921
|
actualOperationalDate?: string;
|
|
@@ -8637,6 +8924,7 @@ declare const euQueueExportSchema: z.ZodObject<{
|
|
|
8637
8924
|
localState?: string;
|
|
8638
8925
|
plannedOperationalDate?: string;
|
|
8639
8926
|
projectName?: string;
|
|
8927
|
+
sourceUpdate?: string;
|
|
8640
8928
|
totalMw?: number;
|
|
8641
8929
|
}, {
|
|
8642
8930
|
sectors?: {
|
|
@@ -8675,6 +8963,8 @@ declare const euQueueExportSchema: z.ZodObject<{
|
|
|
8675
8963
|
lon?: number;
|
|
8676
8964
|
};
|
|
8677
8965
|
};
|
|
8966
|
+
totals?: Record<string, number>;
|
|
8967
|
+
reportDate?: string;
|
|
8678
8968
|
queueDate?: string;
|
|
8679
8969
|
schema?: "eu_queue";
|
|
8680
8970
|
actualOperationalDate?: string;
|
|
@@ -8683,6 +8973,7 @@ declare const euQueueExportSchema: z.ZodObject<{
|
|
|
8683
8973
|
localState?: string;
|
|
8684
8974
|
plannedOperationalDate?: string;
|
|
8685
8975
|
projectName?: string;
|
|
8976
|
+
sourceUpdate?: string;
|
|
8686
8977
|
totalMw?: number;
|
|
8687
8978
|
}>;
|
|
8688
8979
|
declare const usQueueExportSchema: z.ZodObject<{
|
|
@@ -8701,6 +8992,25 @@ declare const usQueueExportSchema: z.ZodObject<{
|
|
|
8701
8992
|
}, {
|
|
8702
8993
|
identifier?: string;
|
|
8703
8994
|
}>, "many">>;
|
|
8995
|
+
cost: z.ZodOptional<z.ZodObject<{
|
|
8996
|
+
costCompany: z.ZodString;
|
|
8997
|
+
costYear: z.ZodNumber;
|
|
8998
|
+
networkCostKW: z.ZodNumber;
|
|
8999
|
+
poiCostKW: z.ZodNumber;
|
|
9000
|
+
totalCostKW: z.ZodNumber;
|
|
9001
|
+
}, "strip", z.ZodTypeAny, {
|
|
9002
|
+
costCompany?: string;
|
|
9003
|
+
costYear?: number;
|
|
9004
|
+
networkCostKW?: number;
|
|
9005
|
+
poiCostKW?: number;
|
|
9006
|
+
totalCostKW?: number;
|
|
9007
|
+
}, {
|
|
9008
|
+
costCompany?: string;
|
|
9009
|
+
costYear?: number;
|
|
9010
|
+
networkCostKW?: number;
|
|
9011
|
+
poiCostKW?: number;
|
|
9012
|
+
totalCostKW?: number;
|
|
9013
|
+
}>>;
|
|
8704
9014
|
country: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8705
9015
|
identifier: z.ZodString;
|
|
8706
9016
|
id: z.ZodString;
|
|
@@ -8834,7 +9144,12 @@ declare const usQueueExportSchema: z.ZodObject<{
|
|
|
8834
9144
|
projectName: z.ZodOptional<z.ZodString>;
|
|
8835
9145
|
queueDataset: z.ZodOptional<z.ZodString>;
|
|
8836
9146
|
queueDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
9147
|
+
reportCount: z.ZodOptional<z.ZodNumber>;
|
|
9148
|
+
reportDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
9149
|
+
sourceUpdate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
8837
9150
|
totalMw: z.ZodOptional<z.ZodNumber>;
|
|
9151
|
+
totals: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
9152
|
+
withdrawnDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
8838
9153
|
} & {
|
|
8839
9154
|
sort: z.ZodTuple<[z.ZodUnion<[z.ZodNumber, z.ZodString]>, z.ZodNumber], null>;
|
|
8840
9155
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -8872,6 +9187,8 @@ declare const usQueueExportSchema: z.ZodObject<{
|
|
|
8872
9187
|
lon?: number;
|
|
8873
9188
|
};
|
|
8874
9189
|
};
|
|
9190
|
+
totals?: Record<string, number>;
|
|
9191
|
+
reportDate?: string;
|
|
8875
9192
|
applicationTags?: {
|
|
8876
9193
|
identifier?: string;
|
|
8877
9194
|
}[];
|
|
@@ -8889,10 +9206,20 @@ declare const usQueueExportSchema: z.ZodObject<{
|
|
|
8889
9206
|
}[];
|
|
8890
9207
|
plannedOperationalDate?: string;
|
|
8891
9208
|
projectName?: string;
|
|
9209
|
+
sourceUpdate?: string;
|
|
8892
9210
|
totalMw?: number;
|
|
8893
9211
|
applicationStatus?: string;
|
|
9212
|
+
cost?: {
|
|
9213
|
+
costCompany?: string;
|
|
9214
|
+
costYear?: number;
|
|
9215
|
+
networkCostKW?: number;
|
|
9216
|
+
poiCostKW?: number;
|
|
9217
|
+
totalCostKW?: number;
|
|
9218
|
+
};
|
|
8894
9219
|
interconnectingEntity?: string;
|
|
8895
9220
|
poiLocation?: string | number;
|
|
9221
|
+
reportCount?: number;
|
|
9222
|
+
withdrawnDate?: string;
|
|
8896
9223
|
}, {
|
|
8897
9224
|
id?: string;
|
|
8898
9225
|
sort?: [string | number, number, ...unknown[]];
|
|
@@ -8928,6 +9255,8 @@ declare const usQueueExportSchema: z.ZodObject<{
|
|
|
8928
9255
|
lon?: number;
|
|
8929
9256
|
};
|
|
8930
9257
|
};
|
|
9258
|
+
totals?: Record<string, number>;
|
|
9259
|
+
reportDate?: string;
|
|
8931
9260
|
applicationTags?: {
|
|
8932
9261
|
identifier?: string;
|
|
8933
9262
|
}[];
|
|
@@ -8945,10 +9274,20 @@ declare const usQueueExportSchema: z.ZodObject<{
|
|
|
8945
9274
|
}[];
|
|
8946
9275
|
plannedOperationalDate?: string;
|
|
8947
9276
|
projectName?: string;
|
|
9277
|
+
sourceUpdate?: string;
|
|
8948
9278
|
totalMw?: number;
|
|
8949
9279
|
applicationStatus?: string;
|
|
9280
|
+
cost?: {
|
|
9281
|
+
costCompany?: string;
|
|
9282
|
+
costYear?: number;
|
|
9283
|
+
networkCostKW?: number;
|
|
9284
|
+
poiCostKW?: number;
|
|
9285
|
+
totalCostKW?: number;
|
|
9286
|
+
};
|
|
8950
9287
|
interconnectingEntity?: string;
|
|
8951
9288
|
poiLocation?: string | number;
|
|
9289
|
+
reportCount?: number;
|
|
9290
|
+
withdrawnDate?: string;
|
|
8952
9291
|
}>;
|
|
8953
9292
|
export declare const queueExportUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.ZodObject<{
|
|
8954
9293
|
id: z.ZodString;
|
|
@@ -9062,8 +9401,11 @@ export declare const queueExportUnionSchema: z.ZodDiscriminatedUnion<"schema", [
|
|
|
9062
9401
|
projectName: z.ZodOptional<z.ZodString>;
|
|
9063
9402
|
queueDataset: z.ZodOptional<z.ZodString>;
|
|
9064
9403
|
queueDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
9404
|
+
reportDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
9405
|
+
sourceUpdate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
9065
9406
|
status: z.ZodOptional<z.ZodString>;
|
|
9066
9407
|
totalMw: z.ZodOptional<z.ZodNumber>;
|
|
9408
|
+
totals: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
9067
9409
|
} & {
|
|
9068
9410
|
sort: z.ZodTuple<[z.ZodUnion<[z.ZodNumber, z.ZodString]>, z.ZodNumber], null>;
|
|
9069
9411
|
} & {
|
|
@@ -9114,6 +9456,8 @@ export declare const queueExportUnionSchema: z.ZodDiscriminatedUnion<"schema", [
|
|
|
9114
9456
|
lon?: number;
|
|
9115
9457
|
};
|
|
9116
9458
|
};
|
|
9459
|
+
totals?: Record<string, number>;
|
|
9460
|
+
reportDate?: string;
|
|
9117
9461
|
queueDate?: string;
|
|
9118
9462
|
schema?: "eu_queue";
|
|
9119
9463
|
actualOperationalDate?: string;
|
|
@@ -9122,6 +9466,7 @@ export declare const queueExportUnionSchema: z.ZodDiscriminatedUnion<"schema", [
|
|
|
9122
9466
|
localState?: string;
|
|
9123
9467
|
plannedOperationalDate?: string;
|
|
9124
9468
|
projectName?: string;
|
|
9469
|
+
sourceUpdate?: string;
|
|
9125
9470
|
totalMw?: number;
|
|
9126
9471
|
}, {
|
|
9127
9472
|
sectors?: {
|
|
@@ -9160,6 +9505,8 @@ export declare const queueExportUnionSchema: z.ZodDiscriminatedUnion<"schema", [
|
|
|
9160
9505
|
lon?: number;
|
|
9161
9506
|
};
|
|
9162
9507
|
};
|
|
9508
|
+
totals?: Record<string, number>;
|
|
9509
|
+
reportDate?: string;
|
|
9163
9510
|
queueDate?: string;
|
|
9164
9511
|
schema?: "eu_queue";
|
|
9165
9512
|
actualOperationalDate?: string;
|
|
@@ -9168,6 +9515,7 @@ export declare const queueExportUnionSchema: z.ZodDiscriminatedUnion<"schema", [
|
|
|
9168
9515
|
localState?: string;
|
|
9169
9516
|
plannedOperationalDate?: string;
|
|
9170
9517
|
projectName?: string;
|
|
9518
|
+
sourceUpdate?: string;
|
|
9171
9519
|
totalMw?: number;
|
|
9172
9520
|
}>, z.ZodObject<{
|
|
9173
9521
|
id: z.ZodString;
|
|
@@ -9185,6 +9533,25 @@ export declare const queueExportUnionSchema: z.ZodDiscriminatedUnion<"schema", [
|
|
|
9185
9533
|
}, {
|
|
9186
9534
|
identifier?: string;
|
|
9187
9535
|
}>, "many">>;
|
|
9536
|
+
cost: z.ZodOptional<z.ZodObject<{
|
|
9537
|
+
costCompany: z.ZodString;
|
|
9538
|
+
costYear: z.ZodNumber;
|
|
9539
|
+
networkCostKW: z.ZodNumber;
|
|
9540
|
+
poiCostKW: z.ZodNumber;
|
|
9541
|
+
totalCostKW: z.ZodNumber;
|
|
9542
|
+
}, "strip", z.ZodTypeAny, {
|
|
9543
|
+
costCompany?: string;
|
|
9544
|
+
costYear?: number;
|
|
9545
|
+
networkCostKW?: number;
|
|
9546
|
+
poiCostKW?: number;
|
|
9547
|
+
totalCostKW?: number;
|
|
9548
|
+
}, {
|
|
9549
|
+
costCompany?: string;
|
|
9550
|
+
costYear?: number;
|
|
9551
|
+
networkCostKW?: number;
|
|
9552
|
+
poiCostKW?: number;
|
|
9553
|
+
totalCostKW?: number;
|
|
9554
|
+
}>>;
|
|
9188
9555
|
country: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
9189
9556
|
identifier: z.ZodString;
|
|
9190
9557
|
id: z.ZodString;
|
|
@@ -9318,7 +9685,12 @@ export declare const queueExportUnionSchema: z.ZodDiscriminatedUnion<"schema", [
|
|
|
9318
9685
|
projectName: z.ZodOptional<z.ZodString>;
|
|
9319
9686
|
queueDataset: z.ZodOptional<z.ZodString>;
|
|
9320
9687
|
queueDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
9688
|
+
reportCount: z.ZodOptional<z.ZodNumber>;
|
|
9689
|
+
reportDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
9690
|
+
sourceUpdate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
9321
9691
|
totalMw: z.ZodOptional<z.ZodNumber>;
|
|
9692
|
+
totals: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
9693
|
+
withdrawnDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
9322
9694
|
} & {
|
|
9323
9695
|
sort: z.ZodTuple<[z.ZodUnion<[z.ZodNumber, z.ZodString]>, z.ZodNumber], null>;
|
|
9324
9696
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -9356,6 +9728,8 @@ export declare const queueExportUnionSchema: z.ZodDiscriminatedUnion<"schema", [
|
|
|
9356
9728
|
lon?: number;
|
|
9357
9729
|
};
|
|
9358
9730
|
};
|
|
9731
|
+
totals?: Record<string, number>;
|
|
9732
|
+
reportDate?: string;
|
|
9359
9733
|
applicationTags?: {
|
|
9360
9734
|
identifier?: string;
|
|
9361
9735
|
}[];
|
|
@@ -9373,10 +9747,20 @@ export declare const queueExportUnionSchema: z.ZodDiscriminatedUnion<"schema", [
|
|
|
9373
9747
|
}[];
|
|
9374
9748
|
plannedOperationalDate?: string;
|
|
9375
9749
|
projectName?: string;
|
|
9750
|
+
sourceUpdate?: string;
|
|
9376
9751
|
totalMw?: number;
|
|
9377
9752
|
applicationStatus?: string;
|
|
9753
|
+
cost?: {
|
|
9754
|
+
costCompany?: string;
|
|
9755
|
+
costYear?: number;
|
|
9756
|
+
networkCostKW?: number;
|
|
9757
|
+
poiCostKW?: number;
|
|
9758
|
+
totalCostKW?: number;
|
|
9759
|
+
};
|
|
9378
9760
|
interconnectingEntity?: string;
|
|
9379
9761
|
poiLocation?: string | number;
|
|
9762
|
+
reportCount?: number;
|
|
9763
|
+
withdrawnDate?: string;
|
|
9380
9764
|
}, {
|
|
9381
9765
|
id?: string;
|
|
9382
9766
|
sort?: [string | number, number, ...unknown[]];
|
|
@@ -9412,6 +9796,8 @@ export declare const queueExportUnionSchema: z.ZodDiscriminatedUnion<"schema", [
|
|
|
9412
9796
|
lon?: number;
|
|
9413
9797
|
};
|
|
9414
9798
|
};
|
|
9799
|
+
totals?: Record<string, number>;
|
|
9800
|
+
reportDate?: string;
|
|
9415
9801
|
applicationTags?: {
|
|
9416
9802
|
identifier?: string;
|
|
9417
9803
|
}[];
|
|
@@ -9429,10 +9815,20 @@ export declare const queueExportUnionSchema: z.ZodDiscriminatedUnion<"schema", [
|
|
|
9429
9815
|
}[];
|
|
9430
9816
|
plannedOperationalDate?: string;
|
|
9431
9817
|
projectName?: string;
|
|
9818
|
+
sourceUpdate?: string;
|
|
9432
9819
|
totalMw?: number;
|
|
9433
9820
|
applicationStatus?: string;
|
|
9821
|
+
cost?: {
|
|
9822
|
+
costCompany?: string;
|
|
9823
|
+
costYear?: number;
|
|
9824
|
+
networkCostKW?: number;
|
|
9825
|
+
poiCostKW?: number;
|
|
9826
|
+
totalCostKW?: number;
|
|
9827
|
+
};
|
|
9434
9828
|
interconnectingEntity?: string;
|
|
9435
9829
|
poiLocation?: string | number;
|
|
9830
|
+
reportCount?: number;
|
|
9831
|
+
withdrawnDate?: string;
|
|
9436
9832
|
}>]>;
|
|
9437
9833
|
export type QueueExportUnionType = z.infer<typeof queueExportUnionSchema>;
|
|
9438
9834
|
export type EUQueueExportType = z.infer<typeof euQueueExportSchema>;
|