@new-project-media/client-frontends-shared-types 2.0.23 → 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.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@new-project-media/client-frontends-shared-types",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.24",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"build": "tsc -p tsconfig.json",
|
|
6
6
|
"postbuild": "mkdir -p ../../dist/packages/client-frontends-shared-types/ && cp package.json ../../dist/packages/client-frontends-shared-types/",
|
|
@@ -122,6 +122,7 @@ declare const euQueueListSchema: z.ZodObject<{
|
|
|
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
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>]>>;
|
|
125
126
|
status: z.ZodOptional<z.ZodString>;
|
|
126
127
|
totalMw: z.ZodOptional<z.ZodNumber>;
|
|
127
128
|
totals: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
@@ -167,6 +168,7 @@ declare const euQueueListSchema: z.ZodObject<{
|
|
|
167
168
|
localState?: string;
|
|
168
169
|
plannedOperationalDate?: string;
|
|
169
170
|
projectName?: string;
|
|
171
|
+
sourceUpdate?: string;
|
|
170
172
|
totalMw?: number;
|
|
171
173
|
}, {
|
|
172
174
|
id?: string;
|
|
@@ -210,6 +212,7 @@ declare const euQueueListSchema: z.ZodObject<{
|
|
|
210
212
|
localState?: string;
|
|
211
213
|
plannedOperationalDate?: string;
|
|
212
214
|
projectName?: string;
|
|
215
|
+
sourceUpdate?: string;
|
|
213
216
|
totalMw?: number;
|
|
214
217
|
}>;
|
|
215
218
|
declare const usQueueListSchema: z.ZodObject<{
|
|
@@ -382,6 +385,7 @@ declare const usQueueListSchema: z.ZodObject<{
|
|
|
382
385
|
queueDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
383
386
|
reportCount: z.ZodOptional<z.ZodNumber>;
|
|
384
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>]>>;
|
|
385
389
|
totalMw: z.ZodOptional<z.ZodNumber>;
|
|
386
390
|
totals: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
387
391
|
withdrawnDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
@@ -438,6 +442,7 @@ declare const usQueueListSchema: z.ZodObject<{
|
|
|
438
442
|
}[];
|
|
439
443
|
plannedOperationalDate?: string;
|
|
440
444
|
projectName?: string;
|
|
445
|
+
sourceUpdate?: string;
|
|
441
446
|
totalMw?: number;
|
|
442
447
|
applicationStatus?: string;
|
|
443
448
|
cost?: {
|
|
@@ -504,6 +509,7 @@ declare const usQueueListSchema: z.ZodObject<{
|
|
|
504
509
|
}[];
|
|
505
510
|
plannedOperationalDate?: string;
|
|
506
511
|
projectName?: string;
|
|
512
|
+
sourceUpdate?: string;
|
|
507
513
|
totalMw?: number;
|
|
508
514
|
applicationStatus?: string;
|
|
509
515
|
cost?: {
|
|
@@ -594,12 +600,12 @@ declare const euQueueDetailsSchema: z.ZodObject<{
|
|
|
594
600
|
localCounty?: string;
|
|
595
601
|
localState?: string;
|
|
596
602
|
projectName?: string;
|
|
603
|
+
sourceUpdate?: string;
|
|
597
604
|
totalMw?: number;
|
|
598
605
|
applicationStatus?: string;
|
|
599
606
|
localTown?: string;
|
|
600
607
|
mwNet?: number;
|
|
601
608
|
refId?: string;
|
|
602
|
-
sourceUpdate?: string;
|
|
603
609
|
storageCapacity?: number;
|
|
604
610
|
technology?: string;
|
|
605
611
|
windFarmName?: string;
|
|
@@ -627,12 +633,12 @@ declare const euQueueDetailsSchema: z.ZodObject<{
|
|
|
627
633
|
localCounty?: string;
|
|
628
634
|
localState?: string;
|
|
629
635
|
projectName?: string;
|
|
636
|
+
sourceUpdate?: string;
|
|
630
637
|
totalMw?: number;
|
|
631
638
|
applicationStatus?: string;
|
|
632
639
|
localTown?: string;
|
|
633
640
|
mwNet?: number;
|
|
634
641
|
refId?: string;
|
|
635
|
-
sourceUpdate?: string;
|
|
636
642
|
storageCapacity?: number;
|
|
637
643
|
technology?: string;
|
|
638
644
|
windFarmName?: string;
|
|
@@ -1121,6 +1127,7 @@ declare const usQueueDetailsSchema: z.ZodObject<{
|
|
|
1121
1127
|
}[];
|
|
1122
1128
|
plannedOperationalDate?: string;
|
|
1123
1129
|
projectName?: string;
|
|
1130
|
+
sourceUpdate?: string;
|
|
1124
1131
|
totalMw?: number;
|
|
1125
1132
|
applicationStatus?: string;
|
|
1126
1133
|
cost?: {
|
|
@@ -1134,7 +1141,6 @@ declare const usQueueDetailsSchema: z.ZodObject<{
|
|
|
1134
1141
|
poiLocation?: string | number;
|
|
1135
1142
|
reportCount?: number;
|
|
1136
1143
|
withdrawnDate?: string;
|
|
1137
|
-
sourceUpdate?: string;
|
|
1138
1144
|
applicationType?: string;
|
|
1139
1145
|
dateCreated?: string;
|
|
1140
1146
|
events?: {
|
|
@@ -1268,6 +1274,7 @@ declare const usQueueDetailsSchema: z.ZodObject<{
|
|
|
1268
1274
|
}[];
|
|
1269
1275
|
plannedOperationalDate?: string;
|
|
1270
1276
|
projectName?: string;
|
|
1277
|
+
sourceUpdate?: string;
|
|
1271
1278
|
totalMw?: number;
|
|
1272
1279
|
applicationStatus?: string;
|
|
1273
1280
|
cost?: {
|
|
@@ -1281,7 +1288,6 @@ declare const usQueueDetailsSchema: z.ZodObject<{
|
|
|
1281
1288
|
poiLocation?: string | number;
|
|
1282
1289
|
reportCount?: number;
|
|
1283
1290
|
withdrawnDate?: string;
|
|
1284
|
-
sourceUpdate?: string;
|
|
1285
1291
|
applicationType?: string;
|
|
1286
1292
|
dateCreated?: string;
|
|
1287
1293
|
events?: {
|
|
@@ -1436,12 +1442,12 @@ declare const queueDetailsSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1436
1442
|
localCounty?: string;
|
|
1437
1443
|
localState?: string;
|
|
1438
1444
|
projectName?: string;
|
|
1445
|
+
sourceUpdate?: string;
|
|
1439
1446
|
totalMw?: number;
|
|
1440
1447
|
applicationStatus?: string;
|
|
1441
1448
|
localTown?: string;
|
|
1442
1449
|
mwNet?: number;
|
|
1443
1450
|
refId?: string;
|
|
1444
|
-
sourceUpdate?: string;
|
|
1445
1451
|
storageCapacity?: number;
|
|
1446
1452
|
technology?: string;
|
|
1447
1453
|
windFarmName?: string;
|
|
@@ -1469,12 +1475,12 @@ declare const queueDetailsSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1469
1475
|
localCounty?: string;
|
|
1470
1476
|
localState?: string;
|
|
1471
1477
|
projectName?: string;
|
|
1478
|
+
sourceUpdate?: string;
|
|
1472
1479
|
totalMw?: number;
|
|
1473
1480
|
applicationStatus?: string;
|
|
1474
1481
|
localTown?: string;
|
|
1475
1482
|
mwNet?: number;
|
|
1476
1483
|
refId?: string;
|
|
1477
|
-
sourceUpdate?: string;
|
|
1478
1484
|
storageCapacity?: number;
|
|
1479
1485
|
technology?: string;
|
|
1480
1486
|
windFarmName?: string;
|
|
@@ -1962,6 +1968,7 @@ declare const queueDetailsSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1962
1968
|
}[];
|
|
1963
1969
|
plannedOperationalDate?: string;
|
|
1964
1970
|
projectName?: string;
|
|
1971
|
+
sourceUpdate?: string;
|
|
1965
1972
|
totalMw?: number;
|
|
1966
1973
|
applicationStatus?: string;
|
|
1967
1974
|
cost?: {
|
|
@@ -1975,7 +1982,6 @@ declare const queueDetailsSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1975
1982
|
poiLocation?: string | number;
|
|
1976
1983
|
reportCount?: number;
|
|
1977
1984
|
withdrawnDate?: string;
|
|
1978
|
-
sourceUpdate?: string;
|
|
1979
1985
|
applicationType?: string;
|
|
1980
1986
|
dateCreated?: string;
|
|
1981
1987
|
events?: {
|
|
@@ -2109,6 +2115,7 @@ declare const queueDetailsSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2109
2115
|
}[];
|
|
2110
2116
|
plannedOperationalDate?: string;
|
|
2111
2117
|
projectName?: string;
|
|
2118
|
+
sourceUpdate?: string;
|
|
2112
2119
|
totalMw?: number;
|
|
2113
2120
|
applicationStatus?: string;
|
|
2114
2121
|
cost?: {
|
|
@@ -2122,7 +2129,6 @@ declare const queueDetailsSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2122
2129
|
poiLocation?: string | number;
|
|
2123
2130
|
reportCount?: number;
|
|
2124
2131
|
withdrawnDate?: string;
|
|
2125
|
-
sourceUpdate?: string;
|
|
2126
2132
|
applicationType?: string;
|
|
2127
2133
|
dateCreated?: string;
|
|
2128
2134
|
events?: {
|
|
@@ -2277,12 +2283,12 @@ export declare const queueDetailsUnionSchema: z.ZodDiscriminatedUnion<"schema",
|
|
|
2277
2283
|
localCounty?: string;
|
|
2278
2284
|
localState?: string;
|
|
2279
2285
|
projectName?: string;
|
|
2286
|
+
sourceUpdate?: string;
|
|
2280
2287
|
totalMw?: number;
|
|
2281
2288
|
applicationStatus?: string;
|
|
2282
2289
|
localTown?: string;
|
|
2283
2290
|
mwNet?: number;
|
|
2284
2291
|
refId?: string;
|
|
2285
|
-
sourceUpdate?: string;
|
|
2286
2292
|
storageCapacity?: number;
|
|
2287
2293
|
technology?: string;
|
|
2288
2294
|
windFarmName?: string;
|
|
@@ -2310,12 +2316,12 @@ export declare const queueDetailsUnionSchema: z.ZodDiscriminatedUnion<"schema",
|
|
|
2310
2316
|
localCounty?: string;
|
|
2311
2317
|
localState?: string;
|
|
2312
2318
|
projectName?: string;
|
|
2319
|
+
sourceUpdate?: string;
|
|
2313
2320
|
totalMw?: number;
|
|
2314
2321
|
applicationStatus?: string;
|
|
2315
2322
|
localTown?: string;
|
|
2316
2323
|
mwNet?: number;
|
|
2317
2324
|
refId?: string;
|
|
2318
|
-
sourceUpdate?: string;
|
|
2319
2325
|
storageCapacity?: number;
|
|
2320
2326
|
technology?: string;
|
|
2321
2327
|
windFarmName?: string;
|
|
@@ -2803,6 +2809,7 @@ export declare const queueDetailsUnionSchema: z.ZodDiscriminatedUnion<"schema",
|
|
|
2803
2809
|
}[];
|
|
2804
2810
|
plannedOperationalDate?: string;
|
|
2805
2811
|
projectName?: string;
|
|
2812
|
+
sourceUpdate?: string;
|
|
2806
2813
|
totalMw?: number;
|
|
2807
2814
|
applicationStatus?: string;
|
|
2808
2815
|
cost?: {
|
|
@@ -2816,7 +2823,6 @@ export declare const queueDetailsUnionSchema: z.ZodDiscriminatedUnion<"schema",
|
|
|
2816
2823
|
poiLocation?: string | number;
|
|
2817
2824
|
reportCount?: number;
|
|
2818
2825
|
withdrawnDate?: string;
|
|
2819
|
-
sourceUpdate?: string;
|
|
2820
2826
|
applicationType?: string;
|
|
2821
2827
|
dateCreated?: string;
|
|
2822
2828
|
events?: {
|
|
@@ -2950,6 +2956,7 @@ export declare const queueDetailsUnionSchema: z.ZodDiscriminatedUnion<"schema",
|
|
|
2950
2956
|
}[];
|
|
2951
2957
|
plannedOperationalDate?: string;
|
|
2952
2958
|
projectName?: string;
|
|
2959
|
+
sourceUpdate?: string;
|
|
2953
2960
|
totalMw?: number;
|
|
2954
2961
|
applicationStatus?: string;
|
|
2955
2962
|
cost?: {
|
|
@@ -2963,7 +2970,6 @@ export declare const queueDetailsUnionSchema: z.ZodDiscriminatedUnion<"schema",
|
|
|
2963
2970
|
poiLocation?: string | number;
|
|
2964
2971
|
reportCount?: number;
|
|
2965
2972
|
withdrawnDate?: string;
|
|
2966
|
-
sourceUpdate?: string;
|
|
2967
2973
|
applicationType?: string;
|
|
2968
2974
|
dateCreated?: string;
|
|
2969
2975
|
events?: {
|
|
@@ -3160,6 +3166,7 @@ declare const euQueueListWithSortSchema: z.ZodObject<{
|
|
|
3160
3166
|
queueDataset: z.ZodOptional<z.ZodString>;
|
|
3161
3167
|
queueDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
3162
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>]>>;
|
|
3163
3170
|
status: z.ZodOptional<z.ZodString>;
|
|
3164
3171
|
totalMw: z.ZodOptional<z.ZodNumber>;
|
|
3165
3172
|
totals: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
@@ -3208,6 +3215,7 @@ declare const euQueueListWithSortSchema: z.ZodObject<{
|
|
|
3208
3215
|
localState?: string;
|
|
3209
3216
|
plannedOperationalDate?: string;
|
|
3210
3217
|
projectName?: string;
|
|
3218
|
+
sourceUpdate?: string;
|
|
3211
3219
|
totalMw?: number;
|
|
3212
3220
|
}, {
|
|
3213
3221
|
id?: string;
|
|
@@ -3252,6 +3260,7 @@ declare const euQueueListWithSortSchema: z.ZodObject<{
|
|
|
3252
3260
|
localState?: string;
|
|
3253
3261
|
plannedOperationalDate?: string;
|
|
3254
3262
|
projectName?: string;
|
|
3263
|
+
sourceUpdate?: string;
|
|
3255
3264
|
totalMw?: number;
|
|
3256
3265
|
}>;
|
|
3257
3266
|
declare const usQueueListWithSortSchema: z.ZodObject<{
|
|
@@ -3424,6 +3433,7 @@ declare const usQueueListWithSortSchema: z.ZodObject<{
|
|
|
3424
3433
|
queueDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
3425
3434
|
reportCount: z.ZodOptional<z.ZodNumber>;
|
|
3426
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>]>>;
|
|
3427
3437
|
totalMw: z.ZodOptional<z.ZodNumber>;
|
|
3428
3438
|
totals: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
3429
3439
|
withdrawnDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
@@ -3483,6 +3493,7 @@ declare const usQueueListWithSortSchema: z.ZodObject<{
|
|
|
3483
3493
|
}[];
|
|
3484
3494
|
plannedOperationalDate?: string;
|
|
3485
3495
|
projectName?: string;
|
|
3496
|
+
sourceUpdate?: string;
|
|
3486
3497
|
totalMw?: number;
|
|
3487
3498
|
applicationStatus?: string;
|
|
3488
3499
|
cost?: {
|
|
@@ -3550,6 +3561,7 @@ declare const usQueueListWithSortSchema: z.ZodObject<{
|
|
|
3550
3561
|
}[];
|
|
3551
3562
|
plannedOperationalDate?: string;
|
|
3552
3563
|
projectName?: string;
|
|
3564
|
+
sourceUpdate?: string;
|
|
3553
3565
|
totalMw?: number;
|
|
3554
3566
|
applicationStatus?: string;
|
|
3555
3567
|
cost?: {
|
|
@@ -3677,6 +3689,7 @@ declare const queueListSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3677
3689
|
queueDataset: z.ZodOptional<z.ZodString>;
|
|
3678
3690
|
queueDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
3679
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>]>>;
|
|
3680
3693
|
status: z.ZodOptional<z.ZodString>;
|
|
3681
3694
|
totalMw: z.ZodOptional<z.ZodNumber>;
|
|
3682
3695
|
totals: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
@@ -3725,6 +3738,7 @@ declare const queueListSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3725
3738
|
localState?: string;
|
|
3726
3739
|
plannedOperationalDate?: string;
|
|
3727
3740
|
projectName?: string;
|
|
3741
|
+
sourceUpdate?: string;
|
|
3728
3742
|
totalMw?: number;
|
|
3729
3743
|
}, {
|
|
3730
3744
|
id?: string;
|
|
@@ -3769,6 +3783,7 @@ declare const queueListSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3769
3783
|
localState?: string;
|
|
3770
3784
|
plannedOperationalDate?: string;
|
|
3771
3785
|
projectName?: string;
|
|
3786
|
+
sourceUpdate?: string;
|
|
3772
3787
|
totalMw?: number;
|
|
3773
3788
|
}>, z.ZodObject<{
|
|
3774
3789
|
id: z.ZodString;
|
|
@@ -3940,6 +3955,7 @@ declare const queueListSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3940
3955
|
queueDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
3941
3956
|
reportCount: z.ZodOptional<z.ZodNumber>;
|
|
3942
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>]>>;
|
|
3943
3959
|
totalMw: z.ZodOptional<z.ZodNumber>;
|
|
3944
3960
|
totals: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
3945
3961
|
withdrawnDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
@@ -3999,6 +4015,7 @@ declare const queueListSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3999
4015
|
}[];
|
|
4000
4016
|
plannedOperationalDate?: string;
|
|
4001
4017
|
projectName?: string;
|
|
4018
|
+
sourceUpdate?: string;
|
|
4002
4019
|
totalMw?: number;
|
|
4003
4020
|
applicationStatus?: string;
|
|
4004
4021
|
cost?: {
|
|
@@ -4066,6 +4083,7 @@ declare const queueListSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
4066
4083
|
}[];
|
|
4067
4084
|
plannedOperationalDate?: string;
|
|
4068
4085
|
projectName?: string;
|
|
4086
|
+
sourceUpdate?: string;
|
|
4069
4087
|
totalMw?: number;
|
|
4070
4088
|
applicationStatus?: string;
|
|
4071
4089
|
cost?: {
|
|
@@ -4193,6 +4211,7 @@ export declare const queueListUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.
|
|
|
4193
4211
|
queueDataset: z.ZodOptional<z.ZodString>;
|
|
4194
4212
|
queueDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
4195
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>]>>;
|
|
4196
4215
|
status: z.ZodOptional<z.ZodString>;
|
|
4197
4216
|
totalMw: z.ZodOptional<z.ZodNumber>;
|
|
4198
4217
|
totals: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
@@ -4241,6 +4260,7 @@ export declare const queueListUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.
|
|
|
4241
4260
|
localState?: string;
|
|
4242
4261
|
plannedOperationalDate?: string;
|
|
4243
4262
|
projectName?: string;
|
|
4263
|
+
sourceUpdate?: string;
|
|
4244
4264
|
totalMw?: number;
|
|
4245
4265
|
}, {
|
|
4246
4266
|
id?: string;
|
|
@@ -4285,6 +4305,7 @@ export declare const queueListUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.
|
|
|
4285
4305
|
localState?: string;
|
|
4286
4306
|
plannedOperationalDate?: string;
|
|
4287
4307
|
projectName?: string;
|
|
4308
|
+
sourceUpdate?: string;
|
|
4288
4309
|
totalMw?: number;
|
|
4289
4310
|
}>, z.ZodObject<{
|
|
4290
4311
|
id: z.ZodString;
|
|
@@ -4456,6 +4477,7 @@ export declare const queueListUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.
|
|
|
4456
4477
|
queueDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
4457
4478
|
reportCount: z.ZodOptional<z.ZodNumber>;
|
|
4458
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>]>>;
|
|
4459
4481
|
totalMw: z.ZodOptional<z.ZodNumber>;
|
|
4460
4482
|
totals: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
4461
4483
|
withdrawnDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
@@ -4515,6 +4537,7 @@ export declare const queueListUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.
|
|
|
4515
4537
|
}[];
|
|
4516
4538
|
plannedOperationalDate?: string;
|
|
4517
4539
|
projectName?: string;
|
|
4540
|
+
sourceUpdate?: string;
|
|
4518
4541
|
totalMw?: number;
|
|
4519
4542
|
applicationStatus?: string;
|
|
4520
4543
|
cost?: {
|
|
@@ -4582,6 +4605,7 @@ export declare const queueListUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.
|
|
|
4582
4605
|
}[];
|
|
4583
4606
|
plannedOperationalDate?: string;
|
|
4584
4607
|
projectName?: string;
|
|
4608
|
+
sourceUpdate?: string;
|
|
4585
4609
|
totalMw?: number;
|
|
4586
4610
|
applicationStatus?: string;
|
|
4587
4611
|
cost?: {
|
|
@@ -4709,6 +4733,7 @@ export declare const queueListBaseUnionSchema: z.ZodDiscriminatedUnion<"schema",
|
|
|
4709
4733
|
queueDataset: z.ZodOptional<z.ZodString>;
|
|
4710
4734
|
queueDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
4711
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>]>>;
|
|
4712
4737
|
status: z.ZodOptional<z.ZodString>;
|
|
4713
4738
|
totalMw: z.ZodOptional<z.ZodNumber>;
|
|
4714
4739
|
totals: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
@@ -4754,6 +4779,7 @@ export declare const queueListBaseUnionSchema: z.ZodDiscriminatedUnion<"schema",
|
|
|
4754
4779
|
localState?: string;
|
|
4755
4780
|
plannedOperationalDate?: string;
|
|
4756
4781
|
projectName?: string;
|
|
4782
|
+
sourceUpdate?: string;
|
|
4757
4783
|
totalMw?: number;
|
|
4758
4784
|
}, {
|
|
4759
4785
|
id?: string;
|
|
@@ -4797,6 +4823,7 @@ export declare const queueListBaseUnionSchema: z.ZodDiscriminatedUnion<"schema",
|
|
|
4797
4823
|
localState?: string;
|
|
4798
4824
|
plannedOperationalDate?: string;
|
|
4799
4825
|
projectName?: string;
|
|
4826
|
+
sourceUpdate?: string;
|
|
4800
4827
|
totalMw?: number;
|
|
4801
4828
|
}>, z.ZodObject<{
|
|
4802
4829
|
id: z.ZodString;
|
|
@@ -4968,6 +4995,7 @@ export declare const queueListBaseUnionSchema: z.ZodDiscriminatedUnion<"schema",
|
|
|
4968
4995
|
queueDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
4969
4996
|
reportCount: z.ZodOptional<z.ZodNumber>;
|
|
4970
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>]>>;
|
|
4971
4999
|
totalMw: z.ZodOptional<z.ZodNumber>;
|
|
4972
5000
|
totals: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
4973
5001
|
withdrawnDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
@@ -5024,6 +5052,7 @@ export declare const queueListBaseUnionSchema: z.ZodDiscriminatedUnion<"schema",
|
|
|
5024
5052
|
}[];
|
|
5025
5053
|
plannedOperationalDate?: string;
|
|
5026
5054
|
projectName?: string;
|
|
5055
|
+
sourceUpdate?: string;
|
|
5027
5056
|
totalMw?: number;
|
|
5028
5057
|
applicationStatus?: string;
|
|
5029
5058
|
cost?: {
|
|
@@ -5090,6 +5119,7 @@ export declare const queueListBaseUnionSchema: z.ZodDiscriminatedUnion<"schema",
|
|
|
5090
5119
|
}[];
|
|
5091
5120
|
plannedOperationalDate?: string;
|
|
5092
5121
|
projectName?: string;
|
|
5122
|
+
sourceUpdate?: string;
|
|
5093
5123
|
totalMw?: number;
|
|
5094
5124
|
applicationStatus?: string;
|
|
5095
5125
|
cost?: {
|
|
@@ -5321,13 +5351,13 @@ export declare const euQueueAPISchema: z.ZodObject<{
|
|
|
5321
5351
|
localState?: string;
|
|
5322
5352
|
plannedOperationalDate?: string;
|
|
5323
5353
|
projectName?: string;
|
|
5354
|
+
sourceUpdate?: string;
|
|
5324
5355
|
totalMw?: number;
|
|
5325
5356
|
applicationStatus?: string;
|
|
5326
5357
|
withdrawnDate?: string;
|
|
5327
5358
|
localTown?: string;
|
|
5328
5359
|
mwNet?: number;
|
|
5329
5360
|
refId?: string;
|
|
5330
|
-
sourceUpdate?: string;
|
|
5331
5361
|
storageCapacity?: number;
|
|
5332
5362
|
technology?: string;
|
|
5333
5363
|
windFarmName?: string;
|
|
@@ -5395,13 +5425,13 @@ export declare const euQueueAPISchema: z.ZodObject<{
|
|
|
5395
5425
|
localState?: string;
|
|
5396
5426
|
plannedOperationalDate?: string;
|
|
5397
5427
|
projectName?: string;
|
|
5428
|
+
sourceUpdate?: string;
|
|
5398
5429
|
totalMw?: number;
|
|
5399
5430
|
applicationStatus?: string;
|
|
5400
5431
|
withdrawnDate?: string;
|
|
5401
5432
|
localTown?: string;
|
|
5402
5433
|
mwNet?: number;
|
|
5403
5434
|
refId?: string;
|
|
5404
|
-
sourceUpdate?: string;
|
|
5405
5435
|
storageCapacity?: number;
|
|
5406
5436
|
technology?: string;
|
|
5407
5437
|
windFarmName?: string;
|
|
@@ -5734,7 +5764,6 @@ export declare const usQueueAPISchema: z.ZodObject<{
|
|
|
5734
5764
|
id?: string;
|
|
5735
5765
|
identifier?: string;
|
|
5736
5766
|
}>, "many">;
|
|
5737
|
-
sourceUpdate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
5738
5767
|
signals: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5739
5768
|
filingDate: z.ZodString;
|
|
5740
5769
|
headline: z.ZodString;
|
|
@@ -5924,6 +5953,7 @@ export declare const usQueueAPISchema: z.ZodObject<{
|
|
|
5924
5953
|
queueDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
5925
5954
|
reportCount: z.ZodOptional<z.ZodNumber>;
|
|
5926
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>]>>;
|
|
5927
5957
|
totalMw: z.ZodOptional<z.ZodNumber>;
|
|
5928
5958
|
withdrawnDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
5929
5959
|
} & {
|
|
@@ -6031,6 +6061,7 @@ export declare const usQueueAPISchema: z.ZodObject<{
|
|
|
6031
6061
|
}[];
|
|
6032
6062
|
plannedOperationalDate?: string;
|
|
6033
6063
|
projectName?: string;
|
|
6064
|
+
sourceUpdate?: string;
|
|
6034
6065
|
totalMw?: number;
|
|
6035
6066
|
applicationStatus?: string;
|
|
6036
6067
|
cost?: {
|
|
@@ -6044,7 +6075,6 @@ export declare const usQueueAPISchema: z.ZodObject<{
|
|
|
6044
6075
|
poiLocation?: string | number;
|
|
6045
6076
|
reportCount?: number;
|
|
6046
6077
|
withdrawnDate?: string;
|
|
6047
|
-
sourceUpdate?: string;
|
|
6048
6078
|
applicationType?: string;
|
|
6049
6079
|
dateCreated?: string;
|
|
6050
6080
|
events?: {
|
|
@@ -6211,6 +6241,7 @@ export declare const usQueueAPISchema: z.ZodObject<{
|
|
|
6211
6241
|
}[];
|
|
6212
6242
|
plannedOperationalDate?: string;
|
|
6213
6243
|
projectName?: string;
|
|
6244
|
+
sourceUpdate?: string;
|
|
6214
6245
|
totalMw?: number;
|
|
6215
6246
|
applicationStatus?: string;
|
|
6216
6247
|
cost?: {
|
|
@@ -6224,7 +6255,6 @@ export declare const usQueueAPISchema: z.ZodObject<{
|
|
|
6224
6255
|
poiLocation?: string | number;
|
|
6225
6256
|
reportCount?: number;
|
|
6226
6257
|
withdrawnDate?: string;
|
|
6227
|
-
sourceUpdate?: string;
|
|
6228
6258
|
applicationType?: string;
|
|
6229
6259
|
dateCreated?: string;
|
|
6230
6260
|
events?: {
|
|
@@ -6523,13 +6553,13 @@ export declare const queueAPISchema: z.ZodUnion<[z.ZodObject<{
|
|
|
6523
6553
|
localState?: string;
|
|
6524
6554
|
plannedOperationalDate?: string;
|
|
6525
6555
|
projectName?: string;
|
|
6556
|
+
sourceUpdate?: string;
|
|
6526
6557
|
totalMw?: number;
|
|
6527
6558
|
applicationStatus?: string;
|
|
6528
6559
|
withdrawnDate?: string;
|
|
6529
6560
|
localTown?: string;
|
|
6530
6561
|
mwNet?: number;
|
|
6531
6562
|
refId?: string;
|
|
6532
|
-
sourceUpdate?: string;
|
|
6533
6563
|
storageCapacity?: number;
|
|
6534
6564
|
technology?: string;
|
|
6535
6565
|
windFarmName?: string;
|
|
@@ -6597,13 +6627,13 @@ export declare const queueAPISchema: z.ZodUnion<[z.ZodObject<{
|
|
|
6597
6627
|
localState?: string;
|
|
6598
6628
|
plannedOperationalDate?: string;
|
|
6599
6629
|
projectName?: string;
|
|
6630
|
+
sourceUpdate?: string;
|
|
6600
6631
|
totalMw?: number;
|
|
6601
6632
|
applicationStatus?: string;
|
|
6602
6633
|
withdrawnDate?: string;
|
|
6603
6634
|
localTown?: string;
|
|
6604
6635
|
mwNet?: number;
|
|
6605
6636
|
refId?: string;
|
|
6606
|
-
sourceUpdate?: string;
|
|
6607
6637
|
storageCapacity?: number;
|
|
6608
6638
|
technology?: string;
|
|
6609
6639
|
windFarmName?: string;
|
|
@@ -6935,7 +6965,6 @@ export declare const queueAPISchema: z.ZodUnion<[z.ZodObject<{
|
|
|
6935
6965
|
id?: string;
|
|
6936
6966
|
identifier?: string;
|
|
6937
6967
|
}>, "many">;
|
|
6938
|
-
sourceUpdate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
6939
6968
|
signals: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6940
6969
|
filingDate: z.ZodString;
|
|
6941
6970
|
headline: z.ZodString;
|
|
@@ -7125,6 +7154,7 @@ export declare const queueAPISchema: z.ZodUnion<[z.ZodObject<{
|
|
|
7125
7154
|
queueDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
7126
7155
|
reportCount: z.ZodOptional<z.ZodNumber>;
|
|
7127
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>]>>;
|
|
7128
7158
|
totalMw: z.ZodOptional<z.ZodNumber>;
|
|
7129
7159
|
withdrawnDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
7130
7160
|
} & {
|
|
@@ -7232,6 +7262,7 @@ export declare const queueAPISchema: z.ZodUnion<[z.ZodObject<{
|
|
|
7232
7262
|
}[];
|
|
7233
7263
|
plannedOperationalDate?: string;
|
|
7234
7264
|
projectName?: string;
|
|
7265
|
+
sourceUpdate?: string;
|
|
7235
7266
|
totalMw?: number;
|
|
7236
7267
|
applicationStatus?: string;
|
|
7237
7268
|
cost?: {
|
|
@@ -7245,7 +7276,6 @@ export declare const queueAPISchema: z.ZodUnion<[z.ZodObject<{
|
|
|
7245
7276
|
poiLocation?: string | number;
|
|
7246
7277
|
reportCount?: number;
|
|
7247
7278
|
withdrawnDate?: string;
|
|
7248
|
-
sourceUpdate?: string;
|
|
7249
7279
|
applicationType?: string;
|
|
7250
7280
|
dateCreated?: string;
|
|
7251
7281
|
events?: {
|
|
@@ -7412,6 +7442,7 @@ export declare const queueAPISchema: z.ZodUnion<[z.ZodObject<{
|
|
|
7412
7442
|
}[];
|
|
7413
7443
|
plannedOperationalDate?: string;
|
|
7414
7444
|
projectName?: string;
|
|
7445
|
+
sourceUpdate?: string;
|
|
7415
7446
|
totalMw?: number;
|
|
7416
7447
|
applicationStatus?: string;
|
|
7417
7448
|
cost?: {
|
|
@@ -7425,7 +7456,6 @@ export declare const queueAPISchema: z.ZodUnion<[z.ZodObject<{
|
|
|
7425
7456
|
poiLocation?: string | number;
|
|
7426
7457
|
reportCount?: number;
|
|
7427
7458
|
withdrawnDate?: string;
|
|
7428
|
-
sourceUpdate?: string;
|
|
7429
7459
|
applicationType?: string;
|
|
7430
7460
|
dateCreated?: string;
|
|
7431
7461
|
events?: {
|
|
@@ -7826,7 +7856,6 @@ export declare const queueAPIUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.Z
|
|
|
7826
7856
|
id?: string;
|
|
7827
7857
|
identifier?: string;
|
|
7828
7858
|
}>, "many">;
|
|
7829
|
-
sourceUpdate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
7830
7859
|
signals: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7831
7860
|
filingDate: z.ZodString;
|
|
7832
7861
|
headline: z.ZodString;
|
|
@@ -8016,6 +8045,7 @@ export declare const queueAPIUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.Z
|
|
|
8016
8045
|
queueDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
8017
8046
|
reportCount: z.ZodOptional<z.ZodNumber>;
|
|
8018
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>]>>;
|
|
8019
8049
|
totalMw: z.ZodOptional<z.ZodNumber>;
|
|
8020
8050
|
withdrawnDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
8021
8051
|
} & {
|
|
@@ -8123,6 +8153,7 @@ export declare const queueAPIUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.Z
|
|
|
8123
8153
|
}[];
|
|
8124
8154
|
plannedOperationalDate?: string;
|
|
8125
8155
|
projectName?: string;
|
|
8156
|
+
sourceUpdate?: string;
|
|
8126
8157
|
totalMw?: number;
|
|
8127
8158
|
applicationStatus?: string;
|
|
8128
8159
|
cost?: {
|
|
@@ -8136,7 +8167,6 @@ export declare const queueAPIUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.Z
|
|
|
8136
8167
|
poiLocation?: string | number;
|
|
8137
8168
|
reportCount?: number;
|
|
8138
8169
|
withdrawnDate?: string;
|
|
8139
|
-
sourceUpdate?: string;
|
|
8140
8170
|
applicationType?: string;
|
|
8141
8171
|
dateCreated?: string;
|
|
8142
8172
|
events?: {
|
|
@@ -8303,6 +8333,7 @@ export declare const queueAPIUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.Z
|
|
|
8303
8333
|
}[];
|
|
8304
8334
|
plannedOperationalDate?: string;
|
|
8305
8335
|
projectName?: string;
|
|
8336
|
+
sourceUpdate?: string;
|
|
8306
8337
|
totalMw?: number;
|
|
8307
8338
|
applicationStatus?: string;
|
|
8308
8339
|
cost?: {
|
|
@@ -8316,7 +8347,6 @@ export declare const queueAPIUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.Z
|
|
|
8316
8347
|
poiLocation?: string | number;
|
|
8317
8348
|
reportCount?: number;
|
|
8318
8349
|
withdrawnDate?: string;
|
|
8319
|
-
sourceUpdate?: string;
|
|
8320
8350
|
applicationType?: string;
|
|
8321
8351
|
dateCreated?: string;
|
|
8322
8352
|
events?: {
|
|
@@ -8614,13 +8644,13 @@ export declare const queueAPIUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.Z
|
|
|
8614
8644
|
localState?: string;
|
|
8615
8645
|
plannedOperationalDate?: string;
|
|
8616
8646
|
projectName?: string;
|
|
8647
|
+
sourceUpdate?: string;
|
|
8617
8648
|
totalMw?: number;
|
|
8618
8649
|
applicationStatus?: string;
|
|
8619
8650
|
withdrawnDate?: string;
|
|
8620
8651
|
localTown?: string;
|
|
8621
8652
|
mwNet?: number;
|
|
8622
8653
|
refId?: string;
|
|
8623
|
-
sourceUpdate?: string;
|
|
8624
8654
|
storageCapacity?: number;
|
|
8625
8655
|
technology?: string;
|
|
8626
8656
|
windFarmName?: string;
|
|
@@ -8688,13 +8718,13 @@ export declare const queueAPIUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.Z
|
|
|
8688
8718
|
localState?: string;
|
|
8689
8719
|
plannedOperationalDate?: string;
|
|
8690
8720
|
projectName?: string;
|
|
8721
|
+
sourceUpdate?: string;
|
|
8691
8722
|
totalMw?: number;
|
|
8692
8723
|
applicationStatus?: string;
|
|
8693
8724
|
withdrawnDate?: string;
|
|
8694
8725
|
localTown?: string;
|
|
8695
8726
|
mwNet?: number;
|
|
8696
8727
|
refId?: string;
|
|
8697
|
-
sourceUpdate?: string;
|
|
8698
8728
|
storageCapacity?: number;
|
|
8699
8729
|
technology?: string;
|
|
8700
8730
|
windFarmName?: string;
|
|
@@ -8830,6 +8860,7 @@ declare const euQueueExportSchema: z.ZodObject<{
|
|
|
8830
8860
|
queueDataset: z.ZodOptional<z.ZodString>;
|
|
8831
8861
|
queueDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
8832
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>]>>;
|
|
8833
8864
|
status: z.ZodOptional<z.ZodString>;
|
|
8834
8865
|
totalMw: z.ZodOptional<z.ZodNumber>;
|
|
8835
8866
|
totals: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
@@ -8893,6 +8924,7 @@ declare const euQueueExportSchema: z.ZodObject<{
|
|
|
8893
8924
|
localState?: string;
|
|
8894
8925
|
plannedOperationalDate?: string;
|
|
8895
8926
|
projectName?: string;
|
|
8927
|
+
sourceUpdate?: string;
|
|
8896
8928
|
totalMw?: number;
|
|
8897
8929
|
}, {
|
|
8898
8930
|
sectors?: {
|
|
@@ -8941,6 +8973,7 @@ declare const euQueueExportSchema: z.ZodObject<{
|
|
|
8941
8973
|
localState?: string;
|
|
8942
8974
|
plannedOperationalDate?: string;
|
|
8943
8975
|
projectName?: string;
|
|
8976
|
+
sourceUpdate?: string;
|
|
8944
8977
|
totalMw?: number;
|
|
8945
8978
|
}>;
|
|
8946
8979
|
declare const usQueueExportSchema: z.ZodObject<{
|
|
@@ -9113,6 +9146,7 @@ declare const usQueueExportSchema: z.ZodObject<{
|
|
|
9113
9146
|
queueDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
9114
9147
|
reportCount: z.ZodOptional<z.ZodNumber>;
|
|
9115
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>]>>;
|
|
9116
9150
|
totalMw: z.ZodOptional<z.ZodNumber>;
|
|
9117
9151
|
totals: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
9118
9152
|
withdrawnDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
@@ -9172,6 +9206,7 @@ declare const usQueueExportSchema: z.ZodObject<{
|
|
|
9172
9206
|
}[];
|
|
9173
9207
|
plannedOperationalDate?: string;
|
|
9174
9208
|
projectName?: string;
|
|
9209
|
+
sourceUpdate?: string;
|
|
9175
9210
|
totalMw?: number;
|
|
9176
9211
|
applicationStatus?: string;
|
|
9177
9212
|
cost?: {
|
|
@@ -9239,6 +9274,7 @@ declare const usQueueExportSchema: z.ZodObject<{
|
|
|
9239
9274
|
}[];
|
|
9240
9275
|
plannedOperationalDate?: string;
|
|
9241
9276
|
projectName?: string;
|
|
9277
|
+
sourceUpdate?: string;
|
|
9242
9278
|
totalMw?: number;
|
|
9243
9279
|
applicationStatus?: string;
|
|
9244
9280
|
cost?: {
|
|
@@ -9366,6 +9402,7 @@ export declare const queueExportUnionSchema: z.ZodDiscriminatedUnion<"schema", [
|
|
|
9366
9402
|
queueDataset: z.ZodOptional<z.ZodString>;
|
|
9367
9403
|
queueDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
9368
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>]>>;
|
|
9369
9406
|
status: z.ZodOptional<z.ZodString>;
|
|
9370
9407
|
totalMw: z.ZodOptional<z.ZodNumber>;
|
|
9371
9408
|
totals: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
@@ -9429,6 +9466,7 @@ export declare const queueExportUnionSchema: z.ZodDiscriminatedUnion<"schema", [
|
|
|
9429
9466
|
localState?: string;
|
|
9430
9467
|
plannedOperationalDate?: string;
|
|
9431
9468
|
projectName?: string;
|
|
9469
|
+
sourceUpdate?: string;
|
|
9432
9470
|
totalMw?: number;
|
|
9433
9471
|
}, {
|
|
9434
9472
|
sectors?: {
|
|
@@ -9477,6 +9515,7 @@ export declare const queueExportUnionSchema: z.ZodDiscriminatedUnion<"schema", [
|
|
|
9477
9515
|
localState?: string;
|
|
9478
9516
|
plannedOperationalDate?: string;
|
|
9479
9517
|
projectName?: string;
|
|
9518
|
+
sourceUpdate?: string;
|
|
9480
9519
|
totalMw?: number;
|
|
9481
9520
|
}>, z.ZodObject<{
|
|
9482
9521
|
id: z.ZodString;
|
|
@@ -9648,6 +9687,7 @@ export declare const queueExportUnionSchema: z.ZodDiscriminatedUnion<"schema", [
|
|
|
9648
9687
|
queueDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
9649
9688
|
reportCount: z.ZodOptional<z.ZodNumber>;
|
|
9650
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>]>>;
|
|
9651
9691
|
totalMw: z.ZodOptional<z.ZodNumber>;
|
|
9652
9692
|
totals: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
9653
9693
|
withdrawnDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
@@ -9707,6 +9747,7 @@ export declare const queueExportUnionSchema: z.ZodDiscriminatedUnion<"schema", [
|
|
|
9707
9747
|
}[];
|
|
9708
9748
|
plannedOperationalDate?: string;
|
|
9709
9749
|
projectName?: string;
|
|
9750
|
+
sourceUpdate?: string;
|
|
9710
9751
|
totalMw?: number;
|
|
9711
9752
|
applicationStatus?: string;
|
|
9712
9753
|
cost?: {
|
|
@@ -9774,6 +9815,7 @@ export declare const queueExportUnionSchema: z.ZodDiscriminatedUnion<"schema", [
|
|
|
9774
9815
|
}[];
|
|
9775
9816
|
plannedOperationalDate?: string;
|
|
9776
9817
|
projectName?: string;
|
|
9818
|
+
sourceUpdate?: string;
|
|
9777
9819
|
totalMw?: number;
|
|
9778
9820
|
applicationStatus?: string;
|
|
9779
9821
|
cost?: {
|
|
@@ -130,6 +130,7 @@ const euQueueListSchema = baseEUQueueSchema
|
|
|
130
130
|
queueDataset: entity_1.OptionalStringSchema,
|
|
131
131
|
queueDate: entity_1.ISODateTimeOptionalSchema,
|
|
132
132
|
reportDate: entity_1.ISODateTimeOptionalSchema,
|
|
133
|
+
sourceUpdate: entity_1.ISODateTimeOptionalSchema,
|
|
133
134
|
status: entity_1.OptionalStringSchema,
|
|
134
135
|
totalMw: entity_1.OptionalNumberSchema,
|
|
135
136
|
totals: zod_1.z.record(zod_1.z.number()).optional(),
|
|
@@ -158,6 +159,7 @@ const usQueueListSchema = baseUSQueueSchema
|
|
|
158
159
|
queueDate: entity_1.ISODateTimeOptionalSchema,
|
|
159
160
|
reportCount: entity_1.OptionalNumberSchema,
|
|
160
161
|
reportDate: entity_1.ISODateTimeOptionalSchema,
|
|
162
|
+
sourceUpdate: entity_1.ISODateTimeOptionalSchema,
|
|
161
163
|
totalMw: entity_1.OptionalNumberSchema,
|
|
162
164
|
totals: zod_1.z.record(zod_1.z.number()).optional(),
|
|
163
165
|
withdrawnDate: entity_1.ISODateTimeOptionalSchema,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"queues.js","sourceRoot":"","sources":["../../../../../../../packages/client-frontends-shared-types/src/lib/dataGrid/api/queues.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"queues.js","sourceRoot":"","sources":["../../../../../../../packages/client-frontends-shared-types/src/lib/dataGrid/api/queues.ts"],"names":[],"mappings":"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"}
|