@new-project-media/client-frontends-shared-types 3.3.28 → 3.4.1

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.
@@ -0,0 +1,1588 @@
1
+ import { z } from 'zod';
2
+ export declare const PowerUnitEnum: z.ZodEnum<{
3
+ kW: "kW";
4
+ MW: "MW";
5
+ kWh: "kWh";
6
+ MWh: "MWh";
7
+ }>;
8
+ export declare const SizeUnitEnum: z.ZodEnum<{
9
+ acre: "acre";
10
+ hectare: "hectare";
11
+ square_foot: "square_foot";
12
+ square_metre: "square_metre";
13
+ }>;
14
+ declare const PowerWithStorageSchema: z.ZodObject<{
15
+ value: z.ZodNumber;
16
+ unit: z.ZodEnum<{
17
+ kW: "kW";
18
+ MW: "MW";
19
+ kWh: "kWh";
20
+ MWh: "MWh";
21
+ }>;
22
+ identifier: z.ZodEnum<{
23
+ onsiteGeneration: "onsiteGeneration";
24
+ backupGeneration: "backupGeneration";
25
+ }>;
26
+ storage: z.ZodOptional<z.ZodObject<{
27
+ value: z.ZodNumber;
28
+ unit: z.ZodEnum<{
29
+ kW: "kW";
30
+ MW: "MW";
31
+ kWh: "kWh";
32
+ MWh: "MWh";
33
+ }>;
34
+ }, z.core.$strip>>;
35
+ sectors: z.ZodOptional<z.ZodArray<z.ZodObject<{
36
+ identifier: z.ZodString;
37
+ id: z.ZodString;
38
+ }, z.core.$strip>>>;
39
+ description: z.ZodOptional<z.ZodString>;
40
+ }, z.core.$strip>;
41
+ export type PowerWithStorage = z.infer<typeof PowerWithStorageSchema>;
42
+ declare const BuildingSizeSchema: z.ZodObject<{
43
+ square_foot: z.ZodNumber;
44
+ square_metre: z.ZodNumber;
45
+ }, z.core.$strip>;
46
+ export type BuildingSize = z.infer<typeof BuildingSizeSchema>;
47
+ declare const LandSizeSchema: z.ZodObject<{
48
+ acre: z.ZodNumber;
49
+ hectare: z.ZodNumber;
50
+ }, z.core.$strip>;
51
+ export type LandSize = z.infer<typeof LandSizeSchema>;
52
+ export declare const SizeFieldsEnum: {
53
+ building: "building";
54
+ land: "land";
55
+ };
56
+ export type SizeField = keyof typeof SizeFieldsEnum;
57
+ export declare const signalDocumentSchema: z.ZodObject<{
58
+ filename: z.ZodString;
59
+ size: z.ZodOptional<z.ZodString>;
60
+ created: z.ZodOptional<z.ZodString>;
61
+ filing_id: z.ZodOptional<z.ZodString>;
62
+ mimetype: z.ZodOptional<z.ZodString>;
63
+ type: z.ZodOptional<z.ZodArray<z.ZodString>>;
64
+ document_id: z.ZodString;
65
+ scanResultStatus: z.ZodOptional<z.ZodString>;
66
+ key: z.ZodOptional<z.ZodString>;
67
+ username: z.ZodOptional<z.ZodString>;
68
+ url: z.ZodOptional<z.ZodString>;
69
+ }, z.core.$strip>;
70
+ export declare const signalSubTypeSchema: z.ZodObject<{
71
+ identifier: z.ZodString;
72
+ id: z.ZodString;
73
+ parentId: z.ZodOptional<z.ZodString>;
74
+ }, z.core.$strip>;
75
+ export declare const signalTypeSchema: z.ZodObject<{
76
+ identifier: z.ZodString;
77
+ id: z.ZodString;
78
+ }, z.core.$strip>;
79
+ export declare const signalsSchema: z.ZodObject<{
80
+ documents: z.ZodArray<z.ZodObject<{
81
+ filename: z.ZodString;
82
+ size: z.ZodOptional<z.ZodString>;
83
+ created: z.ZodOptional<z.ZodString>;
84
+ filing_id: z.ZodOptional<z.ZodString>;
85
+ mimetype: z.ZodOptional<z.ZodString>;
86
+ type: z.ZodOptional<z.ZodArray<z.ZodString>>;
87
+ document_id: z.ZodString;
88
+ scanResultStatus: z.ZodOptional<z.ZodString>;
89
+ key: z.ZodOptional<z.ZodString>;
90
+ username: z.ZodOptional<z.ZodString>;
91
+ url: z.ZodOptional<z.ZodString>;
92
+ }, z.core.$strip>>;
93
+ subType: z.ZodArray<z.ZodObject<{
94
+ identifier: z.ZodString;
95
+ id: z.ZodString;
96
+ parentId: z.ZodOptional<z.ZodString>;
97
+ }, z.core.$strip>>;
98
+ id: z.ZodString;
99
+ type: z.ZodObject<{
100
+ identifier: z.ZodString;
101
+ id: z.ZodString;
102
+ }, z.core.$strip>;
103
+ headline: z.ZodString;
104
+ }, z.core.$strip>;
105
+ export declare const documentSchema: z.ZodObject<{
106
+ filename: z.ZodString;
107
+ size: z.ZodOptional<z.ZodString>;
108
+ created: z.ZodString;
109
+ filing_id: z.ZodString;
110
+ mimetype: z.ZodOptional<z.ZodString>;
111
+ type: z.ZodArray<z.ZodString>;
112
+ document_id: z.ZodString;
113
+ scanResultStatus: z.ZodOptional<z.ZodString>;
114
+ key: z.ZodOptional<z.ZodString>;
115
+ url: z.ZodOptional<z.ZodString>;
116
+ username: z.ZodString;
117
+ isSignal: z.ZodOptional<z.ZodBoolean>;
118
+ }, z.core.$strip>;
119
+ export declare const keyPeopleSchema: z.ZodObject<{
120
+ identifier: z.ZodString;
121
+ fullName: z.ZodString;
122
+ id: z.ZodString;
123
+ linkedinUrl: z.ZodOptional<z.ZodString>;
124
+ roles: z.ZodArray<z.ZodString>;
125
+ email: z.ZodString;
126
+ source: z.ZodString;
127
+ phone: z.ZodString;
128
+ }, z.core.$strip>;
129
+ export declare const baseDataCenterSchemaV1: z.ZodObject<{
130
+ id: z.ZodString;
131
+ }, z.core.$strip>;
132
+ export declare const dataCenterListSchemaV1: z.ZodObject<{
133
+ id: z.ZodString;
134
+ $organizations: z.ZodOptional<z.ZodString>;
135
+ '#developers': z.ZodOptional<z.ZodArray<z.ZodString>>;
136
+ '#epcs': z.ZodOptional<z.ZodArray<z.ZodString>>;
137
+ '#utilities': z.ZodOptional<z.ZodArray<z.ZodString>>;
138
+ allSectors: z.ZodOptional<z.ZodString>;
139
+ audiences: z.ZodArray<z.ZodObject<{
140
+ identifier: z.ZodString;
141
+ id: z.ZodString;
142
+ }, z.core.$strip>>;
143
+ cost: z.ZodOptional<z.ZodObject<{
144
+ value: z.ZodOptional<z.ZodNumber>;
145
+ unit: z.ZodEnum<{
146
+ kW: "kW";
147
+ MW: "MW";
148
+ GW: "GW";
149
+ kWh: "kWh";
150
+ MWh: "MWh";
151
+ GWh: "GWh";
152
+ acre: "acre";
153
+ hectare: "hectare";
154
+ square_foot: "square_foot";
155
+ square_metre: "square_metre";
156
+ usd: "usd";
157
+ eur: "eur";
158
+ gbp: "gbp";
159
+ }>;
160
+ }, z.core.$strip>>;
161
+ country: z.ZodOptional<z.ZodString>;
162
+ created: z.ZodNullable<z.ZodOptional<z.ZodString>>;
163
+ createdBy: z.ZodArray<z.ZodObject<{
164
+ identifier: z.ZodString;
165
+ id: z.ZodString;
166
+ }, z.core.$strip>>;
167
+ externalNotes: z.ZodOptional<z.ZodString>;
168
+ flags: z.ZodObject<{
169
+ backupGeneration: z.ZodBoolean;
170
+ onsiteGeneration: z.ZodBoolean;
171
+ }, z.core.$strip>;
172
+ geo: z.ZodObject<{
173
+ default: z.ZodOptional<z.ZodObject<{
174
+ lat: z.ZodNumber;
175
+ lon: z.ZodNumber;
176
+ }, z.core.$strip>>;
177
+ defaultValue: z.ZodOptional<z.ZodString>;
178
+ location: z.ZodOptional<z.ZodObject<{
179
+ lat: z.ZodNumber;
180
+ lon: z.ZodNumber;
181
+ }, z.core.$strip>>;
182
+ facility: z.ZodOptional<z.ZodObject<{
183
+ lat: z.ZodNumber;
184
+ lon: z.ZodNumber;
185
+ }, z.core.$strip>>;
186
+ county: z.ZodOptional<z.ZodObject<{
187
+ lat: z.ZodNumber;
188
+ lon: z.ZodNumber;
189
+ }, z.core.$strip>>;
190
+ }, z.core.$strip>;
191
+ intel: z.ZodOptional<z.ZodArray<z.ZodObject<{
192
+ identifier: z.ZodString;
193
+ intelSections: z.ZodArray<z.ZodObject<{
194
+ identifier: z.ZodString;
195
+ id: z.ZodString;
196
+ key: z.ZodString;
197
+ }, z.core.$strip>>;
198
+ regions: z.ZodArray<z.ZodObject<{
199
+ identifier: z.ZodString;
200
+ id: z.ZodString;
201
+ key: z.ZodString;
202
+ }, z.core.$strip>>;
203
+ publishedTime: z.ZodString;
204
+ audiences: z.ZodArray<z.ZodObject<{
205
+ identifier: z.ZodString;
206
+ id: z.ZodString;
207
+ key: z.ZodString;
208
+ }, z.core.$strip>>;
209
+ id: z.ZodString;
210
+ }, z.core.$strip>>>;
211
+ internalNotes: z.ZodOptional<z.ZodString>;
212
+ localCity: z.ZodOptional<z.ZodString>;
213
+ localCounty: z.ZodOptional<z.ZodString>;
214
+ localState: z.ZodOptional<z.ZodString>;
215
+ location: z.ZodArray<z.ZodObject<{
216
+ identifier: z.ZodString;
217
+ id: z.ZodString;
218
+ isApproximate: z.ZodOptional<z.ZodBoolean>;
219
+ components: z.ZodOptional<z.ZodObject<{
220
+ 'ISO_3166-1_alpha-2': z.ZodOptional<z.ZodString>;
221
+ 'ISO_3166-1_alpha-3': z.ZodOptional<z.ZodString>;
222
+ 'ISO_3166-2': z.ZodOptional<z.ZodArray<z.ZodString>>;
223
+ _category: z.ZodOptional<z.ZodString>;
224
+ _normalized_city: z.ZodOptional<z.ZodString>;
225
+ _type: z.ZodString;
226
+ city: z.ZodOptional<z.ZodString>;
227
+ continent: z.ZodOptional<z.ZodString>;
228
+ country: z.ZodOptional<z.ZodString>;
229
+ country_code: z.ZodOptional<z.ZodString>;
230
+ state_code: z.ZodOptional<z.ZodString>;
231
+ county: z.ZodOptional<z.ZodString>;
232
+ municipality: z.ZodOptional<z.ZodString>;
233
+ political_union: z.ZodOptional<z.ZodString>;
234
+ state: z.ZodOptional<z.ZodString>;
235
+ state_district: z.ZodOptional<z.ZodString>;
236
+ }, z.core.$strip>>;
237
+ geometry: z.ZodOptional<z.ZodObject<{
238
+ lat: z.ZodNumber;
239
+ lng: z.ZodNumber;
240
+ }, z.core.$strip>>;
241
+ override: z.ZodOptional<z.ZodBoolean>;
242
+ }, z.core.$strip>>;
243
+ modified: z.ZodNullable<z.ZodOptional<z.ZodString>>;
244
+ onsiteGeneration: z.ZodOptional<z.ZodObject<{
245
+ enabled: z.ZodOptional<z.ZodBoolean>;
246
+ description: z.ZodOptional<z.ZodString>;
247
+ powerCapacity: z.ZodOptional<z.ZodObject<{
248
+ value: z.ZodOptional<z.ZodNumber>;
249
+ unit: z.ZodEnum<{
250
+ kW: "kW";
251
+ MW: "MW";
252
+ GW: "GW";
253
+ kWh: "kWh";
254
+ MWh: "MWh";
255
+ GWh: "GWh";
256
+ acre: "acre";
257
+ hectare: "hectare";
258
+ square_foot: "square_foot";
259
+ square_metre: "square_metre";
260
+ usd: "usd";
261
+ eur: "eur";
262
+ gbp: "gbp";
263
+ }>;
264
+ sectors: z.ZodOptional<z.ZodArray<z.ZodOptional<z.ZodObject<{
265
+ identifier: z.ZodString;
266
+ id: z.ZodString;
267
+ }, z.core.$strip>>>>;
268
+ }, z.core.$strip>>;
269
+ }, z.core.$strip>>;
270
+ organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
271
+ identifier: z.ZodString;
272
+ id: z.ZodString;
273
+ role: z.ZodString;
274
+ ref: z.ZodOptional<z.ZodString>;
275
+ }, z.core.$strip>>>;
276
+ plannedOperationalDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
277
+ powerFields: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
278
+ value: z.ZodNumber;
279
+ unit: z.ZodEnum<{
280
+ kW: "kW";
281
+ MW: "MW";
282
+ kWh: "kWh";
283
+ MWh: "MWh";
284
+ }>;
285
+ identifier: z.ZodEnum<{
286
+ onsiteGeneration: "onsiteGeneration";
287
+ backupGeneration: "backupGeneration";
288
+ }>;
289
+ storage: z.ZodOptional<z.ZodObject<{
290
+ value: z.ZodNumber;
291
+ unit: z.ZodEnum<{
292
+ kW: "kW";
293
+ MW: "MW";
294
+ kWh: "kWh";
295
+ MWh: "MWh";
296
+ }>;
297
+ }, z.core.$strip>>;
298
+ sectors: z.ZodOptional<z.ZodArray<z.ZodObject<{
299
+ identifier: z.ZodString;
300
+ id: z.ZodString;
301
+ }, z.core.$strip>>>;
302
+ description: z.ZodOptional<z.ZodString>;
303
+ }, z.core.$strip>, z.ZodObject<{
304
+ identifier: z.ZodEnum<{
305
+ operatingCapacity: "operatingCapacity";
306
+ }>;
307
+ value: z.ZodNumber;
308
+ unit: z.ZodEnum<{
309
+ kW: "kW";
310
+ MW: "MW";
311
+ GW: "GW";
312
+ kWh: "kWh";
313
+ MWh: "MWh";
314
+ GWh: "GWh";
315
+ acre: "acre";
316
+ hectare: "hectare";
317
+ square_foot: "square_foot";
318
+ square_metre: "square_metre";
319
+ usd: "usd";
320
+ eur: "eur";
321
+ gbp: "gbp";
322
+ }>;
323
+ }, z.core.$strip>], "identifier">>>;
324
+ projectName: z.ZodString;
325
+ queueApplications: z.ZodOptional<z.ZodArray<z.ZodObject<{
326
+ queueKey: z.ZodOptional<z.ZodString>;
327
+ applicationId: z.ZodOptional<z.ZodString>;
328
+ queueDataset: z.ZodOptional<z.ZodString>;
329
+ id: z.ZodString;
330
+ identifier: z.ZodString;
331
+ }, z.core.$strip>>>;
332
+ regions: z.ZodArray<z.ZodObject<{
333
+ identifier: z.ZodString;
334
+ id: z.ZodString;
335
+ }, 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
+ sizeFields: z.ZodOptional<z.ZodObject<{
343
+ building: z.ZodOptional<z.ZodObject<{
344
+ square_foot: z.ZodNumber;
345
+ square_metre: z.ZodNumber;
346
+ }, z.core.$strip>>;
347
+ land: z.ZodOptional<z.ZodObject<{
348
+ acre: z.ZodNumber;
349
+ hectare: z.ZodNumber;
350
+ }, z.core.$strip>>;
351
+ }, z.core.$strip>>;
352
+ status: z.ZodArray<z.ZodObject<{
353
+ identifier: z.ZodString;
354
+ id: z.ZodString;
355
+ }, z.core.$strip>>;
356
+ substation: z.ZodOptional<z.ZodString>;
357
+ totalMw: z.ZodOptional<z.ZodNumber>;
358
+ totals: z.ZodOptional<z.ZodObject<{
359
+ offtaker: z.ZodOptional<z.ZodNumber>;
360
+ projects: z.ZodOptional<z.ZodNumber>;
361
+ keyPeople: z.ZodOptional<z.ZodNumber>;
362
+ documents: z.ZodOptional<z.ZodNumber>;
363
+ organizations: z.ZodOptional<z.ZodNumber>;
364
+ queueApplications: z.ZodOptional<z.ZodNumber>;
365
+ utility: z.ZodOptional<z.ZodNumber>;
366
+ puc: z.ZodOptional<z.ZodNumber>;
367
+ epc: z.ZodOptional<z.ZodNumber>;
368
+ developer: z.ZodOptional<z.ZodNumber>;
369
+ intels: z.ZodOptional<z.ZodNumber>;
370
+ signals: z.ZodOptional<z.ZodNumber>;
371
+ }, z.core.$strip>>;
372
+ signals: z.ZodOptional<z.ZodArray<z.ZodObject<{
373
+ documents: z.ZodArray<z.ZodObject<{
374
+ filename: z.ZodString;
375
+ size: z.ZodOptional<z.ZodString>;
376
+ created: z.ZodOptional<z.ZodString>;
377
+ filing_id: z.ZodOptional<z.ZodString>;
378
+ mimetype: z.ZodOptional<z.ZodString>;
379
+ type: z.ZodOptional<z.ZodArray<z.ZodString>>;
380
+ document_id: z.ZodString;
381
+ scanResultStatus: z.ZodOptional<z.ZodString>;
382
+ key: z.ZodOptional<z.ZodString>;
383
+ username: z.ZodOptional<z.ZodString>;
384
+ url: z.ZodOptional<z.ZodString>;
385
+ }, z.core.$strip>>;
386
+ subType: z.ZodArray<z.ZodObject<{
387
+ identifier: z.ZodString;
388
+ id: z.ZodString;
389
+ parentId: z.ZodOptional<z.ZodString>;
390
+ }, z.core.$strip>>;
391
+ id: z.ZodString;
392
+ type: z.ZodObject<{
393
+ identifier: z.ZodString;
394
+ id: z.ZodString;
395
+ }, z.core.$strip>;
396
+ headline: z.ZodString;
397
+ }, z.core.$strip>>>;
398
+ documents: z.ZodOptional<z.ZodArray<z.ZodObject<{
399
+ filename: z.ZodString;
400
+ size: z.ZodOptional<z.ZodString>;
401
+ created: z.ZodString;
402
+ filing_id: z.ZodString;
403
+ mimetype: z.ZodOptional<z.ZodString>;
404
+ type: z.ZodArray<z.ZodString>;
405
+ document_id: z.ZodString;
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>;
431
+ audiences: z.ZodArray<z.ZodObject<{
432
+ identifier: z.ZodString;
433
+ id: z.ZodString;
434
+ }, z.core.$strip>>;
435
+ cost: z.ZodOptional<z.ZodObject<{
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<{
456
+ identifier: z.ZodString;
457
+ id: z.ZodString;
458
+ }, z.core.$strip>>;
459
+ externalNotes: z.ZodOptional<z.ZodString>;
460
+ flags: z.ZodObject<{
461
+ backupGeneration: z.ZodBoolean;
462
+ onsiteGeneration: z.ZodBoolean;
463
+ }, z.core.$strip>;
464
+ geo: z.ZodObject<{
465
+ default: z.ZodOptional<z.ZodObject<{
466
+ lat: z.ZodNumber;
467
+ lon: z.ZodNumber;
468
+ }, z.core.$strip>>;
469
+ defaultValue: z.ZodOptional<z.ZodString>;
470
+ location: z.ZodOptional<z.ZodObject<{
471
+ lat: z.ZodNumber;
472
+ lon: z.ZodNumber;
473
+ }, z.core.$strip>>;
474
+ facility: z.ZodOptional<z.ZodObject<{
475
+ lat: z.ZodNumber;
476
+ lon: z.ZodNumber;
477
+ }, z.core.$strip>>;
478
+ county: z.ZodOptional<z.ZodObject<{
479
+ lat: z.ZodNumber;
480
+ lon: z.ZodNumber;
481
+ }, z.core.$strip>>;
482
+ }, z.core.$strip>;
483
+ intel: z.ZodOptional<z.ZodArray<z.ZodObject<{
484
+ identifier: z.ZodString;
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;
494
+ }, z.core.$strip>>;
495
+ publishedTime: z.ZodString;
496
+ audiences: z.ZodArray<z.ZodObject<{
497
+ identifier: z.ZodString;
498
+ id: z.ZodString;
499
+ key: z.ZodString;
500
+ }, z.core.$strip>>;
501
+ id: z.ZodString;
502
+ }, z.core.$strip>>>;
503
+ internalNotes: z.ZodOptional<z.ZodString>;
504
+ localCity: z.ZodOptional<z.ZodString>;
505
+ localCounty: z.ZodOptional<z.ZodString>;
506
+ localState: z.ZodOptional<z.ZodString>;
507
+ location: z.ZodArray<z.ZodObject<{
508
+ identifier: z.ZodString;
509
+ id: z.ZodString;
510
+ isApproximate: z.ZodOptional<z.ZodBoolean>;
511
+ components: z.ZodOptional<z.ZodObject<{
512
+ 'ISO_3166-1_alpha-2': z.ZodOptional<z.ZodString>;
513
+ 'ISO_3166-1_alpha-3': z.ZodOptional<z.ZodString>;
514
+ 'ISO_3166-2': z.ZodOptional<z.ZodArray<z.ZodString>>;
515
+ _category: z.ZodOptional<z.ZodString>;
516
+ _normalized_city: z.ZodOptional<z.ZodString>;
517
+ _type: z.ZodString;
518
+ city: z.ZodOptional<z.ZodString>;
519
+ continent: z.ZodOptional<z.ZodString>;
520
+ country: z.ZodOptional<z.ZodString>;
521
+ country_code: z.ZodOptional<z.ZodString>;
522
+ state_code: z.ZodOptional<z.ZodString>;
523
+ county: z.ZodOptional<z.ZodString>;
524
+ municipality: z.ZodOptional<z.ZodString>;
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>;
534
+ }, z.core.$strip>>;
535
+ modified: z.ZodNullable<z.ZodOptional<z.ZodString>>;
536
+ onsiteGeneration: z.ZodOptional<z.ZodObject<{
537
+ enabled: z.ZodOptional<z.ZodBoolean>;
538
+ description: z.ZodOptional<z.ZodString>;
539
+ powerCapacity: z.ZodOptional<z.ZodObject<{
540
+ value: z.ZodOptional<z.ZodNumber>;
541
+ unit: z.ZodEnum<{
542
+ kW: "kW";
543
+ MW: "MW";
544
+ GW: "GW";
545
+ kWh: "kWh";
546
+ MWh: "MWh";
547
+ GWh: "GWh";
548
+ acre: "acre";
549
+ hectare: "hectare";
550
+ square_foot: "square_foot";
551
+ square_metre: "square_metre";
552
+ usd: "usd";
553
+ eur: "eur";
554
+ gbp: "gbp";
555
+ }>;
556
+ sectors: z.ZodOptional<z.ZodArray<z.ZodOptional<z.ZodObject<{
557
+ identifier: z.ZodString;
558
+ id: z.ZodString;
559
+ }, z.core.$strip>>>>;
560
+ }, z.core.$strip>>;
561
+ }, z.core.$strip>>;
562
+ organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
563
+ identifier: z.ZodString;
564
+ id: z.ZodString;
565
+ role: z.ZodString;
566
+ ref: z.ZodOptional<z.ZodString>;
567
+ }, z.core.$strip>>>;
568
+ plannedOperationalDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
569
+ powerFields: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
570
+ value: z.ZodNumber;
571
+ unit: z.ZodEnum<{
572
+ kW: "kW";
573
+ MW: "MW";
574
+ kWh: "kWh";
575
+ MWh: "MWh";
576
+ }>;
577
+ identifier: z.ZodEnum<{
578
+ onsiteGeneration: "onsiteGeneration";
579
+ backupGeneration: "backupGeneration";
580
+ }>;
581
+ storage: z.ZodOptional<z.ZodObject<{
582
+ value: z.ZodNumber;
583
+ unit: z.ZodEnum<{
584
+ kW: "kW";
585
+ MW: "MW";
586
+ kWh: "kWh";
587
+ MWh: "MWh";
588
+ }>;
589
+ }, z.core.$strip>>;
590
+ sectors: z.ZodOptional<z.ZodArray<z.ZodObject<{
591
+ identifier: z.ZodString;
592
+ id: z.ZodString;
593
+ }, z.core.$strip>>>;
594
+ description: z.ZodOptional<z.ZodString>;
595
+ }, z.core.$strip>, z.ZodObject<{
596
+ identifier: z.ZodEnum<{
597
+ operatingCapacity: "operatingCapacity";
598
+ }>;
599
+ value: z.ZodNumber;
600
+ unit: z.ZodEnum<{
601
+ kW: "kW";
602
+ MW: "MW";
603
+ GW: "GW";
604
+ kWh: "kWh";
605
+ MWh: "MWh";
606
+ GWh: "GWh";
607
+ acre: "acre";
608
+ hectare: "hectare";
609
+ square_foot: "square_foot";
610
+ square_metre: "square_metre";
611
+ usd: "usd";
612
+ eur: "eur";
613
+ gbp: "gbp";
614
+ }>;
615
+ }, z.core.$strip>], "identifier">>>;
616
+ projectName: z.ZodString;
617
+ queueApplications: z.ZodOptional<z.ZodArray<z.ZodObject<{
618
+ queueKey: z.ZodOptional<z.ZodString>;
619
+ applicationId: z.ZodOptional<z.ZodString>;
620
+ queueDataset: z.ZodOptional<z.ZodString>;
621
+ id: z.ZodString;
622
+ identifier: z.ZodString;
623
+ }, z.core.$strip>>>;
624
+ regions: z.ZodArray<z.ZodObject<{
625
+ identifier: z.ZodString;
626
+ id: z.ZodString;
627
+ }, 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
+ sizeFields: z.ZodOptional<z.ZodObject<{
635
+ building: z.ZodOptional<z.ZodObject<{
636
+ square_foot: z.ZodNumber;
637
+ square_metre: z.ZodNumber;
638
+ }, z.core.$strip>>;
639
+ land: z.ZodOptional<z.ZodObject<{
640
+ acre: z.ZodNumber;
641
+ hectare: z.ZodNumber;
642
+ }, z.core.$strip>>;
643
+ }, z.core.$strip>>;
644
+ status: z.ZodArray<z.ZodObject<{
645
+ identifier: z.ZodString;
646
+ id: z.ZodString;
647
+ }, z.core.$strip>>;
648
+ substation: z.ZodOptional<z.ZodString>;
649
+ totalMw: z.ZodOptional<z.ZodNumber>;
650
+ totals: z.ZodOptional<z.ZodObject<{
651
+ offtaker: z.ZodOptional<z.ZodNumber>;
652
+ projects: z.ZodOptional<z.ZodNumber>;
653
+ keyPeople: z.ZodOptional<z.ZodNumber>;
654
+ documents: z.ZodOptional<z.ZodNumber>;
655
+ organizations: z.ZodOptional<z.ZodNumber>;
656
+ queueApplications: z.ZodOptional<z.ZodNumber>;
657
+ utility: z.ZodOptional<z.ZodNumber>;
658
+ puc: z.ZodOptional<z.ZodNumber>;
659
+ epc: z.ZodOptional<z.ZodNumber>;
660
+ developer: z.ZodOptional<z.ZodNumber>;
661
+ intels: z.ZodOptional<z.ZodNumber>;
662
+ signals: z.ZodOptional<z.ZodNumber>;
663
+ }, z.core.$strip>>;
664
+ signals: z.ZodOptional<z.ZodArray<z.ZodObject<{
665
+ documents: z.ZodArray<z.ZodObject<{
666
+ filename: z.ZodString;
667
+ size: z.ZodOptional<z.ZodString>;
668
+ created: z.ZodOptional<z.ZodString>;
669
+ filing_id: z.ZodOptional<z.ZodString>;
670
+ mimetype: z.ZodOptional<z.ZodString>;
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>;
677
+ }, z.core.$strip>>;
678
+ subType: z.ZodArray<z.ZodObject<{
679
+ identifier: z.ZodString;
680
+ id: z.ZodString;
681
+ parentId: z.ZodOptional<z.ZodString>;
682
+ }, z.core.$strip>>;
683
+ id: z.ZodString;
684
+ type: z.ZodObject<{
685
+ identifier: z.ZodString;
686
+ id: z.ZodString;
687
+ }, z.core.$strip>;
688
+ headline: z.ZodString;
689
+ }, z.core.$strip>>>;
690
+ documents: z.ZodOptional<z.ZodArray<z.ZodObject<{
691
+ filename: z.ZodString;
692
+ size: z.ZodOptional<z.ZodString>;
693
+ created: z.ZodString;
694
+ filing_id: z.ZodString;
695
+ mimetype: z.ZodOptional<z.ZodString>;
696
+ type: z.ZodArray<z.ZodString>;
697
+ document_id: z.ZodString;
698
+ scanResultStatus: z.ZodOptional<z.ZodString>;
699
+ key: z.ZodOptional<z.ZodString>;
700
+ url: z.ZodOptional<z.ZodString>;
701
+ username: z.ZodString;
702
+ isSignal: z.ZodOptional<z.ZodBoolean>;
703
+ }, z.core.$strip>>>;
704
+ keyPeople: z.ZodOptional<z.ZodArray<z.ZodObject<{
705
+ identifier: z.ZodString;
706
+ fullName: z.ZodString;
707
+ id: z.ZodString;
708
+ linkedinUrl: z.ZodOptional<z.ZodString>;
709
+ roles: z.ZodArray<z.ZodString>;
710
+ email: z.ZodString;
711
+ source: z.ZodString;
712
+ phone: z.ZodString;
713
+ }, z.core.$strip>>>;
714
+ }, z.core.$strict>;
715
+ export declare const dataCenterExportSchemaV1: z.ZodObject<{
716
+ id: z.ZodString;
717
+ $organizations: z.ZodOptional<z.ZodString>;
718
+ '#developers': z.ZodOptional<z.ZodArray<z.ZodString>>;
719
+ '#epcs': z.ZodOptional<z.ZodArray<z.ZodString>>;
720
+ '#utilities': z.ZodOptional<z.ZodArray<z.ZodString>>;
721
+ allSectors: z.ZodOptional<z.ZodString>;
722
+ audiences: z.ZodArray<z.ZodObject<{
723
+ identifier: z.ZodString;
724
+ id: z.ZodString;
725
+ }, z.core.$strip>>;
726
+ cost: z.ZodOptional<z.ZodObject<{
727
+ value: z.ZodOptional<z.ZodNumber>;
728
+ unit: z.ZodEnum<{
729
+ kW: "kW";
730
+ MW: "MW";
731
+ GW: "GW";
732
+ kWh: "kWh";
733
+ MWh: "MWh";
734
+ GWh: "GWh";
735
+ acre: "acre";
736
+ hectare: "hectare";
737
+ square_foot: "square_foot";
738
+ square_metre: "square_metre";
739
+ usd: "usd";
740
+ eur: "eur";
741
+ gbp: "gbp";
742
+ }>;
743
+ }, z.core.$strip>>;
744
+ country: z.ZodOptional<z.ZodString>;
745
+ created: z.ZodNullable<z.ZodOptional<z.ZodString>>;
746
+ createdBy: z.ZodArray<z.ZodObject<{
747
+ identifier: z.ZodString;
748
+ id: z.ZodString;
749
+ }, z.core.$strip>>;
750
+ externalNotes: z.ZodOptional<z.ZodString>;
751
+ flags: z.ZodObject<{
752
+ backupGeneration: z.ZodBoolean;
753
+ onsiteGeneration: z.ZodBoolean;
754
+ }, 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
+ intel: z.ZodOptional<z.ZodArray<z.ZodObject<{
775
+ identifier: z.ZodString;
776
+ intelSections: z.ZodArray<z.ZodObject<{
777
+ identifier: z.ZodString;
778
+ id: z.ZodString;
779
+ key: z.ZodString;
780
+ }, z.core.$strip>>;
781
+ regions: z.ZodArray<z.ZodObject<{
782
+ identifier: z.ZodString;
783
+ id: z.ZodString;
784
+ key: z.ZodString;
785
+ }, z.core.$strip>>;
786
+ publishedTime: z.ZodString;
787
+ audiences: z.ZodArray<z.ZodObject<{
788
+ identifier: z.ZodString;
789
+ id: z.ZodString;
790
+ key: z.ZodString;
791
+ }, z.core.$strip>>;
792
+ id: z.ZodString;
793
+ }, z.core.$strip>>>;
794
+ internalNotes: z.ZodOptional<z.ZodString>;
795
+ localCity: z.ZodOptional<z.ZodString>;
796
+ localCounty: z.ZodOptional<z.ZodString>;
797
+ localState: z.ZodOptional<z.ZodString>;
798
+ location: z.ZodArray<z.ZodObject<{
799
+ identifier: z.ZodString;
800
+ id: z.ZodString;
801
+ isApproximate: z.ZodOptional<z.ZodBoolean>;
802
+ components: z.ZodOptional<z.ZodObject<{
803
+ 'ISO_3166-1_alpha-2': z.ZodOptional<z.ZodString>;
804
+ 'ISO_3166-1_alpha-3': z.ZodOptional<z.ZodString>;
805
+ 'ISO_3166-2': z.ZodOptional<z.ZodArray<z.ZodString>>;
806
+ _category: z.ZodOptional<z.ZodString>;
807
+ _normalized_city: z.ZodOptional<z.ZodString>;
808
+ _type: z.ZodString;
809
+ city: z.ZodOptional<z.ZodString>;
810
+ continent: z.ZodOptional<z.ZodString>;
811
+ country: z.ZodOptional<z.ZodString>;
812
+ country_code: z.ZodOptional<z.ZodString>;
813
+ state_code: z.ZodOptional<z.ZodString>;
814
+ county: z.ZodOptional<z.ZodString>;
815
+ municipality: z.ZodOptional<z.ZodString>;
816
+ political_union: z.ZodOptional<z.ZodString>;
817
+ state: z.ZodOptional<z.ZodString>;
818
+ state_district: z.ZodOptional<z.ZodString>;
819
+ }, z.core.$strip>>;
820
+ geometry: z.ZodOptional<z.ZodObject<{
821
+ lat: z.ZodNumber;
822
+ lng: z.ZodNumber;
823
+ }, z.core.$strip>>;
824
+ override: z.ZodOptional<z.ZodBoolean>;
825
+ }, z.core.$strip>>;
826
+ modified: z.ZodNullable<z.ZodOptional<z.ZodString>>;
827
+ onsiteGeneration: z.ZodOptional<z.ZodObject<{
828
+ enabled: z.ZodOptional<z.ZodBoolean>;
829
+ description: z.ZodOptional<z.ZodString>;
830
+ powerCapacity: z.ZodOptional<z.ZodObject<{
831
+ value: z.ZodOptional<z.ZodNumber>;
832
+ unit: z.ZodEnum<{
833
+ kW: "kW";
834
+ MW: "MW";
835
+ GW: "GW";
836
+ kWh: "kWh";
837
+ MWh: "MWh";
838
+ GWh: "GWh";
839
+ acre: "acre";
840
+ hectare: "hectare";
841
+ square_foot: "square_foot";
842
+ square_metre: "square_metre";
843
+ usd: "usd";
844
+ eur: "eur";
845
+ gbp: "gbp";
846
+ }>;
847
+ sectors: z.ZodOptional<z.ZodArray<z.ZodOptional<z.ZodObject<{
848
+ identifier: z.ZodString;
849
+ id: z.ZodString;
850
+ }, z.core.$strip>>>>;
851
+ }, z.core.$strip>>;
852
+ }, z.core.$strip>>;
853
+ organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
854
+ identifier: z.ZodString;
855
+ id: z.ZodString;
856
+ role: z.ZodString;
857
+ ref: z.ZodOptional<z.ZodString>;
858
+ }, z.core.$strip>>>;
859
+ plannedOperationalDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
860
+ powerFields: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
861
+ value: z.ZodNumber;
862
+ unit: z.ZodEnum<{
863
+ kW: "kW";
864
+ MW: "MW";
865
+ kWh: "kWh";
866
+ MWh: "MWh";
867
+ }>;
868
+ identifier: z.ZodEnum<{
869
+ onsiteGeneration: "onsiteGeneration";
870
+ backupGeneration: "backupGeneration";
871
+ }>;
872
+ storage: z.ZodOptional<z.ZodObject<{
873
+ value: z.ZodNumber;
874
+ unit: z.ZodEnum<{
875
+ kW: "kW";
876
+ MW: "MW";
877
+ kWh: "kWh";
878
+ MWh: "MWh";
879
+ }>;
880
+ }, z.core.$strip>>;
881
+ sectors: z.ZodOptional<z.ZodArray<z.ZodObject<{
882
+ identifier: z.ZodString;
883
+ id: z.ZodString;
884
+ }, z.core.$strip>>>;
885
+ description: z.ZodOptional<z.ZodString>;
886
+ }, z.core.$strip>, z.ZodObject<{
887
+ identifier: z.ZodEnum<{
888
+ operatingCapacity: "operatingCapacity";
889
+ }>;
890
+ value: z.ZodNumber;
891
+ unit: z.ZodEnum<{
892
+ kW: "kW";
893
+ MW: "MW";
894
+ GW: "GW";
895
+ kWh: "kWh";
896
+ MWh: "MWh";
897
+ GWh: "GWh";
898
+ acre: "acre";
899
+ hectare: "hectare";
900
+ square_foot: "square_foot";
901
+ square_metre: "square_metre";
902
+ usd: "usd";
903
+ eur: "eur";
904
+ gbp: "gbp";
905
+ }>;
906
+ }, z.core.$strip>], "identifier">>>;
907
+ projectName: z.ZodString;
908
+ queueApplications: z.ZodOptional<z.ZodArray<z.ZodObject<{
909
+ queueKey: z.ZodOptional<z.ZodString>;
910
+ applicationId: z.ZodOptional<z.ZodString>;
911
+ queueDataset: z.ZodOptional<z.ZodString>;
912
+ id: z.ZodString;
913
+ identifier: z.ZodString;
914
+ }, z.core.$strip>>>;
915
+ regions: z.ZodArray<z.ZodObject<{
916
+ identifier: z.ZodString;
917
+ id: z.ZodString;
918
+ }, 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
+ sizeFields: z.ZodOptional<z.ZodObject<{
926
+ building: z.ZodOptional<z.ZodObject<{
927
+ square_foot: z.ZodNumber;
928
+ square_metre: z.ZodNumber;
929
+ }, z.core.$strip>>;
930
+ land: z.ZodOptional<z.ZodObject<{
931
+ acre: z.ZodNumber;
932
+ hectare: z.ZodNumber;
933
+ }, z.core.$strip>>;
934
+ }, z.core.$strip>>;
935
+ status: z.ZodArray<z.ZodObject<{
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>>>;
1005
+ }, z.core.$strict>;
1006
+ export declare const dataCenterAPISchemaV1: z.ZodObject<{
1007
+ sectors: z.ZodOptional<z.ZodArray<z.ZodObject<{
1008
+ source: z.ZodOptional<z.ZodString>;
1009
+ identifier: z.ZodString;
1010
+ id: z.ZodString;
1011
+ }, z.core.$strip>>>;
1012
+ keyPeople: z.ZodOptional<z.ZodArray<z.ZodObject<{
1013
+ identifier: z.ZodString;
1014
+ fullName: z.ZodString;
1015
+ id: z.ZodString;
1016
+ linkedinUrl: z.ZodOptional<z.ZodString>;
1017
+ roles: z.ZodArray<z.ZodString>;
1018
+ email: z.ZodString;
1019
+ source: z.ZodString;
1020
+ phone: z.ZodString;
1021
+ }, z.core.$strip>>>;
1022
+ id: z.ZodString;
1023
+ plannedOperationalDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1024
+ totalMw: z.ZodOptional<z.ZodNumber>;
1025
+ location: z.ZodArray<z.ZodObject<{
1026
+ identifier: z.ZodString;
1027
+ id: z.ZodString;
1028
+ isApproximate: z.ZodOptional<z.ZodBoolean>;
1029
+ components: z.ZodOptional<z.ZodObject<{
1030
+ 'ISO_3166-1_alpha-2': z.ZodOptional<z.ZodString>;
1031
+ 'ISO_3166-1_alpha-3': z.ZodOptional<z.ZodString>;
1032
+ 'ISO_3166-2': z.ZodOptional<z.ZodArray<z.ZodString>>;
1033
+ _category: z.ZodOptional<z.ZodString>;
1034
+ _normalized_city: z.ZodOptional<z.ZodString>;
1035
+ _type: z.ZodString;
1036
+ city: z.ZodOptional<z.ZodString>;
1037
+ continent: z.ZodOptional<z.ZodString>;
1038
+ country: z.ZodOptional<z.ZodString>;
1039
+ country_code: z.ZodOptional<z.ZodString>;
1040
+ state_code: z.ZodOptional<z.ZodString>;
1041
+ county: z.ZodOptional<z.ZodString>;
1042
+ municipality: z.ZodOptional<z.ZodString>;
1043
+ political_union: z.ZodOptional<z.ZodString>;
1044
+ state: z.ZodOptional<z.ZodString>;
1045
+ state_district: z.ZodOptional<z.ZodString>;
1046
+ }, z.core.$strip>>;
1047
+ geometry: z.ZodOptional<z.ZodObject<{
1048
+ lat: z.ZodNumber;
1049
+ lng: z.ZodNumber;
1050
+ }, z.core.$strip>>;
1051
+ override: z.ZodOptional<z.ZodBoolean>;
1052
+ }, z.core.$strip>>;
1053
+ country: z.ZodOptional<z.ZodString>;
1054
+ created: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1055
+ documents: z.ZodOptional<z.ZodArray<z.ZodObject<{
1056
+ filename: z.ZodString;
1057
+ size: z.ZodOptional<z.ZodString>;
1058
+ created: z.ZodString;
1059
+ filing_id: z.ZodString;
1060
+ mimetype: z.ZodOptional<z.ZodString>;
1061
+ type: z.ZodArray<z.ZodString>;
1062
+ document_id: z.ZodString;
1063
+ scanResultStatus: z.ZodOptional<z.ZodString>;
1064
+ key: z.ZodOptional<z.ZodString>;
1065
+ url: z.ZodOptional<z.ZodString>;
1066
+ username: z.ZodString;
1067
+ isSignal: z.ZodOptional<z.ZodBoolean>;
1068
+ }, z.core.$strip>>>;
1069
+ organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
1070
+ identifier: z.ZodString;
1071
+ id: z.ZodString;
1072
+ role: z.ZodString;
1073
+ ref: z.ZodOptional<z.ZodString>;
1074
+ }, z.core.$strip>>>;
1075
+ queueApplications: z.ZodOptional<z.ZodArray<z.ZodObject<{
1076
+ queueKey: z.ZodOptional<z.ZodString>;
1077
+ applicationId: z.ZodOptional<z.ZodString>;
1078
+ queueDataset: z.ZodOptional<z.ZodString>;
1079
+ id: z.ZodString;
1080
+ identifier: z.ZodString;
1081
+ }, z.core.$strip>>>;
1082
+ signals: z.ZodOptional<z.ZodArray<z.ZodObject<{
1083
+ documents: z.ZodArray<z.ZodObject<{
1084
+ filename: z.ZodString;
1085
+ size: z.ZodOptional<z.ZodString>;
1086
+ created: z.ZodOptional<z.ZodString>;
1087
+ filing_id: z.ZodOptional<z.ZodString>;
1088
+ mimetype: z.ZodOptional<z.ZodString>;
1089
+ type: z.ZodOptional<z.ZodArray<z.ZodString>>;
1090
+ document_id: z.ZodString;
1091
+ scanResultStatus: z.ZodOptional<z.ZodString>;
1092
+ key: z.ZodOptional<z.ZodString>;
1093
+ username: z.ZodOptional<z.ZodString>;
1094
+ url: z.ZodOptional<z.ZodString>;
1095
+ }, z.core.$strip>>;
1096
+ subType: z.ZodArray<z.ZodObject<{
1097
+ identifier: z.ZodString;
1098
+ id: z.ZodString;
1099
+ parentId: z.ZodOptional<z.ZodString>;
1100
+ }, z.core.$strip>>;
1101
+ id: z.ZodString;
1102
+ type: z.ZodObject<{
1103
+ identifier: z.ZodString;
1104
+ id: z.ZodString;
1105
+ }, z.core.$strip>;
1106
+ headline: z.ZodString;
1107
+ }, z.core.$strip>>>;
1108
+ audiences: z.ZodArray<z.ZodObject<{
1109
+ identifier: z.ZodString;
1110
+ id: z.ZodString;
1111
+ }, z.core.$strip>>;
1112
+ regions: z.ZodArray<z.ZodObject<{
1113
+ identifier: z.ZodString;
1114
+ id: z.ZodString;
1115
+ }, z.core.$strip>>;
1116
+ allSectors: z.ZodOptional<z.ZodString>;
1117
+ geo: z.ZodObject<{
1118
+ default: z.ZodOptional<z.ZodObject<{
1119
+ lat: z.ZodNumber;
1120
+ lon: z.ZodNumber;
1121
+ }, z.core.$strip>>;
1122
+ defaultValue: z.ZodOptional<z.ZodString>;
1123
+ location: z.ZodOptional<z.ZodObject<{
1124
+ lat: z.ZodNumber;
1125
+ lon: z.ZodNumber;
1126
+ }, z.core.$strip>>;
1127
+ facility: z.ZodOptional<z.ZodObject<{
1128
+ lat: z.ZodNumber;
1129
+ lon: z.ZodNumber;
1130
+ }, z.core.$strip>>;
1131
+ county: z.ZodOptional<z.ZodObject<{
1132
+ lat: z.ZodNumber;
1133
+ lon: z.ZodNumber;
1134
+ }, z.core.$strip>>;
1135
+ }, z.core.$strip>;
1136
+ totals: z.ZodOptional<z.ZodObject<{
1137
+ offtaker: z.ZodOptional<z.ZodNumber>;
1138
+ projects: z.ZodOptional<z.ZodNumber>;
1139
+ keyPeople: z.ZodOptional<z.ZodNumber>;
1140
+ documents: z.ZodOptional<z.ZodNumber>;
1141
+ organizations: z.ZodOptional<z.ZodNumber>;
1142
+ queueApplications: z.ZodOptional<z.ZodNumber>;
1143
+ utility: z.ZodOptional<z.ZodNumber>;
1144
+ puc: z.ZodOptional<z.ZodNumber>;
1145
+ epc: z.ZodOptional<z.ZodNumber>;
1146
+ developer: z.ZodOptional<z.ZodNumber>;
1147
+ intels: z.ZodOptional<z.ZodNumber>;
1148
+ signals: z.ZodOptional<z.ZodNumber>;
1149
+ }, z.core.$strip>>;
1150
+ $organizations: z.ZodOptional<z.ZodString>;
1151
+ status: z.ZodArray<z.ZodObject<{
1152
+ identifier: z.ZodString;
1153
+ id: z.ZodString;
1154
+ }, z.core.$strip>>;
1155
+ localCounty: z.ZodOptional<z.ZodString>;
1156
+ localState: z.ZodOptional<z.ZodString>;
1157
+ projectName: z.ZodString;
1158
+ cost: z.ZodOptional<z.ZodObject<{
1159
+ value: z.ZodOptional<z.ZodNumber>;
1160
+ unit: z.ZodEnum<{
1161
+ kW: "kW";
1162
+ MW: "MW";
1163
+ GW: "GW";
1164
+ kWh: "kWh";
1165
+ MWh: "MWh";
1166
+ GWh: "GWh";
1167
+ acre: "acre";
1168
+ hectare: "hectare";
1169
+ square_foot: "square_foot";
1170
+ square_metre: "square_metre";
1171
+ usd: "usd";
1172
+ eur: "eur";
1173
+ gbp: "gbp";
1174
+ }>;
1175
+ }, z.core.$strip>>;
1176
+ onsiteGeneration: z.ZodOptional<z.ZodObject<{
1177
+ enabled: z.ZodOptional<z.ZodBoolean>;
1178
+ description: z.ZodOptional<z.ZodString>;
1179
+ powerCapacity: z.ZodOptional<z.ZodObject<{
1180
+ value: z.ZodOptional<z.ZodNumber>;
1181
+ unit: z.ZodEnum<{
1182
+ kW: "kW";
1183
+ MW: "MW";
1184
+ GW: "GW";
1185
+ kWh: "kWh";
1186
+ MWh: "MWh";
1187
+ GWh: "GWh";
1188
+ acre: "acre";
1189
+ hectare: "hectare";
1190
+ square_foot: "square_foot";
1191
+ square_metre: "square_metre";
1192
+ usd: "usd";
1193
+ eur: "eur";
1194
+ gbp: "gbp";
1195
+ }>;
1196
+ sectors: z.ZodOptional<z.ZodArray<z.ZodOptional<z.ZodObject<{
1197
+ identifier: z.ZodString;
1198
+ id: z.ZodString;
1199
+ }, z.core.$strip>>>>;
1200
+ }, z.core.$strip>>;
1201
+ }, z.core.$strip>>;
1202
+ '#developers': z.ZodOptional<z.ZodArray<z.ZodString>>;
1203
+ '#epcs': z.ZodOptional<z.ZodArray<z.ZodString>>;
1204
+ '#utilities': z.ZodOptional<z.ZodArray<z.ZodString>>;
1205
+ externalNotes: z.ZodOptional<z.ZodString>;
1206
+ flags: z.ZodObject<{
1207
+ backupGeneration: z.ZodBoolean;
1208
+ onsiteGeneration: z.ZodBoolean;
1209
+ }, z.core.$strip>;
1210
+ intel: z.ZodOptional<z.ZodArray<z.ZodObject<{
1211
+ identifier: z.ZodString;
1212
+ intelSections: z.ZodArray<z.ZodObject<{
1213
+ identifier: z.ZodString;
1214
+ id: z.ZodString;
1215
+ key: z.ZodString;
1216
+ }, z.core.$strip>>;
1217
+ regions: z.ZodArray<z.ZodObject<{
1218
+ identifier: z.ZodString;
1219
+ id: z.ZodString;
1220
+ key: z.ZodString;
1221
+ }, z.core.$strip>>;
1222
+ publishedTime: z.ZodString;
1223
+ audiences: z.ZodArray<z.ZodObject<{
1224
+ identifier: z.ZodString;
1225
+ id: z.ZodString;
1226
+ key: z.ZodString;
1227
+ }, z.core.$strip>>;
1228
+ id: z.ZodString;
1229
+ }, z.core.$strip>>>;
1230
+ localCity: z.ZodOptional<z.ZodString>;
1231
+ modified: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1232
+ powerFields: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
1233
+ value: z.ZodNumber;
1234
+ unit: z.ZodEnum<{
1235
+ kW: "kW";
1236
+ MW: "MW";
1237
+ kWh: "kWh";
1238
+ MWh: "MWh";
1239
+ }>;
1240
+ identifier: z.ZodEnum<{
1241
+ onsiteGeneration: "onsiteGeneration";
1242
+ backupGeneration: "backupGeneration";
1243
+ }>;
1244
+ storage: z.ZodOptional<z.ZodObject<{
1245
+ value: z.ZodNumber;
1246
+ unit: z.ZodEnum<{
1247
+ kW: "kW";
1248
+ MW: "MW";
1249
+ kWh: "kWh";
1250
+ MWh: "MWh";
1251
+ }>;
1252
+ }, z.core.$strip>>;
1253
+ sectors: z.ZodOptional<z.ZodArray<z.ZodObject<{
1254
+ identifier: z.ZodString;
1255
+ id: z.ZodString;
1256
+ }, z.core.$strip>>>;
1257
+ description: z.ZodOptional<z.ZodString>;
1258
+ }, z.core.$strip>, z.ZodObject<{
1259
+ identifier: z.ZodEnum<{
1260
+ operatingCapacity: "operatingCapacity";
1261
+ }>;
1262
+ value: z.ZodNumber;
1263
+ unit: z.ZodEnum<{
1264
+ kW: "kW";
1265
+ MW: "MW";
1266
+ GW: "GW";
1267
+ kWh: "kWh";
1268
+ MWh: "MWh";
1269
+ GWh: "GWh";
1270
+ acre: "acre";
1271
+ hectare: "hectare";
1272
+ square_foot: "square_foot";
1273
+ square_metre: "square_metre";
1274
+ usd: "usd";
1275
+ eur: "eur";
1276
+ gbp: "gbp";
1277
+ }>;
1278
+ }, z.core.$strip>], "identifier">>>;
1279
+ showProject: z.ZodBoolean;
1280
+ sizeFields: z.ZodOptional<z.ZodObject<{
1281
+ building: z.ZodOptional<z.ZodObject<{
1282
+ square_foot: z.ZodNumber;
1283
+ square_metre: z.ZodNumber;
1284
+ }, z.core.$strip>>;
1285
+ land: z.ZodOptional<z.ZodObject<{
1286
+ acre: z.ZodNumber;
1287
+ hectare: z.ZodNumber;
1288
+ }, z.core.$strip>>;
1289
+ }, z.core.$strip>>;
1290
+ substation: z.ZodOptional<z.ZodString>;
1291
+ }, z.core.$strict>;
1292
+ export declare const dataCenterByLocationListSchemaV1: z.ZodObject<{
1293
+ id: z.ZodString;
1294
+ $organizations: z.ZodOptional<z.ZodString>;
1295
+ '#developers': z.ZodOptional<z.ZodArray<z.ZodString>>;
1296
+ '#epcs': z.ZodOptional<z.ZodArray<z.ZodString>>;
1297
+ '#utilities': z.ZodOptional<z.ZodArray<z.ZodString>>;
1298
+ allSectors: z.ZodOptional<z.ZodString>;
1299
+ audiences: z.ZodArray<z.ZodObject<{
1300
+ identifier: z.ZodString;
1301
+ id: z.ZodString;
1302
+ }, z.core.$strip>>;
1303
+ cost: z.ZodOptional<z.ZodObject<{
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<{
1324
+ identifier: z.ZodString;
1325
+ id: z.ZodString;
1326
+ }, z.core.$strip>>;
1327
+ externalNotes: z.ZodOptional<z.ZodString>;
1328
+ flags: z.ZodObject<{
1329
+ backupGeneration: z.ZodBoolean;
1330
+ onsiteGeneration: z.ZodBoolean;
1331
+ }, z.core.$strip>;
1332
+ geo: z.ZodObject<{
1333
+ default: z.ZodOptional<z.ZodObject<{
1334
+ lat: z.ZodNumber;
1335
+ lon: z.ZodNumber;
1336
+ }, z.core.$strip>>;
1337
+ defaultValue: z.ZodOptional<z.ZodString>;
1338
+ location: z.ZodOptional<z.ZodObject<{
1339
+ lat: z.ZodNumber;
1340
+ lon: z.ZodNumber;
1341
+ }, z.core.$strip>>;
1342
+ facility: z.ZodOptional<z.ZodObject<{
1343
+ lat: z.ZodNumber;
1344
+ lon: z.ZodNumber;
1345
+ }, z.core.$strip>>;
1346
+ county: z.ZodOptional<z.ZodObject<{
1347
+ lat: z.ZodNumber;
1348
+ lon: z.ZodNumber;
1349
+ }, z.core.$strip>>;
1350
+ }, z.core.$strip>;
1351
+ intel: z.ZodOptional<z.ZodArray<z.ZodObject<{
1352
+ identifier: z.ZodString;
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;
1362
+ }, z.core.$strip>>;
1363
+ publishedTime: z.ZodString;
1364
+ audiences: z.ZodArray<z.ZodObject<{
1365
+ identifier: z.ZodString;
1366
+ id: z.ZodString;
1367
+ key: z.ZodString;
1368
+ }, z.core.$strip>>;
1369
+ id: z.ZodString;
1370
+ }, z.core.$strip>>>;
1371
+ internalNotes: z.ZodOptional<z.ZodString>;
1372
+ localCity: z.ZodOptional<z.ZodString>;
1373
+ localCounty: z.ZodOptional<z.ZodString>;
1374
+ localState: z.ZodOptional<z.ZodString>;
1375
+ location: z.ZodArray<z.ZodObject<{
1376
+ identifier: z.ZodString;
1377
+ id: z.ZodString;
1378
+ isApproximate: z.ZodOptional<z.ZodBoolean>;
1379
+ components: z.ZodOptional<z.ZodObject<{
1380
+ 'ISO_3166-1_alpha-2': z.ZodOptional<z.ZodString>;
1381
+ 'ISO_3166-1_alpha-3': z.ZodOptional<z.ZodString>;
1382
+ 'ISO_3166-2': z.ZodOptional<z.ZodArray<z.ZodString>>;
1383
+ _category: z.ZodOptional<z.ZodString>;
1384
+ _normalized_city: z.ZodOptional<z.ZodString>;
1385
+ _type: z.ZodString;
1386
+ city: z.ZodOptional<z.ZodString>;
1387
+ continent: z.ZodOptional<z.ZodString>;
1388
+ country: z.ZodOptional<z.ZodString>;
1389
+ country_code: z.ZodOptional<z.ZodString>;
1390
+ state_code: z.ZodOptional<z.ZodString>;
1391
+ county: z.ZodOptional<z.ZodString>;
1392
+ municipality: z.ZodOptional<z.ZodString>;
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>;
1402
+ }, z.core.$strip>>;
1403
+ modified: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1404
+ onsiteGeneration: z.ZodOptional<z.ZodObject<{
1405
+ enabled: z.ZodOptional<z.ZodBoolean>;
1406
+ description: z.ZodOptional<z.ZodString>;
1407
+ powerCapacity: z.ZodOptional<z.ZodObject<{
1408
+ value: z.ZodOptional<z.ZodNumber>;
1409
+ unit: z.ZodEnum<{
1410
+ kW: "kW";
1411
+ MW: "MW";
1412
+ GW: "GW";
1413
+ kWh: "kWh";
1414
+ MWh: "MWh";
1415
+ GWh: "GWh";
1416
+ acre: "acre";
1417
+ hectare: "hectare";
1418
+ square_foot: "square_foot";
1419
+ square_metre: "square_metre";
1420
+ usd: "usd";
1421
+ eur: "eur";
1422
+ gbp: "gbp";
1423
+ }>;
1424
+ sectors: z.ZodOptional<z.ZodArray<z.ZodOptional<z.ZodObject<{
1425
+ identifier: z.ZodString;
1426
+ id: z.ZodString;
1427
+ }, z.core.$strip>>>>;
1428
+ }, z.core.$strip>>;
1429
+ }, z.core.$strip>>;
1430
+ organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
1431
+ identifier: z.ZodString;
1432
+ id: z.ZodString;
1433
+ role: z.ZodString;
1434
+ ref: z.ZodOptional<z.ZodString>;
1435
+ }, z.core.$strip>>>;
1436
+ plannedOperationalDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1437
+ powerFields: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
1438
+ value: z.ZodNumber;
1439
+ unit: z.ZodEnum<{
1440
+ kW: "kW";
1441
+ MW: "MW";
1442
+ kWh: "kWh";
1443
+ MWh: "MWh";
1444
+ }>;
1445
+ identifier: z.ZodEnum<{
1446
+ onsiteGeneration: "onsiteGeneration";
1447
+ backupGeneration: "backupGeneration";
1448
+ }>;
1449
+ storage: z.ZodOptional<z.ZodObject<{
1450
+ value: z.ZodNumber;
1451
+ unit: z.ZodEnum<{
1452
+ kW: "kW";
1453
+ MW: "MW";
1454
+ kWh: "kWh";
1455
+ MWh: "MWh";
1456
+ }>;
1457
+ }, z.core.$strip>>;
1458
+ sectors: z.ZodOptional<z.ZodArray<z.ZodObject<{
1459
+ identifier: z.ZodString;
1460
+ id: z.ZodString;
1461
+ }, z.core.$strip>>>;
1462
+ description: z.ZodOptional<z.ZodString>;
1463
+ }, z.core.$strip>, z.ZodObject<{
1464
+ identifier: z.ZodEnum<{
1465
+ operatingCapacity: "operatingCapacity";
1466
+ }>;
1467
+ value: z.ZodNumber;
1468
+ unit: z.ZodEnum<{
1469
+ kW: "kW";
1470
+ MW: "MW";
1471
+ GW: "GW";
1472
+ kWh: "kWh";
1473
+ MWh: "MWh";
1474
+ GWh: "GWh";
1475
+ acre: "acre";
1476
+ hectare: "hectare";
1477
+ square_foot: "square_foot";
1478
+ square_metre: "square_metre";
1479
+ usd: "usd";
1480
+ eur: "eur";
1481
+ gbp: "gbp";
1482
+ }>;
1483
+ }, z.core.$strip>], "identifier">>>;
1484
+ projectName: z.ZodString;
1485
+ queueApplications: z.ZodOptional<z.ZodArray<z.ZodObject<{
1486
+ queueKey: z.ZodOptional<z.ZodString>;
1487
+ applicationId: z.ZodOptional<z.ZodString>;
1488
+ queueDataset: z.ZodOptional<z.ZodString>;
1489
+ id: z.ZodString;
1490
+ identifier: z.ZodString;
1491
+ }, z.core.$strip>>>;
1492
+ regions: z.ZodArray<z.ZodObject<{
1493
+ identifier: z.ZodString;
1494
+ id: z.ZodString;
1495
+ }, 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
+ sizeFields: z.ZodOptional<z.ZodObject<{
1503
+ building: z.ZodOptional<z.ZodObject<{
1504
+ square_foot: z.ZodNumber;
1505
+ square_metre: z.ZodNumber;
1506
+ }, z.core.$strip>>;
1507
+ land: z.ZodOptional<z.ZodObject<{
1508
+ acre: z.ZodNumber;
1509
+ hectare: z.ZodNumber;
1510
+ }, z.core.$strip>>;
1511
+ }, z.core.$strip>>;
1512
+ status: z.ZodArray<z.ZodObject<{
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>>>;
1582
+ }, z.core.$strict>;
1583
+ export type DataCenterListTypeV1 = z.infer<typeof dataCenterListSchemaV1>;
1584
+ export type DataCenterDetailsTypeV1 = z.infer<typeof dataCenterDetailsSchemaV1>;
1585
+ export type DataCenterExportTypeV1 = z.infer<typeof dataCenterExportSchemaV1>;
1586
+ export type DataCenterAPITypeV1 = z.infer<typeof dataCenterAPISchemaV1>;
1587
+ export type DataCenterByLocationListTypeV1 = z.infer<typeof dataCenterByLocationListSchemaV1>;
1588
+ export {};