@new-project-media/client-frontends-shared-types 2.0.7 → 2.0.9

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,23 +121,9 @@ 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
- sectors: z.ZodArray<z.ZodObject<{
125
- identifier: z.ZodString;
126
- id: z.ZodString;
127
- }, "strip", z.ZodTypeAny, {
128
- id?: string;
129
- identifier?: string;
130
- }, {
131
- id?: string;
132
- identifier?: string;
133
- }>, "many">;
134
124
  status: z.ZodOptional<z.ZodString>;
135
125
  totalMw: z.ZodOptional<z.ZodNumber>;
136
126
  }, "strict", z.ZodTypeAny, {
137
- sectors?: {
138
- id?: string;
139
- identifier?: string;
140
- }[];
141
127
  id?: string;
142
128
  status?: string;
143
129
  applicationId?: string;
@@ -179,10 +165,6 @@ declare const euQueueListSchema: z.ZodObject<{
179
165
  projectName?: string;
180
166
  totalMw?: number;
181
167
  }, {
182
- sectors?: {
183
- id?: string;
184
- identifier?: string;
185
- }[];
186
168
  id?: string;
187
169
  status?: string;
188
170
  applicationId?: string;
@@ -373,22 +355,8 @@ declare const usQueueListSchema: z.ZodObject<{
373
355
  projectName: z.ZodOptional<z.ZodString>;
374
356
  queueDataset: z.ZodOptional<z.ZodString>;
375
357
  queueDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
376
- sectors: z.ZodArray<z.ZodObject<{
377
- identifier: z.ZodString;
378
- id: z.ZodString;
379
- }, "strip", z.ZodTypeAny, {
380
- id?: string;
381
- identifier?: string;
382
- }, {
383
- id?: string;
384
- identifier?: string;
385
- }>, "many">;
386
358
  totalMw: z.ZodOptional<z.ZodNumber>;
387
359
  }, "strict", z.ZodTypeAny, {
388
- sectors?: {
389
- id?: string;
390
- identifier?: string;
391
- }[];
392
360
  id?: string;
393
361
  applicationId?: string;
394
362
  queueDataset?: string;
@@ -444,10 +412,6 @@ declare const usQueueListSchema: z.ZodObject<{
444
412
  interconnectingEntity?: string;
445
413
  poiLocation?: string | number;
446
414
  }, {
447
- sectors?: {
448
- id?: string;
449
- identifier?: string;
450
- }[];
451
415
  id?: string;
452
416
  applicationId?: string;
453
417
  queueDataset?: string;
@@ -3135,27 +3099,13 @@ declare const euQueueListWithSortSchema: z.ZodObject<{
3135
3099
  projectName: z.ZodOptional<z.ZodString>;
3136
3100
  queueDataset: z.ZodOptional<z.ZodString>;
3137
3101
  queueDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
3138
- sectors: z.ZodArray<z.ZodObject<{
3139
- identifier: z.ZodString;
3140
- id: z.ZodString;
3141
- }, "strip", z.ZodTypeAny, {
3142
- id?: string;
3143
- identifier?: string;
3144
- }, {
3145
- id?: string;
3146
- identifier?: string;
3147
- }>, "many">;
3148
3102
  status: z.ZodOptional<z.ZodString>;
3149
3103
  totalMw: z.ZodOptional<z.ZodNumber>;
3150
3104
  } & {
3151
- sort: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;
3105
+ sort: z.ZodTuple<[z.ZodUnion<[z.ZodNumber, z.ZodString]>, z.ZodNumber], null>;
3152
3106
  }, "strict", z.ZodTypeAny, {
3153
- sectors?: {
3154
- id?: string;
3155
- identifier?: string;
3156
- }[];
3157
3107
  id?: string;
3158
- sort?: [number, number, ...unknown[]];
3108
+ sort?: [string | number, number, ...unknown[]];
3159
3109
  status?: string;
3160
3110
  applicationId?: string;
3161
3111
  queueDataset?: string;
@@ -3196,12 +3146,8 @@ declare const euQueueListWithSortSchema: z.ZodObject<{
3196
3146
  projectName?: string;
3197
3147
  totalMw?: number;
3198
3148
  }, {
3199
- sectors?: {
3200
- id?: string;
3201
- identifier?: string;
3202
- }[];
3203
3149
  id?: string;
3204
- sort?: [number, number, ...unknown[]];
3150
+ sort?: [string | number, number, ...unknown[]];
3205
3151
  status?: string;
3206
3152
  applicationId?: string;
3207
3153
  queueDataset?: string;
@@ -3391,26 +3337,12 @@ declare const usQueueListWithSortSchema: z.ZodObject<{
3391
3337
  projectName: z.ZodOptional<z.ZodString>;
3392
3338
  queueDataset: z.ZodOptional<z.ZodString>;
3393
3339
  queueDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
3394
- sectors: z.ZodArray<z.ZodObject<{
3395
- identifier: z.ZodString;
3396
- id: z.ZodString;
3397
- }, "strip", z.ZodTypeAny, {
3398
- id?: string;
3399
- identifier?: string;
3400
- }, {
3401
- id?: string;
3402
- identifier?: string;
3403
- }>, "many">;
3404
3340
  totalMw: z.ZodOptional<z.ZodNumber>;
3405
3341
  } & {
3406
- sort: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;
3342
+ sort: z.ZodTuple<[z.ZodUnion<[z.ZodNumber, z.ZodString]>, z.ZodNumber], null>;
3407
3343
  }, "strict", z.ZodTypeAny, {
3408
- sectors?: {
3409
- id?: string;
3410
- identifier?: string;
3411
- }[];
3412
3344
  id?: string;
3413
- sort?: [number, number, ...unknown[]];
3345
+ sort?: [string | number, number, ...unknown[]];
3414
3346
  applicationId?: string;
3415
3347
  queueDataset?: string;
3416
3348
  country?: {
@@ -3465,12 +3397,8 @@ declare const usQueueListWithSortSchema: z.ZodObject<{
3465
3397
  interconnectingEntity?: string;
3466
3398
  poiLocation?: string | number;
3467
3399
  }, {
3468
- sectors?: {
3469
- id?: string;
3470
- identifier?: string;
3471
- }[];
3472
3400
  id?: string;
3473
- sort?: [number, number, ...unknown[]];
3401
+ sort?: [string | number, number, ...unknown[]];
3474
3402
  applicationId?: string;
3475
3403
  queueDataset?: string;
3476
3404
  country?: {
@@ -3637,27 +3565,13 @@ declare const queueListSchema: z.ZodUnion<[z.ZodObject<{
3637
3565
  projectName: z.ZodOptional<z.ZodString>;
3638
3566
  queueDataset: z.ZodOptional<z.ZodString>;
3639
3567
  queueDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
3640
- sectors: z.ZodArray<z.ZodObject<{
3641
- identifier: z.ZodString;
3642
- id: z.ZodString;
3643
- }, "strip", z.ZodTypeAny, {
3644
- id?: string;
3645
- identifier?: string;
3646
- }, {
3647
- id?: string;
3648
- identifier?: string;
3649
- }>, "many">;
3650
3568
  status: z.ZodOptional<z.ZodString>;
3651
3569
  totalMw: z.ZodOptional<z.ZodNumber>;
3652
3570
  } & {
3653
- sort: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;
3571
+ sort: z.ZodTuple<[z.ZodUnion<[z.ZodNumber, z.ZodString]>, z.ZodNumber], null>;
3654
3572
  }, "strict", z.ZodTypeAny, {
3655
- sectors?: {
3656
- id?: string;
3657
- identifier?: string;
3658
- }[];
3659
3573
  id?: string;
3660
- sort?: [number, number, ...unknown[]];
3574
+ sort?: [string | number, number, ...unknown[]];
3661
3575
  status?: string;
3662
3576
  applicationId?: string;
3663
3577
  queueDataset?: string;
@@ -3698,12 +3612,8 @@ declare const queueListSchema: z.ZodUnion<[z.ZodObject<{
3698
3612
  projectName?: string;
3699
3613
  totalMw?: number;
3700
3614
  }, {
3701
- sectors?: {
3702
- id?: string;
3703
- identifier?: string;
3704
- }[];
3705
3615
  id?: string;
3706
- sort?: [number, number, ...unknown[]];
3616
+ sort?: [string | number, number, ...unknown[]];
3707
3617
  status?: string;
3708
3618
  applicationId?: string;
3709
3619
  queueDataset?: string;
@@ -3892,26 +3802,12 @@ declare const queueListSchema: z.ZodUnion<[z.ZodObject<{
3892
3802
  projectName: z.ZodOptional<z.ZodString>;
3893
3803
  queueDataset: z.ZodOptional<z.ZodString>;
3894
3804
  queueDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
3895
- sectors: z.ZodArray<z.ZodObject<{
3896
- identifier: z.ZodString;
3897
- id: z.ZodString;
3898
- }, "strip", z.ZodTypeAny, {
3899
- id?: string;
3900
- identifier?: string;
3901
- }, {
3902
- id?: string;
3903
- identifier?: string;
3904
- }>, "many">;
3905
3805
  totalMw: z.ZodOptional<z.ZodNumber>;
3906
3806
  } & {
3907
- sort: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;
3807
+ sort: z.ZodTuple<[z.ZodUnion<[z.ZodNumber, z.ZodString]>, z.ZodNumber], null>;
3908
3808
  }, "strict", z.ZodTypeAny, {
3909
- sectors?: {
3910
- id?: string;
3911
- identifier?: string;
3912
- }[];
3913
3809
  id?: string;
3914
- sort?: [number, number, ...unknown[]];
3810
+ sort?: [string | number, number, ...unknown[]];
3915
3811
  applicationId?: string;
3916
3812
  queueDataset?: string;
3917
3813
  country?: {
@@ -3966,12 +3862,8 @@ declare const queueListSchema: z.ZodUnion<[z.ZodObject<{
3966
3862
  interconnectingEntity?: string;
3967
3863
  poiLocation?: string | number;
3968
3864
  }, {
3969
- sectors?: {
3970
- id?: string;
3971
- identifier?: string;
3972
- }[];
3973
3865
  id?: string;
3974
- sort?: [number, number, ...unknown[]];
3866
+ sort?: [string | number, number, ...unknown[]];
3975
3867
  applicationId?: string;
3976
3868
  queueDataset?: string;
3977
3869
  country?: {
@@ -4138,27 +4030,13 @@ export declare const queueListUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.
4138
4030
  projectName: z.ZodOptional<z.ZodString>;
4139
4031
  queueDataset: z.ZodOptional<z.ZodString>;
4140
4032
  queueDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
4141
- sectors: z.ZodArray<z.ZodObject<{
4142
- identifier: z.ZodString;
4143
- id: z.ZodString;
4144
- }, "strip", z.ZodTypeAny, {
4145
- id?: string;
4146
- identifier?: string;
4147
- }, {
4148
- id?: string;
4149
- identifier?: string;
4150
- }>, "many">;
4151
4033
  status: z.ZodOptional<z.ZodString>;
4152
4034
  totalMw: z.ZodOptional<z.ZodNumber>;
4153
4035
  } & {
4154
- sort: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;
4036
+ sort: z.ZodTuple<[z.ZodUnion<[z.ZodNumber, z.ZodString]>, z.ZodNumber], null>;
4155
4037
  }, "strict", z.ZodTypeAny, {
4156
- sectors?: {
4157
- id?: string;
4158
- identifier?: string;
4159
- }[];
4160
4038
  id?: string;
4161
- sort?: [number, number, ...unknown[]];
4039
+ sort?: [string | number, number, ...unknown[]];
4162
4040
  status?: string;
4163
4041
  applicationId?: string;
4164
4042
  queueDataset?: string;
@@ -4199,12 +4077,8 @@ export declare const queueListUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.
4199
4077
  projectName?: string;
4200
4078
  totalMw?: number;
4201
4079
  }, {
4202
- sectors?: {
4203
- id?: string;
4204
- identifier?: string;
4205
- }[];
4206
4080
  id?: string;
4207
- sort?: [number, number, ...unknown[]];
4081
+ sort?: [string | number, number, ...unknown[]];
4208
4082
  status?: string;
4209
4083
  applicationId?: string;
4210
4084
  queueDataset?: string;
@@ -4393,26 +4267,12 @@ export declare const queueListUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.
4393
4267
  projectName: z.ZodOptional<z.ZodString>;
4394
4268
  queueDataset: z.ZodOptional<z.ZodString>;
4395
4269
  queueDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
4396
- sectors: z.ZodArray<z.ZodObject<{
4397
- identifier: z.ZodString;
4398
- id: z.ZodString;
4399
- }, "strip", z.ZodTypeAny, {
4400
- id?: string;
4401
- identifier?: string;
4402
- }, {
4403
- id?: string;
4404
- identifier?: string;
4405
- }>, "many">;
4406
4270
  totalMw: z.ZodOptional<z.ZodNumber>;
4407
4271
  } & {
4408
- sort: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;
4272
+ sort: z.ZodTuple<[z.ZodUnion<[z.ZodNumber, z.ZodString]>, z.ZodNumber], null>;
4409
4273
  }, "strict", z.ZodTypeAny, {
4410
- sectors?: {
4411
- id?: string;
4412
- identifier?: string;
4413
- }[];
4414
4274
  id?: string;
4415
- sort?: [number, number, ...unknown[]];
4275
+ sort?: [string | number, number, ...unknown[]];
4416
4276
  applicationId?: string;
4417
4277
  queueDataset?: string;
4418
4278
  country?: {
@@ -4467,12 +4327,8 @@ export declare const queueListUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.
4467
4327
  interconnectingEntity?: string;
4468
4328
  poiLocation?: string | number;
4469
4329
  }, {
4470
- sectors?: {
4471
- id?: string;
4472
- identifier?: string;
4473
- }[];
4474
4330
  id?: string;
4475
- sort?: [number, number, ...unknown[]];
4331
+ sort?: [string | number, number, ...unknown[]];
4476
4332
  applicationId?: string;
4477
4333
  queueDataset?: string;
4478
4334
  country?: {
@@ -4639,23 +4495,9 @@ export declare const queueListBaseUnionSchema: z.ZodDiscriminatedUnion<"schema",
4639
4495
  projectName: z.ZodOptional<z.ZodString>;
4640
4496
  queueDataset: z.ZodOptional<z.ZodString>;
4641
4497
  queueDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
4642
- sectors: z.ZodArray<z.ZodObject<{
4643
- identifier: z.ZodString;
4644
- id: z.ZodString;
4645
- }, "strip", z.ZodTypeAny, {
4646
- id?: string;
4647
- identifier?: string;
4648
- }, {
4649
- id?: string;
4650
- identifier?: string;
4651
- }>, "many">;
4652
4498
  status: z.ZodOptional<z.ZodString>;
4653
4499
  totalMw: z.ZodOptional<z.ZodNumber>;
4654
4500
  }, "strict", z.ZodTypeAny, {
4655
- sectors?: {
4656
- id?: string;
4657
- identifier?: string;
4658
- }[];
4659
4501
  id?: string;
4660
4502
  status?: string;
4661
4503
  applicationId?: string;
@@ -4697,10 +4539,6 @@ export declare const queueListBaseUnionSchema: z.ZodDiscriminatedUnion<"schema",
4697
4539
  projectName?: string;
4698
4540
  totalMw?: number;
4699
4541
  }, {
4700
- sectors?: {
4701
- id?: string;
4702
- identifier?: string;
4703
- }[];
4704
4542
  id?: string;
4705
4543
  status?: string;
4706
4544
  applicationId?: string;
@@ -4890,22 +4728,8 @@ export declare const queueListBaseUnionSchema: z.ZodDiscriminatedUnion<"schema",
4890
4728
  projectName: z.ZodOptional<z.ZodString>;
4891
4729
  queueDataset: z.ZodOptional<z.ZodString>;
4892
4730
  queueDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
4893
- sectors: z.ZodArray<z.ZodObject<{
4894
- identifier: z.ZodString;
4895
- id: z.ZodString;
4896
- }, "strip", z.ZodTypeAny, {
4897
- id?: string;
4898
- identifier?: string;
4899
- }, {
4900
- id?: string;
4901
- identifier?: string;
4902
- }>, "many">;
4903
4731
  totalMw: z.ZodOptional<z.ZodNumber>;
4904
4732
  }, "strict", z.ZodTypeAny, {
4905
- sectors?: {
4906
- id?: string;
4907
- identifier?: string;
4908
- }[];
4909
4733
  id?: string;
4910
4734
  applicationId?: string;
4911
4735
  queueDataset?: string;
@@ -4961,10 +4785,6 @@ export declare const queueListBaseUnionSchema: z.ZodDiscriminatedUnion<"schema",
4961
4785
  interconnectingEntity?: string;
4962
4786
  poiLocation?: string | number;
4963
4787
  }, {
4964
- sectors?: {
4965
- id?: string;
4966
- identifier?: string;
4967
- }[];
4968
4788
  id?: string;
4969
4789
  applicationId?: string;
4970
4790
  queueDataset?: string;
@@ -5031,6 +4851,16 @@ export declare const euQueueAPISchema: z.ZodObject<{
5031
4851
  localTown: z.ZodOptional<z.ZodString>;
5032
4852
  mwNet: z.ZodOptional<z.ZodNumber>;
5033
4853
  refId: z.ZodOptional<z.ZodString>;
4854
+ sectors: z.ZodArray<z.ZodObject<{
4855
+ identifier: z.ZodString;
4856
+ id: z.ZodString;
4857
+ }, "strip", z.ZodTypeAny, {
4858
+ id?: string;
4859
+ identifier?: string;
4860
+ }, {
4861
+ id?: string;
4862
+ identifier?: string;
4863
+ }>, "many">;
5034
4864
  storageCapacity: z.ZodOptional<z.ZodNumber>;
5035
4865
  technology: z.ZodOptional<z.ZodString>;
5036
4866
  windFarmName: z.ZodOptional<z.ZodString>;
@@ -5143,16 +4973,6 @@ export declare const euQueueAPISchema: z.ZodObject<{
5143
4973
  projectName: z.ZodOptional<z.ZodString>;
5144
4974
  queueDataset: z.ZodOptional<z.ZodString>;
5145
4975
  queueDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
5146
- sectors: z.ZodArray<z.ZodObject<{
5147
- identifier: z.ZodString;
5148
- id: z.ZodString;
5149
- }, "strip", z.ZodTypeAny, {
5150
- id?: string;
5151
- identifier?: string;
5152
- }, {
5153
- id?: string;
5154
- identifier?: string;
5155
- }>, "many">;
5156
4976
  status: z.ZodOptional<z.ZodString>;
5157
4977
  totalMw: z.ZodOptional<z.ZodNumber>;
5158
4978
  } & {
@@ -5661,6 +5481,16 @@ export declare const usQueueAPISchema: z.ZodObject<{
5661
5481
  }>>;
5662
5482
  reportCount: z.ZodOptional<z.ZodNumber>;
5663
5483
  reportDate: z.ZodOptional<z.ZodString>;
5484
+ sectors: z.ZodArray<z.ZodObject<{
5485
+ identifier: z.ZodString;
5486
+ id: z.ZodString;
5487
+ }, "strip", z.ZodTypeAny, {
5488
+ id?: string;
5489
+ identifier?: string;
5490
+ }, {
5491
+ id?: string;
5492
+ identifier?: string;
5493
+ }>, "many">;
5664
5494
  sourceUpdate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
5665
5495
  signals: z.ZodOptional<z.ZodArray<z.ZodObject<{
5666
5496
  filingDate: z.ZodString;
@@ -5832,16 +5662,6 @@ export declare const usQueueAPISchema: z.ZodObject<{
5832
5662
  projectName: z.ZodOptional<z.ZodString>;
5833
5663
  queueDataset: z.ZodOptional<z.ZodString>;
5834
5664
  queueDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
5835
- sectors: z.ZodArray<z.ZodObject<{
5836
- identifier: z.ZodString;
5837
- id: z.ZodString;
5838
- }, "strip", z.ZodTypeAny, {
5839
- id?: string;
5840
- identifier?: string;
5841
- }, {
5842
- id?: string;
5843
- identifier?: string;
5844
- }>, "many">;
5845
5665
  totalMw: z.ZodOptional<z.ZodNumber>;
5846
5666
  } & {
5847
5667
  audiences: z.ZodArray<z.ZodObject<{
@@ -6234,6 +6054,16 @@ export declare const queueAPISchema: z.ZodUnion<[z.ZodObject<{
6234
6054
  localTown: z.ZodOptional<z.ZodString>;
6235
6055
  mwNet: z.ZodOptional<z.ZodNumber>;
6236
6056
  refId: z.ZodOptional<z.ZodString>;
6057
+ sectors: z.ZodArray<z.ZodObject<{
6058
+ identifier: z.ZodString;
6059
+ id: z.ZodString;
6060
+ }, "strip", z.ZodTypeAny, {
6061
+ id?: string;
6062
+ identifier?: string;
6063
+ }, {
6064
+ id?: string;
6065
+ identifier?: string;
6066
+ }>, "many">;
6237
6067
  storageCapacity: z.ZodOptional<z.ZodNumber>;
6238
6068
  technology: z.ZodOptional<z.ZodString>;
6239
6069
  windFarmName: z.ZodOptional<z.ZodString>;
@@ -6346,16 +6176,6 @@ export declare const queueAPISchema: z.ZodUnion<[z.ZodObject<{
6346
6176
  projectName: z.ZodOptional<z.ZodString>;
6347
6177
  queueDataset: z.ZodOptional<z.ZodString>;
6348
6178
  queueDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
6349
- sectors: z.ZodArray<z.ZodObject<{
6350
- identifier: z.ZodString;
6351
- id: z.ZodString;
6352
- }, "strip", z.ZodTypeAny, {
6353
- id?: string;
6354
- identifier?: string;
6355
- }, {
6356
- id?: string;
6357
- identifier?: string;
6358
- }>, "many">;
6359
6179
  status: z.ZodOptional<z.ZodString>;
6360
6180
  totalMw: z.ZodOptional<z.ZodNumber>;
6361
6181
  } & {
@@ -6863,6 +6683,16 @@ export declare const queueAPISchema: z.ZodUnion<[z.ZodObject<{
6863
6683
  }>>;
6864
6684
  reportCount: z.ZodOptional<z.ZodNumber>;
6865
6685
  reportDate: z.ZodOptional<z.ZodString>;
6686
+ sectors: z.ZodArray<z.ZodObject<{
6687
+ identifier: z.ZodString;
6688
+ id: z.ZodString;
6689
+ }, "strip", z.ZodTypeAny, {
6690
+ id?: string;
6691
+ identifier?: string;
6692
+ }, {
6693
+ id?: string;
6694
+ identifier?: string;
6695
+ }>, "many">;
6866
6696
  sourceUpdate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
6867
6697
  signals: z.ZodOptional<z.ZodArray<z.ZodObject<{
6868
6698
  filingDate: z.ZodString;
@@ -7034,19 +6864,9 @@ export declare const queueAPISchema: z.ZodUnion<[z.ZodObject<{
7034
6864
  projectName: z.ZodOptional<z.ZodString>;
7035
6865
  queueDataset: z.ZodOptional<z.ZodString>;
7036
6866
  queueDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
7037
- sectors: z.ZodArray<z.ZodObject<{
7038
- identifier: z.ZodString;
7039
- id: z.ZodString;
7040
- }, "strip", z.ZodTypeAny, {
7041
- id?: string;
7042
- identifier?: string;
7043
- }, {
7044
- id?: string;
7045
- identifier?: string;
7046
- }>, "many">;
7047
- totalMw: z.ZodOptional<z.ZodNumber>;
7048
- } & {
7049
- audiences: z.ZodArray<z.ZodObject<{
6867
+ totalMw: z.ZodOptional<z.ZodNumber>;
6868
+ } & {
6869
+ audiences: z.ZodArray<z.ZodObject<{
7050
6870
  identifier: z.ZodString;
7051
6871
  }, "strip", z.ZodTypeAny, {
7052
6872
  identifier?: string;
@@ -7436,6 +7256,16 @@ export declare const queueAPIUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.Z
7436
7256
  localTown: z.ZodOptional<z.ZodString>;
7437
7257
  mwNet: z.ZodOptional<z.ZodNumber>;
7438
7258
  refId: z.ZodOptional<z.ZodString>;
7259
+ sectors: z.ZodArray<z.ZodObject<{
7260
+ identifier: z.ZodString;
7261
+ id: z.ZodString;
7262
+ }, "strip", z.ZodTypeAny, {
7263
+ id?: string;
7264
+ identifier?: string;
7265
+ }, {
7266
+ id?: string;
7267
+ identifier?: string;
7268
+ }>, "many">;
7439
7269
  storageCapacity: z.ZodOptional<z.ZodNumber>;
7440
7270
  technology: z.ZodOptional<z.ZodString>;
7441
7271
  windFarmName: z.ZodOptional<z.ZodString>;
@@ -7548,16 +7378,6 @@ export declare const queueAPIUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.Z
7548
7378
  projectName: z.ZodOptional<z.ZodString>;
7549
7379
  queueDataset: z.ZodOptional<z.ZodString>;
7550
7380
  queueDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
7551
- sectors: z.ZodArray<z.ZodObject<{
7552
- identifier: z.ZodString;
7553
- id: z.ZodString;
7554
- }, "strip", z.ZodTypeAny, {
7555
- id?: string;
7556
- identifier?: string;
7557
- }, {
7558
- id?: string;
7559
- identifier?: string;
7560
- }>, "many">;
7561
7381
  status: z.ZodOptional<z.ZodString>;
7562
7382
  totalMw: z.ZodOptional<z.ZodNumber>;
7563
7383
  } & {
@@ -8065,6 +7885,16 @@ export declare const queueAPIUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.Z
8065
7885
  }>>;
8066
7886
  reportCount: z.ZodOptional<z.ZodNumber>;
8067
7887
  reportDate: z.ZodOptional<z.ZodString>;
7888
+ sectors: z.ZodArray<z.ZodObject<{
7889
+ identifier: z.ZodString;
7890
+ id: z.ZodString;
7891
+ }, "strip", z.ZodTypeAny, {
7892
+ id?: string;
7893
+ identifier?: string;
7894
+ }, {
7895
+ id?: string;
7896
+ identifier?: string;
7897
+ }>, "many">;
8068
7898
  sourceUpdate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
8069
7899
  signals: z.ZodOptional<z.ZodArray<z.ZodObject<{
8070
7900
  filingDate: z.ZodString;
@@ -8236,16 +8066,6 @@ export declare const queueAPIUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.Z
8236
8066
  projectName: z.ZodOptional<z.ZodString>;
8237
8067
  queueDataset: z.ZodOptional<z.ZodString>;
8238
8068
  queueDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
8239
- sectors: z.ZodArray<z.ZodObject<{
8240
- identifier: z.ZodString;
8241
- id: z.ZodString;
8242
- }, "strip", z.ZodTypeAny, {
8243
- id?: string;
8244
- identifier?: string;
8245
- }, {
8246
- id?: string;
8247
- identifier?: string;
8248
- }>, "many">;
8249
8069
  totalMw: z.ZodOptional<z.ZodNumber>;
8250
8070
  } & {
8251
8071
  audiences: z.ZodArray<z.ZodObject<{
@@ -8636,3 +8456,975 @@ export type QueueAPIType = z.infer<typeof queueAPISchema>;
8636
8456
  export type QueueAPIUnionType = z.infer<typeof queueAPIUnionSchema>;
8637
8457
  export type EUQueueAPIType = z.infer<typeof euQueueAPISchema>;
8638
8458
  export type USQueueAPIType = z.infer<typeof usQueueAPISchema>;
8459
+ declare const euQueueExportSchema: z.ZodObject<{
8460
+ id: z.ZodString;
8461
+ } & {
8462
+ schema: z.ZodLiteral<"eu_queue">;
8463
+ } & {
8464
+ actualOperationalDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
8465
+ allSectors: z.ZodOptional<z.ZodString>;
8466
+ applicationId: z.ZodOptional<z.ZodString>;
8467
+ country: z.ZodOptional<z.ZodString>;
8468
+ geo: z.ZodOptional<z.ZodObject<{
8469
+ defaultValue: z.ZodOptional<z.ZodString>;
8470
+ default: z.ZodOptional<z.ZodObject<{
8471
+ lon: z.ZodNumber;
8472
+ lat: z.ZodNumber;
8473
+ }, "strip", z.ZodTypeAny, {
8474
+ lat?: number;
8475
+ lon?: number;
8476
+ }, {
8477
+ lat?: number;
8478
+ lon?: number;
8479
+ }>>;
8480
+ project: z.ZodOptional<z.ZodObject<{
8481
+ lon: z.ZodNumber;
8482
+ lat: z.ZodNumber;
8483
+ }, "strip", z.ZodTypeAny, {
8484
+ lat?: number;
8485
+ lon?: number;
8486
+ }, {
8487
+ lat?: number;
8488
+ lon?: number;
8489
+ }>>;
8490
+ county: z.ZodOptional<z.ZodObject<{
8491
+ lon: z.ZodNumber;
8492
+ lat: z.ZodNumber;
8493
+ }, "strip", z.ZodTypeAny, {
8494
+ lat?: number;
8495
+ lon?: number;
8496
+ }, {
8497
+ lat?: number;
8498
+ lon?: number;
8499
+ }>>;
8500
+ facility: z.ZodOptional<z.ZodObject<{
8501
+ lon: z.ZodNumber;
8502
+ lat: z.ZodNumber;
8503
+ }, "strip", z.ZodTypeAny, {
8504
+ lat?: number;
8505
+ lon?: number;
8506
+ }, {
8507
+ lat?: number;
8508
+ lon?: number;
8509
+ }>>;
8510
+ }, "strip", z.ZodTypeAny, {
8511
+ county?: {
8512
+ lat?: number;
8513
+ lon?: number;
8514
+ };
8515
+ defaultValue?: string;
8516
+ default?: {
8517
+ lat?: number;
8518
+ lon?: number;
8519
+ };
8520
+ project?: {
8521
+ lat?: number;
8522
+ lon?: number;
8523
+ };
8524
+ facility?: {
8525
+ lat?: number;
8526
+ lon?: number;
8527
+ };
8528
+ }, {
8529
+ county?: {
8530
+ lat?: number;
8531
+ lon?: number;
8532
+ };
8533
+ defaultValue?: string;
8534
+ default?: {
8535
+ lat?: number;
8536
+ lon?: number;
8537
+ };
8538
+ project?: {
8539
+ lat?: number;
8540
+ lon?: number;
8541
+ };
8542
+ facility?: {
8543
+ lat?: number;
8544
+ lon?: number;
8545
+ };
8546
+ }>>;
8547
+ lastModified: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
8548
+ localCounty: z.ZodOptional<z.ZodString>;
8549
+ localState: z.ZodOptional<z.ZodString>;
8550
+ organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
8551
+ identifier: z.ZodString;
8552
+ id: z.ZodString;
8553
+ } & {
8554
+ role: z.ZodString;
8555
+ ref: z.ZodOptional<z.ZodString>;
8556
+ }, "strip", z.ZodTypeAny, {
8557
+ id?: string;
8558
+ identifier?: string;
8559
+ role?: string;
8560
+ ref?: string;
8561
+ }, {
8562
+ id?: string;
8563
+ identifier?: string;
8564
+ role?: string;
8565
+ ref?: string;
8566
+ }>, "many">>;
8567
+ plannedOperationalDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
8568
+ projectName: z.ZodOptional<z.ZodString>;
8569
+ queueDataset: z.ZodOptional<z.ZodString>;
8570
+ queueDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
8571
+ status: z.ZodOptional<z.ZodString>;
8572
+ totalMw: z.ZodOptional<z.ZodNumber>;
8573
+ } & {
8574
+ sort: z.ZodTuple<[z.ZodUnion<[z.ZodNumber, z.ZodString]>, z.ZodNumber], null>;
8575
+ } & {
8576
+ sectors: z.ZodArray<z.ZodObject<{
8577
+ identifier: z.ZodString;
8578
+ id: z.ZodString;
8579
+ }, "strip", z.ZodTypeAny, {
8580
+ id?: string;
8581
+ identifier?: string;
8582
+ }, {
8583
+ id?: string;
8584
+ identifier?: string;
8585
+ }>, "many">;
8586
+ }, "strict", z.ZodTypeAny, {
8587
+ sectors?: {
8588
+ id?: string;
8589
+ identifier?: string;
8590
+ }[];
8591
+ id?: string;
8592
+ sort?: [string | number, number, ...unknown[]];
8593
+ status?: string;
8594
+ applicationId?: string;
8595
+ queueDataset?: string;
8596
+ country?: string;
8597
+ organizations?: {
8598
+ id?: string;
8599
+ identifier?: string;
8600
+ role?: string;
8601
+ ref?: string;
8602
+ }[];
8603
+ geo?: {
8604
+ county?: {
8605
+ lat?: number;
8606
+ lon?: number;
8607
+ };
8608
+ defaultValue?: string;
8609
+ default?: {
8610
+ lat?: number;
8611
+ lon?: number;
8612
+ };
8613
+ project?: {
8614
+ lat?: number;
8615
+ lon?: number;
8616
+ };
8617
+ facility?: {
8618
+ lat?: number;
8619
+ lon?: number;
8620
+ };
8621
+ };
8622
+ allSectors?: string;
8623
+ queueDate?: string;
8624
+ schema?: "eu_queue";
8625
+ actualOperationalDate?: string;
8626
+ lastModified?: string;
8627
+ localCounty?: string;
8628
+ localState?: string;
8629
+ plannedOperationalDate?: string;
8630
+ projectName?: string;
8631
+ totalMw?: number;
8632
+ }, {
8633
+ sectors?: {
8634
+ id?: string;
8635
+ identifier?: string;
8636
+ }[];
8637
+ id?: string;
8638
+ sort?: [string | number, number, ...unknown[]];
8639
+ status?: string;
8640
+ applicationId?: string;
8641
+ queueDataset?: string;
8642
+ country?: string;
8643
+ organizations?: {
8644
+ id?: string;
8645
+ identifier?: string;
8646
+ role?: string;
8647
+ ref?: string;
8648
+ }[];
8649
+ geo?: {
8650
+ county?: {
8651
+ lat?: number;
8652
+ lon?: number;
8653
+ };
8654
+ defaultValue?: string;
8655
+ default?: {
8656
+ lat?: number;
8657
+ lon?: number;
8658
+ };
8659
+ project?: {
8660
+ lat?: number;
8661
+ lon?: number;
8662
+ };
8663
+ facility?: {
8664
+ lat?: number;
8665
+ lon?: number;
8666
+ };
8667
+ };
8668
+ allSectors?: string;
8669
+ queueDate?: string;
8670
+ schema?: "eu_queue";
8671
+ actualOperationalDate?: string;
8672
+ lastModified?: string;
8673
+ localCounty?: string;
8674
+ localState?: string;
8675
+ plannedOperationalDate?: string;
8676
+ projectName?: string;
8677
+ totalMw?: number;
8678
+ }>;
8679
+ declare const usQueueExportSchema: z.ZodObject<{
8680
+ id: z.ZodString;
8681
+ } & {
8682
+ schema: z.ZodLiteral<"us_queue">;
8683
+ } & {
8684
+ actualOperationalDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
8685
+ allSectors: z.ZodOptional<z.ZodString>;
8686
+ applicationId: z.ZodOptional<z.ZodString>;
8687
+ applicationStatus: z.ZodOptional<z.ZodString>;
8688
+ applicationTags: z.ZodOptional<z.ZodArray<z.ZodObject<{
8689
+ identifier: z.ZodString;
8690
+ }, "strip", z.ZodTypeAny, {
8691
+ identifier?: string;
8692
+ }, {
8693
+ identifier?: string;
8694
+ }>, "many">>;
8695
+ country: z.ZodOptional<z.ZodArray<z.ZodObject<{
8696
+ identifier: z.ZodString;
8697
+ id: z.ZodString;
8698
+ }, "strip", z.ZodTypeAny, {
8699
+ id?: string;
8700
+ identifier?: string;
8701
+ }, {
8702
+ id?: string;
8703
+ identifier?: string;
8704
+ }>, "many">>;
8705
+ geo: z.ZodOptional<z.ZodObject<{
8706
+ defaultValue: z.ZodOptional<z.ZodString>;
8707
+ default: z.ZodOptional<z.ZodObject<{
8708
+ lon: z.ZodNumber;
8709
+ lat: z.ZodNumber;
8710
+ }, "strip", z.ZodTypeAny, {
8711
+ lat?: number;
8712
+ lon?: number;
8713
+ }, {
8714
+ lat?: number;
8715
+ lon?: number;
8716
+ }>>;
8717
+ project: z.ZodOptional<z.ZodObject<{
8718
+ lon: z.ZodNumber;
8719
+ lat: z.ZodNumber;
8720
+ }, "strip", z.ZodTypeAny, {
8721
+ lat?: number;
8722
+ lon?: number;
8723
+ }, {
8724
+ lat?: number;
8725
+ lon?: number;
8726
+ }>>;
8727
+ county: z.ZodOptional<z.ZodObject<{
8728
+ lon: z.ZodNumber;
8729
+ lat: z.ZodNumber;
8730
+ }, "strip", z.ZodTypeAny, {
8731
+ lat?: number;
8732
+ lon?: number;
8733
+ }, {
8734
+ lat?: number;
8735
+ lon?: number;
8736
+ }>>;
8737
+ facility: z.ZodOptional<z.ZodObject<{
8738
+ lon: z.ZodNumber;
8739
+ lat: z.ZodNumber;
8740
+ }, "strip", z.ZodTypeAny, {
8741
+ lat?: number;
8742
+ lon?: number;
8743
+ }, {
8744
+ lat?: number;
8745
+ lon?: number;
8746
+ }>>;
8747
+ }, "strip", z.ZodTypeAny, {
8748
+ county?: {
8749
+ lat?: number;
8750
+ lon?: number;
8751
+ };
8752
+ defaultValue?: string;
8753
+ default?: {
8754
+ lat?: number;
8755
+ lon?: number;
8756
+ };
8757
+ project?: {
8758
+ lat?: number;
8759
+ lon?: number;
8760
+ };
8761
+ facility?: {
8762
+ lat?: number;
8763
+ lon?: number;
8764
+ };
8765
+ }, {
8766
+ county?: {
8767
+ lat?: number;
8768
+ lon?: number;
8769
+ };
8770
+ defaultValue?: string;
8771
+ default?: {
8772
+ lat?: number;
8773
+ lon?: number;
8774
+ };
8775
+ project?: {
8776
+ lat?: number;
8777
+ lon?: number;
8778
+ };
8779
+ facility?: {
8780
+ lat?: number;
8781
+ lon?: number;
8782
+ };
8783
+ }>>;
8784
+ interconnectingEntity: z.ZodOptional<z.ZodString>;
8785
+ lastModified: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
8786
+ localCounty: z.ZodOptional<z.ZodArray<z.ZodObject<{
8787
+ identifier: z.ZodString;
8788
+ id: z.ZodString;
8789
+ }, "strip", z.ZodTypeAny, {
8790
+ id?: string;
8791
+ identifier?: string;
8792
+ }, {
8793
+ id?: string;
8794
+ identifier?: string;
8795
+ }>, "many">>;
8796
+ localState: z.ZodOptional<z.ZodArray<z.ZodObject<{
8797
+ identifier: z.ZodString;
8798
+ id: z.ZodString;
8799
+ }, "strip", z.ZodTypeAny, {
8800
+ id?: string;
8801
+ identifier?: string;
8802
+ }, {
8803
+ id?: string;
8804
+ identifier?: string;
8805
+ }>, "many">>;
8806
+ organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
8807
+ identifier: z.ZodString;
8808
+ id: z.ZodString;
8809
+ } & {
8810
+ role: z.ZodString;
8811
+ ref: z.ZodOptional<z.ZodString>;
8812
+ }, "strip", z.ZodTypeAny, {
8813
+ id?: string;
8814
+ identifier?: string;
8815
+ role?: string;
8816
+ ref?: string;
8817
+ }, {
8818
+ id?: string;
8819
+ identifier?: string;
8820
+ role?: string;
8821
+ ref?: string;
8822
+ }>, "many">>;
8823
+ plannedOperationalDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
8824
+ poiLocation: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodOptional<z.ZodNumber>]>;
8825
+ projectName: z.ZodOptional<z.ZodString>;
8826
+ queueDataset: z.ZodOptional<z.ZodString>;
8827
+ queueDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
8828
+ totalMw: z.ZodOptional<z.ZodNumber>;
8829
+ } & {
8830
+ sort: z.ZodTuple<[z.ZodUnion<[z.ZodNumber, z.ZodString]>, z.ZodNumber], null>;
8831
+ }, "strict", z.ZodTypeAny, {
8832
+ id?: string;
8833
+ sort?: [string | number, number, ...unknown[]];
8834
+ applicationId?: string;
8835
+ queueDataset?: string;
8836
+ country?: {
8837
+ id?: string;
8838
+ identifier?: string;
8839
+ }[];
8840
+ organizations?: {
8841
+ id?: string;
8842
+ identifier?: string;
8843
+ role?: string;
8844
+ ref?: string;
8845
+ }[];
8846
+ geo?: {
8847
+ county?: {
8848
+ lat?: number;
8849
+ lon?: number;
8850
+ };
8851
+ defaultValue?: string;
8852
+ default?: {
8853
+ lat?: number;
8854
+ lon?: number;
8855
+ };
8856
+ project?: {
8857
+ lat?: number;
8858
+ lon?: number;
8859
+ };
8860
+ facility?: {
8861
+ lat?: number;
8862
+ lon?: number;
8863
+ };
8864
+ };
8865
+ allSectors?: string;
8866
+ applicationTags?: {
8867
+ identifier?: string;
8868
+ }[];
8869
+ queueDate?: string;
8870
+ schema?: "us_queue";
8871
+ actualOperationalDate?: string;
8872
+ lastModified?: string;
8873
+ localCounty?: {
8874
+ id?: string;
8875
+ identifier?: string;
8876
+ }[];
8877
+ localState?: {
8878
+ id?: string;
8879
+ identifier?: string;
8880
+ }[];
8881
+ plannedOperationalDate?: string;
8882
+ projectName?: string;
8883
+ totalMw?: number;
8884
+ applicationStatus?: string;
8885
+ interconnectingEntity?: string;
8886
+ poiLocation?: string | number;
8887
+ }, {
8888
+ id?: string;
8889
+ sort?: [string | number, number, ...unknown[]];
8890
+ applicationId?: string;
8891
+ queueDataset?: string;
8892
+ country?: {
8893
+ id?: string;
8894
+ identifier?: string;
8895
+ }[];
8896
+ organizations?: {
8897
+ id?: string;
8898
+ identifier?: string;
8899
+ role?: string;
8900
+ ref?: string;
8901
+ }[];
8902
+ geo?: {
8903
+ county?: {
8904
+ lat?: number;
8905
+ lon?: number;
8906
+ };
8907
+ defaultValue?: string;
8908
+ default?: {
8909
+ lat?: number;
8910
+ lon?: number;
8911
+ };
8912
+ project?: {
8913
+ lat?: number;
8914
+ lon?: number;
8915
+ };
8916
+ facility?: {
8917
+ lat?: number;
8918
+ lon?: number;
8919
+ };
8920
+ };
8921
+ allSectors?: string;
8922
+ applicationTags?: {
8923
+ identifier?: string;
8924
+ }[];
8925
+ queueDate?: string;
8926
+ schema?: "us_queue";
8927
+ actualOperationalDate?: string;
8928
+ lastModified?: string;
8929
+ localCounty?: {
8930
+ id?: string;
8931
+ identifier?: string;
8932
+ }[];
8933
+ localState?: {
8934
+ id?: string;
8935
+ identifier?: string;
8936
+ }[];
8937
+ plannedOperationalDate?: string;
8938
+ projectName?: string;
8939
+ totalMw?: number;
8940
+ applicationStatus?: string;
8941
+ interconnectingEntity?: string;
8942
+ poiLocation?: string | number;
8943
+ }>;
8944
+ export declare const queueExportUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.ZodObject<{
8945
+ id: z.ZodString;
8946
+ } & {
8947
+ schema: z.ZodLiteral<"eu_queue">;
8948
+ } & {
8949
+ actualOperationalDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
8950
+ allSectors: z.ZodOptional<z.ZodString>;
8951
+ applicationId: z.ZodOptional<z.ZodString>;
8952
+ country: z.ZodOptional<z.ZodString>;
8953
+ geo: z.ZodOptional<z.ZodObject<{
8954
+ defaultValue: z.ZodOptional<z.ZodString>;
8955
+ default: z.ZodOptional<z.ZodObject<{
8956
+ lon: z.ZodNumber;
8957
+ lat: z.ZodNumber;
8958
+ }, "strip", z.ZodTypeAny, {
8959
+ lat?: number;
8960
+ lon?: number;
8961
+ }, {
8962
+ lat?: number;
8963
+ lon?: number;
8964
+ }>>;
8965
+ project: z.ZodOptional<z.ZodObject<{
8966
+ lon: z.ZodNumber;
8967
+ lat: z.ZodNumber;
8968
+ }, "strip", z.ZodTypeAny, {
8969
+ lat?: number;
8970
+ lon?: number;
8971
+ }, {
8972
+ lat?: number;
8973
+ lon?: number;
8974
+ }>>;
8975
+ county: z.ZodOptional<z.ZodObject<{
8976
+ lon: z.ZodNumber;
8977
+ lat: z.ZodNumber;
8978
+ }, "strip", z.ZodTypeAny, {
8979
+ lat?: number;
8980
+ lon?: number;
8981
+ }, {
8982
+ lat?: number;
8983
+ lon?: number;
8984
+ }>>;
8985
+ facility: z.ZodOptional<z.ZodObject<{
8986
+ lon: z.ZodNumber;
8987
+ lat: z.ZodNumber;
8988
+ }, "strip", z.ZodTypeAny, {
8989
+ lat?: number;
8990
+ lon?: number;
8991
+ }, {
8992
+ lat?: number;
8993
+ lon?: number;
8994
+ }>>;
8995
+ }, "strip", z.ZodTypeAny, {
8996
+ county?: {
8997
+ lat?: number;
8998
+ lon?: number;
8999
+ };
9000
+ defaultValue?: string;
9001
+ default?: {
9002
+ lat?: number;
9003
+ lon?: number;
9004
+ };
9005
+ project?: {
9006
+ lat?: number;
9007
+ lon?: number;
9008
+ };
9009
+ facility?: {
9010
+ lat?: number;
9011
+ lon?: number;
9012
+ };
9013
+ }, {
9014
+ county?: {
9015
+ lat?: number;
9016
+ lon?: number;
9017
+ };
9018
+ defaultValue?: string;
9019
+ default?: {
9020
+ lat?: number;
9021
+ lon?: number;
9022
+ };
9023
+ project?: {
9024
+ lat?: number;
9025
+ lon?: number;
9026
+ };
9027
+ facility?: {
9028
+ lat?: number;
9029
+ lon?: number;
9030
+ };
9031
+ }>>;
9032
+ lastModified: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
9033
+ localCounty: z.ZodOptional<z.ZodString>;
9034
+ localState: z.ZodOptional<z.ZodString>;
9035
+ organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
9036
+ identifier: z.ZodString;
9037
+ id: z.ZodString;
9038
+ } & {
9039
+ role: z.ZodString;
9040
+ ref: z.ZodOptional<z.ZodString>;
9041
+ }, "strip", z.ZodTypeAny, {
9042
+ id?: string;
9043
+ identifier?: string;
9044
+ role?: string;
9045
+ ref?: string;
9046
+ }, {
9047
+ id?: string;
9048
+ identifier?: string;
9049
+ role?: string;
9050
+ ref?: string;
9051
+ }>, "many">>;
9052
+ plannedOperationalDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
9053
+ projectName: z.ZodOptional<z.ZodString>;
9054
+ queueDataset: z.ZodOptional<z.ZodString>;
9055
+ queueDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
9056
+ status: z.ZodOptional<z.ZodString>;
9057
+ totalMw: z.ZodOptional<z.ZodNumber>;
9058
+ } & {
9059
+ sort: z.ZodTuple<[z.ZodUnion<[z.ZodNumber, z.ZodString]>, z.ZodNumber], null>;
9060
+ } & {
9061
+ sectors: z.ZodArray<z.ZodObject<{
9062
+ identifier: z.ZodString;
9063
+ id: z.ZodString;
9064
+ }, "strip", z.ZodTypeAny, {
9065
+ id?: string;
9066
+ identifier?: string;
9067
+ }, {
9068
+ id?: string;
9069
+ identifier?: string;
9070
+ }>, "many">;
9071
+ }, "strict", z.ZodTypeAny, {
9072
+ sectors?: {
9073
+ id?: string;
9074
+ identifier?: string;
9075
+ }[];
9076
+ id?: string;
9077
+ sort?: [string | number, number, ...unknown[]];
9078
+ status?: string;
9079
+ applicationId?: string;
9080
+ queueDataset?: string;
9081
+ country?: string;
9082
+ organizations?: {
9083
+ id?: string;
9084
+ identifier?: string;
9085
+ role?: string;
9086
+ ref?: string;
9087
+ }[];
9088
+ geo?: {
9089
+ county?: {
9090
+ lat?: number;
9091
+ lon?: number;
9092
+ };
9093
+ defaultValue?: string;
9094
+ default?: {
9095
+ lat?: number;
9096
+ lon?: number;
9097
+ };
9098
+ project?: {
9099
+ lat?: number;
9100
+ lon?: number;
9101
+ };
9102
+ facility?: {
9103
+ lat?: number;
9104
+ lon?: number;
9105
+ };
9106
+ };
9107
+ allSectors?: string;
9108
+ queueDate?: string;
9109
+ schema?: "eu_queue";
9110
+ actualOperationalDate?: string;
9111
+ lastModified?: string;
9112
+ localCounty?: string;
9113
+ localState?: string;
9114
+ plannedOperationalDate?: string;
9115
+ projectName?: string;
9116
+ totalMw?: number;
9117
+ }, {
9118
+ sectors?: {
9119
+ id?: string;
9120
+ identifier?: string;
9121
+ }[];
9122
+ id?: string;
9123
+ sort?: [string | number, number, ...unknown[]];
9124
+ status?: string;
9125
+ applicationId?: string;
9126
+ queueDataset?: string;
9127
+ country?: string;
9128
+ organizations?: {
9129
+ id?: string;
9130
+ identifier?: string;
9131
+ role?: string;
9132
+ ref?: string;
9133
+ }[];
9134
+ geo?: {
9135
+ county?: {
9136
+ lat?: number;
9137
+ lon?: number;
9138
+ };
9139
+ defaultValue?: string;
9140
+ default?: {
9141
+ lat?: number;
9142
+ lon?: number;
9143
+ };
9144
+ project?: {
9145
+ lat?: number;
9146
+ lon?: number;
9147
+ };
9148
+ facility?: {
9149
+ lat?: number;
9150
+ lon?: number;
9151
+ };
9152
+ };
9153
+ allSectors?: string;
9154
+ queueDate?: string;
9155
+ schema?: "eu_queue";
9156
+ actualOperationalDate?: string;
9157
+ lastModified?: string;
9158
+ localCounty?: string;
9159
+ localState?: string;
9160
+ plannedOperationalDate?: string;
9161
+ projectName?: string;
9162
+ totalMw?: number;
9163
+ }>, z.ZodObject<{
9164
+ id: z.ZodString;
9165
+ } & {
9166
+ schema: z.ZodLiteral<"us_queue">;
9167
+ } & {
9168
+ actualOperationalDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
9169
+ allSectors: z.ZodOptional<z.ZodString>;
9170
+ applicationId: z.ZodOptional<z.ZodString>;
9171
+ applicationStatus: z.ZodOptional<z.ZodString>;
9172
+ applicationTags: z.ZodOptional<z.ZodArray<z.ZodObject<{
9173
+ identifier: z.ZodString;
9174
+ }, "strip", z.ZodTypeAny, {
9175
+ identifier?: string;
9176
+ }, {
9177
+ identifier?: string;
9178
+ }>, "many">>;
9179
+ country: z.ZodOptional<z.ZodArray<z.ZodObject<{
9180
+ identifier: z.ZodString;
9181
+ id: z.ZodString;
9182
+ }, "strip", z.ZodTypeAny, {
9183
+ id?: string;
9184
+ identifier?: string;
9185
+ }, {
9186
+ id?: string;
9187
+ identifier?: string;
9188
+ }>, "many">>;
9189
+ geo: z.ZodOptional<z.ZodObject<{
9190
+ defaultValue: z.ZodOptional<z.ZodString>;
9191
+ default: z.ZodOptional<z.ZodObject<{
9192
+ lon: z.ZodNumber;
9193
+ lat: z.ZodNumber;
9194
+ }, "strip", z.ZodTypeAny, {
9195
+ lat?: number;
9196
+ lon?: number;
9197
+ }, {
9198
+ lat?: number;
9199
+ lon?: number;
9200
+ }>>;
9201
+ project: z.ZodOptional<z.ZodObject<{
9202
+ lon: z.ZodNumber;
9203
+ lat: z.ZodNumber;
9204
+ }, "strip", z.ZodTypeAny, {
9205
+ lat?: number;
9206
+ lon?: number;
9207
+ }, {
9208
+ lat?: number;
9209
+ lon?: number;
9210
+ }>>;
9211
+ county: z.ZodOptional<z.ZodObject<{
9212
+ lon: z.ZodNumber;
9213
+ lat: z.ZodNumber;
9214
+ }, "strip", z.ZodTypeAny, {
9215
+ lat?: number;
9216
+ lon?: number;
9217
+ }, {
9218
+ lat?: number;
9219
+ lon?: number;
9220
+ }>>;
9221
+ facility: z.ZodOptional<z.ZodObject<{
9222
+ lon: z.ZodNumber;
9223
+ lat: z.ZodNumber;
9224
+ }, "strip", z.ZodTypeAny, {
9225
+ lat?: number;
9226
+ lon?: number;
9227
+ }, {
9228
+ lat?: number;
9229
+ lon?: number;
9230
+ }>>;
9231
+ }, "strip", z.ZodTypeAny, {
9232
+ county?: {
9233
+ lat?: number;
9234
+ lon?: number;
9235
+ };
9236
+ defaultValue?: string;
9237
+ default?: {
9238
+ lat?: number;
9239
+ lon?: number;
9240
+ };
9241
+ project?: {
9242
+ lat?: number;
9243
+ lon?: number;
9244
+ };
9245
+ facility?: {
9246
+ lat?: number;
9247
+ lon?: number;
9248
+ };
9249
+ }, {
9250
+ county?: {
9251
+ lat?: number;
9252
+ lon?: number;
9253
+ };
9254
+ defaultValue?: string;
9255
+ default?: {
9256
+ lat?: number;
9257
+ lon?: number;
9258
+ };
9259
+ project?: {
9260
+ lat?: number;
9261
+ lon?: number;
9262
+ };
9263
+ facility?: {
9264
+ lat?: number;
9265
+ lon?: number;
9266
+ };
9267
+ }>>;
9268
+ interconnectingEntity: z.ZodOptional<z.ZodString>;
9269
+ lastModified: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
9270
+ localCounty: z.ZodOptional<z.ZodArray<z.ZodObject<{
9271
+ identifier: z.ZodString;
9272
+ id: z.ZodString;
9273
+ }, "strip", z.ZodTypeAny, {
9274
+ id?: string;
9275
+ identifier?: string;
9276
+ }, {
9277
+ id?: string;
9278
+ identifier?: string;
9279
+ }>, "many">>;
9280
+ localState: z.ZodOptional<z.ZodArray<z.ZodObject<{
9281
+ identifier: z.ZodString;
9282
+ id: z.ZodString;
9283
+ }, "strip", z.ZodTypeAny, {
9284
+ id?: string;
9285
+ identifier?: string;
9286
+ }, {
9287
+ id?: string;
9288
+ identifier?: string;
9289
+ }>, "many">>;
9290
+ organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
9291
+ identifier: z.ZodString;
9292
+ id: z.ZodString;
9293
+ } & {
9294
+ role: z.ZodString;
9295
+ ref: z.ZodOptional<z.ZodString>;
9296
+ }, "strip", z.ZodTypeAny, {
9297
+ id?: string;
9298
+ identifier?: string;
9299
+ role?: string;
9300
+ ref?: string;
9301
+ }, {
9302
+ id?: string;
9303
+ identifier?: string;
9304
+ role?: string;
9305
+ ref?: string;
9306
+ }>, "many">>;
9307
+ plannedOperationalDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
9308
+ poiLocation: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodOptional<z.ZodNumber>]>;
9309
+ projectName: z.ZodOptional<z.ZodString>;
9310
+ queueDataset: z.ZodOptional<z.ZodString>;
9311
+ queueDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
9312
+ totalMw: z.ZodOptional<z.ZodNumber>;
9313
+ } & {
9314
+ sort: z.ZodTuple<[z.ZodUnion<[z.ZodNumber, z.ZodString]>, z.ZodNumber], null>;
9315
+ }, "strict", z.ZodTypeAny, {
9316
+ id?: string;
9317
+ sort?: [string | number, number, ...unknown[]];
9318
+ applicationId?: string;
9319
+ queueDataset?: string;
9320
+ country?: {
9321
+ id?: string;
9322
+ identifier?: string;
9323
+ }[];
9324
+ organizations?: {
9325
+ id?: string;
9326
+ identifier?: string;
9327
+ role?: string;
9328
+ ref?: string;
9329
+ }[];
9330
+ geo?: {
9331
+ county?: {
9332
+ lat?: number;
9333
+ lon?: number;
9334
+ };
9335
+ defaultValue?: string;
9336
+ default?: {
9337
+ lat?: number;
9338
+ lon?: number;
9339
+ };
9340
+ project?: {
9341
+ lat?: number;
9342
+ lon?: number;
9343
+ };
9344
+ facility?: {
9345
+ lat?: number;
9346
+ lon?: number;
9347
+ };
9348
+ };
9349
+ allSectors?: string;
9350
+ applicationTags?: {
9351
+ identifier?: string;
9352
+ }[];
9353
+ queueDate?: string;
9354
+ schema?: "us_queue";
9355
+ actualOperationalDate?: string;
9356
+ lastModified?: string;
9357
+ localCounty?: {
9358
+ id?: string;
9359
+ identifier?: string;
9360
+ }[];
9361
+ localState?: {
9362
+ id?: string;
9363
+ identifier?: string;
9364
+ }[];
9365
+ plannedOperationalDate?: string;
9366
+ projectName?: string;
9367
+ totalMw?: number;
9368
+ applicationStatus?: string;
9369
+ interconnectingEntity?: string;
9370
+ poiLocation?: string | number;
9371
+ }, {
9372
+ id?: string;
9373
+ sort?: [string | number, number, ...unknown[]];
9374
+ applicationId?: string;
9375
+ queueDataset?: string;
9376
+ country?: {
9377
+ id?: string;
9378
+ identifier?: string;
9379
+ }[];
9380
+ organizations?: {
9381
+ id?: string;
9382
+ identifier?: string;
9383
+ role?: string;
9384
+ ref?: string;
9385
+ }[];
9386
+ geo?: {
9387
+ county?: {
9388
+ lat?: number;
9389
+ lon?: number;
9390
+ };
9391
+ defaultValue?: string;
9392
+ default?: {
9393
+ lat?: number;
9394
+ lon?: number;
9395
+ };
9396
+ project?: {
9397
+ lat?: number;
9398
+ lon?: number;
9399
+ };
9400
+ facility?: {
9401
+ lat?: number;
9402
+ lon?: number;
9403
+ };
9404
+ };
9405
+ allSectors?: string;
9406
+ applicationTags?: {
9407
+ identifier?: string;
9408
+ }[];
9409
+ queueDate?: string;
9410
+ schema?: "us_queue";
9411
+ actualOperationalDate?: string;
9412
+ lastModified?: string;
9413
+ localCounty?: {
9414
+ id?: string;
9415
+ identifier?: string;
9416
+ }[];
9417
+ localState?: {
9418
+ id?: string;
9419
+ identifier?: string;
9420
+ }[];
9421
+ plannedOperationalDate?: string;
9422
+ projectName?: string;
9423
+ totalMw?: number;
9424
+ applicationStatus?: string;
9425
+ interconnectingEntity?: string;
9426
+ poiLocation?: string | number;
9427
+ }>]>;
9428
+ export type QueueExportUnionType = z.infer<typeof queueExportUnionSchema>;
9429
+ export type EUQueueExportType = z.infer<typeof euQueueExportSchema>;
9430
+ export type USQueueExportType = z.infer<typeof usQueueExportSchema>;