@new-project-media/client-frontends-shared-types 2.0.13 → 2.0.15
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/index.d.ts +1 -0
- package/src/lib/dataGrid/api/index.js +1 -0
- package/src/lib/dataGrid/api/index.js.map +1 -1
- package/src/lib/dataGrid/api/queues.d.ts +84 -84
- 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;
|
|
@@ -1030,12 +1030,12 @@ declare const usQueueDetailsSchema: z.ZodObject<{
|
|
|
1030
1030
|
roles?: string[];
|
|
1031
1031
|
}[];
|
|
1032
1032
|
id?: string;
|
|
1033
|
-
applicationId?: string;
|
|
1034
|
-
queueDataset?: string;
|
|
1035
1033
|
country?: {
|
|
1036
1034
|
id?: string;
|
|
1037
1035
|
identifier?: string;
|
|
1038
1036
|
}[];
|
|
1037
|
+
applicationId?: string;
|
|
1038
|
+
queueDataset?: string;
|
|
1039
1039
|
documents?: {
|
|
1040
1040
|
type?: string[];
|
|
1041
1041
|
key?: string;
|
|
@@ -1177,12 +1177,12 @@ declare const usQueueDetailsSchema: z.ZodObject<{
|
|
|
1177
1177
|
roles?: string[];
|
|
1178
1178
|
}[];
|
|
1179
1179
|
id?: string;
|
|
1180
|
-
applicationId?: string;
|
|
1181
|
-
queueDataset?: string;
|
|
1182
1180
|
country?: {
|
|
1183
1181
|
id?: string;
|
|
1184
1182
|
identifier?: string;
|
|
1185
1183
|
}[];
|
|
1184
|
+
applicationId?: string;
|
|
1185
|
+
queueDataset?: string;
|
|
1186
1186
|
documents?: {
|
|
1187
1187
|
type?: string[];
|
|
1188
1188
|
key?: string;
|
|
@@ -1368,9 +1368,9 @@ declare const queueDetailsSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1368
1368
|
}[];
|
|
1369
1369
|
id?: string;
|
|
1370
1370
|
status?: string;
|
|
1371
|
+
country?: string;
|
|
1371
1372
|
applicationId?: string;
|
|
1372
1373
|
queueDataset?: string;
|
|
1373
|
-
country?: string;
|
|
1374
1374
|
organizations?: {
|
|
1375
1375
|
id?: string;
|
|
1376
1376
|
identifier?: string;
|
|
@@ -1401,9 +1401,9 @@ declare const queueDetailsSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1401
1401
|
}[];
|
|
1402
1402
|
id?: string;
|
|
1403
1403
|
status?: string;
|
|
1404
|
+
country?: string;
|
|
1404
1405
|
applicationId?: string;
|
|
1405
1406
|
queueDataset?: string;
|
|
1406
|
-
country?: string;
|
|
1407
1407
|
organizations?: {
|
|
1408
1408
|
id?: string;
|
|
1409
1409
|
identifier?: string;
|
|
@@ -1871,12 +1871,12 @@ declare const queueDetailsSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1871
1871
|
roles?: string[];
|
|
1872
1872
|
}[];
|
|
1873
1873
|
id?: string;
|
|
1874
|
-
applicationId?: string;
|
|
1875
|
-
queueDataset?: string;
|
|
1876
1874
|
country?: {
|
|
1877
1875
|
id?: string;
|
|
1878
1876
|
identifier?: string;
|
|
1879
1877
|
}[];
|
|
1878
|
+
applicationId?: string;
|
|
1879
|
+
queueDataset?: string;
|
|
1880
1880
|
documents?: {
|
|
1881
1881
|
type?: string[];
|
|
1882
1882
|
key?: string;
|
|
@@ -2018,12 +2018,12 @@ declare const queueDetailsSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2018
2018
|
roles?: string[];
|
|
2019
2019
|
}[];
|
|
2020
2020
|
id?: string;
|
|
2021
|
-
applicationId?: string;
|
|
2022
|
-
queueDataset?: string;
|
|
2023
2021
|
country?: {
|
|
2024
2022
|
id?: string;
|
|
2025
2023
|
identifier?: string;
|
|
2026
2024
|
}[];
|
|
2025
|
+
applicationId?: string;
|
|
2026
|
+
queueDataset?: string;
|
|
2027
2027
|
documents?: {
|
|
2028
2028
|
type?: string[];
|
|
2029
2029
|
key?: string;
|
|
@@ -2209,9 +2209,9 @@ export declare const queueDetailsUnionSchema: z.ZodDiscriminatedUnion<"schema",
|
|
|
2209
2209
|
}[];
|
|
2210
2210
|
id?: string;
|
|
2211
2211
|
status?: string;
|
|
2212
|
+
country?: string;
|
|
2212
2213
|
applicationId?: string;
|
|
2213
2214
|
queueDataset?: string;
|
|
2214
|
-
country?: string;
|
|
2215
2215
|
organizations?: {
|
|
2216
2216
|
id?: string;
|
|
2217
2217
|
identifier?: string;
|
|
@@ -2242,9 +2242,9 @@ export declare const queueDetailsUnionSchema: z.ZodDiscriminatedUnion<"schema",
|
|
|
2242
2242
|
}[];
|
|
2243
2243
|
id?: string;
|
|
2244
2244
|
status?: string;
|
|
2245
|
+
country?: string;
|
|
2245
2246
|
applicationId?: string;
|
|
2246
2247
|
queueDataset?: string;
|
|
2247
|
-
country?: string;
|
|
2248
2248
|
organizations?: {
|
|
2249
2249
|
id?: string;
|
|
2250
2250
|
identifier?: string;
|
|
@@ -2712,12 +2712,12 @@ export declare const queueDetailsUnionSchema: z.ZodDiscriminatedUnion<"schema",
|
|
|
2712
2712
|
roles?: string[];
|
|
2713
2713
|
}[];
|
|
2714
2714
|
id?: string;
|
|
2715
|
-
applicationId?: string;
|
|
2716
|
-
queueDataset?: string;
|
|
2717
2715
|
country?: {
|
|
2718
2716
|
id?: string;
|
|
2719
2717
|
identifier?: string;
|
|
2720
2718
|
}[];
|
|
2719
|
+
applicationId?: string;
|
|
2720
|
+
queueDataset?: string;
|
|
2721
2721
|
documents?: {
|
|
2722
2722
|
type?: string[];
|
|
2723
2723
|
key?: string;
|
|
@@ -2859,12 +2859,12 @@ export declare const queueDetailsUnionSchema: z.ZodDiscriminatedUnion<"schema",
|
|
|
2859
2859
|
roles?: string[];
|
|
2860
2860
|
}[];
|
|
2861
2861
|
id?: string;
|
|
2862
|
-
applicationId?: string;
|
|
2863
|
-
queueDataset?: string;
|
|
2864
2862
|
country?: {
|
|
2865
2863
|
id?: string;
|
|
2866
2864
|
identifier?: string;
|
|
2867
2865
|
}[];
|
|
2866
|
+
applicationId?: string;
|
|
2867
|
+
queueDataset?: string;
|
|
2868
2868
|
documents?: {
|
|
2869
2869
|
type?: string[];
|
|
2870
2870
|
key?: string;
|
|
@@ -3116,9 +3116,9 @@ declare const euQueueListWithSortSchema: z.ZodObject<{
|
|
|
3116
3116
|
id?: string;
|
|
3117
3117
|
sort?: [string | number, number, ...unknown[]];
|
|
3118
3118
|
status?: string;
|
|
3119
|
+
country?: string;
|
|
3119
3120
|
applicationId?: string;
|
|
3120
3121
|
queueDataset?: string;
|
|
3121
|
-
country?: string;
|
|
3122
3122
|
organizations?: {
|
|
3123
3123
|
id?: string;
|
|
3124
3124
|
identifier?: string;
|
|
@@ -3158,9 +3158,9 @@ declare const euQueueListWithSortSchema: z.ZodObject<{
|
|
|
3158
3158
|
id?: string;
|
|
3159
3159
|
sort?: [string | number, number, ...unknown[]];
|
|
3160
3160
|
status?: string;
|
|
3161
|
+
country?: string;
|
|
3161
3162
|
applicationId?: string;
|
|
3162
3163
|
queueDataset?: string;
|
|
3163
|
-
country?: string;
|
|
3164
3164
|
organizations?: {
|
|
3165
3165
|
id?: string;
|
|
3166
3166
|
identifier?: string;
|
|
@@ -3352,12 +3352,12 @@ declare const usQueueListWithSortSchema: z.ZodObject<{
|
|
|
3352
3352
|
}, "strict", z.ZodTypeAny, {
|
|
3353
3353
|
id?: string;
|
|
3354
3354
|
sort?: [string | number, number, ...unknown[]];
|
|
3355
|
-
applicationId?: string;
|
|
3356
|
-
queueDataset?: string;
|
|
3357
3355
|
country?: {
|
|
3358
3356
|
id?: string;
|
|
3359
3357
|
identifier?: string;
|
|
3360
3358
|
}[];
|
|
3359
|
+
applicationId?: string;
|
|
3360
|
+
queueDataset?: string;
|
|
3361
3361
|
organizations?: {
|
|
3362
3362
|
id?: string;
|
|
3363
3363
|
identifier?: string;
|
|
@@ -3408,12 +3408,12 @@ declare const usQueueListWithSortSchema: z.ZodObject<{
|
|
|
3408
3408
|
}, {
|
|
3409
3409
|
id?: string;
|
|
3410
3410
|
sort?: [string | number, number, ...unknown[]];
|
|
3411
|
-
applicationId?: string;
|
|
3412
|
-
queueDataset?: string;
|
|
3413
3411
|
country?: {
|
|
3414
3412
|
id?: string;
|
|
3415
3413
|
identifier?: string;
|
|
3416
3414
|
}[];
|
|
3415
|
+
applicationId?: string;
|
|
3416
|
+
queueDataset?: string;
|
|
3417
3417
|
organizations?: {
|
|
3418
3418
|
id?: string;
|
|
3419
3419
|
identifier?: string;
|
|
@@ -3582,9 +3582,9 @@ declare const queueListSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3582
3582
|
id?: string;
|
|
3583
3583
|
sort?: [string | number, number, ...unknown[]];
|
|
3584
3584
|
status?: string;
|
|
3585
|
+
country?: string;
|
|
3585
3586
|
applicationId?: string;
|
|
3586
3587
|
queueDataset?: string;
|
|
3587
|
-
country?: string;
|
|
3588
3588
|
organizations?: {
|
|
3589
3589
|
id?: string;
|
|
3590
3590
|
identifier?: string;
|
|
@@ -3624,9 +3624,9 @@ declare const queueListSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3624
3624
|
id?: string;
|
|
3625
3625
|
sort?: [string | number, number, ...unknown[]];
|
|
3626
3626
|
status?: string;
|
|
3627
|
+
country?: string;
|
|
3627
3628
|
applicationId?: string;
|
|
3628
3629
|
queueDataset?: string;
|
|
3629
|
-
country?: string;
|
|
3630
3630
|
organizations?: {
|
|
3631
3631
|
id?: string;
|
|
3632
3632
|
identifier?: string;
|
|
@@ -3817,12 +3817,12 @@ declare const queueListSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3817
3817
|
}, "strict", z.ZodTypeAny, {
|
|
3818
3818
|
id?: string;
|
|
3819
3819
|
sort?: [string | number, number, ...unknown[]];
|
|
3820
|
-
applicationId?: string;
|
|
3821
|
-
queueDataset?: string;
|
|
3822
3820
|
country?: {
|
|
3823
3821
|
id?: string;
|
|
3824
3822
|
identifier?: string;
|
|
3825
3823
|
}[];
|
|
3824
|
+
applicationId?: string;
|
|
3825
|
+
queueDataset?: string;
|
|
3826
3826
|
organizations?: {
|
|
3827
3827
|
id?: string;
|
|
3828
3828
|
identifier?: string;
|
|
@@ -3873,12 +3873,12 @@ declare const queueListSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3873
3873
|
}, {
|
|
3874
3874
|
id?: string;
|
|
3875
3875
|
sort?: [string | number, number, ...unknown[]];
|
|
3876
|
-
applicationId?: string;
|
|
3877
|
-
queueDataset?: string;
|
|
3878
3876
|
country?: {
|
|
3879
3877
|
id?: string;
|
|
3880
3878
|
identifier?: string;
|
|
3881
3879
|
}[];
|
|
3880
|
+
applicationId?: string;
|
|
3881
|
+
queueDataset?: string;
|
|
3882
3882
|
organizations?: {
|
|
3883
3883
|
id?: string;
|
|
3884
3884
|
identifier?: string;
|
|
@@ -4047,9 +4047,9 @@ export declare const queueListUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.
|
|
|
4047
4047
|
id?: string;
|
|
4048
4048
|
sort?: [string | number, number, ...unknown[]];
|
|
4049
4049
|
status?: string;
|
|
4050
|
+
country?: string;
|
|
4050
4051
|
applicationId?: string;
|
|
4051
4052
|
queueDataset?: string;
|
|
4052
|
-
country?: string;
|
|
4053
4053
|
organizations?: {
|
|
4054
4054
|
id?: string;
|
|
4055
4055
|
identifier?: string;
|
|
@@ -4089,9 +4089,9 @@ export declare const queueListUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.
|
|
|
4089
4089
|
id?: string;
|
|
4090
4090
|
sort?: [string | number, number, ...unknown[]];
|
|
4091
4091
|
status?: string;
|
|
4092
|
+
country?: string;
|
|
4092
4093
|
applicationId?: string;
|
|
4093
4094
|
queueDataset?: string;
|
|
4094
|
-
country?: string;
|
|
4095
4095
|
organizations?: {
|
|
4096
4096
|
id?: string;
|
|
4097
4097
|
identifier?: string;
|
|
@@ -4282,12 +4282,12 @@ export declare const queueListUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.
|
|
|
4282
4282
|
}, "strict", z.ZodTypeAny, {
|
|
4283
4283
|
id?: string;
|
|
4284
4284
|
sort?: [string | number, number, ...unknown[]];
|
|
4285
|
-
applicationId?: string;
|
|
4286
|
-
queueDataset?: string;
|
|
4287
4285
|
country?: {
|
|
4288
4286
|
id?: string;
|
|
4289
4287
|
identifier?: string;
|
|
4290
4288
|
}[];
|
|
4289
|
+
applicationId?: string;
|
|
4290
|
+
queueDataset?: string;
|
|
4291
4291
|
organizations?: {
|
|
4292
4292
|
id?: string;
|
|
4293
4293
|
identifier?: string;
|
|
@@ -4338,12 +4338,12 @@ export declare const queueListUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.
|
|
|
4338
4338
|
}, {
|
|
4339
4339
|
id?: string;
|
|
4340
4340
|
sort?: [string | number, number, ...unknown[]];
|
|
4341
|
-
applicationId?: string;
|
|
4342
|
-
queueDataset?: string;
|
|
4343
4341
|
country?: {
|
|
4344
4342
|
id?: string;
|
|
4345
4343
|
identifier?: string;
|
|
4346
4344
|
}[];
|
|
4345
|
+
applicationId?: string;
|
|
4346
|
+
queueDataset?: string;
|
|
4347
4347
|
organizations?: {
|
|
4348
4348
|
id?: string;
|
|
4349
4349
|
identifier?: string;
|
|
@@ -4509,9 +4509,9 @@ export declare const queueListBaseUnionSchema: z.ZodDiscriminatedUnion<"schema",
|
|
|
4509
4509
|
}, "strict", z.ZodTypeAny, {
|
|
4510
4510
|
id?: string;
|
|
4511
4511
|
status?: string;
|
|
4512
|
+
country?: string;
|
|
4512
4513
|
applicationId?: string;
|
|
4513
4514
|
queueDataset?: string;
|
|
4514
|
-
country?: string;
|
|
4515
4515
|
organizations?: {
|
|
4516
4516
|
id?: string;
|
|
4517
4517
|
identifier?: string;
|
|
@@ -4550,9 +4550,9 @@ export declare const queueListBaseUnionSchema: z.ZodDiscriminatedUnion<"schema",
|
|
|
4550
4550
|
}, {
|
|
4551
4551
|
id?: string;
|
|
4552
4552
|
status?: string;
|
|
4553
|
+
country?: string;
|
|
4553
4554
|
applicationId?: string;
|
|
4554
4555
|
queueDataset?: string;
|
|
4555
|
-
country?: string;
|
|
4556
4556
|
organizations?: {
|
|
4557
4557
|
id?: string;
|
|
4558
4558
|
identifier?: string;
|
|
@@ -4740,12 +4740,12 @@ export declare const queueListBaseUnionSchema: z.ZodDiscriminatedUnion<"schema",
|
|
|
4740
4740
|
totalMw: z.ZodOptional<z.ZodNumber>;
|
|
4741
4741
|
}, "strict", z.ZodTypeAny, {
|
|
4742
4742
|
id?: string;
|
|
4743
|
-
applicationId?: string;
|
|
4744
|
-
queueDataset?: string;
|
|
4745
4743
|
country?: {
|
|
4746
4744
|
id?: string;
|
|
4747
4745
|
identifier?: string;
|
|
4748
4746
|
}[];
|
|
4747
|
+
applicationId?: string;
|
|
4748
|
+
queueDataset?: string;
|
|
4749
4749
|
organizations?: {
|
|
4750
4750
|
id?: string;
|
|
4751
4751
|
identifier?: string;
|
|
@@ -4795,12 +4795,12 @@ export declare const queueListBaseUnionSchema: z.ZodDiscriminatedUnion<"schema",
|
|
|
4795
4795
|
poiLocation?: string | number;
|
|
4796
4796
|
}, {
|
|
4797
4797
|
id?: string;
|
|
4798
|
-
applicationId?: string;
|
|
4799
|
-
queueDataset?: string;
|
|
4800
4798
|
country?: {
|
|
4801
4799
|
id?: string;
|
|
4802
4800
|
identifier?: string;
|
|
4803
4801
|
}[];
|
|
4802
|
+
applicationId?: string;
|
|
4803
|
+
queueDataset?: string;
|
|
4804
4804
|
organizations?: {
|
|
4805
4805
|
id?: string;
|
|
4806
4806
|
identifier?: string;
|
|
@@ -5023,9 +5023,9 @@ export declare const euQueueAPISchema: z.ZodObject<{
|
|
|
5023
5023
|
}[];
|
|
5024
5024
|
id?: string;
|
|
5025
5025
|
status?: string;
|
|
5026
|
+
country?: string;
|
|
5026
5027
|
applicationId?: string;
|
|
5027
5028
|
queueDataset?: string;
|
|
5028
|
-
country?: string;
|
|
5029
5029
|
organizations?: {
|
|
5030
5030
|
id?: string;
|
|
5031
5031
|
identifier?: string;
|
|
@@ -5097,9 +5097,9 @@ export declare const euQueueAPISchema: z.ZodObject<{
|
|
|
5097
5097
|
}[];
|
|
5098
5098
|
id?: string;
|
|
5099
5099
|
status?: string;
|
|
5100
|
+
country?: string;
|
|
5100
5101
|
applicationId?: string;
|
|
5101
5102
|
queueDataset?: string;
|
|
5102
|
-
country?: string;
|
|
5103
5103
|
organizations?: {
|
|
5104
5104
|
id?: string;
|
|
5105
5105
|
identifier?: string;
|
|
@@ -5712,13 +5712,13 @@ export declare const usQueueAPISchema: z.ZodObject<{
|
|
|
5712
5712
|
roles?: string[];
|
|
5713
5713
|
}[];
|
|
5714
5714
|
id?: string;
|
|
5715
|
-
queueKey?: string;
|
|
5716
|
-
applicationId?: string;
|
|
5717
|
-
queueDataset?: string;
|
|
5718
5715
|
country?: {
|
|
5719
5716
|
id?: string;
|
|
5720
5717
|
identifier?: string;
|
|
5721
5718
|
}[];
|
|
5719
|
+
queueKey?: string;
|
|
5720
|
+
applicationId?: string;
|
|
5721
|
+
queueDataset?: string;
|
|
5722
5722
|
documents?: {
|
|
5723
5723
|
type?: string[];
|
|
5724
5724
|
key?: string;
|
|
@@ -5892,13 +5892,13 @@ export declare const usQueueAPISchema: z.ZodObject<{
|
|
|
5892
5892
|
roles?: string[];
|
|
5893
5893
|
}[];
|
|
5894
5894
|
id?: string;
|
|
5895
|
-
queueKey?: string;
|
|
5896
|
-
applicationId?: string;
|
|
5897
|
-
queueDataset?: string;
|
|
5898
5895
|
country?: {
|
|
5899
5896
|
id?: string;
|
|
5900
5897
|
identifier?: string;
|
|
5901
5898
|
}[];
|
|
5899
|
+
queueKey?: string;
|
|
5900
|
+
applicationId?: string;
|
|
5901
|
+
queueDataset?: string;
|
|
5902
5902
|
documents?: {
|
|
5903
5903
|
type?: string[];
|
|
5904
5904
|
key?: string;
|
|
@@ -6226,9 +6226,9 @@ export declare const queueAPISchema: z.ZodUnion<[z.ZodObject<{
|
|
|
6226
6226
|
}[];
|
|
6227
6227
|
id?: string;
|
|
6228
6228
|
status?: string;
|
|
6229
|
+
country?: string;
|
|
6229
6230
|
applicationId?: string;
|
|
6230
6231
|
queueDataset?: string;
|
|
6231
|
-
country?: string;
|
|
6232
6232
|
organizations?: {
|
|
6233
6233
|
id?: string;
|
|
6234
6234
|
identifier?: string;
|
|
@@ -6300,9 +6300,9 @@ export declare const queueAPISchema: z.ZodUnion<[z.ZodObject<{
|
|
|
6300
6300
|
}[];
|
|
6301
6301
|
id?: string;
|
|
6302
6302
|
status?: string;
|
|
6303
|
+
country?: string;
|
|
6303
6304
|
applicationId?: string;
|
|
6304
6305
|
queueDataset?: string;
|
|
6305
|
-
country?: string;
|
|
6306
6306
|
organizations?: {
|
|
6307
6307
|
id?: string;
|
|
6308
6308
|
identifier?: string;
|
|
@@ -6914,13 +6914,13 @@ export declare const queueAPISchema: z.ZodUnion<[z.ZodObject<{
|
|
|
6914
6914
|
roles?: string[];
|
|
6915
6915
|
}[];
|
|
6916
6916
|
id?: string;
|
|
6917
|
-
queueKey?: string;
|
|
6918
|
-
applicationId?: string;
|
|
6919
|
-
queueDataset?: string;
|
|
6920
6917
|
country?: {
|
|
6921
6918
|
id?: string;
|
|
6922
6919
|
identifier?: string;
|
|
6923
6920
|
}[];
|
|
6921
|
+
queueKey?: string;
|
|
6922
|
+
applicationId?: string;
|
|
6923
|
+
queueDataset?: string;
|
|
6924
6924
|
documents?: {
|
|
6925
6925
|
type?: string[];
|
|
6926
6926
|
key?: string;
|
|
@@ -7094,13 +7094,13 @@ export declare const queueAPISchema: z.ZodUnion<[z.ZodObject<{
|
|
|
7094
7094
|
roles?: string[];
|
|
7095
7095
|
}[];
|
|
7096
7096
|
id?: string;
|
|
7097
|
-
queueKey?: string;
|
|
7098
|
-
applicationId?: string;
|
|
7099
|
-
queueDataset?: string;
|
|
7100
7097
|
country?: {
|
|
7101
7098
|
id?: string;
|
|
7102
7099
|
identifier?: string;
|
|
7103
7100
|
}[];
|
|
7101
|
+
queueKey?: string;
|
|
7102
|
+
applicationId?: string;
|
|
7103
|
+
queueDataset?: string;
|
|
7104
7104
|
documents?: {
|
|
7105
7105
|
type?: string[];
|
|
7106
7106
|
key?: string;
|
|
@@ -7806,13 +7806,13 @@ export declare const queueAPIUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.Z
|
|
|
7806
7806
|
roles?: string[];
|
|
7807
7807
|
}[];
|
|
7808
7808
|
id?: string;
|
|
7809
|
-
queueKey?: string;
|
|
7810
|
-
applicationId?: string;
|
|
7811
|
-
queueDataset?: string;
|
|
7812
7809
|
country?: {
|
|
7813
7810
|
id?: string;
|
|
7814
7811
|
identifier?: string;
|
|
7815
7812
|
}[];
|
|
7813
|
+
queueKey?: string;
|
|
7814
|
+
applicationId?: string;
|
|
7815
|
+
queueDataset?: string;
|
|
7816
7816
|
documents?: {
|
|
7817
7817
|
type?: string[];
|
|
7818
7818
|
key?: string;
|
|
@@ -7986,13 +7986,13 @@ export declare const queueAPIUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.Z
|
|
|
7986
7986
|
roles?: string[];
|
|
7987
7987
|
}[];
|
|
7988
7988
|
id?: string;
|
|
7989
|
-
queueKey?: string;
|
|
7990
|
-
applicationId?: string;
|
|
7991
|
-
queueDataset?: string;
|
|
7992
7989
|
country?: {
|
|
7993
7990
|
id?: string;
|
|
7994
7991
|
identifier?: string;
|
|
7995
7992
|
}[];
|
|
7993
|
+
queueKey?: string;
|
|
7994
|
+
applicationId?: string;
|
|
7995
|
+
queueDataset?: string;
|
|
7996
7996
|
documents?: {
|
|
7997
7997
|
type?: string[];
|
|
7998
7998
|
key?: string;
|
|
@@ -8319,9 +8319,9 @@ export declare const queueAPIUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.Z
|
|
|
8319
8319
|
}[];
|
|
8320
8320
|
id?: string;
|
|
8321
8321
|
status?: string;
|
|
8322
|
+
country?: string;
|
|
8322
8323
|
applicationId?: string;
|
|
8323
8324
|
queueDataset?: string;
|
|
8324
|
-
country?: string;
|
|
8325
8325
|
organizations?: {
|
|
8326
8326
|
id?: string;
|
|
8327
8327
|
identifier?: string;
|
|
@@ -8393,9 +8393,9 @@ export declare const queueAPIUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.Z
|
|
|
8393
8393
|
}[];
|
|
8394
8394
|
id?: string;
|
|
8395
8395
|
status?: string;
|
|
8396
|
+
country?: string;
|
|
8396
8397
|
applicationId?: string;
|
|
8397
8398
|
queueDataset?: string;
|
|
8398
|
-
country?: string;
|
|
8399
8399
|
organizations?: {
|
|
8400
8400
|
id?: string;
|
|
8401
8401
|
identifier?: string;
|
|
@@ -8600,9 +8600,9 @@ declare const euQueueExportSchema: z.ZodObject<{
|
|
|
8600
8600
|
id?: string;
|
|
8601
8601
|
sort?: [string | number, number, ...unknown[]];
|
|
8602
8602
|
status?: string;
|
|
8603
|
+
country?: string;
|
|
8603
8604
|
applicationId?: string;
|
|
8604
8605
|
queueDataset?: string;
|
|
8605
|
-
country?: string;
|
|
8606
8606
|
organizations?: {
|
|
8607
8607
|
id?: string;
|
|
8608
8608
|
identifier?: string;
|
|
@@ -8646,9 +8646,9 @@ declare const euQueueExportSchema: z.ZodObject<{
|
|
|
8646
8646
|
id?: string;
|
|
8647
8647
|
sort?: [string | number, number, ...unknown[]];
|
|
8648
8648
|
status?: string;
|
|
8649
|
+
country?: string;
|
|
8649
8650
|
applicationId?: string;
|
|
8650
8651
|
queueDataset?: string;
|
|
8651
|
-
country?: string;
|
|
8652
8652
|
organizations?: {
|
|
8653
8653
|
id?: string;
|
|
8654
8654
|
identifier?: string;
|
|
@@ -8840,12 +8840,12 @@ declare const usQueueExportSchema: z.ZodObject<{
|
|
|
8840
8840
|
}, "strict", z.ZodTypeAny, {
|
|
8841
8841
|
id?: string;
|
|
8842
8842
|
sort?: [string | number, number, ...unknown[]];
|
|
8843
|
-
applicationId?: string;
|
|
8844
|
-
queueDataset?: string;
|
|
8845
8843
|
country?: {
|
|
8846
8844
|
id?: string;
|
|
8847
8845
|
identifier?: string;
|
|
8848
8846
|
}[];
|
|
8847
|
+
applicationId?: string;
|
|
8848
|
+
queueDataset?: string;
|
|
8849
8849
|
organizations?: {
|
|
8850
8850
|
id?: string;
|
|
8851
8851
|
identifier?: string;
|
|
@@ -8896,12 +8896,12 @@ declare const usQueueExportSchema: z.ZodObject<{
|
|
|
8896
8896
|
}, {
|
|
8897
8897
|
id?: string;
|
|
8898
8898
|
sort?: [string | number, number, ...unknown[]];
|
|
8899
|
-
applicationId?: string;
|
|
8900
|
-
queueDataset?: string;
|
|
8901
8899
|
country?: {
|
|
8902
8900
|
id?: string;
|
|
8903
8901
|
identifier?: string;
|
|
8904
8902
|
}[];
|
|
8903
|
+
applicationId?: string;
|
|
8904
|
+
queueDataset?: string;
|
|
8905
8905
|
organizations?: {
|
|
8906
8906
|
id?: string;
|
|
8907
8907
|
identifier?: string;
|
|
@@ -9085,9 +9085,9 @@ export declare const queueExportUnionSchema: z.ZodDiscriminatedUnion<"schema", [
|
|
|
9085
9085
|
id?: string;
|
|
9086
9086
|
sort?: [string | number, number, ...unknown[]];
|
|
9087
9087
|
status?: string;
|
|
9088
|
+
country?: string;
|
|
9088
9089
|
applicationId?: string;
|
|
9089
9090
|
queueDataset?: string;
|
|
9090
|
-
country?: string;
|
|
9091
9091
|
organizations?: {
|
|
9092
9092
|
id?: string;
|
|
9093
9093
|
identifier?: string;
|
|
@@ -9131,9 +9131,9 @@ export declare const queueExportUnionSchema: z.ZodDiscriminatedUnion<"schema", [
|
|
|
9131
9131
|
id?: string;
|
|
9132
9132
|
sort?: [string | number, number, ...unknown[]];
|
|
9133
9133
|
status?: string;
|
|
9134
|
+
country?: string;
|
|
9134
9135
|
applicationId?: string;
|
|
9135
9136
|
queueDataset?: string;
|
|
9136
|
-
country?: string;
|
|
9137
9137
|
organizations?: {
|
|
9138
9138
|
id?: string;
|
|
9139
9139
|
identifier?: string;
|
|
@@ -9324,12 +9324,12 @@ export declare const queueExportUnionSchema: z.ZodDiscriminatedUnion<"schema", [
|
|
|
9324
9324
|
}, "strict", z.ZodTypeAny, {
|
|
9325
9325
|
id?: string;
|
|
9326
9326
|
sort?: [string | number, number, ...unknown[]];
|
|
9327
|
-
applicationId?: string;
|
|
9328
|
-
queueDataset?: string;
|
|
9329
9327
|
country?: {
|
|
9330
9328
|
id?: string;
|
|
9331
9329
|
identifier?: string;
|
|
9332
9330
|
}[];
|
|
9331
|
+
applicationId?: string;
|
|
9332
|
+
queueDataset?: string;
|
|
9333
9333
|
organizations?: {
|
|
9334
9334
|
id?: string;
|
|
9335
9335
|
identifier?: string;
|
|
@@ -9380,12 +9380,12 @@ export declare const queueExportUnionSchema: z.ZodDiscriminatedUnion<"schema", [
|
|
|
9380
9380
|
}, {
|
|
9381
9381
|
id?: string;
|
|
9382
9382
|
sort?: [string | number, number, ...unknown[]];
|
|
9383
|
-
applicationId?: string;
|
|
9384
|
-
queueDataset?: string;
|
|
9385
9383
|
country?: {
|
|
9386
9384
|
id?: string;
|
|
9387
9385
|
identifier?: string;
|
|
9388
9386
|
}[];
|
|
9387
|
+
applicationId?: string;
|
|
9388
|
+
queueDataset?: string;
|
|
9389
9389
|
organizations?: {
|
|
9390
9390
|
id?: string;
|
|
9391
9391
|
identifier?: string;
|