@new-project-media/client-frontends-shared-types 3.0.1 → 3.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/lib/dataGrid/api/queues/index.d.ts +4 -0
- package/src/lib/dataGrid/api/queues/index.js +33 -0
- package/src/lib/dataGrid/api/queues/index.js.map +1 -0
- package/src/lib/dataGrid/api/{queues.d.ts → queues/v1.d.ts} +542 -543
- package/src/lib/dataGrid/api/{queues.js → queues/v1.js} +50 -61
- package/src/lib/dataGrid/api/queues/v1.js.map +1 -0
- package/src/lib/dataGrid/api/signals/index.d.ts +4 -0
- package/src/lib/dataGrid/api/signals/index.js +38 -0
- package/src/lib/dataGrid/api/signals/index.js.map +1 -0
- package/src/lib/dataGrid/api/signals/v1.d.ts +5250 -0
- package/src/lib/dataGrid/api/signals/v1.js +274 -0
- package/src/lib/dataGrid/api/signals/v1.js.map +1 -0
- package/src/lib/dataGrid/api/queues.js.map +0 -1
- package/src/lib/dataGrid/api/signals.d.ts +0 -2171
- package/src/lib/dataGrid/api/signals.js +0 -166
- package/src/lib/dataGrid/api/signals.js.map +0 -1
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
-
declare const
|
|
2
|
+
export declare const baseQueueSchemaV1: z.ZodObject<{
|
|
3
3
|
id: z.ZodString;
|
|
4
4
|
schema: z.ZodString;
|
|
5
5
|
}, z.core.$strip>;
|
|
6
|
-
declare const
|
|
6
|
+
export declare const euQueueListSchemaV1: z.ZodObject<{
|
|
7
7
|
id: z.ZodString;
|
|
8
8
|
schema: z.ZodLiteral<"eu_queue">;
|
|
9
9
|
actualOperationalDate: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
@@ -48,7 +48,7 @@ declare const euQueueListSchema: z.ZodObject<{
|
|
|
48
48
|
totalMw: z.ZodOptional<z.ZodNumber>;
|
|
49
49
|
totals: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
50
50
|
}, z.core.$strict>;
|
|
51
|
-
declare const
|
|
51
|
+
export declare const usQueueListSchemaV1: z.ZodObject<{
|
|
52
52
|
id: z.ZodString;
|
|
53
53
|
schema: z.ZodLiteral<"us_queue">;
|
|
54
54
|
actualOperationalDate: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
@@ -116,52 +116,62 @@ declare const usQueueListSchema: z.ZodObject<{
|
|
|
116
116
|
totals: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
117
117
|
withdrawnDate: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
118
118
|
}, z.core.$strict>;
|
|
119
|
-
declare const
|
|
119
|
+
export declare const euQueueListWithSortSchemaV1: z.ZodObject<{
|
|
120
120
|
id: z.ZodString;
|
|
121
121
|
schema: z.ZodLiteral<"eu_queue">;
|
|
122
|
-
|
|
122
|
+
actualOperationalDate: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
123
123
|
allSectors: z.ZodOptional<z.ZodString>;
|
|
124
124
|
applicationId: z.ZodOptional<z.ZodString>;
|
|
125
|
-
applicationStatus: z.ZodOptional<z.ZodString>;
|
|
126
125
|
country: z.ZodOptional<z.ZodString>;
|
|
126
|
+
geo: z.ZodOptional<z.ZodObject<{
|
|
127
|
+
defaultValue: z.ZodOptional<z.ZodString>;
|
|
128
|
+
default: z.ZodOptional<z.ZodObject<{
|
|
129
|
+
lon: z.ZodNumber;
|
|
130
|
+
lat: z.ZodNumber;
|
|
131
|
+
}, z.core.$strip>>;
|
|
132
|
+
project: z.ZodOptional<z.ZodObject<{
|
|
133
|
+
lon: z.ZodNumber;
|
|
134
|
+
lat: z.ZodNumber;
|
|
135
|
+
}, z.core.$strip>>;
|
|
136
|
+
county: z.ZodOptional<z.ZodObject<{
|
|
137
|
+
lon: z.ZodNumber;
|
|
138
|
+
lat: z.ZodNumber;
|
|
139
|
+
}, z.core.$strip>>;
|
|
140
|
+
facility: z.ZodOptional<z.ZodObject<{
|
|
141
|
+
lon: z.ZodNumber;
|
|
142
|
+
lat: z.ZodNumber;
|
|
143
|
+
}, z.core.$strip>>;
|
|
144
|
+
}, z.core.$strip>>;
|
|
127
145
|
lastModified: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
128
146
|
localCounty: z.ZodOptional<z.ZodString>;
|
|
129
147
|
localState: z.ZodOptional<z.ZodString>;
|
|
130
|
-
localTown: z.ZodOptional<z.ZodString>;
|
|
131
|
-
mwNet: z.ZodOptional<z.ZodNumber>;
|
|
132
148
|
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
133
149
|
identifier: z.ZodString;
|
|
134
150
|
id: z.ZodString;
|
|
135
151
|
role: z.ZodString;
|
|
136
152
|
ref: z.ZodOptional<z.ZodString>;
|
|
137
153
|
}, z.core.$strip>>>;
|
|
154
|
+
plannedOperationalDate: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
138
155
|
projectName: z.ZodOptional<z.ZodString>;
|
|
139
156
|
queueDataset: z.ZodOptional<z.ZodString>;
|
|
140
157
|
queueDate: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
141
|
-
|
|
142
|
-
sectors: z.ZodArray<z.ZodObject<{
|
|
143
|
-
identifier: z.ZodString;
|
|
144
|
-
id: z.ZodString;
|
|
145
|
-
}, z.core.$strip>>;
|
|
158
|
+
reportDate: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
146
159
|
sourceUpdate: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
147
160
|
status: z.ZodOptional<z.ZodString>;
|
|
148
|
-
storageCapacity: z.ZodOptional<z.ZodNumber>;
|
|
149
|
-
technology: z.ZodOptional<z.ZodString>;
|
|
150
161
|
totalMw: z.ZodOptional<z.ZodNumber>;
|
|
151
|
-
|
|
162
|
+
totals: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
163
|
+
sort: z.ZodTuple<[z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>, z.ZodNumber], null>;
|
|
152
164
|
}, z.core.$strict>;
|
|
153
|
-
declare const
|
|
165
|
+
export declare const usQueueListWithSortSchemaV1: z.ZodObject<{
|
|
154
166
|
id: z.ZodString;
|
|
155
167
|
schema: z.ZodLiteral<"us_queue">;
|
|
156
|
-
$organizations: z.ZodOptional<z.ZodString>;
|
|
157
168
|
actualOperationalDate: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
158
169
|
allSectors: z.ZodOptional<z.ZodString>;
|
|
159
170
|
applicationId: z.ZodOptional<z.ZodString>;
|
|
171
|
+
applicationStatus: z.ZodOptional<z.ZodString>;
|
|
160
172
|
applicationTags: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
161
173
|
identifier: z.ZodString;
|
|
162
174
|
}, z.core.$strip>>>;
|
|
163
|
-
applicationType: z.ZodOptional<z.ZodString>;
|
|
164
|
-
applicationStatus: z.ZodOptional<z.ZodString>;
|
|
165
175
|
cost: z.ZodOptional<z.ZodObject<{
|
|
166
176
|
costCompany: z.ZodString;
|
|
167
177
|
costYear: z.ZodNumber;
|
|
@@ -173,62 +183,27 @@ declare const usQueueDetailsSchema: z.ZodObject<{
|
|
|
173
183
|
identifier: z.ZodString;
|
|
174
184
|
id: z.ZodString;
|
|
175
185
|
}, z.core.$strip>>>;
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
}>;
|
|
194
|
-
id: z.ZodString;
|
|
195
|
-
propKey: z.ZodString;
|
|
196
|
-
propType: z.ZodEnum<{
|
|
197
|
-
applicationTags: "applicationTags";
|
|
198
|
-
tracked: "tracked";
|
|
199
|
-
}>;
|
|
200
|
-
propVal: z.ZodString;
|
|
201
|
-
queueDate: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
202
|
-
queueKey: z.ZodString;
|
|
203
|
-
reportDate: z.ZodString;
|
|
204
|
-
set: z.ZodNumber;
|
|
205
|
-
transition: z.ZodOptional<z.ZodObject<{
|
|
206
|
-
delta: z.ZodOptional<z.ZodNumber>;
|
|
207
|
-
durationInDays: z.ZodNumber;
|
|
208
|
-
from: z.ZodObject<{
|
|
209
|
-
assigned: z.ZodString;
|
|
210
|
-
value: z.ZodString;
|
|
211
|
-
}, z.core.$strip>;
|
|
212
|
-
to: z.ZodObject<{
|
|
213
|
-
assigned: z.ZodString;
|
|
214
|
-
value: z.ZodString;
|
|
215
|
-
}, z.core.$strip>;
|
|
186
|
+
geo: z.ZodOptional<z.ZodObject<{
|
|
187
|
+
defaultValue: z.ZodOptional<z.ZodString>;
|
|
188
|
+
default: z.ZodOptional<z.ZodObject<{
|
|
189
|
+
lon: z.ZodNumber;
|
|
190
|
+
lat: z.ZodNumber;
|
|
191
|
+
}, z.core.$strip>>;
|
|
192
|
+
project: z.ZodOptional<z.ZodObject<{
|
|
193
|
+
lon: z.ZodNumber;
|
|
194
|
+
lat: z.ZodNumber;
|
|
195
|
+
}, z.core.$strip>>;
|
|
196
|
+
county: z.ZodOptional<z.ZodObject<{
|
|
197
|
+
lon: z.ZodNumber;
|
|
198
|
+
lat: z.ZodNumber;
|
|
199
|
+
}, z.core.$strip>>;
|
|
200
|
+
facility: z.ZodOptional<z.ZodObject<{
|
|
201
|
+
lon: z.ZodNumber;
|
|
202
|
+
lat: z.ZodNumber;
|
|
216
203
|
}, z.core.$strip>>;
|
|
217
|
-
}, z.core.$strip>>>;
|
|
218
|
-
isoRtoConnection: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
219
|
-
identifier: z.ZodString;
|
|
220
|
-
id: z.ZodString;
|
|
221
|
-
}, z.core.$strip>>>;
|
|
222
|
-
keyPeople: z.ZodArray<z.ZodObject<{
|
|
223
|
-
created: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
224
|
-
email: z.ZodOptional<z.ZodString>;
|
|
225
|
-
fullName: z.ZodOptional<z.ZodString>;
|
|
226
|
-
id: z.ZodOptional<z.ZodString>;
|
|
227
|
-
linkedinUrl: z.ZodOptional<z.ZodString>;
|
|
228
|
-
phone: z.ZodOptional<z.ZodString>;
|
|
229
|
-
roles: z.ZodArray<z.ZodOptional<z.ZodString>>;
|
|
230
|
-
source: z.ZodOptional<z.ZodString>;
|
|
231
204
|
}, z.core.$strip>>;
|
|
205
|
+
interconnectingEntity: z.ZodOptional<z.ZodString>;
|
|
206
|
+
lastModified: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
232
207
|
localCounty: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
233
208
|
identifier: z.ZodString;
|
|
234
209
|
id: z.ZodString;
|
|
@@ -237,34 +212,6 @@ declare const usQueueDetailsSchema: z.ZodObject<{
|
|
|
237
212
|
identifier: z.ZodString;
|
|
238
213
|
id: z.ZodString;
|
|
239
214
|
}, z.core.$strip>>>;
|
|
240
|
-
milestones: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
241
|
-
compositeKey: z.ZodString;
|
|
242
|
-
daysInQueue: z.ZodOptional<z.ZodNumber>;
|
|
243
|
-
delta: z.ZodOptional<z.ZodNumber>;
|
|
244
|
-
durationInDays: z.ZodOptional<z.ZodNumber>;
|
|
245
|
-
entries: z.ZodArray<z.ZodObject<{
|
|
246
|
-
daysInQueue: z.ZodOptional<z.ZodNumber>;
|
|
247
|
-
delta: z.ZodOptional<z.ZodNumber>;
|
|
248
|
-
durationInDays: z.ZodOptional<z.ZodNumber>;
|
|
249
|
-
eventHash: z.ZodString;
|
|
250
|
-
fromValue: z.ZodOptional<z.ZodString>;
|
|
251
|
-
label: z.ZodString;
|
|
252
|
-
reportDate: z.ZodString;
|
|
253
|
-
stage: z.ZodString;
|
|
254
|
-
toValue: z.ZodString;
|
|
255
|
-
}, z.core.$strip>>;
|
|
256
|
-
eventCount: z.ZodNumber;
|
|
257
|
-
eventHash: z.ZodString;
|
|
258
|
-
fromValue: z.ZodOptional<z.ZodString>;
|
|
259
|
-
key: z.ZodString;
|
|
260
|
-
label: z.ZodString;
|
|
261
|
-
reportDate: z.ZodString;
|
|
262
|
-
searchKey: z.ZodString;
|
|
263
|
-
stage: z.ZodString;
|
|
264
|
-
state: z.ZodString;
|
|
265
|
-
toValue: z.ZodString;
|
|
266
|
-
type: z.ZodString;
|
|
267
|
-
}, z.core.$strip>>>;
|
|
268
215
|
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
269
216
|
identifier: z.ZodString;
|
|
270
217
|
id: z.ZodString;
|
|
@@ -272,81 +219,73 @@ declare const usQueueDetailsSchema: z.ZodObject<{
|
|
|
272
219
|
ref: z.ZodOptional<z.ZodString>;
|
|
273
220
|
}, z.core.$strip>>>;
|
|
274
221
|
plannedOperationalDate: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
275
|
-
poi: z.ZodOptional<z.ZodObject<{
|
|
276
|
-
id: z.ZodString;
|
|
277
|
-
identifier: z.ZodString;
|
|
278
|
-
kV: z.ZodOptional<z.ZodString>;
|
|
279
|
-
meta: z.ZodOptional<z.ZodString>;
|
|
280
|
-
poiGroup: z.ZodString;
|
|
281
|
-
}, z.core.$strip>>;
|
|
282
222
|
poiLocation: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodOptional<z.ZodNumber>]>;
|
|
283
223
|
projectName: z.ZodOptional<z.ZodString>;
|
|
284
|
-
interconnectingEntity: z.ZodOptional<z.ZodString>;
|
|
285
224
|
queueDataset: z.ZodOptional<z.ZodString>;
|
|
286
225
|
queueDate: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
287
226
|
reportCount: z.ZodOptional<z.ZodNumber>;
|
|
288
|
-
reportDate: z.ZodOptional<z.ZodString
|
|
289
|
-
sectors: z.ZodArray<z.ZodObject<{
|
|
290
|
-
identifier: z.ZodString;
|
|
291
|
-
id: z.ZodString;
|
|
292
|
-
}, z.core.$strip>>;
|
|
227
|
+
reportDate: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
293
228
|
sourceUpdate: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
294
|
-
signals: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
295
|
-
filingDate: z.ZodString;
|
|
296
|
-
headline: z.ZodString;
|
|
297
|
-
id: z.ZodString;
|
|
298
|
-
publishedDate: z.ZodString;
|
|
299
|
-
subType: z.ZodString;
|
|
300
|
-
type: z.ZodString;
|
|
301
|
-
}, z.core.$strip>>>;
|
|
302
229
|
totalMw: z.ZodOptional<z.ZodNumber>;
|
|
230
|
+
totals: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
303
231
|
withdrawnDate: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
232
|
+
sort: z.ZodTuple<[z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>, z.ZodNumber], null>;
|
|
304
233
|
}, z.core.$strict>;
|
|
305
|
-
declare const
|
|
234
|
+
export declare const queueListSchemaV1: z.ZodUnion<[z.ZodObject<{
|
|
306
235
|
id: z.ZodString;
|
|
307
236
|
schema: z.ZodLiteral<"eu_queue">;
|
|
308
|
-
|
|
237
|
+
actualOperationalDate: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
309
238
|
allSectors: z.ZodOptional<z.ZodString>;
|
|
310
239
|
applicationId: z.ZodOptional<z.ZodString>;
|
|
311
|
-
applicationStatus: z.ZodOptional<z.ZodString>;
|
|
312
240
|
country: z.ZodOptional<z.ZodString>;
|
|
241
|
+
geo: z.ZodOptional<z.ZodObject<{
|
|
242
|
+
defaultValue: z.ZodOptional<z.ZodString>;
|
|
243
|
+
default: z.ZodOptional<z.ZodObject<{
|
|
244
|
+
lon: z.ZodNumber;
|
|
245
|
+
lat: z.ZodNumber;
|
|
246
|
+
}, z.core.$strip>>;
|
|
247
|
+
project: z.ZodOptional<z.ZodObject<{
|
|
248
|
+
lon: z.ZodNumber;
|
|
249
|
+
lat: z.ZodNumber;
|
|
250
|
+
}, z.core.$strip>>;
|
|
251
|
+
county: z.ZodOptional<z.ZodObject<{
|
|
252
|
+
lon: z.ZodNumber;
|
|
253
|
+
lat: z.ZodNumber;
|
|
254
|
+
}, z.core.$strip>>;
|
|
255
|
+
facility: z.ZodOptional<z.ZodObject<{
|
|
256
|
+
lon: z.ZodNumber;
|
|
257
|
+
lat: z.ZodNumber;
|
|
258
|
+
}, z.core.$strip>>;
|
|
259
|
+
}, z.core.$strip>>;
|
|
313
260
|
lastModified: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
314
261
|
localCounty: z.ZodOptional<z.ZodString>;
|
|
315
262
|
localState: z.ZodOptional<z.ZodString>;
|
|
316
|
-
localTown: z.ZodOptional<z.ZodString>;
|
|
317
|
-
mwNet: z.ZodOptional<z.ZodNumber>;
|
|
318
263
|
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
319
264
|
identifier: z.ZodString;
|
|
320
265
|
id: z.ZodString;
|
|
321
266
|
role: z.ZodString;
|
|
322
267
|
ref: z.ZodOptional<z.ZodString>;
|
|
323
268
|
}, z.core.$strip>>>;
|
|
269
|
+
plannedOperationalDate: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
324
270
|
projectName: z.ZodOptional<z.ZodString>;
|
|
325
271
|
queueDataset: z.ZodOptional<z.ZodString>;
|
|
326
272
|
queueDate: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
327
|
-
|
|
328
|
-
sectors: z.ZodArray<z.ZodObject<{
|
|
329
|
-
identifier: z.ZodString;
|
|
330
|
-
id: z.ZodString;
|
|
331
|
-
}, z.core.$strip>>;
|
|
273
|
+
reportDate: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
332
274
|
sourceUpdate: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
333
275
|
status: z.ZodOptional<z.ZodString>;
|
|
334
|
-
storageCapacity: z.ZodOptional<z.ZodNumber>;
|
|
335
|
-
technology: z.ZodOptional<z.ZodString>;
|
|
336
276
|
totalMw: z.ZodOptional<z.ZodNumber>;
|
|
337
|
-
|
|
277
|
+
totals: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
278
|
+
sort: z.ZodTuple<[z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>, z.ZodNumber], null>;
|
|
338
279
|
}, z.core.$strict>, z.ZodObject<{
|
|
339
280
|
id: z.ZodString;
|
|
340
281
|
schema: z.ZodLiteral<"us_queue">;
|
|
341
|
-
$organizations: z.ZodOptional<z.ZodString>;
|
|
342
282
|
actualOperationalDate: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
343
283
|
allSectors: z.ZodOptional<z.ZodString>;
|
|
344
284
|
applicationId: z.ZodOptional<z.ZodString>;
|
|
285
|
+
applicationStatus: z.ZodOptional<z.ZodString>;
|
|
345
286
|
applicationTags: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
346
287
|
identifier: z.ZodString;
|
|
347
288
|
}, z.core.$strip>>>;
|
|
348
|
-
applicationType: z.ZodOptional<z.ZodString>;
|
|
349
|
-
applicationStatus: z.ZodOptional<z.ZodString>;
|
|
350
289
|
cost: z.ZodOptional<z.ZodObject<{
|
|
351
290
|
costCompany: z.ZodString;
|
|
352
291
|
costYear: z.ZodNumber;
|
|
@@ -358,97 +297,34 @@ declare const queueDetailsSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
358
297
|
identifier: z.ZodString;
|
|
359
298
|
id: z.ZodString;
|
|
360
299
|
}, z.core.$strip>>>;
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
300
|
+
geo: z.ZodOptional<z.ZodObject<{
|
|
301
|
+
defaultValue: z.ZodOptional<z.ZodString>;
|
|
302
|
+
default: z.ZodOptional<z.ZodObject<{
|
|
303
|
+
lon: z.ZodNumber;
|
|
304
|
+
lat: z.ZodNumber;
|
|
305
|
+
}, z.core.$strip>>;
|
|
306
|
+
project: z.ZodOptional<z.ZodObject<{
|
|
307
|
+
lon: z.ZodNumber;
|
|
308
|
+
lat: z.ZodNumber;
|
|
309
|
+
}, z.core.$strip>>;
|
|
310
|
+
county: z.ZodOptional<z.ZodObject<{
|
|
311
|
+
lon: z.ZodNumber;
|
|
312
|
+
lat: z.ZodNumber;
|
|
313
|
+
}, z.core.$strip>>;
|
|
314
|
+
facility: z.ZodOptional<z.ZodObject<{
|
|
315
|
+
lon: z.ZodNumber;
|
|
316
|
+
lat: z.ZodNumber;
|
|
317
|
+
}, z.core.$strip>>;
|
|
318
|
+
}, z.core.$strip>>;
|
|
319
|
+
interconnectingEntity: z.ZodOptional<z.ZodString>;
|
|
320
|
+
lastModified: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
321
|
+
localCounty: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
322
|
+
identifier: z.ZodString;
|
|
323
|
+
id: z.ZodString;
|
|
370
324
|
}, z.core.$strip>>>;
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
daysInQueue: z.ZodOptional<z.ZodNumber>;
|
|
374
|
-
eventHash: z.ZodOptional<z.ZodString>;
|
|
375
|
-
eventType: z.ZodEnum<{
|
|
376
|
-
add: "add";
|
|
377
|
-
update: "update";
|
|
378
|
-
}>;
|
|
325
|
+
localState: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
326
|
+
identifier: z.ZodString;
|
|
379
327
|
id: z.ZodString;
|
|
380
|
-
propKey: z.ZodString;
|
|
381
|
-
propType: z.ZodEnum<{
|
|
382
|
-
applicationTags: "applicationTags";
|
|
383
|
-
tracked: "tracked";
|
|
384
|
-
}>;
|
|
385
|
-
propVal: z.ZodString;
|
|
386
|
-
queueDate: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
387
|
-
queueKey: z.ZodString;
|
|
388
|
-
reportDate: z.ZodString;
|
|
389
|
-
set: z.ZodNumber;
|
|
390
|
-
transition: z.ZodOptional<z.ZodObject<{
|
|
391
|
-
delta: z.ZodOptional<z.ZodNumber>;
|
|
392
|
-
durationInDays: z.ZodNumber;
|
|
393
|
-
from: z.ZodObject<{
|
|
394
|
-
assigned: z.ZodString;
|
|
395
|
-
value: z.ZodString;
|
|
396
|
-
}, z.core.$strip>;
|
|
397
|
-
to: z.ZodObject<{
|
|
398
|
-
assigned: z.ZodString;
|
|
399
|
-
value: z.ZodString;
|
|
400
|
-
}, z.core.$strip>;
|
|
401
|
-
}, z.core.$strip>>;
|
|
402
|
-
}, z.core.$strip>>>;
|
|
403
|
-
isoRtoConnection: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
404
|
-
identifier: z.ZodString;
|
|
405
|
-
id: z.ZodString;
|
|
406
|
-
}, z.core.$strip>>>;
|
|
407
|
-
keyPeople: z.ZodArray<z.ZodObject<{
|
|
408
|
-
created: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
409
|
-
email: z.ZodOptional<z.ZodString>;
|
|
410
|
-
fullName: z.ZodOptional<z.ZodString>;
|
|
411
|
-
id: z.ZodOptional<z.ZodString>;
|
|
412
|
-
linkedinUrl: z.ZodOptional<z.ZodString>;
|
|
413
|
-
phone: z.ZodOptional<z.ZodString>;
|
|
414
|
-
roles: z.ZodArray<z.ZodOptional<z.ZodString>>;
|
|
415
|
-
source: z.ZodOptional<z.ZodString>;
|
|
416
|
-
}, z.core.$strip>>;
|
|
417
|
-
localCounty: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
418
|
-
identifier: z.ZodString;
|
|
419
|
-
id: z.ZodString;
|
|
420
|
-
}, z.core.$strip>>>;
|
|
421
|
-
localState: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
422
|
-
identifier: z.ZodString;
|
|
423
|
-
id: z.ZodString;
|
|
424
|
-
}, z.core.$strip>>>;
|
|
425
|
-
milestones: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
426
|
-
compositeKey: z.ZodString;
|
|
427
|
-
daysInQueue: z.ZodOptional<z.ZodNumber>;
|
|
428
|
-
delta: z.ZodOptional<z.ZodNumber>;
|
|
429
|
-
durationInDays: z.ZodOptional<z.ZodNumber>;
|
|
430
|
-
entries: z.ZodArray<z.ZodObject<{
|
|
431
|
-
daysInQueue: z.ZodOptional<z.ZodNumber>;
|
|
432
|
-
delta: z.ZodOptional<z.ZodNumber>;
|
|
433
|
-
durationInDays: z.ZodOptional<z.ZodNumber>;
|
|
434
|
-
eventHash: z.ZodString;
|
|
435
|
-
fromValue: z.ZodOptional<z.ZodString>;
|
|
436
|
-
label: z.ZodString;
|
|
437
|
-
reportDate: z.ZodString;
|
|
438
|
-
stage: z.ZodString;
|
|
439
|
-
toValue: z.ZodString;
|
|
440
|
-
}, z.core.$strip>>;
|
|
441
|
-
eventCount: z.ZodNumber;
|
|
442
|
-
eventHash: z.ZodString;
|
|
443
|
-
fromValue: z.ZodOptional<z.ZodString>;
|
|
444
|
-
key: z.ZodString;
|
|
445
|
-
label: z.ZodString;
|
|
446
|
-
reportDate: z.ZodString;
|
|
447
|
-
searchKey: z.ZodString;
|
|
448
|
-
stage: z.ZodString;
|
|
449
|
-
state: z.ZodString;
|
|
450
|
-
toValue: z.ZodString;
|
|
451
|
-
type: z.ZodString;
|
|
452
328
|
}, z.core.$strip>>>;
|
|
453
329
|
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
454
330
|
identifier: z.ZodString;
|
|
@@ -457,81 +333,73 @@ declare const queueDetailsSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
457
333
|
ref: z.ZodOptional<z.ZodString>;
|
|
458
334
|
}, z.core.$strip>>>;
|
|
459
335
|
plannedOperationalDate: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
460
|
-
poi: z.ZodOptional<z.ZodObject<{
|
|
461
|
-
id: z.ZodString;
|
|
462
|
-
identifier: z.ZodString;
|
|
463
|
-
kV: z.ZodOptional<z.ZodString>;
|
|
464
|
-
meta: z.ZodOptional<z.ZodString>;
|
|
465
|
-
poiGroup: z.ZodString;
|
|
466
|
-
}, z.core.$strip>>;
|
|
467
336
|
poiLocation: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodOptional<z.ZodNumber>]>;
|
|
468
337
|
projectName: z.ZodOptional<z.ZodString>;
|
|
469
|
-
interconnectingEntity: z.ZodOptional<z.ZodString>;
|
|
470
338
|
queueDataset: z.ZodOptional<z.ZodString>;
|
|
471
339
|
queueDate: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
472
340
|
reportCount: z.ZodOptional<z.ZodNumber>;
|
|
473
|
-
reportDate: z.ZodOptional<z.ZodString
|
|
474
|
-
sectors: z.ZodArray<z.ZodObject<{
|
|
475
|
-
identifier: z.ZodString;
|
|
476
|
-
id: z.ZodString;
|
|
477
|
-
}, z.core.$strip>>;
|
|
341
|
+
reportDate: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
478
342
|
sourceUpdate: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
479
|
-
signals: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
480
|
-
filingDate: z.ZodString;
|
|
481
|
-
headline: z.ZodString;
|
|
482
|
-
id: z.ZodString;
|
|
483
|
-
publishedDate: z.ZodString;
|
|
484
|
-
subType: z.ZodString;
|
|
485
|
-
type: z.ZodString;
|
|
486
|
-
}, z.core.$strip>>>;
|
|
487
343
|
totalMw: z.ZodOptional<z.ZodNumber>;
|
|
344
|
+
totals: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
488
345
|
withdrawnDate: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
346
|
+
sort: z.ZodTuple<[z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>, z.ZodNumber], null>;
|
|
489
347
|
}, z.core.$strict>]>;
|
|
490
|
-
export declare const
|
|
348
|
+
export declare const queueListUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
491
349
|
id: z.ZodString;
|
|
492
350
|
schema: z.ZodLiteral<"eu_queue">;
|
|
493
|
-
|
|
351
|
+
actualOperationalDate: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
494
352
|
allSectors: z.ZodOptional<z.ZodString>;
|
|
495
353
|
applicationId: z.ZodOptional<z.ZodString>;
|
|
496
|
-
applicationStatus: z.ZodOptional<z.ZodString>;
|
|
497
354
|
country: z.ZodOptional<z.ZodString>;
|
|
355
|
+
geo: z.ZodOptional<z.ZodObject<{
|
|
356
|
+
defaultValue: z.ZodOptional<z.ZodString>;
|
|
357
|
+
default: z.ZodOptional<z.ZodObject<{
|
|
358
|
+
lon: z.ZodNumber;
|
|
359
|
+
lat: z.ZodNumber;
|
|
360
|
+
}, z.core.$strip>>;
|
|
361
|
+
project: z.ZodOptional<z.ZodObject<{
|
|
362
|
+
lon: z.ZodNumber;
|
|
363
|
+
lat: z.ZodNumber;
|
|
364
|
+
}, z.core.$strip>>;
|
|
365
|
+
county: z.ZodOptional<z.ZodObject<{
|
|
366
|
+
lon: z.ZodNumber;
|
|
367
|
+
lat: z.ZodNumber;
|
|
368
|
+
}, z.core.$strip>>;
|
|
369
|
+
facility: z.ZodOptional<z.ZodObject<{
|
|
370
|
+
lon: z.ZodNumber;
|
|
371
|
+
lat: z.ZodNumber;
|
|
372
|
+
}, z.core.$strip>>;
|
|
373
|
+
}, z.core.$strip>>;
|
|
498
374
|
lastModified: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
499
375
|
localCounty: z.ZodOptional<z.ZodString>;
|
|
500
376
|
localState: z.ZodOptional<z.ZodString>;
|
|
501
|
-
localTown: z.ZodOptional<z.ZodString>;
|
|
502
|
-
mwNet: z.ZodOptional<z.ZodNumber>;
|
|
503
377
|
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
504
378
|
identifier: z.ZodString;
|
|
505
379
|
id: z.ZodString;
|
|
506
380
|
role: z.ZodString;
|
|
507
381
|
ref: z.ZodOptional<z.ZodString>;
|
|
508
382
|
}, z.core.$strip>>>;
|
|
383
|
+
plannedOperationalDate: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
509
384
|
projectName: z.ZodOptional<z.ZodString>;
|
|
510
385
|
queueDataset: z.ZodOptional<z.ZodString>;
|
|
511
386
|
queueDate: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
512
|
-
|
|
513
|
-
sectors: z.ZodArray<z.ZodObject<{
|
|
514
|
-
identifier: z.ZodString;
|
|
515
|
-
id: z.ZodString;
|
|
516
|
-
}, z.core.$strip>>;
|
|
387
|
+
reportDate: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
517
388
|
sourceUpdate: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
518
389
|
status: z.ZodOptional<z.ZodString>;
|
|
519
|
-
storageCapacity: z.ZodOptional<z.ZodNumber>;
|
|
520
|
-
technology: z.ZodOptional<z.ZodString>;
|
|
521
390
|
totalMw: z.ZodOptional<z.ZodNumber>;
|
|
522
|
-
|
|
391
|
+
totals: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
392
|
+
sort: z.ZodTuple<[z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>, z.ZodNumber], null>;
|
|
523
393
|
}, z.core.$strict>, z.ZodObject<{
|
|
524
394
|
id: z.ZodString;
|
|
525
395
|
schema: z.ZodLiteral<"us_queue">;
|
|
526
|
-
$organizations: z.ZodOptional<z.ZodString>;
|
|
527
396
|
actualOperationalDate: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
528
397
|
allSectors: z.ZodOptional<z.ZodString>;
|
|
529
398
|
applicationId: z.ZodOptional<z.ZodString>;
|
|
399
|
+
applicationStatus: z.ZodOptional<z.ZodString>;
|
|
530
400
|
applicationTags: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
531
401
|
identifier: z.ZodString;
|
|
532
402
|
}, z.core.$strip>>>;
|
|
533
|
-
applicationType: z.ZodOptional<z.ZodString>;
|
|
534
|
-
applicationStatus: z.ZodOptional<z.ZodString>;
|
|
535
403
|
cost: z.ZodOptional<z.ZodObject<{
|
|
536
404
|
costCompany: z.ZodString;
|
|
537
405
|
costYear: z.ZodNumber;
|
|
@@ -543,62 +411,27 @@ export declare const queueDetailsUnionSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
543
411
|
identifier: z.ZodString;
|
|
544
412
|
id: z.ZodString;
|
|
545
413
|
}, z.core.$strip>>>;
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
}>;
|
|
564
|
-
id: z.ZodString;
|
|
565
|
-
propKey: z.ZodString;
|
|
566
|
-
propType: z.ZodEnum<{
|
|
567
|
-
applicationTags: "applicationTags";
|
|
568
|
-
tracked: "tracked";
|
|
569
|
-
}>;
|
|
570
|
-
propVal: z.ZodString;
|
|
571
|
-
queueDate: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
572
|
-
queueKey: z.ZodString;
|
|
573
|
-
reportDate: z.ZodString;
|
|
574
|
-
set: z.ZodNumber;
|
|
575
|
-
transition: z.ZodOptional<z.ZodObject<{
|
|
576
|
-
delta: z.ZodOptional<z.ZodNumber>;
|
|
577
|
-
durationInDays: z.ZodNumber;
|
|
578
|
-
from: z.ZodObject<{
|
|
579
|
-
assigned: z.ZodString;
|
|
580
|
-
value: z.ZodString;
|
|
581
|
-
}, z.core.$strip>;
|
|
582
|
-
to: z.ZodObject<{
|
|
583
|
-
assigned: z.ZodString;
|
|
584
|
-
value: z.ZodString;
|
|
585
|
-
}, z.core.$strip>;
|
|
414
|
+
geo: z.ZodOptional<z.ZodObject<{
|
|
415
|
+
defaultValue: z.ZodOptional<z.ZodString>;
|
|
416
|
+
default: z.ZodOptional<z.ZodObject<{
|
|
417
|
+
lon: z.ZodNumber;
|
|
418
|
+
lat: z.ZodNumber;
|
|
419
|
+
}, z.core.$strip>>;
|
|
420
|
+
project: z.ZodOptional<z.ZodObject<{
|
|
421
|
+
lon: z.ZodNumber;
|
|
422
|
+
lat: z.ZodNumber;
|
|
423
|
+
}, z.core.$strip>>;
|
|
424
|
+
county: z.ZodOptional<z.ZodObject<{
|
|
425
|
+
lon: z.ZodNumber;
|
|
426
|
+
lat: z.ZodNumber;
|
|
427
|
+
}, z.core.$strip>>;
|
|
428
|
+
facility: z.ZodOptional<z.ZodObject<{
|
|
429
|
+
lon: z.ZodNumber;
|
|
430
|
+
lat: z.ZodNumber;
|
|
586
431
|
}, z.core.$strip>>;
|
|
587
|
-
}, z.core.$strip>>>;
|
|
588
|
-
isoRtoConnection: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
589
|
-
identifier: z.ZodString;
|
|
590
|
-
id: z.ZodString;
|
|
591
|
-
}, z.core.$strip>>>;
|
|
592
|
-
keyPeople: z.ZodArray<z.ZodObject<{
|
|
593
|
-
created: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
594
|
-
email: z.ZodOptional<z.ZodString>;
|
|
595
|
-
fullName: z.ZodOptional<z.ZodString>;
|
|
596
|
-
id: z.ZodOptional<z.ZodString>;
|
|
597
|
-
linkedinUrl: z.ZodOptional<z.ZodString>;
|
|
598
|
-
phone: z.ZodOptional<z.ZodString>;
|
|
599
|
-
roles: z.ZodArray<z.ZodOptional<z.ZodString>>;
|
|
600
|
-
source: z.ZodOptional<z.ZodString>;
|
|
601
432
|
}, z.core.$strip>>;
|
|
433
|
+
interconnectingEntity: z.ZodOptional<z.ZodString>;
|
|
434
|
+
lastModified: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
602
435
|
localCounty: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
603
436
|
identifier: z.ZodString;
|
|
604
437
|
id: z.ZodString;
|
|
@@ -607,34 +440,6 @@ export declare const queueDetailsUnionSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
607
440
|
identifier: z.ZodString;
|
|
608
441
|
id: z.ZodString;
|
|
609
442
|
}, z.core.$strip>>>;
|
|
610
|
-
milestones: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
611
|
-
compositeKey: z.ZodString;
|
|
612
|
-
daysInQueue: z.ZodOptional<z.ZodNumber>;
|
|
613
|
-
delta: z.ZodOptional<z.ZodNumber>;
|
|
614
|
-
durationInDays: z.ZodOptional<z.ZodNumber>;
|
|
615
|
-
entries: z.ZodArray<z.ZodObject<{
|
|
616
|
-
daysInQueue: z.ZodOptional<z.ZodNumber>;
|
|
617
|
-
delta: z.ZodOptional<z.ZodNumber>;
|
|
618
|
-
durationInDays: z.ZodOptional<z.ZodNumber>;
|
|
619
|
-
eventHash: z.ZodString;
|
|
620
|
-
fromValue: z.ZodOptional<z.ZodString>;
|
|
621
|
-
label: z.ZodString;
|
|
622
|
-
reportDate: z.ZodString;
|
|
623
|
-
stage: z.ZodString;
|
|
624
|
-
toValue: z.ZodString;
|
|
625
|
-
}, z.core.$strip>>;
|
|
626
|
-
eventCount: z.ZodNumber;
|
|
627
|
-
eventHash: z.ZodString;
|
|
628
|
-
fromValue: z.ZodOptional<z.ZodString>;
|
|
629
|
-
key: z.ZodString;
|
|
630
|
-
label: z.ZodString;
|
|
631
|
-
reportDate: z.ZodString;
|
|
632
|
-
searchKey: z.ZodString;
|
|
633
|
-
stage: z.ZodString;
|
|
634
|
-
state: z.ZodString;
|
|
635
|
-
toValue: z.ZodString;
|
|
636
|
-
type: z.ZodString;
|
|
637
|
-
}, z.core.$strip>>>;
|
|
638
443
|
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
639
444
|
identifier: z.ZodString;
|
|
640
445
|
id: z.ZodString;
|
|
@@ -642,42 +447,19 @@ export declare const queueDetailsUnionSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
642
447
|
ref: z.ZodOptional<z.ZodString>;
|
|
643
448
|
}, z.core.$strip>>>;
|
|
644
449
|
plannedOperationalDate: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
645
|
-
poi: z.ZodOptional<z.ZodObject<{
|
|
646
|
-
id: z.ZodString;
|
|
647
|
-
identifier: z.ZodString;
|
|
648
|
-
kV: z.ZodOptional<z.ZodString>;
|
|
649
|
-
meta: z.ZodOptional<z.ZodString>;
|
|
650
|
-
poiGroup: z.ZodString;
|
|
651
|
-
}, z.core.$strip>>;
|
|
652
450
|
poiLocation: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodOptional<z.ZodNumber>]>;
|
|
653
451
|
projectName: z.ZodOptional<z.ZodString>;
|
|
654
|
-
interconnectingEntity: z.ZodOptional<z.ZodString>;
|
|
655
452
|
queueDataset: z.ZodOptional<z.ZodString>;
|
|
656
453
|
queueDate: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
657
454
|
reportCount: z.ZodOptional<z.ZodNumber>;
|
|
658
|
-
reportDate: z.ZodOptional<z.ZodString
|
|
659
|
-
sectors: z.ZodArray<z.ZodObject<{
|
|
660
|
-
identifier: z.ZodString;
|
|
661
|
-
id: z.ZodString;
|
|
662
|
-
}, z.core.$strip>>;
|
|
455
|
+
reportDate: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
663
456
|
sourceUpdate: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
664
|
-
signals: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
665
|
-
filingDate: z.ZodString;
|
|
666
|
-
headline: z.ZodString;
|
|
667
|
-
id: z.ZodString;
|
|
668
|
-
publishedDate: z.ZodString;
|
|
669
|
-
subType: z.ZodString;
|
|
670
|
-
type: z.ZodString;
|
|
671
|
-
}, z.core.$strip>>>;
|
|
672
457
|
totalMw: z.ZodOptional<z.ZodNumber>;
|
|
458
|
+
totals: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
673
459
|
withdrawnDate: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
460
|
+
sort: z.ZodTuple<[z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>, z.ZodNumber], null>;
|
|
674
461
|
}, z.core.$strict>], "schema">;
|
|
675
|
-
export
|
|
676
|
-
export type QueueDetailsType = z.infer<typeof queueDetailsSchema>;
|
|
677
|
-
export type QueueDetailsUnionType = z.infer<typeof queueDetailsUnionSchema>;
|
|
678
|
-
export type EUQueueDetailsType = z.infer<typeof euQueueDetailsSchema>;
|
|
679
|
-
export type USQueueDetailsType = z.infer<typeof usQueueDetailsSchema>;
|
|
680
|
-
declare const euQueueListWithSortSchema: z.ZodObject<{
|
|
462
|
+
export declare const queueListBaseUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
681
463
|
id: z.ZodString;
|
|
682
464
|
schema: z.ZodLiteral<"eu_queue">;
|
|
683
465
|
actualOperationalDate: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
@@ -721,9 +503,7 @@ declare const euQueueListWithSortSchema: z.ZodObject<{
|
|
|
721
503
|
status: z.ZodOptional<z.ZodString>;
|
|
722
504
|
totalMw: z.ZodOptional<z.ZodNumber>;
|
|
723
505
|
totals: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
724
|
-
|
|
725
|
-
}, z.core.$strict>;
|
|
726
|
-
declare const usQueueListWithSortSchema: z.ZodObject<{
|
|
506
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
727
507
|
id: z.ZodString;
|
|
728
508
|
schema: z.ZodLiteral<"us_queue">;
|
|
729
509
|
actualOperationalDate: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
@@ -790,63 +570,58 @@ declare const usQueueListWithSortSchema: z.ZodObject<{
|
|
|
790
570
|
totalMw: z.ZodOptional<z.ZodNumber>;
|
|
791
571
|
totals: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
792
572
|
withdrawnDate: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
|
|
573
|
+
}, z.core.$strict>], "schema">;
|
|
574
|
+
export type QueueListTypeV1 = z.infer<typeof queueListSchemaV1>;
|
|
575
|
+
export type QueueListUnionTypeV1 = z.infer<typeof queueListUnionSchemaV1>;
|
|
576
|
+
export type QueueListBaseUnionTypeV1 = z.infer<typeof queueListBaseUnionSchemaV1>;
|
|
577
|
+
export type EUQueueListTypeV1 = z.infer<typeof euQueueListWithSortSchemaV1>;
|
|
578
|
+
export type USQueueListTypeV1 = z.infer<typeof usQueueListWithSortSchemaV1>;
|
|
579
|
+
export declare const euQueueDetailsSchemaV1: z.ZodObject<{
|
|
796
580
|
id: z.ZodString;
|
|
797
581
|
schema: z.ZodLiteral<"eu_queue">;
|
|
798
|
-
|
|
582
|
+
$organizations: z.ZodOptional<z.ZodString>;
|
|
799
583
|
allSectors: z.ZodOptional<z.ZodString>;
|
|
800
584
|
applicationId: z.ZodOptional<z.ZodString>;
|
|
585
|
+
applicationStatus: z.ZodOptional<z.ZodString>;
|
|
801
586
|
country: z.ZodOptional<z.ZodString>;
|
|
802
|
-
geo: z.ZodOptional<z.ZodObject<{
|
|
803
|
-
defaultValue: z.ZodOptional<z.ZodString>;
|
|
804
|
-
default: z.ZodOptional<z.ZodObject<{
|
|
805
|
-
lon: z.ZodNumber;
|
|
806
|
-
lat: z.ZodNumber;
|
|
807
|
-
}, z.core.$strip>>;
|
|
808
|
-
project: z.ZodOptional<z.ZodObject<{
|
|
809
|
-
lon: z.ZodNumber;
|
|
810
|
-
lat: z.ZodNumber;
|
|
811
|
-
}, z.core.$strip>>;
|
|
812
|
-
county: z.ZodOptional<z.ZodObject<{
|
|
813
|
-
lon: z.ZodNumber;
|
|
814
|
-
lat: z.ZodNumber;
|
|
815
|
-
}, z.core.$strip>>;
|
|
816
|
-
facility: z.ZodOptional<z.ZodObject<{
|
|
817
|
-
lon: z.ZodNumber;
|
|
818
|
-
lat: z.ZodNumber;
|
|
819
|
-
}, z.core.$strip>>;
|
|
820
|
-
}, z.core.$strip>>;
|
|
821
587
|
lastModified: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
822
588
|
localCounty: z.ZodOptional<z.ZodString>;
|
|
823
589
|
localState: z.ZodOptional<z.ZodString>;
|
|
590
|
+
localTown: z.ZodOptional<z.ZodString>;
|
|
591
|
+
mwNet: z.ZodOptional<z.ZodNumber>;
|
|
824
592
|
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
825
593
|
identifier: z.ZodString;
|
|
826
594
|
id: z.ZodString;
|
|
827
595
|
role: z.ZodString;
|
|
828
596
|
ref: z.ZodOptional<z.ZodString>;
|
|
829
597
|
}, z.core.$strip>>>;
|
|
830
|
-
plannedOperationalDate: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
831
598
|
projectName: z.ZodOptional<z.ZodString>;
|
|
832
599
|
queueDataset: z.ZodOptional<z.ZodString>;
|
|
833
600
|
queueDate: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
834
|
-
|
|
601
|
+
refId: z.ZodOptional<z.ZodString>;
|
|
602
|
+
sectors: z.ZodArray<z.ZodObject<{
|
|
603
|
+
identifier: z.ZodString;
|
|
604
|
+
id: z.ZodString;
|
|
605
|
+
}, z.core.$strip>>;
|
|
835
606
|
sourceUpdate: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
836
607
|
status: z.ZodOptional<z.ZodString>;
|
|
608
|
+
storageCapacity: z.ZodOptional<z.ZodNumber>;
|
|
609
|
+
technology: z.ZodOptional<z.ZodString>;
|
|
837
610
|
totalMw: z.ZodOptional<z.ZodNumber>;
|
|
838
|
-
|
|
839
|
-
|
|
840
|
-
|
|
611
|
+
windFarmName: z.ZodOptional<z.ZodString>;
|
|
612
|
+
}, z.core.$strict>;
|
|
613
|
+
export declare const usQueueDetailsSchemaV1: z.ZodObject<{
|
|
841
614
|
id: z.ZodString;
|
|
842
615
|
schema: z.ZodLiteral<"us_queue">;
|
|
616
|
+
$organizations: z.ZodOptional<z.ZodString>;
|
|
843
617
|
actualOperationalDate: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
844
618
|
allSectors: z.ZodOptional<z.ZodString>;
|
|
845
619
|
applicationId: z.ZodOptional<z.ZodString>;
|
|
846
|
-
applicationStatus: z.ZodOptional<z.ZodString>;
|
|
847
620
|
applicationTags: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
848
621
|
identifier: z.ZodString;
|
|
849
622
|
}, z.core.$strip>>>;
|
|
623
|
+
applicationType: z.ZodOptional<z.ZodString>;
|
|
624
|
+
applicationStatus: z.ZodOptional<z.ZodString>;
|
|
850
625
|
cost: z.ZodOptional<z.ZodObject<{
|
|
851
626
|
costCompany: z.ZodString;
|
|
852
627
|
costYear: z.ZodNumber;
|
|
@@ -858,27 +633,62 @@ declare const queueListSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
858
633
|
identifier: z.ZodString;
|
|
859
634
|
id: z.ZodString;
|
|
860
635
|
}, z.core.$strip>>>;
|
|
861
|
-
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
|
|
865
|
-
|
|
866
|
-
|
|
867
|
-
|
|
868
|
-
|
|
869
|
-
|
|
870
|
-
|
|
871
|
-
|
|
872
|
-
|
|
873
|
-
|
|
874
|
-
|
|
875
|
-
|
|
876
|
-
|
|
877
|
-
|
|
636
|
+
dateCreated: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
637
|
+
documents: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
638
|
+
date: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
639
|
+
document_id: z.ZodOptional<z.ZodString>;
|
|
640
|
+
filing_id: z.ZodOptional<z.ZodString>;
|
|
641
|
+
isSignal: z.ZodBoolean;
|
|
642
|
+
key: z.ZodOptional<z.ZodString>;
|
|
643
|
+
type: z.ZodArray<z.ZodString>;
|
|
644
|
+
url: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
645
|
+
}, z.core.$strip>>>;
|
|
646
|
+
events: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
647
|
+
applicationId: z.ZodString;
|
|
648
|
+
daysInQueue: z.ZodOptional<z.ZodNumber>;
|
|
649
|
+
eventHash: z.ZodOptional<z.ZodString>;
|
|
650
|
+
eventType: z.ZodEnum<{
|
|
651
|
+
add: "add";
|
|
652
|
+
update: "update";
|
|
653
|
+
}>;
|
|
654
|
+
id: z.ZodString;
|
|
655
|
+
propKey: z.ZodString;
|
|
656
|
+
propType: z.ZodEnum<{
|
|
657
|
+
applicationTags: "applicationTags";
|
|
658
|
+
tracked: "tracked";
|
|
659
|
+
}>;
|
|
660
|
+
propVal: z.ZodString;
|
|
661
|
+
queueDate: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
662
|
+
queueKey: z.ZodString;
|
|
663
|
+
reportDate: z.ZodString;
|
|
664
|
+
set: z.ZodNumber;
|
|
665
|
+
transition: z.ZodOptional<z.ZodObject<{
|
|
666
|
+
delta: z.ZodOptional<z.ZodNumber>;
|
|
667
|
+
durationInDays: z.ZodNumber;
|
|
668
|
+
from: z.ZodObject<{
|
|
669
|
+
assigned: z.ZodString;
|
|
670
|
+
value: z.ZodString;
|
|
671
|
+
}, z.core.$strip>;
|
|
672
|
+
to: z.ZodObject<{
|
|
673
|
+
assigned: z.ZodString;
|
|
674
|
+
value: z.ZodString;
|
|
675
|
+
}, z.core.$strip>;
|
|
878
676
|
}, z.core.$strip>>;
|
|
677
|
+
}, z.core.$strip>>>;
|
|
678
|
+
isoRtoConnection: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
679
|
+
identifier: z.ZodString;
|
|
680
|
+
id: z.ZodString;
|
|
681
|
+
}, z.core.$strip>>>;
|
|
682
|
+
keyPeople: z.ZodArray<z.ZodObject<{
|
|
683
|
+
created: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
684
|
+
email: z.ZodOptional<z.ZodString>;
|
|
685
|
+
fullName: z.ZodOptional<z.ZodString>;
|
|
686
|
+
id: z.ZodOptional<z.ZodString>;
|
|
687
|
+
linkedinUrl: z.ZodOptional<z.ZodString>;
|
|
688
|
+
phone: z.ZodOptional<z.ZodString>;
|
|
689
|
+
roles: z.ZodArray<z.ZodOptional<z.ZodString>>;
|
|
690
|
+
source: z.ZodOptional<z.ZodString>;
|
|
879
691
|
}, z.core.$strip>>;
|
|
880
|
-
interconnectingEntity: z.ZodOptional<z.ZodString>;
|
|
881
|
-
lastModified: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
882
692
|
localCounty: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
883
693
|
identifier: z.ZodString;
|
|
884
694
|
id: z.ZodString;
|
|
@@ -887,6 +697,34 @@ declare const queueListSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
887
697
|
identifier: z.ZodString;
|
|
888
698
|
id: z.ZodString;
|
|
889
699
|
}, z.core.$strip>>>;
|
|
700
|
+
milestones: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
701
|
+
compositeKey: z.ZodString;
|
|
702
|
+
daysInQueue: z.ZodOptional<z.ZodNumber>;
|
|
703
|
+
delta: z.ZodOptional<z.ZodNumber>;
|
|
704
|
+
durationInDays: z.ZodOptional<z.ZodNumber>;
|
|
705
|
+
entries: z.ZodArray<z.ZodObject<{
|
|
706
|
+
daysInQueue: z.ZodOptional<z.ZodNumber>;
|
|
707
|
+
delta: z.ZodOptional<z.ZodNumber>;
|
|
708
|
+
durationInDays: z.ZodOptional<z.ZodNumber>;
|
|
709
|
+
eventHash: z.ZodString;
|
|
710
|
+
fromValue: z.ZodOptional<z.ZodString>;
|
|
711
|
+
label: z.ZodString;
|
|
712
|
+
reportDate: z.ZodString;
|
|
713
|
+
stage: z.ZodString;
|
|
714
|
+
toValue: z.ZodString;
|
|
715
|
+
}, z.core.$strip>>;
|
|
716
|
+
eventCount: z.ZodNumber;
|
|
717
|
+
eventHash: z.ZodString;
|
|
718
|
+
fromValue: z.ZodOptional<z.ZodString>;
|
|
719
|
+
key: z.ZodString;
|
|
720
|
+
label: z.ZodString;
|
|
721
|
+
reportDate: z.ZodString;
|
|
722
|
+
searchKey: z.ZodString;
|
|
723
|
+
stage: z.ZodString;
|
|
724
|
+
state: z.ZodString;
|
|
725
|
+
toValue: z.ZodString;
|
|
726
|
+
type: z.ZodString;
|
|
727
|
+
}, z.core.$strip>>>;
|
|
890
728
|
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
891
729
|
identifier: z.ZodString;
|
|
892
730
|
id: z.ZodString;
|
|
@@ -894,73 +732,81 @@ declare const queueListSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
894
732
|
ref: z.ZodOptional<z.ZodString>;
|
|
895
733
|
}, z.core.$strip>>>;
|
|
896
734
|
plannedOperationalDate: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
735
|
+
poi: z.ZodOptional<z.ZodObject<{
|
|
736
|
+
id: z.ZodString;
|
|
737
|
+
identifier: z.ZodString;
|
|
738
|
+
kV: z.ZodOptional<z.ZodString>;
|
|
739
|
+
meta: z.ZodOptional<z.ZodString>;
|
|
740
|
+
poiGroup: z.ZodString;
|
|
741
|
+
}, z.core.$strip>>;
|
|
897
742
|
poiLocation: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodOptional<z.ZodNumber>]>;
|
|
898
743
|
projectName: z.ZodOptional<z.ZodString>;
|
|
744
|
+
interconnectingEntity: z.ZodOptional<z.ZodString>;
|
|
899
745
|
queueDataset: z.ZodOptional<z.ZodString>;
|
|
900
746
|
queueDate: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
901
747
|
reportCount: z.ZodOptional<z.ZodNumber>;
|
|
902
|
-
reportDate: z.ZodOptional<z.
|
|
748
|
+
reportDate: z.ZodOptional<z.ZodString>;
|
|
749
|
+
sectors: z.ZodArray<z.ZodObject<{
|
|
750
|
+
identifier: z.ZodString;
|
|
751
|
+
id: z.ZodString;
|
|
752
|
+
}, z.core.$strip>>;
|
|
903
753
|
sourceUpdate: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
754
|
+
signals: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
755
|
+
filingDate: z.ZodString;
|
|
756
|
+
headline: z.ZodString;
|
|
757
|
+
id: z.ZodString;
|
|
758
|
+
publishedDate: z.ZodString;
|
|
759
|
+
subType: z.ZodString;
|
|
760
|
+
type: z.ZodString;
|
|
761
|
+
}, z.core.$strip>>>;
|
|
904
762
|
totalMw: z.ZodOptional<z.ZodNumber>;
|
|
905
|
-
totals: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
906
763
|
withdrawnDate: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
907
|
-
|
|
908
|
-
|
|
909
|
-
export declare const queueListUnionSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
764
|
+
}, z.core.$strict>;
|
|
765
|
+
export declare const queueDetailsSchemaV1: z.ZodUnion<[z.ZodObject<{
|
|
910
766
|
id: z.ZodString;
|
|
911
767
|
schema: z.ZodLiteral<"eu_queue">;
|
|
912
|
-
|
|
768
|
+
$organizations: z.ZodOptional<z.ZodString>;
|
|
913
769
|
allSectors: z.ZodOptional<z.ZodString>;
|
|
914
770
|
applicationId: z.ZodOptional<z.ZodString>;
|
|
771
|
+
applicationStatus: z.ZodOptional<z.ZodString>;
|
|
915
772
|
country: z.ZodOptional<z.ZodString>;
|
|
916
|
-
geo: z.ZodOptional<z.ZodObject<{
|
|
917
|
-
defaultValue: z.ZodOptional<z.ZodString>;
|
|
918
|
-
default: z.ZodOptional<z.ZodObject<{
|
|
919
|
-
lon: z.ZodNumber;
|
|
920
|
-
lat: z.ZodNumber;
|
|
921
|
-
}, z.core.$strip>>;
|
|
922
|
-
project: z.ZodOptional<z.ZodObject<{
|
|
923
|
-
lon: z.ZodNumber;
|
|
924
|
-
lat: z.ZodNumber;
|
|
925
|
-
}, z.core.$strip>>;
|
|
926
|
-
county: z.ZodOptional<z.ZodObject<{
|
|
927
|
-
lon: z.ZodNumber;
|
|
928
|
-
lat: z.ZodNumber;
|
|
929
|
-
}, z.core.$strip>>;
|
|
930
|
-
facility: z.ZodOptional<z.ZodObject<{
|
|
931
|
-
lon: z.ZodNumber;
|
|
932
|
-
lat: z.ZodNumber;
|
|
933
|
-
}, z.core.$strip>>;
|
|
934
|
-
}, z.core.$strip>>;
|
|
935
773
|
lastModified: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
936
774
|
localCounty: z.ZodOptional<z.ZodString>;
|
|
937
775
|
localState: z.ZodOptional<z.ZodString>;
|
|
776
|
+
localTown: z.ZodOptional<z.ZodString>;
|
|
777
|
+
mwNet: z.ZodOptional<z.ZodNumber>;
|
|
938
778
|
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
939
779
|
identifier: z.ZodString;
|
|
940
780
|
id: z.ZodString;
|
|
941
781
|
role: z.ZodString;
|
|
942
782
|
ref: z.ZodOptional<z.ZodString>;
|
|
943
783
|
}, z.core.$strip>>>;
|
|
944
|
-
plannedOperationalDate: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
945
784
|
projectName: z.ZodOptional<z.ZodString>;
|
|
946
785
|
queueDataset: z.ZodOptional<z.ZodString>;
|
|
947
786
|
queueDate: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
948
|
-
|
|
787
|
+
refId: z.ZodOptional<z.ZodString>;
|
|
788
|
+
sectors: z.ZodArray<z.ZodObject<{
|
|
789
|
+
identifier: z.ZodString;
|
|
790
|
+
id: z.ZodString;
|
|
791
|
+
}, z.core.$strip>>;
|
|
949
792
|
sourceUpdate: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
950
793
|
status: z.ZodOptional<z.ZodString>;
|
|
794
|
+
storageCapacity: z.ZodOptional<z.ZodNumber>;
|
|
795
|
+
technology: z.ZodOptional<z.ZodString>;
|
|
951
796
|
totalMw: z.ZodOptional<z.ZodNumber>;
|
|
952
|
-
|
|
953
|
-
sort: z.ZodTuple<[z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>, z.ZodNumber], null>;
|
|
797
|
+
windFarmName: z.ZodOptional<z.ZodString>;
|
|
954
798
|
}, z.core.$strict>, z.ZodObject<{
|
|
955
799
|
id: z.ZodString;
|
|
956
800
|
schema: z.ZodLiteral<"us_queue">;
|
|
801
|
+
$organizations: z.ZodOptional<z.ZodString>;
|
|
957
802
|
actualOperationalDate: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
958
803
|
allSectors: z.ZodOptional<z.ZodString>;
|
|
959
804
|
applicationId: z.ZodOptional<z.ZodString>;
|
|
960
|
-
applicationStatus: z.ZodOptional<z.ZodString>;
|
|
961
805
|
applicationTags: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
962
806
|
identifier: z.ZodString;
|
|
963
807
|
}, z.core.$strip>>>;
|
|
808
|
+
applicationType: z.ZodOptional<z.ZodString>;
|
|
809
|
+
applicationStatus: z.ZodOptional<z.ZodString>;
|
|
964
810
|
cost: z.ZodOptional<z.ZodObject<{
|
|
965
811
|
costCompany: z.ZodString;
|
|
966
812
|
costYear: z.ZodNumber;
|
|
@@ -972,27 +818,62 @@ export declare const queueListUnionSchema: z.ZodDiscriminatedUnion<[z.ZodObject<
|
|
|
972
818
|
identifier: z.ZodString;
|
|
973
819
|
id: z.ZodString;
|
|
974
820
|
}, z.core.$strip>>>;
|
|
975
|
-
|
|
976
|
-
|
|
977
|
-
|
|
978
|
-
|
|
979
|
-
|
|
980
|
-
|
|
981
|
-
|
|
982
|
-
|
|
983
|
-
|
|
984
|
-
|
|
985
|
-
|
|
986
|
-
|
|
987
|
-
|
|
988
|
-
|
|
989
|
-
|
|
990
|
-
|
|
991
|
-
|
|
821
|
+
dateCreated: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
822
|
+
documents: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
823
|
+
date: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
824
|
+
document_id: z.ZodOptional<z.ZodString>;
|
|
825
|
+
filing_id: z.ZodOptional<z.ZodString>;
|
|
826
|
+
isSignal: z.ZodBoolean;
|
|
827
|
+
key: z.ZodOptional<z.ZodString>;
|
|
828
|
+
type: z.ZodArray<z.ZodString>;
|
|
829
|
+
url: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
830
|
+
}, z.core.$strip>>>;
|
|
831
|
+
events: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
832
|
+
applicationId: z.ZodString;
|
|
833
|
+
daysInQueue: z.ZodOptional<z.ZodNumber>;
|
|
834
|
+
eventHash: z.ZodOptional<z.ZodString>;
|
|
835
|
+
eventType: z.ZodEnum<{
|
|
836
|
+
add: "add";
|
|
837
|
+
update: "update";
|
|
838
|
+
}>;
|
|
839
|
+
id: z.ZodString;
|
|
840
|
+
propKey: z.ZodString;
|
|
841
|
+
propType: z.ZodEnum<{
|
|
842
|
+
applicationTags: "applicationTags";
|
|
843
|
+
tracked: "tracked";
|
|
844
|
+
}>;
|
|
845
|
+
propVal: z.ZodString;
|
|
846
|
+
queueDate: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
847
|
+
queueKey: z.ZodString;
|
|
848
|
+
reportDate: z.ZodString;
|
|
849
|
+
set: z.ZodNumber;
|
|
850
|
+
transition: z.ZodOptional<z.ZodObject<{
|
|
851
|
+
delta: z.ZodOptional<z.ZodNumber>;
|
|
852
|
+
durationInDays: z.ZodNumber;
|
|
853
|
+
from: z.ZodObject<{
|
|
854
|
+
assigned: z.ZodString;
|
|
855
|
+
value: z.ZodString;
|
|
856
|
+
}, z.core.$strip>;
|
|
857
|
+
to: z.ZodObject<{
|
|
858
|
+
assigned: z.ZodString;
|
|
859
|
+
value: z.ZodString;
|
|
860
|
+
}, z.core.$strip>;
|
|
992
861
|
}, z.core.$strip>>;
|
|
862
|
+
}, z.core.$strip>>>;
|
|
863
|
+
isoRtoConnection: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
864
|
+
identifier: z.ZodString;
|
|
865
|
+
id: z.ZodString;
|
|
866
|
+
}, z.core.$strip>>>;
|
|
867
|
+
keyPeople: z.ZodArray<z.ZodObject<{
|
|
868
|
+
created: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
869
|
+
email: z.ZodOptional<z.ZodString>;
|
|
870
|
+
fullName: z.ZodOptional<z.ZodString>;
|
|
871
|
+
id: z.ZodOptional<z.ZodString>;
|
|
872
|
+
linkedinUrl: z.ZodOptional<z.ZodString>;
|
|
873
|
+
phone: z.ZodOptional<z.ZodString>;
|
|
874
|
+
roles: z.ZodArray<z.ZodOptional<z.ZodString>>;
|
|
875
|
+
source: z.ZodOptional<z.ZodString>;
|
|
993
876
|
}, z.core.$strip>>;
|
|
994
|
-
interconnectingEntity: z.ZodOptional<z.ZodString>;
|
|
995
|
-
lastModified: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
996
877
|
localCounty: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
997
878
|
identifier: z.ZodString;
|
|
998
879
|
id: z.ZodString;
|
|
@@ -1001,6 +882,34 @@ export declare const queueListUnionSchema: z.ZodDiscriminatedUnion<[z.ZodObject<
|
|
|
1001
882
|
identifier: z.ZodString;
|
|
1002
883
|
id: z.ZodString;
|
|
1003
884
|
}, z.core.$strip>>>;
|
|
885
|
+
milestones: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
886
|
+
compositeKey: z.ZodString;
|
|
887
|
+
daysInQueue: z.ZodOptional<z.ZodNumber>;
|
|
888
|
+
delta: z.ZodOptional<z.ZodNumber>;
|
|
889
|
+
durationInDays: z.ZodOptional<z.ZodNumber>;
|
|
890
|
+
entries: z.ZodArray<z.ZodObject<{
|
|
891
|
+
daysInQueue: z.ZodOptional<z.ZodNumber>;
|
|
892
|
+
delta: z.ZodOptional<z.ZodNumber>;
|
|
893
|
+
durationInDays: z.ZodOptional<z.ZodNumber>;
|
|
894
|
+
eventHash: z.ZodString;
|
|
895
|
+
fromValue: z.ZodOptional<z.ZodString>;
|
|
896
|
+
label: z.ZodString;
|
|
897
|
+
reportDate: z.ZodString;
|
|
898
|
+
stage: z.ZodString;
|
|
899
|
+
toValue: z.ZodString;
|
|
900
|
+
}, z.core.$strip>>;
|
|
901
|
+
eventCount: z.ZodNumber;
|
|
902
|
+
eventHash: z.ZodString;
|
|
903
|
+
fromValue: z.ZodOptional<z.ZodString>;
|
|
904
|
+
key: z.ZodString;
|
|
905
|
+
label: z.ZodString;
|
|
906
|
+
reportDate: z.ZodString;
|
|
907
|
+
searchKey: z.ZodString;
|
|
908
|
+
stage: z.ZodString;
|
|
909
|
+
state: z.ZodString;
|
|
910
|
+
toValue: z.ZodString;
|
|
911
|
+
type: z.ZodString;
|
|
912
|
+
}, z.core.$strip>>>;
|
|
1004
913
|
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1005
914
|
identifier: z.ZodString;
|
|
1006
915
|
id: z.ZodString;
|
|
@@ -1008,72 +917,81 @@ export declare const queueListUnionSchema: z.ZodDiscriminatedUnion<[z.ZodObject<
|
|
|
1008
917
|
ref: z.ZodOptional<z.ZodString>;
|
|
1009
918
|
}, z.core.$strip>>>;
|
|
1010
919
|
plannedOperationalDate: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
920
|
+
poi: z.ZodOptional<z.ZodObject<{
|
|
921
|
+
id: z.ZodString;
|
|
922
|
+
identifier: z.ZodString;
|
|
923
|
+
kV: z.ZodOptional<z.ZodString>;
|
|
924
|
+
meta: z.ZodOptional<z.ZodString>;
|
|
925
|
+
poiGroup: z.ZodString;
|
|
926
|
+
}, z.core.$strip>>;
|
|
1011
927
|
poiLocation: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodOptional<z.ZodNumber>]>;
|
|
1012
928
|
projectName: z.ZodOptional<z.ZodString>;
|
|
929
|
+
interconnectingEntity: z.ZodOptional<z.ZodString>;
|
|
1013
930
|
queueDataset: z.ZodOptional<z.ZodString>;
|
|
1014
931
|
queueDate: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
1015
932
|
reportCount: z.ZodOptional<z.ZodNumber>;
|
|
1016
|
-
reportDate: z.ZodOptional<z.
|
|
933
|
+
reportDate: z.ZodOptional<z.ZodString>;
|
|
934
|
+
sectors: z.ZodArray<z.ZodObject<{
|
|
935
|
+
identifier: z.ZodString;
|
|
936
|
+
id: z.ZodString;
|
|
937
|
+
}, z.core.$strip>>;
|
|
1017
938
|
sourceUpdate: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
939
|
+
signals: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
940
|
+
filingDate: z.ZodString;
|
|
941
|
+
headline: z.ZodString;
|
|
942
|
+
id: z.ZodString;
|
|
943
|
+
publishedDate: z.ZodString;
|
|
944
|
+
subType: z.ZodString;
|
|
945
|
+
type: z.ZodString;
|
|
946
|
+
}, z.core.$strip>>>;
|
|
1018
947
|
totalMw: z.ZodOptional<z.ZodNumber>;
|
|
1019
|
-
totals: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
1020
948
|
withdrawnDate: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
1021
|
-
|
|
1022
|
-
|
|
1023
|
-
export declare const queueListBaseUnionSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
949
|
+
}, z.core.$strict>]>;
|
|
950
|
+
export declare const queueDetailsUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1024
951
|
id: z.ZodString;
|
|
1025
952
|
schema: z.ZodLiteral<"eu_queue">;
|
|
1026
|
-
|
|
953
|
+
$organizations: z.ZodOptional<z.ZodString>;
|
|
1027
954
|
allSectors: z.ZodOptional<z.ZodString>;
|
|
1028
955
|
applicationId: z.ZodOptional<z.ZodString>;
|
|
956
|
+
applicationStatus: z.ZodOptional<z.ZodString>;
|
|
1029
957
|
country: z.ZodOptional<z.ZodString>;
|
|
1030
|
-
geo: z.ZodOptional<z.ZodObject<{
|
|
1031
|
-
defaultValue: z.ZodOptional<z.ZodString>;
|
|
1032
|
-
default: z.ZodOptional<z.ZodObject<{
|
|
1033
|
-
lon: z.ZodNumber;
|
|
1034
|
-
lat: z.ZodNumber;
|
|
1035
|
-
}, z.core.$strip>>;
|
|
1036
|
-
project: z.ZodOptional<z.ZodObject<{
|
|
1037
|
-
lon: z.ZodNumber;
|
|
1038
|
-
lat: z.ZodNumber;
|
|
1039
|
-
}, z.core.$strip>>;
|
|
1040
|
-
county: z.ZodOptional<z.ZodObject<{
|
|
1041
|
-
lon: z.ZodNumber;
|
|
1042
|
-
lat: z.ZodNumber;
|
|
1043
|
-
}, z.core.$strip>>;
|
|
1044
|
-
facility: z.ZodOptional<z.ZodObject<{
|
|
1045
|
-
lon: z.ZodNumber;
|
|
1046
|
-
lat: z.ZodNumber;
|
|
1047
|
-
}, z.core.$strip>>;
|
|
1048
|
-
}, z.core.$strip>>;
|
|
1049
958
|
lastModified: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
1050
959
|
localCounty: z.ZodOptional<z.ZodString>;
|
|
1051
960
|
localState: z.ZodOptional<z.ZodString>;
|
|
961
|
+
localTown: z.ZodOptional<z.ZodString>;
|
|
962
|
+
mwNet: z.ZodOptional<z.ZodNumber>;
|
|
1052
963
|
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1053
964
|
identifier: z.ZodString;
|
|
1054
965
|
id: z.ZodString;
|
|
1055
966
|
role: z.ZodString;
|
|
1056
967
|
ref: z.ZodOptional<z.ZodString>;
|
|
1057
968
|
}, z.core.$strip>>>;
|
|
1058
|
-
plannedOperationalDate: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
1059
969
|
projectName: z.ZodOptional<z.ZodString>;
|
|
1060
970
|
queueDataset: z.ZodOptional<z.ZodString>;
|
|
1061
971
|
queueDate: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
1062
|
-
|
|
972
|
+
refId: z.ZodOptional<z.ZodString>;
|
|
973
|
+
sectors: z.ZodArray<z.ZodObject<{
|
|
974
|
+
identifier: z.ZodString;
|
|
975
|
+
id: z.ZodString;
|
|
976
|
+
}, z.core.$strip>>;
|
|
1063
977
|
sourceUpdate: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
1064
978
|
status: z.ZodOptional<z.ZodString>;
|
|
979
|
+
storageCapacity: z.ZodOptional<z.ZodNumber>;
|
|
980
|
+
technology: z.ZodOptional<z.ZodString>;
|
|
1065
981
|
totalMw: z.ZodOptional<z.ZodNumber>;
|
|
1066
|
-
|
|
982
|
+
windFarmName: z.ZodOptional<z.ZodString>;
|
|
1067
983
|
}, z.core.$strict>, z.ZodObject<{
|
|
1068
984
|
id: z.ZodString;
|
|
1069
985
|
schema: z.ZodLiteral<"us_queue">;
|
|
986
|
+
$organizations: z.ZodOptional<z.ZodString>;
|
|
1070
987
|
actualOperationalDate: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
1071
988
|
allSectors: z.ZodOptional<z.ZodString>;
|
|
1072
989
|
applicationId: z.ZodOptional<z.ZodString>;
|
|
1073
|
-
applicationStatus: z.ZodOptional<z.ZodString>;
|
|
1074
990
|
applicationTags: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1075
991
|
identifier: z.ZodString;
|
|
1076
992
|
}, z.core.$strip>>>;
|
|
993
|
+
applicationType: z.ZodOptional<z.ZodString>;
|
|
994
|
+
applicationStatus: z.ZodOptional<z.ZodString>;
|
|
1077
995
|
cost: z.ZodOptional<z.ZodObject<{
|
|
1078
996
|
costCompany: z.ZodString;
|
|
1079
997
|
costYear: z.ZodNumber;
|
|
@@ -1085,27 +1003,62 @@ export declare const queueListBaseUnionSchema: z.ZodDiscriminatedUnion<[z.ZodObj
|
|
|
1085
1003
|
identifier: z.ZodString;
|
|
1086
1004
|
id: z.ZodString;
|
|
1087
1005
|
}, z.core.$strip>>>;
|
|
1088
|
-
|
|
1089
|
-
|
|
1090
|
-
|
|
1091
|
-
|
|
1092
|
-
|
|
1093
|
-
|
|
1094
|
-
|
|
1095
|
-
|
|
1096
|
-
|
|
1097
|
-
|
|
1098
|
-
|
|
1099
|
-
|
|
1100
|
-
|
|
1101
|
-
|
|
1102
|
-
|
|
1103
|
-
|
|
1104
|
-
|
|
1006
|
+
dateCreated: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
1007
|
+
documents: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1008
|
+
date: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
1009
|
+
document_id: z.ZodOptional<z.ZodString>;
|
|
1010
|
+
filing_id: z.ZodOptional<z.ZodString>;
|
|
1011
|
+
isSignal: z.ZodBoolean;
|
|
1012
|
+
key: z.ZodOptional<z.ZodString>;
|
|
1013
|
+
type: z.ZodArray<z.ZodString>;
|
|
1014
|
+
url: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1015
|
+
}, z.core.$strip>>>;
|
|
1016
|
+
events: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1017
|
+
applicationId: z.ZodString;
|
|
1018
|
+
daysInQueue: z.ZodOptional<z.ZodNumber>;
|
|
1019
|
+
eventHash: z.ZodOptional<z.ZodString>;
|
|
1020
|
+
eventType: z.ZodEnum<{
|
|
1021
|
+
add: "add";
|
|
1022
|
+
update: "update";
|
|
1023
|
+
}>;
|
|
1024
|
+
id: z.ZodString;
|
|
1025
|
+
propKey: z.ZodString;
|
|
1026
|
+
propType: z.ZodEnum<{
|
|
1027
|
+
applicationTags: "applicationTags";
|
|
1028
|
+
tracked: "tracked";
|
|
1029
|
+
}>;
|
|
1030
|
+
propVal: z.ZodString;
|
|
1031
|
+
queueDate: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
1032
|
+
queueKey: z.ZodString;
|
|
1033
|
+
reportDate: z.ZodString;
|
|
1034
|
+
set: z.ZodNumber;
|
|
1035
|
+
transition: z.ZodOptional<z.ZodObject<{
|
|
1036
|
+
delta: z.ZodOptional<z.ZodNumber>;
|
|
1037
|
+
durationInDays: z.ZodNumber;
|
|
1038
|
+
from: z.ZodObject<{
|
|
1039
|
+
assigned: z.ZodString;
|
|
1040
|
+
value: z.ZodString;
|
|
1041
|
+
}, z.core.$strip>;
|
|
1042
|
+
to: z.ZodObject<{
|
|
1043
|
+
assigned: z.ZodString;
|
|
1044
|
+
value: z.ZodString;
|
|
1045
|
+
}, z.core.$strip>;
|
|
1105
1046
|
}, z.core.$strip>>;
|
|
1047
|
+
}, z.core.$strip>>>;
|
|
1048
|
+
isoRtoConnection: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1049
|
+
identifier: z.ZodString;
|
|
1050
|
+
id: z.ZodString;
|
|
1051
|
+
}, z.core.$strip>>>;
|
|
1052
|
+
keyPeople: z.ZodArray<z.ZodObject<{
|
|
1053
|
+
created: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
1054
|
+
email: z.ZodOptional<z.ZodString>;
|
|
1055
|
+
fullName: z.ZodOptional<z.ZodString>;
|
|
1056
|
+
id: z.ZodOptional<z.ZodString>;
|
|
1057
|
+
linkedinUrl: z.ZodOptional<z.ZodString>;
|
|
1058
|
+
phone: z.ZodOptional<z.ZodString>;
|
|
1059
|
+
roles: z.ZodArray<z.ZodOptional<z.ZodString>>;
|
|
1060
|
+
source: z.ZodOptional<z.ZodString>;
|
|
1106
1061
|
}, z.core.$strip>>;
|
|
1107
|
-
interconnectingEntity: z.ZodOptional<z.ZodString>;
|
|
1108
|
-
lastModified: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
1109
1062
|
localCounty: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1110
1063
|
identifier: z.ZodString;
|
|
1111
1064
|
id: z.ZodString;
|
|
@@ -1114,6 +1067,34 @@ export declare const queueListBaseUnionSchema: z.ZodDiscriminatedUnion<[z.ZodObj
|
|
|
1114
1067
|
identifier: z.ZodString;
|
|
1115
1068
|
id: z.ZodString;
|
|
1116
1069
|
}, z.core.$strip>>>;
|
|
1070
|
+
milestones: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1071
|
+
compositeKey: z.ZodString;
|
|
1072
|
+
daysInQueue: z.ZodOptional<z.ZodNumber>;
|
|
1073
|
+
delta: z.ZodOptional<z.ZodNumber>;
|
|
1074
|
+
durationInDays: z.ZodOptional<z.ZodNumber>;
|
|
1075
|
+
entries: z.ZodArray<z.ZodObject<{
|
|
1076
|
+
daysInQueue: z.ZodOptional<z.ZodNumber>;
|
|
1077
|
+
delta: z.ZodOptional<z.ZodNumber>;
|
|
1078
|
+
durationInDays: z.ZodOptional<z.ZodNumber>;
|
|
1079
|
+
eventHash: z.ZodString;
|
|
1080
|
+
fromValue: z.ZodOptional<z.ZodString>;
|
|
1081
|
+
label: z.ZodString;
|
|
1082
|
+
reportDate: z.ZodString;
|
|
1083
|
+
stage: z.ZodString;
|
|
1084
|
+
toValue: z.ZodString;
|
|
1085
|
+
}, z.core.$strip>>;
|
|
1086
|
+
eventCount: z.ZodNumber;
|
|
1087
|
+
eventHash: z.ZodString;
|
|
1088
|
+
fromValue: z.ZodOptional<z.ZodString>;
|
|
1089
|
+
key: z.ZodString;
|
|
1090
|
+
label: z.ZodString;
|
|
1091
|
+
reportDate: z.ZodString;
|
|
1092
|
+
searchKey: z.ZodString;
|
|
1093
|
+
stage: z.ZodString;
|
|
1094
|
+
state: z.ZodString;
|
|
1095
|
+
toValue: z.ZodString;
|
|
1096
|
+
type: z.ZodString;
|
|
1097
|
+
}, z.core.$strip>>>;
|
|
1117
1098
|
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1118
1099
|
identifier: z.ZodString;
|
|
1119
1100
|
id: z.ZodString;
|
|
@@ -1121,23 +1102,41 @@ export declare const queueListBaseUnionSchema: z.ZodDiscriminatedUnion<[z.ZodObj
|
|
|
1121
1102
|
ref: z.ZodOptional<z.ZodString>;
|
|
1122
1103
|
}, z.core.$strip>>>;
|
|
1123
1104
|
plannedOperationalDate: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
1105
|
+
poi: z.ZodOptional<z.ZodObject<{
|
|
1106
|
+
id: z.ZodString;
|
|
1107
|
+
identifier: z.ZodString;
|
|
1108
|
+
kV: z.ZodOptional<z.ZodString>;
|
|
1109
|
+
meta: z.ZodOptional<z.ZodString>;
|
|
1110
|
+
poiGroup: z.ZodString;
|
|
1111
|
+
}, z.core.$strip>>;
|
|
1124
1112
|
poiLocation: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodOptional<z.ZodNumber>]>;
|
|
1125
1113
|
projectName: z.ZodOptional<z.ZodString>;
|
|
1114
|
+
interconnectingEntity: z.ZodOptional<z.ZodString>;
|
|
1126
1115
|
queueDataset: z.ZodOptional<z.ZodString>;
|
|
1127
1116
|
queueDate: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
1128
1117
|
reportCount: z.ZodOptional<z.ZodNumber>;
|
|
1129
|
-
reportDate: z.ZodOptional<z.
|
|
1118
|
+
reportDate: z.ZodOptional<z.ZodString>;
|
|
1119
|
+
sectors: z.ZodArray<z.ZodObject<{
|
|
1120
|
+
identifier: z.ZodString;
|
|
1121
|
+
id: z.ZodString;
|
|
1122
|
+
}, z.core.$strip>>;
|
|
1130
1123
|
sourceUpdate: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
1124
|
+
signals: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1125
|
+
filingDate: z.ZodString;
|
|
1126
|
+
headline: z.ZodString;
|
|
1127
|
+
id: z.ZodString;
|
|
1128
|
+
publishedDate: z.ZodString;
|
|
1129
|
+
subType: z.ZodString;
|
|
1130
|
+
type: z.ZodString;
|
|
1131
|
+
}, z.core.$strip>>>;
|
|
1131
1132
|
totalMw: z.ZodOptional<z.ZodNumber>;
|
|
1132
|
-
totals: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
1133
1133
|
withdrawnDate: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
1134
1134
|
}, z.core.$strict>], "schema">;
|
|
1135
|
-
export type
|
|
1136
|
-
export type
|
|
1137
|
-
export type
|
|
1138
|
-
export type
|
|
1139
|
-
export
|
|
1140
|
-
export declare const euQueueAPISchema: z.ZodObject<{
|
|
1135
|
+
export type QueueDetailsTypeV1 = z.infer<typeof queueDetailsSchemaV1>;
|
|
1136
|
+
export type QueueDetailsUnionTypeV1 = z.infer<typeof queueDetailsUnionSchemaV1>;
|
|
1137
|
+
export type EUQueueDetailsTypeV1 = z.infer<typeof euQueueDetailsSchemaV1>;
|
|
1138
|
+
export type USQueueDetailsTypeV1 = z.infer<typeof usQueueDetailsSchemaV1>;
|
|
1139
|
+
export declare const euQueueAPISchemaV1: z.ZodObject<{
|
|
1141
1140
|
$organizations: z.ZodOptional<z.ZodString>;
|
|
1142
1141
|
applicationStatus: z.ZodOptional<z.ZodString>;
|
|
1143
1142
|
localTown: z.ZodOptional<z.ZodString>;
|
|
@@ -1212,7 +1211,7 @@ export declare const euQueueAPISchema: z.ZodObject<{
|
|
|
1212
1211
|
totals: z.ZodRecord<z.ZodString, z.ZodNumber>;
|
|
1213
1212
|
withdrawnDate: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
1214
1213
|
}, z.core.$strip>;
|
|
1215
|
-
export declare const
|
|
1214
|
+
export declare const usQueueAPISchemaV1: z.ZodObject<{
|
|
1216
1215
|
$organizations: z.ZodOptional<z.ZodString>;
|
|
1217
1216
|
applicationType: z.ZodOptional<z.ZodString>;
|
|
1218
1217
|
dateCreated: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
@@ -1397,7 +1396,7 @@ export declare const usQueueAPISchema: z.ZodObject<{
|
|
|
1397
1396
|
stateName: z.ZodOptional<z.ZodString>;
|
|
1398
1397
|
totals: z.ZodRecord<z.ZodString, z.ZodNumber>;
|
|
1399
1398
|
}, z.core.$strip>;
|
|
1400
|
-
export declare const
|
|
1399
|
+
export declare const queueAPISchemaV1: z.ZodUnion<[z.ZodObject<{
|
|
1401
1400
|
$organizations: z.ZodOptional<z.ZodString>;
|
|
1402
1401
|
applicationStatus: z.ZodOptional<z.ZodString>;
|
|
1403
1402
|
localTown: z.ZodOptional<z.ZodString>;
|
|
@@ -1656,7 +1655,7 @@ export declare const queueAPISchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1656
1655
|
stateName: z.ZodOptional<z.ZodString>;
|
|
1657
1656
|
totals: z.ZodRecord<z.ZodString, z.ZodNumber>;
|
|
1658
1657
|
}, z.core.$strip>]>;
|
|
1659
|
-
export declare const
|
|
1658
|
+
export declare const queueAPIUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1660
1659
|
$organizations: z.ZodOptional<z.ZodString>;
|
|
1661
1660
|
applicationType: z.ZodOptional<z.ZodString>;
|
|
1662
1661
|
dateCreated: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
@@ -1915,11 +1914,11 @@ export declare const queueAPIUnionSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1915
1914
|
totals: z.ZodRecord<z.ZodString, z.ZodNumber>;
|
|
1916
1915
|
withdrawnDate: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
1917
1916
|
}, z.core.$strip>], "schema">;
|
|
1918
|
-
export type
|
|
1919
|
-
export type
|
|
1920
|
-
export type
|
|
1921
|
-
export type
|
|
1922
|
-
declare const
|
|
1917
|
+
export type QueueAPITypeV1 = z.infer<typeof queueAPISchemaV1>;
|
|
1918
|
+
export type QueueAPIUnionTypeV1 = z.infer<typeof queueAPIUnionSchemaV1>;
|
|
1919
|
+
export type EUQueueAPITypeV1 = z.infer<typeof euQueueAPISchemaV1>;
|
|
1920
|
+
export type USQueueAPITypeV1 = z.infer<typeof usQueueAPISchemaV1>;
|
|
1921
|
+
export declare const euQueueExportSchemaV1: z.ZodObject<{
|
|
1923
1922
|
id: z.ZodString;
|
|
1924
1923
|
schema: z.ZodLiteral<"eu_queue">;
|
|
1925
1924
|
actualOperationalDate: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
@@ -1969,7 +1968,7 @@ declare const euQueueExportSchema: z.ZodObject<{
|
|
|
1969
1968
|
id: z.ZodString;
|
|
1970
1969
|
}, z.core.$strip>>;
|
|
1971
1970
|
}, z.core.$strict>;
|
|
1972
|
-
declare const
|
|
1971
|
+
export declare const usQueueExportSchemaV1: z.ZodObject<{
|
|
1973
1972
|
id: z.ZodString;
|
|
1974
1973
|
schema: z.ZodLiteral<"us_queue">;
|
|
1975
1974
|
actualOperationalDate: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
@@ -2038,7 +2037,7 @@ declare const usQueueExportSchema: z.ZodObject<{
|
|
|
2038
2037
|
withdrawnDate: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
2039
2038
|
sort: z.ZodTuple<[z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>, z.ZodNumber], null>;
|
|
2040
2039
|
}, z.core.$strict>;
|
|
2041
|
-
export declare const
|
|
2040
|
+
export declare const queueExportUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
2042
2041
|
id: z.ZodString;
|
|
2043
2042
|
schema: z.ZodLiteral<"eu_queue">;
|
|
2044
2043
|
actualOperationalDate: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
@@ -2156,6 +2155,6 @@ export declare const queueExportUnionSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
|
|
|
2156
2155
|
withdrawnDate: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
2157
2156
|
sort: z.ZodTuple<[z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>, z.ZodNumber], null>;
|
|
2158
2157
|
}, z.core.$strict>], "schema">;
|
|
2159
|
-
export type
|
|
2160
|
-
export type
|
|
2161
|
-
export type
|
|
2158
|
+
export type QueueExportUnionTypeV1 = z.infer<typeof queueExportUnionSchemaV1>;
|
|
2159
|
+
export type EUQueueExportTypeV1 = z.infer<typeof euQueueExportSchemaV1>;
|
|
2160
|
+
export type USQueueExportTypeV1 = z.infer<typeof usQueueExportSchemaV1>;
|