@new-project-media/client-frontends-shared-types 2.0.1 → 2.0.3
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.
|
@@ -1,19 +1,105 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
-
declare const
|
|
2
|
+
declare const baseQueueSchema: z.ZodObject<{
|
|
3
|
+
id: z.ZodString;
|
|
4
|
+
schema: z.ZodString;
|
|
5
|
+
}, "strip", z.ZodTypeAny, {
|
|
6
|
+
id?: string;
|
|
7
|
+
schema?: string;
|
|
8
|
+
}, {
|
|
9
|
+
id?: string;
|
|
10
|
+
schema?: string;
|
|
11
|
+
}>;
|
|
12
|
+
declare const euQueueListSchema: z.ZodObject<{
|
|
3
13
|
id: z.ZodString;
|
|
4
14
|
} & {
|
|
5
15
|
schema: z.ZodLiteral<"eu_queue">;
|
|
6
16
|
} & {
|
|
7
|
-
|
|
17
|
+
actualOperationalDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
8
18
|
allSectors: z.ZodOptional<z.ZodString>;
|
|
9
19
|
applicationId: z.ZodOptional<z.ZodString>;
|
|
10
|
-
applicationStatus: z.ZodOptional<z.ZodString>;
|
|
11
20
|
country: z.ZodOptional<z.ZodString>;
|
|
21
|
+
geo: z.ZodOptional<z.ZodObject<{
|
|
22
|
+
defaultValue: z.ZodOptional<z.ZodString>;
|
|
23
|
+
default: z.ZodOptional<z.ZodObject<{
|
|
24
|
+
lon: z.ZodNumber;
|
|
25
|
+
lat: z.ZodNumber;
|
|
26
|
+
}, "strip", z.ZodTypeAny, {
|
|
27
|
+
lat?: number;
|
|
28
|
+
lon?: number;
|
|
29
|
+
}, {
|
|
30
|
+
lat?: number;
|
|
31
|
+
lon?: number;
|
|
32
|
+
}>>;
|
|
33
|
+
project: z.ZodOptional<z.ZodObject<{
|
|
34
|
+
lon: z.ZodNumber;
|
|
35
|
+
lat: z.ZodNumber;
|
|
36
|
+
}, "strip", z.ZodTypeAny, {
|
|
37
|
+
lat?: number;
|
|
38
|
+
lon?: number;
|
|
39
|
+
}, {
|
|
40
|
+
lat?: number;
|
|
41
|
+
lon?: number;
|
|
42
|
+
}>>;
|
|
43
|
+
county: z.ZodOptional<z.ZodObject<{
|
|
44
|
+
lon: z.ZodNumber;
|
|
45
|
+
lat: z.ZodNumber;
|
|
46
|
+
}, "strip", z.ZodTypeAny, {
|
|
47
|
+
lat?: number;
|
|
48
|
+
lon?: number;
|
|
49
|
+
}, {
|
|
50
|
+
lat?: number;
|
|
51
|
+
lon?: number;
|
|
52
|
+
}>>;
|
|
53
|
+
facility: z.ZodOptional<z.ZodObject<{
|
|
54
|
+
lon: z.ZodNumber;
|
|
55
|
+
lat: z.ZodNumber;
|
|
56
|
+
}, "strip", z.ZodTypeAny, {
|
|
57
|
+
lat?: number;
|
|
58
|
+
lon?: number;
|
|
59
|
+
}, {
|
|
60
|
+
lat?: number;
|
|
61
|
+
lon?: number;
|
|
62
|
+
}>>;
|
|
63
|
+
}, "strip", z.ZodTypeAny, {
|
|
64
|
+
county?: {
|
|
65
|
+
lat?: number;
|
|
66
|
+
lon?: number;
|
|
67
|
+
};
|
|
68
|
+
defaultValue?: string;
|
|
69
|
+
default?: {
|
|
70
|
+
lat?: number;
|
|
71
|
+
lon?: number;
|
|
72
|
+
};
|
|
73
|
+
project?: {
|
|
74
|
+
lat?: number;
|
|
75
|
+
lon?: number;
|
|
76
|
+
};
|
|
77
|
+
facility?: {
|
|
78
|
+
lat?: number;
|
|
79
|
+
lon?: number;
|
|
80
|
+
};
|
|
81
|
+
}, {
|
|
82
|
+
county?: {
|
|
83
|
+
lat?: number;
|
|
84
|
+
lon?: number;
|
|
85
|
+
};
|
|
86
|
+
defaultValue?: string;
|
|
87
|
+
default?: {
|
|
88
|
+
lat?: number;
|
|
89
|
+
lon?: number;
|
|
90
|
+
};
|
|
91
|
+
project?: {
|
|
92
|
+
lat?: number;
|
|
93
|
+
lon?: number;
|
|
94
|
+
};
|
|
95
|
+
facility?: {
|
|
96
|
+
lat?: number;
|
|
97
|
+
lon?: number;
|
|
98
|
+
};
|
|
99
|
+
}>>;
|
|
12
100
|
lastModified: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
13
101
|
localCounty: z.ZodOptional<z.ZodString>;
|
|
14
102
|
localState: z.ZodOptional<z.ZodString>;
|
|
15
|
-
localTown: z.ZodOptional<z.ZodString>;
|
|
16
|
-
mwNet: z.ZodOptional<z.ZodNumber>;
|
|
17
103
|
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
18
104
|
identifier: z.ZodString;
|
|
19
105
|
id: z.ZodString;
|
|
@@ -31,10 +117,10 @@ declare const euQueueDetailsSchema: z.ZodObject<{
|
|
|
31
117
|
role?: string;
|
|
32
118
|
ref?: string;
|
|
33
119
|
}>, "many">>;
|
|
120
|
+
plannedOperationalDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
34
121
|
projectName: z.ZodOptional<z.ZodString>;
|
|
35
122
|
queueDataset: z.ZodOptional<z.ZodString>;
|
|
36
123
|
queueDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
37
|
-
refId: z.ZodOptional<z.ZodString>;
|
|
38
124
|
sectors: z.ZodArray<z.ZodObject<{
|
|
39
125
|
identifier: z.ZodString;
|
|
40
126
|
id: z.ZodString;
|
|
@@ -46,10 +132,7 @@ declare const euQueueDetailsSchema: z.ZodObject<{
|
|
|
46
132
|
identifier?: string;
|
|
47
133
|
}>, "many">;
|
|
48
134
|
status: z.ZodOptional<z.ZodString>;
|
|
49
|
-
storageCapacity: z.ZodOptional<z.ZodNumber>;
|
|
50
|
-
technology: z.ZodOptional<z.ZodString>;
|
|
51
135
|
totalMw: z.ZodOptional<z.ZodNumber>;
|
|
52
|
-
windFarmName: z.ZodOptional<z.ZodString>;
|
|
53
136
|
}, "strict", z.ZodTypeAny, {
|
|
54
137
|
sectors?: {
|
|
55
138
|
id?: string;
|
|
@@ -66,22 +149,35 @@ declare const euQueueDetailsSchema: z.ZodObject<{
|
|
|
66
149
|
role?: string;
|
|
67
150
|
ref?: string;
|
|
68
151
|
}[];
|
|
152
|
+
geo?: {
|
|
153
|
+
county?: {
|
|
154
|
+
lat?: number;
|
|
155
|
+
lon?: number;
|
|
156
|
+
};
|
|
157
|
+
defaultValue?: string;
|
|
158
|
+
default?: {
|
|
159
|
+
lat?: number;
|
|
160
|
+
lon?: number;
|
|
161
|
+
};
|
|
162
|
+
project?: {
|
|
163
|
+
lat?: number;
|
|
164
|
+
lon?: number;
|
|
165
|
+
};
|
|
166
|
+
facility?: {
|
|
167
|
+
lat?: number;
|
|
168
|
+
lon?: number;
|
|
169
|
+
};
|
|
170
|
+
};
|
|
69
171
|
allSectors?: string;
|
|
70
|
-
$organizations?: string;
|
|
71
172
|
queueDate?: string;
|
|
72
173
|
schema?: "eu_queue";
|
|
73
|
-
|
|
174
|
+
actualOperationalDate?: string;
|
|
74
175
|
lastModified?: string;
|
|
75
176
|
localCounty?: string;
|
|
76
177
|
localState?: string;
|
|
178
|
+
plannedOperationalDate?: string;
|
|
77
179
|
projectName?: string;
|
|
78
180
|
totalMw?: number;
|
|
79
|
-
localTown?: string;
|
|
80
|
-
mwNet?: number;
|
|
81
|
-
refId?: string;
|
|
82
|
-
storageCapacity?: number;
|
|
83
|
-
technology?: string;
|
|
84
|
-
windFarmName?: string;
|
|
85
181
|
}, {
|
|
86
182
|
sectors?: {
|
|
87
183
|
id?: string;
|
|
@@ -98,32 +194,45 @@ declare const euQueueDetailsSchema: z.ZodObject<{
|
|
|
98
194
|
role?: string;
|
|
99
195
|
ref?: string;
|
|
100
196
|
}[];
|
|
197
|
+
geo?: {
|
|
198
|
+
county?: {
|
|
199
|
+
lat?: number;
|
|
200
|
+
lon?: number;
|
|
201
|
+
};
|
|
202
|
+
defaultValue?: string;
|
|
203
|
+
default?: {
|
|
204
|
+
lat?: number;
|
|
205
|
+
lon?: number;
|
|
206
|
+
};
|
|
207
|
+
project?: {
|
|
208
|
+
lat?: number;
|
|
209
|
+
lon?: number;
|
|
210
|
+
};
|
|
211
|
+
facility?: {
|
|
212
|
+
lat?: number;
|
|
213
|
+
lon?: number;
|
|
214
|
+
};
|
|
215
|
+
};
|
|
101
216
|
allSectors?: string;
|
|
102
|
-
$organizations?: string;
|
|
103
217
|
queueDate?: string;
|
|
104
218
|
schema?: "eu_queue";
|
|
105
|
-
|
|
219
|
+
actualOperationalDate?: string;
|
|
106
220
|
lastModified?: string;
|
|
107
221
|
localCounty?: string;
|
|
108
222
|
localState?: string;
|
|
223
|
+
plannedOperationalDate?: string;
|
|
109
224
|
projectName?: string;
|
|
110
225
|
totalMw?: number;
|
|
111
|
-
localTown?: string;
|
|
112
|
-
mwNet?: number;
|
|
113
|
-
refId?: string;
|
|
114
|
-
storageCapacity?: number;
|
|
115
|
-
technology?: string;
|
|
116
|
-
windFarmName?: string;
|
|
117
226
|
}>;
|
|
118
|
-
declare const
|
|
227
|
+
declare const usQueueListSchema: z.ZodObject<{
|
|
119
228
|
id: z.ZodString;
|
|
120
229
|
} & {
|
|
121
230
|
schema: z.ZodLiteral<"us_queue">;
|
|
122
231
|
} & {
|
|
123
|
-
$organizations: z.ZodOptional<z.ZodString>;
|
|
124
232
|
actualOperationalDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
125
233
|
allSectors: z.ZodOptional<z.ZodString>;
|
|
126
234
|
applicationId: z.ZodOptional<z.ZodString>;
|
|
235
|
+
applicationStatus: z.ZodOptional<z.ZodString>;
|
|
127
236
|
applicationTags: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
128
237
|
identifier: z.ZodString;
|
|
129
238
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -131,27 +240,6 @@ declare const usQueueDetailsSchema: z.ZodObject<{
|
|
|
131
240
|
}, {
|
|
132
241
|
identifier?: string;
|
|
133
242
|
}>, "many">>;
|
|
134
|
-
applicationType: z.ZodOptional<z.ZodString>;
|
|
135
|
-
applicationStatus: z.ZodOptional<z.ZodString>;
|
|
136
|
-
cost: z.ZodOptional<z.ZodObject<{
|
|
137
|
-
costCompany: z.ZodString;
|
|
138
|
-
costYear: z.ZodNumber;
|
|
139
|
-
networkCostKW: z.ZodNumber;
|
|
140
|
-
poiCostKW: z.ZodNumber;
|
|
141
|
-
totalCostKW: z.ZodNumber;
|
|
142
|
-
}, "strip", z.ZodTypeAny, {
|
|
143
|
-
costCompany?: string;
|
|
144
|
-
costYear?: number;
|
|
145
|
-
networkCostKW?: number;
|
|
146
|
-
poiCostKW?: number;
|
|
147
|
-
totalCostKW?: number;
|
|
148
|
-
}, {
|
|
149
|
-
costCompany?: string;
|
|
150
|
-
costYear?: number;
|
|
151
|
-
networkCostKW?: number;
|
|
152
|
-
poiCostKW?: number;
|
|
153
|
-
totalCostKW?: number;
|
|
154
|
-
}>>;
|
|
155
243
|
country: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
156
244
|
identifier: z.ZodString;
|
|
157
245
|
id: z.ZodString;
|
|
@@ -162,143 +250,88 @@ declare const usQueueDetailsSchema: z.ZodObject<{
|
|
|
162
250
|
id?: string;
|
|
163
251
|
identifier?: string;
|
|
164
252
|
}>, "many">>;
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
253
|
+
geo: z.ZodOptional<z.ZodObject<{
|
|
254
|
+
defaultValue: z.ZodOptional<z.ZodString>;
|
|
255
|
+
default: z.ZodOptional<z.ZodObject<{
|
|
256
|
+
lon: z.ZodNumber;
|
|
257
|
+
lat: z.ZodNumber;
|
|
258
|
+
}, "strip", z.ZodTypeAny, {
|
|
259
|
+
lat?: number;
|
|
260
|
+
lon?: number;
|
|
261
|
+
}, {
|
|
262
|
+
lat?: number;
|
|
263
|
+
lon?: number;
|
|
264
|
+
}>>;
|
|
265
|
+
project: z.ZodOptional<z.ZodObject<{
|
|
266
|
+
lon: z.ZodNumber;
|
|
267
|
+
lat: z.ZodNumber;
|
|
268
|
+
}, "strip", z.ZodTypeAny, {
|
|
269
|
+
lat?: number;
|
|
270
|
+
lon?: number;
|
|
271
|
+
}, {
|
|
272
|
+
lat?: number;
|
|
273
|
+
lon?: number;
|
|
274
|
+
}>>;
|
|
275
|
+
county: z.ZodOptional<z.ZodObject<{
|
|
276
|
+
lon: z.ZodNumber;
|
|
277
|
+
lat: z.ZodNumber;
|
|
278
|
+
}, "strip", z.ZodTypeAny, {
|
|
279
|
+
lat?: number;
|
|
280
|
+
lon?: number;
|
|
281
|
+
}, {
|
|
282
|
+
lat?: number;
|
|
283
|
+
lon?: number;
|
|
284
|
+
}>>;
|
|
285
|
+
facility: z.ZodOptional<z.ZodObject<{
|
|
286
|
+
lon: z.ZodNumber;
|
|
287
|
+
lat: z.ZodNumber;
|
|
288
|
+
}, "strip", z.ZodTypeAny, {
|
|
289
|
+
lat?: number;
|
|
290
|
+
lon?: number;
|
|
291
|
+
}, {
|
|
292
|
+
lat?: number;
|
|
293
|
+
lon?: number;
|
|
294
|
+
}>>;
|
|
174
295
|
}, "strip", z.ZodTypeAny, {
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
296
|
+
county?: {
|
|
297
|
+
lat?: number;
|
|
298
|
+
lon?: number;
|
|
299
|
+
};
|
|
300
|
+
defaultValue?: string;
|
|
301
|
+
default?: {
|
|
302
|
+
lat?: number;
|
|
303
|
+
lon?: number;
|
|
304
|
+
};
|
|
305
|
+
project?: {
|
|
306
|
+
lat?: number;
|
|
307
|
+
lon?: number;
|
|
308
|
+
};
|
|
309
|
+
facility?: {
|
|
310
|
+
lat?: number;
|
|
311
|
+
lon?: number;
|
|
312
|
+
};
|
|
182
313
|
}, {
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
document_id?: string;
|
|
187
|
-
url?: string;
|
|
188
|
-
filing_id?: string;
|
|
189
|
-
isSignal?: boolean;
|
|
190
|
-
}>, "many">>;
|
|
191
|
-
events: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
192
|
-
applicationId: z.ZodString;
|
|
193
|
-
daysInQueue: z.ZodOptional<z.ZodNumber>;
|
|
194
|
-
eventHash: z.ZodOptional<z.ZodString>;
|
|
195
|
-
eventType: z.ZodEnum<["add", "update"]>;
|
|
196
|
-
id: z.ZodString;
|
|
197
|
-
propKey: z.ZodString;
|
|
198
|
-
propType: z.ZodEnum<["applicationTags", "tracked"]>;
|
|
199
|
-
propVal: z.ZodString;
|
|
200
|
-
queueDate: z.ZodString;
|
|
201
|
-
queueKey: z.ZodString;
|
|
202
|
-
reportDate: z.ZodString;
|
|
203
|
-
set: z.ZodNumber;
|
|
204
|
-
transition: z.ZodOptional<z.ZodObject<{
|
|
205
|
-
delta: z.ZodOptional<z.ZodNumber>;
|
|
206
|
-
durationInDays: z.ZodNumber;
|
|
207
|
-
from: z.ZodObject<{
|
|
208
|
-
assigned: z.ZodString;
|
|
209
|
-
value: z.ZodString;
|
|
210
|
-
}, "strip", z.ZodTypeAny, {
|
|
211
|
-
value?: string;
|
|
212
|
-
assigned?: string;
|
|
213
|
-
}, {
|
|
214
|
-
value?: string;
|
|
215
|
-
assigned?: string;
|
|
216
|
-
}>;
|
|
217
|
-
to: z.ZodObject<{
|
|
218
|
-
assigned: z.ZodString;
|
|
219
|
-
value: z.ZodString;
|
|
220
|
-
}, "strip", z.ZodTypeAny, {
|
|
221
|
-
value?: string;
|
|
222
|
-
assigned?: string;
|
|
223
|
-
}, {
|
|
224
|
-
value?: string;
|
|
225
|
-
assigned?: string;
|
|
226
|
-
}>;
|
|
227
|
-
}, "strip", z.ZodTypeAny, {
|
|
228
|
-
delta?: number;
|
|
229
|
-
durationInDays?: number;
|
|
230
|
-
from?: {
|
|
231
|
-
value?: string;
|
|
232
|
-
assigned?: string;
|
|
233
|
-
};
|
|
234
|
-
to?: {
|
|
235
|
-
value?: string;
|
|
236
|
-
assigned?: string;
|
|
237
|
-
};
|
|
238
|
-
}, {
|
|
239
|
-
delta?: number;
|
|
240
|
-
durationInDays?: number;
|
|
241
|
-
from?: {
|
|
242
|
-
value?: string;
|
|
243
|
-
assigned?: string;
|
|
244
|
-
};
|
|
245
|
-
to?: {
|
|
246
|
-
value?: string;
|
|
247
|
-
assigned?: string;
|
|
248
|
-
};
|
|
249
|
-
}>>;
|
|
250
|
-
}, "strip", z.ZodTypeAny, {
|
|
251
|
-
id?: string;
|
|
252
|
-
queueKey?: string;
|
|
253
|
-
applicationId?: string;
|
|
254
|
-
set?: number;
|
|
255
|
-
daysInQueue?: number;
|
|
256
|
-
eventHash?: string;
|
|
257
|
-
reportDate?: string;
|
|
258
|
-
eventType?: "add" | "update";
|
|
259
|
-
propKey?: string;
|
|
260
|
-
propType?: "applicationTags" | "tracked";
|
|
261
|
-
propVal?: string;
|
|
262
|
-
queueDate?: string;
|
|
263
|
-
transition?: {
|
|
264
|
-
delta?: number;
|
|
265
|
-
durationInDays?: number;
|
|
266
|
-
from?: {
|
|
267
|
-
value?: string;
|
|
268
|
-
assigned?: string;
|
|
269
|
-
};
|
|
270
|
-
to?: {
|
|
271
|
-
value?: string;
|
|
272
|
-
assigned?: string;
|
|
273
|
-
};
|
|
314
|
+
county?: {
|
|
315
|
+
lat?: number;
|
|
316
|
+
lon?: number;
|
|
274
317
|
};
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
set?: number;
|
|
280
|
-
daysInQueue?: number;
|
|
281
|
-
eventHash?: string;
|
|
282
|
-
reportDate?: string;
|
|
283
|
-
eventType?: "add" | "update";
|
|
284
|
-
propKey?: string;
|
|
285
|
-
propType?: "applicationTags" | "tracked";
|
|
286
|
-
propVal?: string;
|
|
287
|
-
queueDate?: string;
|
|
288
|
-
transition?: {
|
|
289
|
-
delta?: number;
|
|
290
|
-
durationInDays?: number;
|
|
291
|
-
from?: {
|
|
292
|
-
value?: string;
|
|
293
|
-
assigned?: string;
|
|
294
|
-
};
|
|
295
|
-
to?: {
|
|
296
|
-
value?: string;
|
|
297
|
-
assigned?: string;
|
|
298
|
-
};
|
|
318
|
+
defaultValue?: string;
|
|
319
|
+
default?: {
|
|
320
|
+
lat?: number;
|
|
321
|
+
lon?: number;
|
|
299
322
|
};
|
|
300
|
-
|
|
301
|
-
|
|
323
|
+
project?: {
|
|
324
|
+
lat?: number;
|
|
325
|
+
lon?: number;
|
|
326
|
+
};
|
|
327
|
+
facility?: {
|
|
328
|
+
lat?: number;
|
|
329
|
+
lon?: number;
|
|
330
|
+
};
|
|
331
|
+
}>>;
|
|
332
|
+
interconnectingEntity: z.ZodOptional<z.ZodString>;
|
|
333
|
+
lastModified: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
334
|
+
localCounty: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
302
335
|
identifier: z.ZodString;
|
|
303
336
|
id: z.ZodString;
|
|
304
337
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -308,206 +341,39 @@ declare const usQueueDetailsSchema: z.ZodObject<{
|
|
|
308
341
|
id?: string;
|
|
309
342
|
identifier?: string;
|
|
310
343
|
}>, "many">>;
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
fullName: z.ZodOptional<z.ZodString>;
|
|
315
|
-
id: z.ZodOptional<z.ZodString>;
|
|
316
|
-
linkedinUrl: z.ZodOptional<z.ZodString>;
|
|
317
|
-
phone: z.ZodOptional<z.ZodString>;
|
|
318
|
-
roles: z.ZodArray<z.ZodOptional<z.ZodString>, "many">;
|
|
319
|
-
source: z.ZodOptional<z.ZodString>;
|
|
344
|
+
localState: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
345
|
+
identifier: z.ZodString;
|
|
346
|
+
id: z.ZodString;
|
|
320
347
|
}, "strip", z.ZodTypeAny, {
|
|
321
348
|
id?: string;
|
|
322
|
-
|
|
323
|
-
fullName?: string;
|
|
324
|
-
email?: string;
|
|
325
|
-
phone?: string;
|
|
326
|
-
source?: string;
|
|
327
|
-
created?: string;
|
|
328
|
-
roles?: string[];
|
|
349
|
+
identifier?: string;
|
|
329
350
|
}, {
|
|
330
351
|
id?: string;
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
phone?: string;
|
|
335
|
-
source?: string;
|
|
336
|
-
created?: string;
|
|
337
|
-
roles?: string[];
|
|
338
|
-
}>>;
|
|
339
|
-
localCounty: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
352
|
+
identifier?: string;
|
|
353
|
+
}>, "many">>;
|
|
354
|
+
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
340
355
|
identifier: z.ZodString;
|
|
341
356
|
id: z.ZodString;
|
|
357
|
+
} & {
|
|
358
|
+
role: z.ZodString;
|
|
359
|
+
ref: z.ZodOptional<z.ZodString>;
|
|
342
360
|
}, "strip", z.ZodTypeAny, {
|
|
343
361
|
id?: string;
|
|
344
362
|
identifier?: string;
|
|
363
|
+
role?: string;
|
|
364
|
+
ref?: string;
|
|
345
365
|
}, {
|
|
346
366
|
id?: string;
|
|
347
367
|
identifier?: string;
|
|
368
|
+
role?: string;
|
|
369
|
+
ref?: string;
|
|
348
370
|
}>, "many">>;
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
}, {
|
|
356
|
-
id?: string;
|
|
357
|
-
identifier?: string;
|
|
358
|
-
}>, "many">>;
|
|
359
|
-
milestones: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
360
|
-
compositeKey: z.ZodString;
|
|
361
|
-
daysInQueue: z.ZodOptional<z.ZodNumber>;
|
|
362
|
-
delta: z.ZodOptional<z.ZodNumber>;
|
|
363
|
-
durationInDays: z.ZodOptional<z.ZodNumber>;
|
|
364
|
-
entries: z.ZodArray<z.ZodObject<{
|
|
365
|
-
daysInQueue: z.ZodOptional<z.ZodNumber>;
|
|
366
|
-
delta: z.ZodOptional<z.ZodNumber>;
|
|
367
|
-
durationInDays: z.ZodOptional<z.ZodNumber>;
|
|
368
|
-
eventHash: z.ZodString;
|
|
369
|
-
fromValue: z.ZodOptional<z.ZodString>;
|
|
370
|
-
label: z.ZodString;
|
|
371
|
-
reportDate: z.ZodString;
|
|
372
|
-
stage: z.ZodString;
|
|
373
|
-
toValue: z.ZodString;
|
|
374
|
-
}, "strip", z.ZodTypeAny, {
|
|
375
|
-
daysInQueue?: number;
|
|
376
|
-
delta?: number;
|
|
377
|
-
durationInDays?: number;
|
|
378
|
-
eventHash?: string;
|
|
379
|
-
fromValue?: string;
|
|
380
|
-
label?: string;
|
|
381
|
-
reportDate?: string;
|
|
382
|
-
stage?: string;
|
|
383
|
-
toValue?: string;
|
|
384
|
-
}, {
|
|
385
|
-
daysInQueue?: number;
|
|
386
|
-
delta?: number;
|
|
387
|
-
durationInDays?: number;
|
|
388
|
-
eventHash?: string;
|
|
389
|
-
fromValue?: string;
|
|
390
|
-
label?: string;
|
|
391
|
-
reportDate?: string;
|
|
392
|
-
stage?: string;
|
|
393
|
-
toValue?: string;
|
|
394
|
-
}>, "many">;
|
|
395
|
-
eventCount: z.ZodNumber;
|
|
396
|
-
eventHash: z.ZodString;
|
|
397
|
-
fromValue: z.ZodOptional<z.ZodString>;
|
|
398
|
-
key: z.ZodString;
|
|
399
|
-
label: z.ZodString;
|
|
400
|
-
reportDate: z.ZodString;
|
|
401
|
-
searchKey: z.ZodString;
|
|
402
|
-
set: z.ZodNumber;
|
|
403
|
-
stage: z.ZodString;
|
|
404
|
-
state: z.ZodString;
|
|
405
|
-
topic: z.ZodString;
|
|
406
|
-
toValue: z.ZodString;
|
|
407
|
-
type: z.ZodString;
|
|
408
|
-
}, "strip", z.ZodTypeAny, {
|
|
409
|
-
type?: string;
|
|
410
|
-
state?: string;
|
|
411
|
-
key?: string;
|
|
412
|
-
entries?: {
|
|
413
|
-
daysInQueue?: number;
|
|
414
|
-
delta?: number;
|
|
415
|
-
durationInDays?: number;
|
|
416
|
-
eventHash?: string;
|
|
417
|
-
fromValue?: string;
|
|
418
|
-
label?: string;
|
|
419
|
-
reportDate?: string;
|
|
420
|
-
stage?: string;
|
|
421
|
-
toValue?: string;
|
|
422
|
-
}[];
|
|
423
|
-
set?: number;
|
|
424
|
-
daysInQueue?: number;
|
|
425
|
-
delta?: number;
|
|
426
|
-
durationInDays?: number;
|
|
427
|
-
eventHash?: string;
|
|
428
|
-
fromValue?: string;
|
|
429
|
-
label?: string;
|
|
430
|
-
reportDate?: string;
|
|
431
|
-
stage?: string;
|
|
432
|
-
toValue?: string;
|
|
433
|
-
compositeKey?: string;
|
|
434
|
-
eventCount?: number;
|
|
435
|
-
searchKey?: string;
|
|
436
|
-
topic?: string;
|
|
437
|
-
}, {
|
|
438
|
-
type?: string;
|
|
439
|
-
state?: string;
|
|
440
|
-
key?: string;
|
|
441
|
-
entries?: {
|
|
442
|
-
daysInQueue?: number;
|
|
443
|
-
delta?: number;
|
|
444
|
-
durationInDays?: number;
|
|
445
|
-
eventHash?: string;
|
|
446
|
-
fromValue?: string;
|
|
447
|
-
label?: string;
|
|
448
|
-
reportDate?: string;
|
|
449
|
-
stage?: string;
|
|
450
|
-
toValue?: string;
|
|
451
|
-
}[];
|
|
452
|
-
set?: number;
|
|
453
|
-
daysInQueue?: number;
|
|
454
|
-
delta?: number;
|
|
455
|
-
durationInDays?: number;
|
|
456
|
-
eventHash?: string;
|
|
457
|
-
fromValue?: string;
|
|
458
|
-
label?: string;
|
|
459
|
-
reportDate?: string;
|
|
460
|
-
stage?: string;
|
|
461
|
-
toValue?: string;
|
|
462
|
-
compositeKey?: string;
|
|
463
|
-
eventCount?: number;
|
|
464
|
-
searchKey?: string;
|
|
465
|
-
topic?: string;
|
|
466
|
-
}>, "many">>;
|
|
467
|
-
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
468
|
-
identifier: z.ZodString;
|
|
469
|
-
id: z.ZodString;
|
|
470
|
-
} & {
|
|
471
|
-
role: z.ZodString;
|
|
472
|
-
ref: z.ZodOptional<z.ZodString>;
|
|
473
|
-
}, "strip", z.ZodTypeAny, {
|
|
474
|
-
id?: string;
|
|
475
|
-
identifier?: string;
|
|
476
|
-
role?: string;
|
|
477
|
-
ref?: string;
|
|
478
|
-
}, {
|
|
479
|
-
id?: string;
|
|
480
|
-
identifier?: string;
|
|
481
|
-
role?: string;
|
|
482
|
-
ref?: string;
|
|
483
|
-
}>, "many">>;
|
|
484
|
-
plannedOperationalDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
485
|
-
poi: z.ZodOptional<z.ZodObject<{
|
|
486
|
-
id: z.ZodString;
|
|
487
|
-
identifier: z.ZodString;
|
|
488
|
-
kV: z.ZodOptional<z.ZodString>;
|
|
489
|
-
meta: z.ZodOptional<z.ZodString>;
|
|
490
|
-
poiGroup: z.ZodString;
|
|
491
|
-
}, "strip", z.ZodTypeAny, {
|
|
492
|
-
id?: string;
|
|
493
|
-
identifier?: string;
|
|
494
|
-
kV?: string;
|
|
495
|
-
meta?: string;
|
|
496
|
-
poiGroup?: string;
|
|
497
|
-
}, {
|
|
498
|
-
id?: string;
|
|
499
|
-
identifier?: string;
|
|
500
|
-
kV?: string;
|
|
501
|
-
meta?: string;
|
|
502
|
-
poiGroup?: string;
|
|
503
|
-
}>>;
|
|
504
|
-
poiLocation: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodOptional<z.ZodNumber>]>;
|
|
505
|
-
projectName: z.ZodOptional<z.ZodString>;
|
|
506
|
-
queueDataset: z.ZodOptional<z.ZodString>;
|
|
507
|
-
queueDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
508
|
-
reportCount: z.ZodOptional<z.ZodNumber>;
|
|
509
|
-
reportDate: z.ZodOptional<z.ZodString>;
|
|
510
|
-
sectors: z.ZodArray<z.ZodObject<{
|
|
371
|
+
plannedOperationalDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
372
|
+
poiLocation: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodOptional<z.ZodNumber>]>;
|
|
373
|
+
projectName: z.ZodOptional<z.ZodString>;
|
|
374
|
+
queueDataset: z.ZodOptional<z.ZodString>;
|
|
375
|
+
queueDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
376
|
+
sectors: z.ZodArray<z.ZodObject<{
|
|
511
377
|
identifier: z.ZodString;
|
|
512
378
|
id: z.ZodString;
|
|
513
379
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -517,45 +383,12 @@ declare const usQueueDetailsSchema: z.ZodObject<{
|
|
|
517
383
|
id?: string;
|
|
518
384
|
identifier?: string;
|
|
519
385
|
}>, "many">;
|
|
520
|
-
signals: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
521
|
-
filingDate: z.ZodString;
|
|
522
|
-
headline: z.ZodString;
|
|
523
|
-
id: z.ZodString;
|
|
524
|
-
publishedDate: z.ZodString;
|
|
525
|
-
subType: z.ZodString;
|
|
526
|
-
type: z.ZodString;
|
|
527
|
-
}, "strip", z.ZodTypeAny, {
|
|
528
|
-
type?: string;
|
|
529
|
-
subType?: string;
|
|
530
|
-
id?: string;
|
|
531
|
-
headline?: string;
|
|
532
|
-
filingDate?: string;
|
|
533
|
-
publishedDate?: string;
|
|
534
|
-
}, {
|
|
535
|
-
type?: string;
|
|
536
|
-
subType?: string;
|
|
537
|
-
id?: string;
|
|
538
|
-
headline?: string;
|
|
539
|
-
filingDate?: string;
|
|
540
|
-
publishedDate?: string;
|
|
541
|
-
}>, "many">>;
|
|
542
386
|
totalMw: z.ZodOptional<z.ZodNumber>;
|
|
543
|
-
withdrawnDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
544
387
|
}, "strict", z.ZodTypeAny, {
|
|
545
388
|
sectors?: {
|
|
546
389
|
id?: string;
|
|
547
390
|
identifier?: string;
|
|
548
391
|
}[];
|
|
549
|
-
keyPeople?: {
|
|
550
|
-
id?: string;
|
|
551
|
-
linkedinUrl?: string;
|
|
552
|
-
fullName?: string;
|
|
553
|
-
email?: string;
|
|
554
|
-
phone?: string;
|
|
555
|
-
source?: string;
|
|
556
|
-
created?: string;
|
|
557
|
-
roles?: string[];
|
|
558
|
-
};
|
|
559
392
|
id?: string;
|
|
560
393
|
applicationId?: string;
|
|
561
394
|
queueDataset?: string;
|
|
@@ -563,31 +396,39 @@ declare const usQueueDetailsSchema: z.ZodObject<{
|
|
|
563
396
|
id?: string;
|
|
564
397
|
identifier?: string;
|
|
565
398
|
}[];
|
|
566
|
-
documents?: {
|
|
567
|
-
type?: string[];
|
|
568
|
-
key?: string;
|
|
569
|
-
date?: string;
|
|
570
|
-
document_id?: string;
|
|
571
|
-
url?: string;
|
|
572
|
-
filing_id?: string;
|
|
573
|
-
isSignal?: boolean;
|
|
574
|
-
}[];
|
|
575
399
|
organizations?: {
|
|
576
400
|
id?: string;
|
|
577
401
|
identifier?: string;
|
|
578
402
|
role?: string;
|
|
579
403
|
ref?: string;
|
|
580
404
|
}[];
|
|
405
|
+
geo?: {
|
|
406
|
+
county?: {
|
|
407
|
+
lat?: number;
|
|
408
|
+
lon?: number;
|
|
409
|
+
};
|
|
410
|
+
defaultValue?: string;
|
|
411
|
+
default?: {
|
|
412
|
+
lat?: number;
|
|
413
|
+
lon?: number;
|
|
414
|
+
};
|
|
415
|
+
project?: {
|
|
416
|
+
lat?: number;
|
|
417
|
+
lon?: number;
|
|
418
|
+
};
|
|
419
|
+
facility?: {
|
|
420
|
+
lat?: number;
|
|
421
|
+
lon?: number;
|
|
422
|
+
};
|
|
423
|
+
};
|
|
581
424
|
allSectors?: string;
|
|
582
|
-
$organizations?: string;
|
|
583
|
-
reportDate?: string;
|
|
584
425
|
applicationTags?: {
|
|
585
426
|
identifier?: string;
|
|
586
427
|
}[];
|
|
587
428
|
queueDate?: string;
|
|
588
429
|
schema?: "us_queue";
|
|
589
430
|
actualOperationalDate?: string;
|
|
590
|
-
|
|
431
|
+
lastModified?: string;
|
|
591
432
|
localCounty?: {
|
|
592
433
|
id?: string;
|
|
593
434
|
identifier?: string;
|
|
@@ -599,108 +440,14 @@ declare const usQueueDetailsSchema: z.ZodObject<{
|
|
|
599
440
|
plannedOperationalDate?: string;
|
|
600
441
|
projectName?: string;
|
|
601
442
|
totalMw?: number;
|
|
443
|
+
applicationStatus?: string;
|
|
444
|
+
interconnectingEntity?: string;
|
|
602
445
|
poiLocation?: string | number;
|
|
603
|
-
applicationType?: string;
|
|
604
|
-
cost?: {
|
|
605
|
-
costCompany?: string;
|
|
606
|
-
costYear?: number;
|
|
607
|
-
networkCostKW?: number;
|
|
608
|
-
poiCostKW?: number;
|
|
609
|
-
totalCostKW?: number;
|
|
610
|
-
};
|
|
611
|
-
dateCreated?: string;
|
|
612
|
-
events?: {
|
|
613
|
-
id?: string;
|
|
614
|
-
queueKey?: string;
|
|
615
|
-
applicationId?: string;
|
|
616
|
-
set?: number;
|
|
617
|
-
daysInQueue?: number;
|
|
618
|
-
eventHash?: string;
|
|
619
|
-
reportDate?: string;
|
|
620
|
-
eventType?: "add" | "update";
|
|
621
|
-
propKey?: string;
|
|
622
|
-
propType?: "applicationTags" | "tracked";
|
|
623
|
-
propVal?: string;
|
|
624
|
-
queueDate?: string;
|
|
625
|
-
transition?: {
|
|
626
|
-
delta?: number;
|
|
627
|
-
durationInDays?: number;
|
|
628
|
-
from?: {
|
|
629
|
-
value?: string;
|
|
630
|
-
assigned?: string;
|
|
631
|
-
};
|
|
632
|
-
to?: {
|
|
633
|
-
value?: string;
|
|
634
|
-
assigned?: string;
|
|
635
|
-
};
|
|
636
|
-
};
|
|
637
|
-
}[];
|
|
638
|
-
isoRtoConnection?: {
|
|
639
|
-
id?: string;
|
|
640
|
-
identifier?: string;
|
|
641
|
-
}[];
|
|
642
|
-
milestones?: {
|
|
643
|
-
type?: string;
|
|
644
|
-
state?: string;
|
|
645
|
-
key?: string;
|
|
646
|
-
entries?: {
|
|
647
|
-
daysInQueue?: number;
|
|
648
|
-
delta?: number;
|
|
649
|
-
durationInDays?: number;
|
|
650
|
-
eventHash?: string;
|
|
651
|
-
fromValue?: string;
|
|
652
|
-
label?: string;
|
|
653
|
-
reportDate?: string;
|
|
654
|
-
stage?: string;
|
|
655
|
-
toValue?: string;
|
|
656
|
-
}[];
|
|
657
|
-
set?: number;
|
|
658
|
-
daysInQueue?: number;
|
|
659
|
-
delta?: number;
|
|
660
|
-
durationInDays?: number;
|
|
661
|
-
eventHash?: string;
|
|
662
|
-
fromValue?: string;
|
|
663
|
-
label?: string;
|
|
664
|
-
reportDate?: string;
|
|
665
|
-
stage?: string;
|
|
666
|
-
toValue?: string;
|
|
667
|
-
compositeKey?: string;
|
|
668
|
-
eventCount?: number;
|
|
669
|
-
searchKey?: string;
|
|
670
|
-
topic?: string;
|
|
671
|
-
}[];
|
|
672
|
-
poi?: {
|
|
673
|
-
id?: string;
|
|
674
|
-
identifier?: string;
|
|
675
|
-
kV?: string;
|
|
676
|
-
meta?: string;
|
|
677
|
-
poiGroup?: string;
|
|
678
|
-
};
|
|
679
|
-
reportCount?: number;
|
|
680
|
-
signals?: {
|
|
681
|
-
type?: string;
|
|
682
|
-
subType?: string;
|
|
683
|
-
id?: string;
|
|
684
|
-
headline?: string;
|
|
685
|
-
filingDate?: string;
|
|
686
|
-
publishedDate?: string;
|
|
687
|
-
}[];
|
|
688
|
-
withdrawnDate?: string;
|
|
689
446
|
}, {
|
|
690
447
|
sectors?: {
|
|
691
448
|
id?: string;
|
|
692
449
|
identifier?: string;
|
|
693
450
|
}[];
|
|
694
|
-
keyPeople?: {
|
|
695
|
-
id?: string;
|
|
696
|
-
linkedinUrl?: string;
|
|
697
|
-
fullName?: string;
|
|
698
|
-
email?: string;
|
|
699
|
-
phone?: string;
|
|
700
|
-
source?: string;
|
|
701
|
-
created?: string;
|
|
702
|
-
roles?: string[];
|
|
703
|
-
};
|
|
704
451
|
id?: string;
|
|
705
452
|
applicationId?: string;
|
|
706
453
|
queueDataset?: string;
|
|
@@ -708,31 +455,39 @@ declare const usQueueDetailsSchema: z.ZodObject<{
|
|
|
708
455
|
id?: string;
|
|
709
456
|
identifier?: string;
|
|
710
457
|
}[];
|
|
711
|
-
documents?: {
|
|
712
|
-
type?: string[];
|
|
713
|
-
key?: string;
|
|
714
|
-
date?: string;
|
|
715
|
-
document_id?: string;
|
|
716
|
-
url?: string;
|
|
717
|
-
filing_id?: string;
|
|
718
|
-
isSignal?: boolean;
|
|
719
|
-
}[];
|
|
720
458
|
organizations?: {
|
|
721
459
|
id?: string;
|
|
722
460
|
identifier?: string;
|
|
723
461
|
role?: string;
|
|
724
462
|
ref?: string;
|
|
725
463
|
}[];
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
|
|
464
|
+
geo?: {
|
|
465
|
+
county?: {
|
|
466
|
+
lat?: number;
|
|
467
|
+
lon?: number;
|
|
468
|
+
};
|
|
469
|
+
defaultValue?: string;
|
|
470
|
+
default?: {
|
|
471
|
+
lat?: number;
|
|
472
|
+
lon?: number;
|
|
473
|
+
};
|
|
474
|
+
project?: {
|
|
475
|
+
lat?: number;
|
|
476
|
+
lon?: number;
|
|
477
|
+
};
|
|
478
|
+
facility?: {
|
|
479
|
+
lat?: number;
|
|
480
|
+
lon?: number;
|
|
481
|
+
};
|
|
482
|
+
};
|
|
483
|
+
allSectors?: string;
|
|
729
484
|
applicationTags?: {
|
|
730
485
|
identifier?: string;
|
|
731
486
|
}[];
|
|
732
487
|
queueDate?: string;
|
|
733
488
|
schema?: "us_queue";
|
|
734
489
|
actualOperationalDate?: string;
|
|
735
|
-
|
|
490
|
+
lastModified?: string;
|
|
736
491
|
localCounty?: {
|
|
737
492
|
id?: string;
|
|
738
493
|
identifier?: string;
|
|
@@ -744,95 +499,11 @@ declare const usQueueDetailsSchema: z.ZodObject<{
|
|
|
744
499
|
plannedOperationalDate?: string;
|
|
745
500
|
projectName?: string;
|
|
746
501
|
totalMw?: number;
|
|
502
|
+
applicationStatus?: string;
|
|
503
|
+
interconnectingEntity?: string;
|
|
747
504
|
poiLocation?: string | number;
|
|
748
|
-
applicationType?: string;
|
|
749
|
-
cost?: {
|
|
750
|
-
costCompany?: string;
|
|
751
|
-
costYear?: number;
|
|
752
|
-
networkCostKW?: number;
|
|
753
|
-
poiCostKW?: number;
|
|
754
|
-
totalCostKW?: number;
|
|
755
|
-
};
|
|
756
|
-
dateCreated?: string;
|
|
757
|
-
events?: {
|
|
758
|
-
id?: string;
|
|
759
|
-
queueKey?: string;
|
|
760
|
-
applicationId?: string;
|
|
761
|
-
set?: number;
|
|
762
|
-
daysInQueue?: number;
|
|
763
|
-
eventHash?: string;
|
|
764
|
-
reportDate?: string;
|
|
765
|
-
eventType?: "add" | "update";
|
|
766
|
-
propKey?: string;
|
|
767
|
-
propType?: "applicationTags" | "tracked";
|
|
768
|
-
propVal?: string;
|
|
769
|
-
queueDate?: string;
|
|
770
|
-
transition?: {
|
|
771
|
-
delta?: number;
|
|
772
|
-
durationInDays?: number;
|
|
773
|
-
from?: {
|
|
774
|
-
value?: string;
|
|
775
|
-
assigned?: string;
|
|
776
|
-
};
|
|
777
|
-
to?: {
|
|
778
|
-
value?: string;
|
|
779
|
-
assigned?: string;
|
|
780
|
-
};
|
|
781
|
-
};
|
|
782
|
-
}[];
|
|
783
|
-
isoRtoConnection?: {
|
|
784
|
-
id?: string;
|
|
785
|
-
identifier?: string;
|
|
786
|
-
}[];
|
|
787
|
-
milestones?: {
|
|
788
|
-
type?: string;
|
|
789
|
-
state?: string;
|
|
790
|
-
key?: string;
|
|
791
|
-
entries?: {
|
|
792
|
-
daysInQueue?: number;
|
|
793
|
-
delta?: number;
|
|
794
|
-
durationInDays?: number;
|
|
795
|
-
eventHash?: string;
|
|
796
|
-
fromValue?: string;
|
|
797
|
-
label?: string;
|
|
798
|
-
reportDate?: string;
|
|
799
|
-
stage?: string;
|
|
800
|
-
toValue?: string;
|
|
801
|
-
}[];
|
|
802
|
-
set?: number;
|
|
803
|
-
daysInQueue?: number;
|
|
804
|
-
delta?: number;
|
|
805
|
-
durationInDays?: number;
|
|
806
|
-
eventHash?: string;
|
|
807
|
-
fromValue?: string;
|
|
808
|
-
label?: string;
|
|
809
|
-
reportDate?: string;
|
|
810
|
-
stage?: string;
|
|
811
|
-
toValue?: string;
|
|
812
|
-
compositeKey?: string;
|
|
813
|
-
eventCount?: number;
|
|
814
|
-
searchKey?: string;
|
|
815
|
-
topic?: string;
|
|
816
|
-
}[];
|
|
817
|
-
poi?: {
|
|
818
|
-
id?: string;
|
|
819
|
-
identifier?: string;
|
|
820
|
-
kV?: string;
|
|
821
|
-
meta?: string;
|
|
822
|
-
poiGroup?: string;
|
|
823
|
-
};
|
|
824
|
-
reportCount?: number;
|
|
825
|
-
signals?: {
|
|
826
|
-
type?: string;
|
|
827
|
-
subType?: string;
|
|
828
|
-
id?: string;
|
|
829
|
-
headline?: string;
|
|
830
|
-
filingDate?: string;
|
|
831
|
-
publishedDate?: string;
|
|
832
|
-
}[];
|
|
833
|
-
withdrawnDate?: string;
|
|
834
505
|
}>;
|
|
835
|
-
declare const
|
|
506
|
+
declare const euQueueDetailsSchema: z.ZodObject<{
|
|
836
507
|
id: z.ZodString;
|
|
837
508
|
} & {
|
|
838
509
|
schema: z.ZodLiteral<"eu_queue">;
|
|
@@ -878,6 +549,7 @@ declare const queueDetailsSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
878
549
|
id?: string;
|
|
879
550
|
identifier?: string;
|
|
880
551
|
}>, "many">;
|
|
552
|
+
sourceUpdate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
881
553
|
status: z.ZodOptional<z.ZodString>;
|
|
882
554
|
storageCapacity: z.ZodOptional<z.ZodNumber>;
|
|
883
555
|
technology: z.ZodOptional<z.ZodString>;
|
|
@@ -903,15 +575,16 @@ declare const queueDetailsSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
903
575
|
$organizations?: string;
|
|
904
576
|
queueDate?: string;
|
|
905
577
|
schema?: "eu_queue";
|
|
906
|
-
applicationStatus?: string;
|
|
907
578
|
lastModified?: string;
|
|
908
579
|
localCounty?: string;
|
|
909
580
|
localState?: string;
|
|
910
581
|
projectName?: string;
|
|
911
582
|
totalMw?: number;
|
|
583
|
+
applicationStatus?: string;
|
|
912
584
|
localTown?: string;
|
|
913
585
|
mwNet?: number;
|
|
914
586
|
refId?: string;
|
|
587
|
+
sourceUpdate?: string;
|
|
915
588
|
storageCapacity?: number;
|
|
916
589
|
technology?: string;
|
|
917
590
|
windFarmName?: string;
|
|
@@ -935,19 +608,21 @@ declare const queueDetailsSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
935
608
|
$organizations?: string;
|
|
936
609
|
queueDate?: string;
|
|
937
610
|
schema?: "eu_queue";
|
|
938
|
-
applicationStatus?: string;
|
|
939
611
|
lastModified?: string;
|
|
940
612
|
localCounty?: string;
|
|
941
613
|
localState?: string;
|
|
942
614
|
projectName?: string;
|
|
943
615
|
totalMw?: number;
|
|
616
|
+
applicationStatus?: string;
|
|
944
617
|
localTown?: string;
|
|
945
618
|
mwNet?: number;
|
|
946
619
|
refId?: string;
|
|
620
|
+
sourceUpdate?: string;
|
|
947
621
|
storageCapacity?: number;
|
|
948
622
|
technology?: string;
|
|
949
623
|
windFarmName?: string;
|
|
950
|
-
}
|
|
624
|
+
}>;
|
|
625
|
+
declare const usQueueDetailsSchema: z.ZodObject<{
|
|
951
626
|
id: z.ZodString;
|
|
952
627
|
} & {
|
|
953
628
|
schema: z.ZodLiteral<"us_queue">;
|
|
@@ -1140,7 +815,7 @@ declare const queueDetailsSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1140
815
|
id?: string;
|
|
1141
816
|
identifier?: string;
|
|
1142
817
|
}>, "many">>;
|
|
1143
|
-
keyPeople: z.
|
|
818
|
+
keyPeople: z.ZodArray<z.ZodObject<{
|
|
1144
819
|
created: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
1145
820
|
email: z.ZodOptional<z.ZodString>;
|
|
1146
821
|
fullName: z.ZodOptional<z.ZodString>;
|
|
@@ -1167,7 +842,7 @@ declare const queueDetailsSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1167
842
|
source?: string;
|
|
1168
843
|
created?: string;
|
|
1169
844
|
roles?: string[];
|
|
1170
|
-
}
|
|
845
|
+
}>, "many">;
|
|
1171
846
|
localCounty: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1172
847
|
identifier: z.ZodString;
|
|
1173
848
|
id: z.ZodString;
|
|
@@ -1349,6 +1024,7 @@ declare const queueDetailsSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1349
1024
|
id?: string;
|
|
1350
1025
|
identifier?: string;
|
|
1351
1026
|
}>, "many">;
|
|
1027
|
+
sourceUpdate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
1352
1028
|
signals: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1353
1029
|
filingDate: z.ZodString;
|
|
1354
1030
|
headline: z.ZodString;
|
|
@@ -1387,7 +1063,7 @@ declare const queueDetailsSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1387
1063
|
source?: string;
|
|
1388
1064
|
created?: string;
|
|
1389
1065
|
roles?: string[];
|
|
1390
|
-
};
|
|
1066
|
+
}[];
|
|
1391
1067
|
id?: string;
|
|
1392
1068
|
applicationId?: string;
|
|
1393
1069
|
queueDataset?: string;
|
|
@@ -1419,7 +1095,6 @@ declare const queueDetailsSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1419
1095
|
queueDate?: string;
|
|
1420
1096
|
schema?: "us_queue";
|
|
1421
1097
|
actualOperationalDate?: string;
|
|
1422
|
-
applicationStatus?: string;
|
|
1423
1098
|
localCounty?: {
|
|
1424
1099
|
id?: string;
|
|
1425
1100
|
identifier?: string;
|
|
@@ -1431,7 +1106,9 @@ declare const queueDetailsSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1431
1106
|
plannedOperationalDate?: string;
|
|
1432
1107
|
projectName?: string;
|
|
1433
1108
|
totalMw?: number;
|
|
1109
|
+
applicationStatus?: string;
|
|
1434
1110
|
poiLocation?: string | number;
|
|
1111
|
+
sourceUpdate?: string;
|
|
1435
1112
|
applicationType?: string;
|
|
1436
1113
|
cost?: {
|
|
1437
1114
|
costCompany?: string;
|
|
@@ -1532,7 +1209,7 @@ declare const queueDetailsSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1532
1209
|
source?: string;
|
|
1533
1210
|
created?: string;
|
|
1534
1211
|
roles?: string[];
|
|
1535
|
-
};
|
|
1212
|
+
}[];
|
|
1536
1213
|
id?: string;
|
|
1537
1214
|
applicationId?: string;
|
|
1538
1215
|
queueDataset?: string;
|
|
@@ -1564,7 +1241,6 @@ declare const queueDetailsSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1564
1241
|
queueDate?: string;
|
|
1565
1242
|
schema?: "us_queue";
|
|
1566
1243
|
actualOperationalDate?: string;
|
|
1567
|
-
applicationStatus?: string;
|
|
1568
1244
|
localCounty?: {
|
|
1569
1245
|
id?: string;
|
|
1570
1246
|
identifier?: string;
|
|
@@ -1576,7 +1252,9 @@ declare const queueDetailsSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1576
1252
|
plannedOperationalDate?: string;
|
|
1577
1253
|
projectName?: string;
|
|
1578
1254
|
totalMw?: number;
|
|
1255
|
+
applicationStatus?: string;
|
|
1579
1256
|
poiLocation?: string | number;
|
|
1257
|
+
sourceUpdate?: string;
|
|
1580
1258
|
applicationType?: string;
|
|
1581
1259
|
cost?: {
|
|
1582
1260
|
costCompany?: string;
|
|
@@ -1663,8 +1341,8 @@ declare const queueDetailsSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1663
1341
|
publishedDate?: string;
|
|
1664
1342
|
}[];
|
|
1665
1343
|
withdrawnDate?: string;
|
|
1666
|
-
}
|
|
1667
|
-
|
|
1344
|
+
}>;
|
|
1345
|
+
declare const queueDetailsSchema: z.ZodUnion<[z.ZodObject<{
|
|
1668
1346
|
id: z.ZodString;
|
|
1669
1347
|
} & {
|
|
1670
1348
|
schema: z.ZodLiteral<"eu_queue">;
|
|
@@ -1710,6 +1388,7 @@ export declare const queueDetailsUnionSchema: z.ZodDiscriminatedUnion<"schema",
|
|
|
1710
1388
|
id?: string;
|
|
1711
1389
|
identifier?: string;
|
|
1712
1390
|
}>, "many">;
|
|
1391
|
+
sourceUpdate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
1713
1392
|
status: z.ZodOptional<z.ZodString>;
|
|
1714
1393
|
storageCapacity: z.ZodOptional<z.ZodNumber>;
|
|
1715
1394
|
technology: z.ZodOptional<z.ZodString>;
|
|
@@ -1735,15 +1414,16 @@ export declare const queueDetailsUnionSchema: z.ZodDiscriminatedUnion<"schema",
|
|
|
1735
1414
|
$organizations?: string;
|
|
1736
1415
|
queueDate?: string;
|
|
1737
1416
|
schema?: "eu_queue";
|
|
1738
|
-
applicationStatus?: string;
|
|
1739
1417
|
lastModified?: string;
|
|
1740
1418
|
localCounty?: string;
|
|
1741
1419
|
localState?: string;
|
|
1742
1420
|
projectName?: string;
|
|
1743
1421
|
totalMw?: number;
|
|
1422
|
+
applicationStatus?: string;
|
|
1744
1423
|
localTown?: string;
|
|
1745
1424
|
mwNet?: number;
|
|
1746
1425
|
refId?: string;
|
|
1426
|
+
sourceUpdate?: string;
|
|
1747
1427
|
storageCapacity?: number;
|
|
1748
1428
|
technology?: string;
|
|
1749
1429
|
windFarmName?: string;
|
|
@@ -1767,15 +1447,16 @@ export declare const queueDetailsUnionSchema: z.ZodDiscriminatedUnion<"schema",
|
|
|
1767
1447
|
$organizations?: string;
|
|
1768
1448
|
queueDate?: string;
|
|
1769
1449
|
schema?: "eu_queue";
|
|
1770
|
-
applicationStatus?: string;
|
|
1771
1450
|
lastModified?: string;
|
|
1772
1451
|
localCounty?: string;
|
|
1773
1452
|
localState?: string;
|
|
1774
1453
|
projectName?: string;
|
|
1775
1454
|
totalMw?: number;
|
|
1455
|
+
applicationStatus?: string;
|
|
1776
1456
|
localTown?: string;
|
|
1777
1457
|
mwNet?: number;
|
|
1778
1458
|
refId?: string;
|
|
1459
|
+
sourceUpdate?: string;
|
|
1779
1460
|
storageCapacity?: number;
|
|
1780
1461
|
technology?: string;
|
|
1781
1462
|
windFarmName?: string;
|
|
@@ -1972,7 +1653,7 @@ export declare const queueDetailsUnionSchema: z.ZodDiscriminatedUnion<"schema",
|
|
|
1972
1653
|
id?: string;
|
|
1973
1654
|
identifier?: string;
|
|
1974
1655
|
}>, "many">>;
|
|
1975
|
-
keyPeople: z.
|
|
1656
|
+
keyPeople: z.ZodArray<z.ZodObject<{
|
|
1976
1657
|
created: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
1977
1658
|
email: z.ZodOptional<z.ZodString>;
|
|
1978
1659
|
fullName: z.ZodOptional<z.ZodString>;
|
|
@@ -1999,7 +1680,7 @@ export declare const queueDetailsUnionSchema: z.ZodDiscriminatedUnion<"schema",
|
|
|
1999
1680
|
source?: string;
|
|
2000
1681
|
created?: string;
|
|
2001
1682
|
roles?: string[];
|
|
2002
|
-
}
|
|
1683
|
+
}>, "many">;
|
|
2003
1684
|
localCounty: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2004
1685
|
identifier: z.ZodString;
|
|
2005
1686
|
id: z.ZodString;
|
|
@@ -2099,34 +1780,1594 @@ export declare const queueDetailsUnionSchema: z.ZodDiscriminatedUnion<"schema",
|
|
|
2099
1780
|
searchKey?: string;
|
|
2100
1781
|
topic?: string;
|
|
2101
1782
|
}, {
|
|
2102
|
-
type?: string;
|
|
2103
|
-
state?: string;
|
|
2104
|
-
key?: string;
|
|
2105
|
-
entries?: {
|
|
2106
|
-
daysInQueue?: number;
|
|
2107
|
-
delta?: number;
|
|
2108
|
-
durationInDays?: number;
|
|
2109
|
-
eventHash?: string;
|
|
2110
|
-
fromValue?: string;
|
|
2111
|
-
label?: string;
|
|
2112
|
-
reportDate?: string;
|
|
2113
|
-
stage?: string;
|
|
2114
|
-
toValue?: string;
|
|
2115
|
-
}[];
|
|
2116
|
-
set?: number;
|
|
2117
|
-
daysInQueue?: number;
|
|
2118
|
-
delta?: number;
|
|
2119
|
-
durationInDays?: number;
|
|
2120
|
-
eventHash?: string;
|
|
2121
|
-
fromValue?: string;
|
|
2122
|
-
label?: string;
|
|
2123
|
-
reportDate?: string;
|
|
2124
|
-
stage?: string;
|
|
2125
|
-
toValue?: string;
|
|
2126
|
-
compositeKey?: string;
|
|
2127
|
-
eventCount?: number;
|
|
2128
|
-
searchKey?: string;
|
|
2129
|
-
topic?: string;
|
|
1783
|
+
type?: string;
|
|
1784
|
+
state?: string;
|
|
1785
|
+
key?: string;
|
|
1786
|
+
entries?: {
|
|
1787
|
+
daysInQueue?: number;
|
|
1788
|
+
delta?: number;
|
|
1789
|
+
durationInDays?: number;
|
|
1790
|
+
eventHash?: string;
|
|
1791
|
+
fromValue?: string;
|
|
1792
|
+
label?: string;
|
|
1793
|
+
reportDate?: string;
|
|
1794
|
+
stage?: string;
|
|
1795
|
+
toValue?: string;
|
|
1796
|
+
}[];
|
|
1797
|
+
set?: number;
|
|
1798
|
+
daysInQueue?: number;
|
|
1799
|
+
delta?: number;
|
|
1800
|
+
durationInDays?: number;
|
|
1801
|
+
eventHash?: string;
|
|
1802
|
+
fromValue?: string;
|
|
1803
|
+
label?: string;
|
|
1804
|
+
reportDate?: string;
|
|
1805
|
+
stage?: string;
|
|
1806
|
+
toValue?: string;
|
|
1807
|
+
compositeKey?: string;
|
|
1808
|
+
eventCount?: number;
|
|
1809
|
+
searchKey?: string;
|
|
1810
|
+
topic?: string;
|
|
1811
|
+
}>, "many">>;
|
|
1812
|
+
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1813
|
+
identifier: z.ZodString;
|
|
1814
|
+
id: z.ZodString;
|
|
1815
|
+
} & {
|
|
1816
|
+
role: z.ZodString;
|
|
1817
|
+
ref: z.ZodOptional<z.ZodString>;
|
|
1818
|
+
}, "strip", z.ZodTypeAny, {
|
|
1819
|
+
id?: string;
|
|
1820
|
+
identifier?: string;
|
|
1821
|
+
role?: string;
|
|
1822
|
+
ref?: string;
|
|
1823
|
+
}, {
|
|
1824
|
+
id?: string;
|
|
1825
|
+
identifier?: string;
|
|
1826
|
+
role?: string;
|
|
1827
|
+
ref?: string;
|
|
1828
|
+
}>, "many">>;
|
|
1829
|
+
plannedOperationalDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
1830
|
+
poi: z.ZodOptional<z.ZodObject<{
|
|
1831
|
+
id: z.ZodString;
|
|
1832
|
+
identifier: z.ZodString;
|
|
1833
|
+
kV: z.ZodOptional<z.ZodString>;
|
|
1834
|
+
meta: z.ZodOptional<z.ZodString>;
|
|
1835
|
+
poiGroup: z.ZodString;
|
|
1836
|
+
}, "strip", z.ZodTypeAny, {
|
|
1837
|
+
id?: string;
|
|
1838
|
+
identifier?: string;
|
|
1839
|
+
kV?: string;
|
|
1840
|
+
meta?: string;
|
|
1841
|
+
poiGroup?: string;
|
|
1842
|
+
}, {
|
|
1843
|
+
id?: string;
|
|
1844
|
+
identifier?: string;
|
|
1845
|
+
kV?: string;
|
|
1846
|
+
meta?: string;
|
|
1847
|
+
poiGroup?: string;
|
|
1848
|
+
}>>;
|
|
1849
|
+
poiLocation: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodOptional<z.ZodNumber>]>;
|
|
1850
|
+
projectName: z.ZodOptional<z.ZodString>;
|
|
1851
|
+
queueDataset: z.ZodOptional<z.ZodString>;
|
|
1852
|
+
queueDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
1853
|
+
reportCount: z.ZodOptional<z.ZodNumber>;
|
|
1854
|
+
reportDate: z.ZodOptional<z.ZodString>;
|
|
1855
|
+
sectors: z.ZodArray<z.ZodObject<{
|
|
1856
|
+
identifier: z.ZodString;
|
|
1857
|
+
id: z.ZodString;
|
|
1858
|
+
}, "strip", z.ZodTypeAny, {
|
|
1859
|
+
id?: string;
|
|
1860
|
+
identifier?: string;
|
|
1861
|
+
}, {
|
|
1862
|
+
id?: string;
|
|
1863
|
+
identifier?: string;
|
|
1864
|
+
}>, "many">;
|
|
1865
|
+
sourceUpdate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
1866
|
+
signals: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1867
|
+
filingDate: z.ZodString;
|
|
1868
|
+
headline: z.ZodString;
|
|
1869
|
+
id: z.ZodString;
|
|
1870
|
+
publishedDate: z.ZodString;
|
|
1871
|
+
subType: z.ZodString;
|
|
1872
|
+
type: z.ZodString;
|
|
1873
|
+
}, "strip", z.ZodTypeAny, {
|
|
1874
|
+
type?: string;
|
|
1875
|
+
subType?: string;
|
|
1876
|
+
id?: string;
|
|
1877
|
+
headline?: string;
|
|
1878
|
+
filingDate?: string;
|
|
1879
|
+
publishedDate?: string;
|
|
1880
|
+
}, {
|
|
1881
|
+
type?: string;
|
|
1882
|
+
subType?: string;
|
|
1883
|
+
id?: string;
|
|
1884
|
+
headline?: string;
|
|
1885
|
+
filingDate?: string;
|
|
1886
|
+
publishedDate?: string;
|
|
1887
|
+
}>, "many">>;
|
|
1888
|
+
totalMw: z.ZodOptional<z.ZodNumber>;
|
|
1889
|
+
withdrawnDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
1890
|
+
}, "strict", z.ZodTypeAny, {
|
|
1891
|
+
sectors?: {
|
|
1892
|
+
id?: string;
|
|
1893
|
+
identifier?: string;
|
|
1894
|
+
}[];
|
|
1895
|
+
keyPeople?: {
|
|
1896
|
+
id?: string;
|
|
1897
|
+
linkedinUrl?: string;
|
|
1898
|
+
fullName?: string;
|
|
1899
|
+
email?: string;
|
|
1900
|
+
phone?: string;
|
|
1901
|
+
source?: string;
|
|
1902
|
+
created?: string;
|
|
1903
|
+
roles?: string[];
|
|
1904
|
+
}[];
|
|
1905
|
+
id?: string;
|
|
1906
|
+
applicationId?: string;
|
|
1907
|
+
queueDataset?: string;
|
|
1908
|
+
country?: {
|
|
1909
|
+
id?: string;
|
|
1910
|
+
identifier?: string;
|
|
1911
|
+
}[];
|
|
1912
|
+
documents?: {
|
|
1913
|
+
type?: string[];
|
|
1914
|
+
key?: string;
|
|
1915
|
+
date?: string;
|
|
1916
|
+
document_id?: string;
|
|
1917
|
+
url?: string;
|
|
1918
|
+
filing_id?: string;
|
|
1919
|
+
isSignal?: boolean;
|
|
1920
|
+
}[];
|
|
1921
|
+
organizations?: {
|
|
1922
|
+
id?: string;
|
|
1923
|
+
identifier?: string;
|
|
1924
|
+
role?: string;
|
|
1925
|
+
ref?: string;
|
|
1926
|
+
}[];
|
|
1927
|
+
allSectors?: string;
|
|
1928
|
+
$organizations?: string;
|
|
1929
|
+
reportDate?: string;
|
|
1930
|
+
applicationTags?: {
|
|
1931
|
+
identifier?: string;
|
|
1932
|
+
}[];
|
|
1933
|
+
queueDate?: string;
|
|
1934
|
+
schema?: "us_queue";
|
|
1935
|
+
actualOperationalDate?: string;
|
|
1936
|
+
localCounty?: {
|
|
1937
|
+
id?: string;
|
|
1938
|
+
identifier?: string;
|
|
1939
|
+
}[];
|
|
1940
|
+
localState?: {
|
|
1941
|
+
id?: string;
|
|
1942
|
+
identifier?: string;
|
|
1943
|
+
}[];
|
|
1944
|
+
plannedOperationalDate?: string;
|
|
1945
|
+
projectName?: string;
|
|
1946
|
+
totalMw?: number;
|
|
1947
|
+
applicationStatus?: string;
|
|
1948
|
+
poiLocation?: string | number;
|
|
1949
|
+
sourceUpdate?: string;
|
|
1950
|
+
applicationType?: string;
|
|
1951
|
+
cost?: {
|
|
1952
|
+
costCompany?: string;
|
|
1953
|
+
costYear?: number;
|
|
1954
|
+
networkCostKW?: number;
|
|
1955
|
+
poiCostKW?: number;
|
|
1956
|
+
totalCostKW?: number;
|
|
1957
|
+
};
|
|
1958
|
+
dateCreated?: string;
|
|
1959
|
+
events?: {
|
|
1960
|
+
id?: string;
|
|
1961
|
+
queueKey?: string;
|
|
1962
|
+
applicationId?: string;
|
|
1963
|
+
set?: number;
|
|
1964
|
+
daysInQueue?: number;
|
|
1965
|
+
eventHash?: string;
|
|
1966
|
+
reportDate?: string;
|
|
1967
|
+
eventType?: "add" | "update";
|
|
1968
|
+
propKey?: string;
|
|
1969
|
+
propType?: "applicationTags" | "tracked";
|
|
1970
|
+
propVal?: string;
|
|
1971
|
+
queueDate?: string;
|
|
1972
|
+
transition?: {
|
|
1973
|
+
delta?: number;
|
|
1974
|
+
durationInDays?: number;
|
|
1975
|
+
from?: {
|
|
1976
|
+
value?: string;
|
|
1977
|
+
assigned?: string;
|
|
1978
|
+
};
|
|
1979
|
+
to?: {
|
|
1980
|
+
value?: string;
|
|
1981
|
+
assigned?: string;
|
|
1982
|
+
};
|
|
1983
|
+
};
|
|
1984
|
+
}[];
|
|
1985
|
+
isoRtoConnection?: {
|
|
1986
|
+
id?: string;
|
|
1987
|
+
identifier?: string;
|
|
1988
|
+
}[];
|
|
1989
|
+
milestones?: {
|
|
1990
|
+
type?: string;
|
|
1991
|
+
state?: string;
|
|
1992
|
+
key?: string;
|
|
1993
|
+
entries?: {
|
|
1994
|
+
daysInQueue?: number;
|
|
1995
|
+
delta?: number;
|
|
1996
|
+
durationInDays?: number;
|
|
1997
|
+
eventHash?: string;
|
|
1998
|
+
fromValue?: string;
|
|
1999
|
+
label?: string;
|
|
2000
|
+
reportDate?: string;
|
|
2001
|
+
stage?: string;
|
|
2002
|
+
toValue?: string;
|
|
2003
|
+
}[];
|
|
2004
|
+
set?: number;
|
|
2005
|
+
daysInQueue?: number;
|
|
2006
|
+
delta?: number;
|
|
2007
|
+
durationInDays?: number;
|
|
2008
|
+
eventHash?: string;
|
|
2009
|
+
fromValue?: string;
|
|
2010
|
+
label?: string;
|
|
2011
|
+
reportDate?: string;
|
|
2012
|
+
stage?: string;
|
|
2013
|
+
toValue?: string;
|
|
2014
|
+
compositeKey?: string;
|
|
2015
|
+
eventCount?: number;
|
|
2016
|
+
searchKey?: string;
|
|
2017
|
+
topic?: string;
|
|
2018
|
+
}[];
|
|
2019
|
+
poi?: {
|
|
2020
|
+
id?: string;
|
|
2021
|
+
identifier?: string;
|
|
2022
|
+
kV?: string;
|
|
2023
|
+
meta?: string;
|
|
2024
|
+
poiGroup?: string;
|
|
2025
|
+
};
|
|
2026
|
+
reportCount?: number;
|
|
2027
|
+
signals?: {
|
|
2028
|
+
type?: string;
|
|
2029
|
+
subType?: string;
|
|
2030
|
+
id?: string;
|
|
2031
|
+
headline?: string;
|
|
2032
|
+
filingDate?: string;
|
|
2033
|
+
publishedDate?: string;
|
|
2034
|
+
}[];
|
|
2035
|
+
withdrawnDate?: string;
|
|
2036
|
+
}, {
|
|
2037
|
+
sectors?: {
|
|
2038
|
+
id?: string;
|
|
2039
|
+
identifier?: string;
|
|
2040
|
+
}[];
|
|
2041
|
+
keyPeople?: {
|
|
2042
|
+
id?: string;
|
|
2043
|
+
linkedinUrl?: string;
|
|
2044
|
+
fullName?: string;
|
|
2045
|
+
email?: string;
|
|
2046
|
+
phone?: string;
|
|
2047
|
+
source?: string;
|
|
2048
|
+
created?: string;
|
|
2049
|
+
roles?: string[];
|
|
2050
|
+
}[];
|
|
2051
|
+
id?: string;
|
|
2052
|
+
applicationId?: string;
|
|
2053
|
+
queueDataset?: string;
|
|
2054
|
+
country?: {
|
|
2055
|
+
id?: string;
|
|
2056
|
+
identifier?: string;
|
|
2057
|
+
}[];
|
|
2058
|
+
documents?: {
|
|
2059
|
+
type?: string[];
|
|
2060
|
+
key?: string;
|
|
2061
|
+
date?: string;
|
|
2062
|
+
document_id?: string;
|
|
2063
|
+
url?: string;
|
|
2064
|
+
filing_id?: string;
|
|
2065
|
+
isSignal?: boolean;
|
|
2066
|
+
}[];
|
|
2067
|
+
organizations?: {
|
|
2068
|
+
id?: string;
|
|
2069
|
+
identifier?: string;
|
|
2070
|
+
role?: string;
|
|
2071
|
+
ref?: string;
|
|
2072
|
+
}[];
|
|
2073
|
+
allSectors?: string;
|
|
2074
|
+
$organizations?: string;
|
|
2075
|
+
reportDate?: string;
|
|
2076
|
+
applicationTags?: {
|
|
2077
|
+
identifier?: string;
|
|
2078
|
+
}[];
|
|
2079
|
+
queueDate?: string;
|
|
2080
|
+
schema?: "us_queue";
|
|
2081
|
+
actualOperationalDate?: string;
|
|
2082
|
+
localCounty?: {
|
|
2083
|
+
id?: string;
|
|
2084
|
+
identifier?: string;
|
|
2085
|
+
}[];
|
|
2086
|
+
localState?: {
|
|
2087
|
+
id?: string;
|
|
2088
|
+
identifier?: string;
|
|
2089
|
+
}[];
|
|
2090
|
+
plannedOperationalDate?: string;
|
|
2091
|
+
projectName?: string;
|
|
2092
|
+
totalMw?: number;
|
|
2093
|
+
applicationStatus?: string;
|
|
2094
|
+
poiLocation?: string | number;
|
|
2095
|
+
sourceUpdate?: string;
|
|
2096
|
+
applicationType?: string;
|
|
2097
|
+
cost?: {
|
|
2098
|
+
costCompany?: string;
|
|
2099
|
+
costYear?: number;
|
|
2100
|
+
networkCostKW?: number;
|
|
2101
|
+
poiCostKW?: number;
|
|
2102
|
+
totalCostKW?: number;
|
|
2103
|
+
};
|
|
2104
|
+
dateCreated?: string;
|
|
2105
|
+
events?: {
|
|
2106
|
+
id?: string;
|
|
2107
|
+
queueKey?: string;
|
|
2108
|
+
applicationId?: string;
|
|
2109
|
+
set?: number;
|
|
2110
|
+
daysInQueue?: number;
|
|
2111
|
+
eventHash?: string;
|
|
2112
|
+
reportDate?: string;
|
|
2113
|
+
eventType?: "add" | "update";
|
|
2114
|
+
propKey?: string;
|
|
2115
|
+
propType?: "applicationTags" | "tracked";
|
|
2116
|
+
propVal?: string;
|
|
2117
|
+
queueDate?: string;
|
|
2118
|
+
transition?: {
|
|
2119
|
+
delta?: number;
|
|
2120
|
+
durationInDays?: number;
|
|
2121
|
+
from?: {
|
|
2122
|
+
value?: string;
|
|
2123
|
+
assigned?: string;
|
|
2124
|
+
};
|
|
2125
|
+
to?: {
|
|
2126
|
+
value?: string;
|
|
2127
|
+
assigned?: string;
|
|
2128
|
+
};
|
|
2129
|
+
};
|
|
2130
|
+
}[];
|
|
2131
|
+
isoRtoConnection?: {
|
|
2132
|
+
id?: string;
|
|
2133
|
+
identifier?: string;
|
|
2134
|
+
}[];
|
|
2135
|
+
milestones?: {
|
|
2136
|
+
type?: string;
|
|
2137
|
+
state?: string;
|
|
2138
|
+
key?: string;
|
|
2139
|
+
entries?: {
|
|
2140
|
+
daysInQueue?: number;
|
|
2141
|
+
delta?: number;
|
|
2142
|
+
durationInDays?: number;
|
|
2143
|
+
eventHash?: string;
|
|
2144
|
+
fromValue?: string;
|
|
2145
|
+
label?: string;
|
|
2146
|
+
reportDate?: string;
|
|
2147
|
+
stage?: string;
|
|
2148
|
+
toValue?: string;
|
|
2149
|
+
}[];
|
|
2150
|
+
set?: number;
|
|
2151
|
+
daysInQueue?: number;
|
|
2152
|
+
delta?: number;
|
|
2153
|
+
durationInDays?: number;
|
|
2154
|
+
eventHash?: string;
|
|
2155
|
+
fromValue?: string;
|
|
2156
|
+
label?: string;
|
|
2157
|
+
reportDate?: string;
|
|
2158
|
+
stage?: string;
|
|
2159
|
+
toValue?: string;
|
|
2160
|
+
compositeKey?: string;
|
|
2161
|
+
eventCount?: number;
|
|
2162
|
+
searchKey?: string;
|
|
2163
|
+
topic?: string;
|
|
2164
|
+
}[];
|
|
2165
|
+
poi?: {
|
|
2166
|
+
id?: string;
|
|
2167
|
+
identifier?: string;
|
|
2168
|
+
kV?: string;
|
|
2169
|
+
meta?: string;
|
|
2170
|
+
poiGroup?: string;
|
|
2171
|
+
};
|
|
2172
|
+
reportCount?: number;
|
|
2173
|
+
signals?: {
|
|
2174
|
+
type?: string;
|
|
2175
|
+
subType?: string;
|
|
2176
|
+
id?: string;
|
|
2177
|
+
headline?: string;
|
|
2178
|
+
filingDate?: string;
|
|
2179
|
+
publishedDate?: string;
|
|
2180
|
+
}[];
|
|
2181
|
+
withdrawnDate?: string;
|
|
2182
|
+
}>]>;
|
|
2183
|
+
export declare const queueDetailsUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.ZodObject<{
|
|
2184
|
+
id: z.ZodString;
|
|
2185
|
+
} & {
|
|
2186
|
+
schema: z.ZodLiteral<"eu_queue">;
|
|
2187
|
+
} & {
|
|
2188
|
+
$organizations: z.ZodOptional<z.ZodString>;
|
|
2189
|
+
allSectors: z.ZodOptional<z.ZodString>;
|
|
2190
|
+
applicationId: z.ZodOptional<z.ZodString>;
|
|
2191
|
+
applicationStatus: z.ZodOptional<z.ZodString>;
|
|
2192
|
+
country: z.ZodOptional<z.ZodString>;
|
|
2193
|
+
lastModified: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
2194
|
+
localCounty: z.ZodOptional<z.ZodString>;
|
|
2195
|
+
localState: z.ZodOptional<z.ZodString>;
|
|
2196
|
+
localTown: z.ZodOptional<z.ZodString>;
|
|
2197
|
+
mwNet: z.ZodOptional<z.ZodNumber>;
|
|
2198
|
+
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2199
|
+
identifier: z.ZodString;
|
|
2200
|
+
id: z.ZodString;
|
|
2201
|
+
} & {
|
|
2202
|
+
role: z.ZodString;
|
|
2203
|
+
ref: z.ZodOptional<z.ZodString>;
|
|
2204
|
+
}, "strip", z.ZodTypeAny, {
|
|
2205
|
+
id?: string;
|
|
2206
|
+
identifier?: string;
|
|
2207
|
+
role?: string;
|
|
2208
|
+
ref?: string;
|
|
2209
|
+
}, {
|
|
2210
|
+
id?: string;
|
|
2211
|
+
identifier?: string;
|
|
2212
|
+
role?: string;
|
|
2213
|
+
ref?: string;
|
|
2214
|
+
}>, "many">>;
|
|
2215
|
+
projectName: z.ZodOptional<z.ZodString>;
|
|
2216
|
+
queueDataset: z.ZodOptional<z.ZodString>;
|
|
2217
|
+
queueDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
2218
|
+
refId: z.ZodOptional<z.ZodString>;
|
|
2219
|
+
sectors: z.ZodArray<z.ZodObject<{
|
|
2220
|
+
identifier: z.ZodString;
|
|
2221
|
+
id: z.ZodString;
|
|
2222
|
+
}, "strip", z.ZodTypeAny, {
|
|
2223
|
+
id?: string;
|
|
2224
|
+
identifier?: string;
|
|
2225
|
+
}, {
|
|
2226
|
+
id?: string;
|
|
2227
|
+
identifier?: string;
|
|
2228
|
+
}>, "many">;
|
|
2229
|
+
sourceUpdate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
2230
|
+
status: z.ZodOptional<z.ZodString>;
|
|
2231
|
+
storageCapacity: z.ZodOptional<z.ZodNumber>;
|
|
2232
|
+
technology: z.ZodOptional<z.ZodString>;
|
|
2233
|
+
totalMw: z.ZodOptional<z.ZodNumber>;
|
|
2234
|
+
windFarmName: z.ZodOptional<z.ZodString>;
|
|
2235
|
+
}, "strict", z.ZodTypeAny, {
|
|
2236
|
+
sectors?: {
|
|
2237
|
+
id?: string;
|
|
2238
|
+
identifier?: string;
|
|
2239
|
+
}[];
|
|
2240
|
+
id?: string;
|
|
2241
|
+
status?: string;
|
|
2242
|
+
applicationId?: string;
|
|
2243
|
+
queueDataset?: string;
|
|
2244
|
+
country?: string;
|
|
2245
|
+
organizations?: {
|
|
2246
|
+
id?: string;
|
|
2247
|
+
identifier?: string;
|
|
2248
|
+
role?: string;
|
|
2249
|
+
ref?: string;
|
|
2250
|
+
}[];
|
|
2251
|
+
allSectors?: string;
|
|
2252
|
+
$organizations?: string;
|
|
2253
|
+
queueDate?: string;
|
|
2254
|
+
schema?: "eu_queue";
|
|
2255
|
+
lastModified?: string;
|
|
2256
|
+
localCounty?: string;
|
|
2257
|
+
localState?: string;
|
|
2258
|
+
projectName?: string;
|
|
2259
|
+
totalMw?: number;
|
|
2260
|
+
applicationStatus?: string;
|
|
2261
|
+
localTown?: string;
|
|
2262
|
+
mwNet?: number;
|
|
2263
|
+
refId?: string;
|
|
2264
|
+
sourceUpdate?: string;
|
|
2265
|
+
storageCapacity?: number;
|
|
2266
|
+
technology?: string;
|
|
2267
|
+
windFarmName?: string;
|
|
2268
|
+
}, {
|
|
2269
|
+
sectors?: {
|
|
2270
|
+
id?: string;
|
|
2271
|
+
identifier?: string;
|
|
2272
|
+
}[];
|
|
2273
|
+
id?: string;
|
|
2274
|
+
status?: string;
|
|
2275
|
+
applicationId?: string;
|
|
2276
|
+
queueDataset?: string;
|
|
2277
|
+
country?: string;
|
|
2278
|
+
organizations?: {
|
|
2279
|
+
id?: string;
|
|
2280
|
+
identifier?: string;
|
|
2281
|
+
role?: string;
|
|
2282
|
+
ref?: string;
|
|
2283
|
+
}[];
|
|
2284
|
+
allSectors?: string;
|
|
2285
|
+
$organizations?: string;
|
|
2286
|
+
queueDate?: string;
|
|
2287
|
+
schema?: "eu_queue";
|
|
2288
|
+
lastModified?: string;
|
|
2289
|
+
localCounty?: string;
|
|
2290
|
+
localState?: string;
|
|
2291
|
+
projectName?: string;
|
|
2292
|
+
totalMw?: number;
|
|
2293
|
+
applicationStatus?: string;
|
|
2294
|
+
localTown?: string;
|
|
2295
|
+
mwNet?: number;
|
|
2296
|
+
refId?: string;
|
|
2297
|
+
sourceUpdate?: string;
|
|
2298
|
+
storageCapacity?: number;
|
|
2299
|
+
technology?: string;
|
|
2300
|
+
windFarmName?: string;
|
|
2301
|
+
}>, z.ZodObject<{
|
|
2302
|
+
id: z.ZodString;
|
|
2303
|
+
} & {
|
|
2304
|
+
schema: z.ZodLiteral<"us_queue">;
|
|
2305
|
+
} & {
|
|
2306
|
+
$organizations: z.ZodOptional<z.ZodString>;
|
|
2307
|
+
actualOperationalDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
2308
|
+
allSectors: z.ZodOptional<z.ZodString>;
|
|
2309
|
+
applicationId: z.ZodOptional<z.ZodString>;
|
|
2310
|
+
applicationTags: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2311
|
+
identifier: z.ZodString;
|
|
2312
|
+
}, "strip", z.ZodTypeAny, {
|
|
2313
|
+
identifier?: string;
|
|
2314
|
+
}, {
|
|
2315
|
+
identifier?: string;
|
|
2316
|
+
}>, "many">>;
|
|
2317
|
+
applicationType: z.ZodOptional<z.ZodString>;
|
|
2318
|
+
applicationStatus: z.ZodOptional<z.ZodString>;
|
|
2319
|
+
cost: z.ZodOptional<z.ZodObject<{
|
|
2320
|
+
costCompany: z.ZodString;
|
|
2321
|
+
costYear: z.ZodNumber;
|
|
2322
|
+
networkCostKW: z.ZodNumber;
|
|
2323
|
+
poiCostKW: z.ZodNumber;
|
|
2324
|
+
totalCostKW: z.ZodNumber;
|
|
2325
|
+
}, "strip", z.ZodTypeAny, {
|
|
2326
|
+
costCompany?: string;
|
|
2327
|
+
costYear?: number;
|
|
2328
|
+
networkCostKW?: number;
|
|
2329
|
+
poiCostKW?: number;
|
|
2330
|
+
totalCostKW?: number;
|
|
2331
|
+
}, {
|
|
2332
|
+
costCompany?: string;
|
|
2333
|
+
costYear?: number;
|
|
2334
|
+
networkCostKW?: number;
|
|
2335
|
+
poiCostKW?: number;
|
|
2336
|
+
totalCostKW?: number;
|
|
2337
|
+
}>>;
|
|
2338
|
+
country: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2339
|
+
identifier: z.ZodString;
|
|
2340
|
+
id: z.ZodString;
|
|
2341
|
+
}, "strip", z.ZodTypeAny, {
|
|
2342
|
+
id?: string;
|
|
2343
|
+
identifier?: string;
|
|
2344
|
+
}, {
|
|
2345
|
+
id?: string;
|
|
2346
|
+
identifier?: string;
|
|
2347
|
+
}>, "many">>;
|
|
2348
|
+
dateCreated: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
2349
|
+
documents: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2350
|
+
date: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
2351
|
+
document_id: z.ZodOptional<z.ZodString>;
|
|
2352
|
+
filing_id: z.ZodOptional<z.ZodString>;
|
|
2353
|
+
isSignal: z.ZodBoolean;
|
|
2354
|
+
key: z.ZodOptional<z.ZodString>;
|
|
2355
|
+
type: z.ZodArray<z.ZodString, "many">;
|
|
2356
|
+
url: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2357
|
+
}, "strip", z.ZodTypeAny, {
|
|
2358
|
+
type?: string[];
|
|
2359
|
+
key?: string;
|
|
2360
|
+
date?: string;
|
|
2361
|
+
document_id?: string;
|
|
2362
|
+
url?: string;
|
|
2363
|
+
filing_id?: string;
|
|
2364
|
+
isSignal?: boolean;
|
|
2365
|
+
}, {
|
|
2366
|
+
type?: string[];
|
|
2367
|
+
key?: string;
|
|
2368
|
+
date?: string;
|
|
2369
|
+
document_id?: string;
|
|
2370
|
+
url?: string;
|
|
2371
|
+
filing_id?: string;
|
|
2372
|
+
isSignal?: boolean;
|
|
2373
|
+
}>, "many">>;
|
|
2374
|
+
events: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2375
|
+
applicationId: z.ZodString;
|
|
2376
|
+
daysInQueue: z.ZodOptional<z.ZodNumber>;
|
|
2377
|
+
eventHash: z.ZodOptional<z.ZodString>;
|
|
2378
|
+
eventType: z.ZodEnum<["add", "update"]>;
|
|
2379
|
+
id: z.ZodString;
|
|
2380
|
+
propKey: z.ZodString;
|
|
2381
|
+
propType: z.ZodEnum<["applicationTags", "tracked"]>;
|
|
2382
|
+
propVal: z.ZodString;
|
|
2383
|
+
queueDate: z.ZodString;
|
|
2384
|
+
queueKey: z.ZodString;
|
|
2385
|
+
reportDate: z.ZodString;
|
|
2386
|
+
set: z.ZodNumber;
|
|
2387
|
+
transition: z.ZodOptional<z.ZodObject<{
|
|
2388
|
+
delta: z.ZodOptional<z.ZodNumber>;
|
|
2389
|
+
durationInDays: z.ZodNumber;
|
|
2390
|
+
from: z.ZodObject<{
|
|
2391
|
+
assigned: z.ZodString;
|
|
2392
|
+
value: z.ZodString;
|
|
2393
|
+
}, "strip", z.ZodTypeAny, {
|
|
2394
|
+
value?: string;
|
|
2395
|
+
assigned?: string;
|
|
2396
|
+
}, {
|
|
2397
|
+
value?: string;
|
|
2398
|
+
assigned?: string;
|
|
2399
|
+
}>;
|
|
2400
|
+
to: z.ZodObject<{
|
|
2401
|
+
assigned: z.ZodString;
|
|
2402
|
+
value: z.ZodString;
|
|
2403
|
+
}, "strip", z.ZodTypeAny, {
|
|
2404
|
+
value?: string;
|
|
2405
|
+
assigned?: string;
|
|
2406
|
+
}, {
|
|
2407
|
+
value?: string;
|
|
2408
|
+
assigned?: string;
|
|
2409
|
+
}>;
|
|
2410
|
+
}, "strip", z.ZodTypeAny, {
|
|
2411
|
+
delta?: number;
|
|
2412
|
+
durationInDays?: number;
|
|
2413
|
+
from?: {
|
|
2414
|
+
value?: string;
|
|
2415
|
+
assigned?: string;
|
|
2416
|
+
};
|
|
2417
|
+
to?: {
|
|
2418
|
+
value?: string;
|
|
2419
|
+
assigned?: string;
|
|
2420
|
+
};
|
|
2421
|
+
}, {
|
|
2422
|
+
delta?: number;
|
|
2423
|
+
durationInDays?: number;
|
|
2424
|
+
from?: {
|
|
2425
|
+
value?: string;
|
|
2426
|
+
assigned?: string;
|
|
2427
|
+
};
|
|
2428
|
+
to?: {
|
|
2429
|
+
value?: string;
|
|
2430
|
+
assigned?: string;
|
|
2431
|
+
};
|
|
2432
|
+
}>>;
|
|
2433
|
+
}, "strip", z.ZodTypeAny, {
|
|
2434
|
+
id?: string;
|
|
2435
|
+
queueKey?: string;
|
|
2436
|
+
applicationId?: string;
|
|
2437
|
+
set?: number;
|
|
2438
|
+
daysInQueue?: number;
|
|
2439
|
+
eventHash?: string;
|
|
2440
|
+
reportDate?: string;
|
|
2441
|
+
eventType?: "add" | "update";
|
|
2442
|
+
propKey?: string;
|
|
2443
|
+
propType?: "applicationTags" | "tracked";
|
|
2444
|
+
propVal?: string;
|
|
2445
|
+
queueDate?: string;
|
|
2446
|
+
transition?: {
|
|
2447
|
+
delta?: number;
|
|
2448
|
+
durationInDays?: number;
|
|
2449
|
+
from?: {
|
|
2450
|
+
value?: string;
|
|
2451
|
+
assigned?: string;
|
|
2452
|
+
};
|
|
2453
|
+
to?: {
|
|
2454
|
+
value?: string;
|
|
2455
|
+
assigned?: string;
|
|
2456
|
+
};
|
|
2457
|
+
};
|
|
2458
|
+
}, {
|
|
2459
|
+
id?: string;
|
|
2460
|
+
queueKey?: string;
|
|
2461
|
+
applicationId?: string;
|
|
2462
|
+
set?: number;
|
|
2463
|
+
daysInQueue?: number;
|
|
2464
|
+
eventHash?: string;
|
|
2465
|
+
reportDate?: string;
|
|
2466
|
+
eventType?: "add" | "update";
|
|
2467
|
+
propKey?: string;
|
|
2468
|
+
propType?: "applicationTags" | "tracked";
|
|
2469
|
+
propVal?: string;
|
|
2470
|
+
queueDate?: string;
|
|
2471
|
+
transition?: {
|
|
2472
|
+
delta?: number;
|
|
2473
|
+
durationInDays?: number;
|
|
2474
|
+
from?: {
|
|
2475
|
+
value?: string;
|
|
2476
|
+
assigned?: string;
|
|
2477
|
+
};
|
|
2478
|
+
to?: {
|
|
2479
|
+
value?: string;
|
|
2480
|
+
assigned?: string;
|
|
2481
|
+
};
|
|
2482
|
+
};
|
|
2483
|
+
}>, "many">>;
|
|
2484
|
+
isoRtoConnection: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2485
|
+
identifier: z.ZodString;
|
|
2486
|
+
id: z.ZodString;
|
|
2487
|
+
}, "strip", z.ZodTypeAny, {
|
|
2488
|
+
id?: string;
|
|
2489
|
+
identifier?: string;
|
|
2490
|
+
}, {
|
|
2491
|
+
id?: string;
|
|
2492
|
+
identifier?: string;
|
|
2493
|
+
}>, "many">>;
|
|
2494
|
+
keyPeople: z.ZodArray<z.ZodObject<{
|
|
2495
|
+
created: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
2496
|
+
email: z.ZodOptional<z.ZodString>;
|
|
2497
|
+
fullName: z.ZodOptional<z.ZodString>;
|
|
2498
|
+
id: z.ZodOptional<z.ZodString>;
|
|
2499
|
+
linkedinUrl: z.ZodOptional<z.ZodString>;
|
|
2500
|
+
phone: z.ZodOptional<z.ZodString>;
|
|
2501
|
+
roles: z.ZodArray<z.ZodOptional<z.ZodString>, "many">;
|
|
2502
|
+
source: z.ZodOptional<z.ZodString>;
|
|
2503
|
+
}, "strip", z.ZodTypeAny, {
|
|
2504
|
+
id?: string;
|
|
2505
|
+
linkedinUrl?: string;
|
|
2506
|
+
fullName?: string;
|
|
2507
|
+
email?: string;
|
|
2508
|
+
phone?: string;
|
|
2509
|
+
source?: string;
|
|
2510
|
+
created?: string;
|
|
2511
|
+
roles?: string[];
|
|
2512
|
+
}, {
|
|
2513
|
+
id?: string;
|
|
2514
|
+
linkedinUrl?: string;
|
|
2515
|
+
fullName?: string;
|
|
2516
|
+
email?: string;
|
|
2517
|
+
phone?: string;
|
|
2518
|
+
source?: string;
|
|
2519
|
+
created?: string;
|
|
2520
|
+
roles?: string[];
|
|
2521
|
+
}>, "many">;
|
|
2522
|
+
localCounty: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2523
|
+
identifier: z.ZodString;
|
|
2524
|
+
id: z.ZodString;
|
|
2525
|
+
}, "strip", z.ZodTypeAny, {
|
|
2526
|
+
id?: string;
|
|
2527
|
+
identifier?: string;
|
|
2528
|
+
}, {
|
|
2529
|
+
id?: string;
|
|
2530
|
+
identifier?: string;
|
|
2531
|
+
}>, "many">>;
|
|
2532
|
+
localState: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2533
|
+
identifier: z.ZodString;
|
|
2534
|
+
id: z.ZodString;
|
|
2535
|
+
}, "strip", z.ZodTypeAny, {
|
|
2536
|
+
id?: string;
|
|
2537
|
+
identifier?: string;
|
|
2538
|
+
}, {
|
|
2539
|
+
id?: string;
|
|
2540
|
+
identifier?: string;
|
|
2541
|
+
}>, "many">>;
|
|
2542
|
+
milestones: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2543
|
+
compositeKey: z.ZodString;
|
|
2544
|
+
daysInQueue: z.ZodOptional<z.ZodNumber>;
|
|
2545
|
+
delta: z.ZodOptional<z.ZodNumber>;
|
|
2546
|
+
durationInDays: z.ZodOptional<z.ZodNumber>;
|
|
2547
|
+
entries: z.ZodArray<z.ZodObject<{
|
|
2548
|
+
daysInQueue: z.ZodOptional<z.ZodNumber>;
|
|
2549
|
+
delta: z.ZodOptional<z.ZodNumber>;
|
|
2550
|
+
durationInDays: z.ZodOptional<z.ZodNumber>;
|
|
2551
|
+
eventHash: z.ZodString;
|
|
2552
|
+
fromValue: z.ZodOptional<z.ZodString>;
|
|
2553
|
+
label: z.ZodString;
|
|
2554
|
+
reportDate: z.ZodString;
|
|
2555
|
+
stage: z.ZodString;
|
|
2556
|
+
toValue: z.ZodString;
|
|
2557
|
+
}, "strip", z.ZodTypeAny, {
|
|
2558
|
+
daysInQueue?: number;
|
|
2559
|
+
delta?: number;
|
|
2560
|
+
durationInDays?: number;
|
|
2561
|
+
eventHash?: string;
|
|
2562
|
+
fromValue?: string;
|
|
2563
|
+
label?: string;
|
|
2564
|
+
reportDate?: string;
|
|
2565
|
+
stage?: string;
|
|
2566
|
+
toValue?: string;
|
|
2567
|
+
}, {
|
|
2568
|
+
daysInQueue?: number;
|
|
2569
|
+
delta?: number;
|
|
2570
|
+
durationInDays?: number;
|
|
2571
|
+
eventHash?: string;
|
|
2572
|
+
fromValue?: string;
|
|
2573
|
+
label?: string;
|
|
2574
|
+
reportDate?: string;
|
|
2575
|
+
stage?: string;
|
|
2576
|
+
toValue?: string;
|
|
2577
|
+
}>, "many">;
|
|
2578
|
+
eventCount: z.ZodNumber;
|
|
2579
|
+
eventHash: z.ZodString;
|
|
2580
|
+
fromValue: z.ZodOptional<z.ZodString>;
|
|
2581
|
+
key: z.ZodString;
|
|
2582
|
+
label: z.ZodString;
|
|
2583
|
+
reportDate: z.ZodString;
|
|
2584
|
+
searchKey: z.ZodString;
|
|
2585
|
+
set: z.ZodNumber;
|
|
2586
|
+
stage: z.ZodString;
|
|
2587
|
+
state: z.ZodString;
|
|
2588
|
+
topic: z.ZodString;
|
|
2589
|
+
toValue: z.ZodString;
|
|
2590
|
+
type: z.ZodString;
|
|
2591
|
+
}, "strip", z.ZodTypeAny, {
|
|
2592
|
+
type?: string;
|
|
2593
|
+
state?: string;
|
|
2594
|
+
key?: string;
|
|
2595
|
+
entries?: {
|
|
2596
|
+
daysInQueue?: number;
|
|
2597
|
+
delta?: number;
|
|
2598
|
+
durationInDays?: number;
|
|
2599
|
+
eventHash?: string;
|
|
2600
|
+
fromValue?: string;
|
|
2601
|
+
label?: string;
|
|
2602
|
+
reportDate?: string;
|
|
2603
|
+
stage?: string;
|
|
2604
|
+
toValue?: string;
|
|
2605
|
+
}[];
|
|
2606
|
+
set?: number;
|
|
2607
|
+
daysInQueue?: number;
|
|
2608
|
+
delta?: number;
|
|
2609
|
+
durationInDays?: number;
|
|
2610
|
+
eventHash?: string;
|
|
2611
|
+
fromValue?: string;
|
|
2612
|
+
label?: string;
|
|
2613
|
+
reportDate?: string;
|
|
2614
|
+
stage?: string;
|
|
2615
|
+
toValue?: string;
|
|
2616
|
+
compositeKey?: string;
|
|
2617
|
+
eventCount?: number;
|
|
2618
|
+
searchKey?: string;
|
|
2619
|
+
topic?: string;
|
|
2620
|
+
}, {
|
|
2621
|
+
type?: string;
|
|
2622
|
+
state?: string;
|
|
2623
|
+
key?: string;
|
|
2624
|
+
entries?: {
|
|
2625
|
+
daysInQueue?: number;
|
|
2626
|
+
delta?: number;
|
|
2627
|
+
durationInDays?: number;
|
|
2628
|
+
eventHash?: string;
|
|
2629
|
+
fromValue?: string;
|
|
2630
|
+
label?: string;
|
|
2631
|
+
reportDate?: string;
|
|
2632
|
+
stage?: string;
|
|
2633
|
+
toValue?: string;
|
|
2634
|
+
}[];
|
|
2635
|
+
set?: number;
|
|
2636
|
+
daysInQueue?: number;
|
|
2637
|
+
delta?: number;
|
|
2638
|
+
durationInDays?: number;
|
|
2639
|
+
eventHash?: string;
|
|
2640
|
+
fromValue?: string;
|
|
2641
|
+
label?: string;
|
|
2642
|
+
reportDate?: string;
|
|
2643
|
+
stage?: string;
|
|
2644
|
+
toValue?: string;
|
|
2645
|
+
compositeKey?: string;
|
|
2646
|
+
eventCount?: number;
|
|
2647
|
+
searchKey?: string;
|
|
2648
|
+
topic?: string;
|
|
2649
|
+
}>, "many">>;
|
|
2650
|
+
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2651
|
+
identifier: z.ZodString;
|
|
2652
|
+
id: z.ZodString;
|
|
2653
|
+
} & {
|
|
2654
|
+
role: z.ZodString;
|
|
2655
|
+
ref: z.ZodOptional<z.ZodString>;
|
|
2656
|
+
}, "strip", z.ZodTypeAny, {
|
|
2657
|
+
id?: string;
|
|
2658
|
+
identifier?: string;
|
|
2659
|
+
role?: string;
|
|
2660
|
+
ref?: string;
|
|
2661
|
+
}, {
|
|
2662
|
+
id?: string;
|
|
2663
|
+
identifier?: string;
|
|
2664
|
+
role?: string;
|
|
2665
|
+
ref?: string;
|
|
2666
|
+
}>, "many">>;
|
|
2667
|
+
plannedOperationalDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
2668
|
+
poi: z.ZodOptional<z.ZodObject<{
|
|
2669
|
+
id: z.ZodString;
|
|
2670
|
+
identifier: z.ZodString;
|
|
2671
|
+
kV: z.ZodOptional<z.ZodString>;
|
|
2672
|
+
meta: z.ZodOptional<z.ZodString>;
|
|
2673
|
+
poiGroup: z.ZodString;
|
|
2674
|
+
}, "strip", z.ZodTypeAny, {
|
|
2675
|
+
id?: string;
|
|
2676
|
+
identifier?: string;
|
|
2677
|
+
kV?: string;
|
|
2678
|
+
meta?: string;
|
|
2679
|
+
poiGroup?: string;
|
|
2680
|
+
}, {
|
|
2681
|
+
id?: string;
|
|
2682
|
+
identifier?: string;
|
|
2683
|
+
kV?: string;
|
|
2684
|
+
meta?: string;
|
|
2685
|
+
poiGroup?: string;
|
|
2686
|
+
}>>;
|
|
2687
|
+
poiLocation: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodOptional<z.ZodNumber>]>;
|
|
2688
|
+
projectName: z.ZodOptional<z.ZodString>;
|
|
2689
|
+
queueDataset: z.ZodOptional<z.ZodString>;
|
|
2690
|
+
queueDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
2691
|
+
reportCount: z.ZodOptional<z.ZodNumber>;
|
|
2692
|
+
reportDate: z.ZodOptional<z.ZodString>;
|
|
2693
|
+
sectors: z.ZodArray<z.ZodObject<{
|
|
2694
|
+
identifier: z.ZodString;
|
|
2695
|
+
id: z.ZodString;
|
|
2696
|
+
}, "strip", z.ZodTypeAny, {
|
|
2697
|
+
id?: string;
|
|
2698
|
+
identifier?: string;
|
|
2699
|
+
}, {
|
|
2700
|
+
id?: string;
|
|
2701
|
+
identifier?: string;
|
|
2702
|
+
}>, "many">;
|
|
2703
|
+
sourceUpdate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
2704
|
+
signals: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2705
|
+
filingDate: z.ZodString;
|
|
2706
|
+
headline: z.ZodString;
|
|
2707
|
+
id: z.ZodString;
|
|
2708
|
+
publishedDate: z.ZodString;
|
|
2709
|
+
subType: z.ZodString;
|
|
2710
|
+
type: z.ZodString;
|
|
2711
|
+
}, "strip", z.ZodTypeAny, {
|
|
2712
|
+
type?: string;
|
|
2713
|
+
subType?: string;
|
|
2714
|
+
id?: string;
|
|
2715
|
+
headline?: string;
|
|
2716
|
+
filingDate?: string;
|
|
2717
|
+
publishedDate?: string;
|
|
2718
|
+
}, {
|
|
2719
|
+
type?: string;
|
|
2720
|
+
subType?: string;
|
|
2721
|
+
id?: string;
|
|
2722
|
+
headline?: string;
|
|
2723
|
+
filingDate?: string;
|
|
2724
|
+
publishedDate?: string;
|
|
2725
|
+
}>, "many">>;
|
|
2726
|
+
totalMw: z.ZodOptional<z.ZodNumber>;
|
|
2727
|
+
withdrawnDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
2728
|
+
}, "strict", z.ZodTypeAny, {
|
|
2729
|
+
sectors?: {
|
|
2730
|
+
id?: string;
|
|
2731
|
+
identifier?: string;
|
|
2732
|
+
}[];
|
|
2733
|
+
keyPeople?: {
|
|
2734
|
+
id?: string;
|
|
2735
|
+
linkedinUrl?: string;
|
|
2736
|
+
fullName?: string;
|
|
2737
|
+
email?: string;
|
|
2738
|
+
phone?: string;
|
|
2739
|
+
source?: string;
|
|
2740
|
+
created?: string;
|
|
2741
|
+
roles?: string[];
|
|
2742
|
+
}[];
|
|
2743
|
+
id?: string;
|
|
2744
|
+
applicationId?: string;
|
|
2745
|
+
queueDataset?: string;
|
|
2746
|
+
country?: {
|
|
2747
|
+
id?: string;
|
|
2748
|
+
identifier?: string;
|
|
2749
|
+
}[];
|
|
2750
|
+
documents?: {
|
|
2751
|
+
type?: string[];
|
|
2752
|
+
key?: string;
|
|
2753
|
+
date?: string;
|
|
2754
|
+
document_id?: string;
|
|
2755
|
+
url?: string;
|
|
2756
|
+
filing_id?: string;
|
|
2757
|
+
isSignal?: boolean;
|
|
2758
|
+
}[];
|
|
2759
|
+
organizations?: {
|
|
2760
|
+
id?: string;
|
|
2761
|
+
identifier?: string;
|
|
2762
|
+
role?: string;
|
|
2763
|
+
ref?: string;
|
|
2764
|
+
}[];
|
|
2765
|
+
allSectors?: string;
|
|
2766
|
+
$organizations?: string;
|
|
2767
|
+
reportDate?: string;
|
|
2768
|
+
applicationTags?: {
|
|
2769
|
+
identifier?: string;
|
|
2770
|
+
}[];
|
|
2771
|
+
queueDate?: string;
|
|
2772
|
+
schema?: "us_queue";
|
|
2773
|
+
actualOperationalDate?: string;
|
|
2774
|
+
localCounty?: {
|
|
2775
|
+
id?: string;
|
|
2776
|
+
identifier?: string;
|
|
2777
|
+
}[];
|
|
2778
|
+
localState?: {
|
|
2779
|
+
id?: string;
|
|
2780
|
+
identifier?: string;
|
|
2781
|
+
}[];
|
|
2782
|
+
plannedOperationalDate?: string;
|
|
2783
|
+
projectName?: string;
|
|
2784
|
+
totalMw?: number;
|
|
2785
|
+
applicationStatus?: string;
|
|
2786
|
+
poiLocation?: string | number;
|
|
2787
|
+
sourceUpdate?: string;
|
|
2788
|
+
applicationType?: string;
|
|
2789
|
+
cost?: {
|
|
2790
|
+
costCompany?: string;
|
|
2791
|
+
costYear?: number;
|
|
2792
|
+
networkCostKW?: number;
|
|
2793
|
+
poiCostKW?: number;
|
|
2794
|
+
totalCostKW?: number;
|
|
2795
|
+
};
|
|
2796
|
+
dateCreated?: string;
|
|
2797
|
+
events?: {
|
|
2798
|
+
id?: string;
|
|
2799
|
+
queueKey?: string;
|
|
2800
|
+
applicationId?: string;
|
|
2801
|
+
set?: number;
|
|
2802
|
+
daysInQueue?: number;
|
|
2803
|
+
eventHash?: string;
|
|
2804
|
+
reportDate?: string;
|
|
2805
|
+
eventType?: "add" | "update";
|
|
2806
|
+
propKey?: string;
|
|
2807
|
+
propType?: "applicationTags" | "tracked";
|
|
2808
|
+
propVal?: string;
|
|
2809
|
+
queueDate?: string;
|
|
2810
|
+
transition?: {
|
|
2811
|
+
delta?: number;
|
|
2812
|
+
durationInDays?: number;
|
|
2813
|
+
from?: {
|
|
2814
|
+
value?: string;
|
|
2815
|
+
assigned?: string;
|
|
2816
|
+
};
|
|
2817
|
+
to?: {
|
|
2818
|
+
value?: string;
|
|
2819
|
+
assigned?: string;
|
|
2820
|
+
};
|
|
2821
|
+
};
|
|
2822
|
+
}[];
|
|
2823
|
+
isoRtoConnection?: {
|
|
2824
|
+
id?: string;
|
|
2825
|
+
identifier?: string;
|
|
2826
|
+
}[];
|
|
2827
|
+
milestones?: {
|
|
2828
|
+
type?: string;
|
|
2829
|
+
state?: string;
|
|
2830
|
+
key?: string;
|
|
2831
|
+
entries?: {
|
|
2832
|
+
daysInQueue?: number;
|
|
2833
|
+
delta?: number;
|
|
2834
|
+
durationInDays?: number;
|
|
2835
|
+
eventHash?: string;
|
|
2836
|
+
fromValue?: string;
|
|
2837
|
+
label?: string;
|
|
2838
|
+
reportDate?: string;
|
|
2839
|
+
stage?: string;
|
|
2840
|
+
toValue?: string;
|
|
2841
|
+
}[];
|
|
2842
|
+
set?: number;
|
|
2843
|
+
daysInQueue?: number;
|
|
2844
|
+
delta?: number;
|
|
2845
|
+
durationInDays?: number;
|
|
2846
|
+
eventHash?: string;
|
|
2847
|
+
fromValue?: string;
|
|
2848
|
+
label?: string;
|
|
2849
|
+
reportDate?: string;
|
|
2850
|
+
stage?: string;
|
|
2851
|
+
toValue?: string;
|
|
2852
|
+
compositeKey?: string;
|
|
2853
|
+
eventCount?: number;
|
|
2854
|
+
searchKey?: string;
|
|
2855
|
+
topic?: string;
|
|
2856
|
+
}[];
|
|
2857
|
+
poi?: {
|
|
2858
|
+
id?: string;
|
|
2859
|
+
identifier?: string;
|
|
2860
|
+
kV?: string;
|
|
2861
|
+
meta?: string;
|
|
2862
|
+
poiGroup?: string;
|
|
2863
|
+
};
|
|
2864
|
+
reportCount?: number;
|
|
2865
|
+
signals?: {
|
|
2866
|
+
type?: string;
|
|
2867
|
+
subType?: string;
|
|
2868
|
+
id?: string;
|
|
2869
|
+
headline?: string;
|
|
2870
|
+
filingDate?: string;
|
|
2871
|
+
publishedDate?: string;
|
|
2872
|
+
}[];
|
|
2873
|
+
withdrawnDate?: string;
|
|
2874
|
+
}, {
|
|
2875
|
+
sectors?: {
|
|
2876
|
+
id?: string;
|
|
2877
|
+
identifier?: string;
|
|
2878
|
+
}[];
|
|
2879
|
+
keyPeople?: {
|
|
2880
|
+
id?: string;
|
|
2881
|
+
linkedinUrl?: string;
|
|
2882
|
+
fullName?: string;
|
|
2883
|
+
email?: string;
|
|
2884
|
+
phone?: string;
|
|
2885
|
+
source?: string;
|
|
2886
|
+
created?: string;
|
|
2887
|
+
roles?: string[];
|
|
2888
|
+
}[];
|
|
2889
|
+
id?: string;
|
|
2890
|
+
applicationId?: string;
|
|
2891
|
+
queueDataset?: string;
|
|
2892
|
+
country?: {
|
|
2893
|
+
id?: string;
|
|
2894
|
+
identifier?: string;
|
|
2895
|
+
}[];
|
|
2896
|
+
documents?: {
|
|
2897
|
+
type?: string[];
|
|
2898
|
+
key?: string;
|
|
2899
|
+
date?: string;
|
|
2900
|
+
document_id?: string;
|
|
2901
|
+
url?: string;
|
|
2902
|
+
filing_id?: string;
|
|
2903
|
+
isSignal?: boolean;
|
|
2904
|
+
}[];
|
|
2905
|
+
organizations?: {
|
|
2906
|
+
id?: string;
|
|
2907
|
+
identifier?: string;
|
|
2908
|
+
role?: string;
|
|
2909
|
+
ref?: string;
|
|
2910
|
+
}[];
|
|
2911
|
+
allSectors?: string;
|
|
2912
|
+
$organizations?: string;
|
|
2913
|
+
reportDate?: string;
|
|
2914
|
+
applicationTags?: {
|
|
2915
|
+
identifier?: string;
|
|
2916
|
+
}[];
|
|
2917
|
+
queueDate?: string;
|
|
2918
|
+
schema?: "us_queue";
|
|
2919
|
+
actualOperationalDate?: string;
|
|
2920
|
+
localCounty?: {
|
|
2921
|
+
id?: string;
|
|
2922
|
+
identifier?: string;
|
|
2923
|
+
}[];
|
|
2924
|
+
localState?: {
|
|
2925
|
+
id?: string;
|
|
2926
|
+
identifier?: string;
|
|
2927
|
+
}[];
|
|
2928
|
+
plannedOperationalDate?: string;
|
|
2929
|
+
projectName?: string;
|
|
2930
|
+
totalMw?: number;
|
|
2931
|
+
applicationStatus?: string;
|
|
2932
|
+
poiLocation?: string | number;
|
|
2933
|
+
sourceUpdate?: string;
|
|
2934
|
+
applicationType?: string;
|
|
2935
|
+
cost?: {
|
|
2936
|
+
costCompany?: string;
|
|
2937
|
+
costYear?: number;
|
|
2938
|
+
networkCostKW?: number;
|
|
2939
|
+
poiCostKW?: number;
|
|
2940
|
+
totalCostKW?: number;
|
|
2941
|
+
};
|
|
2942
|
+
dateCreated?: string;
|
|
2943
|
+
events?: {
|
|
2944
|
+
id?: string;
|
|
2945
|
+
queueKey?: string;
|
|
2946
|
+
applicationId?: string;
|
|
2947
|
+
set?: number;
|
|
2948
|
+
daysInQueue?: number;
|
|
2949
|
+
eventHash?: string;
|
|
2950
|
+
reportDate?: string;
|
|
2951
|
+
eventType?: "add" | "update";
|
|
2952
|
+
propKey?: string;
|
|
2953
|
+
propType?: "applicationTags" | "tracked";
|
|
2954
|
+
propVal?: string;
|
|
2955
|
+
queueDate?: string;
|
|
2956
|
+
transition?: {
|
|
2957
|
+
delta?: number;
|
|
2958
|
+
durationInDays?: number;
|
|
2959
|
+
from?: {
|
|
2960
|
+
value?: string;
|
|
2961
|
+
assigned?: string;
|
|
2962
|
+
};
|
|
2963
|
+
to?: {
|
|
2964
|
+
value?: string;
|
|
2965
|
+
assigned?: string;
|
|
2966
|
+
};
|
|
2967
|
+
};
|
|
2968
|
+
}[];
|
|
2969
|
+
isoRtoConnection?: {
|
|
2970
|
+
id?: string;
|
|
2971
|
+
identifier?: string;
|
|
2972
|
+
}[];
|
|
2973
|
+
milestones?: {
|
|
2974
|
+
type?: string;
|
|
2975
|
+
state?: string;
|
|
2976
|
+
key?: string;
|
|
2977
|
+
entries?: {
|
|
2978
|
+
daysInQueue?: number;
|
|
2979
|
+
delta?: number;
|
|
2980
|
+
durationInDays?: number;
|
|
2981
|
+
eventHash?: string;
|
|
2982
|
+
fromValue?: string;
|
|
2983
|
+
label?: string;
|
|
2984
|
+
reportDate?: string;
|
|
2985
|
+
stage?: string;
|
|
2986
|
+
toValue?: string;
|
|
2987
|
+
}[];
|
|
2988
|
+
set?: number;
|
|
2989
|
+
daysInQueue?: number;
|
|
2990
|
+
delta?: number;
|
|
2991
|
+
durationInDays?: number;
|
|
2992
|
+
eventHash?: string;
|
|
2993
|
+
fromValue?: string;
|
|
2994
|
+
label?: string;
|
|
2995
|
+
reportDate?: string;
|
|
2996
|
+
stage?: string;
|
|
2997
|
+
toValue?: string;
|
|
2998
|
+
compositeKey?: string;
|
|
2999
|
+
eventCount?: number;
|
|
3000
|
+
searchKey?: string;
|
|
3001
|
+
topic?: string;
|
|
3002
|
+
}[];
|
|
3003
|
+
poi?: {
|
|
3004
|
+
id?: string;
|
|
3005
|
+
identifier?: string;
|
|
3006
|
+
kV?: string;
|
|
3007
|
+
meta?: string;
|
|
3008
|
+
poiGroup?: string;
|
|
3009
|
+
};
|
|
3010
|
+
reportCount?: number;
|
|
3011
|
+
signals?: {
|
|
3012
|
+
type?: string;
|
|
3013
|
+
subType?: string;
|
|
3014
|
+
id?: string;
|
|
3015
|
+
headline?: string;
|
|
3016
|
+
filingDate?: string;
|
|
3017
|
+
publishedDate?: string;
|
|
3018
|
+
}[];
|
|
3019
|
+
withdrawnDate?: string;
|
|
3020
|
+
}>]>;
|
|
3021
|
+
export { baseQueueSchema, euQueueDetailsSchema, usQueueDetailsSchema, euQueueListSchema, usQueueListSchema, };
|
|
3022
|
+
export type QueueDetailsType = z.infer<typeof queueDetailsSchema>;
|
|
3023
|
+
export type QueueDetailsUnionType = z.infer<typeof queueDetailsUnionSchema>;
|
|
3024
|
+
export type EUQueueDetailsType = z.infer<typeof euQueueDetailsSchema>;
|
|
3025
|
+
export type USQueueDetailsType = z.infer<typeof usQueueDetailsSchema>;
|
|
3026
|
+
declare const euQueueListWithSortSchema: z.ZodObject<{
|
|
3027
|
+
id: z.ZodString;
|
|
3028
|
+
} & {
|
|
3029
|
+
schema: z.ZodLiteral<"eu_queue">;
|
|
3030
|
+
} & {
|
|
3031
|
+
actualOperationalDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
3032
|
+
allSectors: z.ZodOptional<z.ZodString>;
|
|
3033
|
+
applicationId: z.ZodOptional<z.ZodString>;
|
|
3034
|
+
country: z.ZodOptional<z.ZodString>;
|
|
3035
|
+
geo: z.ZodOptional<z.ZodObject<{
|
|
3036
|
+
defaultValue: z.ZodOptional<z.ZodString>;
|
|
3037
|
+
default: z.ZodOptional<z.ZodObject<{
|
|
3038
|
+
lon: z.ZodNumber;
|
|
3039
|
+
lat: z.ZodNumber;
|
|
3040
|
+
}, "strip", z.ZodTypeAny, {
|
|
3041
|
+
lat?: number;
|
|
3042
|
+
lon?: number;
|
|
3043
|
+
}, {
|
|
3044
|
+
lat?: number;
|
|
3045
|
+
lon?: number;
|
|
3046
|
+
}>>;
|
|
3047
|
+
project: z.ZodOptional<z.ZodObject<{
|
|
3048
|
+
lon: z.ZodNumber;
|
|
3049
|
+
lat: z.ZodNumber;
|
|
3050
|
+
}, "strip", z.ZodTypeAny, {
|
|
3051
|
+
lat?: number;
|
|
3052
|
+
lon?: number;
|
|
3053
|
+
}, {
|
|
3054
|
+
lat?: number;
|
|
3055
|
+
lon?: number;
|
|
3056
|
+
}>>;
|
|
3057
|
+
county: z.ZodOptional<z.ZodObject<{
|
|
3058
|
+
lon: z.ZodNumber;
|
|
3059
|
+
lat: z.ZodNumber;
|
|
3060
|
+
}, "strip", z.ZodTypeAny, {
|
|
3061
|
+
lat?: number;
|
|
3062
|
+
lon?: number;
|
|
3063
|
+
}, {
|
|
3064
|
+
lat?: number;
|
|
3065
|
+
lon?: number;
|
|
3066
|
+
}>>;
|
|
3067
|
+
facility: z.ZodOptional<z.ZodObject<{
|
|
3068
|
+
lon: z.ZodNumber;
|
|
3069
|
+
lat: z.ZodNumber;
|
|
3070
|
+
}, "strip", z.ZodTypeAny, {
|
|
3071
|
+
lat?: number;
|
|
3072
|
+
lon?: number;
|
|
3073
|
+
}, {
|
|
3074
|
+
lat?: number;
|
|
3075
|
+
lon?: number;
|
|
3076
|
+
}>>;
|
|
3077
|
+
}, "strip", z.ZodTypeAny, {
|
|
3078
|
+
county?: {
|
|
3079
|
+
lat?: number;
|
|
3080
|
+
lon?: number;
|
|
3081
|
+
};
|
|
3082
|
+
defaultValue?: string;
|
|
3083
|
+
default?: {
|
|
3084
|
+
lat?: number;
|
|
3085
|
+
lon?: number;
|
|
3086
|
+
};
|
|
3087
|
+
project?: {
|
|
3088
|
+
lat?: number;
|
|
3089
|
+
lon?: number;
|
|
3090
|
+
};
|
|
3091
|
+
facility?: {
|
|
3092
|
+
lat?: number;
|
|
3093
|
+
lon?: number;
|
|
3094
|
+
};
|
|
3095
|
+
}, {
|
|
3096
|
+
county?: {
|
|
3097
|
+
lat?: number;
|
|
3098
|
+
lon?: number;
|
|
3099
|
+
};
|
|
3100
|
+
defaultValue?: string;
|
|
3101
|
+
default?: {
|
|
3102
|
+
lat?: number;
|
|
3103
|
+
lon?: number;
|
|
3104
|
+
};
|
|
3105
|
+
project?: {
|
|
3106
|
+
lat?: number;
|
|
3107
|
+
lon?: number;
|
|
3108
|
+
};
|
|
3109
|
+
facility?: {
|
|
3110
|
+
lat?: number;
|
|
3111
|
+
lon?: number;
|
|
3112
|
+
};
|
|
3113
|
+
}>>;
|
|
3114
|
+
lastModified: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
3115
|
+
localCounty: z.ZodOptional<z.ZodString>;
|
|
3116
|
+
localState: z.ZodOptional<z.ZodString>;
|
|
3117
|
+
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3118
|
+
identifier: z.ZodString;
|
|
3119
|
+
id: z.ZodString;
|
|
3120
|
+
} & {
|
|
3121
|
+
role: z.ZodString;
|
|
3122
|
+
ref: z.ZodOptional<z.ZodString>;
|
|
3123
|
+
}, "strip", z.ZodTypeAny, {
|
|
3124
|
+
id?: string;
|
|
3125
|
+
identifier?: string;
|
|
3126
|
+
role?: string;
|
|
3127
|
+
ref?: string;
|
|
3128
|
+
}, {
|
|
3129
|
+
id?: string;
|
|
3130
|
+
identifier?: string;
|
|
3131
|
+
role?: string;
|
|
3132
|
+
ref?: string;
|
|
3133
|
+
}>, "many">>;
|
|
3134
|
+
plannedOperationalDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
3135
|
+
projectName: z.ZodOptional<z.ZodString>;
|
|
3136
|
+
queueDataset: z.ZodOptional<z.ZodString>;
|
|
3137
|
+
queueDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
3138
|
+
sectors: z.ZodArray<z.ZodObject<{
|
|
3139
|
+
identifier: z.ZodString;
|
|
3140
|
+
id: z.ZodString;
|
|
3141
|
+
}, "strip", z.ZodTypeAny, {
|
|
3142
|
+
id?: string;
|
|
3143
|
+
identifier?: string;
|
|
3144
|
+
}, {
|
|
3145
|
+
id?: string;
|
|
3146
|
+
identifier?: string;
|
|
3147
|
+
}>, "many">;
|
|
3148
|
+
status: z.ZodOptional<z.ZodString>;
|
|
3149
|
+
totalMw: z.ZodOptional<z.ZodNumber>;
|
|
3150
|
+
} & {
|
|
3151
|
+
sort: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;
|
|
3152
|
+
}, "strict", z.ZodTypeAny, {
|
|
3153
|
+
sectors?: {
|
|
3154
|
+
id?: string;
|
|
3155
|
+
identifier?: string;
|
|
3156
|
+
}[];
|
|
3157
|
+
id?: string;
|
|
3158
|
+
sort?: [number, number, ...unknown[]];
|
|
3159
|
+
status?: string;
|
|
3160
|
+
applicationId?: string;
|
|
3161
|
+
queueDataset?: string;
|
|
3162
|
+
country?: string;
|
|
3163
|
+
organizations?: {
|
|
3164
|
+
id?: string;
|
|
3165
|
+
identifier?: string;
|
|
3166
|
+
role?: string;
|
|
3167
|
+
ref?: string;
|
|
3168
|
+
}[];
|
|
3169
|
+
geo?: {
|
|
3170
|
+
county?: {
|
|
3171
|
+
lat?: number;
|
|
3172
|
+
lon?: number;
|
|
3173
|
+
};
|
|
3174
|
+
defaultValue?: string;
|
|
3175
|
+
default?: {
|
|
3176
|
+
lat?: number;
|
|
3177
|
+
lon?: number;
|
|
3178
|
+
};
|
|
3179
|
+
project?: {
|
|
3180
|
+
lat?: number;
|
|
3181
|
+
lon?: number;
|
|
3182
|
+
};
|
|
3183
|
+
facility?: {
|
|
3184
|
+
lat?: number;
|
|
3185
|
+
lon?: number;
|
|
3186
|
+
};
|
|
3187
|
+
};
|
|
3188
|
+
allSectors?: string;
|
|
3189
|
+
queueDate?: string;
|
|
3190
|
+
schema?: "eu_queue";
|
|
3191
|
+
actualOperationalDate?: string;
|
|
3192
|
+
lastModified?: string;
|
|
3193
|
+
localCounty?: string;
|
|
3194
|
+
localState?: string;
|
|
3195
|
+
plannedOperationalDate?: string;
|
|
3196
|
+
projectName?: string;
|
|
3197
|
+
totalMw?: number;
|
|
3198
|
+
}, {
|
|
3199
|
+
sectors?: {
|
|
3200
|
+
id?: string;
|
|
3201
|
+
identifier?: string;
|
|
3202
|
+
}[];
|
|
3203
|
+
id?: string;
|
|
3204
|
+
sort?: [number, number, ...unknown[]];
|
|
3205
|
+
status?: string;
|
|
3206
|
+
applicationId?: string;
|
|
3207
|
+
queueDataset?: string;
|
|
3208
|
+
country?: string;
|
|
3209
|
+
organizations?: {
|
|
3210
|
+
id?: string;
|
|
3211
|
+
identifier?: string;
|
|
3212
|
+
role?: string;
|
|
3213
|
+
ref?: string;
|
|
3214
|
+
}[];
|
|
3215
|
+
geo?: {
|
|
3216
|
+
county?: {
|
|
3217
|
+
lat?: number;
|
|
3218
|
+
lon?: number;
|
|
3219
|
+
};
|
|
3220
|
+
defaultValue?: string;
|
|
3221
|
+
default?: {
|
|
3222
|
+
lat?: number;
|
|
3223
|
+
lon?: number;
|
|
3224
|
+
};
|
|
3225
|
+
project?: {
|
|
3226
|
+
lat?: number;
|
|
3227
|
+
lon?: number;
|
|
3228
|
+
};
|
|
3229
|
+
facility?: {
|
|
3230
|
+
lat?: number;
|
|
3231
|
+
lon?: number;
|
|
3232
|
+
};
|
|
3233
|
+
};
|
|
3234
|
+
allSectors?: string;
|
|
3235
|
+
queueDate?: string;
|
|
3236
|
+
schema?: "eu_queue";
|
|
3237
|
+
actualOperationalDate?: string;
|
|
3238
|
+
lastModified?: string;
|
|
3239
|
+
localCounty?: string;
|
|
3240
|
+
localState?: string;
|
|
3241
|
+
plannedOperationalDate?: string;
|
|
3242
|
+
projectName?: string;
|
|
3243
|
+
totalMw?: number;
|
|
3244
|
+
}>;
|
|
3245
|
+
declare const usQueueListWithSortSchema: z.ZodObject<{
|
|
3246
|
+
id: z.ZodString;
|
|
3247
|
+
} & {
|
|
3248
|
+
schema: z.ZodLiteral<"us_queue">;
|
|
3249
|
+
} & {
|
|
3250
|
+
actualOperationalDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
3251
|
+
allSectors: z.ZodOptional<z.ZodString>;
|
|
3252
|
+
applicationId: z.ZodOptional<z.ZodString>;
|
|
3253
|
+
applicationStatus: z.ZodOptional<z.ZodString>;
|
|
3254
|
+
applicationTags: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3255
|
+
identifier: z.ZodString;
|
|
3256
|
+
}, "strip", z.ZodTypeAny, {
|
|
3257
|
+
identifier?: string;
|
|
3258
|
+
}, {
|
|
3259
|
+
identifier?: string;
|
|
3260
|
+
}>, "many">>;
|
|
3261
|
+
country: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3262
|
+
identifier: z.ZodString;
|
|
3263
|
+
id: z.ZodString;
|
|
3264
|
+
}, "strip", z.ZodTypeAny, {
|
|
3265
|
+
id?: string;
|
|
3266
|
+
identifier?: string;
|
|
3267
|
+
}, {
|
|
3268
|
+
id?: string;
|
|
3269
|
+
identifier?: string;
|
|
3270
|
+
}>, "many">>;
|
|
3271
|
+
geo: z.ZodOptional<z.ZodObject<{
|
|
3272
|
+
defaultValue: z.ZodOptional<z.ZodString>;
|
|
3273
|
+
default: z.ZodOptional<z.ZodObject<{
|
|
3274
|
+
lon: z.ZodNumber;
|
|
3275
|
+
lat: z.ZodNumber;
|
|
3276
|
+
}, "strip", z.ZodTypeAny, {
|
|
3277
|
+
lat?: number;
|
|
3278
|
+
lon?: number;
|
|
3279
|
+
}, {
|
|
3280
|
+
lat?: number;
|
|
3281
|
+
lon?: number;
|
|
3282
|
+
}>>;
|
|
3283
|
+
project: z.ZodOptional<z.ZodObject<{
|
|
3284
|
+
lon: z.ZodNumber;
|
|
3285
|
+
lat: z.ZodNumber;
|
|
3286
|
+
}, "strip", z.ZodTypeAny, {
|
|
3287
|
+
lat?: number;
|
|
3288
|
+
lon?: number;
|
|
3289
|
+
}, {
|
|
3290
|
+
lat?: number;
|
|
3291
|
+
lon?: number;
|
|
3292
|
+
}>>;
|
|
3293
|
+
county: z.ZodOptional<z.ZodObject<{
|
|
3294
|
+
lon: z.ZodNumber;
|
|
3295
|
+
lat: z.ZodNumber;
|
|
3296
|
+
}, "strip", z.ZodTypeAny, {
|
|
3297
|
+
lat?: number;
|
|
3298
|
+
lon?: number;
|
|
3299
|
+
}, {
|
|
3300
|
+
lat?: number;
|
|
3301
|
+
lon?: number;
|
|
3302
|
+
}>>;
|
|
3303
|
+
facility: z.ZodOptional<z.ZodObject<{
|
|
3304
|
+
lon: z.ZodNumber;
|
|
3305
|
+
lat: z.ZodNumber;
|
|
3306
|
+
}, "strip", z.ZodTypeAny, {
|
|
3307
|
+
lat?: number;
|
|
3308
|
+
lon?: number;
|
|
3309
|
+
}, {
|
|
3310
|
+
lat?: number;
|
|
3311
|
+
lon?: number;
|
|
3312
|
+
}>>;
|
|
3313
|
+
}, "strip", z.ZodTypeAny, {
|
|
3314
|
+
county?: {
|
|
3315
|
+
lat?: number;
|
|
3316
|
+
lon?: number;
|
|
3317
|
+
};
|
|
3318
|
+
defaultValue?: string;
|
|
3319
|
+
default?: {
|
|
3320
|
+
lat?: number;
|
|
3321
|
+
lon?: number;
|
|
3322
|
+
};
|
|
3323
|
+
project?: {
|
|
3324
|
+
lat?: number;
|
|
3325
|
+
lon?: number;
|
|
3326
|
+
};
|
|
3327
|
+
facility?: {
|
|
3328
|
+
lat?: number;
|
|
3329
|
+
lon?: number;
|
|
3330
|
+
};
|
|
3331
|
+
}, {
|
|
3332
|
+
county?: {
|
|
3333
|
+
lat?: number;
|
|
3334
|
+
lon?: number;
|
|
3335
|
+
};
|
|
3336
|
+
defaultValue?: string;
|
|
3337
|
+
default?: {
|
|
3338
|
+
lat?: number;
|
|
3339
|
+
lon?: number;
|
|
3340
|
+
};
|
|
3341
|
+
project?: {
|
|
3342
|
+
lat?: number;
|
|
3343
|
+
lon?: number;
|
|
3344
|
+
};
|
|
3345
|
+
facility?: {
|
|
3346
|
+
lat?: number;
|
|
3347
|
+
lon?: number;
|
|
3348
|
+
};
|
|
3349
|
+
}>>;
|
|
3350
|
+
interconnectingEntity: z.ZodOptional<z.ZodString>;
|
|
3351
|
+
lastModified: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
3352
|
+
localCounty: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3353
|
+
identifier: z.ZodString;
|
|
3354
|
+
id: z.ZodString;
|
|
3355
|
+
}, "strip", z.ZodTypeAny, {
|
|
3356
|
+
id?: string;
|
|
3357
|
+
identifier?: string;
|
|
3358
|
+
}, {
|
|
3359
|
+
id?: string;
|
|
3360
|
+
identifier?: string;
|
|
3361
|
+
}>, "many">>;
|
|
3362
|
+
localState: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3363
|
+
identifier: z.ZodString;
|
|
3364
|
+
id: z.ZodString;
|
|
3365
|
+
}, "strip", z.ZodTypeAny, {
|
|
3366
|
+
id?: string;
|
|
3367
|
+
identifier?: string;
|
|
3368
|
+
}, {
|
|
3369
|
+
id?: string;
|
|
3370
|
+
identifier?: string;
|
|
2130
3371
|
}>, "many">>;
|
|
2131
3372
|
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2132
3373
|
identifier: z.ZodString;
|
|
@@ -2146,31 +3387,10 @@ export declare const queueDetailsUnionSchema: z.ZodDiscriminatedUnion<"schema",
|
|
|
2146
3387
|
ref?: string;
|
|
2147
3388
|
}>, "many">>;
|
|
2148
3389
|
plannedOperationalDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
2149
|
-
poi: z.ZodOptional<z.ZodObject<{
|
|
2150
|
-
id: z.ZodString;
|
|
2151
|
-
identifier: z.ZodString;
|
|
2152
|
-
kV: z.ZodOptional<z.ZodString>;
|
|
2153
|
-
meta: z.ZodOptional<z.ZodString>;
|
|
2154
|
-
poiGroup: z.ZodString;
|
|
2155
|
-
}, "strip", z.ZodTypeAny, {
|
|
2156
|
-
id?: string;
|
|
2157
|
-
identifier?: string;
|
|
2158
|
-
kV?: string;
|
|
2159
|
-
meta?: string;
|
|
2160
|
-
poiGroup?: string;
|
|
2161
|
-
}, {
|
|
2162
|
-
id?: string;
|
|
2163
|
-
identifier?: string;
|
|
2164
|
-
kV?: string;
|
|
2165
|
-
meta?: string;
|
|
2166
|
-
poiGroup?: string;
|
|
2167
|
-
}>>;
|
|
2168
3390
|
poiLocation: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodOptional<z.ZodNumber>]>;
|
|
2169
3391
|
projectName: z.ZodOptional<z.ZodString>;
|
|
2170
3392
|
queueDataset: z.ZodOptional<z.ZodString>;
|
|
2171
3393
|
queueDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
2172
|
-
reportCount: z.ZodOptional<z.ZodNumber>;
|
|
2173
|
-
reportDate: z.ZodOptional<z.ZodString>;
|
|
2174
3394
|
sectors: z.ZodArray<z.ZodObject<{
|
|
2175
3395
|
identifier: z.ZodString;
|
|
2176
3396
|
id: z.ZodString;
|
|
@@ -2181,77 +3401,55 @@ export declare const queueDetailsUnionSchema: z.ZodDiscriminatedUnion<"schema",
|
|
|
2181
3401
|
id?: string;
|
|
2182
3402
|
identifier?: string;
|
|
2183
3403
|
}>, "many">;
|
|
2184
|
-
signals: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2185
|
-
filingDate: z.ZodString;
|
|
2186
|
-
headline: z.ZodString;
|
|
2187
|
-
id: z.ZodString;
|
|
2188
|
-
publishedDate: z.ZodString;
|
|
2189
|
-
subType: z.ZodString;
|
|
2190
|
-
type: z.ZodString;
|
|
2191
|
-
}, "strip", z.ZodTypeAny, {
|
|
2192
|
-
type?: string;
|
|
2193
|
-
subType?: string;
|
|
2194
|
-
id?: string;
|
|
2195
|
-
headline?: string;
|
|
2196
|
-
filingDate?: string;
|
|
2197
|
-
publishedDate?: string;
|
|
2198
|
-
}, {
|
|
2199
|
-
type?: string;
|
|
2200
|
-
subType?: string;
|
|
2201
|
-
id?: string;
|
|
2202
|
-
headline?: string;
|
|
2203
|
-
filingDate?: string;
|
|
2204
|
-
publishedDate?: string;
|
|
2205
|
-
}>, "many">>;
|
|
2206
3404
|
totalMw: z.ZodOptional<z.ZodNumber>;
|
|
2207
|
-
|
|
3405
|
+
} & {
|
|
3406
|
+
sort: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;
|
|
2208
3407
|
}, "strict", z.ZodTypeAny, {
|
|
2209
3408
|
sectors?: {
|
|
2210
3409
|
id?: string;
|
|
2211
3410
|
identifier?: string;
|
|
2212
3411
|
}[];
|
|
2213
|
-
keyPeople?: {
|
|
2214
|
-
id?: string;
|
|
2215
|
-
linkedinUrl?: string;
|
|
2216
|
-
fullName?: string;
|
|
2217
|
-
email?: string;
|
|
2218
|
-
phone?: string;
|
|
2219
|
-
source?: string;
|
|
2220
|
-
created?: string;
|
|
2221
|
-
roles?: string[];
|
|
2222
|
-
};
|
|
2223
3412
|
id?: string;
|
|
3413
|
+
sort?: [number, number, ...unknown[]];
|
|
2224
3414
|
applicationId?: string;
|
|
2225
3415
|
queueDataset?: string;
|
|
2226
3416
|
country?: {
|
|
2227
3417
|
id?: string;
|
|
2228
3418
|
identifier?: string;
|
|
2229
3419
|
}[];
|
|
2230
|
-
documents?: {
|
|
2231
|
-
type?: string[];
|
|
2232
|
-
key?: string;
|
|
2233
|
-
date?: string;
|
|
2234
|
-
document_id?: string;
|
|
2235
|
-
url?: string;
|
|
2236
|
-
filing_id?: string;
|
|
2237
|
-
isSignal?: boolean;
|
|
2238
|
-
}[];
|
|
2239
3420
|
organizations?: {
|
|
2240
3421
|
id?: string;
|
|
2241
3422
|
identifier?: string;
|
|
2242
3423
|
role?: string;
|
|
2243
3424
|
ref?: string;
|
|
2244
3425
|
}[];
|
|
3426
|
+
geo?: {
|
|
3427
|
+
county?: {
|
|
3428
|
+
lat?: number;
|
|
3429
|
+
lon?: number;
|
|
3430
|
+
};
|
|
3431
|
+
defaultValue?: string;
|
|
3432
|
+
default?: {
|
|
3433
|
+
lat?: number;
|
|
3434
|
+
lon?: number;
|
|
3435
|
+
};
|
|
3436
|
+
project?: {
|
|
3437
|
+
lat?: number;
|
|
3438
|
+
lon?: number;
|
|
3439
|
+
};
|
|
3440
|
+
facility?: {
|
|
3441
|
+
lat?: number;
|
|
3442
|
+
lon?: number;
|
|
3443
|
+
};
|
|
3444
|
+
};
|
|
2245
3445
|
allSectors?: string;
|
|
2246
|
-
$organizations?: string;
|
|
2247
|
-
reportDate?: string;
|
|
2248
3446
|
applicationTags?: {
|
|
2249
3447
|
identifier?: string;
|
|
2250
3448
|
}[];
|
|
2251
3449
|
queueDate?: string;
|
|
2252
3450
|
schema?: "us_queue";
|
|
2253
3451
|
actualOperationalDate?: string;
|
|
2254
|
-
|
|
3452
|
+
lastModified?: string;
|
|
2255
3453
|
localCounty?: {
|
|
2256
3454
|
id?: string;
|
|
2257
3455
|
identifier?: string;
|
|
@@ -2263,140 +3461,55 @@ export declare const queueDetailsUnionSchema: z.ZodDiscriminatedUnion<"schema",
|
|
|
2263
3461
|
plannedOperationalDate?: string;
|
|
2264
3462
|
projectName?: string;
|
|
2265
3463
|
totalMw?: number;
|
|
3464
|
+
applicationStatus?: string;
|
|
3465
|
+
interconnectingEntity?: string;
|
|
2266
3466
|
poiLocation?: string | number;
|
|
2267
|
-
applicationType?: string;
|
|
2268
|
-
cost?: {
|
|
2269
|
-
costCompany?: string;
|
|
2270
|
-
costYear?: number;
|
|
2271
|
-
networkCostKW?: number;
|
|
2272
|
-
poiCostKW?: number;
|
|
2273
|
-
totalCostKW?: number;
|
|
2274
|
-
};
|
|
2275
|
-
dateCreated?: string;
|
|
2276
|
-
events?: {
|
|
2277
|
-
id?: string;
|
|
2278
|
-
queueKey?: string;
|
|
2279
|
-
applicationId?: string;
|
|
2280
|
-
set?: number;
|
|
2281
|
-
daysInQueue?: number;
|
|
2282
|
-
eventHash?: string;
|
|
2283
|
-
reportDate?: string;
|
|
2284
|
-
eventType?: "add" | "update";
|
|
2285
|
-
propKey?: string;
|
|
2286
|
-
propType?: "applicationTags" | "tracked";
|
|
2287
|
-
propVal?: string;
|
|
2288
|
-
queueDate?: string;
|
|
2289
|
-
transition?: {
|
|
2290
|
-
delta?: number;
|
|
2291
|
-
durationInDays?: number;
|
|
2292
|
-
from?: {
|
|
2293
|
-
value?: string;
|
|
2294
|
-
assigned?: string;
|
|
2295
|
-
};
|
|
2296
|
-
to?: {
|
|
2297
|
-
value?: string;
|
|
2298
|
-
assigned?: string;
|
|
2299
|
-
};
|
|
2300
|
-
};
|
|
2301
|
-
}[];
|
|
2302
|
-
isoRtoConnection?: {
|
|
2303
|
-
id?: string;
|
|
2304
|
-
identifier?: string;
|
|
2305
|
-
}[];
|
|
2306
|
-
milestones?: {
|
|
2307
|
-
type?: string;
|
|
2308
|
-
state?: string;
|
|
2309
|
-
key?: string;
|
|
2310
|
-
entries?: {
|
|
2311
|
-
daysInQueue?: number;
|
|
2312
|
-
delta?: number;
|
|
2313
|
-
durationInDays?: number;
|
|
2314
|
-
eventHash?: string;
|
|
2315
|
-
fromValue?: string;
|
|
2316
|
-
label?: string;
|
|
2317
|
-
reportDate?: string;
|
|
2318
|
-
stage?: string;
|
|
2319
|
-
toValue?: string;
|
|
2320
|
-
}[];
|
|
2321
|
-
set?: number;
|
|
2322
|
-
daysInQueue?: number;
|
|
2323
|
-
delta?: number;
|
|
2324
|
-
durationInDays?: number;
|
|
2325
|
-
eventHash?: string;
|
|
2326
|
-
fromValue?: string;
|
|
2327
|
-
label?: string;
|
|
2328
|
-
reportDate?: string;
|
|
2329
|
-
stage?: string;
|
|
2330
|
-
toValue?: string;
|
|
2331
|
-
compositeKey?: string;
|
|
2332
|
-
eventCount?: number;
|
|
2333
|
-
searchKey?: string;
|
|
2334
|
-
topic?: string;
|
|
2335
|
-
}[];
|
|
2336
|
-
poi?: {
|
|
2337
|
-
id?: string;
|
|
2338
|
-
identifier?: string;
|
|
2339
|
-
kV?: string;
|
|
2340
|
-
meta?: string;
|
|
2341
|
-
poiGroup?: string;
|
|
2342
|
-
};
|
|
2343
|
-
reportCount?: number;
|
|
2344
|
-
signals?: {
|
|
2345
|
-
type?: string;
|
|
2346
|
-
subType?: string;
|
|
2347
|
-
id?: string;
|
|
2348
|
-
headline?: string;
|
|
2349
|
-
filingDate?: string;
|
|
2350
|
-
publishedDate?: string;
|
|
2351
|
-
}[];
|
|
2352
|
-
withdrawnDate?: string;
|
|
2353
3467
|
}, {
|
|
2354
3468
|
sectors?: {
|
|
2355
3469
|
id?: string;
|
|
2356
3470
|
identifier?: string;
|
|
2357
3471
|
}[];
|
|
2358
|
-
keyPeople?: {
|
|
2359
|
-
id?: string;
|
|
2360
|
-
linkedinUrl?: string;
|
|
2361
|
-
fullName?: string;
|
|
2362
|
-
email?: string;
|
|
2363
|
-
phone?: string;
|
|
2364
|
-
source?: string;
|
|
2365
|
-
created?: string;
|
|
2366
|
-
roles?: string[];
|
|
2367
|
-
};
|
|
2368
3472
|
id?: string;
|
|
3473
|
+
sort?: [number, number, ...unknown[]];
|
|
2369
3474
|
applicationId?: string;
|
|
2370
3475
|
queueDataset?: string;
|
|
2371
3476
|
country?: {
|
|
2372
3477
|
id?: string;
|
|
2373
3478
|
identifier?: string;
|
|
2374
3479
|
}[];
|
|
2375
|
-
documents?: {
|
|
2376
|
-
type?: string[];
|
|
2377
|
-
key?: string;
|
|
2378
|
-
date?: string;
|
|
2379
|
-
document_id?: string;
|
|
2380
|
-
url?: string;
|
|
2381
|
-
filing_id?: string;
|
|
2382
|
-
isSignal?: boolean;
|
|
2383
|
-
}[];
|
|
2384
3480
|
organizations?: {
|
|
2385
3481
|
id?: string;
|
|
2386
3482
|
identifier?: string;
|
|
2387
3483
|
role?: string;
|
|
2388
3484
|
ref?: string;
|
|
2389
3485
|
}[];
|
|
3486
|
+
geo?: {
|
|
3487
|
+
county?: {
|
|
3488
|
+
lat?: number;
|
|
3489
|
+
lon?: number;
|
|
3490
|
+
};
|
|
3491
|
+
defaultValue?: string;
|
|
3492
|
+
default?: {
|
|
3493
|
+
lat?: number;
|
|
3494
|
+
lon?: number;
|
|
3495
|
+
};
|
|
3496
|
+
project?: {
|
|
3497
|
+
lat?: number;
|
|
3498
|
+
lon?: number;
|
|
3499
|
+
};
|
|
3500
|
+
facility?: {
|
|
3501
|
+
lat?: number;
|
|
3502
|
+
lon?: number;
|
|
3503
|
+
};
|
|
3504
|
+
};
|
|
2390
3505
|
allSectors?: string;
|
|
2391
|
-
$organizations?: string;
|
|
2392
|
-
reportDate?: string;
|
|
2393
3506
|
applicationTags?: {
|
|
2394
3507
|
identifier?: string;
|
|
2395
3508
|
}[];
|
|
2396
3509
|
queueDate?: string;
|
|
2397
3510
|
schema?: "us_queue";
|
|
2398
3511
|
actualOperationalDate?: string;
|
|
2399
|
-
|
|
3512
|
+
lastModified?: string;
|
|
2400
3513
|
localCounty?: {
|
|
2401
3514
|
id?: string;
|
|
2402
3515
|
identifier?: string;
|
|
@@ -2408,99 +3521,11 @@ export declare const queueDetailsUnionSchema: z.ZodDiscriminatedUnion<"schema",
|
|
|
2408
3521
|
plannedOperationalDate?: string;
|
|
2409
3522
|
projectName?: string;
|
|
2410
3523
|
totalMw?: number;
|
|
3524
|
+
applicationStatus?: string;
|
|
3525
|
+
interconnectingEntity?: string;
|
|
2411
3526
|
poiLocation?: string | number;
|
|
2412
|
-
|
|
2413
|
-
|
|
2414
|
-
costCompany?: string;
|
|
2415
|
-
costYear?: number;
|
|
2416
|
-
networkCostKW?: number;
|
|
2417
|
-
poiCostKW?: number;
|
|
2418
|
-
totalCostKW?: number;
|
|
2419
|
-
};
|
|
2420
|
-
dateCreated?: string;
|
|
2421
|
-
events?: {
|
|
2422
|
-
id?: string;
|
|
2423
|
-
queueKey?: string;
|
|
2424
|
-
applicationId?: string;
|
|
2425
|
-
set?: number;
|
|
2426
|
-
daysInQueue?: number;
|
|
2427
|
-
eventHash?: string;
|
|
2428
|
-
reportDate?: string;
|
|
2429
|
-
eventType?: "add" | "update";
|
|
2430
|
-
propKey?: string;
|
|
2431
|
-
propType?: "applicationTags" | "tracked";
|
|
2432
|
-
propVal?: string;
|
|
2433
|
-
queueDate?: string;
|
|
2434
|
-
transition?: {
|
|
2435
|
-
delta?: number;
|
|
2436
|
-
durationInDays?: number;
|
|
2437
|
-
from?: {
|
|
2438
|
-
value?: string;
|
|
2439
|
-
assigned?: string;
|
|
2440
|
-
};
|
|
2441
|
-
to?: {
|
|
2442
|
-
value?: string;
|
|
2443
|
-
assigned?: string;
|
|
2444
|
-
};
|
|
2445
|
-
};
|
|
2446
|
-
}[];
|
|
2447
|
-
isoRtoConnection?: {
|
|
2448
|
-
id?: string;
|
|
2449
|
-
identifier?: string;
|
|
2450
|
-
}[];
|
|
2451
|
-
milestones?: {
|
|
2452
|
-
type?: string;
|
|
2453
|
-
state?: string;
|
|
2454
|
-
key?: string;
|
|
2455
|
-
entries?: {
|
|
2456
|
-
daysInQueue?: number;
|
|
2457
|
-
delta?: number;
|
|
2458
|
-
durationInDays?: number;
|
|
2459
|
-
eventHash?: string;
|
|
2460
|
-
fromValue?: string;
|
|
2461
|
-
label?: string;
|
|
2462
|
-
reportDate?: string;
|
|
2463
|
-
stage?: string;
|
|
2464
|
-
toValue?: string;
|
|
2465
|
-
}[];
|
|
2466
|
-
set?: number;
|
|
2467
|
-
daysInQueue?: number;
|
|
2468
|
-
delta?: number;
|
|
2469
|
-
durationInDays?: number;
|
|
2470
|
-
eventHash?: string;
|
|
2471
|
-
fromValue?: string;
|
|
2472
|
-
label?: string;
|
|
2473
|
-
reportDate?: string;
|
|
2474
|
-
stage?: string;
|
|
2475
|
-
toValue?: string;
|
|
2476
|
-
compositeKey?: string;
|
|
2477
|
-
eventCount?: number;
|
|
2478
|
-
searchKey?: string;
|
|
2479
|
-
topic?: string;
|
|
2480
|
-
}[];
|
|
2481
|
-
poi?: {
|
|
2482
|
-
id?: string;
|
|
2483
|
-
identifier?: string;
|
|
2484
|
-
kV?: string;
|
|
2485
|
-
meta?: string;
|
|
2486
|
-
poiGroup?: string;
|
|
2487
|
-
};
|
|
2488
|
-
reportCount?: number;
|
|
2489
|
-
signals?: {
|
|
2490
|
-
type?: string;
|
|
2491
|
-
subType?: string;
|
|
2492
|
-
id?: string;
|
|
2493
|
-
headline?: string;
|
|
2494
|
-
filingDate?: string;
|
|
2495
|
-
publishedDate?: string;
|
|
2496
|
-
}[];
|
|
2497
|
-
withdrawnDate?: string;
|
|
2498
|
-
}>]>;
|
|
2499
|
-
export type QueueDetailsType = z.infer<typeof queueDetailsSchema>;
|
|
2500
|
-
export type QueueDetailsUnionType = z.infer<typeof queueDetailsUnionSchema>;
|
|
2501
|
-
export type EUQueueDetailsType = z.infer<typeof euQueueDetailsSchema>;
|
|
2502
|
-
export type USQueueDetailsType = z.infer<typeof usQueueDetailsSchema>;
|
|
2503
|
-
declare const euQueueListWithSortSchema: z.ZodObject<{
|
|
3527
|
+
}>;
|
|
3528
|
+
declare const queueListSchema: z.ZodUnion<[z.ZodObject<{
|
|
2504
3529
|
id: z.ZodString;
|
|
2505
3530
|
} & {
|
|
2506
3531
|
schema: z.ZodLiteral<"eu_queue">;
|
|
@@ -2508,7 +3533,6 @@ declare const euQueueListWithSortSchema: z.ZodObject<{
|
|
|
2508
3533
|
actualOperationalDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
2509
3534
|
allSectors: z.ZodOptional<z.ZodString>;
|
|
2510
3535
|
applicationId: z.ZodOptional<z.ZodString>;
|
|
2511
|
-
applicationStatus: z.ZodOptional<z.ZodString>;
|
|
2512
3536
|
country: z.ZodOptional<z.ZodString>;
|
|
2513
3537
|
geo: z.ZodOptional<z.ZodObject<{
|
|
2514
3538
|
defaultValue: z.ZodOptional<z.ZodString>;
|
|
@@ -2589,7 +3613,6 @@ declare const euQueueListWithSortSchema: z.ZodObject<{
|
|
|
2589
3613
|
lon?: number;
|
|
2590
3614
|
};
|
|
2591
3615
|
}>>;
|
|
2592
|
-
interconnectingEntity: z.ZodOptional<z.ZodString>;
|
|
2593
3616
|
lastModified: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
2594
3617
|
localCounty: z.ZodOptional<z.ZodString>;
|
|
2595
3618
|
localState: z.ZodOptional<z.ZodString>;
|
|
@@ -2668,8 +3691,6 @@ declare const euQueueListWithSortSchema: z.ZodObject<{
|
|
|
2668
3691
|
queueDate?: string;
|
|
2669
3692
|
schema?: "eu_queue";
|
|
2670
3693
|
actualOperationalDate?: string;
|
|
2671
|
-
applicationStatus?: string;
|
|
2672
|
-
interconnectingEntity?: string;
|
|
2673
3694
|
lastModified?: string;
|
|
2674
3695
|
localCounty?: string;
|
|
2675
3696
|
localState?: string;
|
|
@@ -2716,16 +3737,13 @@ declare const euQueueListWithSortSchema: z.ZodObject<{
|
|
|
2716
3737
|
queueDate?: string;
|
|
2717
3738
|
schema?: "eu_queue";
|
|
2718
3739
|
actualOperationalDate?: string;
|
|
2719
|
-
applicationStatus?: string;
|
|
2720
|
-
interconnectingEntity?: string;
|
|
2721
3740
|
lastModified?: string;
|
|
2722
3741
|
localCounty?: string;
|
|
2723
3742
|
localState?: string;
|
|
2724
3743
|
plannedOperationalDate?: string;
|
|
2725
3744
|
projectName?: string;
|
|
2726
3745
|
totalMw?: number;
|
|
2727
|
-
}
|
|
2728
|
-
declare const usQueueListWithSortSchema: z.ZodObject<{
|
|
3746
|
+
}>, z.ZodObject<{
|
|
2729
3747
|
id: z.ZodString;
|
|
2730
3748
|
} & {
|
|
2731
3749
|
schema: z.ZodLiteral<"us_queue">;
|
|
@@ -2932,8 +3950,6 @@ declare const usQueueListWithSortSchema: z.ZodObject<{
|
|
|
2932
3950
|
queueDate?: string;
|
|
2933
3951
|
schema?: "us_queue";
|
|
2934
3952
|
actualOperationalDate?: string;
|
|
2935
|
-
applicationStatus?: string;
|
|
2936
|
-
interconnectingEntity?: string;
|
|
2937
3953
|
lastModified?: string;
|
|
2938
3954
|
localCounty?: {
|
|
2939
3955
|
id?: string;
|
|
@@ -2946,6 +3962,8 @@ declare const usQueueListWithSortSchema: z.ZodObject<{
|
|
|
2946
3962
|
plannedOperationalDate?: string;
|
|
2947
3963
|
projectName?: string;
|
|
2948
3964
|
totalMw?: number;
|
|
3965
|
+
applicationStatus?: string;
|
|
3966
|
+
interconnectingEntity?: string;
|
|
2949
3967
|
poiLocation?: string | number;
|
|
2950
3968
|
}, {
|
|
2951
3969
|
sectors?: {
|
|
@@ -2992,8 +4010,6 @@ declare const usQueueListWithSortSchema: z.ZodObject<{
|
|
|
2992
4010
|
queueDate?: string;
|
|
2993
4011
|
schema?: "us_queue";
|
|
2994
4012
|
actualOperationalDate?: string;
|
|
2995
|
-
applicationStatus?: string;
|
|
2996
|
-
interconnectingEntity?: string;
|
|
2997
4013
|
lastModified?: string;
|
|
2998
4014
|
localCounty?: {
|
|
2999
4015
|
id?: string;
|
|
@@ -3006,9 +4022,11 @@ declare const usQueueListWithSortSchema: z.ZodObject<{
|
|
|
3006
4022
|
plannedOperationalDate?: string;
|
|
3007
4023
|
projectName?: string;
|
|
3008
4024
|
totalMw?: number;
|
|
4025
|
+
applicationStatus?: string;
|
|
4026
|
+
interconnectingEntity?: string;
|
|
3009
4027
|
poiLocation?: string | number;
|
|
3010
|
-
}>;
|
|
3011
|
-
declare const
|
|
4028
|
+
}>]>;
|
|
4029
|
+
export declare const queueListUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.ZodObject<{
|
|
3012
4030
|
id: z.ZodString;
|
|
3013
4031
|
} & {
|
|
3014
4032
|
schema: z.ZodLiteral<"eu_queue">;
|
|
@@ -3016,7 +4034,6 @@ declare const queueListSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3016
4034
|
actualOperationalDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
3017
4035
|
allSectors: z.ZodOptional<z.ZodString>;
|
|
3018
4036
|
applicationId: z.ZodOptional<z.ZodString>;
|
|
3019
|
-
applicationStatus: z.ZodOptional<z.ZodString>;
|
|
3020
4037
|
country: z.ZodOptional<z.ZodString>;
|
|
3021
4038
|
geo: z.ZodOptional<z.ZodObject<{
|
|
3022
4039
|
defaultValue: z.ZodOptional<z.ZodString>;
|
|
@@ -3097,7 +4114,6 @@ declare const queueListSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3097
4114
|
lon?: number;
|
|
3098
4115
|
};
|
|
3099
4116
|
}>>;
|
|
3100
|
-
interconnectingEntity: z.ZodOptional<z.ZodString>;
|
|
3101
4117
|
lastModified: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
3102
4118
|
localCounty: z.ZodOptional<z.ZodString>;
|
|
3103
4119
|
localState: z.ZodOptional<z.ZodString>;
|
|
@@ -3176,8 +4192,6 @@ declare const queueListSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3176
4192
|
queueDate?: string;
|
|
3177
4193
|
schema?: "eu_queue";
|
|
3178
4194
|
actualOperationalDate?: string;
|
|
3179
|
-
applicationStatus?: string;
|
|
3180
|
-
interconnectingEntity?: string;
|
|
3181
4195
|
lastModified?: string;
|
|
3182
4196
|
localCounty?: string;
|
|
3183
4197
|
localState?: string;
|
|
@@ -3224,8 +4238,6 @@ declare const queueListSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3224
4238
|
queueDate?: string;
|
|
3225
4239
|
schema?: "eu_queue";
|
|
3226
4240
|
actualOperationalDate?: string;
|
|
3227
|
-
applicationStatus?: string;
|
|
3228
|
-
interconnectingEntity?: string;
|
|
3229
4241
|
lastModified?: string;
|
|
3230
4242
|
localCounty?: string;
|
|
3231
4243
|
localState?: string;
|
|
@@ -3439,8 +4451,6 @@ declare const queueListSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3439
4451
|
queueDate?: string;
|
|
3440
4452
|
schema?: "us_queue";
|
|
3441
4453
|
actualOperationalDate?: string;
|
|
3442
|
-
applicationStatus?: string;
|
|
3443
|
-
interconnectingEntity?: string;
|
|
3444
4454
|
lastModified?: string;
|
|
3445
4455
|
localCounty?: {
|
|
3446
4456
|
id?: string;
|
|
@@ -3453,6 +4463,8 @@ declare const queueListSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3453
4463
|
plannedOperationalDate?: string;
|
|
3454
4464
|
projectName?: string;
|
|
3455
4465
|
totalMw?: number;
|
|
4466
|
+
applicationStatus?: string;
|
|
4467
|
+
interconnectingEntity?: string;
|
|
3456
4468
|
poiLocation?: string | number;
|
|
3457
4469
|
}, {
|
|
3458
4470
|
sectors?: {
|
|
@@ -3499,8 +4511,6 @@ declare const queueListSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3499
4511
|
queueDate?: string;
|
|
3500
4512
|
schema?: "us_queue";
|
|
3501
4513
|
actualOperationalDate?: string;
|
|
3502
|
-
applicationStatus?: string;
|
|
3503
|
-
interconnectingEntity?: string;
|
|
3504
4514
|
lastModified?: string;
|
|
3505
4515
|
localCounty?: {
|
|
3506
4516
|
id?: string;
|
|
@@ -3513,9 +4523,11 @@ declare const queueListSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3513
4523
|
plannedOperationalDate?: string;
|
|
3514
4524
|
projectName?: string;
|
|
3515
4525
|
totalMw?: number;
|
|
4526
|
+
applicationStatus?: string;
|
|
4527
|
+
interconnectingEntity?: string;
|
|
3516
4528
|
poiLocation?: string | number;
|
|
3517
4529
|
}>]>;
|
|
3518
|
-
export declare const
|
|
4530
|
+
export declare const queueListBaseUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.ZodObject<{
|
|
3519
4531
|
id: z.ZodString;
|
|
3520
4532
|
} & {
|
|
3521
4533
|
schema: z.ZodLiteral<"eu_queue">;
|
|
@@ -3523,7 +4535,6 @@ export declare const queueListUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.
|
|
|
3523
4535
|
actualOperationalDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
3524
4536
|
allSectors: z.ZodOptional<z.ZodString>;
|
|
3525
4537
|
applicationId: z.ZodOptional<z.ZodString>;
|
|
3526
|
-
applicationStatus: z.ZodOptional<z.ZodString>;
|
|
3527
4538
|
country: z.ZodOptional<z.ZodString>;
|
|
3528
4539
|
geo: z.ZodOptional<z.ZodObject<{
|
|
3529
4540
|
defaultValue: z.ZodOptional<z.ZodString>;
|
|
@@ -3604,7 +4615,6 @@ export declare const queueListUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.
|
|
|
3604
4615
|
lon?: number;
|
|
3605
4616
|
};
|
|
3606
4617
|
}>>;
|
|
3607
|
-
interconnectingEntity: z.ZodOptional<z.ZodString>;
|
|
3608
4618
|
lastModified: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
3609
4619
|
localCounty: z.ZodOptional<z.ZodString>;
|
|
3610
4620
|
localState: z.ZodOptional<z.ZodString>;
|
|
@@ -3641,15 +4651,12 @@ export declare const queueListUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.
|
|
|
3641
4651
|
}>, "many">;
|
|
3642
4652
|
status: z.ZodOptional<z.ZodString>;
|
|
3643
4653
|
totalMw: z.ZodOptional<z.ZodNumber>;
|
|
3644
|
-
} & {
|
|
3645
|
-
sort: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;
|
|
3646
4654
|
}, "strict", z.ZodTypeAny, {
|
|
3647
4655
|
sectors?: {
|
|
3648
4656
|
id?: string;
|
|
3649
4657
|
identifier?: string;
|
|
3650
4658
|
}[];
|
|
3651
4659
|
id?: string;
|
|
3652
|
-
sort?: [number, number, ...unknown[]];
|
|
3653
4660
|
status?: string;
|
|
3654
4661
|
applicationId?: string;
|
|
3655
4662
|
queueDataset?: string;
|
|
@@ -3683,8 +4690,6 @@ export declare const queueListUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.
|
|
|
3683
4690
|
queueDate?: string;
|
|
3684
4691
|
schema?: "eu_queue";
|
|
3685
4692
|
actualOperationalDate?: string;
|
|
3686
|
-
applicationStatus?: string;
|
|
3687
|
-
interconnectingEntity?: string;
|
|
3688
4693
|
lastModified?: string;
|
|
3689
4694
|
localCounty?: string;
|
|
3690
4695
|
localState?: string;
|
|
@@ -3697,7 +4702,6 @@ export declare const queueListUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.
|
|
|
3697
4702
|
identifier?: string;
|
|
3698
4703
|
}[];
|
|
3699
4704
|
id?: string;
|
|
3700
|
-
sort?: [number, number, ...unknown[]];
|
|
3701
4705
|
status?: string;
|
|
3702
4706
|
applicationId?: string;
|
|
3703
4707
|
queueDataset?: string;
|
|
@@ -3731,8 +4735,6 @@ export declare const queueListUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.
|
|
|
3731
4735
|
queueDate?: string;
|
|
3732
4736
|
schema?: "eu_queue";
|
|
3733
4737
|
actualOperationalDate?: string;
|
|
3734
|
-
applicationStatus?: string;
|
|
3735
|
-
interconnectingEntity?: string;
|
|
3736
4738
|
lastModified?: string;
|
|
3737
4739
|
localCounty?: string;
|
|
3738
4740
|
localState?: string;
|
|
@@ -3899,15 +4901,12 @@ export declare const queueListUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.
|
|
|
3899
4901
|
identifier?: string;
|
|
3900
4902
|
}>, "many">;
|
|
3901
4903
|
totalMw: z.ZodOptional<z.ZodNumber>;
|
|
3902
|
-
} & {
|
|
3903
|
-
sort: z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>;
|
|
3904
4904
|
}, "strict", z.ZodTypeAny, {
|
|
3905
4905
|
sectors?: {
|
|
3906
4906
|
id?: string;
|
|
3907
4907
|
identifier?: string;
|
|
3908
4908
|
}[];
|
|
3909
4909
|
id?: string;
|
|
3910
|
-
sort?: [number, number, ...unknown[]];
|
|
3911
4910
|
applicationId?: string;
|
|
3912
4911
|
queueDataset?: string;
|
|
3913
4912
|
country?: {
|
|
@@ -3946,8 +4945,6 @@ export declare const queueListUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.
|
|
|
3946
4945
|
queueDate?: string;
|
|
3947
4946
|
schema?: "us_queue";
|
|
3948
4947
|
actualOperationalDate?: string;
|
|
3949
|
-
applicationStatus?: string;
|
|
3950
|
-
interconnectingEntity?: string;
|
|
3951
4948
|
lastModified?: string;
|
|
3952
4949
|
localCounty?: {
|
|
3953
4950
|
id?: string;
|
|
@@ -3960,6 +4957,8 @@ export declare const queueListUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.
|
|
|
3960
4957
|
plannedOperationalDate?: string;
|
|
3961
4958
|
projectName?: string;
|
|
3962
4959
|
totalMw?: number;
|
|
4960
|
+
applicationStatus?: string;
|
|
4961
|
+
interconnectingEntity?: string;
|
|
3963
4962
|
poiLocation?: string | number;
|
|
3964
4963
|
}, {
|
|
3965
4964
|
sectors?: {
|
|
@@ -3967,7 +4966,6 @@ export declare const queueListUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.
|
|
|
3967
4966
|
identifier?: string;
|
|
3968
4967
|
}[];
|
|
3969
4968
|
id?: string;
|
|
3970
|
-
sort?: [number, number, ...unknown[]];
|
|
3971
4969
|
applicationId?: string;
|
|
3972
4970
|
queueDataset?: string;
|
|
3973
4971
|
country?: {
|
|
@@ -4006,8 +5004,6 @@ export declare const queueListUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.
|
|
|
4006
5004
|
queueDate?: string;
|
|
4007
5005
|
schema?: "us_queue";
|
|
4008
5006
|
actualOperationalDate?: string;
|
|
4009
|
-
applicationStatus?: string;
|
|
4010
|
-
interconnectingEntity?: string;
|
|
4011
5007
|
lastModified?: string;
|
|
4012
5008
|
localCounty?: {
|
|
4013
5009
|
id?: string;
|
|
@@ -4020,27 +5016,29 @@ export declare const queueListUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.
|
|
|
4020
5016
|
plannedOperationalDate?: string;
|
|
4021
5017
|
projectName?: string;
|
|
4022
5018
|
totalMw?: number;
|
|
5019
|
+
applicationStatus?: string;
|
|
5020
|
+
interconnectingEntity?: string;
|
|
4023
5021
|
poiLocation?: string | number;
|
|
4024
5022
|
}>]>;
|
|
4025
5023
|
export type QueueListType = z.infer<typeof queueListSchema>;
|
|
4026
5024
|
export type QueueListUnionType = z.infer<typeof queueListUnionSchema>;
|
|
5025
|
+
export type QueueListBaseUnionType = z.infer<typeof queueListBaseUnionSchema>;
|
|
4027
5026
|
export type EUQueueListType = z.infer<typeof euQueueListWithSortSchema>;
|
|
4028
5027
|
export type USQueueListType = z.infer<typeof usQueueListWithSortSchema>;
|
|
4029
5028
|
export declare const euQueueAPISchema: z.ZodObject<{
|
|
4030
5029
|
$organizations: z.ZodOptional<z.ZodString>;
|
|
5030
|
+
applicationStatus: z.ZodOptional<z.ZodString>;
|
|
4031
5031
|
localTown: z.ZodOptional<z.ZodString>;
|
|
4032
5032
|
mwNet: z.ZodOptional<z.ZodNumber>;
|
|
4033
5033
|
refId: z.ZodOptional<z.ZodString>;
|
|
4034
5034
|
storageCapacity: z.ZodOptional<z.ZodNumber>;
|
|
4035
5035
|
technology: z.ZodOptional<z.ZodString>;
|
|
4036
5036
|
windFarmName: z.ZodOptional<z.ZodString>;
|
|
4037
|
-
} & {
|
|
4038
5037
|
id: z.ZodString;
|
|
4039
5038
|
schema: z.ZodLiteral<"eu_queue">;
|
|
4040
5039
|
actualOperationalDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
4041
5040
|
allSectors: z.ZodOptional<z.ZodString>;
|
|
4042
5041
|
applicationId: z.ZodOptional<z.ZodString>;
|
|
4043
|
-
applicationStatus: z.ZodOptional<z.ZodString>;
|
|
4044
5042
|
country: z.ZodOptional<z.ZodString>;
|
|
4045
5043
|
geo: z.ZodOptional<z.ZodObject<{
|
|
4046
5044
|
defaultValue: z.ZodOptional<z.ZodString>;
|
|
@@ -4121,7 +5119,6 @@ export declare const euQueueAPISchema: z.ZodObject<{
|
|
|
4121
5119
|
lon?: number;
|
|
4122
5120
|
};
|
|
4123
5121
|
}>>;
|
|
4124
|
-
interconnectingEntity: z.ZodOptional<z.ZodString>;
|
|
4125
5122
|
lastModified: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
4126
5123
|
localCounty: z.ZodOptional<z.ZodString>;
|
|
4127
5124
|
localState: z.ZodOptional<z.ZodString>;
|
|
@@ -4235,17 +5232,17 @@ export declare const euQueueAPISchema: z.ZodObject<{
|
|
|
4235
5232
|
queueDate?: string;
|
|
4236
5233
|
schema?: "eu_queue";
|
|
4237
5234
|
actualOperationalDate?: string;
|
|
4238
|
-
applicationStatus?: string;
|
|
4239
|
-
interconnectingEntity?: string;
|
|
4240
5235
|
lastModified?: string;
|
|
4241
5236
|
localCounty?: string;
|
|
4242
5237
|
localState?: string;
|
|
4243
5238
|
plannedOperationalDate?: string;
|
|
4244
5239
|
projectName?: string;
|
|
4245
5240
|
totalMw?: number;
|
|
5241
|
+
applicationStatus?: string;
|
|
4246
5242
|
localTown?: string;
|
|
4247
5243
|
mwNet?: number;
|
|
4248
5244
|
refId?: string;
|
|
5245
|
+
sourceUpdate?: string;
|
|
4249
5246
|
storageCapacity?: number;
|
|
4250
5247
|
technology?: string;
|
|
4251
5248
|
windFarmName?: string;
|
|
@@ -4262,7 +5259,6 @@ export declare const euQueueAPISchema: z.ZodObject<{
|
|
|
4262
5259
|
identifier?: string;
|
|
4263
5260
|
}[];
|
|
4264
5261
|
sectorDetail?: string;
|
|
4265
|
-
sourceUpdate?: string;
|
|
4266
5262
|
stateAbbr?: string;
|
|
4267
5263
|
storageType?: string;
|
|
4268
5264
|
}, {
|
|
@@ -4310,17 +5306,17 @@ export declare const euQueueAPISchema: z.ZodObject<{
|
|
|
4310
5306
|
queueDate?: string;
|
|
4311
5307
|
schema?: "eu_queue";
|
|
4312
5308
|
actualOperationalDate?: string;
|
|
4313
|
-
applicationStatus?: string;
|
|
4314
|
-
interconnectingEntity?: string;
|
|
4315
5309
|
lastModified?: string;
|
|
4316
5310
|
localCounty?: string;
|
|
4317
5311
|
localState?: string;
|
|
4318
5312
|
plannedOperationalDate?: string;
|
|
4319
5313
|
projectName?: string;
|
|
4320
5314
|
totalMw?: number;
|
|
5315
|
+
applicationStatus?: string;
|
|
4321
5316
|
localTown?: string;
|
|
4322
5317
|
mwNet?: number;
|
|
4323
5318
|
refId?: string;
|
|
5319
|
+
sourceUpdate?: string;
|
|
4324
5320
|
storageCapacity?: number;
|
|
4325
5321
|
technology?: string;
|
|
4326
5322
|
windFarmName?: string;
|
|
@@ -4337,7 +5333,6 @@ export declare const euQueueAPISchema: z.ZodObject<{
|
|
|
4337
5333
|
identifier?: string;
|
|
4338
5334
|
}[];
|
|
4339
5335
|
sectorDetail?: string;
|
|
4340
|
-
sourceUpdate?: string;
|
|
4341
5336
|
stateAbbr?: string;
|
|
4342
5337
|
storageType?: string;
|
|
4343
5338
|
}>;
|
|
@@ -4509,7 +5504,7 @@ export declare const usQueueAPISchema: z.ZodObject<{
|
|
|
4509
5504
|
id?: string;
|
|
4510
5505
|
identifier?: string;
|
|
4511
5506
|
}>, "many">>;
|
|
4512
|
-
keyPeople: z.
|
|
5507
|
+
keyPeople: z.ZodArray<z.ZodObject<{
|
|
4513
5508
|
created: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
4514
5509
|
email: z.ZodOptional<z.ZodString>;
|
|
4515
5510
|
fullName: z.ZodOptional<z.ZodString>;
|
|
@@ -4536,7 +5531,7 @@ export declare const usQueueAPISchema: z.ZodObject<{
|
|
|
4536
5531
|
source?: string;
|
|
4537
5532
|
created?: string;
|
|
4538
5533
|
roles?: string[];
|
|
4539
|
-
}
|
|
5534
|
+
}>, "many">;
|
|
4540
5535
|
milestones: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4541
5536
|
compositeKey: z.ZodString;
|
|
4542
5537
|
daysInQueue: z.ZodOptional<z.ZodNumber>;
|
|
@@ -4666,6 +5661,7 @@ export declare const usQueueAPISchema: z.ZodObject<{
|
|
|
4666
5661
|
}>>;
|
|
4667
5662
|
reportCount: z.ZodOptional<z.ZodNumber>;
|
|
4668
5663
|
reportDate: z.ZodOptional<z.ZodString>;
|
|
5664
|
+
sourceUpdate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
4669
5665
|
signals: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4670
5666
|
filingDate: z.ZodString;
|
|
4671
5667
|
headline: z.ZodString;
|
|
@@ -4885,7 +5881,7 @@ export declare const usQueueAPISchema: z.ZodObject<{
|
|
|
4885
5881
|
source?: string;
|
|
4886
5882
|
created?: string;
|
|
4887
5883
|
roles?: string[];
|
|
4888
|
-
};
|
|
5884
|
+
}[];
|
|
4889
5885
|
id?: string;
|
|
4890
5886
|
queueKey?: string;
|
|
4891
5887
|
applicationId?: string;
|
|
@@ -4941,8 +5937,6 @@ export declare const usQueueAPISchema: z.ZodObject<{
|
|
|
4941
5937
|
queueDate?: string;
|
|
4942
5938
|
schema?: "us_queue";
|
|
4943
5939
|
actualOperationalDate?: string;
|
|
4944
|
-
applicationStatus?: string;
|
|
4945
|
-
interconnectingEntity?: string;
|
|
4946
5940
|
lastModified?: string;
|
|
4947
5941
|
localCounty?: {
|
|
4948
5942
|
id?: string;
|
|
@@ -4955,7 +5949,10 @@ export declare const usQueueAPISchema: z.ZodObject<{
|
|
|
4955
5949
|
plannedOperationalDate?: string;
|
|
4956
5950
|
projectName?: string;
|
|
4957
5951
|
totalMw?: number;
|
|
5952
|
+
applicationStatus?: string;
|
|
5953
|
+
interconnectingEntity?: string;
|
|
4958
5954
|
poiLocation?: string | number;
|
|
5955
|
+
sourceUpdate?: string;
|
|
4959
5956
|
applicationType?: string;
|
|
4960
5957
|
cost?: {
|
|
4961
5958
|
costCompany?: string;
|
|
@@ -5064,7 +6061,7 @@ export declare const usQueueAPISchema: z.ZodObject<{
|
|
|
5064
6061
|
source?: string;
|
|
5065
6062
|
created?: string;
|
|
5066
6063
|
roles?: string[];
|
|
5067
|
-
};
|
|
6064
|
+
}[];
|
|
5068
6065
|
id?: string;
|
|
5069
6066
|
queueKey?: string;
|
|
5070
6067
|
applicationId?: string;
|
|
@@ -5120,8 +6117,6 @@ export declare const usQueueAPISchema: z.ZodObject<{
|
|
|
5120
6117
|
queueDate?: string;
|
|
5121
6118
|
schema?: "us_queue";
|
|
5122
6119
|
actualOperationalDate?: string;
|
|
5123
|
-
applicationStatus?: string;
|
|
5124
|
-
interconnectingEntity?: string;
|
|
5125
6120
|
lastModified?: string;
|
|
5126
6121
|
localCounty?: {
|
|
5127
6122
|
id?: string;
|
|
@@ -5134,7 +6129,10 @@ export declare const usQueueAPISchema: z.ZodObject<{
|
|
|
5134
6129
|
plannedOperationalDate?: string;
|
|
5135
6130
|
projectName?: string;
|
|
5136
6131
|
totalMw?: number;
|
|
6132
|
+
applicationStatus?: string;
|
|
6133
|
+
interconnectingEntity?: string;
|
|
5137
6134
|
poiLocation?: string | number;
|
|
6135
|
+
sourceUpdate?: string;
|
|
5138
6136
|
applicationType?: string;
|
|
5139
6137
|
cost?: {
|
|
5140
6138
|
costCompany?: string;
|
|
@@ -5232,19 +6230,18 @@ export declare const usQueueAPISchema: z.ZodObject<{
|
|
|
5232
6230
|
}>;
|
|
5233
6231
|
export declare const queueAPISchema: z.ZodUnion<[z.ZodObject<{
|
|
5234
6232
|
$organizations: z.ZodOptional<z.ZodString>;
|
|
6233
|
+
applicationStatus: z.ZodOptional<z.ZodString>;
|
|
5235
6234
|
localTown: z.ZodOptional<z.ZodString>;
|
|
5236
6235
|
mwNet: z.ZodOptional<z.ZodNumber>;
|
|
5237
6236
|
refId: z.ZodOptional<z.ZodString>;
|
|
5238
6237
|
storageCapacity: z.ZodOptional<z.ZodNumber>;
|
|
5239
6238
|
technology: z.ZodOptional<z.ZodString>;
|
|
5240
6239
|
windFarmName: z.ZodOptional<z.ZodString>;
|
|
5241
|
-
} & {
|
|
5242
6240
|
id: z.ZodString;
|
|
5243
6241
|
schema: z.ZodLiteral<"eu_queue">;
|
|
5244
6242
|
actualOperationalDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
5245
6243
|
allSectors: z.ZodOptional<z.ZodString>;
|
|
5246
6244
|
applicationId: z.ZodOptional<z.ZodString>;
|
|
5247
|
-
applicationStatus: z.ZodOptional<z.ZodString>;
|
|
5248
6245
|
country: z.ZodOptional<z.ZodString>;
|
|
5249
6246
|
geo: z.ZodOptional<z.ZodObject<{
|
|
5250
6247
|
defaultValue: z.ZodOptional<z.ZodString>;
|
|
@@ -5325,7 +6322,6 @@ export declare const queueAPISchema: z.ZodUnion<[z.ZodObject<{
|
|
|
5325
6322
|
lon?: number;
|
|
5326
6323
|
};
|
|
5327
6324
|
}>>;
|
|
5328
|
-
interconnectingEntity: z.ZodOptional<z.ZodString>;
|
|
5329
6325
|
lastModified: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
5330
6326
|
localCounty: z.ZodOptional<z.ZodString>;
|
|
5331
6327
|
localState: z.ZodOptional<z.ZodString>;
|
|
@@ -5439,17 +6435,17 @@ export declare const queueAPISchema: z.ZodUnion<[z.ZodObject<{
|
|
|
5439
6435
|
queueDate?: string;
|
|
5440
6436
|
schema?: "eu_queue";
|
|
5441
6437
|
actualOperationalDate?: string;
|
|
5442
|
-
applicationStatus?: string;
|
|
5443
|
-
interconnectingEntity?: string;
|
|
5444
6438
|
lastModified?: string;
|
|
5445
6439
|
localCounty?: string;
|
|
5446
6440
|
localState?: string;
|
|
5447
6441
|
plannedOperationalDate?: string;
|
|
5448
6442
|
projectName?: string;
|
|
5449
6443
|
totalMw?: number;
|
|
6444
|
+
applicationStatus?: string;
|
|
5450
6445
|
localTown?: string;
|
|
5451
6446
|
mwNet?: number;
|
|
5452
6447
|
refId?: string;
|
|
6448
|
+
sourceUpdate?: string;
|
|
5453
6449
|
storageCapacity?: number;
|
|
5454
6450
|
technology?: string;
|
|
5455
6451
|
windFarmName?: string;
|
|
@@ -5466,7 +6462,6 @@ export declare const queueAPISchema: z.ZodUnion<[z.ZodObject<{
|
|
|
5466
6462
|
identifier?: string;
|
|
5467
6463
|
}[];
|
|
5468
6464
|
sectorDetail?: string;
|
|
5469
|
-
sourceUpdate?: string;
|
|
5470
6465
|
stateAbbr?: string;
|
|
5471
6466
|
storageType?: string;
|
|
5472
6467
|
}, {
|
|
@@ -5514,17 +6509,17 @@ export declare const queueAPISchema: z.ZodUnion<[z.ZodObject<{
|
|
|
5514
6509
|
queueDate?: string;
|
|
5515
6510
|
schema?: "eu_queue";
|
|
5516
6511
|
actualOperationalDate?: string;
|
|
5517
|
-
applicationStatus?: string;
|
|
5518
|
-
interconnectingEntity?: string;
|
|
5519
6512
|
lastModified?: string;
|
|
5520
6513
|
localCounty?: string;
|
|
5521
6514
|
localState?: string;
|
|
5522
6515
|
plannedOperationalDate?: string;
|
|
5523
6516
|
projectName?: string;
|
|
5524
6517
|
totalMw?: number;
|
|
6518
|
+
applicationStatus?: string;
|
|
5525
6519
|
localTown?: string;
|
|
5526
6520
|
mwNet?: number;
|
|
5527
6521
|
refId?: string;
|
|
6522
|
+
sourceUpdate?: string;
|
|
5528
6523
|
storageCapacity?: number;
|
|
5529
6524
|
technology?: string;
|
|
5530
6525
|
windFarmName?: string;
|
|
@@ -5541,7 +6536,6 @@ export declare const queueAPISchema: z.ZodUnion<[z.ZodObject<{
|
|
|
5541
6536
|
identifier?: string;
|
|
5542
6537
|
}[];
|
|
5543
6538
|
sectorDetail?: string;
|
|
5544
|
-
sourceUpdate?: string;
|
|
5545
6539
|
stateAbbr?: string;
|
|
5546
6540
|
storageType?: string;
|
|
5547
6541
|
}>, z.ZodObject<{
|
|
@@ -5712,7 +6706,7 @@ export declare const queueAPISchema: z.ZodUnion<[z.ZodObject<{
|
|
|
5712
6706
|
id?: string;
|
|
5713
6707
|
identifier?: string;
|
|
5714
6708
|
}>, "many">>;
|
|
5715
|
-
keyPeople: z.
|
|
6709
|
+
keyPeople: z.ZodArray<z.ZodObject<{
|
|
5716
6710
|
created: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
5717
6711
|
email: z.ZodOptional<z.ZodString>;
|
|
5718
6712
|
fullName: z.ZodOptional<z.ZodString>;
|
|
@@ -5739,7 +6733,7 @@ export declare const queueAPISchema: z.ZodUnion<[z.ZodObject<{
|
|
|
5739
6733
|
source?: string;
|
|
5740
6734
|
created?: string;
|
|
5741
6735
|
roles?: string[];
|
|
5742
|
-
}
|
|
6736
|
+
}>, "many">;
|
|
5743
6737
|
milestones: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5744
6738
|
compositeKey: z.ZodString;
|
|
5745
6739
|
daysInQueue: z.ZodOptional<z.ZodNumber>;
|
|
@@ -5869,6 +6863,7 @@ export declare const queueAPISchema: z.ZodUnion<[z.ZodObject<{
|
|
|
5869
6863
|
}>>;
|
|
5870
6864
|
reportCount: z.ZodOptional<z.ZodNumber>;
|
|
5871
6865
|
reportDate: z.ZodOptional<z.ZodString>;
|
|
6866
|
+
sourceUpdate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
5872
6867
|
signals: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5873
6868
|
filingDate: z.ZodString;
|
|
5874
6869
|
headline: z.ZodString;
|
|
@@ -6088,7 +7083,7 @@ export declare const queueAPISchema: z.ZodUnion<[z.ZodObject<{
|
|
|
6088
7083
|
source?: string;
|
|
6089
7084
|
created?: string;
|
|
6090
7085
|
roles?: string[];
|
|
6091
|
-
};
|
|
7086
|
+
}[];
|
|
6092
7087
|
id?: string;
|
|
6093
7088
|
queueKey?: string;
|
|
6094
7089
|
applicationId?: string;
|
|
@@ -6144,8 +7139,6 @@ export declare const queueAPISchema: z.ZodUnion<[z.ZodObject<{
|
|
|
6144
7139
|
queueDate?: string;
|
|
6145
7140
|
schema?: "us_queue";
|
|
6146
7141
|
actualOperationalDate?: string;
|
|
6147
|
-
applicationStatus?: string;
|
|
6148
|
-
interconnectingEntity?: string;
|
|
6149
7142
|
lastModified?: string;
|
|
6150
7143
|
localCounty?: {
|
|
6151
7144
|
id?: string;
|
|
@@ -6158,7 +7151,10 @@ export declare const queueAPISchema: z.ZodUnion<[z.ZodObject<{
|
|
|
6158
7151
|
plannedOperationalDate?: string;
|
|
6159
7152
|
projectName?: string;
|
|
6160
7153
|
totalMw?: number;
|
|
7154
|
+
applicationStatus?: string;
|
|
7155
|
+
interconnectingEntity?: string;
|
|
6161
7156
|
poiLocation?: string | number;
|
|
7157
|
+
sourceUpdate?: string;
|
|
6162
7158
|
applicationType?: string;
|
|
6163
7159
|
cost?: {
|
|
6164
7160
|
costCompany?: string;
|
|
@@ -6267,7 +7263,7 @@ export declare const queueAPISchema: z.ZodUnion<[z.ZodObject<{
|
|
|
6267
7263
|
source?: string;
|
|
6268
7264
|
created?: string;
|
|
6269
7265
|
roles?: string[];
|
|
6270
|
-
};
|
|
7266
|
+
}[];
|
|
6271
7267
|
id?: string;
|
|
6272
7268
|
queueKey?: string;
|
|
6273
7269
|
applicationId?: string;
|
|
@@ -6323,8 +7319,6 @@ export declare const queueAPISchema: z.ZodUnion<[z.ZodObject<{
|
|
|
6323
7319
|
queueDate?: string;
|
|
6324
7320
|
schema?: "us_queue";
|
|
6325
7321
|
actualOperationalDate?: string;
|
|
6326
|
-
applicationStatus?: string;
|
|
6327
|
-
interconnectingEntity?: string;
|
|
6328
7322
|
lastModified?: string;
|
|
6329
7323
|
localCounty?: {
|
|
6330
7324
|
id?: string;
|
|
@@ -6337,7 +7331,10 @@ export declare const queueAPISchema: z.ZodUnion<[z.ZodObject<{
|
|
|
6337
7331
|
plannedOperationalDate?: string;
|
|
6338
7332
|
projectName?: string;
|
|
6339
7333
|
totalMw?: number;
|
|
7334
|
+
applicationStatus?: string;
|
|
7335
|
+
interconnectingEntity?: string;
|
|
6340
7336
|
poiLocation?: string | number;
|
|
7337
|
+
sourceUpdate?: string;
|
|
6341
7338
|
applicationType?: string;
|
|
6342
7339
|
cost?: {
|
|
6343
7340
|
costCompany?: string;
|
|
@@ -6435,19 +7432,18 @@ export declare const queueAPISchema: z.ZodUnion<[z.ZodObject<{
|
|
|
6435
7432
|
}>]>;
|
|
6436
7433
|
export declare const queueAPIUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.ZodObject<{
|
|
6437
7434
|
$organizations: z.ZodOptional<z.ZodString>;
|
|
7435
|
+
applicationStatus: z.ZodOptional<z.ZodString>;
|
|
6438
7436
|
localTown: z.ZodOptional<z.ZodString>;
|
|
6439
7437
|
mwNet: z.ZodOptional<z.ZodNumber>;
|
|
6440
7438
|
refId: z.ZodOptional<z.ZodString>;
|
|
6441
7439
|
storageCapacity: z.ZodOptional<z.ZodNumber>;
|
|
6442
7440
|
technology: z.ZodOptional<z.ZodString>;
|
|
6443
7441
|
windFarmName: z.ZodOptional<z.ZodString>;
|
|
6444
|
-
} & {
|
|
6445
7442
|
id: z.ZodString;
|
|
6446
7443
|
schema: z.ZodLiteral<"eu_queue">;
|
|
6447
7444
|
actualOperationalDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
6448
7445
|
allSectors: z.ZodOptional<z.ZodString>;
|
|
6449
7446
|
applicationId: z.ZodOptional<z.ZodString>;
|
|
6450
|
-
applicationStatus: z.ZodOptional<z.ZodString>;
|
|
6451
7447
|
country: z.ZodOptional<z.ZodString>;
|
|
6452
7448
|
geo: z.ZodOptional<z.ZodObject<{
|
|
6453
7449
|
defaultValue: z.ZodOptional<z.ZodString>;
|
|
@@ -6528,7 +7524,6 @@ export declare const queueAPIUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.Z
|
|
|
6528
7524
|
lon?: number;
|
|
6529
7525
|
};
|
|
6530
7526
|
}>>;
|
|
6531
|
-
interconnectingEntity: z.ZodOptional<z.ZodString>;
|
|
6532
7527
|
lastModified: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
6533
7528
|
localCounty: z.ZodOptional<z.ZodString>;
|
|
6534
7529
|
localState: z.ZodOptional<z.ZodString>;
|
|
@@ -6642,17 +7637,17 @@ export declare const queueAPIUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.Z
|
|
|
6642
7637
|
queueDate?: string;
|
|
6643
7638
|
schema?: "eu_queue";
|
|
6644
7639
|
actualOperationalDate?: string;
|
|
6645
|
-
applicationStatus?: string;
|
|
6646
|
-
interconnectingEntity?: string;
|
|
6647
7640
|
lastModified?: string;
|
|
6648
7641
|
localCounty?: string;
|
|
6649
7642
|
localState?: string;
|
|
6650
7643
|
plannedOperationalDate?: string;
|
|
6651
7644
|
projectName?: string;
|
|
6652
7645
|
totalMw?: number;
|
|
7646
|
+
applicationStatus?: string;
|
|
6653
7647
|
localTown?: string;
|
|
6654
7648
|
mwNet?: number;
|
|
6655
7649
|
refId?: string;
|
|
7650
|
+
sourceUpdate?: string;
|
|
6656
7651
|
storageCapacity?: number;
|
|
6657
7652
|
technology?: string;
|
|
6658
7653
|
windFarmName?: string;
|
|
@@ -6669,7 +7664,6 @@ export declare const queueAPIUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.Z
|
|
|
6669
7664
|
identifier?: string;
|
|
6670
7665
|
}[];
|
|
6671
7666
|
sectorDetail?: string;
|
|
6672
|
-
sourceUpdate?: string;
|
|
6673
7667
|
stateAbbr?: string;
|
|
6674
7668
|
storageType?: string;
|
|
6675
7669
|
}, {
|
|
@@ -6717,17 +7711,17 @@ export declare const queueAPIUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.Z
|
|
|
6717
7711
|
queueDate?: string;
|
|
6718
7712
|
schema?: "eu_queue";
|
|
6719
7713
|
actualOperationalDate?: string;
|
|
6720
|
-
applicationStatus?: string;
|
|
6721
|
-
interconnectingEntity?: string;
|
|
6722
7714
|
lastModified?: string;
|
|
6723
7715
|
localCounty?: string;
|
|
6724
7716
|
localState?: string;
|
|
6725
7717
|
plannedOperationalDate?: string;
|
|
6726
7718
|
projectName?: string;
|
|
6727
7719
|
totalMw?: number;
|
|
7720
|
+
applicationStatus?: string;
|
|
6728
7721
|
localTown?: string;
|
|
6729
7722
|
mwNet?: number;
|
|
6730
7723
|
refId?: string;
|
|
7724
|
+
sourceUpdate?: string;
|
|
6731
7725
|
storageCapacity?: number;
|
|
6732
7726
|
technology?: string;
|
|
6733
7727
|
windFarmName?: string;
|
|
@@ -6744,7 +7738,6 @@ export declare const queueAPIUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.Z
|
|
|
6744
7738
|
identifier?: string;
|
|
6745
7739
|
}[];
|
|
6746
7740
|
sectorDetail?: string;
|
|
6747
|
-
sourceUpdate?: string;
|
|
6748
7741
|
stateAbbr?: string;
|
|
6749
7742
|
storageType?: string;
|
|
6750
7743
|
}>, z.ZodObject<{
|
|
@@ -6915,7 +7908,7 @@ export declare const queueAPIUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.Z
|
|
|
6915
7908
|
id?: string;
|
|
6916
7909
|
identifier?: string;
|
|
6917
7910
|
}>, "many">>;
|
|
6918
|
-
keyPeople: z.
|
|
7911
|
+
keyPeople: z.ZodArray<z.ZodObject<{
|
|
6919
7912
|
created: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
6920
7913
|
email: z.ZodOptional<z.ZodString>;
|
|
6921
7914
|
fullName: z.ZodOptional<z.ZodString>;
|
|
@@ -6942,7 +7935,7 @@ export declare const queueAPIUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.Z
|
|
|
6942
7935
|
source?: string;
|
|
6943
7936
|
created?: string;
|
|
6944
7937
|
roles?: string[];
|
|
6945
|
-
}
|
|
7938
|
+
}>, "many">;
|
|
6946
7939
|
milestones: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6947
7940
|
compositeKey: z.ZodString;
|
|
6948
7941
|
daysInQueue: z.ZodOptional<z.ZodNumber>;
|
|
@@ -7072,6 +8065,7 @@ export declare const queueAPIUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.Z
|
|
|
7072
8065
|
}>>;
|
|
7073
8066
|
reportCount: z.ZodOptional<z.ZodNumber>;
|
|
7074
8067
|
reportDate: z.ZodOptional<z.ZodString>;
|
|
8068
|
+
sourceUpdate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
7075
8069
|
signals: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7076
8070
|
filingDate: z.ZodString;
|
|
7077
8071
|
headline: z.ZodString;
|
|
@@ -7291,7 +8285,7 @@ export declare const queueAPIUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.Z
|
|
|
7291
8285
|
source?: string;
|
|
7292
8286
|
created?: string;
|
|
7293
8287
|
roles?: string[];
|
|
7294
|
-
};
|
|
8288
|
+
}[];
|
|
7295
8289
|
id?: string;
|
|
7296
8290
|
queueKey?: string;
|
|
7297
8291
|
applicationId?: string;
|
|
@@ -7347,8 +8341,6 @@ export declare const queueAPIUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.Z
|
|
|
7347
8341
|
queueDate?: string;
|
|
7348
8342
|
schema?: "us_queue";
|
|
7349
8343
|
actualOperationalDate?: string;
|
|
7350
|
-
applicationStatus?: string;
|
|
7351
|
-
interconnectingEntity?: string;
|
|
7352
8344
|
lastModified?: string;
|
|
7353
8345
|
localCounty?: {
|
|
7354
8346
|
id?: string;
|
|
@@ -7361,7 +8353,10 @@ export declare const queueAPIUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.Z
|
|
|
7361
8353
|
plannedOperationalDate?: string;
|
|
7362
8354
|
projectName?: string;
|
|
7363
8355
|
totalMw?: number;
|
|
8356
|
+
applicationStatus?: string;
|
|
8357
|
+
interconnectingEntity?: string;
|
|
7364
8358
|
poiLocation?: string | number;
|
|
8359
|
+
sourceUpdate?: string;
|
|
7365
8360
|
applicationType?: string;
|
|
7366
8361
|
cost?: {
|
|
7367
8362
|
costCompany?: string;
|
|
@@ -7470,7 +8465,7 @@ export declare const queueAPIUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.Z
|
|
|
7470
8465
|
source?: string;
|
|
7471
8466
|
created?: string;
|
|
7472
8467
|
roles?: string[];
|
|
7473
|
-
};
|
|
8468
|
+
}[];
|
|
7474
8469
|
id?: string;
|
|
7475
8470
|
queueKey?: string;
|
|
7476
8471
|
applicationId?: string;
|
|
@@ -7526,8 +8521,6 @@ export declare const queueAPIUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.Z
|
|
|
7526
8521
|
queueDate?: string;
|
|
7527
8522
|
schema?: "us_queue";
|
|
7528
8523
|
actualOperationalDate?: string;
|
|
7529
|
-
applicationStatus?: string;
|
|
7530
|
-
interconnectingEntity?: string;
|
|
7531
8524
|
lastModified?: string;
|
|
7532
8525
|
localCounty?: {
|
|
7533
8526
|
id?: string;
|
|
@@ -7540,7 +8533,10 @@ export declare const queueAPIUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.Z
|
|
|
7540
8533
|
plannedOperationalDate?: string;
|
|
7541
8534
|
projectName?: string;
|
|
7542
8535
|
totalMw?: number;
|
|
8536
|
+
applicationStatus?: string;
|
|
8537
|
+
interconnectingEntity?: string;
|
|
7543
8538
|
poiLocation?: string | number;
|
|
8539
|
+
sourceUpdate?: string;
|
|
7544
8540
|
applicationType?: string;
|
|
7545
8541
|
cost?: {
|
|
7546
8542
|
costCompany?: string;
|
|
@@ -7640,4 +8636,3 @@ export type QueueAPIType = z.infer<typeof queueAPISchema>;
|
|
|
7640
8636
|
export type QueueAPIUnionType = z.infer<typeof queueAPIUnionSchema>;
|
|
7641
8637
|
export type EUQueueAPIType = z.infer<typeof euQueueAPISchema>;
|
|
7642
8638
|
export type USQueueAPIType = z.infer<typeof usQueueAPISchema>;
|
|
7643
|
-
export {};
|