@new-project-media/client-frontends-shared-types 2.0.12 → 2.0.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/lib/dataGrid/api/dataCenters.d.ts +842 -0
- package/src/lib/dataGrid/api/dataCenters.js +55 -0
- package/src/lib/dataGrid/api/dataCenters.js.map +1 -0
- package/src/lib/dataGrid/api/entity.d.ts +331 -8
- package/src/lib/dataGrid/api/entity.js +55 -1
- package/src/lib/dataGrid/api/entity.js.map +1 -1
- package/src/lib/dataGrid/api/queues.d.ts +93 -84
- package/src/lib/dataGrid/api/queues.js +1 -0
- package/src/lib/dataGrid/api/queues.js.map +1 -1
- package/src/lib/dataGrid/api/signals.d.ts +170 -8
|
@@ -126,9 +126,9 @@ declare const euQueueListSchema: z.ZodObject<{
|
|
|
126
126
|
}, "strict", z.ZodTypeAny, {
|
|
127
127
|
id?: string;
|
|
128
128
|
status?: string;
|
|
129
|
+
country?: string;
|
|
129
130
|
applicationId?: string;
|
|
130
131
|
queueDataset?: string;
|
|
131
|
-
country?: string;
|
|
132
132
|
organizations?: {
|
|
133
133
|
id?: string;
|
|
134
134
|
identifier?: string;
|
|
@@ -167,9 +167,9 @@ declare const euQueueListSchema: z.ZodObject<{
|
|
|
167
167
|
}, {
|
|
168
168
|
id?: string;
|
|
169
169
|
status?: string;
|
|
170
|
+
country?: string;
|
|
170
171
|
applicationId?: string;
|
|
171
172
|
queueDataset?: string;
|
|
172
|
-
country?: string;
|
|
173
173
|
organizations?: {
|
|
174
174
|
id?: string;
|
|
175
175
|
identifier?: string;
|
|
@@ -358,12 +358,12 @@ declare const usQueueListSchema: z.ZodObject<{
|
|
|
358
358
|
totalMw: z.ZodOptional<z.ZodNumber>;
|
|
359
359
|
}, "strict", z.ZodTypeAny, {
|
|
360
360
|
id?: string;
|
|
361
|
-
applicationId?: string;
|
|
362
|
-
queueDataset?: string;
|
|
363
361
|
country?: {
|
|
364
362
|
id?: string;
|
|
365
363
|
identifier?: string;
|
|
366
364
|
}[];
|
|
365
|
+
applicationId?: string;
|
|
366
|
+
queueDataset?: string;
|
|
367
367
|
organizations?: {
|
|
368
368
|
id?: string;
|
|
369
369
|
identifier?: string;
|
|
@@ -413,12 +413,12 @@ declare const usQueueListSchema: z.ZodObject<{
|
|
|
413
413
|
poiLocation?: string | number;
|
|
414
414
|
}, {
|
|
415
415
|
id?: string;
|
|
416
|
-
applicationId?: string;
|
|
417
|
-
queueDataset?: string;
|
|
418
416
|
country?: {
|
|
419
417
|
id?: string;
|
|
420
418
|
identifier?: string;
|
|
421
419
|
}[];
|
|
420
|
+
applicationId?: string;
|
|
421
|
+
queueDataset?: string;
|
|
422
422
|
organizations?: {
|
|
423
423
|
id?: string;
|
|
424
424
|
identifier?: string;
|
|
@@ -526,9 +526,9 @@ declare const euQueueDetailsSchema: z.ZodObject<{
|
|
|
526
526
|
}[];
|
|
527
527
|
id?: string;
|
|
528
528
|
status?: string;
|
|
529
|
+
country?: string;
|
|
529
530
|
applicationId?: string;
|
|
530
531
|
queueDataset?: string;
|
|
531
|
-
country?: string;
|
|
532
532
|
organizations?: {
|
|
533
533
|
id?: string;
|
|
534
534
|
identifier?: string;
|
|
@@ -559,9 +559,9 @@ declare const euQueueDetailsSchema: z.ZodObject<{
|
|
|
559
559
|
}[];
|
|
560
560
|
id?: string;
|
|
561
561
|
status?: string;
|
|
562
|
+
country?: string;
|
|
562
563
|
applicationId?: string;
|
|
563
564
|
queueDataset?: string;
|
|
564
|
-
country?: string;
|
|
565
565
|
organizations?: {
|
|
566
566
|
id?: string;
|
|
567
567
|
identifier?: string;
|
|
@@ -974,6 +974,7 @@ declare const usQueueDetailsSchema: z.ZodObject<{
|
|
|
974
974
|
}>>;
|
|
975
975
|
poiLocation: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodOptional<z.ZodNumber>]>;
|
|
976
976
|
projectName: z.ZodOptional<z.ZodString>;
|
|
977
|
+
interconnectingEntity: z.ZodOptional<z.ZodString>;
|
|
977
978
|
queueDataset: z.ZodOptional<z.ZodString>;
|
|
978
979
|
queueDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
979
980
|
reportCount: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1029,12 +1030,12 @@ declare const usQueueDetailsSchema: z.ZodObject<{
|
|
|
1029
1030
|
roles?: string[];
|
|
1030
1031
|
}[];
|
|
1031
1032
|
id?: string;
|
|
1032
|
-
applicationId?: string;
|
|
1033
|
-
queueDataset?: string;
|
|
1034
1033
|
country?: {
|
|
1035
1034
|
id?: string;
|
|
1036
1035
|
identifier?: string;
|
|
1037
1036
|
}[];
|
|
1037
|
+
applicationId?: string;
|
|
1038
|
+
queueDataset?: string;
|
|
1038
1039
|
documents?: {
|
|
1039
1040
|
type?: string[];
|
|
1040
1041
|
key?: string;
|
|
@@ -1071,6 +1072,7 @@ declare const usQueueDetailsSchema: z.ZodObject<{
|
|
|
1071
1072
|
projectName?: string;
|
|
1072
1073
|
totalMw?: number;
|
|
1073
1074
|
applicationStatus?: string;
|
|
1075
|
+
interconnectingEntity?: string;
|
|
1074
1076
|
poiLocation?: string | number;
|
|
1075
1077
|
sourceUpdate?: string;
|
|
1076
1078
|
applicationType?: string;
|
|
@@ -1175,12 +1177,12 @@ declare const usQueueDetailsSchema: z.ZodObject<{
|
|
|
1175
1177
|
roles?: string[];
|
|
1176
1178
|
}[];
|
|
1177
1179
|
id?: string;
|
|
1178
|
-
applicationId?: string;
|
|
1179
|
-
queueDataset?: string;
|
|
1180
1180
|
country?: {
|
|
1181
1181
|
id?: string;
|
|
1182
1182
|
identifier?: string;
|
|
1183
1183
|
}[];
|
|
1184
|
+
applicationId?: string;
|
|
1185
|
+
queueDataset?: string;
|
|
1184
1186
|
documents?: {
|
|
1185
1187
|
type?: string[];
|
|
1186
1188
|
key?: string;
|
|
@@ -1217,6 +1219,7 @@ declare const usQueueDetailsSchema: z.ZodObject<{
|
|
|
1217
1219
|
projectName?: string;
|
|
1218
1220
|
totalMw?: number;
|
|
1219
1221
|
applicationStatus?: string;
|
|
1222
|
+
interconnectingEntity?: string;
|
|
1220
1223
|
poiLocation?: string | number;
|
|
1221
1224
|
sourceUpdate?: string;
|
|
1222
1225
|
applicationType?: string;
|
|
@@ -1365,9 +1368,9 @@ declare const queueDetailsSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1365
1368
|
}[];
|
|
1366
1369
|
id?: string;
|
|
1367
1370
|
status?: string;
|
|
1371
|
+
country?: string;
|
|
1368
1372
|
applicationId?: string;
|
|
1369
1373
|
queueDataset?: string;
|
|
1370
|
-
country?: string;
|
|
1371
1374
|
organizations?: {
|
|
1372
1375
|
id?: string;
|
|
1373
1376
|
identifier?: string;
|
|
@@ -1398,9 +1401,9 @@ declare const queueDetailsSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1398
1401
|
}[];
|
|
1399
1402
|
id?: string;
|
|
1400
1403
|
status?: string;
|
|
1404
|
+
country?: string;
|
|
1401
1405
|
applicationId?: string;
|
|
1402
1406
|
queueDataset?: string;
|
|
1403
|
-
country?: string;
|
|
1404
1407
|
organizations?: {
|
|
1405
1408
|
id?: string;
|
|
1406
1409
|
identifier?: string;
|
|
@@ -1812,6 +1815,7 @@ declare const queueDetailsSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1812
1815
|
}>>;
|
|
1813
1816
|
poiLocation: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodOptional<z.ZodNumber>]>;
|
|
1814
1817
|
projectName: z.ZodOptional<z.ZodString>;
|
|
1818
|
+
interconnectingEntity: z.ZodOptional<z.ZodString>;
|
|
1815
1819
|
queueDataset: z.ZodOptional<z.ZodString>;
|
|
1816
1820
|
queueDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
1817
1821
|
reportCount: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1867,12 +1871,12 @@ declare const queueDetailsSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1867
1871
|
roles?: string[];
|
|
1868
1872
|
}[];
|
|
1869
1873
|
id?: string;
|
|
1870
|
-
applicationId?: string;
|
|
1871
|
-
queueDataset?: string;
|
|
1872
1874
|
country?: {
|
|
1873
1875
|
id?: string;
|
|
1874
1876
|
identifier?: string;
|
|
1875
1877
|
}[];
|
|
1878
|
+
applicationId?: string;
|
|
1879
|
+
queueDataset?: string;
|
|
1876
1880
|
documents?: {
|
|
1877
1881
|
type?: string[];
|
|
1878
1882
|
key?: string;
|
|
@@ -1909,6 +1913,7 @@ declare const queueDetailsSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1909
1913
|
projectName?: string;
|
|
1910
1914
|
totalMw?: number;
|
|
1911
1915
|
applicationStatus?: string;
|
|
1916
|
+
interconnectingEntity?: string;
|
|
1912
1917
|
poiLocation?: string | number;
|
|
1913
1918
|
sourceUpdate?: string;
|
|
1914
1919
|
applicationType?: string;
|
|
@@ -2013,12 +2018,12 @@ declare const queueDetailsSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2013
2018
|
roles?: string[];
|
|
2014
2019
|
}[];
|
|
2015
2020
|
id?: string;
|
|
2016
|
-
applicationId?: string;
|
|
2017
|
-
queueDataset?: string;
|
|
2018
2021
|
country?: {
|
|
2019
2022
|
id?: string;
|
|
2020
2023
|
identifier?: string;
|
|
2021
2024
|
}[];
|
|
2025
|
+
applicationId?: string;
|
|
2026
|
+
queueDataset?: string;
|
|
2022
2027
|
documents?: {
|
|
2023
2028
|
type?: string[];
|
|
2024
2029
|
key?: string;
|
|
@@ -2055,6 +2060,7 @@ declare const queueDetailsSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2055
2060
|
projectName?: string;
|
|
2056
2061
|
totalMw?: number;
|
|
2057
2062
|
applicationStatus?: string;
|
|
2063
|
+
interconnectingEntity?: string;
|
|
2058
2064
|
poiLocation?: string | number;
|
|
2059
2065
|
sourceUpdate?: string;
|
|
2060
2066
|
applicationType?: string;
|
|
@@ -2203,9 +2209,9 @@ export declare const queueDetailsUnionSchema: z.ZodDiscriminatedUnion<"schema",
|
|
|
2203
2209
|
}[];
|
|
2204
2210
|
id?: string;
|
|
2205
2211
|
status?: string;
|
|
2212
|
+
country?: string;
|
|
2206
2213
|
applicationId?: string;
|
|
2207
2214
|
queueDataset?: string;
|
|
2208
|
-
country?: string;
|
|
2209
2215
|
organizations?: {
|
|
2210
2216
|
id?: string;
|
|
2211
2217
|
identifier?: string;
|
|
@@ -2236,9 +2242,9 @@ export declare const queueDetailsUnionSchema: z.ZodDiscriminatedUnion<"schema",
|
|
|
2236
2242
|
}[];
|
|
2237
2243
|
id?: string;
|
|
2238
2244
|
status?: string;
|
|
2245
|
+
country?: string;
|
|
2239
2246
|
applicationId?: string;
|
|
2240
2247
|
queueDataset?: string;
|
|
2241
|
-
country?: string;
|
|
2242
2248
|
organizations?: {
|
|
2243
2249
|
id?: string;
|
|
2244
2250
|
identifier?: string;
|
|
@@ -2650,6 +2656,7 @@ export declare const queueDetailsUnionSchema: z.ZodDiscriminatedUnion<"schema",
|
|
|
2650
2656
|
}>>;
|
|
2651
2657
|
poiLocation: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodOptional<z.ZodNumber>]>;
|
|
2652
2658
|
projectName: z.ZodOptional<z.ZodString>;
|
|
2659
|
+
interconnectingEntity: z.ZodOptional<z.ZodString>;
|
|
2653
2660
|
queueDataset: z.ZodOptional<z.ZodString>;
|
|
2654
2661
|
queueDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
2655
2662
|
reportCount: z.ZodOptional<z.ZodNumber>;
|
|
@@ -2705,12 +2712,12 @@ export declare const queueDetailsUnionSchema: z.ZodDiscriminatedUnion<"schema",
|
|
|
2705
2712
|
roles?: string[];
|
|
2706
2713
|
}[];
|
|
2707
2714
|
id?: string;
|
|
2708
|
-
applicationId?: string;
|
|
2709
|
-
queueDataset?: string;
|
|
2710
2715
|
country?: {
|
|
2711
2716
|
id?: string;
|
|
2712
2717
|
identifier?: string;
|
|
2713
2718
|
}[];
|
|
2719
|
+
applicationId?: string;
|
|
2720
|
+
queueDataset?: string;
|
|
2714
2721
|
documents?: {
|
|
2715
2722
|
type?: string[];
|
|
2716
2723
|
key?: string;
|
|
@@ -2747,6 +2754,7 @@ export declare const queueDetailsUnionSchema: z.ZodDiscriminatedUnion<"schema",
|
|
|
2747
2754
|
projectName?: string;
|
|
2748
2755
|
totalMw?: number;
|
|
2749
2756
|
applicationStatus?: string;
|
|
2757
|
+
interconnectingEntity?: string;
|
|
2750
2758
|
poiLocation?: string | number;
|
|
2751
2759
|
sourceUpdate?: string;
|
|
2752
2760
|
applicationType?: string;
|
|
@@ -2851,12 +2859,12 @@ export declare const queueDetailsUnionSchema: z.ZodDiscriminatedUnion<"schema",
|
|
|
2851
2859
|
roles?: string[];
|
|
2852
2860
|
}[];
|
|
2853
2861
|
id?: string;
|
|
2854
|
-
applicationId?: string;
|
|
2855
|
-
queueDataset?: string;
|
|
2856
2862
|
country?: {
|
|
2857
2863
|
id?: string;
|
|
2858
2864
|
identifier?: string;
|
|
2859
2865
|
}[];
|
|
2866
|
+
applicationId?: string;
|
|
2867
|
+
queueDataset?: string;
|
|
2860
2868
|
documents?: {
|
|
2861
2869
|
type?: string[];
|
|
2862
2870
|
key?: string;
|
|
@@ -2893,6 +2901,7 @@ export declare const queueDetailsUnionSchema: z.ZodDiscriminatedUnion<"schema",
|
|
|
2893
2901
|
projectName?: string;
|
|
2894
2902
|
totalMw?: number;
|
|
2895
2903
|
applicationStatus?: string;
|
|
2904
|
+
interconnectingEntity?: string;
|
|
2896
2905
|
poiLocation?: string | number;
|
|
2897
2906
|
sourceUpdate?: string;
|
|
2898
2907
|
applicationType?: string;
|
|
@@ -3107,9 +3116,9 @@ declare const euQueueListWithSortSchema: z.ZodObject<{
|
|
|
3107
3116
|
id?: string;
|
|
3108
3117
|
sort?: [string | number, number, ...unknown[]];
|
|
3109
3118
|
status?: string;
|
|
3119
|
+
country?: string;
|
|
3110
3120
|
applicationId?: string;
|
|
3111
3121
|
queueDataset?: string;
|
|
3112
|
-
country?: string;
|
|
3113
3122
|
organizations?: {
|
|
3114
3123
|
id?: string;
|
|
3115
3124
|
identifier?: string;
|
|
@@ -3149,9 +3158,9 @@ declare const euQueueListWithSortSchema: z.ZodObject<{
|
|
|
3149
3158
|
id?: string;
|
|
3150
3159
|
sort?: [string | number, number, ...unknown[]];
|
|
3151
3160
|
status?: string;
|
|
3161
|
+
country?: string;
|
|
3152
3162
|
applicationId?: string;
|
|
3153
3163
|
queueDataset?: string;
|
|
3154
|
-
country?: string;
|
|
3155
3164
|
organizations?: {
|
|
3156
3165
|
id?: string;
|
|
3157
3166
|
identifier?: string;
|
|
@@ -3343,12 +3352,12 @@ declare const usQueueListWithSortSchema: z.ZodObject<{
|
|
|
3343
3352
|
}, "strict", z.ZodTypeAny, {
|
|
3344
3353
|
id?: string;
|
|
3345
3354
|
sort?: [string | number, number, ...unknown[]];
|
|
3346
|
-
applicationId?: string;
|
|
3347
|
-
queueDataset?: string;
|
|
3348
3355
|
country?: {
|
|
3349
3356
|
id?: string;
|
|
3350
3357
|
identifier?: string;
|
|
3351
3358
|
}[];
|
|
3359
|
+
applicationId?: string;
|
|
3360
|
+
queueDataset?: string;
|
|
3352
3361
|
organizations?: {
|
|
3353
3362
|
id?: string;
|
|
3354
3363
|
identifier?: string;
|
|
@@ -3399,12 +3408,12 @@ declare const usQueueListWithSortSchema: z.ZodObject<{
|
|
|
3399
3408
|
}, {
|
|
3400
3409
|
id?: string;
|
|
3401
3410
|
sort?: [string | number, number, ...unknown[]];
|
|
3402
|
-
applicationId?: string;
|
|
3403
|
-
queueDataset?: string;
|
|
3404
3411
|
country?: {
|
|
3405
3412
|
id?: string;
|
|
3406
3413
|
identifier?: string;
|
|
3407
3414
|
}[];
|
|
3415
|
+
applicationId?: string;
|
|
3416
|
+
queueDataset?: string;
|
|
3408
3417
|
organizations?: {
|
|
3409
3418
|
id?: string;
|
|
3410
3419
|
identifier?: string;
|
|
@@ -3573,9 +3582,9 @@ declare const queueListSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3573
3582
|
id?: string;
|
|
3574
3583
|
sort?: [string | number, number, ...unknown[]];
|
|
3575
3584
|
status?: string;
|
|
3585
|
+
country?: string;
|
|
3576
3586
|
applicationId?: string;
|
|
3577
3587
|
queueDataset?: string;
|
|
3578
|
-
country?: string;
|
|
3579
3588
|
organizations?: {
|
|
3580
3589
|
id?: string;
|
|
3581
3590
|
identifier?: string;
|
|
@@ -3615,9 +3624,9 @@ declare const queueListSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3615
3624
|
id?: string;
|
|
3616
3625
|
sort?: [string | number, number, ...unknown[]];
|
|
3617
3626
|
status?: string;
|
|
3627
|
+
country?: string;
|
|
3618
3628
|
applicationId?: string;
|
|
3619
3629
|
queueDataset?: string;
|
|
3620
|
-
country?: string;
|
|
3621
3630
|
organizations?: {
|
|
3622
3631
|
id?: string;
|
|
3623
3632
|
identifier?: string;
|
|
@@ -3808,12 +3817,12 @@ declare const queueListSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3808
3817
|
}, "strict", z.ZodTypeAny, {
|
|
3809
3818
|
id?: string;
|
|
3810
3819
|
sort?: [string | number, number, ...unknown[]];
|
|
3811
|
-
applicationId?: string;
|
|
3812
|
-
queueDataset?: string;
|
|
3813
3820
|
country?: {
|
|
3814
3821
|
id?: string;
|
|
3815
3822
|
identifier?: string;
|
|
3816
3823
|
}[];
|
|
3824
|
+
applicationId?: string;
|
|
3825
|
+
queueDataset?: string;
|
|
3817
3826
|
organizations?: {
|
|
3818
3827
|
id?: string;
|
|
3819
3828
|
identifier?: string;
|
|
@@ -3864,12 +3873,12 @@ declare const queueListSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3864
3873
|
}, {
|
|
3865
3874
|
id?: string;
|
|
3866
3875
|
sort?: [string | number, number, ...unknown[]];
|
|
3867
|
-
applicationId?: string;
|
|
3868
|
-
queueDataset?: string;
|
|
3869
3876
|
country?: {
|
|
3870
3877
|
id?: string;
|
|
3871
3878
|
identifier?: string;
|
|
3872
3879
|
}[];
|
|
3880
|
+
applicationId?: string;
|
|
3881
|
+
queueDataset?: string;
|
|
3873
3882
|
organizations?: {
|
|
3874
3883
|
id?: string;
|
|
3875
3884
|
identifier?: string;
|
|
@@ -4038,9 +4047,9 @@ export declare const queueListUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.
|
|
|
4038
4047
|
id?: string;
|
|
4039
4048
|
sort?: [string | number, number, ...unknown[]];
|
|
4040
4049
|
status?: string;
|
|
4050
|
+
country?: string;
|
|
4041
4051
|
applicationId?: string;
|
|
4042
4052
|
queueDataset?: string;
|
|
4043
|
-
country?: string;
|
|
4044
4053
|
organizations?: {
|
|
4045
4054
|
id?: string;
|
|
4046
4055
|
identifier?: string;
|
|
@@ -4080,9 +4089,9 @@ export declare const queueListUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.
|
|
|
4080
4089
|
id?: string;
|
|
4081
4090
|
sort?: [string | number, number, ...unknown[]];
|
|
4082
4091
|
status?: string;
|
|
4092
|
+
country?: string;
|
|
4083
4093
|
applicationId?: string;
|
|
4084
4094
|
queueDataset?: string;
|
|
4085
|
-
country?: string;
|
|
4086
4095
|
organizations?: {
|
|
4087
4096
|
id?: string;
|
|
4088
4097
|
identifier?: string;
|
|
@@ -4273,12 +4282,12 @@ export declare const queueListUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.
|
|
|
4273
4282
|
}, "strict", z.ZodTypeAny, {
|
|
4274
4283
|
id?: string;
|
|
4275
4284
|
sort?: [string | number, number, ...unknown[]];
|
|
4276
|
-
applicationId?: string;
|
|
4277
|
-
queueDataset?: string;
|
|
4278
4285
|
country?: {
|
|
4279
4286
|
id?: string;
|
|
4280
4287
|
identifier?: string;
|
|
4281
4288
|
}[];
|
|
4289
|
+
applicationId?: string;
|
|
4290
|
+
queueDataset?: string;
|
|
4282
4291
|
organizations?: {
|
|
4283
4292
|
id?: string;
|
|
4284
4293
|
identifier?: string;
|
|
@@ -4329,12 +4338,12 @@ export declare const queueListUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.
|
|
|
4329
4338
|
}, {
|
|
4330
4339
|
id?: string;
|
|
4331
4340
|
sort?: [string | number, number, ...unknown[]];
|
|
4332
|
-
applicationId?: string;
|
|
4333
|
-
queueDataset?: string;
|
|
4334
4341
|
country?: {
|
|
4335
4342
|
id?: string;
|
|
4336
4343
|
identifier?: string;
|
|
4337
4344
|
}[];
|
|
4345
|
+
applicationId?: string;
|
|
4346
|
+
queueDataset?: string;
|
|
4338
4347
|
organizations?: {
|
|
4339
4348
|
id?: string;
|
|
4340
4349
|
identifier?: string;
|
|
@@ -4500,9 +4509,9 @@ export declare const queueListBaseUnionSchema: z.ZodDiscriminatedUnion<"schema",
|
|
|
4500
4509
|
}, "strict", z.ZodTypeAny, {
|
|
4501
4510
|
id?: string;
|
|
4502
4511
|
status?: string;
|
|
4512
|
+
country?: string;
|
|
4503
4513
|
applicationId?: string;
|
|
4504
4514
|
queueDataset?: string;
|
|
4505
|
-
country?: string;
|
|
4506
4515
|
organizations?: {
|
|
4507
4516
|
id?: string;
|
|
4508
4517
|
identifier?: string;
|
|
@@ -4541,9 +4550,9 @@ export declare const queueListBaseUnionSchema: z.ZodDiscriminatedUnion<"schema",
|
|
|
4541
4550
|
}, {
|
|
4542
4551
|
id?: string;
|
|
4543
4552
|
status?: string;
|
|
4553
|
+
country?: string;
|
|
4544
4554
|
applicationId?: string;
|
|
4545
4555
|
queueDataset?: string;
|
|
4546
|
-
country?: string;
|
|
4547
4556
|
organizations?: {
|
|
4548
4557
|
id?: string;
|
|
4549
4558
|
identifier?: string;
|
|
@@ -4731,12 +4740,12 @@ export declare const queueListBaseUnionSchema: z.ZodDiscriminatedUnion<"schema",
|
|
|
4731
4740
|
totalMw: z.ZodOptional<z.ZodNumber>;
|
|
4732
4741
|
}, "strict", z.ZodTypeAny, {
|
|
4733
4742
|
id?: string;
|
|
4734
|
-
applicationId?: string;
|
|
4735
|
-
queueDataset?: string;
|
|
4736
4743
|
country?: {
|
|
4737
4744
|
id?: string;
|
|
4738
4745
|
identifier?: string;
|
|
4739
4746
|
}[];
|
|
4747
|
+
applicationId?: string;
|
|
4748
|
+
queueDataset?: string;
|
|
4740
4749
|
organizations?: {
|
|
4741
4750
|
id?: string;
|
|
4742
4751
|
identifier?: string;
|
|
@@ -4786,12 +4795,12 @@ export declare const queueListBaseUnionSchema: z.ZodDiscriminatedUnion<"schema",
|
|
|
4786
4795
|
poiLocation?: string | number;
|
|
4787
4796
|
}, {
|
|
4788
4797
|
id?: string;
|
|
4789
|
-
applicationId?: string;
|
|
4790
|
-
queueDataset?: string;
|
|
4791
4798
|
country?: {
|
|
4792
4799
|
id?: string;
|
|
4793
4800
|
identifier?: string;
|
|
4794
4801
|
}[];
|
|
4802
|
+
applicationId?: string;
|
|
4803
|
+
queueDataset?: string;
|
|
4795
4804
|
organizations?: {
|
|
4796
4805
|
id?: string;
|
|
4797
4806
|
identifier?: string;
|
|
@@ -5014,9 +5023,9 @@ export declare const euQueueAPISchema: z.ZodObject<{
|
|
|
5014
5023
|
}[];
|
|
5015
5024
|
id?: string;
|
|
5016
5025
|
status?: string;
|
|
5026
|
+
country?: string;
|
|
5017
5027
|
applicationId?: string;
|
|
5018
5028
|
queueDataset?: string;
|
|
5019
|
-
country?: string;
|
|
5020
5029
|
organizations?: {
|
|
5021
5030
|
id?: string;
|
|
5022
5031
|
identifier?: string;
|
|
@@ -5088,9 +5097,9 @@ export declare const euQueueAPISchema: z.ZodObject<{
|
|
|
5088
5097
|
}[];
|
|
5089
5098
|
id?: string;
|
|
5090
5099
|
status?: string;
|
|
5100
|
+
country?: string;
|
|
5091
5101
|
applicationId?: string;
|
|
5092
5102
|
queueDataset?: string;
|
|
5093
|
-
country?: string;
|
|
5094
5103
|
organizations?: {
|
|
5095
5104
|
id?: string;
|
|
5096
5105
|
identifier?: string;
|
|
@@ -5703,13 +5712,13 @@ export declare const usQueueAPISchema: z.ZodObject<{
|
|
|
5703
5712
|
roles?: string[];
|
|
5704
5713
|
}[];
|
|
5705
5714
|
id?: string;
|
|
5706
|
-
queueKey?: string;
|
|
5707
|
-
applicationId?: string;
|
|
5708
|
-
queueDataset?: string;
|
|
5709
5715
|
country?: {
|
|
5710
5716
|
id?: string;
|
|
5711
5717
|
identifier?: string;
|
|
5712
5718
|
}[];
|
|
5719
|
+
queueKey?: string;
|
|
5720
|
+
applicationId?: string;
|
|
5721
|
+
queueDataset?: string;
|
|
5713
5722
|
documents?: {
|
|
5714
5723
|
type?: string[];
|
|
5715
5724
|
key?: string;
|
|
@@ -5883,13 +5892,13 @@ export declare const usQueueAPISchema: z.ZodObject<{
|
|
|
5883
5892
|
roles?: string[];
|
|
5884
5893
|
}[];
|
|
5885
5894
|
id?: string;
|
|
5886
|
-
queueKey?: string;
|
|
5887
|
-
applicationId?: string;
|
|
5888
|
-
queueDataset?: string;
|
|
5889
5895
|
country?: {
|
|
5890
5896
|
id?: string;
|
|
5891
5897
|
identifier?: string;
|
|
5892
5898
|
}[];
|
|
5899
|
+
queueKey?: string;
|
|
5900
|
+
applicationId?: string;
|
|
5901
|
+
queueDataset?: string;
|
|
5893
5902
|
documents?: {
|
|
5894
5903
|
type?: string[];
|
|
5895
5904
|
key?: string;
|
|
@@ -6217,9 +6226,9 @@ export declare const queueAPISchema: z.ZodUnion<[z.ZodObject<{
|
|
|
6217
6226
|
}[];
|
|
6218
6227
|
id?: string;
|
|
6219
6228
|
status?: string;
|
|
6229
|
+
country?: string;
|
|
6220
6230
|
applicationId?: string;
|
|
6221
6231
|
queueDataset?: string;
|
|
6222
|
-
country?: string;
|
|
6223
6232
|
organizations?: {
|
|
6224
6233
|
id?: string;
|
|
6225
6234
|
identifier?: string;
|
|
@@ -6291,9 +6300,9 @@ export declare const queueAPISchema: z.ZodUnion<[z.ZodObject<{
|
|
|
6291
6300
|
}[];
|
|
6292
6301
|
id?: string;
|
|
6293
6302
|
status?: string;
|
|
6303
|
+
country?: string;
|
|
6294
6304
|
applicationId?: string;
|
|
6295
6305
|
queueDataset?: string;
|
|
6296
|
-
country?: string;
|
|
6297
6306
|
organizations?: {
|
|
6298
6307
|
id?: string;
|
|
6299
6308
|
identifier?: string;
|
|
@@ -6905,13 +6914,13 @@ export declare const queueAPISchema: z.ZodUnion<[z.ZodObject<{
|
|
|
6905
6914
|
roles?: string[];
|
|
6906
6915
|
}[];
|
|
6907
6916
|
id?: string;
|
|
6908
|
-
queueKey?: string;
|
|
6909
|
-
applicationId?: string;
|
|
6910
|
-
queueDataset?: string;
|
|
6911
6917
|
country?: {
|
|
6912
6918
|
id?: string;
|
|
6913
6919
|
identifier?: string;
|
|
6914
6920
|
}[];
|
|
6921
|
+
queueKey?: string;
|
|
6922
|
+
applicationId?: string;
|
|
6923
|
+
queueDataset?: string;
|
|
6915
6924
|
documents?: {
|
|
6916
6925
|
type?: string[];
|
|
6917
6926
|
key?: string;
|
|
@@ -7085,13 +7094,13 @@ export declare const queueAPISchema: z.ZodUnion<[z.ZodObject<{
|
|
|
7085
7094
|
roles?: string[];
|
|
7086
7095
|
}[];
|
|
7087
7096
|
id?: string;
|
|
7088
|
-
queueKey?: string;
|
|
7089
|
-
applicationId?: string;
|
|
7090
|
-
queueDataset?: string;
|
|
7091
7097
|
country?: {
|
|
7092
7098
|
id?: string;
|
|
7093
7099
|
identifier?: string;
|
|
7094
7100
|
}[];
|
|
7101
|
+
queueKey?: string;
|
|
7102
|
+
applicationId?: string;
|
|
7103
|
+
queueDataset?: string;
|
|
7095
7104
|
documents?: {
|
|
7096
7105
|
type?: string[];
|
|
7097
7106
|
key?: string;
|
|
@@ -7797,13 +7806,13 @@ export declare const queueAPIUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.Z
|
|
|
7797
7806
|
roles?: string[];
|
|
7798
7807
|
}[];
|
|
7799
7808
|
id?: string;
|
|
7800
|
-
queueKey?: string;
|
|
7801
|
-
applicationId?: string;
|
|
7802
|
-
queueDataset?: string;
|
|
7803
7809
|
country?: {
|
|
7804
7810
|
id?: string;
|
|
7805
7811
|
identifier?: string;
|
|
7806
7812
|
}[];
|
|
7813
|
+
queueKey?: string;
|
|
7814
|
+
applicationId?: string;
|
|
7815
|
+
queueDataset?: string;
|
|
7807
7816
|
documents?: {
|
|
7808
7817
|
type?: string[];
|
|
7809
7818
|
key?: string;
|
|
@@ -7977,13 +7986,13 @@ export declare const queueAPIUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.Z
|
|
|
7977
7986
|
roles?: string[];
|
|
7978
7987
|
}[];
|
|
7979
7988
|
id?: string;
|
|
7980
|
-
queueKey?: string;
|
|
7981
|
-
applicationId?: string;
|
|
7982
|
-
queueDataset?: string;
|
|
7983
7989
|
country?: {
|
|
7984
7990
|
id?: string;
|
|
7985
7991
|
identifier?: string;
|
|
7986
7992
|
}[];
|
|
7993
|
+
queueKey?: string;
|
|
7994
|
+
applicationId?: string;
|
|
7995
|
+
queueDataset?: string;
|
|
7987
7996
|
documents?: {
|
|
7988
7997
|
type?: string[];
|
|
7989
7998
|
key?: string;
|
|
@@ -8310,9 +8319,9 @@ export declare const queueAPIUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.Z
|
|
|
8310
8319
|
}[];
|
|
8311
8320
|
id?: string;
|
|
8312
8321
|
status?: string;
|
|
8322
|
+
country?: string;
|
|
8313
8323
|
applicationId?: string;
|
|
8314
8324
|
queueDataset?: string;
|
|
8315
|
-
country?: string;
|
|
8316
8325
|
organizations?: {
|
|
8317
8326
|
id?: string;
|
|
8318
8327
|
identifier?: string;
|
|
@@ -8384,9 +8393,9 @@ export declare const queueAPIUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.Z
|
|
|
8384
8393
|
}[];
|
|
8385
8394
|
id?: string;
|
|
8386
8395
|
status?: string;
|
|
8396
|
+
country?: string;
|
|
8387
8397
|
applicationId?: string;
|
|
8388
8398
|
queueDataset?: string;
|
|
8389
|
-
country?: string;
|
|
8390
8399
|
organizations?: {
|
|
8391
8400
|
id?: string;
|
|
8392
8401
|
identifier?: string;
|
|
@@ -8591,9 +8600,9 @@ declare const euQueueExportSchema: z.ZodObject<{
|
|
|
8591
8600
|
id?: string;
|
|
8592
8601
|
sort?: [string | number, number, ...unknown[]];
|
|
8593
8602
|
status?: string;
|
|
8603
|
+
country?: string;
|
|
8594
8604
|
applicationId?: string;
|
|
8595
8605
|
queueDataset?: string;
|
|
8596
|
-
country?: string;
|
|
8597
8606
|
organizations?: {
|
|
8598
8607
|
id?: string;
|
|
8599
8608
|
identifier?: string;
|
|
@@ -8637,9 +8646,9 @@ declare const euQueueExportSchema: z.ZodObject<{
|
|
|
8637
8646
|
id?: string;
|
|
8638
8647
|
sort?: [string | number, number, ...unknown[]];
|
|
8639
8648
|
status?: string;
|
|
8649
|
+
country?: string;
|
|
8640
8650
|
applicationId?: string;
|
|
8641
8651
|
queueDataset?: string;
|
|
8642
|
-
country?: string;
|
|
8643
8652
|
organizations?: {
|
|
8644
8653
|
id?: string;
|
|
8645
8654
|
identifier?: string;
|
|
@@ -8831,12 +8840,12 @@ declare const usQueueExportSchema: z.ZodObject<{
|
|
|
8831
8840
|
}, "strict", z.ZodTypeAny, {
|
|
8832
8841
|
id?: string;
|
|
8833
8842
|
sort?: [string | number, number, ...unknown[]];
|
|
8834
|
-
applicationId?: string;
|
|
8835
|
-
queueDataset?: string;
|
|
8836
8843
|
country?: {
|
|
8837
8844
|
id?: string;
|
|
8838
8845
|
identifier?: string;
|
|
8839
8846
|
}[];
|
|
8847
|
+
applicationId?: string;
|
|
8848
|
+
queueDataset?: string;
|
|
8840
8849
|
organizations?: {
|
|
8841
8850
|
id?: string;
|
|
8842
8851
|
identifier?: string;
|
|
@@ -8887,12 +8896,12 @@ declare const usQueueExportSchema: z.ZodObject<{
|
|
|
8887
8896
|
}, {
|
|
8888
8897
|
id?: string;
|
|
8889
8898
|
sort?: [string | number, number, ...unknown[]];
|
|
8890
|
-
applicationId?: string;
|
|
8891
|
-
queueDataset?: string;
|
|
8892
8899
|
country?: {
|
|
8893
8900
|
id?: string;
|
|
8894
8901
|
identifier?: string;
|
|
8895
8902
|
}[];
|
|
8903
|
+
applicationId?: string;
|
|
8904
|
+
queueDataset?: string;
|
|
8896
8905
|
organizations?: {
|
|
8897
8906
|
id?: string;
|
|
8898
8907
|
identifier?: string;
|
|
@@ -9076,9 +9085,9 @@ export declare const queueExportUnionSchema: z.ZodDiscriminatedUnion<"schema", [
|
|
|
9076
9085
|
id?: string;
|
|
9077
9086
|
sort?: [string | number, number, ...unknown[]];
|
|
9078
9087
|
status?: string;
|
|
9088
|
+
country?: string;
|
|
9079
9089
|
applicationId?: string;
|
|
9080
9090
|
queueDataset?: string;
|
|
9081
|
-
country?: string;
|
|
9082
9091
|
organizations?: {
|
|
9083
9092
|
id?: string;
|
|
9084
9093
|
identifier?: string;
|
|
@@ -9122,9 +9131,9 @@ export declare const queueExportUnionSchema: z.ZodDiscriminatedUnion<"schema", [
|
|
|
9122
9131
|
id?: string;
|
|
9123
9132
|
sort?: [string | number, number, ...unknown[]];
|
|
9124
9133
|
status?: string;
|
|
9134
|
+
country?: string;
|
|
9125
9135
|
applicationId?: string;
|
|
9126
9136
|
queueDataset?: string;
|
|
9127
|
-
country?: string;
|
|
9128
9137
|
organizations?: {
|
|
9129
9138
|
id?: string;
|
|
9130
9139
|
identifier?: string;
|
|
@@ -9315,12 +9324,12 @@ export declare const queueExportUnionSchema: z.ZodDiscriminatedUnion<"schema", [
|
|
|
9315
9324
|
}, "strict", z.ZodTypeAny, {
|
|
9316
9325
|
id?: string;
|
|
9317
9326
|
sort?: [string | number, number, ...unknown[]];
|
|
9318
|
-
applicationId?: string;
|
|
9319
|
-
queueDataset?: string;
|
|
9320
9327
|
country?: {
|
|
9321
9328
|
id?: string;
|
|
9322
9329
|
identifier?: string;
|
|
9323
9330
|
}[];
|
|
9331
|
+
applicationId?: string;
|
|
9332
|
+
queueDataset?: string;
|
|
9324
9333
|
organizations?: {
|
|
9325
9334
|
id?: string;
|
|
9326
9335
|
identifier?: string;
|
|
@@ -9371,12 +9380,12 @@ export declare const queueExportUnionSchema: z.ZodDiscriminatedUnion<"schema", [
|
|
|
9371
9380
|
}, {
|
|
9372
9381
|
id?: string;
|
|
9373
9382
|
sort?: [string | number, number, ...unknown[]];
|
|
9374
|
-
applicationId?: string;
|
|
9375
|
-
queueDataset?: string;
|
|
9376
9383
|
country?: {
|
|
9377
9384
|
id?: string;
|
|
9378
9385
|
identifier?: string;
|
|
9379
9386
|
}[];
|
|
9387
|
+
applicationId?: string;
|
|
9388
|
+
queueDataset?: string;
|
|
9380
9389
|
organizations?: {
|
|
9381
9390
|
id?: string;
|
|
9382
9391
|
identifier?: string;
|