@new-project-media/client-frontends-shared-types 2.0.11 → 2.0.13
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/queues.d.ts +133 -124
- 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 +139 -205
- package/src/lib/dataGrid/api/signals.js +23 -30
- package/src/lib/dataGrid/api/signals.js.map +1 -1
|
@@ -135,6 +135,7 @@ declare const euQueueListSchema: z.ZodObject<{
|
|
|
135
135
|
role?: string;
|
|
136
136
|
ref?: string;
|
|
137
137
|
}[];
|
|
138
|
+
allSectors?: string;
|
|
138
139
|
geo?: {
|
|
139
140
|
county?: {
|
|
140
141
|
lat?: number;
|
|
@@ -154,7 +155,6 @@ declare const euQueueListSchema: z.ZodObject<{
|
|
|
154
155
|
lon?: number;
|
|
155
156
|
};
|
|
156
157
|
};
|
|
157
|
-
allSectors?: string;
|
|
158
158
|
queueDate?: string;
|
|
159
159
|
schema?: "eu_queue";
|
|
160
160
|
actualOperationalDate?: string;
|
|
@@ -176,6 +176,7 @@ declare const euQueueListSchema: z.ZodObject<{
|
|
|
176
176
|
role?: string;
|
|
177
177
|
ref?: string;
|
|
178
178
|
}[];
|
|
179
|
+
allSectors?: string;
|
|
179
180
|
geo?: {
|
|
180
181
|
county?: {
|
|
181
182
|
lat?: number;
|
|
@@ -195,7 +196,6 @@ declare const euQueueListSchema: z.ZodObject<{
|
|
|
195
196
|
lon?: number;
|
|
196
197
|
};
|
|
197
198
|
};
|
|
198
|
-
allSectors?: string;
|
|
199
199
|
queueDate?: string;
|
|
200
200
|
schema?: "eu_queue";
|
|
201
201
|
actualOperationalDate?: string;
|
|
@@ -370,6 +370,7 @@ declare const usQueueListSchema: z.ZodObject<{
|
|
|
370
370
|
role?: string;
|
|
371
371
|
ref?: string;
|
|
372
372
|
}[];
|
|
373
|
+
allSectors?: string;
|
|
373
374
|
geo?: {
|
|
374
375
|
county?: {
|
|
375
376
|
lat?: number;
|
|
@@ -389,7 +390,6 @@ declare const usQueueListSchema: z.ZodObject<{
|
|
|
389
390
|
lon?: number;
|
|
390
391
|
};
|
|
391
392
|
};
|
|
392
|
-
allSectors?: string;
|
|
393
393
|
applicationTags?: {
|
|
394
394
|
identifier?: string;
|
|
395
395
|
}[];
|
|
@@ -425,6 +425,7 @@ declare const usQueueListSchema: z.ZodObject<{
|
|
|
425
425
|
role?: string;
|
|
426
426
|
ref?: string;
|
|
427
427
|
}[];
|
|
428
|
+
allSectors?: string;
|
|
428
429
|
geo?: {
|
|
429
430
|
county?: {
|
|
430
431
|
lat?: number;
|
|
@@ -444,7 +445,6 @@ declare const usQueueListSchema: z.ZodObject<{
|
|
|
444
445
|
lon?: number;
|
|
445
446
|
};
|
|
446
447
|
};
|
|
447
|
-
allSectors?: string;
|
|
448
448
|
applicationTags?: {
|
|
449
449
|
identifier?: string;
|
|
450
450
|
}[];
|
|
@@ -535,8 +535,8 @@ declare const euQueueDetailsSchema: z.ZodObject<{
|
|
|
535
535
|
role?: string;
|
|
536
536
|
ref?: string;
|
|
537
537
|
}[];
|
|
538
|
-
allSectors?: string;
|
|
539
538
|
$organizations?: string;
|
|
539
|
+
allSectors?: string;
|
|
540
540
|
queueDate?: string;
|
|
541
541
|
schema?: "eu_queue";
|
|
542
542
|
lastModified?: string;
|
|
@@ -568,8 +568,8 @@ declare const euQueueDetailsSchema: z.ZodObject<{
|
|
|
568
568
|
role?: string;
|
|
569
569
|
ref?: string;
|
|
570
570
|
}[];
|
|
571
|
-
allSectors?: string;
|
|
572
571
|
$organizations?: string;
|
|
572
|
+
allSectors?: string;
|
|
573
573
|
queueDate?: string;
|
|
574
574
|
schema?: "eu_queue";
|
|
575
575
|
lastModified?: 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>;
|
|
@@ -1000,15 +1001,15 @@ declare const usQueueDetailsSchema: z.ZodObject<{
|
|
|
1000
1001
|
type?: string;
|
|
1001
1002
|
subType?: string;
|
|
1002
1003
|
id?: string;
|
|
1003
|
-
headline?: string;
|
|
1004
1004
|
filingDate?: string;
|
|
1005
|
+
headline?: string;
|
|
1005
1006
|
publishedDate?: string;
|
|
1006
1007
|
}, {
|
|
1007
1008
|
type?: string;
|
|
1008
1009
|
subType?: string;
|
|
1009
1010
|
id?: string;
|
|
1010
|
-
headline?: string;
|
|
1011
1011
|
filingDate?: string;
|
|
1012
|
+
headline?: string;
|
|
1012
1013
|
publishedDate?: string;
|
|
1013
1014
|
}>, "many">>;
|
|
1014
1015
|
totalMw: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1050,8 +1051,8 @@ declare const usQueueDetailsSchema: z.ZodObject<{
|
|
|
1050
1051
|
role?: string;
|
|
1051
1052
|
ref?: string;
|
|
1052
1053
|
}[];
|
|
1053
|
-
allSectors?: string;
|
|
1054
1054
|
$organizations?: string;
|
|
1055
|
+
allSectors?: string;
|
|
1055
1056
|
reportDate?: string;
|
|
1056
1057
|
applicationTags?: {
|
|
1057
1058
|
identifier?: 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;
|
|
@@ -1154,8 +1156,8 @@ declare const usQueueDetailsSchema: z.ZodObject<{
|
|
|
1154
1156
|
type?: string;
|
|
1155
1157
|
subType?: string;
|
|
1156
1158
|
id?: string;
|
|
1157
|
-
headline?: string;
|
|
1158
1159
|
filingDate?: string;
|
|
1160
|
+
headline?: string;
|
|
1159
1161
|
publishedDate?: string;
|
|
1160
1162
|
}[];
|
|
1161
1163
|
withdrawnDate?: string;
|
|
@@ -1196,8 +1198,8 @@ declare const usQueueDetailsSchema: z.ZodObject<{
|
|
|
1196
1198
|
role?: string;
|
|
1197
1199
|
ref?: string;
|
|
1198
1200
|
}[];
|
|
1199
|
-
allSectors?: string;
|
|
1200
1201
|
$organizations?: string;
|
|
1202
|
+
allSectors?: string;
|
|
1201
1203
|
reportDate?: string;
|
|
1202
1204
|
applicationTags?: {
|
|
1203
1205
|
identifier?: 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;
|
|
@@ -1300,8 +1303,8 @@ declare const usQueueDetailsSchema: z.ZodObject<{
|
|
|
1300
1303
|
type?: string;
|
|
1301
1304
|
subType?: string;
|
|
1302
1305
|
id?: string;
|
|
1303
|
-
headline?: string;
|
|
1304
1306
|
filingDate?: string;
|
|
1307
|
+
headline?: string;
|
|
1305
1308
|
publishedDate?: string;
|
|
1306
1309
|
}[];
|
|
1307
1310
|
withdrawnDate?: string;
|
|
@@ -1374,8 +1377,8 @@ declare const queueDetailsSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1374
1377
|
role?: string;
|
|
1375
1378
|
ref?: string;
|
|
1376
1379
|
}[];
|
|
1377
|
-
allSectors?: string;
|
|
1378
1380
|
$organizations?: string;
|
|
1381
|
+
allSectors?: string;
|
|
1379
1382
|
queueDate?: string;
|
|
1380
1383
|
schema?: "eu_queue";
|
|
1381
1384
|
lastModified?: string;
|
|
@@ -1407,8 +1410,8 @@ declare const queueDetailsSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1407
1410
|
role?: string;
|
|
1408
1411
|
ref?: string;
|
|
1409
1412
|
}[];
|
|
1410
|
-
allSectors?: string;
|
|
1411
1413
|
$organizations?: string;
|
|
1414
|
+
allSectors?: string;
|
|
1412
1415
|
queueDate?: string;
|
|
1413
1416
|
schema?: "eu_queue";
|
|
1414
1417
|
lastModified?: 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>;
|
|
@@ -1838,15 +1842,15 @@ declare const queueDetailsSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1838
1842
|
type?: string;
|
|
1839
1843
|
subType?: string;
|
|
1840
1844
|
id?: string;
|
|
1841
|
-
headline?: string;
|
|
1842
1845
|
filingDate?: string;
|
|
1846
|
+
headline?: string;
|
|
1843
1847
|
publishedDate?: string;
|
|
1844
1848
|
}, {
|
|
1845
1849
|
type?: string;
|
|
1846
1850
|
subType?: string;
|
|
1847
1851
|
id?: string;
|
|
1848
|
-
headline?: string;
|
|
1849
1852
|
filingDate?: string;
|
|
1853
|
+
headline?: string;
|
|
1850
1854
|
publishedDate?: string;
|
|
1851
1855
|
}>, "many">>;
|
|
1852
1856
|
totalMw: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1888,8 +1892,8 @@ declare const queueDetailsSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1888
1892
|
role?: string;
|
|
1889
1893
|
ref?: string;
|
|
1890
1894
|
}[];
|
|
1891
|
-
allSectors?: string;
|
|
1892
1895
|
$organizations?: string;
|
|
1896
|
+
allSectors?: string;
|
|
1893
1897
|
reportDate?: string;
|
|
1894
1898
|
applicationTags?: {
|
|
1895
1899
|
identifier?: 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;
|
|
@@ -1992,8 +1997,8 @@ declare const queueDetailsSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1992
1997
|
type?: string;
|
|
1993
1998
|
subType?: string;
|
|
1994
1999
|
id?: string;
|
|
1995
|
-
headline?: string;
|
|
1996
2000
|
filingDate?: string;
|
|
2001
|
+
headline?: string;
|
|
1997
2002
|
publishedDate?: string;
|
|
1998
2003
|
}[];
|
|
1999
2004
|
withdrawnDate?: string;
|
|
@@ -2034,8 +2039,8 @@ declare const queueDetailsSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2034
2039
|
role?: string;
|
|
2035
2040
|
ref?: string;
|
|
2036
2041
|
}[];
|
|
2037
|
-
allSectors?: string;
|
|
2038
2042
|
$organizations?: string;
|
|
2043
|
+
allSectors?: string;
|
|
2039
2044
|
reportDate?: string;
|
|
2040
2045
|
applicationTags?: {
|
|
2041
2046
|
identifier?: 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;
|
|
@@ -2138,8 +2144,8 @@ declare const queueDetailsSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2138
2144
|
type?: string;
|
|
2139
2145
|
subType?: string;
|
|
2140
2146
|
id?: string;
|
|
2141
|
-
headline?: string;
|
|
2142
2147
|
filingDate?: string;
|
|
2148
|
+
headline?: string;
|
|
2143
2149
|
publishedDate?: string;
|
|
2144
2150
|
}[];
|
|
2145
2151
|
withdrawnDate?: string;
|
|
@@ -2212,8 +2218,8 @@ export declare const queueDetailsUnionSchema: z.ZodDiscriminatedUnion<"schema",
|
|
|
2212
2218
|
role?: string;
|
|
2213
2219
|
ref?: string;
|
|
2214
2220
|
}[];
|
|
2215
|
-
allSectors?: string;
|
|
2216
2221
|
$organizations?: string;
|
|
2222
|
+
allSectors?: string;
|
|
2217
2223
|
queueDate?: string;
|
|
2218
2224
|
schema?: "eu_queue";
|
|
2219
2225
|
lastModified?: string;
|
|
@@ -2245,8 +2251,8 @@ export declare const queueDetailsUnionSchema: z.ZodDiscriminatedUnion<"schema",
|
|
|
2245
2251
|
role?: string;
|
|
2246
2252
|
ref?: string;
|
|
2247
2253
|
}[];
|
|
2248
|
-
allSectors?: string;
|
|
2249
2254
|
$organizations?: string;
|
|
2255
|
+
allSectors?: string;
|
|
2250
2256
|
queueDate?: string;
|
|
2251
2257
|
schema?: "eu_queue";
|
|
2252
2258
|
lastModified?: 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>;
|
|
@@ -2676,15 +2683,15 @@ export declare const queueDetailsUnionSchema: z.ZodDiscriminatedUnion<"schema",
|
|
|
2676
2683
|
type?: string;
|
|
2677
2684
|
subType?: string;
|
|
2678
2685
|
id?: string;
|
|
2679
|
-
headline?: string;
|
|
2680
2686
|
filingDate?: string;
|
|
2687
|
+
headline?: string;
|
|
2681
2688
|
publishedDate?: string;
|
|
2682
2689
|
}, {
|
|
2683
2690
|
type?: string;
|
|
2684
2691
|
subType?: string;
|
|
2685
2692
|
id?: string;
|
|
2686
|
-
headline?: string;
|
|
2687
2693
|
filingDate?: string;
|
|
2694
|
+
headline?: string;
|
|
2688
2695
|
publishedDate?: string;
|
|
2689
2696
|
}>, "many">>;
|
|
2690
2697
|
totalMw: z.ZodOptional<z.ZodNumber>;
|
|
@@ -2726,8 +2733,8 @@ export declare const queueDetailsUnionSchema: z.ZodDiscriminatedUnion<"schema",
|
|
|
2726
2733
|
role?: string;
|
|
2727
2734
|
ref?: string;
|
|
2728
2735
|
}[];
|
|
2729
|
-
allSectors?: string;
|
|
2730
2736
|
$organizations?: string;
|
|
2737
|
+
allSectors?: string;
|
|
2731
2738
|
reportDate?: string;
|
|
2732
2739
|
applicationTags?: {
|
|
2733
2740
|
identifier?: 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;
|
|
@@ -2830,8 +2838,8 @@ export declare const queueDetailsUnionSchema: z.ZodDiscriminatedUnion<"schema",
|
|
|
2830
2838
|
type?: string;
|
|
2831
2839
|
subType?: string;
|
|
2832
2840
|
id?: string;
|
|
2833
|
-
headline?: string;
|
|
2834
2841
|
filingDate?: string;
|
|
2842
|
+
headline?: string;
|
|
2835
2843
|
publishedDate?: string;
|
|
2836
2844
|
}[];
|
|
2837
2845
|
withdrawnDate?: string;
|
|
@@ -2872,8 +2880,8 @@ export declare const queueDetailsUnionSchema: z.ZodDiscriminatedUnion<"schema",
|
|
|
2872
2880
|
role?: string;
|
|
2873
2881
|
ref?: string;
|
|
2874
2882
|
}[];
|
|
2875
|
-
allSectors?: string;
|
|
2876
2883
|
$organizations?: string;
|
|
2884
|
+
allSectors?: string;
|
|
2877
2885
|
reportDate?: string;
|
|
2878
2886
|
applicationTags?: {
|
|
2879
2887
|
identifier?: 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;
|
|
@@ -2976,8 +2985,8 @@ export declare const queueDetailsUnionSchema: z.ZodDiscriminatedUnion<"schema",
|
|
|
2976
2985
|
type?: string;
|
|
2977
2986
|
subType?: string;
|
|
2978
2987
|
id?: string;
|
|
2979
|
-
headline?: string;
|
|
2980
2988
|
filingDate?: string;
|
|
2989
|
+
headline?: string;
|
|
2981
2990
|
publishedDate?: string;
|
|
2982
2991
|
}[];
|
|
2983
2992
|
withdrawnDate?: string;
|
|
@@ -3116,6 +3125,7 @@ declare const euQueueListWithSortSchema: z.ZodObject<{
|
|
|
3116
3125
|
role?: string;
|
|
3117
3126
|
ref?: string;
|
|
3118
3127
|
}[];
|
|
3128
|
+
allSectors?: string;
|
|
3119
3129
|
geo?: {
|
|
3120
3130
|
county?: {
|
|
3121
3131
|
lat?: number;
|
|
@@ -3135,7 +3145,6 @@ declare const euQueueListWithSortSchema: z.ZodObject<{
|
|
|
3135
3145
|
lon?: number;
|
|
3136
3146
|
};
|
|
3137
3147
|
};
|
|
3138
|
-
allSectors?: string;
|
|
3139
3148
|
queueDate?: string;
|
|
3140
3149
|
schema?: "eu_queue";
|
|
3141
3150
|
actualOperationalDate?: string;
|
|
@@ -3158,6 +3167,7 @@ declare const euQueueListWithSortSchema: z.ZodObject<{
|
|
|
3158
3167
|
role?: string;
|
|
3159
3168
|
ref?: string;
|
|
3160
3169
|
}[];
|
|
3170
|
+
allSectors?: string;
|
|
3161
3171
|
geo?: {
|
|
3162
3172
|
county?: {
|
|
3163
3173
|
lat?: number;
|
|
@@ -3177,7 +3187,6 @@ declare const euQueueListWithSortSchema: z.ZodObject<{
|
|
|
3177
3187
|
lon?: number;
|
|
3178
3188
|
};
|
|
3179
3189
|
};
|
|
3180
|
-
allSectors?: string;
|
|
3181
3190
|
queueDate?: string;
|
|
3182
3191
|
schema?: "eu_queue";
|
|
3183
3192
|
actualOperationalDate?: string;
|
|
@@ -3355,6 +3364,7 @@ declare const usQueueListWithSortSchema: z.ZodObject<{
|
|
|
3355
3364
|
role?: string;
|
|
3356
3365
|
ref?: string;
|
|
3357
3366
|
}[];
|
|
3367
|
+
allSectors?: string;
|
|
3358
3368
|
geo?: {
|
|
3359
3369
|
county?: {
|
|
3360
3370
|
lat?: number;
|
|
@@ -3374,7 +3384,6 @@ declare const usQueueListWithSortSchema: z.ZodObject<{
|
|
|
3374
3384
|
lon?: number;
|
|
3375
3385
|
};
|
|
3376
3386
|
};
|
|
3377
|
-
allSectors?: string;
|
|
3378
3387
|
applicationTags?: {
|
|
3379
3388
|
identifier?: string;
|
|
3380
3389
|
}[];
|
|
@@ -3411,6 +3420,7 @@ declare const usQueueListWithSortSchema: z.ZodObject<{
|
|
|
3411
3420
|
role?: string;
|
|
3412
3421
|
ref?: string;
|
|
3413
3422
|
}[];
|
|
3423
|
+
allSectors?: string;
|
|
3414
3424
|
geo?: {
|
|
3415
3425
|
county?: {
|
|
3416
3426
|
lat?: number;
|
|
@@ -3430,7 +3440,6 @@ declare const usQueueListWithSortSchema: z.ZodObject<{
|
|
|
3430
3440
|
lon?: number;
|
|
3431
3441
|
};
|
|
3432
3442
|
};
|
|
3433
|
-
allSectors?: string;
|
|
3434
3443
|
applicationTags?: {
|
|
3435
3444
|
identifier?: string;
|
|
3436
3445
|
}[];
|
|
@@ -3582,6 +3591,7 @@ declare const queueListSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3582
3591
|
role?: string;
|
|
3583
3592
|
ref?: string;
|
|
3584
3593
|
}[];
|
|
3594
|
+
allSectors?: string;
|
|
3585
3595
|
geo?: {
|
|
3586
3596
|
county?: {
|
|
3587
3597
|
lat?: number;
|
|
@@ -3601,7 +3611,6 @@ declare const queueListSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3601
3611
|
lon?: number;
|
|
3602
3612
|
};
|
|
3603
3613
|
};
|
|
3604
|
-
allSectors?: string;
|
|
3605
3614
|
queueDate?: string;
|
|
3606
3615
|
schema?: "eu_queue";
|
|
3607
3616
|
actualOperationalDate?: string;
|
|
@@ -3624,6 +3633,7 @@ declare const queueListSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3624
3633
|
role?: string;
|
|
3625
3634
|
ref?: string;
|
|
3626
3635
|
}[];
|
|
3636
|
+
allSectors?: string;
|
|
3627
3637
|
geo?: {
|
|
3628
3638
|
county?: {
|
|
3629
3639
|
lat?: number;
|
|
@@ -3643,7 +3653,6 @@ declare const queueListSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3643
3653
|
lon?: number;
|
|
3644
3654
|
};
|
|
3645
3655
|
};
|
|
3646
|
-
allSectors?: string;
|
|
3647
3656
|
queueDate?: string;
|
|
3648
3657
|
schema?: "eu_queue";
|
|
3649
3658
|
actualOperationalDate?: string;
|
|
@@ -3820,6 +3829,7 @@ declare const queueListSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3820
3829
|
role?: string;
|
|
3821
3830
|
ref?: string;
|
|
3822
3831
|
}[];
|
|
3832
|
+
allSectors?: string;
|
|
3823
3833
|
geo?: {
|
|
3824
3834
|
county?: {
|
|
3825
3835
|
lat?: number;
|
|
@@ -3839,7 +3849,6 @@ declare const queueListSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3839
3849
|
lon?: number;
|
|
3840
3850
|
};
|
|
3841
3851
|
};
|
|
3842
|
-
allSectors?: string;
|
|
3843
3852
|
applicationTags?: {
|
|
3844
3853
|
identifier?: string;
|
|
3845
3854
|
}[];
|
|
@@ -3876,6 +3885,7 @@ declare const queueListSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3876
3885
|
role?: string;
|
|
3877
3886
|
ref?: string;
|
|
3878
3887
|
}[];
|
|
3888
|
+
allSectors?: string;
|
|
3879
3889
|
geo?: {
|
|
3880
3890
|
county?: {
|
|
3881
3891
|
lat?: number;
|
|
@@ -3895,7 +3905,6 @@ declare const queueListSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3895
3905
|
lon?: number;
|
|
3896
3906
|
};
|
|
3897
3907
|
};
|
|
3898
|
-
allSectors?: string;
|
|
3899
3908
|
applicationTags?: {
|
|
3900
3909
|
identifier?: string;
|
|
3901
3910
|
}[];
|
|
@@ -4047,6 +4056,7 @@ export declare const queueListUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.
|
|
|
4047
4056
|
role?: string;
|
|
4048
4057
|
ref?: string;
|
|
4049
4058
|
}[];
|
|
4059
|
+
allSectors?: string;
|
|
4050
4060
|
geo?: {
|
|
4051
4061
|
county?: {
|
|
4052
4062
|
lat?: number;
|
|
@@ -4066,7 +4076,6 @@ export declare const queueListUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.
|
|
|
4066
4076
|
lon?: number;
|
|
4067
4077
|
};
|
|
4068
4078
|
};
|
|
4069
|
-
allSectors?: string;
|
|
4070
4079
|
queueDate?: string;
|
|
4071
4080
|
schema?: "eu_queue";
|
|
4072
4081
|
actualOperationalDate?: string;
|
|
@@ -4089,6 +4098,7 @@ export declare const queueListUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.
|
|
|
4089
4098
|
role?: string;
|
|
4090
4099
|
ref?: string;
|
|
4091
4100
|
}[];
|
|
4101
|
+
allSectors?: string;
|
|
4092
4102
|
geo?: {
|
|
4093
4103
|
county?: {
|
|
4094
4104
|
lat?: number;
|
|
@@ -4108,7 +4118,6 @@ export declare const queueListUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.
|
|
|
4108
4118
|
lon?: number;
|
|
4109
4119
|
};
|
|
4110
4120
|
};
|
|
4111
|
-
allSectors?: string;
|
|
4112
4121
|
queueDate?: string;
|
|
4113
4122
|
schema?: "eu_queue";
|
|
4114
4123
|
actualOperationalDate?: string;
|
|
@@ -4285,6 +4294,7 @@ export declare const queueListUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.
|
|
|
4285
4294
|
role?: string;
|
|
4286
4295
|
ref?: string;
|
|
4287
4296
|
}[];
|
|
4297
|
+
allSectors?: string;
|
|
4288
4298
|
geo?: {
|
|
4289
4299
|
county?: {
|
|
4290
4300
|
lat?: number;
|
|
@@ -4304,7 +4314,6 @@ export declare const queueListUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.
|
|
|
4304
4314
|
lon?: number;
|
|
4305
4315
|
};
|
|
4306
4316
|
};
|
|
4307
|
-
allSectors?: string;
|
|
4308
4317
|
applicationTags?: {
|
|
4309
4318
|
identifier?: string;
|
|
4310
4319
|
}[];
|
|
@@ -4341,6 +4350,7 @@ export declare const queueListUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.
|
|
|
4341
4350
|
role?: string;
|
|
4342
4351
|
ref?: string;
|
|
4343
4352
|
}[];
|
|
4353
|
+
allSectors?: string;
|
|
4344
4354
|
geo?: {
|
|
4345
4355
|
county?: {
|
|
4346
4356
|
lat?: number;
|
|
@@ -4360,7 +4370,6 @@ export declare const queueListUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.
|
|
|
4360
4370
|
lon?: number;
|
|
4361
4371
|
};
|
|
4362
4372
|
};
|
|
4363
|
-
allSectors?: string;
|
|
4364
4373
|
applicationTags?: {
|
|
4365
4374
|
identifier?: string;
|
|
4366
4375
|
}[];
|
|
@@ -4509,6 +4518,7 @@ export declare const queueListBaseUnionSchema: z.ZodDiscriminatedUnion<"schema",
|
|
|
4509
4518
|
role?: string;
|
|
4510
4519
|
ref?: string;
|
|
4511
4520
|
}[];
|
|
4521
|
+
allSectors?: string;
|
|
4512
4522
|
geo?: {
|
|
4513
4523
|
county?: {
|
|
4514
4524
|
lat?: number;
|
|
@@ -4528,7 +4538,6 @@ export declare const queueListBaseUnionSchema: z.ZodDiscriminatedUnion<"schema",
|
|
|
4528
4538
|
lon?: number;
|
|
4529
4539
|
};
|
|
4530
4540
|
};
|
|
4531
|
-
allSectors?: string;
|
|
4532
4541
|
queueDate?: string;
|
|
4533
4542
|
schema?: "eu_queue";
|
|
4534
4543
|
actualOperationalDate?: string;
|
|
@@ -4550,6 +4559,7 @@ export declare const queueListBaseUnionSchema: z.ZodDiscriminatedUnion<"schema",
|
|
|
4550
4559
|
role?: string;
|
|
4551
4560
|
ref?: string;
|
|
4552
4561
|
}[];
|
|
4562
|
+
allSectors?: string;
|
|
4553
4563
|
geo?: {
|
|
4554
4564
|
county?: {
|
|
4555
4565
|
lat?: number;
|
|
@@ -4569,7 +4579,6 @@ export declare const queueListBaseUnionSchema: z.ZodDiscriminatedUnion<"schema",
|
|
|
4569
4579
|
lon?: number;
|
|
4570
4580
|
};
|
|
4571
4581
|
};
|
|
4572
|
-
allSectors?: string;
|
|
4573
4582
|
queueDate?: string;
|
|
4574
4583
|
schema?: "eu_queue";
|
|
4575
4584
|
actualOperationalDate?: string;
|
|
@@ -4743,6 +4752,7 @@ export declare const queueListBaseUnionSchema: z.ZodDiscriminatedUnion<"schema",
|
|
|
4743
4752
|
role?: string;
|
|
4744
4753
|
ref?: string;
|
|
4745
4754
|
}[];
|
|
4755
|
+
allSectors?: string;
|
|
4746
4756
|
geo?: {
|
|
4747
4757
|
county?: {
|
|
4748
4758
|
lat?: number;
|
|
@@ -4762,7 +4772,6 @@ export declare const queueListBaseUnionSchema: z.ZodDiscriminatedUnion<"schema",
|
|
|
4762
4772
|
lon?: number;
|
|
4763
4773
|
};
|
|
4764
4774
|
};
|
|
4765
|
-
allSectors?: string;
|
|
4766
4775
|
applicationTags?: {
|
|
4767
4776
|
identifier?: string;
|
|
4768
4777
|
}[];
|
|
@@ -4798,6 +4807,7 @@ export declare const queueListBaseUnionSchema: z.ZodDiscriminatedUnion<"schema",
|
|
|
4798
4807
|
role?: string;
|
|
4799
4808
|
ref?: string;
|
|
4800
4809
|
}[];
|
|
4810
|
+
allSectors?: string;
|
|
4801
4811
|
geo?: {
|
|
4802
4812
|
county?: {
|
|
4803
4813
|
lat?: number;
|
|
@@ -4817,7 +4827,6 @@ export declare const queueListBaseUnionSchema: z.ZodDiscriminatedUnion<"schema",
|
|
|
4817
4827
|
lon?: number;
|
|
4818
4828
|
};
|
|
4819
4829
|
};
|
|
4820
|
-
allSectors?: string;
|
|
4821
4830
|
applicationTags?: {
|
|
4822
4831
|
identifier?: string;
|
|
4823
4832
|
}[];
|
|
@@ -5023,6 +5032,11 @@ export declare const euQueueAPISchema: z.ZodObject<{
|
|
|
5023
5032
|
role?: string;
|
|
5024
5033
|
ref?: string;
|
|
5025
5034
|
}[];
|
|
5035
|
+
$organizations?: string;
|
|
5036
|
+
allSectors?: string;
|
|
5037
|
+
audiences?: {
|
|
5038
|
+
identifier?: string;
|
|
5039
|
+
}[];
|
|
5026
5040
|
geo?: {
|
|
5027
5041
|
county?: {
|
|
5028
5042
|
lat?: number;
|
|
@@ -5042,12 +5056,7 @@ export declare const euQueueAPISchema: z.ZodObject<{
|
|
|
5042
5056
|
lon?: number;
|
|
5043
5057
|
};
|
|
5044
5058
|
};
|
|
5045
|
-
audiences?: {
|
|
5046
|
-
identifier?: string;
|
|
5047
|
-
}[];
|
|
5048
5059
|
totals?: Record<string, number>;
|
|
5049
|
-
allSectors?: string;
|
|
5050
|
-
$organizations?: string;
|
|
5051
5060
|
reportDate?: string;
|
|
5052
5061
|
queueDate?: string;
|
|
5053
5062
|
schema?: "eu_queue";
|
|
@@ -5097,6 +5106,11 @@ export declare const euQueueAPISchema: z.ZodObject<{
|
|
|
5097
5106
|
role?: string;
|
|
5098
5107
|
ref?: string;
|
|
5099
5108
|
}[];
|
|
5109
|
+
$organizations?: string;
|
|
5110
|
+
allSectors?: string;
|
|
5111
|
+
audiences?: {
|
|
5112
|
+
identifier?: string;
|
|
5113
|
+
}[];
|
|
5100
5114
|
geo?: {
|
|
5101
5115
|
county?: {
|
|
5102
5116
|
lat?: number;
|
|
@@ -5116,12 +5130,7 @@ export declare const euQueueAPISchema: z.ZodObject<{
|
|
|
5116
5130
|
lon?: number;
|
|
5117
5131
|
};
|
|
5118
5132
|
};
|
|
5119
|
-
audiences?: {
|
|
5120
|
-
identifier?: string;
|
|
5121
|
-
}[];
|
|
5122
5133
|
totals?: Record<string, number>;
|
|
5123
|
-
allSectors?: string;
|
|
5124
|
-
$organizations?: string;
|
|
5125
5134
|
reportDate?: string;
|
|
5126
5135
|
queueDate?: string;
|
|
5127
5136
|
schema?: "eu_queue";
|
|
@@ -5503,15 +5512,15 @@ export declare const usQueueAPISchema: z.ZodObject<{
|
|
|
5503
5512
|
type?: string;
|
|
5504
5513
|
subType?: string;
|
|
5505
5514
|
id?: string;
|
|
5506
|
-
headline?: string;
|
|
5507
5515
|
filingDate?: string;
|
|
5516
|
+
headline?: string;
|
|
5508
5517
|
publishedDate?: string;
|
|
5509
5518
|
}, {
|
|
5510
5519
|
type?: string;
|
|
5511
5520
|
subType?: string;
|
|
5512
5521
|
id?: string;
|
|
5513
|
-
headline?: string;
|
|
5514
5522
|
filingDate?: string;
|
|
5523
|
+
headline?: string;
|
|
5515
5524
|
publishedDate?: string;
|
|
5516
5525
|
}>, "many">>;
|
|
5517
5526
|
withdrawnDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
@@ -5725,6 +5734,11 @@ export declare const usQueueAPISchema: z.ZodObject<{
|
|
|
5725
5734
|
role?: string;
|
|
5726
5735
|
ref?: string;
|
|
5727
5736
|
}[];
|
|
5737
|
+
$organizations?: string;
|
|
5738
|
+
allSectors?: string;
|
|
5739
|
+
audiences?: {
|
|
5740
|
+
identifier?: string;
|
|
5741
|
+
}[];
|
|
5728
5742
|
geo?: {
|
|
5729
5743
|
county?: {
|
|
5730
5744
|
lat?: number;
|
|
@@ -5744,12 +5758,7 @@ export declare const usQueueAPISchema: z.ZodObject<{
|
|
|
5744
5758
|
lon?: number;
|
|
5745
5759
|
};
|
|
5746
5760
|
};
|
|
5747
|
-
audiences?: {
|
|
5748
|
-
identifier?: string;
|
|
5749
|
-
}[];
|
|
5750
5761
|
totals?: Record<string, number>;
|
|
5751
|
-
allSectors?: string;
|
|
5752
|
-
$organizations?: string;
|
|
5753
5762
|
reportDate?: string;
|
|
5754
5763
|
applicationTags?: {
|
|
5755
5764
|
identifier?: string;
|
|
@@ -5854,8 +5863,8 @@ export declare const usQueueAPISchema: z.ZodObject<{
|
|
|
5854
5863
|
type?: string;
|
|
5855
5864
|
subType?: string;
|
|
5856
5865
|
id?: string;
|
|
5857
|
-
headline?: string;
|
|
5858
5866
|
filingDate?: string;
|
|
5867
|
+
headline?: string;
|
|
5859
5868
|
publishedDate?: string;
|
|
5860
5869
|
}[];
|
|
5861
5870
|
withdrawnDate?: string;
|
|
@@ -5905,6 +5914,11 @@ export declare const usQueueAPISchema: z.ZodObject<{
|
|
|
5905
5914
|
role?: string;
|
|
5906
5915
|
ref?: string;
|
|
5907
5916
|
}[];
|
|
5917
|
+
$organizations?: string;
|
|
5918
|
+
allSectors?: string;
|
|
5919
|
+
audiences?: {
|
|
5920
|
+
identifier?: string;
|
|
5921
|
+
}[];
|
|
5908
5922
|
geo?: {
|
|
5909
5923
|
county?: {
|
|
5910
5924
|
lat?: number;
|
|
@@ -5924,12 +5938,7 @@ export declare const usQueueAPISchema: z.ZodObject<{
|
|
|
5924
5938
|
lon?: number;
|
|
5925
5939
|
};
|
|
5926
5940
|
};
|
|
5927
|
-
audiences?: {
|
|
5928
|
-
identifier?: string;
|
|
5929
|
-
}[];
|
|
5930
5941
|
totals?: Record<string, number>;
|
|
5931
|
-
allSectors?: string;
|
|
5932
|
-
$organizations?: string;
|
|
5933
5942
|
reportDate?: string;
|
|
5934
5943
|
applicationTags?: {
|
|
5935
5944
|
identifier?: string;
|
|
@@ -6034,8 +6043,8 @@ export declare const usQueueAPISchema: z.ZodObject<{
|
|
|
6034
6043
|
type?: string;
|
|
6035
6044
|
subType?: string;
|
|
6036
6045
|
id?: string;
|
|
6037
|
-
headline?: string;
|
|
6038
6046
|
filingDate?: string;
|
|
6047
|
+
headline?: string;
|
|
6039
6048
|
publishedDate?: string;
|
|
6040
6049
|
}[];
|
|
6041
6050
|
withdrawnDate?: string;
|
|
@@ -6226,6 +6235,11 @@ export declare const queueAPISchema: z.ZodUnion<[z.ZodObject<{
|
|
|
6226
6235
|
role?: string;
|
|
6227
6236
|
ref?: string;
|
|
6228
6237
|
}[];
|
|
6238
|
+
$organizations?: string;
|
|
6239
|
+
allSectors?: string;
|
|
6240
|
+
audiences?: {
|
|
6241
|
+
identifier?: string;
|
|
6242
|
+
}[];
|
|
6229
6243
|
geo?: {
|
|
6230
6244
|
county?: {
|
|
6231
6245
|
lat?: number;
|
|
@@ -6245,12 +6259,7 @@ export declare const queueAPISchema: z.ZodUnion<[z.ZodObject<{
|
|
|
6245
6259
|
lon?: number;
|
|
6246
6260
|
};
|
|
6247
6261
|
};
|
|
6248
|
-
audiences?: {
|
|
6249
|
-
identifier?: string;
|
|
6250
|
-
}[];
|
|
6251
6262
|
totals?: Record<string, number>;
|
|
6252
|
-
allSectors?: string;
|
|
6253
|
-
$organizations?: string;
|
|
6254
6263
|
reportDate?: string;
|
|
6255
6264
|
queueDate?: string;
|
|
6256
6265
|
schema?: "eu_queue";
|
|
@@ -6300,6 +6309,11 @@ export declare const queueAPISchema: z.ZodUnion<[z.ZodObject<{
|
|
|
6300
6309
|
role?: string;
|
|
6301
6310
|
ref?: string;
|
|
6302
6311
|
}[];
|
|
6312
|
+
$organizations?: string;
|
|
6313
|
+
allSectors?: string;
|
|
6314
|
+
audiences?: {
|
|
6315
|
+
identifier?: string;
|
|
6316
|
+
}[];
|
|
6303
6317
|
geo?: {
|
|
6304
6318
|
county?: {
|
|
6305
6319
|
lat?: number;
|
|
@@ -6319,12 +6333,7 @@ export declare const queueAPISchema: z.ZodUnion<[z.ZodObject<{
|
|
|
6319
6333
|
lon?: number;
|
|
6320
6334
|
};
|
|
6321
6335
|
};
|
|
6322
|
-
audiences?: {
|
|
6323
|
-
identifier?: string;
|
|
6324
|
-
}[];
|
|
6325
6336
|
totals?: Record<string, number>;
|
|
6326
|
-
allSectors?: string;
|
|
6327
|
-
$organizations?: string;
|
|
6328
6337
|
reportDate?: string;
|
|
6329
6338
|
queueDate?: string;
|
|
6330
6339
|
schema?: "eu_queue";
|
|
@@ -6705,15 +6714,15 @@ export declare const queueAPISchema: z.ZodUnion<[z.ZodObject<{
|
|
|
6705
6714
|
type?: string;
|
|
6706
6715
|
subType?: string;
|
|
6707
6716
|
id?: string;
|
|
6708
|
-
headline?: string;
|
|
6709
6717
|
filingDate?: string;
|
|
6718
|
+
headline?: string;
|
|
6710
6719
|
publishedDate?: string;
|
|
6711
6720
|
}, {
|
|
6712
6721
|
type?: string;
|
|
6713
6722
|
subType?: string;
|
|
6714
6723
|
id?: string;
|
|
6715
|
-
headline?: string;
|
|
6716
6724
|
filingDate?: string;
|
|
6725
|
+
headline?: string;
|
|
6717
6726
|
publishedDate?: string;
|
|
6718
6727
|
}>, "many">>;
|
|
6719
6728
|
withdrawnDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
@@ -6927,6 +6936,11 @@ export declare const queueAPISchema: z.ZodUnion<[z.ZodObject<{
|
|
|
6927
6936
|
role?: string;
|
|
6928
6937
|
ref?: string;
|
|
6929
6938
|
}[];
|
|
6939
|
+
$organizations?: string;
|
|
6940
|
+
allSectors?: string;
|
|
6941
|
+
audiences?: {
|
|
6942
|
+
identifier?: string;
|
|
6943
|
+
}[];
|
|
6930
6944
|
geo?: {
|
|
6931
6945
|
county?: {
|
|
6932
6946
|
lat?: number;
|
|
@@ -6946,12 +6960,7 @@ export declare const queueAPISchema: z.ZodUnion<[z.ZodObject<{
|
|
|
6946
6960
|
lon?: number;
|
|
6947
6961
|
};
|
|
6948
6962
|
};
|
|
6949
|
-
audiences?: {
|
|
6950
|
-
identifier?: string;
|
|
6951
|
-
}[];
|
|
6952
6963
|
totals?: Record<string, number>;
|
|
6953
|
-
allSectors?: string;
|
|
6954
|
-
$organizations?: string;
|
|
6955
6964
|
reportDate?: string;
|
|
6956
6965
|
applicationTags?: {
|
|
6957
6966
|
identifier?: string;
|
|
@@ -7056,8 +7065,8 @@ export declare const queueAPISchema: z.ZodUnion<[z.ZodObject<{
|
|
|
7056
7065
|
type?: string;
|
|
7057
7066
|
subType?: string;
|
|
7058
7067
|
id?: string;
|
|
7059
|
-
headline?: string;
|
|
7060
7068
|
filingDate?: string;
|
|
7069
|
+
headline?: string;
|
|
7061
7070
|
publishedDate?: string;
|
|
7062
7071
|
}[];
|
|
7063
7072
|
withdrawnDate?: string;
|
|
@@ -7107,6 +7116,11 @@ export declare const queueAPISchema: z.ZodUnion<[z.ZodObject<{
|
|
|
7107
7116
|
role?: string;
|
|
7108
7117
|
ref?: string;
|
|
7109
7118
|
}[];
|
|
7119
|
+
$organizations?: string;
|
|
7120
|
+
allSectors?: string;
|
|
7121
|
+
audiences?: {
|
|
7122
|
+
identifier?: string;
|
|
7123
|
+
}[];
|
|
7110
7124
|
geo?: {
|
|
7111
7125
|
county?: {
|
|
7112
7126
|
lat?: number;
|
|
@@ -7126,12 +7140,7 @@ export declare const queueAPISchema: z.ZodUnion<[z.ZodObject<{
|
|
|
7126
7140
|
lon?: number;
|
|
7127
7141
|
};
|
|
7128
7142
|
};
|
|
7129
|
-
audiences?: {
|
|
7130
|
-
identifier?: string;
|
|
7131
|
-
}[];
|
|
7132
7143
|
totals?: Record<string, number>;
|
|
7133
|
-
allSectors?: string;
|
|
7134
|
-
$organizations?: string;
|
|
7135
7144
|
reportDate?: string;
|
|
7136
7145
|
applicationTags?: {
|
|
7137
7146
|
identifier?: string;
|
|
@@ -7236,8 +7245,8 @@ export declare const queueAPISchema: z.ZodUnion<[z.ZodObject<{
|
|
|
7236
7245
|
type?: string;
|
|
7237
7246
|
subType?: string;
|
|
7238
7247
|
id?: string;
|
|
7239
|
-
headline?: string;
|
|
7240
7248
|
filingDate?: string;
|
|
7249
|
+
headline?: string;
|
|
7241
7250
|
publishedDate?: string;
|
|
7242
7251
|
}[];
|
|
7243
7252
|
withdrawnDate?: string;
|
|
@@ -7597,15 +7606,15 @@ export declare const queueAPIUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.Z
|
|
|
7597
7606
|
type?: string;
|
|
7598
7607
|
subType?: string;
|
|
7599
7608
|
id?: string;
|
|
7600
|
-
headline?: string;
|
|
7601
7609
|
filingDate?: string;
|
|
7610
|
+
headline?: string;
|
|
7602
7611
|
publishedDate?: string;
|
|
7603
7612
|
}, {
|
|
7604
7613
|
type?: string;
|
|
7605
7614
|
subType?: string;
|
|
7606
7615
|
id?: string;
|
|
7607
|
-
headline?: string;
|
|
7608
7616
|
filingDate?: string;
|
|
7617
|
+
headline?: string;
|
|
7609
7618
|
publishedDate?: string;
|
|
7610
7619
|
}>, "many">>;
|
|
7611
7620
|
withdrawnDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
@@ -7819,6 +7828,11 @@ export declare const queueAPIUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.Z
|
|
|
7819
7828
|
role?: string;
|
|
7820
7829
|
ref?: string;
|
|
7821
7830
|
}[];
|
|
7831
|
+
$organizations?: string;
|
|
7832
|
+
allSectors?: string;
|
|
7833
|
+
audiences?: {
|
|
7834
|
+
identifier?: string;
|
|
7835
|
+
}[];
|
|
7822
7836
|
geo?: {
|
|
7823
7837
|
county?: {
|
|
7824
7838
|
lat?: number;
|
|
@@ -7838,12 +7852,7 @@ export declare const queueAPIUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.Z
|
|
|
7838
7852
|
lon?: number;
|
|
7839
7853
|
};
|
|
7840
7854
|
};
|
|
7841
|
-
audiences?: {
|
|
7842
|
-
identifier?: string;
|
|
7843
|
-
}[];
|
|
7844
7855
|
totals?: Record<string, number>;
|
|
7845
|
-
allSectors?: string;
|
|
7846
|
-
$organizations?: string;
|
|
7847
7856
|
reportDate?: string;
|
|
7848
7857
|
applicationTags?: {
|
|
7849
7858
|
identifier?: string;
|
|
@@ -7948,8 +7957,8 @@ export declare const queueAPIUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.Z
|
|
|
7948
7957
|
type?: string;
|
|
7949
7958
|
subType?: string;
|
|
7950
7959
|
id?: string;
|
|
7951
|
-
headline?: string;
|
|
7952
7960
|
filingDate?: string;
|
|
7961
|
+
headline?: string;
|
|
7953
7962
|
publishedDate?: string;
|
|
7954
7963
|
}[];
|
|
7955
7964
|
withdrawnDate?: string;
|
|
@@ -7999,6 +8008,11 @@ export declare const queueAPIUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.Z
|
|
|
7999
8008
|
role?: string;
|
|
8000
8009
|
ref?: string;
|
|
8001
8010
|
}[];
|
|
8011
|
+
$organizations?: string;
|
|
8012
|
+
allSectors?: string;
|
|
8013
|
+
audiences?: {
|
|
8014
|
+
identifier?: string;
|
|
8015
|
+
}[];
|
|
8002
8016
|
geo?: {
|
|
8003
8017
|
county?: {
|
|
8004
8018
|
lat?: number;
|
|
@@ -8018,12 +8032,7 @@ export declare const queueAPIUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.Z
|
|
|
8018
8032
|
lon?: number;
|
|
8019
8033
|
};
|
|
8020
8034
|
};
|
|
8021
|
-
audiences?: {
|
|
8022
|
-
identifier?: string;
|
|
8023
|
-
}[];
|
|
8024
8035
|
totals?: Record<string, number>;
|
|
8025
|
-
allSectors?: string;
|
|
8026
|
-
$organizations?: string;
|
|
8027
8036
|
reportDate?: string;
|
|
8028
8037
|
applicationTags?: {
|
|
8029
8038
|
identifier?: string;
|
|
@@ -8128,8 +8137,8 @@ export declare const queueAPIUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.Z
|
|
|
8128
8137
|
type?: string;
|
|
8129
8138
|
subType?: string;
|
|
8130
8139
|
id?: string;
|
|
8131
|
-
headline?: string;
|
|
8132
8140
|
filingDate?: string;
|
|
8141
|
+
headline?: string;
|
|
8133
8142
|
publishedDate?: string;
|
|
8134
8143
|
}[];
|
|
8135
8144
|
withdrawnDate?: string;
|
|
@@ -8319,6 +8328,11 @@ export declare const queueAPIUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.Z
|
|
|
8319
8328
|
role?: string;
|
|
8320
8329
|
ref?: string;
|
|
8321
8330
|
}[];
|
|
8331
|
+
$organizations?: string;
|
|
8332
|
+
allSectors?: string;
|
|
8333
|
+
audiences?: {
|
|
8334
|
+
identifier?: string;
|
|
8335
|
+
}[];
|
|
8322
8336
|
geo?: {
|
|
8323
8337
|
county?: {
|
|
8324
8338
|
lat?: number;
|
|
@@ -8338,12 +8352,7 @@ export declare const queueAPIUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.Z
|
|
|
8338
8352
|
lon?: number;
|
|
8339
8353
|
};
|
|
8340
8354
|
};
|
|
8341
|
-
audiences?: {
|
|
8342
|
-
identifier?: string;
|
|
8343
|
-
}[];
|
|
8344
8355
|
totals?: Record<string, number>;
|
|
8345
|
-
allSectors?: string;
|
|
8346
|
-
$organizations?: string;
|
|
8347
8356
|
reportDate?: string;
|
|
8348
8357
|
queueDate?: string;
|
|
8349
8358
|
schema?: "eu_queue";
|
|
@@ -8393,6 +8402,11 @@ export declare const queueAPIUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.Z
|
|
|
8393
8402
|
role?: string;
|
|
8394
8403
|
ref?: string;
|
|
8395
8404
|
}[];
|
|
8405
|
+
$organizations?: string;
|
|
8406
|
+
allSectors?: string;
|
|
8407
|
+
audiences?: {
|
|
8408
|
+
identifier?: string;
|
|
8409
|
+
}[];
|
|
8396
8410
|
geo?: {
|
|
8397
8411
|
county?: {
|
|
8398
8412
|
lat?: number;
|
|
@@ -8412,12 +8426,7 @@ export declare const queueAPIUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.Z
|
|
|
8412
8426
|
lon?: number;
|
|
8413
8427
|
};
|
|
8414
8428
|
};
|
|
8415
|
-
audiences?: {
|
|
8416
|
-
identifier?: string;
|
|
8417
|
-
}[];
|
|
8418
8429
|
totals?: Record<string, number>;
|
|
8419
|
-
allSectors?: string;
|
|
8420
|
-
$organizations?: string;
|
|
8421
8430
|
reportDate?: string;
|
|
8422
8431
|
queueDate?: string;
|
|
8423
8432
|
schema?: "eu_queue";
|
|
@@ -8600,6 +8609,7 @@ declare const euQueueExportSchema: z.ZodObject<{
|
|
|
8600
8609
|
role?: string;
|
|
8601
8610
|
ref?: string;
|
|
8602
8611
|
}[];
|
|
8612
|
+
allSectors?: string;
|
|
8603
8613
|
geo?: {
|
|
8604
8614
|
county?: {
|
|
8605
8615
|
lat?: number;
|
|
@@ -8619,7 +8629,6 @@ declare const euQueueExportSchema: z.ZodObject<{
|
|
|
8619
8629
|
lon?: number;
|
|
8620
8630
|
};
|
|
8621
8631
|
};
|
|
8622
|
-
allSectors?: string;
|
|
8623
8632
|
queueDate?: string;
|
|
8624
8633
|
schema?: "eu_queue";
|
|
8625
8634
|
actualOperationalDate?: string;
|
|
@@ -8646,6 +8655,7 @@ declare const euQueueExportSchema: z.ZodObject<{
|
|
|
8646
8655
|
role?: string;
|
|
8647
8656
|
ref?: string;
|
|
8648
8657
|
}[];
|
|
8658
|
+
allSectors?: string;
|
|
8649
8659
|
geo?: {
|
|
8650
8660
|
county?: {
|
|
8651
8661
|
lat?: number;
|
|
@@ -8665,7 +8675,6 @@ declare const euQueueExportSchema: z.ZodObject<{
|
|
|
8665
8675
|
lon?: number;
|
|
8666
8676
|
};
|
|
8667
8677
|
};
|
|
8668
|
-
allSectors?: string;
|
|
8669
8678
|
queueDate?: string;
|
|
8670
8679
|
schema?: "eu_queue";
|
|
8671
8680
|
actualOperationalDate?: string;
|
|
@@ -8843,6 +8852,7 @@ declare const usQueueExportSchema: z.ZodObject<{
|
|
|
8843
8852
|
role?: string;
|
|
8844
8853
|
ref?: string;
|
|
8845
8854
|
}[];
|
|
8855
|
+
allSectors?: string;
|
|
8846
8856
|
geo?: {
|
|
8847
8857
|
county?: {
|
|
8848
8858
|
lat?: number;
|
|
@@ -8862,7 +8872,6 @@ declare const usQueueExportSchema: z.ZodObject<{
|
|
|
8862
8872
|
lon?: number;
|
|
8863
8873
|
};
|
|
8864
8874
|
};
|
|
8865
|
-
allSectors?: string;
|
|
8866
8875
|
applicationTags?: {
|
|
8867
8876
|
identifier?: string;
|
|
8868
8877
|
}[];
|
|
@@ -8899,6 +8908,7 @@ declare const usQueueExportSchema: z.ZodObject<{
|
|
|
8899
8908
|
role?: string;
|
|
8900
8909
|
ref?: string;
|
|
8901
8910
|
}[];
|
|
8911
|
+
allSectors?: string;
|
|
8902
8912
|
geo?: {
|
|
8903
8913
|
county?: {
|
|
8904
8914
|
lat?: number;
|
|
@@ -8918,7 +8928,6 @@ declare const usQueueExportSchema: z.ZodObject<{
|
|
|
8918
8928
|
lon?: number;
|
|
8919
8929
|
};
|
|
8920
8930
|
};
|
|
8921
|
-
allSectors?: string;
|
|
8922
8931
|
applicationTags?: {
|
|
8923
8932
|
identifier?: string;
|
|
8924
8933
|
}[];
|
|
@@ -9085,6 +9094,7 @@ export declare const queueExportUnionSchema: z.ZodDiscriminatedUnion<"schema", [
|
|
|
9085
9094
|
role?: string;
|
|
9086
9095
|
ref?: string;
|
|
9087
9096
|
}[];
|
|
9097
|
+
allSectors?: string;
|
|
9088
9098
|
geo?: {
|
|
9089
9099
|
county?: {
|
|
9090
9100
|
lat?: number;
|
|
@@ -9104,7 +9114,6 @@ export declare const queueExportUnionSchema: z.ZodDiscriminatedUnion<"schema", [
|
|
|
9104
9114
|
lon?: number;
|
|
9105
9115
|
};
|
|
9106
9116
|
};
|
|
9107
|
-
allSectors?: string;
|
|
9108
9117
|
queueDate?: string;
|
|
9109
9118
|
schema?: "eu_queue";
|
|
9110
9119
|
actualOperationalDate?: string;
|
|
@@ -9131,6 +9140,7 @@ export declare const queueExportUnionSchema: z.ZodDiscriminatedUnion<"schema", [
|
|
|
9131
9140
|
role?: string;
|
|
9132
9141
|
ref?: string;
|
|
9133
9142
|
}[];
|
|
9143
|
+
allSectors?: string;
|
|
9134
9144
|
geo?: {
|
|
9135
9145
|
county?: {
|
|
9136
9146
|
lat?: number;
|
|
@@ -9150,7 +9160,6 @@ export declare const queueExportUnionSchema: z.ZodDiscriminatedUnion<"schema", [
|
|
|
9150
9160
|
lon?: number;
|
|
9151
9161
|
};
|
|
9152
9162
|
};
|
|
9153
|
-
allSectors?: string;
|
|
9154
9163
|
queueDate?: string;
|
|
9155
9164
|
schema?: "eu_queue";
|
|
9156
9165
|
actualOperationalDate?: string;
|
|
@@ -9327,6 +9336,7 @@ export declare const queueExportUnionSchema: z.ZodDiscriminatedUnion<"schema", [
|
|
|
9327
9336
|
role?: string;
|
|
9328
9337
|
ref?: string;
|
|
9329
9338
|
}[];
|
|
9339
|
+
allSectors?: string;
|
|
9330
9340
|
geo?: {
|
|
9331
9341
|
county?: {
|
|
9332
9342
|
lat?: number;
|
|
@@ -9346,7 +9356,6 @@ export declare const queueExportUnionSchema: z.ZodDiscriminatedUnion<"schema", [
|
|
|
9346
9356
|
lon?: number;
|
|
9347
9357
|
};
|
|
9348
9358
|
};
|
|
9349
|
-
allSectors?: string;
|
|
9350
9359
|
applicationTags?: {
|
|
9351
9360
|
identifier?: string;
|
|
9352
9361
|
}[];
|
|
@@ -9383,6 +9392,7 @@ export declare const queueExportUnionSchema: z.ZodDiscriminatedUnion<"schema", [
|
|
|
9383
9392
|
role?: string;
|
|
9384
9393
|
ref?: string;
|
|
9385
9394
|
}[];
|
|
9395
|
+
allSectors?: string;
|
|
9386
9396
|
geo?: {
|
|
9387
9397
|
county?: {
|
|
9388
9398
|
lat?: number;
|
|
@@ -9402,7 +9412,6 @@ export declare const queueExportUnionSchema: z.ZodDiscriminatedUnion<"schema", [
|
|
|
9402
9412
|
lon?: number;
|
|
9403
9413
|
};
|
|
9404
9414
|
};
|
|
9405
|
-
allSectors?: string;
|
|
9406
9415
|
applicationTags?: {
|
|
9407
9416
|
identifier?: string;
|
|
9408
9417
|
}[];
|