@new-project-media/client-frontends-shared-types 3.4.5 → 3.5.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/lib/dataGrid/api/dataCenters/index.d.ts +2 -2
- package/src/lib/dataGrid/api/dataCenters/index.js +3 -1
- package/src/lib/dataGrid/api/dataCenters/index.js.map +1 -1
- package/src/lib/dataGrid/api/dataCenters/v1.d.ts +1232 -523
- package/src/lib/dataGrid/api/dataCenters/v1.js +186 -32
- package/src/lib/dataGrid/api/dataCenters/v1.js.map +1 -1
|
@@ -42,11 +42,13 @@ export type PowerWithStorage = z.infer<typeof PowerWithStorageSchema>;
|
|
|
42
42
|
declare const BuildingSizeSchema: z.ZodObject<{
|
|
43
43
|
square_foot: z.ZodNumber;
|
|
44
44
|
square_metre: z.ZodNumber;
|
|
45
|
+
sort: z.ZodOptional<z.ZodNumber>;
|
|
45
46
|
}, z.core.$strip>;
|
|
46
47
|
export type BuildingSize = z.infer<typeof BuildingSizeSchema>;
|
|
47
48
|
declare const LandSizeSchema: z.ZodObject<{
|
|
48
49
|
acre: z.ZodNumber;
|
|
49
50
|
hectare: z.ZodNumber;
|
|
51
|
+
sort: z.ZodOptional<z.ZodNumber>;
|
|
50
52
|
}, z.core.$strip>;
|
|
51
53
|
export type LandSize = z.infer<typeof LandSizeSchema>;
|
|
52
54
|
export declare const SizeFieldsEnum: {
|
|
@@ -76,6 +78,14 @@ export declare const signalTypeSchema: z.ZodObject<{
|
|
|
76
78
|
identifier: z.ZodString;
|
|
77
79
|
id: z.ZodString;
|
|
78
80
|
}, z.core.$strip>;
|
|
81
|
+
export declare const signalKeyPeopleSchema: z.ZodObject<{
|
|
82
|
+
identifier: z.ZodString;
|
|
83
|
+
fullName: z.ZodString;
|
|
84
|
+
id: z.ZodString;
|
|
85
|
+
linkedinUrl: z.ZodOptional<z.ZodString>;
|
|
86
|
+
role: z.ZodOptional<z.ZodString>;
|
|
87
|
+
email: z.ZodOptional<z.ZodString>;
|
|
88
|
+
}, z.core.$strip>;
|
|
79
89
|
export declare const signalsSchema: z.ZodObject<{
|
|
80
90
|
documents: z.ZodArray<z.ZodObject<{
|
|
81
91
|
filename: z.ZodString;
|
|
@@ -101,6 +111,14 @@ export declare const signalsSchema: z.ZodObject<{
|
|
|
101
111
|
id: z.ZodString;
|
|
102
112
|
}, z.core.$strip>;
|
|
103
113
|
headline: z.ZodString;
|
|
114
|
+
keyPeople: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
115
|
+
identifier: z.ZodString;
|
|
116
|
+
fullName: z.ZodString;
|
|
117
|
+
id: z.ZodString;
|
|
118
|
+
linkedinUrl: z.ZodOptional<z.ZodString>;
|
|
119
|
+
role: z.ZodOptional<z.ZodString>;
|
|
120
|
+
email: z.ZodOptional<z.ZodString>;
|
|
121
|
+
}, z.core.$strip>>>;
|
|
104
122
|
}, z.core.$strip>;
|
|
105
123
|
export declare const documentSchema: z.ZodObject<{
|
|
106
124
|
filename: z.ZodString;
|
|
@@ -122,20 +140,33 @@ export declare const keyPeopleSchema: z.ZodObject<{
|
|
|
122
140
|
id: z.ZodString;
|
|
123
141
|
linkedinUrl: z.ZodOptional<z.ZodString>;
|
|
124
142
|
roles: z.ZodArray<z.ZodString>;
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
143
|
+
role: z.ZodOptional<z.ZodString>;
|
|
144
|
+
email: z.ZodOptional<z.ZodString>;
|
|
145
|
+
source: z.ZodOptional<z.ZodString>;
|
|
146
|
+
phone: z.ZodOptional<z.ZodString>;
|
|
128
147
|
}, z.core.$strip>;
|
|
129
148
|
export declare const baseDataCenterSchemaV1: z.ZodObject<{
|
|
130
149
|
id: z.ZodString;
|
|
131
150
|
}, z.core.$strip>;
|
|
132
|
-
export declare const
|
|
151
|
+
export declare const dataCenterFullSchemaV1: z.ZodObject<{
|
|
133
152
|
id: z.ZodString;
|
|
153
|
+
indexed_at: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
154
|
+
meta: z.ZodOptional<z.ZodObject<{
|
|
155
|
+
PK: z.ZodOptional<z.ZodString>;
|
|
156
|
+
SK: z.ZodOptional<z.ZodString>;
|
|
157
|
+
pk: z.ZodOptional<z.ZodString>;
|
|
158
|
+
sk: z.ZodOptional<z.ZodString>;
|
|
159
|
+
computedList: z.ZodOptional<z.ZodString>;
|
|
160
|
+
created: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
161
|
+
entity: z.ZodOptional<z.ZodString>;
|
|
162
|
+
modified: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
163
|
+
}, z.core.$strip>>;
|
|
134
164
|
$organizations: z.ZodOptional<z.ZodString>;
|
|
135
165
|
'#developers': z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
136
166
|
'#epcs': z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
137
167
|
'#utilities': z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
138
168
|
allSectors: z.ZodOptional<z.ZodString>;
|
|
169
|
+
region: z.ZodOptional<z.ZodString>;
|
|
139
170
|
audiences: z.ZodArray<z.ZodObject<{
|
|
140
171
|
identifier: z.ZodString;
|
|
141
172
|
id: z.ZodString;
|
|
@@ -164,6 +195,20 @@ export declare const dataCenterListSchemaV1: z.ZodObject<{
|
|
|
164
195
|
identifier: z.ZodString;
|
|
165
196
|
id: z.ZodString;
|
|
166
197
|
}, z.core.$strip>>;
|
|
198
|
+
documents: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
199
|
+
filename: z.ZodString;
|
|
200
|
+
size: z.ZodOptional<z.ZodString>;
|
|
201
|
+
created: z.ZodString;
|
|
202
|
+
filing_id: z.ZodString;
|
|
203
|
+
mimetype: z.ZodOptional<z.ZodString>;
|
|
204
|
+
type: z.ZodArray<z.ZodString>;
|
|
205
|
+
document_id: z.ZodString;
|
|
206
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
207
|
+
key: z.ZodOptional<z.ZodString>;
|
|
208
|
+
url: z.ZodOptional<z.ZodString>;
|
|
209
|
+
username: z.ZodString;
|
|
210
|
+
isSignal: z.ZodOptional<z.ZodBoolean>;
|
|
211
|
+
}, z.core.$strip>>>;
|
|
167
212
|
externalNotes: z.ZodOptional<z.ZodString>;
|
|
168
213
|
flags: z.ZodObject<{
|
|
169
214
|
backupGeneration: z.ZodBoolean;
|
|
@@ -187,6 +232,14 @@ export declare const dataCenterListSchemaV1: z.ZodObject<{
|
|
|
187
232
|
lat: z.ZodNumber;
|
|
188
233
|
lon: z.ZodNumber;
|
|
189
234
|
}, z.core.$strip>>;
|
|
235
|
+
approximate: z.ZodOptional<z.ZodObject<{
|
|
236
|
+
lat: z.ZodNumber;
|
|
237
|
+
lon: z.ZodNumber;
|
|
238
|
+
}, z.core.$strip>>;
|
|
239
|
+
project: z.ZodOptional<z.ZodObject<{
|
|
240
|
+
lat: z.ZodNumber;
|
|
241
|
+
lon: z.ZodNumber;
|
|
242
|
+
}, z.core.$strip>>;
|
|
190
243
|
}, z.core.$strip>;
|
|
191
244
|
intel: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
192
245
|
identifier: z.ZodString;
|
|
@@ -209,6 +262,17 @@ export declare const dataCenterListSchemaV1: z.ZodObject<{
|
|
|
209
262
|
id: z.ZodString;
|
|
210
263
|
}, z.core.$strip>>>;
|
|
211
264
|
internalNotes: z.ZodOptional<z.ZodString>;
|
|
265
|
+
keyPeople: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
266
|
+
identifier: z.ZodString;
|
|
267
|
+
fullName: z.ZodString;
|
|
268
|
+
id: z.ZodString;
|
|
269
|
+
linkedinUrl: z.ZodOptional<z.ZodString>;
|
|
270
|
+
roles: z.ZodArray<z.ZodString>;
|
|
271
|
+
role: z.ZodOptional<z.ZodString>;
|
|
272
|
+
email: z.ZodOptional<z.ZodString>;
|
|
273
|
+
source: z.ZodOptional<z.ZodString>;
|
|
274
|
+
phone: z.ZodOptional<z.ZodString>;
|
|
275
|
+
}, z.core.$strip>>>;
|
|
212
276
|
localCity: z.ZodOptional<z.ZodString>;
|
|
213
277
|
localCounty: z.ZodOptional<z.ZodString>;
|
|
214
278
|
localState: z.ZodOptional<z.ZodString>;
|
|
@@ -241,6 +305,103 @@ export declare const dataCenterListSchemaV1: z.ZodObject<{
|
|
|
241
305
|
override: z.ZodOptional<z.ZodBoolean>;
|
|
242
306
|
}, z.core.$strip>>;
|
|
243
307
|
modified: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
308
|
+
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
309
|
+
identifier: z.ZodString;
|
|
310
|
+
id: z.ZodString;
|
|
311
|
+
role: z.ZodString;
|
|
312
|
+
ref: z.ZodOptional<z.ZodString>;
|
|
313
|
+
}, z.core.$strip>>>;
|
|
314
|
+
plannedOperationalDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
315
|
+
projectName: z.ZodString;
|
|
316
|
+
queueApplications: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
317
|
+
queueKey: z.ZodOptional<z.ZodString>;
|
|
318
|
+
applicationId: z.ZodOptional<z.ZodString>;
|
|
319
|
+
queueDataset: z.ZodOptional<z.ZodString>;
|
|
320
|
+
id: z.ZodString;
|
|
321
|
+
identifier: z.ZodString;
|
|
322
|
+
}, z.core.$strip>>>;
|
|
323
|
+
regions: z.ZodArray<z.ZodObject<{
|
|
324
|
+
identifier: z.ZodString;
|
|
325
|
+
id: z.ZodString;
|
|
326
|
+
}, z.core.$strip>>;
|
|
327
|
+
sectors: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
328
|
+
source: z.ZodOptional<z.ZodString>;
|
|
329
|
+
identifier: z.ZodString;
|
|
330
|
+
id: z.ZodString;
|
|
331
|
+
}, z.core.$strip>>>;
|
|
332
|
+
showProject: z.ZodBoolean;
|
|
333
|
+
signals: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
334
|
+
documents: z.ZodArray<z.ZodObject<{
|
|
335
|
+
filename: z.ZodString;
|
|
336
|
+
size: z.ZodOptional<z.ZodString>;
|
|
337
|
+
created: z.ZodOptional<z.ZodString>;
|
|
338
|
+
filing_id: z.ZodOptional<z.ZodString>;
|
|
339
|
+
mimetype: z.ZodOptional<z.ZodString>;
|
|
340
|
+
type: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
341
|
+
document_id: z.ZodString;
|
|
342
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
343
|
+
key: z.ZodOptional<z.ZodString>;
|
|
344
|
+
username: z.ZodOptional<z.ZodString>;
|
|
345
|
+
url: z.ZodOptional<z.ZodString>;
|
|
346
|
+
}, z.core.$strip>>;
|
|
347
|
+
subType: z.ZodArray<z.ZodObject<{
|
|
348
|
+
identifier: z.ZodString;
|
|
349
|
+
id: z.ZodString;
|
|
350
|
+
parentId: z.ZodOptional<z.ZodString>;
|
|
351
|
+
}, z.core.$strip>>;
|
|
352
|
+
id: z.ZodString;
|
|
353
|
+
type: z.ZodObject<{
|
|
354
|
+
identifier: z.ZodString;
|
|
355
|
+
id: z.ZodString;
|
|
356
|
+
}, z.core.$strip>;
|
|
357
|
+
headline: z.ZodString;
|
|
358
|
+
keyPeople: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
359
|
+
identifier: z.ZodString;
|
|
360
|
+
fullName: z.ZodString;
|
|
361
|
+
id: z.ZodString;
|
|
362
|
+
linkedinUrl: z.ZodOptional<z.ZodString>;
|
|
363
|
+
role: z.ZodOptional<z.ZodString>;
|
|
364
|
+
email: z.ZodOptional<z.ZodString>;
|
|
365
|
+
}, z.core.$strip>>>;
|
|
366
|
+
}, z.core.$strip>>>;
|
|
367
|
+
status: z.ZodArray<z.ZodObject<{
|
|
368
|
+
identifier: z.ZodString;
|
|
369
|
+
id: z.ZodString;
|
|
370
|
+
}, z.core.$strip>>;
|
|
371
|
+
substation: z.ZodOptional<z.ZodString>;
|
|
372
|
+
totalMw: z.ZodOptional<z.ZodNumber>;
|
|
373
|
+
totals: z.ZodOptional<z.ZodObject<{
|
|
374
|
+
offtaker: z.ZodOptional<z.ZodNumber>;
|
|
375
|
+
projects: z.ZodOptional<z.ZodNumber>;
|
|
376
|
+
keyPeople: z.ZodOptional<z.ZodNumber>;
|
|
377
|
+
documents: z.ZodOptional<z.ZodNumber>;
|
|
378
|
+
organizations: z.ZodOptional<z.ZodNumber>;
|
|
379
|
+
queueApplications: z.ZodOptional<z.ZodNumber>;
|
|
380
|
+
utility: z.ZodOptional<z.ZodNumber>;
|
|
381
|
+
puc: z.ZodOptional<z.ZodNumber>;
|
|
382
|
+
epc: z.ZodOptional<z.ZodNumber>;
|
|
383
|
+
developer: z.ZodOptional<z.ZodNumber>;
|
|
384
|
+
intels: z.ZodOptional<z.ZodNumber>;
|
|
385
|
+
signals: z.ZodOptional<z.ZodNumber>;
|
|
386
|
+
}, z.core.$strip>>;
|
|
387
|
+
backupGeneration: z.ZodOptional<z.ZodObject<{
|
|
388
|
+
powerCapacity: z.ZodOptional<z.ZodObject<{
|
|
389
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
390
|
+
unit: z.ZodOptional<z.ZodString>;
|
|
391
|
+
sectors: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
392
|
+
id: z.ZodString;
|
|
393
|
+
identifier: z.ZodString;
|
|
394
|
+
}, z.core.$strip>>>;
|
|
395
|
+
}, z.core.$strip>>;
|
|
396
|
+
storage: z.ZodOptional<z.ZodObject<{
|
|
397
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
398
|
+
unit: z.ZodOptional<z.ZodString>;
|
|
399
|
+
sectors: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
400
|
+
id: z.ZodString;
|
|
401
|
+
identifier: z.ZodString;
|
|
402
|
+
}, z.core.$strip>>>;
|
|
403
|
+
}, z.core.$strip>>;
|
|
404
|
+
}, z.core.$strip>>;
|
|
244
405
|
onsiteGeneration: z.ZodOptional<z.ZodObject<{
|
|
245
406
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
246
407
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -267,13 +428,14 @@ export declare const dataCenterListSchemaV1: z.ZodObject<{
|
|
|
267
428
|
}, z.core.$strip>>>>;
|
|
268
429
|
}, z.core.$strip>>;
|
|
269
430
|
}, z.core.$strip>>;
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
431
|
+
powerCapacity: z.ZodOptional<z.ZodObject<{
|
|
432
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
433
|
+
unit: z.ZodOptional<z.ZodString>;
|
|
434
|
+
sectors: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
435
|
+
id: z.ZodString;
|
|
436
|
+
identifier: z.ZodString;
|
|
437
|
+
}, z.core.$strip>>>;
|
|
438
|
+
}, z.core.$strip>>;
|
|
277
439
|
powerFields: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
278
440
|
value: z.ZodNumber;
|
|
279
441
|
unit: z.ZodEnum<{
|
|
@@ -321,54 +483,105 @@ export declare const dataCenterListSchemaV1: z.ZodObject<{
|
|
|
321
483
|
gbp: "gbp";
|
|
322
484
|
}>;
|
|
323
485
|
}, z.core.$strip>], "identifier">>>;
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
}, z.core.$strip>>>;
|
|
332
|
-
regions: z.ZodArray<z.ZodObject<{
|
|
333
|
-
identifier: z.ZodString;
|
|
334
|
-
id: z.ZodString;
|
|
486
|
+
buildingSize: z.ZodOptional<z.ZodObject<{
|
|
487
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
488
|
+
unit: z.ZodOptional<z.ZodString>;
|
|
489
|
+
}, z.core.$strip>>;
|
|
490
|
+
landSize: z.ZodOptional<z.ZodObject<{
|
|
491
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
492
|
+
unit: z.ZodOptional<z.ZodString>;
|
|
335
493
|
}, z.core.$strip>>;
|
|
336
|
-
sectors: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
337
|
-
source: z.ZodOptional<z.ZodString>;
|
|
338
|
-
identifier: z.ZodString;
|
|
339
|
-
id: z.ZodString;
|
|
340
|
-
}, z.core.$strip>>>;
|
|
341
|
-
showProject: z.ZodBoolean;
|
|
342
494
|
sizeFields: z.ZodOptional<z.ZodObject<{
|
|
343
495
|
building: z.ZodOptional<z.ZodObject<{
|
|
344
496
|
square_foot: z.ZodNumber;
|
|
345
497
|
square_metre: z.ZodNumber;
|
|
498
|
+
sort: z.ZodOptional<z.ZodNumber>;
|
|
346
499
|
}, z.core.$strip>>;
|
|
347
500
|
land: z.ZodOptional<z.ZodObject<{
|
|
348
501
|
acre: z.ZodNumber;
|
|
349
502
|
hectare: z.ZodNumber;
|
|
503
|
+
sort: z.ZodOptional<z.ZodNumber>;
|
|
350
504
|
}, z.core.$strip>>;
|
|
351
505
|
}, z.core.$strip>>;
|
|
352
|
-
|
|
506
|
+
}, z.core.$strict>;
|
|
507
|
+
export type DataCenterFullTypeV1 = z.infer<typeof dataCenterFullSchemaV1>;
|
|
508
|
+
export declare const dataCenterListSchemaV1: z.ZodObject<{
|
|
509
|
+
sectors: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
510
|
+
source: z.ZodOptional<z.ZodString>;
|
|
353
511
|
identifier: z.ZodString;
|
|
354
512
|
id: z.ZodString;
|
|
355
|
-
}, z.core.$strip
|
|
356
|
-
|
|
513
|
+
}, z.core.$strip>>>;
|
|
514
|
+
keyPeople: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
515
|
+
identifier: z.ZodString;
|
|
516
|
+
fullName: z.ZodString;
|
|
517
|
+
id: z.ZodString;
|
|
518
|
+
linkedinUrl: z.ZodOptional<z.ZodString>;
|
|
519
|
+
roles: z.ZodArray<z.ZodString>;
|
|
520
|
+
role: z.ZodOptional<z.ZodString>;
|
|
521
|
+
email: z.ZodOptional<z.ZodString>;
|
|
522
|
+
source: z.ZodOptional<z.ZodString>;
|
|
523
|
+
phone: z.ZodOptional<z.ZodString>;
|
|
524
|
+
}, z.core.$strip>>>;
|
|
525
|
+
id: z.ZodString;
|
|
526
|
+
plannedOperationalDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
357
527
|
totalMw: z.ZodOptional<z.ZodNumber>;
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
528
|
+
location: z.ZodArray<z.ZodObject<{
|
|
529
|
+
identifier: z.ZodString;
|
|
530
|
+
id: z.ZodString;
|
|
531
|
+
isApproximate: z.ZodOptional<z.ZodBoolean>;
|
|
532
|
+
components: z.ZodOptional<z.ZodObject<{
|
|
533
|
+
'ISO_3166-1_alpha-2': z.ZodOptional<z.ZodString>;
|
|
534
|
+
'ISO_3166-1_alpha-3': z.ZodOptional<z.ZodString>;
|
|
535
|
+
'ISO_3166-2': z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
536
|
+
_category: z.ZodOptional<z.ZodString>;
|
|
537
|
+
_normalized_city: z.ZodOptional<z.ZodString>;
|
|
538
|
+
_type: z.ZodString;
|
|
539
|
+
city: z.ZodOptional<z.ZodString>;
|
|
540
|
+
continent: z.ZodOptional<z.ZodString>;
|
|
541
|
+
country: z.ZodOptional<z.ZodString>;
|
|
542
|
+
country_code: z.ZodOptional<z.ZodString>;
|
|
543
|
+
state_code: z.ZodOptional<z.ZodString>;
|
|
544
|
+
county: z.ZodOptional<z.ZodString>;
|
|
545
|
+
municipality: z.ZodOptional<z.ZodString>;
|
|
546
|
+
political_union: z.ZodOptional<z.ZodString>;
|
|
547
|
+
state: z.ZodOptional<z.ZodString>;
|
|
548
|
+
state_district: z.ZodOptional<z.ZodString>;
|
|
549
|
+
}, z.core.$strip>>;
|
|
550
|
+
geometry: z.ZodOptional<z.ZodObject<{
|
|
551
|
+
lat: z.ZodNumber;
|
|
552
|
+
lng: z.ZodNumber;
|
|
553
|
+
}, z.core.$strip>>;
|
|
554
|
+
override: z.ZodOptional<z.ZodBoolean>;
|
|
371
555
|
}, z.core.$strip>>;
|
|
556
|
+
country: z.ZodOptional<z.ZodString>;
|
|
557
|
+
created: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
558
|
+
documents: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
559
|
+
filename: z.ZodString;
|
|
560
|
+
size: z.ZodOptional<z.ZodString>;
|
|
561
|
+
created: z.ZodString;
|
|
562
|
+
filing_id: z.ZodString;
|
|
563
|
+
mimetype: z.ZodOptional<z.ZodString>;
|
|
564
|
+
type: z.ZodArray<z.ZodString>;
|
|
565
|
+
document_id: z.ZodString;
|
|
566
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
567
|
+
key: z.ZodOptional<z.ZodString>;
|
|
568
|
+
url: z.ZodOptional<z.ZodString>;
|
|
569
|
+
username: z.ZodString;
|
|
570
|
+
isSignal: z.ZodOptional<z.ZodBoolean>;
|
|
571
|
+
}, z.core.$strip>>>;
|
|
572
|
+
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
573
|
+
identifier: z.ZodString;
|
|
574
|
+
id: z.ZodString;
|
|
575
|
+
role: z.ZodString;
|
|
576
|
+
ref: z.ZodOptional<z.ZodString>;
|
|
577
|
+
}, z.core.$strip>>>;
|
|
578
|
+
queueApplications: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
579
|
+
queueKey: z.ZodOptional<z.ZodString>;
|
|
580
|
+
applicationId: z.ZodOptional<z.ZodString>;
|
|
581
|
+
queueDataset: z.ZodOptional<z.ZodString>;
|
|
582
|
+
id: z.ZodString;
|
|
583
|
+
identifier: z.ZodString;
|
|
584
|
+
}, z.core.$strip>>>;
|
|
372
585
|
signals: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
373
586
|
documents: z.ZodArray<z.ZodObject<{
|
|
374
587
|
filename: z.ZodString;
|
|
@@ -394,73 +607,32 @@ export declare const dataCenterListSchemaV1: z.ZodObject<{
|
|
|
394
607
|
id: z.ZodString;
|
|
395
608
|
}, z.core.$strip>;
|
|
396
609
|
headline: z.ZodString;
|
|
610
|
+
keyPeople: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
611
|
+
identifier: z.ZodString;
|
|
612
|
+
fullName: z.ZodString;
|
|
613
|
+
id: z.ZodString;
|
|
614
|
+
linkedinUrl: z.ZodOptional<z.ZodString>;
|
|
615
|
+
role: z.ZodOptional<z.ZodString>;
|
|
616
|
+
email: z.ZodOptional<z.ZodString>;
|
|
617
|
+
}, z.core.$strip>>>;
|
|
397
618
|
}, z.core.$strip>>>;
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
407
|
-
key: z.ZodOptional<z.ZodString>;
|
|
408
|
-
url: z.ZodOptional<z.ZodString>;
|
|
409
|
-
username: z.ZodString;
|
|
410
|
-
isSignal: z.ZodOptional<z.ZodBoolean>;
|
|
411
|
-
}, z.core.$strip>>>;
|
|
412
|
-
keyPeople: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
413
|
-
identifier: z.ZodString;
|
|
414
|
-
fullName: z.ZodString;
|
|
415
|
-
id: z.ZodString;
|
|
416
|
-
linkedinUrl: z.ZodOptional<z.ZodString>;
|
|
417
|
-
roles: z.ZodArray<z.ZodString>;
|
|
418
|
-
email: z.ZodString;
|
|
419
|
-
source: z.ZodString;
|
|
420
|
-
phone: z.ZodString;
|
|
421
|
-
}, z.core.$strip>>>;
|
|
422
|
-
sort: z.ZodTuple<[z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>, z.ZodNumber], null>;
|
|
423
|
-
}, z.core.$strict>;
|
|
424
|
-
export declare const dataCenterDetailsSchemaV1: z.ZodObject<{
|
|
425
|
-
id: z.ZodString;
|
|
426
|
-
$organizations: z.ZodOptional<z.ZodString>;
|
|
427
|
-
'#developers': z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
428
|
-
'#epcs': z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
429
|
-
'#utilities': z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
430
|
-
allSectors: z.ZodOptional<z.ZodString>;
|
|
619
|
+
powerCapacity: z.ZodOptional<z.ZodObject<{
|
|
620
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
621
|
+
unit: z.ZodOptional<z.ZodString>;
|
|
622
|
+
sectors: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
623
|
+
id: z.ZodString;
|
|
624
|
+
identifier: z.ZodString;
|
|
625
|
+
}, z.core.$strip>>>;
|
|
626
|
+
}, z.core.$strip>>;
|
|
431
627
|
audiences: z.ZodArray<z.ZodObject<{
|
|
432
628
|
identifier: z.ZodString;
|
|
433
629
|
id: z.ZodString;
|
|
434
630
|
}, z.core.$strip>>;
|
|
435
|
-
|
|
436
|
-
value: z.ZodOptional<z.ZodNumber>;
|
|
437
|
-
unit: z.ZodEnum<{
|
|
438
|
-
kW: "kW";
|
|
439
|
-
MW: "MW";
|
|
440
|
-
GW: "GW";
|
|
441
|
-
kWh: "kWh";
|
|
442
|
-
MWh: "MWh";
|
|
443
|
-
GWh: "GWh";
|
|
444
|
-
acre: "acre";
|
|
445
|
-
hectare: "hectare";
|
|
446
|
-
square_foot: "square_foot";
|
|
447
|
-
square_metre: "square_metre";
|
|
448
|
-
usd: "usd";
|
|
449
|
-
eur: "eur";
|
|
450
|
-
gbp: "gbp";
|
|
451
|
-
}>;
|
|
452
|
-
}, z.core.$strip>>;
|
|
453
|
-
country: z.ZodOptional<z.ZodString>;
|
|
454
|
-
created: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
455
|
-
createdBy: z.ZodArray<z.ZodObject<{
|
|
631
|
+
regions: z.ZodArray<z.ZodObject<{
|
|
456
632
|
identifier: z.ZodString;
|
|
457
633
|
id: z.ZodString;
|
|
458
634
|
}, z.core.$strip>>;
|
|
459
|
-
|
|
460
|
-
flags: z.ZodObject<{
|
|
461
|
-
backupGeneration: z.ZodBoolean;
|
|
462
|
-
onsiteGeneration: z.ZodBoolean;
|
|
463
|
-
}, z.core.$strip>;
|
|
635
|
+
allSectors: z.ZodOptional<z.ZodString>;
|
|
464
636
|
geo: z.ZodObject<{
|
|
465
637
|
default: z.ZodOptional<z.ZodObject<{
|
|
466
638
|
lat: z.ZodNumber;
|
|
@@ -479,60 +651,65 @@ export declare const dataCenterDetailsSchemaV1: z.ZodObject<{
|
|
|
479
651
|
lat: z.ZodNumber;
|
|
480
652
|
lon: z.ZodNumber;
|
|
481
653
|
}, z.core.$strip>>;
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
intelSections: z.ZodArray<z.ZodObject<{
|
|
486
|
-
identifier: z.ZodString;
|
|
487
|
-
id: z.ZodString;
|
|
488
|
-
key: z.ZodString;
|
|
489
|
-
}, z.core.$strip>>;
|
|
490
|
-
regions: z.ZodArray<z.ZodObject<{
|
|
491
|
-
identifier: z.ZodString;
|
|
492
|
-
id: z.ZodString;
|
|
493
|
-
key: z.ZodString;
|
|
654
|
+
approximate: z.ZodOptional<z.ZodObject<{
|
|
655
|
+
lat: z.ZodNumber;
|
|
656
|
+
lon: z.ZodNumber;
|
|
494
657
|
}, z.core.$strip>>;
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
id: z.ZodString;
|
|
499
|
-
key: z.ZodString;
|
|
658
|
+
project: z.ZodOptional<z.ZodObject<{
|
|
659
|
+
lat: z.ZodNumber;
|
|
660
|
+
lon: z.ZodNumber;
|
|
500
661
|
}, z.core.$strip>>;
|
|
662
|
+
}, z.core.$strip>;
|
|
663
|
+
totals: z.ZodOptional<z.ZodObject<{
|
|
664
|
+
offtaker: z.ZodOptional<z.ZodNumber>;
|
|
665
|
+
projects: z.ZodOptional<z.ZodNumber>;
|
|
666
|
+
keyPeople: z.ZodOptional<z.ZodNumber>;
|
|
667
|
+
documents: z.ZodOptional<z.ZodNumber>;
|
|
668
|
+
organizations: z.ZodOptional<z.ZodNumber>;
|
|
669
|
+
queueApplications: z.ZodOptional<z.ZodNumber>;
|
|
670
|
+
utility: z.ZodOptional<z.ZodNumber>;
|
|
671
|
+
puc: z.ZodOptional<z.ZodNumber>;
|
|
672
|
+
epc: z.ZodOptional<z.ZodNumber>;
|
|
673
|
+
developer: z.ZodOptional<z.ZodNumber>;
|
|
674
|
+
intels: z.ZodOptional<z.ZodNumber>;
|
|
675
|
+
signals: z.ZodOptional<z.ZodNumber>;
|
|
676
|
+
}, z.core.$strip>>;
|
|
677
|
+
$organizations: z.ZodOptional<z.ZodString>;
|
|
678
|
+
status: z.ZodArray<z.ZodObject<{
|
|
679
|
+
identifier: z.ZodString;
|
|
501
680
|
id: z.ZodString;
|
|
502
|
-
}, z.core.$strip
|
|
503
|
-
|
|
504
|
-
|
|
681
|
+
}, z.core.$strip>>;
|
|
682
|
+
meta: z.ZodOptional<z.ZodObject<{
|
|
683
|
+
PK: z.ZodOptional<z.ZodString>;
|
|
684
|
+
SK: z.ZodOptional<z.ZodString>;
|
|
685
|
+
pk: z.ZodOptional<z.ZodString>;
|
|
686
|
+
sk: z.ZodOptional<z.ZodString>;
|
|
687
|
+
computedList: z.ZodOptional<z.ZodString>;
|
|
688
|
+
created: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
689
|
+
entity: z.ZodOptional<z.ZodString>;
|
|
690
|
+
modified: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
691
|
+
}, z.core.$strip>>;
|
|
505
692
|
localCounty: z.ZodOptional<z.ZodString>;
|
|
506
693
|
localState: z.ZodOptional<z.ZodString>;
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
political_union: z.ZodOptional<z.ZodString>;
|
|
526
|
-
state: z.ZodOptional<z.ZodString>;
|
|
527
|
-
state_district: z.ZodOptional<z.ZodString>;
|
|
528
|
-
}, z.core.$strip>>;
|
|
529
|
-
geometry: z.ZodOptional<z.ZodObject<{
|
|
530
|
-
lat: z.ZodNumber;
|
|
531
|
-
lng: z.ZodNumber;
|
|
532
|
-
}, z.core.$strip>>;
|
|
533
|
-
override: z.ZodOptional<z.ZodBoolean>;
|
|
694
|
+
projectName: z.ZodString;
|
|
695
|
+
cost: z.ZodOptional<z.ZodObject<{
|
|
696
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
697
|
+
unit: z.ZodEnum<{
|
|
698
|
+
kW: "kW";
|
|
699
|
+
MW: "MW";
|
|
700
|
+
GW: "GW";
|
|
701
|
+
kWh: "kWh";
|
|
702
|
+
MWh: "MWh";
|
|
703
|
+
GWh: "GWh";
|
|
704
|
+
acre: "acre";
|
|
705
|
+
hectare: "hectare";
|
|
706
|
+
square_foot: "square_foot";
|
|
707
|
+
square_metre: "square_metre";
|
|
708
|
+
usd: "usd";
|
|
709
|
+
eur: "eur";
|
|
710
|
+
gbp: "gbp";
|
|
711
|
+
}>;
|
|
534
712
|
}, z.core.$strip>>;
|
|
535
|
-
modified: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
536
713
|
onsiteGeneration: z.ZodOptional<z.ZodObject<{
|
|
537
714
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
538
715
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -559,13 +736,63 @@ export declare const dataCenterDetailsSchemaV1: z.ZodObject<{
|
|
|
559
736
|
}, z.core.$strip>>>>;
|
|
560
737
|
}, z.core.$strip>>;
|
|
561
738
|
}, z.core.$strip>>;
|
|
562
|
-
|
|
739
|
+
backupGeneration: z.ZodOptional<z.ZodObject<{
|
|
740
|
+
powerCapacity: z.ZodOptional<z.ZodObject<{
|
|
741
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
742
|
+
unit: z.ZodOptional<z.ZodString>;
|
|
743
|
+
sectors: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
744
|
+
id: z.ZodString;
|
|
745
|
+
identifier: z.ZodString;
|
|
746
|
+
}, z.core.$strip>>>;
|
|
747
|
+
}, z.core.$strip>>;
|
|
748
|
+
storage: z.ZodOptional<z.ZodObject<{
|
|
749
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
750
|
+
unit: z.ZodOptional<z.ZodString>;
|
|
751
|
+
sectors: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
752
|
+
id: z.ZodString;
|
|
753
|
+
identifier: z.ZodString;
|
|
754
|
+
}, z.core.$strip>>>;
|
|
755
|
+
}, z.core.$strip>>;
|
|
756
|
+
}, z.core.$strip>>;
|
|
757
|
+
modified: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
758
|
+
indexed_at: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
759
|
+
'#developers': z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
760
|
+
'#epcs': z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
761
|
+
'#utilities': z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
762
|
+
region: z.ZodOptional<z.ZodString>;
|
|
763
|
+
createdBy: z.ZodArray<z.ZodObject<{
|
|
563
764
|
identifier: z.ZodString;
|
|
564
765
|
id: z.ZodString;
|
|
565
|
-
|
|
566
|
-
|
|
766
|
+
}, z.core.$strip>>;
|
|
767
|
+
externalNotes: z.ZodOptional<z.ZodString>;
|
|
768
|
+
flags: z.ZodObject<{
|
|
769
|
+
backupGeneration: z.ZodBoolean;
|
|
770
|
+
onsiteGeneration: z.ZodBoolean;
|
|
771
|
+
}, z.core.$strip>;
|
|
772
|
+
intel: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
773
|
+
identifier: z.ZodString;
|
|
774
|
+
intelSections: z.ZodArray<z.ZodObject<{
|
|
775
|
+
identifier: z.ZodString;
|
|
776
|
+
id: z.ZodString;
|
|
777
|
+
key: z.ZodString;
|
|
778
|
+
}, z.core.$strip>>;
|
|
779
|
+
regions: z.ZodArray<z.ZodObject<{
|
|
780
|
+
identifier: z.ZodString;
|
|
781
|
+
id: z.ZodString;
|
|
782
|
+
key: z.ZodString;
|
|
783
|
+
}, z.core.$strip>>;
|
|
784
|
+
publishedTime: z.ZodString;
|
|
785
|
+
audiences: z.ZodArray<z.ZodObject<{
|
|
786
|
+
identifier: z.ZodString;
|
|
787
|
+
id: z.ZodString;
|
|
788
|
+
key: z.ZodString;
|
|
789
|
+
}, z.core.$strip>>;
|
|
790
|
+
id: z.ZodString;
|
|
567
791
|
}, z.core.$strip>>>;
|
|
568
|
-
|
|
792
|
+
internalNotes: z.ZodOptional<z.ZodString>;
|
|
793
|
+
localCity: z.ZodOptional<z.ZodString>;
|
|
794
|
+
showProject: z.ZodBoolean;
|
|
795
|
+
substation: z.ZodOptional<z.ZodString>;
|
|
569
796
|
powerFields: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
570
797
|
value: z.ZodNumber;
|
|
571
798
|
unit: z.ZodEnum<{
|
|
@@ -613,80 +840,78 @@ export declare const dataCenterDetailsSchemaV1: z.ZodObject<{
|
|
|
613
840
|
gbp: "gbp";
|
|
614
841
|
}>;
|
|
615
842
|
}, z.core.$strip>], "identifier">>>;
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
}, z.core.$strip>>>;
|
|
624
|
-
regions: z.ZodArray<z.ZodObject<{
|
|
625
|
-
identifier: z.ZodString;
|
|
626
|
-
id: z.ZodString;
|
|
843
|
+
buildingSize: z.ZodOptional<z.ZodObject<{
|
|
844
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
845
|
+
unit: z.ZodOptional<z.ZodString>;
|
|
846
|
+
}, z.core.$strip>>;
|
|
847
|
+
landSize: z.ZodOptional<z.ZodObject<{
|
|
848
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
849
|
+
unit: z.ZodOptional<z.ZodString>;
|
|
627
850
|
}, z.core.$strip>>;
|
|
628
|
-
sectors: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
629
|
-
source: z.ZodOptional<z.ZodString>;
|
|
630
|
-
identifier: z.ZodString;
|
|
631
|
-
id: z.ZodString;
|
|
632
|
-
}, z.core.$strip>>>;
|
|
633
|
-
showProject: z.ZodBoolean;
|
|
634
851
|
sizeFields: z.ZodOptional<z.ZodObject<{
|
|
635
852
|
building: z.ZodOptional<z.ZodObject<{
|
|
636
853
|
square_foot: z.ZodNumber;
|
|
637
854
|
square_metre: z.ZodNumber;
|
|
855
|
+
sort: z.ZodOptional<z.ZodNumber>;
|
|
638
856
|
}, z.core.$strip>>;
|
|
639
857
|
land: z.ZodOptional<z.ZodObject<{
|
|
640
858
|
acre: z.ZodNumber;
|
|
641
859
|
hectare: z.ZodNumber;
|
|
860
|
+
sort: z.ZodOptional<z.ZodNumber>;
|
|
642
861
|
}, z.core.$strip>>;
|
|
643
862
|
}, z.core.$strip>>;
|
|
644
|
-
|
|
863
|
+
sort: z.ZodOptional<z.ZodTuple<[z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>, z.ZodNumber], null>>;
|
|
864
|
+
}, z.core.$strict>;
|
|
865
|
+
export declare const dataCenterDetailsSchemaV1: z.ZodObject<{
|
|
866
|
+
sectors: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
867
|
+
source: z.ZodOptional<z.ZodString>;
|
|
645
868
|
identifier: z.ZodString;
|
|
646
869
|
id: z.ZodString;
|
|
647
|
-
}, z.core.$strip
|
|
648
|
-
|
|
870
|
+
}, z.core.$strip>>>;
|
|
871
|
+
keyPeople: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
872
|
+
identifier: z.ZodString;
|
|
873
|
+
fullName: z.ZodString;
|
|
874
|
+
id: z.ZodString;
|
|
875
|
+
linkedinUrl: z.ZodOptional<z.ZodString>;
|
|
876
|
+
roles: z.ZodArray<z.ZodString>;
|
|
877
|
+
role: z.ZodOptional<z.ZodString>;
|
|
878
|
+
email: z.ZodOptional<z.ZodString>;
|
|
879
|
+
source: z.ZodOptional<z.ZodString>;
|
|
880
|
+
phone: z.ZodOptional<z.ZodString>;
|
|
881
|
+
}, z.core.$strip>>>;
|
|
882
|
+
id: z.ZodString;
|
|
883
|
+
plannedOperationalDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
649
884
|
totalMw: z.ZodOptional<z.ZodNumber>;
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
type: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
672
|
-
document_id: z.ZodString;
|
|
673
|
-
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
674
|
-
key: z.ZodOptional<z.ZodString>;
|
|
675
|
-
username: z.ZodOptional<z.ZodString>;
|
|
676
|
-
url: z.ZodOptional<z.ZodString>;
|
|
885
|
+
location: z.ZodArray<z.ZodObject<{
|
|
886
|
+
identifier: z.ZodString;
|
|
887
|
+
id: z.ZodString;
|
|
888
|
+
isApproximate: z.ZodOptional<z.ZodBoolean>;
|
|
889
|
+
components: z.ZodOptional<z.ZodObject<{
|
|
890
|
+
'ISO_3166-1_alpha-2': z.ZodOptional<z.ZodString>;
|
|
891
|
+
'ISO_3166-1_alpha-3': z.ZodOptional<z.ZodString>;
|
|
892
|
+
'ISO_3166-2': z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
893
|
+
_category: z.ZodOptional<z.ZodString>;
|
|
894
|
+
_normalized_city: z.ZodOptional<z.ZodString>;
|
|
895
|
+
_type: z.ZodString;
|
|
896
|
+
city: z.ZodOptional<z.ZodString>;
|
|
897
|
+
continent: z.ZodOptional<z.ZodString>;
|
|
898
|
+
country: z.ZodOptional<z.ZodString>;
|
|
899
|
+
country_code: z.ZodOptional<z.ZodString>;
|
|
900
|
+
state_code: z.ZodOptional<z.ZodString>;
|
|
901
|
+
county: z.ZodOptional<z.ZodString>;
|
|
902
|
+
municipality: z.ZodOptional<z.ZodString>;
|
|
903
|
+
political_union: z.ZodOptional<z.ZodString>;
|
|
904
|
+
state: z.ZodOptional<z.ZodString>;
|
|
905
|
+
state_district: z.ZodOptional<z.ZodString>;
|
|
677
906
|
}, z.core.$strip>>;
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
parentId: z.ZodOptional<z.ZodString>;
|
|
907
|
+
geometry: z.ZodOptional<z.ZodObject<{
|
|
908
|
+
lat: z.ZodNumber;
|
|
909
|
+
lng: z.ZodNumber;
|
|
682
910
|
}, z.core.$strip>>;
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
}, z.core.$strip>;
|
|
688
|
-
headline: z.ZodString;
|
|
689
|
-
}, z.core.$strip>>>;
|
|
911
|
+
override: z.ZodOptional<z.ZodBoolean>;
|
|
912
|
+
}, z.core.$strip>>;
|
|
913
|
+
country: z.ZodOptional<z.ZodString>;
|
|
914
|
+
created: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
690
915
|
documents: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
691
916
|
filename: z.ZodString;
|
|
692
917
|
size: z.ZodOptional<z.ZodString>;
|
|
@@ -701,28 +926,129 @@ export declare const dataCenterDetailsSchemaV1: z.ZodObject<{
|
|
|
701
926
|
username: z.ZodString;
|
|
702
927
|
isSignal: z.ZodOptional<z.ZodBoolean>;
|
|
703
928
|
}, z.core.$strip>>>;
|
|
704
|
-
|
|
929
|
+
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
705
930
|
identifier: z.ZodString;
|
|
706
|
-
fullName: z.ZodString;
|
|
707
931
|
id: z.ZodString;
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
email: z.ZodString;
|
|
711
|
-
source: z.ZodString;
|
|
712
|
-
phone: z.ZodString;
|
|
932
|
+
role: z.ZodString;
|
|
933
|
+
ref: z.ZodOptional<z.ZodString>;
|
|
713
934
|
}, z.core.$strip>>>;
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
935
|
+
queueApplications: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
936
|
+
queueKey: z.ZodOptional<z.ZodString>;
|
|
937
|
+
applicationId: z.ZodOptional<z.ZodString>;
|
|
938
|
+
queueDataset: z.ZodOptional<z.ZodString>;
|
|
939
|
+
id: z.ZodString;
|
|
940
|
+
identifier: z.ZodString;
|
|
941
|
+
}, z.core.$strip>>>;
|
|
942
|
+
signals: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
943
|
+
documents: z.ZodArray<z.ZodObject<{
|
|
944
|
+
filename: z.ZodString;
|
|
945
|
+
size: z.ZodOptional<z.ZodString>;
|
|
946
|
+
created: z.ZodOptional<z.ZodString>;
|
|
947
|
+
filing_id: z.ZodOptional<z.ZodString>;
|
|
948
|
+
mimetype: z.ZodOptional<z.ZodString>;
|
|
949
|
+
type: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
950
|
+
document_id: z.ZodString;
|
|
951
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
952
|
+
key: z.ZodOptional<z.ZodString>;
|
|
953
|
+
username: z.ZodOptional<z.ZodString>;
|
|
954
|
+
url: z.ZodOptional<z.ZodString>;
|
|
955
|
+
}, z.core.$strip>>;
|
|
956
|
+
subType: z.ZodArray<z.ZodObject<{
|
|
957
|
+
identifier: z.ZodString;
|
|
958
|
+
id: z.ZodString;
|
|
959
|
+
parentId: z.ZodOptional<z.ZodString>;
|
|
960
|
+
}, z.core.$strip>>;
|
|
961
|
+
id: z.ZodString;
|
|
962
|
+
type: z.ZodObject<{
|
|
963
|
+
identifier: z.ZodString;
|
|
964
|
+
id: z.ZodString;
|
|
965
|
+
}, z.core.$strip>;
|
|
966
|
+
headline: z.ZodString;
|
|
967
|
+
keyPeople: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
968
|
+
identifier: z.ZodString;
|
|
969
|
+
fullName: z.ZodString;
|
|
970
|
+
id: z.ZodString;
|
|
971
|
+
linkedinUrl: z.ZodOptional<z.ZodString>;
|
|
972
|
+
role: z.ZodOptional<z.ZodString>;
|
|
973
|
+
email: z.ZodOptional<z.ZodString>;
|
|
974
|
+
}, z.core.$strip>>>;
|
|
975
|
+
}, z.core.$strip>>>;
|
|
976
|
+
powerCapacity: z.ZodOptional<z.ZodObject<{
|
|
977
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
978
|
+
unit: z.ZodOptional<z.ZodString>;
|
|
979
|
+
sectors: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
980
|
+
id: z.ZodString;
|
|
981
|
+
identifier: z.ZodString;
|
|
982
|
+
}, z.core.$strip>>>;
|
|
983
|
+
}, z.core.$strip>>;
|
|
722
984
|
audiences: z.ZodArray<z.ZodObject<{
|
|
723
985
|
identifier: z.ZodString;
|
|
724
986
|
id: z.ZodString;
|
|
725
987
|
}, z.core.$strip>>;
|
|
988
|
+
regions: z.ZodArray<z.ZodObject<{
|
|
989
|
+
identifier: z.ZodString;
|
|
990
|
+
id: z.ZodString;
|
|
991
|
+
}, z.core.$strip>>;
|
|
992
|
+
allSectors: z.ZodOptional<z.ZodString>;
|
|
993
|
+
geo: z.ZodObject<{
|
|
994
|
+
default: z.ZodOptional<z.ZodObject<{
|
|
995
|
+
lat: z.ZodNumber;
|
|
996
|
+
lon: z.ZodNumber;
|
|
997
|
+
}, z.core.$strip>>;
|
|
998
|
+
defaultValue: z.ZodOptional<z.ZodString>;
|
|
999
|
+
location: z.ZodOptional<z.ZodObject<{
|
|
1000
|
+
lat: z.ZodNumber;
|
|
1001
|
+
lon: z.ZodNumber;
|
|
1002
|
+
}, z.core.$strip>>;
|
|
1003
|
+
facility: z.ZodOptional<z.ZodObject<{
|
|
1004
|
+
lat: z.ZodNumber;
|
|
1005
|
+
lon: z.ZodNumber;
|
|
1006
|
+
}, z.core.$strip>>;
|
|
1007
|
+
county: z.ZodOptional<z.ZodObject<{
|
|
1008
|
+
lat: z.ZodNumber;
|
|
1009
|
+
lon: z.ZodNumber;
|
|
1010
|
+
}, z.core.$strip>>;
|
|
1011
|
+
approximate: z.ZodOptional<z.ZodObject<{
|
|
1012
|
+
lat: z.ZodNumber;
|
|
1013
|
+
lon: z.ZodNumber;
|
|
1014
|
+
}, z.core.$strip>>;
|
|
1015
|
+
project: z.ZodOptional<z.ZodObject<{
|
|
1016
|
+
lat: z.ZodNumber;
|
|
1017
|
+
lon: z.ZodNumber;
|
|
1018
|
+
}, z.core.$strip>>;
|
|
1019
|
+
}, z.core.$strip>;
|
|
1020
|
+
totals: z.ZodOptional<z.ZodObject<{
|
|
1021
|
+
offtaker: z.ZodOptional<z.ZodNumber>;
|
|
1022
|
+
projects: z.ZodOptional<z.ZodNumber>;
|
|
1023
|
+
keyPeople: z.ZodOptional<z.ZodNumber>;
|
|
1024
|
+
documents: z.ZodOptional<z.ZodNumber>;
|
|
1025
|
+
organizations: z.ZodOptional<z.ZodNumber>;
|
|
1026
|
+
queueApplications: z.ZodOptional<z.ZodNumber>;
|
|
1027
|
+
utility: z.ZodOptional<z.ZodNumber>;
|
|
1028
|
+
puc: z.ZodOptional<z.ZodNumber>;
|
|
1029
|
+
epc: z.ZodOptional<z.ZodNumber>;
|
|
1030
|
+
developer: z.ZodOptional<z.ZodNumber>;
|
|
1031
|
+
intels: z.ZodOptional<z.ZodNumber>;
|
|
1032
|
+
signals: z.ZodOptional<z.ZodNumber>;
|
|
1033
|
+
}, z.core.$strip>>;
|
|
1034
|
+
$organizations: z.ZodOptional<z.ZodString>;
|
|
1035
|
+
status: z.ZodArray<z.ZodObject<{
|
|
1036
|
+
identifier: z.ZodString;
|
|
1037
|
+
id: z.ZodString;
|
|
1038
|
+
}, z.core.$strip>>;
|
|
1039
|
+
meta: z.ZodOptional<z.ZodObject<{
|
|
1040
|
+
PK: z.ZodOptional<z.ZodString>;
|
|
1041
|
+
SK: z.ZodOptional<z.ZodString>;
|
|
1042
|
+
pk: z.ZodOptional<z.ZodString>;
|
|
1043
|
+
sk: z.ZodOptional<z.ZodString>;
|
|
1044
|
+
computedList: z.ZodOptional<z.ZodString>;
|
|
1045
|
+
created: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
1046
|
+
entity: z.ZodOptional<z.ZodString>;
|
|
1047
|
+
modified: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
1048
|
+
}, z.core.$strip>>;
|
|
1049
|
+
localCounty: z.ZodOptional<z.ZodString>;
|
|
1050
|
+
localState: z.ZodOptional<z.ZodString>;
|
|
1051
|
+
projectName: z.ZodString;
|
|
726
1052
|
cost: z.ZodOptional<z.ZodObject<{
|
|
727
1053
|
value: z.ZodOptional<z.ZodNumber>;
|
|
728
1054
|
unit: z.ZodEnum<{
|
|
@@ -741,8 +1067,56 @@ export declare const dataCenterExportSchemaV1: z.ZodObject<{
|
|
|
741
1067
|
gbp: "gbp";
|
|
742
1068
|
}>;
|
|
743
1069
|
}, z.core.$strip>>;
|
|
744
|
-
|
|
745
|
-
|
|
1070
|
+
onsiteGeneration: z.ZodOptional<z.ZodObject<{
|
|
1071
|
+
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
1072
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1073
|
+
powerCapacity: z.ZodOptional<z.ZodObject<{
|
|
1074
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
1075
|
+
unit: z.ZodEnum<{
|
|
1076
|
+
kW: "kW";
|
|
1077
|
+
MW: "MW";
|
|
1078
|
+
GW: "GW";
|
|
1079
|
+
kWh: "kWh";
|
|
1080
|
+
MWh: "MWh";
|
|
1081
|
+
GWh: "GWh";
|
|
1082
|
+
acre: "acre";
|
|
1083
|
+
hectare: "hectare";
|
|
1084
|
+
square_foot: "square_foot";
|
|
1085
|
+
square_metre: "square_metre";
|
|
1086
|
+
usd: "usd";
|
|
1087
|
+
eur: "eur";
|
|
1088
|
+
gbp: "gbp";
|
|
1089
|
+
}>;
|
|
1090
|
+
sectors: z.ZodOptional<z.ZodArray<z.ZodOptional<z.ZodObject<{
|
|
1091
|
+
identifier: z.ZodString;
|
|
1092
|
+
id: z.ZodString;
|
|
1093
|
+
}, z.core.$strip>>>>;
|
|
1094
|
+
}, z.core.$strip>>;
|
|
1095
|
+
}, z.core.$strip>>;
|
|
1096
|
+
backupGeneration: z.ZodOptional<z.ZodObject<{
|
|
1097
|
+
powerCapacity: z.ZodOptional<z.ZodObject<{
|
|
1098
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
1099
|
+
unit: z.ZodOptional<z.ZodString>;
|
|
1100
|
+
sectors: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1101
|
+
id: z.ZodString;
|
|
1102
|
+
identifier: z.ZodString;
|
|
1103
|
+
}, z.core.$strip>>>;
|
|
1104
|
+
}, z.core.$strip>>;
|
|
1105
|
+
storage: z.ZodOptional<z.ZodObject<{
|
|
1106
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
1107
|
+
unit: z.ZodOptional<z.ZodString>;
|
|
1108
|
+
sectors: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1109
|
+
id: z.ZodString;
|
|
1110
|
+
identifier: z.ZodString;
|
|
1111
|
+
}, z.core.$strip>>>;
|
|
1112
|
+
}, z.core.$strip>>;
|
|
1113
|
+
}, z.core.$strip>>;
|
|
1114
|
+
modified: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1115
|
+
indexed_at: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
1116
|
+
'#developers': z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1117
|
+
'#epcs': z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1118
|
+
'#utilities': z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1119
|
+
region: z.ZodOptional<z.ZodString>;
|
|
746
1120
|
createdBy: z.ZodArray<z.ZodObject<{
|
|
747
1121
|
identifier: z.ZodString;
|
|
748
1122
|
id: z.ZodString;
|
|
@@ -752,25 +1126,6 @@ export declare const dataCenterExportSchemaV1: z.ZodObject<{
|
|
|
752
1126
|
backupGeneration: z.ZodBoolean;
|
|
753
1127
|
onsiteGeneration: z.ZodBoolean;
|
|
754
1128
|
}, z.core.$strip>;
|
|
755
|
-
geo: z.ZodObject<{
|
|
756
|
-
default: z.ZodOptional<z.ZodObject<{
|
|
757
|
-
lat: z.ZodNumber;
|
|
758
|
-
lon: z.ZodNumber;
|
|
759
|
-
}, z.core.$strip>>;
|
|
760
|
-
defaultValue: z.ZodOptional<z.ZodString>;
|
|
761
|
-
location: z.ZodOptional<z.ZodObject<{
|
|
762
|
-
lat: z.ZodNumber;
|
|
763
|
-
lon: z.ZodNumber;
|
|
764
|
-
}, z.core.$strip>>;
|
|
765
|
-
facility: z.ZodOptional<z.ZodObject<{
|
|
766
|
-
lat: z.ZodNumber;
|
|
767
|
-
lon: z.ZodNumber;
|
|
768
|
-
}, z.core.$strip>>;
|
|
769
|
-
county: z.ZodOptional<z.ZodObject<{
|
|
770
|
-
lat: z.ZodNumber;
|
|
771
|
-
lon: z.ZodNumber;
|
|
772
|
-
}, z.core.$strip>>;
|
|
773
|
-
}, z.core.$strip>;
|
|
774
1129
|
intel: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
775
1130
|
identifier: z.ZodString;
|
|
776
1131
|
intelSections: z.ZodArray<z.ZodObject<{
|
|
@@ -793,8 +1148,96 @@ export declare const dataCenterExportSchemaV1: z.ZodObject<{
|
|
|
793
1148
|
}, z.core.$strip>>>;
|
|
794
1149
|
internalNotes: z.ZodOptional<z.ZodString>;
|
|
795
1150
|
localCity: z.ZodOptional<z.ZodString>;
|
|
796
|
-
|
|
797
|
-
|
|
1151
|
+
showProject: z.ZodBoolean;
|
|
1152
|
+
substation: z.ZodOptional<z.ZodString>;
|
|
1153
|
+
powerFields: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1154
|
+
value: z.ZodNumber;
|
|
1155
|
+
unit: z.ZodEnum<{
|
|
1156
|
+
kW: "kW";
|
|
1157
|
+
MW: "MW";
|
|
1158
|
+
kWh: "kWh";
|
|
1159
|
+
MWh: "MWh";
|
|
1160
|
+
}>;
|
|
1161
|
+
identifier: z.ZodEnum<{
|
|
1162
|
+
onsiteGeneration: "onsiteGeneration";
|
|
1163
|
+
backupGeneration: "backupGeneration";
|
|
1164
|
+
}>;
|
|
1165
|
+
storage: z.ZodOptional<z.ZodObject<{
|
|
1166
|
+
value: z.ZodNumber;
|
|
1167
|
+
unit: z.ZodEnum<{
|
|
1168
|
+
kW: "kW";
|
|
1169
|
+
MW: "MW";
|
|
1170
|
+
kWh: "kWh";
|
|
1171
|
+
MWh: "MWh";
|
|
1172
|
+
}>;
|
|
1173
|
+
}, z.core.$strip>>;
|
|
1174
|
+
sectors: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1175
|
+
identifier: z.ZodString;
|
|
1176
|
+
id: z.ZodString;
|
|
1177
|
+
}, z.core.$strip>>>;
|
|
1178
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1179
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1180
|
+
identifier: z.ZodEnum<{
|
|
1181
|
+
operatingCapacity: "operatingCapacity";
|
|
1182
|
+
}>;
|
|
1183
|
+
value: z.ZodNumber;
|
|
1184
|
+
unit: z.ZodEnum<{
|
|
1185
|
+
kW: "kW";
|
|
1186
|
+
MW: "MW";
|
|
1187
|
+
GW: "GW";
|
|
1188
|
+
kWh: "kWh";
|
|
1189
|
+
MWh: "MWh";
|
|
1190
|
+
GWh: "GWh";
|
|
1191
|
+
acre: "acre";
|
|
1192
|
+
hectare: "hectare";
|
|
1193
|
+
square_foot: "square_foot";
|
|
1194
|
+
square_metre: "square_metre";
|
|
1195
|
+
usd: "usd";
|
|
1196
|
+
eur: "eur";
|
|
1197
|
+
gbp: "gbp";
|
|
1198
|
+
}>;
|
|
1199
|
+
}, z.core.$strip>], "identifier">>>;
|
|
1200
|
+
buildingSize: z.ZodOptional<z.ZodObject<{
|
|
1201
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
1202
|
+
unit: z.ZodOptional<z.ZodString>;
|
|
1203
|
+
}, z.core.$strip>>;
|
|
1204
|
+
landSize: z.ZodOptional<z.ZodObject<{
|
|
1205
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
1206
|
+
unit: z.ZodOptional<z.ZodString>;
|
|
1207
|
+
}, z.core.$strip>>;
|
|
1208
|
+
sizeFields: z.ZodOptional<z.ZodObject<{
|
|
1209
|
+
building: z.ZodOptional<z.ZodObject<{
|
|
1210
|
+
square_foot: z.ZodNumber;
|
|
1211
|
+
square_metre: z.ZodNumber;
|
|
1212
|
+
sort: z.ZodOptional<z.ZodNumber>;
|
|
1213
|
+
}, z.core.$strip>>;
|
|
1214
|
+
land: z.ZodOptional<z.ZodObject<{
|
|
1215
|
+
acre: z.ZodNumber;
|
|
1216
|
+
hectare: z.ZodNumber;
|
|
1217
|
+
sort: z.ZodOptional<z.ZodNumber>;
|
|
1218
|
+
}, z.core.$strip>>;
|
|
1219
|
+
}, z.core.$strip>>;
|
|
1220
|
+
}, z.core.$strict>;
|
|
1221
|
+
export declare const dataCenterExportSchemaV1: z.ZodObject<{
|
|
1222
|
+
sectors: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1223
|
+
source: z.ZodOptional<z.ZodString>;
|
|
1224
|
+
identifier: z.ZodString;
|
|
1225
|
+
id: z.ZodString;
|
|
1226
|
+
}, z.core.$strip>>>;
|
|
1227
|
+
keyPeople: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1228
|
+
identifier: z.ZodString;
|
|
1229
|
+
fullName: z.ZodString;
|
|
1230
|
+
id: z.ZodString;
|
|
1231
|
+
linkedinUrl: z.ZodOptional<z.ZodString>;
|
|
1232
|
+
roles: z.ZodArray<z.ZodString>;
|
|
1233
|
+
role: z.ZodOptional<z.ZodString>;
|
|
1234
|
+
email: z.ZodOptional<z.ZodString>;
|
|
1235
|
+
source: z.ZodOptional<z.ZodString>;
|
|
1236
|
+
phone: z.ZodOptional<z.ZodString>;
|
|
1237
|
+
}, z.core.$strip>>>;
|
|
1238
|
+
id: z.ZodString;
|
|
1239
|
+
plannedOperationalDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1240
|
+
totalMw: z.ZodOptional<z.ZodNumber>;
|
|
798
1241
|
location: z.ZodArray<z.ZodObject<{
|
|
799
1242
|
identifier: z.ZodString;
|
|
800
1243
|
id: z.ZodString;
|
|
@@ -823,7 +1266,163 @@ export declare const dataCenterExportSchemaV1: z.ZodObject<{
|
|
|
823
1266
|
}, z.core.$strip>>;
|
|
824
1267
|
override: z.ZodOptional<z.ZodBoolean>;
|
|
825
1268
|
}, z.core.$strip>>;
|
|
826
|
-
|
|
1269
|
+
country: z.ZodOptional<z.ZodString>;
|
|
1270
|
+
created: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1271
|
+
documents: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1272
|
+
filename: z.ZodString;
|
|
1273
|
+
size: z.ZodOptional<z.ZodString>;
|
|
1274
|
+
created: z.ZodString;
|
|
1275
|
+
filing_id: z.ZodString;
|
|
1276
|
+
mimetype: z.ZodOptional<z.ZodString>;
|
|
1277
|
+
type: z.ZodArray<z.ZodString>;
|
|
1278
|
+
document_id: z.ZodString;
|
|
1279
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
1280
|
+
key: z.ZodOptional<z.ZodString>;
|
|
1281
|
+
url: z.ZodOptional<z.ZodString>;
|
|
1282
|
+
username: z.ZodString;
|
|
1283
|
+
isSignal: z.ZodOptional<z.ZodBoolean>;
|
|
1284
|
+
}, z.core.$strip>>>;
|
|
1285
|
+
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1286
|
+
identifier: z.ZodString;
|
|
1287
|
+
id: z.ZodString;
|
|
1288
|
+
role: z.ZodString;
|
|
1289
|
+
ref: z.ZodOptional<z.ZodString>;
|
|
1290
|
+
}, z.core.$strip>>>;
|
|
1291
|
+
queueApplications: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1292
|
+
queueKey: z.ZodOptional<z.ZodString>;
|
|
1293
|
+
applicationId: z.ZodOptional<z.ZodString>;
|
|
1294
|
+
queueDataset: z.ZodOptional<z.ZodString>;
|
|
1295
|
+
id: z.ZodString;
|
|
1296
|
+
identifier: z.ZodString;
|
|
1297
|
+
}, z.core.$strip>>>;
|
|
1298
|
+
signals: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1299
|
+
documents: z.ZodArray<z.ZodObject<{
|
|
1300
|
+
filename: z.ZodString;
|
|
1301
|
+
size: z.ZodOptional<z.ZodString>;
|
|
1302
|
+
created: z.ZodOptional<z.ZodString>;
|
|
1303
|
+
filing_id: z.ZodOptional<z.ZodString>;
|
|
1304
|
+
mimetype: z.ZodOptional<z.ZodString>;
|
|
1305
|
+
type: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1306
|
+
document_id: z.ZodString;
|
|
1307
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
1308
|
+
key: z.ZodOptional<z.ZodString>;
|
|
1309
|
+
username: z.ZodOptional<z.ZodString>;
|
|
1310
|
+
url: z.ZodOptional<z.ZodString>;
|
|
1311
|
+
}, z.core.$strip>>;
|
|
1312
|
+
subType: z.ZodArray<z.ZodObject<{
|
|
1313
|
+
identifier: z.ZodString;
|
|
1314
|
+
id: z.ZodString;
|
|
1315
|
+
parentId: z.ZodOptional<z.ZodString>;
|
|
1316
|
+
}, z.core.$strip>>;
|
|
1317
|
+
id: z.ZodString;
|
|
1318
|
+
type: z.ZodObject<{
|
|
1319
|
+
identifier: z.ZodString;
|
|
1320
|
+
id: z.ZodString;
|
|
1321
|
+
}, z.core.$strip>;
|
|
1322
|
+
headline: z.ZodString;
|
|
1323
|
+
keyPeople: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1324
|
+
identifier: z.ZodString;
|
|
1325
|
+
fullName: z.ZodString;
|
|
1326
|
+
id: z.ZodString;
|
|
1327
|
+
linkedinUrl: z.ZodOptional<z.ZodString>;
|
|
1328
|
+
role: z.ZodOptional<z.ZodString>;
|
|
1329
|
+
email: z.ZodOptional<z.ZodString>;
|
|
1330
|
+
}, z.core.$strip>>>;
|
|
1331
|
+
}, z.core.$strip>>>;
|
|
1332
|
+
powerCapacity: z.ZodOptional<z.ZodObject<{
|
|
1333
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
1334
|
+
unit: z.ZodOptional<z.ZodString>;
|
|
1335
|
+
sectors: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1336
|
+
id: z.ZodString;
|
|
1337
|
+
identifier: z.ZodString;
|
|
1338
|
+
}, z.core.$strip>>>;
|
|
1339
|
+
}, z.core.$strip>>;
|
|
1340
|
+
audiences: z.ZodArray<z.ZodObject<{
|
|
1341
|
+
identifier: z.ZodString;
|
|
1342
|
+
id: z.ZodString;
|
|
1343
|
+
}, z.core.$strip>>;
|
|
1344
|
+
regions: z.ZodArray<z.ZodObject<{
|
|
1345
|
+
identifier: z.ZodString;
|
|
1346
|
+
id: z.ZodString;
|
|
1347
|
+
}, z.core.$strip>>;
|
|
1348
|
+
allSectors: z.ZodOptional<z.ZodString>;
|
|
1349
|
+
geo: z.ZodObject<{
|
|
1350
|
+
default: z.ZodOptional<z.ZodObject<{
|
|
1351
|
+
lat: z.ZodNumber;
|
|
1352
|
+
lon: z.ZodNumber;
|
|
1353
|
+
}, z.core.$strip>>;
|
|
1354
|
+
defaultValue: z.ZodOptional<z.ZodString>;
|
|
1355
|
+
location: z.ZodOptional<z.ZodObject<{
|
|
1356
|
+
lat: z.ZodNumber;
|
|
1357
|
+
lon: z.ZodNumber;
|
|
1358
|
+
}, z.core.$strip>>;
|
|
1359
|
+
facility: z.ZodOptional<z.ZodObject<{
|
|
1360
|
+
lat: z.ZodNumber;
|
|
1361
|
+
lon: z.ZodNumber;
|
|
1362
|
+
}, z.core.$strip>>;
|
|
1363
|
+
county: z.ZodOptional<z.ZodObject<{
|
|
1364
|
+
lat: z.ZodNumber;
|
|
1365
|
+
lon: z.ZodNumber;
|
|
1366
|
+
}, z.core.$strip>>;
|
|
1367
|
+
approximate: z.ZodOptional<z.ZodObject<{
|
|
1368
|
+
lat: z.ZodNumber;
|
|
1369
|
+
lon: z.ZodNumber;
|
|
1370
|
+
}, z.core.$strip>>;
|
|
1371
|
+
project: z.ZodOptional<z.ZodObject<{
|
|
1372
|
+
lat: z.ZodNumber;
|
|
1373
|
+
lon: z.ZodNumber;
|
|
1374
|
+
}, z.core.$strip>>;
|
|
1375
|
+
}, z.core.$strip>;
|
|
1376
|
+
totals: z.ZodOptional<z.ZodObject<{
|
|
1377
|
+
offtaker: z.ZodOptional<z.ZodNumber>;
|
|
1378
|
+
projects: z.ZodOptional<z.ZodNumber>;
|
|
1379
|
+
keyPeople: z.ZodOptional<z.ZodNumber>;
|
|
1380
|
+
documents: z.ZodOptional<z.ZodNumber>;
|
|
1381
|
+
organizations: z.ZodOptional<z.ZodNumber>;
|
|
1382
|
+
queueApplications: z.ZodOptional<z.ZodNumber>;
|
|
1383
|
+
utility: z.ZodOptional<z.ZodNumber>;
|
|
1384
|
+
puc: z.ZodOptional<z.ZodNumber>;
|
|
1385
|
+
epc: z.ZodOptional<z.ZodNumber>;
|
|
1386
|
+
developer: z.ZodOptional<z.ZodNumber>;
|
|
1387
|
+
intels: z.ZodOptional<z.ZodNumber>;
|
|
1388
|
+
signals: z.ZodOptional<z.ZodNumber>;
|
|
1389
|
+
}, z.core.$strip>>;
|
|
1390
|
+
$organizations: z.ZodOptional<z.ZodString>;
|
|
1391
|
+
status: z.ZodArray<z.ZodObject<{
|
|
1392
|
+
identifier: z.ZodString;
|
|
1393
|
+
id: z.ZodString;
|
|
1394
|
+
}, z.core.$strip>>;
|
|
1395
|
+
meta: z.ZodOptional<z.ZodObject<{
|
|
1396
|
+
PK: z.ZodOptional<z.ZodString>;
|
|
1397
|
+
SK: z.ZodOptional<z.ZodString>;
|
|
1398
|
+
pk: z.ZodOptional<z.ZodString>;
|
|
1399
|
+
sk: z.ZodOptional<z.ZodString>;
|
|
1400
|
+
computedList: z.ZodOptional<z.ZodString>;
|
|
1401
|
+
created: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
1402
|
+
entity: z.ZodOptional<z.ZodString>;
|
|
1403
|
+
modified: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
1404
|
+
}, z.core.$strip>>;
|
|
1405
|
+
localCounty: z.ZodOptional<z.ZodString>;
|
|
1406
|
+
localState: z.ZodOptional<z.ZodString>;
|
|
1407
|
+
projectName: z.ZodString;
|
|
1408
|
+
cost: z.ZodOptional<z.ZodObject<{
|
|
1409
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
1410
|
+
unit: z.ZodEnum<{
|
|
1411
|
+
kW: "kW";
|
|
1412
|
+
MW: "MW";
|
|
1413
|
+
GW: "GW";
|
|
1414
|
+
kWh: "kWh";
|
|
1415
|
+
MWh: "MWh";
|
|
1416
|
+
GWh: "GWh";
|
|
1417
|
+
acre: "acre";
|
|
1418
|
+
hectare: "hectare";
|
|
1419
|
+
square_foot: "square_foot";
|
|
1420
|
+
square_metre: "square_metre";
|
|
1421
|
+
usd: "usd";
|
|
1422
|
+
eur: "eur";
|
|
1423
|
+
gbp: "gbp";
|
|
1424
|
+
}>;
|
|
1425
|
+
}, z.core.$strip>>;
|
|
827
1426
|
onsiteGeneration: z.ZodOptional<z.ZodObject<{
|
|
828
1427
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
829
1428
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -849,14 +1448,64 @@ export declare const dataCenterExportSchemaV1: z.ZodObject<{
|
|
|
849
1448
|
id: z.ZodString;
|
|
850
1449
|
}, z.core.$strip>>>>;
|
|
851
1450
|
}, z.core.$strip>>;
|
|
852
|
-
}, z.core.$strip>>;
|
|
853
|
-
|
|
854
|
-
|
|
1451
|
+
}, z.core.$strip>>;
|
|
1452
|
+
backupGeneration: z.ZodOptional<z.ZodObject<{
|
|
1453
|
+
powerCapacity: z.ZodOptional<z.ZodObject<{
|
|
1454
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
1455
|
+
unit: z.ZodOptional<z.ZodString>;
|
|
1456
|
+
sectors: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1457
|
+
id: z.ZodString;
|
|
1458
|
+
identifier: z.ZodString;
|
|
1459
|
+
}, z.core.$strip>>>;
|
|
1460
|
+
}, z.core.$strip>>;
|
|
1461
|
+
storage: z.ZodOptional<z.ZodObject<{
|
|
1462
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
1463
|
+
unit: z.ZodOptional<z.ZodString>;
|
|
1464
|
+
sectors: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1465
|
+
id: z.ZodString;
|
|
1466
|
+
identifier: z.ZodString;
|
|
1467
|
+
}, z.core.$strip>>>;
|
|
1468
|
+
}, z.core.$strip>>;
|
|
1469
|
+
}, z.core.$strip>>;
|
|
1470
|
+
modified: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1471
|
+
indexed_at: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
1472
|
+
'#developers': z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1473
|
+
'#epcs': z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1474
|
+
'#utilities': z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1475
|
+
region: z.ZodOptional<z.ZodString>;
|
|
1476
|
+
createdBy: z.ZodArray<z.ZodObject<{
|
|
1477
|
+
identifier: z.ZodString;
|
|
1478
|
+
id: z.ZodString;
|
|
1479
|
+
}, z.core.$strip>>;
|
|
1480
|
+
externalNotes: z.ZodOptional<z.ZodString>;
|
|
1481
|
+
flags: z.ZodObject<{
|
|
1482
|
+
backupGeneration: z.ZodBoolean;
|
|
1483
|
+
onsiteGeneration: z.ZodBoolean;
|
|
1484
|
+
}, z.core.$strip>;
|
|
1485
|
+
intel: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1486
|
+
identifier: z.ZodString;
|
|
1487
|
+
intelSections: z.ZodArray<z.ZodObject<{
|
|
1488
|
+
identifier: z.ZodString;
|
|
1489
|
+
id: z.ZodString;
|
|
1490
|
+
key: z.ZodString;
|
|
1491
|
+
}, z.core.$strip>>;
|
|
1492
|
+
regions: z.ZodArray<z.ZodObject<{
|
|
1493
|
+
identifier: z.ZodString;
|
|
1494
|
+
id: z.ZodString;
|
|
1495
|
+
key: z.ZodString;
|
|
1496
|
+
}, z.core.$strip>>;
|
|
1497
|
+
publishedTime: z.ZodString;
|
|
1498
|
+
audiences: z.ZodArray<z.ZodObject<{
|
|
1499
|
+
identifier: z.ZodString;
|
|
1500
|
+
id: z.ZodString;
|
|
1501
|
+
key: z.ZodString;
|
|
1502
|
+
}, z.core.$strip>>;
|
|
855
1503
|
id: z.ZodString;
|
|
856
|
-
role: z.ZodString;
|
|
857
|
-
ref: z.ZodOptional<z.ZodString>;
|
|
858
1504
|
}, z.core.$strip>>>;
|
|
859
|
-
|
|
1505
|
+
internalNotes: z.ZodOptional<z.ZodString>;
|
|
1506
|
+
localCity: z.ZodOptional<z.ZodString>;
|
|
1507
|
+
showProject: z.ZodBoolean;
|
|
1508
|
+
substation: z.ZodOptional<z.ZodString>;
|
|
860
1509
|
powerFields: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
861
1510
|
value: z.ZodNumber;
|
|
862
1511
|
unit: z.ZodEnum<{
|
|
@@ -904,106 +1553,29 @@ export declare const dataCenterExportSchemaV1: z.ZodObject<{
|
|
|
904
1553
|
gbp: "gbp";
|
|
905
1554
|
}>;
|
|
906
1555
|
}, z.core.$strip>], "identifier">>>;
|
|
907
|
-
|
|
908
|
-
|
|
909
|
-
|
|
910
|
-
|
|
911
|
-
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
}, z.core.$strip>>>;
|
|
915
|
-
regions: z.ZodArray<z.ZodObject<{
|
|
916
|
-
identifier: z.ZodString;
|
|
917
|
-
id: z.ZodString;
|
|
1556
|
+
buildingSize: z.ZodOptional<z.ZodObject<{
|
|
1557
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
1558
|
+
unit: z.ZodOptional<z.ZodString>;
|
|
1559
|
+
}, z.core.$strip>>;
|
|
1560
|
+
landSize: z.ZodOptional<z.ZodObject<{
|
|
1561
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
1562
|
+
unit: z.ZodOptional<z.ZodString>;
|
|
918
1563
|
}, z.core.$strip>>;
|
|
919
|
-
sectors: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
920
|
-
source: z.ZodOptional<z.ZodString>;
|
|
921
|
-
identifier: z.ZodString;
|
|
922
|
-
id: z.ZodString;
|
|
923
|
-
}, z.core.$strip>>>;
|
|
924
|
-
showProject: z.ZodBoolean;
|
|
925
1564
|
sizeFields: z.ZodOptional<z.ZodObject<{
|
|
926
1565
|
building: z.ZodOptional<z.ZodObject<{
|
|
927
1566
|
square_foot: z.ZodNumber;
|
|
928
1567
|
square_metre: z.ZodNumber;
|
|
1568
|
+
sort: z.ZodOptional<z.ZodNumber>;
|
|
929
1569
|
}, z.core.$strip>>;
|
|
930
1570
|
land: z.ZodOptional<z.ZodObject<{
|
|
931
1571
|
acre: z.ZodNumber;
|
|
932
1572
|
hectare: z.ZodNumber;
|
|
1573
|
+
sort: z.ZodOptional<z.ZodNumber>;
|
|
933
1574
|
}, z.core.$strip>>;
|
|
934
1575
|
}, z.core.$strip>>;
|
|
935
|
-
|
|
936
|
-
identifier: z.ZodString;
|
|
937
|
-
id: z.ZodString;
|
|
938
|
-
}, z.core.$strip>>;
|
|
939
|
-
substation: z.ZodOptional<z.ZodString>;
|
|
940
|
-
totalMw: z.ZodOptional<z.ZodNumber>;
|
|
941
|
-
totals: z.ZodOptional<z.ZodObject<{
|
|
942
|
-
offtaker: z.ZodOptional<z.ZodNumber>;
|
|
943
|
-
projects: z.ZodOptional<z.ZodNumber>;
|
|
944
|
-
keyPeople: z.ZodOptional<z.ZodNumber>;
|
|
945
|
-
documents: z.ZodOptional<z.ZodNumber>;
|
|
946
|
-
organizations: z.ZodOptional<z.ZodNumber>;
|
|
947
|
-
queueApplications: z.ZodOptional<z.ZodNumber>;
|
|
948
|
-
utility: z.ZodOptional<z.ZodNumber>;
|
|
949
|
-
puc: z.ZodOptional<z.ZodNumber>;
|
|
950
|
-
epc: z.ZodOptional<z.ZodNumber>;
|
|
951
|
-
developer: z.ZodOptional<z.ZodNumber>;
|
|
952
|
-
intels: z.ZodOptional<z.ZodNumber>;
|
|
953
|
-
signals: z.ZodOptional<z.ZodNumber>;
|
|
954
|
-
}, z.core.$strip>>;
|
|
955
|
-
signals: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
956
|
-
documents: z.ZodArray<z.ZodObject<{
|
|
957
|
-
filename: z.ZodString;
|
|
958
|
-
size: z.ZodOptional<z.ZodString>;
|
|
959
|
-
created: z.ZodOptional<z.ZodString>;
|
|
960
|
-
filing_id: z.ZodOptional<z.ZodString>;
|
|
961
|
-
mimetype: z.ZodOptional<z.ZodString>;
|
|
962
|
-
type: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
963
|
-
document_id: z.ZodString;
|
|
964
|
-
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
965
|
-
key: z.ZodOptional<z.ZodString>;
|
|
966
|
-
username: z.ZodOptional<z.ZodString>;
|
|
967
|
-
url: z.ZodOptional<z.ZodString>;
|
|
968
|
-
}, z.core.$strip>>;
|
|
969
|
-
subType: z.ZodArray<z.ZodObject<{
|
|
970
|
-
identifier: z.ZodString;
|
|
971
|
-
id: z.ZodString;
|
|
972
|
-
parentId: z.ZodOptional<z.ZodString>;
|
|
973
|
-
}, z.core.$strip>>;
|
|
974
|
-
id: z.ZodString;
|
|
975
|
-
type: z.ZodObject<{
|
|
976
|
-
identifier: z.ZodString;
|
|
977
|
-
id: z.ZodString;
|
|
978
|
-
}, z.core.$strip>;
|
|
979
|
-
headline: z.ZodString;
|
|
980
|
-
}, z.core.$strip>>>;
|
|
981
|
-
documents: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
982
|
-
filename: z.ZodString;
|
|
983
|
-
size: z.ZodOptional<z.ZodString>;
|
|
984
|
-
created: z.ZodString;
|
|
985
|
-
filing_id: z.ZodString;
|
|
986
|
-
mimetype: z.ZodOptional<z.ZodString>;
|
|
987
|
-
type: z.ZodArray<z.ZodString>;
|
|
988
|
-
document_id: z.ZodString;
|
|
989
|
-
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
990
|
-
key: z.ZodOptional<z.ZodString>;
|
|
991
|
-
url: z.ZodOptional<z.ZodString>;
|
|
992
|
-
username: z.ZodString;
|
|
993
|
-
isSignal: z.ZodOptional<z.ZodBoolean>;
|
|
994
|
-
}, z.core.$strip>>>;
|
|
995
|
-
keyPeople: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
996
|
-
identifier: z.ZodString;
|
|
997
|
-
fullName: z.ZodString;
|
|
998
|
-
id: z.ZodString;
|
|
999
|
-
linkedinUrl: z.ZodOptional<z.ZodString>;
|
|
1000
|
-
roles: z.ZodArray<z.ZodString>;
|
|
1001
|
-
email: z.ZodString;
|
|
1002
|
-
source: z.ZodString;
|
|
1003
|
-
phone: z.ZodString;
|
|
1004
|
-
}, z.core.$strip>>>;
|
|
1576
|
+
sort: z.ZodOptional<z.ZodTuple<[z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>, z.ZodNumber], null>>;
|
|
1005
1577
|
}, z.core.$strict>;
|
|
1006
|
-
export declare const
|
|
1578
|
+
export declare const dataCenterByLocationListSchemaV1: z.ZodObject<{
|
|
1007
1579
|
sectors: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1008
1580
|
source: z.ZodOptional<z.ZodString>;
|
|
1009
1581
|
identifier: z.ZodString;
|
|
@@ -1015,9 +1587,10 @@ export declare const dataCenterAPISchemaV1: z.ZodObject<{
|
|
|
1015
1587
|
id: z.ZodString;
|
|
1016
1588
|
linkedinUrl: z.ZodOptional<z.ZodString>;
|
|
1017
1589
|
roles: z.ZodArray<z.ZodString>;
|
|
1018
|
-
|
|
1019
|
-
|
|
1020
|
-
|
|
1590
|
+
role: z.ZodOptional<z.ZodString>;
|
|
1591
|
+
email: z.ZodOptional<z.ZodString>;
|
|
1592
|
+
source: z.ZodOptional<z.ZodString>;
|
|
1593
|
+
phone: z.ZodOptional<z.ZodString>;
|
|
1021
1594
|
}, z.core.$strip>>>;
|
|
1022
1595
|
id: z.ZodString;
|
|
1023
1596
|
plannedOperationalDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -1104,7 +1677,23 @@ export declare const dataCenterAPISchemaV1: z.ZodObject<{
|
|
|
1104
1677
|
id: z.ZodString;
|
|
1105
1678
|
}, z.core.$strip>;
|
|
1106
1679
|
headline: z.ZodString;
|
|
1680
|
+
keyPeople: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1681
|
+
identifier: z.ZodString;
|
|
1682
|
+
fullName: z.ZodString;
|
|
1683
|
+
id: z.ZodString;
|
|
1684
|
+
linkedinUrl: z.ZodOptional<z.ZodString>;
|
|
1685
|
+
role: z.ZodOptional<z.ZodString>;
|
|
1686
|
+
email: z.ZodOptional<z.ZodString>;
|
|
1687
|
+
}, z.core.$strip>>>;
|
|
1107
1688
|
}, z.core.$strip>>>;
|
|
1689
|
+
powerCapacity: z.ZodOptional<z.ZodObject<{
|
|
1690
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
1691
|
+
unit: z.ZodOptional<z.ZodString>;
|
|
1692
|
+
sectors: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1693
|
+
id: z.ZodString;
|
|
1694
|
+
identifier: z.ZodString;
|
|
1695
|
+
}, z.core.$strip>>>;
|
|
1696
|
+
}, z.core.$strip>>;
|
|
1108
1697
|
audiences: z.ZodArray<z.ZodObject<{
|
|
1109
1698
|
identifier: z.ZodString;
|
|
1110
1699
|
id: z.ZodString;
|
|
@@ -1132,6 +1721,14 @@ export declare const dataCenterAPISchemaV1: z.ZodObject<{
|
|
|
1132
1721
|
lat: z.ZodNumber;
|
|
1133
1722
|
lon: z.ZodNumber;
|
|
1134
1723
|
}, z.core.$strip>>;
|
|
1724
|
+
approximate: z.ZodOptional<z.ZodObject<{
|
|
1725
|
+
lat: z.ZodNumber;
|
|
1726
|
+
lon: z.ZodNumber;
|
|
1727
|
+
}, z.core.$strip>>;
|
|
1728
|
+
project: z.ZodOptional<z.ZodObject<{
|
|
1729
|
+
lat: z.ZodNumber;
|
|
1730
|
+
lon: z.ZodNumber;
|
|
1731
|
+
}, z.core.$strip>>;
|
|
1135
1732
|
}, z.core.$strip>;
|
|
1136
1733
|
totals: z.ZodOptional<z.ZodObject<{
|
|
1137
1734
|
offtaker: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1152,6 +1749,16 @@ export declare const dataCenterAPISchemaV1: z.ZodObject<{
|
|
|
1152
1749
|
identifier: z.ZodString;
|
|
1153
1750
|
id: z.ZodString;
|
|
1154
1751
|
}, z.core.$strip>>;
|
|
1752
|
+
meta: z.ZodOptional<z.ZodObject<{
|
|
1753
|
+
PK: z.ZodOptional<z.ZodString>;
|
|
1754
|
+
SK: z.ZodOptional<z.ZodString>;
|
|
1755
|
+
pk: z.ZodOptional<z.ZodString>;
|
|
1756
|
+
sk: z.ZodOptional<z.ZodString>;
|
|
1757
|
+
computedList: z.ZodOptional<z.ZodString>;
|
|
1758
|
+
created: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
1759
|
+
entity: z.ZodOptional<z.ZodString>;
|
|
1760
|
+
modified: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
1761
|
+
}, z.core.$strip>>;
|
|
1155
1762
|
localCounty: z.ZodOptional<z.ZodString>;
|
|
1156
1763
|
localState: z.ZodOptional<z.ZodString>;
|
|
1157
1764
|
projectName: z.ZodString;
|
|
@@ -1199,9 +1806,34 @@ export declare const dataCenterAPISchemaV1: z.ZodObject<{
|
|
|
1199
1806
|
}, z.core.$strip>>>>;
|
|
1200
1807
|
}, z.core.$strip>>;
|
|
1201
1808
|
}, z.core.$strip>>;
|
|
1809
|
+
backupGeneration: z.ZodOptional<z.ZodObject<{
|
|
1810
|
+
powerCapacity: z.ZodOptional<z.ZodObject<{
|
|
1811
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
1812
|
+
unit: z.ZodOptional<z.ZodString>;
|
|
1813
|
+
sectors: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1814
|
+
id: z.ZodString;
|
|
1815
|
+
identifier: z.ZodString;
|
|
1816
|
+
}, z.core.$strip>>>;
|
|
1817
|
+
}, z.core.$strip>>;
|
|
1818
|
+
storage: z.ZodOptional<z.ZodObject<{
|
|
1819
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
1820
|
+
unit: z.ZodOptional<z.ZodString>;
|
|
1821
|
+
sectors: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1822
|
+
id: z.ZodString;
|
|
1823
|
+
identifier: z.ZodString;
|
|
1824
|
+
}, z.core.$strip>>>;
|
|
1825
|
+
}, z.core.$strip>>;
|
|
1826
|
+
}, z.core.$strip>>;
|
|
1827
|
+
modified: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1828
|
+
indexed_at: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
1202
1829
|
'#developers': z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1203
1830
|
'#epcs': z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1204
1831
|
'#utilities': z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1832
|
+
region: z.ZodOptional<z.ZodString>;
|
|
1833
|
+
createdBy: z.ZodArray<z.ZodObject<{
|
|
1834
|
+
identifier: z.ZodString;
|
|
1835
|
+
id: z.ZodString;
|
|
1836
|
+
}, z.core.$strip>>;
|
|
1205
1837
|
externalNotes: z.ZodOptional<z.ZodString>;
|
|
1206
1838
|
flags: z.ZodObject<{
|
|
1207
1839
|
backupGeneration: z.ZodBoolean;
|
|
@@ -1227,8 +1859,10 @@ export declare const dataCenterAPISchemaV1: z.ZodObject<{
|
|
|
1227
1859
|
}, z.core.$strip>>;
|
|
1228
1860
|
id: z.ZodString;
|
|
1229
1861
|
}, z.core.$strip>>>;
|
|
1862
|
+
internalNotes: z.ZodOptional<z.ZodString>;
|
|
1230
1863
|
localCity: z.ZodOptional<z.ZodString>;
|
|
1231
|
-
|
|
1864
|
+
showProject: z.ZodBoolean;
|
|
1865
|
+
substation: z.ZodOptional<z.ZodString>;
|
|
1232
1866
|
powerFields: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1233
1867
|
value: z.ZodNumber;
|
|
1234
1868
|
unit: z.ZodEnum<{
|
|
@@ -1276,59 +1910,156 @@ export declare const dataCenterAPISchemaV1: z.ZodObject<{
|
|
|
1276
1910
|
gbp: "gbp";
|
|
1277
1911
|
}>;
|
|
1278
1912
|
}, z.core.$strip>], "identifier">>>;
|
|
1279
|
-
|
|
1913
|
+
buildingSize: z.ZodOptional<z.ZodObject<{
|
|
1914
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
1915
|
+
unit: z.ZodOptional<z.ZodString>;
|
|
1916
|
+
}, z.core.$strip>>;
|
|
1917
|
+
landSize: z.ZodOptional<z.ZodObject<{
|
|
1918
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
1919
|
+
unit: z.ZodOptional<z.ZodString>;
|
|
1920
|
+
}, z.core.$strip>>;
|
|
1280
1921
|
sizeFields: z.ZodOptional<z.ZodObject<{
|
|
1281
1922
|
building: z.ZodOptional<z.ZodObject<{
|
|
1282
1923
|
square_foot: z.ZodNumber;
|
|
1283
1924
|
square_metre: z.ZodNumber;
|
|
1925
|
+
sort: z.ZodOptional<z.ZodNumber>;
|
|
1284
1926
|
}, z.core.$strip>>;
|
|
1285
1927
|
land: z.ZodOptional<z.ZodObject<{
|
|
1286
1928
|
acre: z.ZodNumber;
|
|
1287
1929
|
hectare: z.ZodNumber;
|
|
1930
|
+
sort: z.ZodOptional<z.ZodNumber>;
|
|
1288
1931
|
}, z.core.$strip>>;
|
|
1289
1932
|
}, z.core.$strip>>;
|
|
1290
|
-
|
|
1933
|
+
sort: z.ZodOptional<z.ZodArray<z.ZodNumber>>;
|
|
1291
1934
|
}, z.core.$strict>;
|
|
1292
|
-
export declare const
|
|
1935
|
+
export declare const dataCenterAPISchemaV1: z.ZodObject<{
|
|
1936
|
+
sectors: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1937
|
+
source: z.ZodOptional<z.ZodString>;
|
|
1938
|
+
identifier: z.ZodString;
|
|
1939
|
+
id: z.ZodString;
|
|
1940
|
+
}, z.core.$strip>>>;
|
|
1941
|
+
keyPeople: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1942
|
+
identifier: z.ZodString;
|
|
1943
|
+
fullName: z.ZodString;
|
|
1944
|
+
id: z.ZodString;
|
|
1945
|
+
linkedinUrl: z.ZodOptional<z.ZodString>;
|
|
1946
|
+
roles: z.ZodArray<z.ZodString>;
|
|
1947
|
+
role: z.ZodOptional<z.ZodString>;
|
|
1948
|
+
email: z.ZodOptional<z.ZodString>;
|
|
1949
|
+
source: z.ZodOptional<z.ZodString>;
|
|
1950
|
+
phone: z.ZodOptional<z.ZodString>;
|
|
1951
|
+
}, z.core.$strip>>>;
|
|
1293
1952
|
id: z.ZodString;
|
|
1294
|
-
|
|
1295
|
-
|
|
1296
|
-
|
|
1297
|
-
|
|
1298
|
-
|
|
1953
|
+
plannedOperationalDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1954
|
+
totalMw: z.ZodOptional<z.ZodNumber>;
|
|
1955
|
+
location: z.ZodArray<z.ZodObject<{
|
|
1956
|
+
identifier: z.ZodString;
|
|
1957
|
+
id: z.ZodString;
|
|
1958
|
+
isApproximate: z.ZodOptional<z.ZodBoolean>;
|
|
1959
|
+
components: z.ZodOptional<z.ZodObject<{
|
|
1960
|
+
'ISO_3166-1_alpha-2': z.ZodOptional<z.ZodString>;
|
|
1961
|
+
'ISO_3166-1_alpha-3': z.ZodOptional<z.ZodString>;
|
|
1962
|
+
'ISO_3166-2': z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1963
|
+
_category: z.ZodOptional<z.ZodString>;
|
|
1964
|
+
_normalized_city: z.ZodOptional<z.ZodString>;
|
|
1965
|
+
_type: z.ZodString;
|
|
1966
|
+
city: z.ZodOptional<z.ZodString>;
|
|
1967
|
+
continent: z.ZodOptional<z.ZodString>;
|
|
1968
|
+
country: z.ZodOptional<z.ZodString>;
|
|
1969
|
+
country_code: z.ZodOptional<z.ZodString>;
|
|
1970
|
+
state_code: z.ZodOptional<z.ZodString>;
|
|
1971
|
+
county: z.ZodOptional<z.ZodString>;
|
|
1972
|
+
municipality: z.ZodOptional<z.ZodString>;
|
|
1973
|
+
political_union: z.ZodOptional<z.ZodString>;
|
|
1974
|
+
state: z.ZodOptional<z.ZodString>;
|
|
1975
|
+
state_district: z.ZodOptional<z.ZodString>;
|
|
1976
|
+
}, z.core.$strip>>;
|
|
1977
|
+
geometry: z.ZodOptional<z.ZodObject<{
|
|
1978
|
+
lat: z.ZodNumber;
|
|
1979
|
+
lng: z.ZodNumber;
|
|
1980
|
+
}, z.core.$strip>>;
|
|
1981
|
+
override: z.ZodOptional<z.ZodBoolean>;
|
|
1982
|
+
}, z.core.$strip>>;
|
|
1983
|
+
country: z.ZodOptional<z.ZodString>;
|
|
1984
|
+
created: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1985
|
+
documents: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1986
|
+
filename: z.ZodString;
|
|
1987
|
+
size: z.ZodOptional<z.ZodString>;
|
|
1988
|
+
created: z.ZodString;
|
|
1989
|
+
filing_id: z.ZodString;
|
|
1990
|
+
mimetype: z.ZodOptional<z.ZodString>;
|
|
1991
|
+
type: z.ZodArray<z.ZodString>;
|
|
1992
|
+
document_id: z.ZodString;
|
|
1993
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
1994
|
+
key: z.ZodOptional<z.ZodString>;
|
|
1995
|
+
url: z.ZodOptional<z.ZodString>;
|
|
1996
|
+
username: z.ZodString;
|
|
1997
|
+
isSignal: z.ZodOptional<z.ZodBoolean>;
|
|
1998
|
+
}, z.core.$strip>>>;
|
|
1999
|
+
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2000
|
+
identifier: z.ZodString;
|
|
2001
|
+
id: z.ZodString;
|
|
2002
|
+
role: z.ZodString;
|
|
2003
|
+
ref: z.ZodOptional<z.ZodString>;
|
|
2004
|
+
}, z.core.$strip>>>;
|
|
2005
|
+
queueApplications: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2006
|
+
queueKey: z.ZodOptional<z.ZodString>;
|
|
2007
|
+
applicationId: z.ZodOptional<z.ZodString>;
|
|
2008
|
+
queueDataset: z.ZodOptional<z.ZodString>;
|
|
2009
|
+
id: z.ZodString;
|
|
2010
|
+
identifier: z.ZodString;
|
|
2011
|
+
}, z.core.$strip>>>;
|
|
2012
|
+
signals: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2013
|
+
documents: z.ZodArray<z.ZodObject<{
|
|
2014
|
+
filename: z.ZodString;
|
|
2015
|
+
size: z.ZodOptional<z.ZodString>;
|
|
2016
|
+
created: z.ZodOptional<z.ZodString>;
|
|
2017
|
+
filing_id: z.ZodOptional<z.ZodString>;
|
|
2018
|
+
mimetype: z.ZodOptional<z.ZodString>;
|
|
2019
|
+
type: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2020
|
+
document_id: z.ZodString;
|
|
2021
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
2022
|
+
key: z.ZodOptional<z.ZodString>;
|
|
2023
|
+
username: z.ZodOptional<z.ZodString>;
|
|
2024
|
+
url: z.ZodOptional<z.ZodString>;
|
|
2025
|
+
}, z.core.$strip>>;
|
|
2026
|
+
subType: z.ZodArray<z.ZodObject<{
|
|
2027
|
+
identifier: z.ZodString;
|
|
2028
|
+
id: z.ZodString;
|
|
2029
|
+
parentId: z.ZodOptional<z.ZodString>;
|
|
2030
|
+
}, z.core.$strip>>;
|
|
2031
|
+
id: z.ZodString;
|
|
2032
|
+
type: z.ZodObject<{
|
|
2033
|
+
identifier: z.ZodString;
|
|
2034
|
+
id: z.ZodString;
|
|
2035
|
+
}, z.core.$strip>;
|
|
2036
|
+
headline: z.ZodString;
|
|
2037
|
+
keyPeople: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2038
|
+
identifier: z.ZodString;
|
|
2039
|
+
fullName: z.ZodString;
|
|
2040
|
+
id: z.ZodString;
|
|
2041
|
+
linkedinUrl: z.ZodOptional<z.ZodString>;
|
|
2042
|
+
role: z.ZodOptional<z.ZodString>;
|
|
2043
|
+
email: z.ZodOptional<z.ZodString>;
|
|
2044
|
+
}, z.core.$strip>>>;
|
|
2045
|
+
}, z.core.$strip>>>;
|
|
2046
|
+
powerCapacity: z.ZodOptional<z.ZodObject<{
|
|
2047
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
2048
|
+
unit: z.ZodOptional<z.ZodString>;
|
|
2049
|
+
sectors: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2050
|
+
id: z.ZodString;
|
|
2051
|
+
identifier: z.ZodString;
|
|
2052
|
+
}, z.core.$strip>>>;
|
|
2053
|
+
}, z.core.$strip>>;
|
|
1299
2054
|
audiences: z.ZodArray<z.ZodObject<{
|
|
1300
2055
|
identifier: z.ZodString;
|
|
1301
2056
|
id: z.ZodString;
|
|
1302
2057
|
}, z.core.$strip>>;
|
|
1303
|
-
|
|
1304
|
-
value: z.ZodOptional<z.ZodNumber>;
|
|
1305
|
-
unit: z.ZodEnum<{
|
|
1306
|
-
kW: "kW";
|
|
1307
|
-
MW: "MW";
|
|
1308
|
-
GW: "GW";
|
|
1309
|
-
kWh: "kWh";
|
|
1310
|
-
MWh: "MWh";
|
|
1311
|
-
GWh: "GWh";
|
|
1312
|
-
acre: "acre";
|
|
1313
|
-
hectare: "hectare";
|
|
1314
|
-
square_foot: "square_foot";
|
|
1315
|
-
square_metre: "square_metre";
|
|
1316
|
-
usd: "usd";
|
|
1317
|
-
eur: "eur";
|
|
1318
|
-
gbp: "gbp";
|
|
1319
|
-
}>;
|
|
1320
|
-
}, z.core.$strip>>;
|
|
1321
|
-
country: z.ZodOptional<z.ZodString>;
|
|
1322
|
-
created: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1323
|
-
createdBy: z.ZodArray<z.ZodObject<{
|
|
2058
|
+
regions: z.ZodArray<z.ZodObject<{
|
|
1324
2059
|
identifier: z.ZodString;
|
|
1325
2060
|
id: z.ZodString;
|
|
1326
2061
|
}, z.core.$strip>>;
|
|
1327
|
-
|
|
1328
|
-
flags: z.ZodObject<{
|
|
1329
|
-
backupGeneration: z.ZodBoolean;
|
|
1330
|
-
onsiteGeneration: z.ZodBoolean;
|
|
1331
|
-
}, z.core.$strip>;
|
|
2062
|
+
allSectors: z.ZodOptional<z.ZodString>;
|
|
1332
2063
|
geo: z.ZodObject<{
|
|
1333
2064
|
default: z.ZodOptional<z.ZodObject<{
|
|
1334
2065
|
lat: z.ZodNumber;
|
|
@@ -1347,60 +2078,65 @@ export declare const dataCenterByLocationListSchemaV1: z.ZodObject<{
|
|
|
1347
2078
|
lat: z.ZodNumber;
|
|
1348
2079
|
lon: z.ZodNumber;
|
|
1349
2080
|
}, z.core.$strip>>;
|
|
1350
|
-
|
|
1351
|
-
|
|
1352
|
-
|
|
1353
|
-
intelSections: z.ZodArray<z.ZodObject<{
|
|
1354
|
-
identifier: z.ZodString;
|
|
1355
|
-
id: z.ZodString;
|
|
1356
|
-
key: z.ZodString;
|
|
1357
|
-
}, z.core.$strip>>;
|
|
1358
|
-
regions: z.ZodArray<z.ZodObject<{
|
|
1359
|
-
identifier: z.ZodString;
|
|
1360
|
-
id: z.ZodString;
|
|
1361
|
-
key: z.ZodString;
|
|
2081
|
+
approximate: z.ZodOptional<z.ZodObject<{
|
|
2082
|
+
lat: z.ZodNumber;
|
|
2083
|
+
lon: z.ZodNumber;
|
|
1362
2084
|
}, z.core.$strip>>;
|
|
1363
|
-
|
|
1364
|
-
|
|
1365
|
-
|
|
1366
|
-
id: z.ZodString;
|
|
1367
|
-
key: z.ZodString;
|
|
2085
|
+
project: z.ZodOptional<z.ZodObject<{
|
|
2086
|
+
lat: z.ZodNumber;
|
|
2087
|
+
lon: z.ZodNumber;
|
|
1368
2088
|
}, z.core.$strip>>;
|
|
2089
|
+
}, z.core.$strip>;
|
|
2090
|
+
totals: z.ZodOptional<z.ZodObject<{
|
|
2091
|
+
offtaker: z.ZodOptional<z.ZodNumber>;
|
|
2092
|
+
projects: z.ZodOptional<z.ZodNumber>;
|
|
2093
|
+
keyPeople: z.ZodOptional<z.ZodNumber>;
|
|
2094
|
+
documents: z.ZodOptional<z.ZodNumber>;
|
|
2095
|
+
organizations: z.ZodOptional<z.ZodNumber>;
|
|
2096
|
+
queueApplications: z.ZodOptional<z.ZodNumber>;
|
|
2097
|
+
utility: z.ZodOptional<z.ZodNumber>;
|
|
2098
|
+
puc: z.ZodOptional<z.ZodNumber>;
|
|
2099
|
+
epc: z.ZodOptional<z.ZodNumber>;
|
|
2100
|
+
developer: z.ZodOptional<z.ZodNumber>;
|
|
2101
|
+
intels: z.ZodOptional<z.ZodNumber>;
|
|
2102
|
+
signals: z.ZodOptional<z.ZodNumber>;
|
|
2103
|
+
}, z.core.$strip>>;
|
|
2104
|
+
$organizations: z.ZodOptional<z.ZodString>;
|
|
2105
|
+
status: z.ZodArray<z.ZodObject<{
|
|
2106
|
+
identifier: z.ZodString;
|
|
1369
2107
|
id: z.ZodString;
|
|
1370
|
-
}, z.core.$strip
|
|
1371
|
-
|
|
1372
|
-
|
|
2108
|
+
}, z.core.$strip>>;
|
|
2109
|
+
meta: z.ZodOptional<z.ZodObject<{
|
|
2110
|
+
PK: z.ZodOptional<z.ZodString>;
|
|
2111
|
+
SK: z.ZodOptional<z.ZodString>;
|
|
2112
|
+
pk: z.ZodOptional<z.ZodString>;
|
|
2113
|
+
sk: z.ZodOptional<z.ZodString>;
|
|
2114
|
+
computedList: z.ZodOptional<z.ZodString>;
|
|
2115
|
+
created: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
2116
|
+
entity: z.ZodOptional<z.ZodString>;
|
|
2117
|
+
modified: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
2118
|
+
}, z.core.$strip>>;
|
|
1373
2119
|
localCounty: z.ZodOptional<z.ZodString>;
|
|
1374
2120
|
localState: z.ZodOptional<z.ZodString>;
|
|
1375
|
-
|
|
1376
|
-
|
|
1377
|
-
|
|
1378
|
-
|
|
1379
|
-
|
|
1380
|
-
|
|
1381
|
-
|
|
1382
|
-
|
|
1383
|
-
|
|
1384
|
-
|
|
1385
|
-
|
|
1386
|
-
|
|
1387
|
-
|
|
1388
|
-
|
|
1389
|
-
|
|
1390
|
-
|
|
1391
|
-
|
|
1392
|
-
|
|
1393
|
-
political_union: z.ZodOptional<z.ZodString>;
|
|
1394
|
-
state: z.ZodOptional<z.ZodString>;
|
|
1395
|
-
state_district: z.ZodOptional<z.ZodString>;
|
|
1396
|
-
}, z.core.$strip>>;
|
|
1397
|
-
geometry: z.ZodOptional<z.ZodObject<{
|
|
1398
|
-
lat: z.ZodNumber;
|
|
1399
|
-
lng: z.ZodNumber;
|
|
1400
|
-
}, z.core.$strip>>;
|
|
1401
|
-
override: z.ZodOptional<z.ZodBoolean>;
|
|
2121
|
+
projectName: z.ZodString;
|
|
2122
|
+
cost: z.ZodOptional<z.ZodObject<{
|
|
2123
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
2124
|
+
unit: z.ZodEnum<{
|
|
2125
|
+
kW: "kW";
|
|
2126
|
+
MW: "MW";
|
|
2127
|
+
GW: "GW";
|
|
2128
|
+
kWh: "kWh";
|
|
2129
|
+
MWh: "MWh";
|
|
2130
|
+
GWh: "GWh";
|
|
2131
|
+
acre: "acre";
|
|
2132
|
+
hectare: "hectare";
|
|
2133
|
+
square_foot: "square_foot";
|
|
2134
|
+
square_metre: "square_metre";
|
|
2135
|
+
usd: "usd";
|
|
2136
|
+
eur: "eur";
|
|
2137
|
+
gbp: "gbp";
|
|
2138
|
+
}>;
|
|
1402
2139
|
}, z.core.$strip>>;
|
|
1403
|
-
modified: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1404
2140
|
onsiteGeneration: z.ZodOptional<z.ZodObject<{
|
|
1405
2141
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
1406
2142
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -1427,13 +2163,63 @@ export declare const dataCenterByLocationListSchemaV1: z.ZodObject<{
|
|
|
1427
2163
|
}, z.core.$strip>>>>;
|
|
1428
2164
|
}, z.core.$strip>>;
|
|
1429
2165
|
}, z.core.$strip>>;
|
|
1430
|
-
|
|
2166
|
+
backupGeneration: z.ZodOptional<z.ZodObject<{
|
|
2167
|
+
powerCapacity: z.ZodOptional<z.ZodObject<{
|
|
2168
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
2169
|
+
unit: z.ZodOptional<z.ZodString>;
|
|
2170
|
+
sectors: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2171
|
+
id: z.ZodString;
|
|
2172
|
+
identifier: z.ZodString;
|
|
2173
|
+
}, z.core.$strip>>>;
|
|
2174
|
+
}, z.core.$strip>>;
|
|
2175
|
+
storage: z.ZodOptional<z.ZodObject<{
|
|
2176
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
2177
|
+
unit: z.ZodOptional<z.ZodString>;
|
|
2178
|
+
sectors: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2179
|
+
id: z.ZodString;
|
|
2180
|
+
identifier: z.ZodString;
|
|
2181
|
+
}, z.core.$strip>>>;
|
|
2182
|
+
}, z.core.$strip>>;
|
|
2183
|
+
}, z.core.$strip>>;
|
|
2184
|
+
modified: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2185
|
+
indexed_at: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>;
|
|
2186
|
+
'#developers': z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2187
|
+
'#epcs': z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2188
|
+
'#utilities': z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2189
|
+
region: z.ZodOptional<z.ZodString>;
|
|
2190
|
+
createdBy: z.ZodArray<z.ZodObject<{
|
|
1431
2191
|
identifier: z.ZodString;
|
|
1432
2192
|
id: z.ZodString;
|
|
1433
|
-
|
|
1434
|
-
|
|
2193
|
+
}, z.core.$strip>>;
|
|
2194
|
+
externalNotes: z.ZodOptional<z.ZodString>;
|
|
2195
|
+
flags: z.ZodObject<{
|
|
2196
|
+
backupGeneration: z.ZodBoolean;
|
|
2197
|
+
onsiteGeneration: z.ZodBoolean;
|
|
2198
|
+
}, z.core.$strip>;
|
|
2199
|
+
intel: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2200
|
+
identifier: z.ZodString;
|
|
2201
|
+
intelSections: z.ZodArray<z.ZodObject<{
|
|
2202
|
+
identifier: z.ZodString;
|
|
2203
|
+
id: z.ZodString;
|
|
2204
|
+
key: z.ZodString;
|
|
2205
|
+
}, z.core.$strip>>;
|
|
2206
|
+
regions: z.ZodArray<z.ZodObject<{
|
|
2207
|
+
identifier: z.ZodString;
|
|
2208
|
+
id: z.ZodString;
|
|
2209
|
+
key: z.ZodString;
|
|
2210
|
+
}, z.core.$strip>>;
|
|
2211
|
+
publishedTime: z.ZodString;
|
|
2212
|
+
audiences: z.ZodArray<z.ZodObject<{
|
|
2213
|
+
identifier: z.ZodString;
|
|
2214
|
+
id: z.ZodString;
|
|
2215
|
+
key: z.ZodString;
|
|
2216
|
+
}, z.core.$strip>>;
|
|
2217
|
+
id: z.ZodString;
|
|
1435
2218
|
}, z.core.$strip>>>;
|
|
1436
|
-
|
|
2219
|
+
internalNotes: z.ZodOptional<z.ZodString>;
|
|
2220
|
+
localCity: z.ZodOptional<z.ZodString>;
|
|
2221
|
+
showProject: z.ZodBoolean;
|
|
2222
|
+
substation: z.ZodOptional<z.ZodString>;
|
|
1437
2223
|
powerFields: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1438
2224
|
value: z.ZodNumber;
|
|
1439
2225
|
unit: z.ZodEnum<{
|
|
@@ -1481,104 +2267,27 @@ export declare const dataCenterByLocationListSchemaV1: z.ZodObject<{
|
|
|
1481
2267
|
gbp: "gbp";
|
|
1482
2268
|
}>;
|
|
1483
2269
|
}, z.core.$strip>], "identifier">>>;
|
|
1484
|
-
|
|
1485
|
-
|
|
1486
|
-
|
|
1487
|
-
|
|
1488
|
-
|
|
1489
|
-
|
|
1490
|
-
|
|
1491
|
-
}, z.core.$strip>>>;
|
|
1492
|
-
regions: z.ZodArray<z.ZodObject<{
|
|
1493
|
-
identifier: z.ZodString;
|
|
1494
|
-
id: z.ZodString;
|
|
2270
|
+
buildingSize: z.ZodOptional<z.ZodObject<{
|
|
2271
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
2272
|
+
unit: z.ZodOptional<z.ZodString>;
|
|
2273
|
+
}, z.core.$strip>>;
|
|
2274
|
+
landSize: z.ZodOptional<z.ZodObject<{
|
|
2275
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
2276
|
+
unit: z.ZodOptional<z.ZodString>;
|
|
1495
2277
|
}, z.core.$strip>>;
|
|
1496
|
-
sectors: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1497
|
-
source: z.ZodOptional<z.ZodString>;
|
|
1498
|
-
identifier: z.ZodString;
|
|
1499
|
-
id: z.ZodString;
|
|
1500
|
-
}, z.core.$strip>>>;
|
|
1501
|
-
showProject: z.ZodBoolean;
|
|
1502
2278
|
sizeFields: z.ZodOptional<z.ZodObject<{
|
|
1503
2279
|
building: z.ZodOptional<z.ZodObject<{
|
|
1504
2280
|
square_foot: z.ZodNumber;
|
|
1505
2281
|
square_metre: z.ZodNumber;
|
|
2282
|
+
sort: z.ZodOptional<z.ZodNumber>;
|
|
1506
2283
|
}, z.core.$strip>>;
|
|
1507
2284
|
land: z.ZodOptional<z.ZodObject<{
|
|
1508
2285
|
acre: z.ZodNumber;
|
|
1509
2286
|
hectare: z.ZodNumber;
|
|
2287
|
+
sort: z.ZodOptional<z.ZodNumber>;
|
|
1510
2288
|
}, z.core.$strip>>;
|
|
1511
2289
|
}, z.core.$strip>>;
|
|
1512
|
-
|
|
1513
|
-
identifier: z.ZodString;
|
|
1514
|
-
id: z.ZodString;
|
|
1515
|
-
}, z.core.$strip>>;
|
|
1516
|
-
substation: z.ZodOptional<z.ZodString>;
|
|
1517
|
-
totalMw: z.ZodOptional<z.ZodNumber>;
|
|
1518
|
-
totals: z.ZodOptional<z.ZodObject<{
|
|
1519
|
-
offtaker: z.ZodOptional<z.ZodNumber>;
|
|
1520
|
-
projects: z.ZodOptional<z.ZodNumber>;
|
|
1521
|
-
keyPeople: z.ZodOptional<z.ZodNumber>;
|
|
1522
|
-
documents: z.ZodOptional<z.ZodNumber>;
|
|
1523
|
-
organizations: z.ZodOptional<z.ZodNumber>;
|
|
1524
|
-
queueApplications: z.ZodOptional<z.ZodNumber>;
|
|
1525
|
-
utility: z.ZodOptional<z.ZodNumber>;
|
|
1526
|
-
puc: z.ZodOptional<z.ZodNumber>;
|
|
1527
|
-
epc: z.ZodOptional<z.ZodNumber>;
|
|
1528
|
-
developer: z.ZodOptional<z.ZodNumber>;
|
|
1529
|
-
intels: z.ZodOptional<z.ZodNumber>;
|
|
1530
|
-
signals: z.ZodOptional<z.ZodNumber>;
|
|
1531
|
-
}, z.core.$strip>>;
|
|
1532
|
-
signals: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1533
|
-
documents: z.ZodArray<z.ZodObject<{
|
|
1534
|
-
filename: z.ZodString;
|
|
1535
|
-
size: z.ZodOptional<z.ZodString>;
|
|
1536
|
-
created: z.ZodOptional<z.ZodString>;
|
|
1537
|
-
filing_id: z.ZodOptional<z.ZodString>;
|
|
1538
|
-
mimetype: z.ZodOptional<z.ZodString>;
|
|
1539
|
-
type: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1540
|
-
document_id: z.ZodString;
|
|
1541
|
-
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
1542
|
-
key: z.ZodOptional<z.ZodString>;
|
|
1543
|
-
username: z.ZodOptional<z.ZodString>;
|
|
1544
|
-
url: z.ZodOptional<z.ZodString>;
|
|
1545
|
-
}, z.core.$strip>>;
|
|
1546
|
-
subType: z.ZodArray<z.ZodObject<{
|
|
1547
|
-
identifier: z.ZodString;
|
|
1548
|
-
id: z.ZodString;
|
|
1549
|
-
parentId: z.ZodOptional<z.ZodString>;
|
|
1550
|
-
}, z.core.$strip>>;
|
|
1551
|
-
id: z.ZodString;
|
|
1552
|
-
type: z.ZodObject<{
|
|
1553
|
-
identifier: z.ZodString;
|
|
1554
|
-
id: z.ZodString;
|
|
1555
|
-
}, z.core.$strip>;
|
|
1556
|
-
headline: z.ZodString;
|
|
1557
|
-
}, z.core.$strip>>>;
|
|
1558
|
-
documents: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1559
|
-
filename: z.ZodString;
|
|
1560
|
-
size: z.ZodOptional<z.ZodString>;
|
|
1561
|
-
created: z.ZodString;
|
|
1562
|
-
filing_id: z.ZodString;
|
|
1563
|
-
mimetype: z.ZodOptional<z.ZodString>;
|
|
1564
|
-
type: z.ZodArray<z.ZodString>;
|
|
1565
|
-
document_id: z.ZodString;
|
|
1566
|
-
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
1567
|
-
key: z.ZodOptional<z.ZodString>;
|
|
1568
|
-
url: z.ZodOptional<z.ZodString>;
|
|
1569
|
-
username: z.ZodString;
|
|
1570
|
-
isSignal: z.ZodOptional<z.ZodBoolean>;
|
|
1571
|
-
}, z.core.$strip>>>;
|
|
1572
|
-
keyPeople: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1573
|
-
identifier: z.ZodString;
|
|
1574
|
-
fullName: z.ZodString;
|
|
1575
|
-
id: z.ZodString;
|
|
1576
|
-
linkedinUrl: z.ZodOptional<z.ZodString>;
|
|
1577
|
-
roles: z.ZodArray<z.ZodString>;
|
|
1578
|
-
email: z.ZodString;
|
|
1579
|
-
source: z.ZodString;
|
|
1580
|
-
phone: z.ZodString;
|
|
1581
|
-
}, z.core.$strip>>>;
|
|
2290
|
+
sort: z.ZodOptional<z.ZodTuple<[z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>, z.ZodNumber], null>>;
|
|
1582
2291
|
}, z.core.$strict>;
|
|
1583
2292
|
export type DataCenterListTypeV1 = z.infer<typeof dataCenterListSchemaV1>;
|
|
1584
2293
|
export type DataCenterDetailsTypeV1 = z.infer<typeof dataCenterDetailsSchemaV1>;
|