@new-project-media/client-frontends-shared-types 2.0.21 → 2.0.23

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,10 @@ 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>]>>;
124
125
  status: z.ZodOptional<z.ZodString>;
125
126
  totalMw: z.ZodOptional<z.ZodNumber>;
127
+ totals: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
126
128
  }, "strict", z.ZodTypeAny, {
127
129
  id?: string;
128
130
  status?: string;
@@ -155,6 +157,8 @@ declare const euQueueListSchema: z.ZodObject<{
155
157
  lon?: number;
156
158
  };
157
159
  };
160
+ totals?: Record<string, number>;
161
+ reportDate?: string;
158
162
  queueDate?: string;
159
163
  schema?: "eu_queue";
160
164
  actualOperationalDate?: string;
@@ -196,6 +200,8 @@ declare const euQueueListSchema: z.ZodObject<{
196
200
  lon?: number;
197
201
  };
198
202
  };
203
+ totals?: Record<string, number>;
204
+ reportDate?: string;
199
205
  queueDate?: string;
200
206
  schema?: "eu_queue";
201
207
  actualOperationalDate?: string;
@@ -222,6 +228,25 @@ declare const usQueueListSchema: z.ZodObject<{
222
228
  }, {
223
229
  identifier?: string;
224
230
  }>, "many">>;
231
+ cost: z.ZodOptional<z.ZodObject<{
232
+ costCompany: z.ZodString;
233
+ costYear: z.ZodNumber;
234
+ networkCostKW: z.ZodNumber;
235
+ poiCostKW: z.ZodNumber;
236
+ totalCostKW: z.ZodNumber;
237
+ }, "strip", z.ZodTypeAny, {
238
+ costCompany?: string;
239
+ costYear?: number;
240
+ networkCostKW?: number;
241
+ poiCostKW?: number;
242
+ totalCostKW?: number;
243
+ }, {
244
+ costCompany?: string;
245
+ costYear?: number;
246
+ networkCostKW?: number;
247
+ poiCostKW?: number;
248
+ totalCostKW?: number;
249
+ }>>;
225
250
  country: z.ZodOptional<z.ZodArray<z.ZodObject<{
226
251
  identifier: z.ZodString;
227
252
  id: z.ZodString;
@@ -355,7 +380,11 @@ declare const usQueueListSchema: z.ZodObject<{
355
380
  projectName: z.ZodOptional<z.ZodString>;
356
381
  queueDataset: z.ZodOptional<z.ZodString>;
357
382
  queueDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
383
+ reportCount: z.ZodOptional<z.ZodNumber>;
384
+ reportDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
358
385
  totalMw: z.ZodOptional<z.ZodNumber>;
386
+ totals: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
387
+ withdrawnDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
359
388
  }, "strict", z.ZodTypeAny, {
360
389
  id?: string;
361
390
  country?: {
@@ -390,6 +419,8 @@ declare const usQueueListSchema: z.ZodObject<{
390
419
  lon?: number;
391
420
  };
392
421
  };
422
+ totals?: Record<string, number>;
423
+ reportDate?: string;
393
424
  applicationTags?: {
394
425
  identifier?: string;
395
426
  }[];
@@ -409,8 +440,17 @@ declare const usQueueListSchema: z.ZodObject<{
409
440
  projectName?: string;
410
441
  totalMw?: number;
411
442
  applicationStatus?: string;
443
+ cost?: {
444
+ costCompany?: string;
445
+ costYear?: number;
446
+ networkCostKW?: number;
447
+ poiCostKW?: number;
448
+ totalCostKW?: number;
449
+ };
412
450
  interconnectingEntity?: string;
413
451
  poiLocation?: string | number;
452
+ reportCount?: number;
453
+ withdrawnDate?: string;
414
454
  }, {
415
455
  id?: string;
416
456
  country?: {
@@ -445,6 +485,8 @@ declare const usQueueListSchema: z.ZodObject<{
445
485
  lon?: number;
446
486
  };
447
487
  };
488
+ totals?: Record<string, number>;
489
+ reportDate?: string;
448
490
  applicationTags?: {
449
491
  identifier?: string;
450
492
  }[];
@@ -464,8 +506,17 @@ declare const usQueueListSchema: z.ZodObject<{
464
506
  projectName?: string;
465
507
  totalMw?: number;
466
508
  applicationStatus?: string;
509
+ cost?: {
510
+ costCompany?: string;
511
+ costYear?: number;
512
+ networkCostKW?: number;
513
+ poiCostKW?: number;
514
+ totalCostKW?: number;
515
+ };
467
516
  interconnectingEntity?: string;
468
517
  poiLocation?: string | number;
518
+ reportCount?: number;
519
+ withdrawnDate?: string;
469
520
  }>;
470
521
  declare const euQueueDetailsSchema: z.ZodObject<{
471
522
  id: z.ZodString;
@@ -1072,10 +1123,6 @@ declare const usQueueDetailsSchema: z.ZodObject<{
1072
1123
  projectName?: string;
1073
1124
  totalMw?: number;
1074
1125
  applicationStatus?: string;
1075
- interconnectingEntity?: string;
1076
- poiLocation?: string | number;
1077
- sourceUpdate?: string;
1078
- applicationType?: string;
1079
1126
  cost?: {
1080
1127
  costCompany?: string;
1081
1128
  costYear?: number;
@@ -1083,6 +1130,12 @@ declare const usQueueDetailsSchema: z.ZodObject<{
1083
1130
  poiCostKW?: number;
1084
1131
  totalCostKW?: number;
1085
1132
  };
1133
+ interconnectingEntity?: string;
1134
+ poiLocation?: string | number;
1135
+ reportCount?: number;
1136
+ withdrawnDate?: string;
1137
+ sourceUpdate?: string;
1138
+ applicationType?: string;
1086
1139
  dateCreated?: string;
1087
1140
  events?: {
1088
1141
  id?: string;
@@ -1151,7 +1204,6 @@ declare const usQueueDetailsSchema: z.ZodObject<{
1151
1204
  meta?: string;
1152
1205
  poiGroup?: string;
1153
1206
  };
1154
- reportCount?: number;
1155
1207
  signals?: {
1156
1208
  type?: string;
1157
1209
  subType?: string;
@@ -1160,7 +1212,6 @@ declare const usQueueDetailsSchema: z.ZodObject<{
1160
1212
  headline?: string;
1161
1213
  publishedDate?: string;
1162
1214
  }[];
1163
- withdrawnDate?: string;
1164
1215
  }, {
1165
1216
  sectors?: {
1166
1217
  id?: string;
@@ -1219,10 +1270,6 @@ declare const usQueueDetailsSchema: z.ZodObject<{
1219
1270
  projectName?: string;
1220
1271
  totalMw?: number;
1221
1272
  applicationStatus?: string;
1222
- interconnectingEntity?: string;
1223
- poiLocation?: string | number;
1224
- sourceUpdate?: string;
1225
- applicationType?: string;
1226
1273
  cost?: {
1227
1274
  costCompany?: string;
1228
1275
  costYear?: number;
@@ -1230,6 +1277,12 @@ declare const usQueueDetailsSchema: z.ZodObject<{
1230
1277
  poiCostKW?: number;
1231
1278
  totalCostKW?: number;
1232
1279
  };
1280
+ interconnectingEntity?: string;
1281
+ poiLocation?: string | number;
1282
+ reportCount?: number;
1283
+ withdrawnDate?: string;
1284
+ sourceUpdate?: string;
1285
+ applicationType?: string;
1233
1286
  dateCreated?: string;
1234
1287
  events?: {
1235
1288
  id?: string;
@@ -1298,7 +1351,6 @@ declare const usQueueDetailsSchema: z.ZodObject<{
1298
1351
  meta?: string;
1299
1352
  poiGroup?: string;
1300
1353
  };
1301
- reportCount?: number;
1302
1354
  signals?: {
1303
1355
  type?: string;
1304
1356
  subType?: string;
@@ -1307,7 +1359,6 @@ declare const usQueueDetailsSchema: z.ZodObject<{
1307
1359
  headline?: string;
1308
1360
  publishedDate?: string;
1309
1361
  }[];
1310
- withdrawnDate?: string;
1311
1362
  }>;
1312
1363
  declare const queueDetailsSchema: z.ZodUnion<[z.ZodObject<{
1313
1364
  id: z.ZodString;
@@ -1913,10 +1964,6 @@ declare const queueDetailsSchema: z.ZodUnion<[z.ZodObject<{
1913
1964
  projectName?: string;
1914
1965
  totalMw?: number;
1915
1966
  applicationStatus?: string;
1916
- interconnectingEntity?: string;
1917
- poiLocation?: string | number;
1918
- sourceUpdate?: string;
1919
- applicationType?: string;
1920
1967
  cost?: {
1921
1968
  costCompany?: string;
1922
1969
  costYear?: number;
@@ -1924,6 +1971,12 @@ declare const queueDetailsSchema: z.ZodUnion<[z.ZodObject<{
1924
1971
  poiCostKW?: number;
1925
1972
  totalCostKW?: number;
1926
1973
  };
1974
+ interconnectingEntity?: string;
1975
+ poiLocation?: string | number;
1976
+ reportCount?: number;
1977
+ withdrawnDate?: string;
1978
+ sourceUpdate?: string;
1979
+ applicationType?: string;
1927
1980
  dateCreated?: string;
1928
1981
  events?: {
1929
1982
  id?: string;
@@ -1992,7 +2045,6 @@ declare const queueDetailsSchema: z.ZodUnion<[z.ZodObject<{
1992
2045
  meta?: string;
1993
2046
  poiGroup?: string;
1994
2047
  };
1995
- reportCount?: number;
1996
2048
  signals?: {
1997
2049
  type?: string;
1998
2050
  subType?: string;
@@ -2001,7 +2053,6 @@ declare const queueDetailsSchema: z.ZodUnion<[z.ZodObject<{
2001
2053
  headline?: string;
2002
2054
  publishedDate?: string;
2003
2055
  }[];
2004
- withdrawnDate?: string;
2005
2056
  }, {
2006
2057
  sectors?: {
2007
2058
  id?: string;
@@ -2060,10 +2111,6 @@ declare const queueDetailsSchema: z.ZodUnion<[z.ZodObject<{
2060
2111
  projectName?: string;
2061
2112
  totalMw?: number;
2062
2113
  applicationStatus?: string;
2063
- interconnectingEntity?: string;
2064
- poiLocation?: string | number;
2065
- sourceUpdate?: string;
2066
- applicationType?: string;
2067
2114
  cost?: {
2068
2115
  costCompany?: string;
2069
2116
  costYear?: number;
@@ -2071,6 +2118,12 @@ declare const queueDetailsSchema: z.ZodUnion<[z.ZodObject<{
2071
2118
  poiCostKW?: number;
2072
2119
  totalCostKW?: number;
2073
2120
  };
2121
+ interconnectingEntity?: string;
2122
+ poiLocation?: string | number;
2123
+ reportCount?: number;
2124
+ withdrawnDate?: string;
2125
+ sourceUpdate?: string;
2126
+ applicationType?: string;
2074
2127
  dateCreated?: string;
2075
2128
  events?: {
2076
2129
  id?: string;
@@ -2139,7 +2192,6 @@ declare const queueDetailsSchema: z.ZodUnion<[z.ZodObject<{
2139
2192
  meta?: string;
2140
2193
  poiGroup?: string;
2141
2194
  };
2142
- reportCount?: number;
2143
2195
  signals?: {
2144
2196
  type?: string;
2145
2197
  subType?: string;
@@ -2148,7 +2200,6 @@ declare const queueDetailsSchema: z.ZodUnion<[z.ZodObject<{
2148
2200
  headline?: string;
2149
2201
  publishedDate?: string;
2150
2202
  }[];
2151
- withdrawnDate?: string;
2152
2203
  }>]>;
2153
2204
  export declare const queueDetailsUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.ZodObject<{
2154
2205
  id: z.ZodString;
@@ -2754,10 +2805,6 @@ export declare const queueDetailsUnionSchema: z.ZodDiscriminatedUnion<"schema",
2754
2805
  projectName?: string;
2755
2806
  totalMw?: number;
2756
2807
  applicationStatus?: string;
2757
- interconnectingEntity?: string;
2758
- poiLocation?: string | number;
2759
- sourceUpdate?: string;
2760
- applicationType?: string;
2761
2808
  cost?: {
2762
2809
  costCompany?: string;
2763
2810
  costYear?: number;
@@ -2765,6 +2812,12 @@ export declare const queueDetailsUnionSchema: z.ZodDiscriminatedUnion<"schema",
2765
2812
  poiCostKW?: number;
2766
2813
  totalCostKW?: number;
2767
2814
  };
2815
+ interconnectingEntity?: string;
2816
+ poiLocation?: string | number;
2817
+ reportCount?: number;
2818
+ withdrawnDate?: string;
2819
+ sourceUpdate?: string;
2820
+ applicationType?: string;
2768
2821
  dateCreated?: string;
2769
2822
  events?: {
2770
2823
  id?: string;
@@ -2833,7 +2886,6 @@ export declare const queueDetailsUnionSchema: z.ZodDiscriminatedUnion<"schema",
2833
2886
  meta?: string;
2834
2887
  poiGroup?: string;
2835
2888
  };
2836
- reportCount?: number;
2837
2889
  signals?: {
2838
2890
  type?: string;
2839
2891
  subType?: string;
@@ -2842,7 +2894,6 @@ export declare const queueDetailsUnionSchema: z.ZodDiscriminatedUnion<"schema",
2842
2894
  headline?: string;
2843
2895
  publishedDate?: string;
2844
2896
  }[];
2845
- withdrawnDate?: string;
2846
2897
  }, {
2847
2898
  sectors?: {
2848
2899
  id?: string;
@@ -2901,10 +2952,6 @@ export declare const queueDetailsUnionSchema: z.ZodDiscriminatedUnion<"schema",
2901
2952
  projectName?: string;
2902
2953
  totalMw?: number;
2903
2954
  applicationStatus?: string;
2904
- interconnectingEntity?: string;
2905
- poiLocation?: string | number;
2906
- sourceUpdate?: string;
2907
- applicationType?: string;
2908
2955
  cost?: {
2909
2956
  costCompany?: string;
2910
2957
  costYear?: number;
@@ -2912,6 +2959,12 @@ export declare const queueDetailsUnionSchema: z.ZodDiscriminatedUnion<"schema",
2912
2959
  poiCostKW?: number;
2913
2960
  totalCostKW?: number;
2914
2961
  };
2962
+ interconnectingEntity?: string;
2963
+ poiLocation?: string | number;
2964
+ reportCount?: number;
2965
+ withdrawnDate?: string;
2966
+ sourceUpdate?: string;
2967
+ applicationType?: string;
2915
2968
  dateCreated?: string;
2916
2969
  events?: {
2917
2970
  id?: string;
@@ -2980,7 +3033,6 @@ export declare const queueDetailsUnionSchema: z.ZodDiscriminatedUnion<"schema",
2980
3033
  meta?: string;
2981
3034
  poiGroup?: string;
2982
3035
  };
2983
- reportCount?: number;
2984
3036
  signals?: {
2985
3037
  type?: string;
2986
3038
  subType?: string;
@@ -2989,7 +3041,6 @@ export declare const queueDetailsUnionSchema: z.ZodDiscriminatedUnion<"schema",
2989
3041
  headline?: string;
2990
3042
  publishedDate?: string;
2991
3043
  }[];
2992
- withdrawnDate?: string;
2993
3044
  }>]>;
2994
3045
  export { baseQueueSchema, euQueueDetailsSchema, usQueueDetailsSchema, euQueueListSchema, usQueueListSchema, };
2995
3046
  export type QueueDetailsType = z.infer<typeof queueDetailsSchema>;
@@ -3108,8 +3159,10 @@ declare const euQueueListWithSortSchema: z.ZodObject<{
3108
3159
  projectName: z.ZodOptional<z.ZodString>;
3109
3160
  queueDataset: z.ZodOptional<z.ZodString>;
3110
3161
  queueDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
3162
+ reportDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
3111
3163
  status: z.ZodOptional<z.ZodString>;
3112
3164
  totalMw: z.ZodOptional<z.ZodNumber>;
3165
+ totals: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
3113
3166
  } & {
3114
3167
  sort: z.ZodTuple<[z.ZodUnion<[z.ZodNumber, z.ZodString]>, z.ZodNumber], null>;
3115
3168
  }, "strict", z.ZodTypeAny, {
@@ -3145,6 +3198,8 @@ declare const euQueueListWithSortSchema: z.ZodObject<{
3145
3198
  lon?: number;
3146
3199
  };
3147
3200
  };
3201
+ totals?: Record<string, number>;
3202
+ reportDate?: string;
3148
3203
  queueDate?: string;
3149
3204
  schema?: "eu_queue";
3150
3205
  actualOperationalDate?: string;
@@ -3187,6 +3242,8 @@ declare const euQueueListWithSortSchema: z.ZodObject<{
3187
3242
  lon?: number;
3188
3243
  };
3189
3244
  };
3245
+ totals?: Record<string, number>;
3246
+ reportDate?: string;
3190
3247
  queueDate?: string;
3191
3248
  schema?: "eu_queue";
3192
3249
  actualOperationalDate?: string;
@@ -3213,6 +3270,25 @@ declare const usQueueListWithSortSchema: z.ZodObject<{
3213
3270
  }, {
3214
3271
  identifier?: string;
3215
3272
  }>, "many">>;
3273
+ cost: z.ZodOptional<z.ZodObject<{
3274
+ costCompany: z.ZodString;
3275
+ costYear: z.ZodNumber;
3276
+ networkCostKW: z.ZodNumber;
3277
+ poiCostKW: z.ZodNumber;
3278
+ totalCostKW: z.ZodNumber;
3279
+ }, "strip", z.ZodTypeAny, {
3280
+ costCompany?: string;
3281
+ costYear?: number;
3282
+ networkCostKW?: number;
3283
+ poiCostKW?: number;
3284
+ totalCostKW?: number;
3285
+ }, {
3286
+ costCompany?: string;
3287
+ costYear?: number;
3288
+ networkCostKW?: number;
3289
+ poiCostKW?: number;
3290
+ totalCostKW?: number;
3291
+ }>>;
3216
3292
  country: z.ZodOptional<z.ZodArray<z.ZodObject<{
3217
3293
  identifier: z.ZodString;
3218
3294
  id: z.ZodString;
@@ -3346,7 +3422,11 @@ declare const usQueueListWithSortSchema: z.ZodObject<{
3346
3422
  projectName: z.ZodOptional<z.ZodString>;
3347
3423
  queueDataset: z.ZodOptional<z.ZodString>;
3348
3424
  queueDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
3425
+ reportCount: z.ZodOptional<z.ZodNumber>;
3426
+ reportDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
3349
3427
  totalMw: z.ZodOptional<z.ZodNumber>;
3428
+ totals: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
3429
+ withdrawnDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
3350
3430
  } & {
3351
3431
  sort: z.ZodTuple<[z.ZodUnion<[z.ZodNumber, z.ZodString]>, z.ZodNumber], null>;
3352
3432
  }, "strict", z.ZodTypeAny, {
@@ -3384,6 +3464,8 @@ declare const usQueueListWithSortSchema: z.ZodObject<{
3384
3464
  lon?: number;
3385
3465
  };
3386
3466
  };
3467
+ totals?: Record<string, number>;
3468
+ reportDate?: string;
3387
3469
  applicationTags?: {
3388
3470
  identifier?: string;
3389
3471
  }[];
@@ -3403,8 +3485,17 @@ declare const usQueueListWithSortSchema: z.ZodObject<{
3403
3485
  projectName?: string;
3404
3486
  totalMw?: number;
3405
3487
  applicationStatus?: string;
3488
+ cost?: {
3489
+ costCompany?: string;
3490
+ costYear?: number;
3491
+ networkCostKW?: number;
3492
+ poiCostKW?: number;
3493
+ totalCostKW?: number;
3494
+ };
3406
3495
  interconnectingEntity?: string;
3407
3496
  poiLocation?: string | number;
3497
+ reportCount?: number;
3498
+ withdrawnDate?: string;
3408
3499
  }, {
3409
3500
  id?: string;
3410
3501
  sort?: [string | number, number, ...unknown[]];
@@ -3440,6 +3531,8 @@ declare const usQueueListWithSortSchema: z.ZodObject<{
3440
3531
  lon?: number;
3441
3532
  };
3442
3533
  };
3534
+ totals?: Record<string, number>;
3535
+ reportDate?: string;
3443
3536
  applicationTags?: {
3444
3537
  identifier?: string;
3445
3538
  }[];
@@ -3459,8 +3552,17 @@ declare const usQueueListWithSortSchema: z.ZodObject<{
3459
3552
  projectName?: string;
3460
3553
  totalMw?: number;
3461
3554
  applicationStatus?: string;
3555
+ cost?: {
3556
+ costCompany?: string;
3557
+ costYear?: number;
3558
+ networkCostKW?: number;
3559
+ poiCostKW?: number;
3560
+ totalCostKW?: number;
3561
+ };
3462
3562
  interconnectingEntity?: string;
3463
3563
  poiLocation?: string | number;
3564
+ reportCount?: number;
3565
+ withdrawnDate?: string;
3464
3566
  }>;
3465
3567
  declare const queueListSchema: z.ZodUnion<[z.ZodObject<{
3466
3568
  id: z.ZodString;
@@ -3574,8 +3676,10 @@ declare const queueListSchema: z.ZodUnion<[z.ZodObject<{
3574
3676
  projectName: z.ZodOptional<z.ZodString>;
3575
3677
  queueDataset: z.ZodOptional<z.ZodString>;
3576
3678
  queueDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
3679
+ reportDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
3577
3680
  status: z.ZodOptional<z.ZodString>;
3578
3681
  totalMw: z.ZodOptional<z.ZodNumber>;
3682
+ totals: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
3579
3683
  } & {
3580
3684
  sort: z.ZodTuple<[z.ZodUnion<[z.ZodNumber, z.ZodString]>, z.ZodNumber], null>;
3581
3685
  }, "strict", z.ZodTypeAny, {
@@ -3611,6 +3715,8 @@ declare const queueListSchema: z.ZodUnion<[z.ZodObject<{
3611
3715
  lon?: number;
3612
3716
  };
3613
3717
  };
3718
+ totals?: Record<string, number>;
3719
+ reportDate?: string;
3614
3720
  queueDate?: string;
3615
3721
  schema?: "eu_queue";
3616
3722
  actualOperationalDate?: string;
@@ -3653,6 +3759,8 @@ declare const queueListSchema: z.ZodUnion<[z.ZodObject<{
3653
3759
  lon?: number;
3654
3760
  };
3655
3761
  };
3762
+ totals?: Record<string, number>;
3763
+ reportDate?: string;
3656
3764
  queueDate?: string;
3657
3765
  schema?: "eu_queue";
3658
3766
  actualOperationalDate?: string;
@@ -3678,6 +3786,25 @@ declare const queueListSchema: z.ZodUnion<[z.ZodObject<{
3678
3786
  }, {
3679
3787
  identifier?: string;
3680
3788
  }>, "many">>;
3789
+ cost: z.ZodOptional<z.ZodObject<{
3790
+ costCompany: z.ZodString;
3791
+ costYear: z.ZodNumber;
3792
+ networkCostKW: z.ZodNumber;
3793
+ poiCostKW: z.ZodNumber;
3794
+ totalCostKW: z.ZodNumber;
3795
+ }, "strip", z.ZodTypeAny, {
3796
+ costCompany?: string;
3797
+ costYear?: number;
3798
+ networkCostKW?: number;
3799
+ poiCostKW?: number;
3800
+ totalCostKW?: number;
3801
+ }, {
3802
+ costCompany?: string;
3803
+ costYear?: number;
3804
+ networkCostKW?: number;
3805
+ poiCostKW?: number;
3806
+ totalCostKW?: number;
3807
+ }>>;
3681
3808
  country: z.ZodOptional<z.ZodArray<z.ZodObject<{
3682
3809
  identifier: z.ZodString;
3683
3810
  id: z.ZodString;
@@ -3811,7 +3938,11 @@ declare const queueListSchema: z.ZodUnion<[z.ZodObject<{
3811
3938
  projectName: z.ZodOptional<z.ZodString>;
3812
3939
  queueDataset: z.ZodOptional<z.ZodString>;
3813
3940
  queueDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
3941
+ reportCount: z.ZodOptional<z.ZodNumber>;
3942
+ reportDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
3814
3943
  totalMw: z.ZodOptional<z.ZodNumber>;
3944
+ totals: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
3945
+ withdrawnDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
3815
3946
  } & {
3816
3947
  sort: z.ZodTuple<[z.ZodUnion<[z.ZodNumber, z.ZodString]>, z.ZodNumber], null>;
3817
3948
  }, "strict", z.ZodTypeAny, {
@@ -3849,6 +3980,8 @@ declare const queueListSchema: z.ZodUnion<[z.ZodObject<{
3849
3980
  lon?: number;
3850
3981
  };
3851
3982
  };
3983
+ totals?: Record<string, number>;
3984
+ reportDate?: string;
3852
3985
  applicationTags?: {
3853
3986
  identifier?: string;
3854
3987
  }[];
@@ -3868,8 +4001,17 @@ declare const queueListSchema: z.ZodUnion<[z.ZodObject<{
3868
4001
  projectName?: string;
3869
4002
  totalMw?: number;
3870
4003
  applicationStatus?: string;
4004
+ cost?: {
4005
+ costCompany?: string;
4006
+ costYear?: number;
4007
+ networkCostKW?: number;
4008
+ poiCostKW?: number;
4009
+ totalCostKW?: number;
4010
+ };
3871
4011
  interconnectingEntity?: string;
3872
4012
  poiLocation?: string | number;
4013
+ reportCount?: number;
4014
+ withdrawnDate?: string;
3873
4015
  }, {
3874
4016
  id?: string;
3875
4017
  sort?: [string | number, number, ...unknown[]];
@@ -3905,6 +4047,8 @@ declare const queueListSchema: z.ZodUnion<[z.ZodObject<{
3905
4047
  lon?: number;
3906
4048
  };
3907
4049
  };
4050
+ totals?: Record<string, number>;
4051
+ reportDate?: string;
3908
4052
  applicationTags?: {
3909
4053
  identifier?: string;
3910
4054
  }[];
@@ -3924,8 +4068,17 @@ declare const queueListSchema: z.ZodUnion<[z.ZodObject<{
3924
4068
  projectName?: string;
3925
4069
  totalMw?: number;
3926
4070
  applicationStatus?: string;
4071
+ cost?: {
4072
+ costCompany?: string;
4073
+ costYear?: number;
4074
+ networkCostKW?: number;
4075
+ poiCostKW?: number;
4076
+ totalCostKW?: number;
4077
+ };
3927
4078
  interconnectingEntity?: string;
3928
4079
  poiLocation?: string | number;
4080
+ reportCount?: number;
4081
+ withdrawnDate?: string;
3929
4082
  }>]>;
3930
4083
  export declare const queueListUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.ZodObject<{
3931
4084
  id: z.ZodString;
@@ -4039,8 +4192,10 @@ export declare const queueListUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.
4039
4192
  projectName: z.ZodOptional<z.ZodString>;
4040
4193
  queueDataset: z.ZodOptional<z.ZodString>;
4041
4194
  queueDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
4195
+ reportDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
4042
4196
  status: z.ZodOptional<z.ZodString>;
4043
4197
  totalMw: z.ZodOptional<z.ZodNumber>;
4198
+ totals: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
4044
4199
  } & {
4045
4200
  sort: z.ZodTuple<[z.ZodUnion<[z.ZodNumber, z.ZodString]>, z.ZodNumber], null>;
4046
4201
  }, "strict", z.ZodTypeAny, {
@@ -4076,6 +4231,8 @@ export declare const queueListUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.
4076
4231
  lon?: number;
4077
4232
  };
4078
4233
  };
4234
+ totals?: Record<string, number>;
4235
+ reportDate?: string;
4079
4236
  queueDate?: string;
4080
4237
  schema?: "eu_queue";
4081
4238
  actualOperationalDate?: string;
@@ -4118,6 +4275,8 @@ export declare const queueListUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.
4118
4275
  lon?: number;
4119
4276
  };
4120
4277
  };
4278
+ totals?: Record<string, number>;
4279
+ reportDate?: string;
4121
4280
  queueDate?: string;
4122
4281
  schema?: "eu_queue";
4123
4282
  actualOperationalDate?: string;
@@ -4143,6 +4302,25 @@ export declare const queueListUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.
4143
4302
  }, {
4144
4303
  identifier?: string;
4145
4304
  }>, "many">>;
4305
+ cost: z.ZodOptional<z.ZodObject<{
4306
+ costCompany: z.ZodString;
4307
+ costYear: z.ZodNumber;
4308
+ networkCostKW: z.ZodNumber;
4309
+ poiCostKW: z.ZodNumber;
4310
+ totalCostKW: z.ZodNumber;
4311
+ }, "strip", z.ZodTypeAny, {
4312
+ costCompany?: string;
4313
+ costYear?: number;
4314
+ networkCostKW?: number;
4315
+ poiCostKW?: number;
4316
+ totalCostKW?: number;
4317
+ }, {
4318
+ costCompany?: string;
4319
+ costYear?: number;
4320
+ networkCostKW?: number;
4321
+ poiCostKW?: number;
4322
+ totalCostKW?: number;
4323
+ }>>;
4146
4324
  country: z.ZodOptional<z.ZodArray<z.ZodObject<{
4147
4325
  identifier: z.ZodString;
4148
4326
  id: z.ZodString;
@@ -4276,7 +4454,11 @@ export declare const queueListUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.
4276
4454
  projectName: z.ZodOptional<z.ZodString>;
4277
4455
  queueDataset: z.ZodOptional<z.ZodString>;
4278
4456
  queueDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
4457
+ reportCount: z.ZodOptional<z.ZodNumber>;
4458
+ reportDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
4279
4459
  totalMw: z.ZodOptional<z.ZodNumber>;
4460
+ totals: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
4461
+ withdrawnDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
4280
4462
  } & {
4281
4463
  sort: z.ZodTuple<[z.ZodUnion<[z.ZodNumber, z.ZodString]>, z.ZodNumber], null>;
4282
4464
  }, "strict", z.ZodTypeAny, {
@@ -4314,6 +4496,8 @@ export declare const queueListUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.
4314
4496
  lon?: number;
4315
4497
  };
4316
4498
  };
4499
+ totals?: Record<string, number>;
4500
+ reportDate?: string;
4317
4501
  applicationTags?: {
4318
4502
  identifier?: string;
4319
4503
  }[];
@@ -4333,9 +4517,18 @@ export declare const queueListUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.
4333
4517
  projectName?: string;
4334
4518
  totalMw?: number;
4335
4519
  applicationStatus?: string;
4520
+ cost?: {
4521
+ costCompany?: string;
4522
+ costYear?: number;
4523
+ networkCostKW?: number;
4524
+ poiCostKW?: number;
4525
+ totalCostKW?: number;
4526
+ };
4336
4527
  interconnectingEntity?: string;
4337
4528
  poiLocation?: string | number;
4338
- }, {
4529
+ reportCount?: number;
4530
+ withdrawnDate?: string;
4531
+ }, {
4339
4532
  id?: string;
4340
4533
  sort?: [string | number, number, ...unknown[]];
4341
4534
  country?: {
@@ -4370,6 +4563,8 @@ export declare const queueListUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.
4370
4563
  lon?: number;
4371
4564
  };
4372
4565
  };
4566
+ totals?: Record<string, number>;
4567
+ reportDate?: string;
4373
4568
  applicationTags?: {
4374
4569
  identifier?: string;
4375
4570
  }[];
@@ -4389,8 +4584,17 @@ export declare const queueListUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.
4389
4584
  projectName?: string;
4390
4585
  totalMw?: number;
4391
4586
  applicationStatus?: string;
4587
+ cost?: {
4588
+ costCompany?: string;
4589
+ costYear?: number;
4590
+ networkCostKW?: number;
4591
+ poiCostKW?: number;
4592
+ totalCostKW?: number;
4593
+ };
4392
4594
  interconnectingEntity?: string;
4393
4595
  poiLocation?: string | number;
4596
+ reportCount?: number;
4597
+ withdrawnDate?: string;
4394
4598
  }>]>;
4395
4599
  export declare const queueListBaseUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.ZodObject<{
4396
4600
  id: z.ZodString;
@@ -4504,8 +4708,10 @@ export declare const queueListBaseUnionSchema: z.ZodDiscriminatedUnion<"schema",
4504
4708
  projectName: z.ZodOptional<z.ZodString>;
4505
4709
  queueDataset: z.ZodOptional<z.ZodString>;
4506
4710
  queueDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
4711
+ reportDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
4507
4712
  status: z.ZodOptional<z.ZodString>;
4508
4713
  totalMw: z.ZodOptional<z.ZodNumber>;
4714
+ totals: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
4509
4715
  }, "strict", z.ZodTypeAny, {
4510
4716
  id?: string;
4511
4717
  status?: string;
@@ -4538,6 +4744,8 @@ export declare const queueListBaseUnionSchema: z.ZodDiscriminatedUnion<"schema",
4538
4744
  lon?: number;
4539
4745
  };
4540
4746
  };
4747
+ totals?: Record<string, number>;
4748
+ reportDate?: string;
4541
4749
  queueDate?: string;
4542
4750
  schema?: "eu_queue";
4543
4751
  actualOperationalDate?: string;
@@ -4579,6 +4787,8 @@ export declare const queueListBaseUnionSchema: z.ZodDiscriminatedUnion<"schema",
4579
4787
  lon?: number;
4580
4788
  };
4581
4789
  };
4790
+ totals?: Record<string, number>;
4791
+ reportDate?: string;
4582
4792
  queueDate?: string;
4583
4793
  schema?: "eu_queue";
4584
4794
  actualOperationalDate?: string;
@@ -4604,6 +4814,25 @@ export declare const queueListBaseUnionSchema: z.ZodDiscriminatedUnion<"schema",
4604
4814
  }, {
4605
4815
  identifier?: string;
4606
4816
  }>, "many">>;
4817
+ cost: z.ZodOptional<z.ZodObject<{
4818
+ costCompany: z.ZodString;
4819
+ costYear: z.ZodNumber;
4820
+ networkCostKW: z.ZodNumber;
4821
+ poiCostKW: z.ZodNumber;
4822
+ totalCostKW: z.ZodNumber;
4823
+ }, "strip", z.ZodTypeAny, {
4824
+ costCompany?: string;
4825
+ costYear?: number;
4826
+ networkCostKW?: number;
4827
+ poiCostKW?: number;
4828
+ totalCostKW?: number;
4829
+ }, {
4830
+ costCompany?: string;
4831
+ costYear?: number;
4832
+ networkCostKW?: number;
4833
+ poiCostKW?: number;
4834
+ totalCostKW?: number;
4835
+ }>>;
4607
4836
  country: z.ZodOptional<z.ZodArray<z.ZodObject<{
4608
4837
  identifier: z.ZodString;
4609
4838
  id: z.ZodString;
@@ -4737,7 +4966,11 @@ export declare const queueListBaseUnionSchema: z.ZodDiscriminatedUnion<"schema",
4737
4966
  projectName: z.ZodOptional<z.ZodString>;
4738
4967
  queueDataset: z.ZodOptional<z.ZodString>;
4739
4968
  queueDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
4969
+ reportCount: z.ZodOptional<z.ZodNumber>;
4970
+ reportDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
4740
4971
  totalMw: z.ZodOptional<z.ZodNumber>;
4972
+ totals: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
4973
+ withdrawnDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
4741
4974
  }, "strict", z.ZodTypeAny, {
4742
4975
  id?: string;
4743
4976
  country?: {
@@ -4772,6 +5005,8 @@ export declare const queueListBaseUnionSchema: z.ZodDiscriminatedUnion<"schema",
4772
5005
  lon?: number;
4773
5006
  };
4774
5007
  };
5008
+ totals?: Record<string, number>;
5009
+ reportDate?: string;
4775
5010
  applicationTags?: {
4776
5011
  identifier?: string;
4777
5012
  }[];
@@ -4791,8 +5026,17 @@ export declare const queueListBaseUnionSchema: z.ZodDiscriminatedUnion<"schema",
4791
5026
  projectName?: string;
4792
5027
  totalMw?: number;
4793
5028
  applicationStatus?: string;
5029
+ cost?: {
5030
+ costCompany?: string;
5031
+ costYear?: number;
5032
+ networkCostKW?: number;
5033
+ poiCostKW?: number;
5034
+ totalCostKW?: number;
5035
+ };
4794
5036
  interconnectingEntity?: string;
4795
5037
  poiLocation?: string | number;
5038
+ reportCount?: number;
5039
+ withdrawnDate?: string;
4796
5040
  }, {
4797
5041
  id?: string;
4798
5042
  country?: {
@@ -4827,6 +5071,8 @@ export declare const queueListBaseUnionSchema: z.ZodDiscriminatedUnion<"schema",
4827
5071
  lon?: number;
4828
5072
  };
4829
5073
  };
5074
+ totals?: Record<string, number>;
5075
+ reportDate?: string;
4830
5076
  applicationTags?: {
4831
5077
  identifier?: string;
4832
5078
  }[];
@@ -4846,8 +5092,17 @@ export declare const queueListBaseUnionSchema: z.ZodDiscriminatedUnion<"schema",
4846
5092
  projectName?: string;
4847
5093
  totalMw?: number;
4848
5094
  applicationStatus?: string;
5095
+ cost?: {
5096
+ costCompany?: string;
5097
+ costYear?: number;
5098
+ networkCostKW?: number;
5099
+ poiCostKW?: number;
5100
+ totalCostKW?: number;
5101
+ };
4849
5102
  interconnectingEntity?: string;
4850
5103
  poiLocation?: string | number;
5104
+ reportCount?: number;
5105
+ withdrawnDate?: string;
4851
5106
  }>]>;
4852
5107
  export type QueueListType = z.infer<typeof queueListSchema>;
4853
5108
  export type QueueListUnionType = z.infer<typeof queueListUnionSchema>;
@@ -5068,6 +5323,7 @@ export declare const euQueueAPISchema: z.ZodObject<{
5068
5323
  projectName?: string;
5069
5324
  totalMw?: number;
5070
5325
  applicationStatus?: string;
5326
+ withdrawnDate?: string;
5071
5327
  localTown?: string;
5072
5328
  mwNet?: number;
5073
5329
  refId?: string;
@@ -5076,7 +5332,6 @@ export declare const euQueueAPISchema: z.ZodObject<{
5076
5332
  technology?: string;
5077
5333
  windFarmName?: string;
5078
5334
  applicationType?: string;
5079
- withdrawnDate?: string;
5080
5335
  constructionDate?: string;
5081
5336
  developmentStatus?: string;
5082
5337
  localRegion?: string;
@@ -5142,6 +5397,7 @@ export declare const euQueueAPISchema: z.ZodObject<{
5142
5397
  projectName?: string;
5143
5398
  totalMw?: number;
5144
5399
  applicationStatus?: string;
5400
+ withdrawnDate?: string;
5145
5401
  localTown?: string;
5146
5402
  mwNet?: number;
5147
5403
  refId?: string;
@@ -5150,7 +5406,6 @@ export declare const euQueueAPISchema: z.ZodObject<{
5150
5406
  technology?: string;
5151
5407
  windFarmName?: string;
5152
5408
  applicationType?: string;
5153
- withdrawnDate?: string;
5154
5409
  constructionDate?: string;
5155
5410
  developmentStatus?: string;
5156
5411
  localRegion?: string;
@@ -5168,25 +5423,6 @@ export declare const euQueueAPISchema: z.ZodObject<{
5168
5423
  export declare const usQueueAPISchema: z.ZodObject<{
5169
5424
  $organizations: z.ZodOptional<z.ZodString>;
5170
5425
  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
5426
  dateCreated: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
5191
5427
  documents: z.ZodOptional<z.ZodArray<z.ZodObject<{
5192
5428
  date: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
@@ -5488,8 +5724,6 @@ export declare const usQueueAPISchema: z.ZodObject<{
5488
5724
  meta?: string;
5489
5725
  poiGroup?: string;
5490
5726
  }>>;
5491
- reportCount: z.ZodOptional<z.ZodNumber>;
5492
- reportDate: z.ZodOptional<z.ZodString>;
5493
5727
  sectors: z.ZodArray<z.ZodObject<{
5494
5728
  identifier: z.ZodString;
5495
5729
  id: z.ZodString;
@@ -5523,8 +5757,6 @@ export declare const usQueueAPISchema: z.ZodObject<{
5523
5757
  headline?: string;
5524
5758
  publishedDate?: string;
5525
5759
  }>, "many">>;
5526
- withdrawnDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
5527
- } & {
5528
5760
  id: z.ZodString;
5529
5761
  schema: z.ZodLiteral<"us_queue">;
5530
5762
  actualOperationalDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
@@ -5538,6 +5770,25 @@ export declare const usQueueAPISchema: z.ZodObject<{
5538
5770
  }, {
5539
5771
  identifier?: string;
5540
5772
  }>, "many">>;
5773
+ cost: z.ZodOptional<z.ZodObject<{
5774
+ costCompany: z.ZodString;
5775
+ costYear: z.ZodNumber;
5776
+ networkCostKW: z.ZodNumber;
5777
+ poiCostKW: z.ZodNumber;
5778
+ totalCostKW: z.ZodNumber;
5779
+ }, "strip", z.ZodTypeAny, {
5780
+ costCompany?: string;
5781
+ costYear?: number;
5782
+ networkCostKW?: number;
5783
+ poiCostKW?: number;
5784
+ totalCostKW?: number;
5785
+ }, {
5786
+ costCompany?: string;
5787
+ costYear?: number;
5788
+ networkCostKW?: number;
5789
+ poiCostKW?: number;
5790
+ totalCostKW?: number;
5791
+ }>>;
5541
5792
  country: z.ZodOptional<z.ZodArray<z.ZodObject<{
5542
5793
  identifier: z.ZodString;
5543
5794
  id: z.ZodString;
@@ -5671,7 +5922,10 @@ export declare const usQueueAPISchema: z.ZodObject<{
5671
5922
  projectName: z.ZodOptional<z.ZodString>;
5672
5923
  queueDataset: z.ZodOptional<z.ZodString>;
5673
5924
  queueDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
5925
+ reportCount: z.ZodOptional<z.ZodNumber>;
5926
+ reportDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
5674
5927
  totalMw: z.ZodOptional<z.ZodNumber>;
5928
+ withdrawnDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
5675
5929
  } & {
5676
5930
  audiences: z.ZodArray<z.ZodObject<{
5677
5931
  identifier: z.ZodString;
@@ -5779,10 +6033,6 @@ export declare const usQueueAPISchema: z.ZodObject<{
5779
6033
  projectName?: string;
5780
6034
  totalMw?: number;
5781
6035
  applicationStatus?: string;
5782
- interconnectingEntity?: string;
5783
- poiLocation?: string | number;
5784
- sourceUpdate?: string;
5785
- applicationType?: string;
5786
6036
  cost?: {
5787
6037
  costCompany?: string;
5788
6038
  costYear?: number;
@@ -5790,6 +6040,12 @@ export declare const usQueueAPISchema: z.ZodObject<{
5790
6040
  poiCostKW?: number;
5791
6041
  totalCostKW?: number;
5792
6042
  };
6043
+ interconnectingEntity?: string;
6044
+ poiLocation?: string | number;
6045
+ reportCount?: number;
6046
+ withdrawnDate?: string;
6047
+ sourceUpdate?: string;
6048
+ applicationType?: string;
5793
6049
  dateCreated?: string;
5794
6050
  events?: {
5795
6051
  id?: string;
@@ -5858,7 +6114,6 @@ export declare const usQueueAPISchema: z.ZodObject<{
5858
6114
  meta?: string;
5859
6115
  poiGroup?: string;
5860
6116
  };
5861
- reportCount?: number;
5862
6117
  signals?: {
5863
6118
  type?: string;
5864
6119
  subType?: string;
@@ -5867,7 +6122,6 @@ export declare const usQueueAPISchema: z.ZodObject<{
5867
6122
  headline?: string;
5868
6123
  publishedDate?: string;
5869
6124
  }[];
5870
- withdrawnDate?: string;
5871
6125
  queueDataSetType?: string;
5872
6126
  regions?: {
5873
6127
  id?: string;
@@ -5959,10 +6213,6 @@ export declare const usQueueAPISchema: z.ZodObject<{
5959
6213
  projectName?: string;
5960
6214
  totalMw?: number;
5961
6215
  applicationStatus?: string;
5962
- interconnectingEntity?: string;
5963
- poiLocation?: string | number;
5964
- sourceUpdate?: string;
5965
- applicationType?: string;
5966
6216
  cost?: {
5967
6217
  costCompany?: string;
5968
6218
  costYear?: number;
@@ -5970,6 +6220,12 @@ export declare const usQueueAPISchema: z.ZodObject<{
5970
6220
  poiCostKW?: number;
5971
6221
  totalCostKW?: number;
5972
6222
  };
6223
+ interconnectingEntity?: string;
6224
+ poiLocation?: string | number;
6225
+ reportCount?: number;
6226
+ withdrawnDate?: string;
6227
+ sourceUpdate?: string;
6228
+ applicationType?: string;
5973
6229
  dateCreated?: string;
5974
6230
  events?: {
5975
6231
  id?: string;
@@ -6038,7 +6294,6 @@ export declare const usQueueAPISchema: z.ZodObject<{
6038
6294
  meta?: string;
6039
6295
  poiGroup?: string;
6040
6296
  };
6041
- reportCount?: number;
6042
6297
  signals?: {
6043
6298
  type?: string;
6044
6299
  subType?: string;
@@ -6047,7 +6302,6 @@ export declare const usQueueAPISchema: z.ZodObject<{
6047
6302
  headline?: string;
6048
6303
  publishedDate?: string;
6049
6304
  }[];
6050
- withdrawnDate?: string;
6051
6305
  queueDataSetType?: string;
6052
6306
  regions?: {
6053
6307
  id?: string;
@@ -6271,6 +6525,7 @@ export declare const queueAPISchema: z.ZodUnion<[z.ZodObject<{
6271
6525
  projectName?: string;
6272
6526
  totalMw?: number;
6273
6527
  applicationStatus?: string;
6528
+ withdrawnDate?: string;
6274
6529
  localTown?: string;
6275
6530
  mwNet?: number;
6276
6531
  refId?: string;
@@ -6279,7 +6534,6 @@ export declare const queueAPISchema: z.ZodUnion<[z.ZodObject<{
6279
6534
  technology?: string;
6280
6535
  windFarmName?: string;
6281
6536
  applicationType?: string;
6282
- withdrawnDate?: string;
6283
6537
  constructionDate?: string;
6284
6538
  developmentStatus?: string;
6285
6539
  localRegion?: string;
@@ -6345,6 +6599,7 @@ export declare const queueAPISchema: z.ZodUnion<[z.ZodObject<{
6345
6599
  projectName?: string;
6346
6600
  totalMw?: number;
6347
6601
  applicationStatus?: string;
6602
+ withdrawnDate?: string;
6348
6603
  localTown?: string;
6349
6604
  mwNet?: number;
6350
6605
  refId?: string;
@@ -6353,7 +6608,6 @@ export declare const queueAPISchema: z.ZodUnion<[z.ZodObject<{
6353
6608
  technology?: string;
6354
6609
  windFarmName?: string;
6355
6610
  applicationType?: string;
6356
- withdrawnDate?: string;
6357
6611
  constructionDate?: string;
6358
6612
  developmentStatus?: string;
6359
6613
  localRegion?: string;
@@ -6370,25 +6624,6 @@ export declare const queueAPISchema: z.ZodUnion<[z.ZodObject<{
6370
6624
  }>, z.ZodObject<{
6371
6625
  $organizations: z.ZodOptional<z.ZodString>;
6372
6626
  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
6627
  dateCreated: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
6393
6628
  documents: z.ZodOptional<z.ZodArray<z.ZodObject<{
6394
6629
  date: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
@@ -6690,8 +6925,6 @@ export declare const queueAPISchema: z.ZodUnion<[z.ZodObject<{
6690
6925
  meta?: string;
6691
6926
  poiGroup?: string;
6692
6927
  }>>;
6693
- reportCount: z.ZodOptional<z.ZodNumber>;
6694
- reportDate: z.ZodOptional<z.ZodString>;
6695
6928
  sectors: z.ZodArray<z.ZodObject<{
6696
6929
  identifier: z.ZodString;
6697
6930
  id: z.ZodString;
@@ -6725,8 +6958,6 @@ export declare const queueAPISchema: z.ZodUnion<[z.ZodObject<{
6725
6958
  headline?: string;
6726
6959
  publishedDate?: string;
6727
6960
  }>, "many">>;
6728
- withdrawnDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
6729
- } & {
6730
6961
  id: z.ZodString;
6731
6962
  schema: z.ZodLiteral<"us_queue">;
6732
6963
  actualOperationalDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
@@ -6740,6 +6971,25 @@ export declare const queueAPISchema: z.ZodUnion<[z.ZodObject<{
6740
6971
  }, {
6741
6972
  identifier?: string;
6742
6973
  }>, "many">>;
6974
+ cost: z.ZodOptional<z.ZodObject<{
6975
+ costCompany: z.ZodString;
6976
+ costYear: z.ZodNumber;
6977
+ networkCostKW: z.ZodNumber;
6978
+ poiCostKW: z.ZodNumber;
6979
+ totalCostKW: z.ZodNumber;
6980
+ }, "strip", z.ZodTypeAny, {
6981
+ costCompany?: string;
6982
+ costYear?: number;
6983
+ networkCostKW?: number;
6984
+ poiCostKW?: number;
6985
+ totalCostKW?: number;
6986
+ }, {
6987
+ costCompany?: string;
6988
+ costYear?: number;
6989
+ networkCostKW?: number;
6990
+ poiCostKW?: number;
6991
+ totalCostKW?: number;
6992
+ }>>;
6743
6993
  country: z.ZodOptional<z.ZodArray<z.ZodObject<{
6744
6994
  identifier: z.ZodString;
6745
6995
  id: z.ZodString;
@@ -6873,7 +7123,10 @@ export declare const queueAPISchema: z.ZodUnion<[z.ZodObject<{
6873
7123
  projectName: z.ZodOptional<z.ZodString>;
6874
7124
  queueDataset: z.ZodOptional<z.ZodString>;
6875
7125
  queueDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
7126
+ reportCount: z.ZodOptional<z.ZodNumber>;
7127
+ reportDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
6876
7128
  totalMw: z.ZodOptional<z.ZodNumber>;
7129
+ withdrawnDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
6877
7130
  } & {
6878
7131
  audiences: z.ZodArray<z.ZodObject<{
6879
7132
  identifier: z.ZodString;
@@ -6981,10 +7234,6 @@ export declare const queueAPISchema: z.ZodUnion<[z.ZodObject<{
6981
7234
  projectName?: string;
6982
7235
  totalMw?: number;
6983
7236
  applicationStatus?: string;
6984
- interconnectingEntity?: string;
6985
- poiLocation?: string | number;
6986
- sourceUpdate?: string;
6987
- applicationType?: string;
6988
7237
  cost?: {
6989
7238
  costCompany?: string;
6990
7239
  costYear?: number;
@@ -6992,6 +7241,12 @@ export declare const queueAPISchema: z.ZodUnion<[z.ZodObject<{
6992
7241
  poiCostKW?: number;
6993
7242
  totalCostKW?: number;
6994
7243
  };
7244
+ interconnectingEntity?: string;
7245
+ poiLocation?: string | number;
7246
+ reportCount?: number;
7247
+ withdrawnDate?: string;
7248
+ sourceUpdate?: string;
7249
+ applicationType?: string;
6995
7250
  dateCreated?: string;
6996
7251
  events?: {
6997
7252
  id?: string;
@@ -7060,7 +7315,6 @@ export declare const queueAPISchema: z.ZodUnion<[z.ZodObject<{
7060
7315
  meta?: string;
7061
7316
  poiGroup?: string;
7062
7317
  };
7063
- reportCount?: number;
7064
7318
  signals?: {
7065
7319
  type?: string;
7066
7320
  subType?: string;
@@ -7069,7 +7323,6 @@ export declare const queueAPISchema: z.ZodUnion<[z.ZodObject<{
7069
7323
  headline?: string;
7070
7324
  publishedDate?: string;
7071
7325
  }[];
7072
- withdrawnDate?: string;
7073
7326
  queueDataSetType?: string;
7074
7327
  regions?: {
7075
7328
  id?: string;
@@ -7161,10 +7414,6 @@ export declare const queueAPISchema: z.ZodUnion<[z.ZodObject<{
7161
7414
  projectName?: string;
7162
7415
  totalMw?: number;
7163
7416
  applicationStatus?: string;
7164
- interconnectingEntity?: string;
7165
- poiLocation?: string | number;
7166
- sourceUpdate?: string;
7167
- applicationType?: string;
7168
7417
  cost?: {
7169
7418
  costCompany?: string;
7170
7419
  costYear?: number;
@@ -7172,6 +7421,12 @@ export declare const queueAPISchema: z.ZodUnion<[z.ZodObject<{
7172
7421
  poiCostKW?: number;
7173
7422
  totalCostKW?: number;
7174
7423
  };
7424
+ interconnectingEntity?: string;
7425
+ poiLocation?: string | number;
7426
+ reportCount?: number;
7427
+ withdrawnDate?: string;
7428
+ sourceUpdate?: string;
7429
+ applicationType?: string;
7175
7430
  dateCreated?: string;
7176
7431
  events?: {
7177
7432
  id?: string;
@@ -7240,7 +7495,6 @@ export declare const queueAPISchema: z.ZodUnion<[z.ZodObject<{
7240
7495
  meta?: string;
7241
7496
  poiGroup?: string;
7242
7497
  };
7243
- reportCount?: number;
7244
7498
  signals?: {
7245
7499
  type?: string;
7246
7500
  subType?: string;
@@ -7249,7 +7503,6 @@ export declare const queueAPISchema: z.ZodUnion<[z.ZodObject<{
7249
7503
  headline?: string;
7250
7504
  publishedDate?: string;
7251
7505
  }[];
7252
- withdrawnDate?: string;
7253
7506
  queueDataSetType?: string;
7254
7507
  regions?: {
7255
7508
  id?: string;
@@ -7262,25 +7515,6 @@ export declare const queueAPISchema: z.ZodUnion<[z.ZodObject<{
7262
7515
  export declare const queueAPIUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.ZodObject<{
7263
7516
  $organizations: z.ZodOptional<z.ZodString>;
7264
7517
  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
7518
  dateCreated: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
7285
7519
  documents: z.ZodOptional<z.ZodArray<z.ZodObject<{
7286
7520
  date: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
@@ -7582,8 +7816,6 @@ export declare const queueAPIUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.Z
7582
7816
  meta?: string;
7583
7817
  poiGroup?: string;
7584
7818
  }>>;
7585
- reportCount: z.ZodOptional<z.ZodNumber>;
7586
- reportDate: z.ZodOptional<z.ZodString>;
7587
7819
  sectors: z.ZodArray<z.ZodObject<{
7588
7820
  identifier: z.ZodString;
7589
7821
  id: z.ZodString;
@@ -7617,8 +7849,6 @@ export declare const queueAPIUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.Z
7617
7849
  headline?: string;
7618
7850
  publishedDate?: string;
7619
7851
  }>, "many">>;
7620
- withdrawnDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
7621
- } & {
7622
7852
  id: z.ZodString;
7623
7853
  schema: z.ZodLiteral<"us_queue">;
7624
7854
  actualOperationalDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
@@ -7632,6 +7862,25 @@ export declare const queueAPIUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.Z
7632
7862
  }, {
7633
7863
  identifier?: string;
7634
7864
  }>, "many">>;
7865
+ cost: z.ZodOptional<z.ZodObject<{
7866
+ costCompany: z.ZodString;
7867
+ costYear: z.ZodNumber;
7868
+ networkCostKW: z.ZodNumber;
7869
+ poiCostKW: z.ZodNumber;
7870
+ totalCostKW: z.ZodNumber;
7871
+ }, "strip", z.ZodTypeAny, {
7872
+ costCompany?: string;
7873
+ costYear?: number;
7874
+ networkCostKW?: number;
7875
+ poiCostKW?: number;
7876
+ totalCostKW?: number;
7877
+ }, {
7878
+ costCompany?: string;
7879
+ costYear?: number;
7880
+ networkCostKW?: number;
7881
+ poiCostKW?: number;
7882
+ totalCostKW?: number;
7883
+ }>>;
7635
7884
  country: z.ZodOptional<z.ZodArray<z.ZodObject<{
7636
7885
  identifier: z.ZodString;
7637
7886
  id: z.ZodString;
@@ -7765,7 +8014,10 @@ export declare const queueAPIUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.Z
7765
8014
  projectName: z.ZodOptional<z.ZodString>;
7766
8015
  queueDataset: z.ZodOptional<z.ZodString>;
7767
8016
  queueDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
8017
+ reportCount: z.ZodOptional<z.ZodNumber>;
8018
+ reportDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
7768
8019
  totalMw: z.ZodOptional<z.ZodNumber>;
8020
+ withdrawnDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
7769
8021
  } & {
7770
8022
  audiences: z.ZodArray<z.ZodObject<{
7771
8023
  identifier: z.ZodString;
@@ -7873,10 +8125,6 @@ export declare const queueAPIUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.Z
7873
8125
  projectName?: string;
7874
8126
  totalMw?: number;
7875
8127
  applicationStatus?: string;
7876
- interconnectingEntity?: string;
7877
- poiLocation?: string | number;
7878
- sourceUpdate?: string;
7879
- applicationType?: string;
7880
8128
  cost?: {
7881
8129
  costCompany?: string;
7882
8130
  costYear?: number;
@@ -7884,6 +8132,12 @@ export declare const queueAPIUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.Z
7884
8132
  poiCostKW?: number;
7885
8133
  totalCostKW?: number;
7886
8134
  };
8135
+ interconnectingEntity?: string;
8136
+ poiLocation?: string | number;
8137
+ reportCount?: number;
8138
+ withdrawnDate?: string;
8139
+ sourceUpdate?: string;
8140
+ applicationType?: string;
7887
8141
  dateCreated?: string;
7888
8142
  events?: {
7889
8143
  id?: string;
@@ -7952,7 +8206,6 @@ export declare const queueAPIUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.Z
7952
8206
  meta?: string;
7953
8207
  poiGroup?: string;
7954
8208
  };
7955
- reportCount?: number;
7956
8209
  signals?: {
7957
8210
  type?: string;
7958
8211
  subType?: string;
@@ -7961,7 +8214,6 @@ export declare const queueAPIUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.Z
7961
8214
  headline?: string;
7962
8215
  publishedDate?: string;
7963
8216
  }[];
7964
- withdrawnDate?: string;
7965
8217
  queueDataSetType?: string;
7966
8218
  regions?: {
7967
8219
  id?: string;
@@ -8053,10 +8305,6 @@ export declare const queueAPIUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.Z
8053
8305
  projectName?: string;
8054
8306
  totalMw?: number;
8055
8307
  applicationStatus?: string;
8056
- interconnectingEntity?: string;
8057
- poiLocation?: string | number;
8058
- sourceUpdate?: string;
8059
- applicationType?: string;
8060
8308
  cost?: {
8061
8309
  costCompany?: string;
8062
8310
  costYear?: number;
@@ -8064,6 +8312,12 @@ export declare const queueAPIUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.Z
8064
8312
  poiCostKW?: number;
8065
8313
  totalCostKW?: number;
8066
8314
  };
8315
+ interconnectingEntity?: string;
8316
+ poiLocation?: string | number;
8317
+ reportCount?: number;
8318
+ withdrawnDate?: string;
8319
+ sourceUpdate?: string;
8320
+ applicationType?: string;
8067
8321
  dateCreated?: string;
8068
8322
  events?: {
8069
8323
  id?: string;
@@ -8132,7 +8386,6 @@ export declare const queueAPIUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.Z
8132
8386
  meta?: string;
8133
8387
  poiGroup?: string;
8134
8388
  };
8135
- reportCount?: number;
8136
8389
  signals?: {
8137
8390
  type?: string;
8138
8391
  subType?: string;
@@ -8141,7 +8394,6 @@ export declare const queueAPIUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.Z
8141
8394
  headline?: string;
8142
8395
  publishedDate?: string;
8143
8396
  }[];
8144
- withdrawnDate?: string;
8145
8397
  queueDataSetType?: string;
8146
8398
  regions?: {
8147
8399
  id?: string;
@@ -8364,6 +8616,7 @@ export declare const queueAPIUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.Z
8364
8616
  projectName?: string;
8365
8617
  totalMw?: number;
8366
8618
  applicationStatus?: string;
8619
+ withdrawnDate?: string;
8367
8620
  localTown?: string;
8368
8621
  mwNet?: number;
8369
8622
  refId?: string;
@@ -8372,7 +8625,6 @@ export declare const queueAPIUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.Z
8372
8625
  technology?: string;
8373
8626
  windFarmName?: string;
8374
8627
  applicationType?: string;
8375
- withdrawnDate?: string;
8376
8628
  constructionDate?: string;
8377
8629
  developmentStatus?: string;
8378
8630
  localRegion?: string;
@@ -8438,6 +8690,7 @@ export declare const queueAPIUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.Z
8438
8690
  projectName?: string;
8439
8691
  totalMw?: number;
8440
8692
  applicationStatus?: string;
8693
+ withdrawnDate?: string;
8441
8694
  localTown?: string;
8442
8695
  mwNet?: number;
8443
8696
  refId?: string;
@@ -8446,7 +8699,6 @@ export declare const queueAPIUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.Z
8446
8699
  technology?: string;
8447
8700
  windFarmName?: string;
8448
8701
  applicationType?: string;
8449
- withdrawnDate?: string;
8450
8702
  constructionDate?: string;
8451
8703
  developmentStatus?: string;
8452
8704
  localRegion?: string;
@@ -8577,8 +8829,10 @@ declare const euQueueExportSchema: z.ZodObject<{
8577
8829
  projectName: z.ZodOptional<z.ZodString>;
8578
8830
  queueDataset: z.ZodOptional<z.ZodString>;
8579
8831
  queueDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
8832
+ reportDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
8580
8833
  status: z.ZodOptional<z.ZodString>;
8581
8834
  totalMw: z.ZodOptional<z.ZodNumber>;
8835
+ totals: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
8582
8836
  } & {
8583
8837
  sort: z.ZodTuple<[z.ZodUnion<[z.ZodNumber, z.ZodString]>, z.ZodNumber], null>;
8584
8838
  } & {
@@ -8629,6 +8883,8 @@ declare const euQueueExportSchema: z.ZodObject<{
8629
8883
  lon?: number;
8630
8884
  };
8631
8885
  };
8886
+ totals?: Record<string, number>;
8887
+ reportDate?: string;
8632
8888
  queueDate?: string;
8633
8889
  schema?: "eu_queue";
8634
8890
  actualOperationalDate?: string;
@@ -8675,6 +8931,8 @@ declare const euQueueExportSchema: z.ZodObject<{
8675
8931
  lon?: number;
8676
8932
  };
8677
8933
  };
8934
+ totals?: Record<string, number>;
8935
+ reportDate?: string;
8678
8936
  queueDate?: string;
8679
8937
  schema?: "eu_queue";
8680
8938
  actualOperationalDate?: string;
@@ -8701,6 +8959,25 @@ declare const usQueueExportSchema: z.ZodObject<{
8701
8959
  }, {
8702
8960
  identifier?: string;
8703
8961
  }>, "many">>;
8962
+ cost: z.ZodOptional<z.ZodObject<{
8963
+ costCompany: z.ZodString;
8964
+ costYear: z.ZodNumber;
8965
+ networkCostKW: z.ZodNumber;
8966
+ poiCostKW: z.ZodNumber;
8967
+ totalCostKW: z.ZodNumber;
8968
+ }, "strip", z.ZodTypeAny, {
8969
+ costCompany?: string;
8970
+ costYear?: number;
8971
+ networkCostKW?: number;
8972
+ poiCostKW?: number;
8973
+ totalCostKW?: number;
8974
+ }, {
8975
+ costCompany?: string;
8976
+ costYear?: number;
8977
+ networkCostKW?: number;
8978
+ poiCostKW?: number;
8979
+ totalCostKW?: number;
8980
+ }>>;
8704
8981
  country: z.ZodOptional<z.ZodArray<z.ZodObject<{
8705
8982
  identifier: z.ZodString;
8706
8983
  id: z.ZodString;
@@ -8834,7 +9111,11 @@ declare const usQueueExportSchema: z.ZodObject<{
8834
9111
  projectName: z.ZodOptional<z.ZodString>;
8835
9112
  queueDataset: z.ZodOptional<z.ZodString>;
8836
9113
  queueDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
9114
+ reportCount: z.ZodOptional<z.ZodNumber>;
9115
+ reportDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
8837
9116
  totalMw: z.ZodOptional<z.ZodNumber>;
9117
+ totals: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
9118
+ withdrawnDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
8838
9119
  } & {
8839
9120
  sort: z.ZodTuple<[z.ZodUnion<[z.ZodNumber, z.ZodString]>, z.ZodNumber], null>;
8840
9121
  }, "strict", z.ZodTypeAny, {
@@ -8872,6 +9153,8 @@ declare const usQueueExportSchema: z.ZodObject<{
8872
9153
  lon?: number;
8873
9154
  };
8874
9155
  };
9156
+ totals?: Record<string, number>;
9157
+ reportDate?: string;
8875
9158
  applicationTags?: {
8876
9159
  identifier?: string;
8877
9160
  }[];
@@ -8891,8 +9174,17 @@ declare const usQueueExportSchema: z.ZodObject<{
8891
9174
  projectName?: string;
8892
9175
  totalMw?: number;
8893
9176
  applicationStatus?: string;
9177
+ cost?: {
9178
+ costCompany?: string;
9179
+ costYear?: number;
9180
+ networkCostKW?: number;
9181
+ poiCostKW?: number;
9182
+ totalCostKW?: number;
9183
+ };
8894
9184
  interconnectingEntity?: string;
8895
9185
  poiLocation?: string | number;
9186
+ reportCount?: number;
9187
+ withdrawnDate?: string;
8896
9188
  }, {
8897
9189
  id?: string;
8898
9190
  sort?: [string | number, number, ...unknown[]];
@@ -8928,6 +9220,8 @@ declare const usQueueExportSchema: z.ZodObject<{
8928
9220
  lon?: number;
8929
9221
  };
8930
9222
  };
9223
+ totals?: Record<string, number>;
9224
+ reportDate?: string;
8931
9225
  applicationTags?: {
8932
9226
  identifier?: string;
8933
9227
  }[];
@@ -8947,8 +9241,17 @@ declare const usQueueExportSchema: z.ZodObject<{
8947
9241
  projectName?: string;
8948
9242
  totalMw?: number;
8949
9243
  applicationStatus?: string;
9244
+ cost?: {
9245
+ costCompany?: string;
9246
+ costYear?: number;
9247
+ networkCostKW?: number;
9248
+ poiCostKW?: number;
9249
+ totalCostKW?: number;
9250
+ };
8950
9251
  interconnectingEntity?: string;
8951
9252
  poiLocation?: string | number;
9253
+ reportCount?: number;
9254
+ withdrawnDate?: string;
8952
9255
  }>;
8953
9256
  export declare const queueExportUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.ZodObject<{
8954
9257
  id: z.ZodString;
@@ -9062,8 +9365,10 @@ export declare const queueExportUnionSchema: z.ZodDiscriminatedUnion<"schema", [
9062
9365
  projectName: z.ZodOptional<z.ZodString>;
9063
9366
  queueDataset: z.ZodOptional<z.ZodString>;
9064
9367
  queueDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
9368
+ reportDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
9065
9369
  status: z.ZodOptional<z.ZodString>;
9066
9370
  totalMw: z.ZodOptional<z.ZodNumber>;
9371
+ totals: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
9067
9372
  } & {
9068
9373
  sort: z.ZodTuple<[z.ZodUnion<[z.ZodNumber, z.ZodString]>, z.ZodNumber], null>;
9069
9374
  } & {
@@ -9114,6 +9419,8 @@ export declare const queueExportUnionSchema: z.ZodDiscriminatedUnion<"schema", [
9114
9419
  lon?: number;
9115
9420
  };
9116
9421
  };
9422
+ totals?: Record<string, number>;
9423
+ reportDate?: string;
9117
9424
  queueDate?: string;
9118
9425
  schema?: "eu_queue";
9119
9426
  actualOperationalDate?: string;
@@ -9160,6 +9467,8 @@ export declare const queueExportUnionSchema: z.ZodDiscriminatedUnion<"schema", [
9160
9467
  lon?: number;
9161
9468
  };
9162
9469
  };
9470
+ totals?: Record<string, number>;
9471
+ reportDate?: string;
9163
9472
  queueDate?: string;
9164
9473
  schema?: "eu_queue";
9165
9474
  actualOperationalDate?: string;
@@ -9185,6 +9494,25 @@ export declare const queueExportUnionSchema: z.ZodDiscriminatedUnion<"schema", [
9185
9494
  }, {
9186
9495
  identifier?: string;
9187
9496
  }>, "many">>;
9497
+ cost: z.ZodOptional<z.ZodObject<{
9498
+ costCompany: z.ZodString;
9499
+ costYear: z.ZodNumber;
9500
+ networkCostKW: z.ZodNumber;
9501
+ poiCostKW: z.ZodNumber;
9502
+ totalCostKW: z.ZodNumber;
9503
+ }, "strip", z.ZodTypeAny, {
9504
+ costCompany?: string;
9505
+ costYear?: number;
9506
+ networkCostKW?: number;
9507
+ poiCostKW?: number;
9508
+ totalCostKW?: number;
9509
+ }, {
9510
+ costCompany?: string;
9511
+ costYear?: number;
9512
+ networkCostKW?: number;
9513
+ poiCostKW?: number;
9514
+ totalCostKW?: number;
9515
+ }>>;
9188
9516
  country: z.ZodOptional<z.ZodArray<z.ZodObject<{
9189
9517
  identifier: z.ZodString;
9190
9518
  id: z.ZodString;
@@ -9318,7 +9646,11 @@ export declare const queueExportUnionSchema: z.ZodDiscriminatedUnion<"schema", [
9318
9646
  projectName: z.ZodOptional<z.ZodString>;
9319
9647
  queueDataset: z.ZodOptional<z.ZodString>;
9320
9648
  queueDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
9649
+ reportCount: z.ZodOptional<z.ZodNumber>;
9650
+ reportDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
9321
9651
  totalMw: z.ZodOptional<z.ZodNumber>;
9652
+ totals: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
9653
+ withdrawnDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
9322
9654
  } & {
9323
9655
  sort: z.ZodTuple<[z.ZodUnion<[z.ZodNumber, z.ZodString]>, z.ZodNumber], null>;
9324
9656
  }, "strict", z.ZodTypeAny, {
@@ -9356,6 +9688,8 @@ export declare const queueExportUnionSchema: z.ZodDiscriminatedUnion<"schema", [
9356
9688
  lon?: number;
9357
9689
  };
9358
9690
  };
9691
+ totals?: Record<string, number>;
9692
+ reportDate?: string;
9359
9693
  applicationTags?: {
9360
9694
  identifier?: string;
9361
9695
  }[];
@@ -9375,8 +9709,17 @@ export declare const queueExportUnionSchema: z.ZodDiscriminatedUnion<"schema", [
9375
9709
  projectName?: string;
9376
9710
  totalMw?: number;
9377
9711
  applicationStatus?: string;
9712
+ cost?: {
9713
+ costCompany?: string;
9714
+ costYear?: number;
9715
+ networkCostKW?: number;
9716
+ poiCostKW?: number;
9717
+ totalCostKW?: number;
9718
+ };
9378
9719
  interconnectingEntity?: string;
9379
9720
  poiLocation?: string | number;
9721
+ reportCount?: number;
9722
+ withdrawnDate?: string;
9380
9723
  }, {
9381
9724
  id?: string;
9382
9725
  sort?: [string | number, number, ...unknown[]];
@@ -9412,6 +9755,8 @@ export declare const queueExportUnionSchema: z.ZodDiscriminatedUnion<"schema", [
9412
9755
  lon?: number;
9413
9756
  };
9414
9757
  };
9758
+ totals?: Record<string, number>;
9759
+ reportDate?: string;
9415
9760
  applicationTags?: {
9416
9761
  identifier?: string;
9417
9762
  }[];
@@ -9431,8 +9776,17 @@ export declare const queueExportUnionSchema: z.ZodDiscriminatedUnion<"schema", [
9431
9776
  projectName?: string;
9432
9777
  totalMw?: number;
9433
9778
  applicationStatus?: string;
9779
+ cost?: {
9780
+ costCompany?: string;
9781
+ costYear?: number;
9782
+ networkCostKW?: number;
9783
+ poiCostKW?: number;
9784
+ totalCostKW?: number;
9785
+ };
9434
9786
  interconnectingEntity?: string;
9435
9787
  poiLocation?: string | number;
9788
+ reportCount?: number;
9789
+ withdrawnDate?: string;
9436
9790
  }>]>;
9437
9791
  export type QueueExportUnionType = z.infer<typeof queueExportUnionSchema>;
9438
9792
  export type EUQueueExportType = z.infer<typeof euQueueExportSchema>;