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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,1567 @@
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
+ geo: z.ZodObject<{
169
+ default: z.ZodOptional<z.ZodObject<{
170
+ lat: z.ZodNumber;
171
+ lon: z.ZodNumber;
172
+ }, z.core.$strip>>;
173
+ defaultValue: z.ZodOptional<z.ZodString>;
174
+ location: z.ZodOptional<z.ZodObject<{
175
+ lat: z.ZodNumber;
176
+ lon: z.ZodNumber;
177
+ }, z.core.$strip>>;
178
+ facility: z.ZodOptional<z.ZodObject<{
179
+ lat: z.ZodNumber;
180
+ lon: z.ZodNumber;
181
+ }, z.core.$strip>>;
182
+ county: z.ZodOptional<z.ZodObject<{
183
+ lat: z.ZodNumber;
184
+ lon: z.ZodNumber;
185
+ }, z.core.$strip>>;
186
+ }, z.core.$strip>;
187
+ intel: z.ZodOptional<z.ZodArray<z.ZodObject<{
188
+ identifier: z.ZodString;
189
+ intelSections: z.ZodArray<z.ZodObject<{
190
+ identifier: z.ZodString;
191
+ id: z.ZodString;
192
+ key: z.ZodString;
193
+ }, z.core.$strip>>;
194
+ regions: z.ZodArray<z.ZodObject<{
195
+ identifier: z.ZodString;
196
+ id: z.ZodString;
197
+ key: z.ZodString;
198
+ }, z.core.$strip>>;
199
+ publishedTime: z.ZodString;
200
+ audiences: z.ZodArray<z.ZodObject<{
201
+ identifier: z.ZodString;
202
+ id: z.ZodString;
203
+ key: z.ZodString;
204
+ }, z.core.$strip>>;
205
+ id: z.ZodString;
206
+ }, z.core.$strip>>>;
207
+ internalNotes: z.ZodOptional<z.ZodString>;
208
+ localCity: z.ZodOptional<z.ZodString>;
209
+ localCounty: z.ZodOptional<z.ZodString>;
210
+ localState: z.ZodOptional<z.ZodString>;
211
+ location: z.ZodArray<z.ZodObject<{
212
+ identifier: z.ZodString;
213
+ id: z.ZodString;
214
+ isApproximate: z.ZodOptional<z.ZodBoolean>;
215
+ components: z.ZodOptional<z.ZodObject<{
216
+ 'ISO_3166-1_alpha-2': z.ZodOptional<z.ZodString>;
217
+ 'ISO_3166-1_alpha-3': z.ZodOptional<z.ZodString>;
218
+ 'ISO_3166-2': z.ZodOptional<z.ZodArray<z.ZodString>>;
219
+ _category: z.ZodOptional<z.ZodString>;
220
+ _normalized_city: z.ZodOptional<z.ZodString>;
221
+ _type: z.ZodString;
222
+ city: z.ZodOptional<z.ZodString>;
223
+ continent: z.ZodOptional<z.ZodString>;
224
+ country: z.ZodOptional<z.ZodString>;
225
+ country_code: z.ZodOptional<z.ZodString>;
226
+ state_code: z.ZodOptional<z.ZodString>;
227
+ county: z.ZodOptional<z.ZodString>;
228
+ municipality: z.ZodOptional<z.ZodString>;
229
+ political_union: z.ZodOptional<z.ZodString>;
230
+ state: z.ZodOptional<z.ZodString>;
231
+ state_district: z.ZodOptional<z.ZodString>;
232
+ }, z.core.$strip>>;
233
+ geometry: z.ZodOptional<z.ZodObject<{
234
+ lat: z.ZodNumber;
235
+ lng: z.ZodNumber;
236
+ }, z.core.$strip>>;
237
+ override: z.ZodOptional<z.ZodBoolean>;
238
+ }, z.core.$strip>>;
239
+ modified: z.ZodNullable<z.ZodOptional<z.ZodString>>;
240
+ onsiteGeneration: z.ZodOptional<z.ZodObject<{
241
+ enabled: z.ZodOptional<z.ZodBoolean>;
242
+ description: z.ZodOptional<z.ZodString>;
243
+ powerCapacity: z.ZodOptional<z.ZodObject<{
244
+ value: z.ZodOptional<z.ZodNumber>;
245
+ unit: z.ZodEnum<{
246
+ kW: "kW";
247
+ MW: "MW";
248
+ GW: "GW";
249
+ kWh: "kWh";
250
+ MWh: "MWh";
251
+ GWh: "GWh";
252
+ acre: "acre";
253
+ hectare: "hectare";
254
+ square_foot: "square_foot";
255
+ square_metre: "square_metre";
256
+ usd: "usd";
257
+ eur: "eur";
258
+ gbp: "gbp";
259
+ }>;
260
+ sectors: z.ZodOptional<z.ZodArray<z.ZodOptional<z.ZodObject<{
261
+ identifier: z.ZodString;
262
+ id: z.ZodString;
263
+ }, z.core.$strip>>>>;
264
+ }, z.core.$strip>>;
265
+ }, z.core.$strip>>;
266
+ organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
267
+ identifier: z.ZodString;
268
+ id: z.ZodString;
269
+ role: z.ZodString;
270
+ ref: z.ZodOptional<z.ZodString>;
271
+ }, z.core.$strip>>>;
272
+ plannedOperationalDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
273
+ powerFields: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
274
+ value: z.ZodNumber;
275
+ unit: z.ZodEnum<{
276
+ kW: "kW";
277
+ MW: "MW";
278
+ kWh: "kWh";
279
+ MWh: "MWh";
280
+ }>;
281
+ identifier: z.ZodEnum<{
282
+ onsiteGeneration: "onsiteGeneration";
283
+ backupGeneration: "backupGeneration";
284
+ }>;
285
+ storage: z.ZodOptional<z.ZodObject<{
286
+ value: z.ZodNumber;
287
+ unit: z.ZodEnum<{
288
+ kW: "kW";
289
+ MW: "MW";
290
+ kWh: "kWh";
291
+ MWh: "MWh";
292
+ }>;
293
+ }, z.core.$strip>>;
294
+ sectors: z.ZodOptional<z.ZodArray<z.ZodObject<{
295
+ identifier: z.ZodString;
296
+ id: z.ZodString;
297
+ }, z.core.$strip>>>;
298
+ description: z.ZodOptional<z.ZodString>;
299
+ }, z.core.$strip>, z.ZodObject<{
300
+ identifier: z.ZodEnum<{
301
+ operatingCapacity: "operatingCapacity";
302
+ }>;
303
+ value: z.ZodNumber;
304
+ unit: z.ZodEnum<{
305
+ kW: "kW";
306
+ MW: "MW";
307
+ GW: "GW";
308
+ kWh: "kWh";
309
+ MWh: "MWh";
310
+ GWh: "GWh";
311
+ acre: "acre";
312
+ hectare: "hectare";
313
+ square_foot: "square_foot";
314
+ square_metre: "square_metre";
315
+ usd: "usd";
316
+ eur: "eur";
317
+ gbp: "gbp";
318
+ }>;
319
+ }, z.core.$strip>], "identifier">>>;
320
+ projectName: z.ZodString;
321
+ queueApplications: z.ZodOptional<z.ZodArray<z.ZodObject<{
322
+ queueKey: z.ZodOptional<z.ZodString>;
323
+ applicationId: z.ZodOptional<z.ZodString>;
324
+ queueDataset: z.ZodOptional<z.ZodString>;
325
+ id: z.ZodString;
326
+ identifier: z.ZodString;
327
+ }, z.core.$strip>>>;
328
+ regions: z.ZodArray<z.ZodObject<{
329
+ identifier: z.ZodString;
330
+ id: z.ZodString;
331
+ }, z.core.$strip>>;
332
+ sectors: z.ZodOptional<z.ZodArray<z.ZodObject<{
333
+ source: z.ZodOptional<z.ZodString>;
334
+ identifier: z.ZodString;
335
+ id: z.ZodString;
336
+ }, z.core.$strip>>>;
337
+ showProject: z.ZodBoolean;
338
+ sizeFields: z.ZodOptional<z.ZodObject<{
339
+ building: z.ZodOptional<z.ZodObject<{
340
+ square_foot: z.ZodNumber;
341
+ square_metre: z.ZodNumber;
342
+ }, z.core.$strip>>;
343
+ land: z.ZodOptional<z.ZodObject<{
344
+ acre: z.ZodNumber;
345
+ hectare: z.ZodNumber;
346
+ }, z.core.$strip>>;
347
+ }, z.core.$strip>>;
348
+ status: z.ZodArray<z.ZodObject<{
349
+ identifier: z.ZodString;
350
+ id: z.ZodString;
351
+ }, z.core.$strip>>;
352
+ substation: z.ZodOptional<z.ZodString>;
353
+ totalMw: z.ZodOptional<z.ZodNumber>;
354
+ totals: z.ZodOptional<z.ZodObject<{
355
+ offtaker: z.ZodOptional<z.ZodNumber>;
356
+ projects: z.ZodOptional<z.ZodNumber>;
357
+ keyPeople: z.ZodOptional<z.ZodNumber>;
358
+ documents: z.ZodOptional<z.ZodNumber>;
359
+ organizations: z.ZodOptional<z.ZodNumber>;
360
+ queueApplications: z.ZodOptional<z.ZodNumber>;
361
+ utility: z.ZodOptional<z.ZodNumber>;
362
+ puc: z.ZodOptional<z.ZodNumber>;
363
+ epc: z.ZodOptional<z.ZodNumber>;
364
+ developer: z.ZodOptional<z.ZodNumber>;
365
+ intels: z.ZodOptional<z.ZodNumber>;
366
+ signals: z.ZodOptional<z.ZodNumber>;
367
+ }, z.core.$strip>>;
368
+ signals: z.ZodOptional<z.ZodArray<z.ZodObject<{
369
+ documents: z.ZodArray<z.ZodObject<{
370
+ filename: z.ZodString;
371
+ size: z.ZodOptional<z.ZodString>;
372
+ created: z.ZodOptional<z.ZodString>;
373
+ filing_id: z.ZodOptional<z.ZodString>;
374
+ mimetype: z.ZodOptional<z.ZodString>;
375
+ type: z.ZodOptional<z.ZodArray<z.ZodString>>;
376
+ document_id: z.ZodString;
377
+ scanResultStatus: z.ZodOptional<z.ZodString>;
378
+ key: z.ZodOptional<z.ZodString>;
379
+ username: z.ZodOptional<z.ZodString>;
380
+ url: z.ZodOptional<z.ZodString>;
381
+ }, z.core.$strip>>;
382
+ subType: z.ZodArray<z.ZodObject<{
383
+ identifier: z.ZodString;
384
+ id: z.ZodString;
385
+ parentId: z.ZodOptional<z.ZodString>;
386
+ }, z.core.$strip>>;
387
+ id: z.ZodString;
388
+ type: z.ZodObject<{
389
+ identifier: z.ZodString;
390
+ id: z.ZodString;
391
+ }, z.core.$strip>;
392
+ headline: z.ZodString;
393
+ }, z.core.$strip>>>;
394
+ documents: z.ZodOptional<z.ZodArray<z.ZodObject<{
395
+ filename: z.ZodString;
396
+ size: z.ZodOptional<z.ZodString>;
397
+ created: z.ZodString;
398
+ filing_id: z.ZodString;
399
+ mimetype: z.ZodOptional<z.ZodString>;
400
+ type: z.ZodArray<z.ZodString>;
401
+ document_id: z.ZodString;
402
+ scanResultStatus: z.ZodOptional<z.ZodString>;
403
+ key: z.ZodOptional<z.ZodString>;
404
+ url: z.ZodOptional<z.ZodString>;
405
+ username: z.ZodString;
406
+ isSignal: z.ZodOptional<z.ZodBoolean>;
407
+ }, z.core.$strip>>>;
408
+ keyPeople: z.ZodOptional<z.ZodArray<z.ZodObject<{
409
+ identifier: z.ZodString;
410
+ fullName: z.ZodString;
411
+ id: z.ZodString;
412
+ linkedinUrl: z.ZodOptional<z.ZodString>;
413
+ roles: z.ZodArray<z.ZodString>;
414
+ email: z.ZodString;
415
+ source: z.ZodString;
416
+ phone: z.ZodString;
417
+ }, z.core.$strip>>>;
418
+ }, z.core.$strict>;
419
+ export declare const dataCenterDetailsSchemaV1: z.ZodObject<{
420
+ id: z.ZodString;
421
+ $organizations: z.ZodOptional<z.ZodString>;
422
+ '#developers': z.ZodOptional<z.ZodArray<z.ZodString>>;
423
+ '#epcs': z.ZodOptional<z.ZodArray<z.ZodString>>;
424
+ '#utilities': z.ZodOptional<z.ZodArray<z.ZodString>>;
425
+ allSectors: z.ZodOptional<z.ZodString>;
426
+ audiences: z.ZodArray<z.ZodObject<{
427
+ identifier: z.ZodString;
428
+ id: z.ZodString;
429
+ }, z.core.$strip>>;
430
+ cost: z.ZodOptional<z.ZodObject<{
431
+ value: z.ZodOptional<z.ZodNumber>;
432
+ unit: z.ZodEnum<{
433
+ kW: "kW";
434
+ MW: "MW";
435
+ GW: "GW";
436
+ kWh: "kWh";
437
+ MWh: "MWh";
438
+ GWh: "GWh";
439
+ acre: "acre";
440
+ hectare: "hectare";
441
+ square_foot: "square_foot";
442
+ square_metre: "square_metre";
443
+ usd: "usd";
444
+ eur: "eur";
445
+ gbp: "gbp";
446
+ }>;
447
+ }, z.core.$strip>>;
448
+ country: z.ZodOptional<z.ZodString>;
449
+ created: z.ZodNullable<z.ZodOptional<z.ZodString>>;
450
+ createdBy: z.ZodArray<z.ZodObject<{
451
+ identifier: z.ZodString;
452
+ id: z.ZodString;
453
+ }, z.core.$strip>>;
454
+ externalNotes: z.ZodOptional<z.ZodString>;
455
+ geo: z.ZodObject<{
456
+ default: z.ZodOptional<z.ZodObject<{
457
+ lat: z.ZodNumber;
458
+ lon: z.ZodNumber;
459
+ }, z.core.$strip>>;
460
+ defaultValue: z.ZodOptional<z.ZodString>;
461
+ location: z.ZodOptional<z.ZodObject<{
462
+ lat: z.ZodNumber;
463
+ lon: z.ZodNumber;
464
+ }, z.core.$strip>>;
465
+ facility: z.ZodOptional<z.ZodObject<{
466
+ lat: z.ZodNumber;
467
+ lon: z.ZodNumber;
468
+ }, z.core.$strip>>;
469
+ county: z.ZodOptional<z.ZodObject<{
470
+ lat: z.ZodNumber;
471
+ lon: z.ZodNumber;
472
+ }, z.core.$strip>>;
473
+ }, z.core.$strip>;
474
+ intel: z.ZodOptional<z.ZodArray<z.ZodObject<{
475
+ identifier: z.ZodString;
476
+ intelSections: z.ZodArray<z.ZodObject<{
477
+ identifier: z.ZodString;
478
+ id: z.ZodString;
479
+ key: z.ZodString;
480
+ }, z.core.$strip>>;
481
+ regions: z.ZodArray<z.ZodObject<{
482
+ identifier: z.ZodString;
483
+ id: z.ZodString;
484
+ key: z.ZodString;
485
+ }, z.core.$strip>>;
486
+ publishedTime: z.ZodString;
487
+ audiences: z.ZodArray<z.ZodObject<{
488
+ identifier: z.ZodString;
489
+ id: z.ZodString;
490
+ key: z.ZodString;
491
+ }, z.core.$strip>>;
492
+ id: z.ZodString;
493
+ }, z.core.$strip>>>;
494
+ internalNotes: z.ZodOptional<z.ZodString>;
495
+ localCity: z.ZodOptional<z.ZodString>;
496
+ localCounty: z.ZodOptional<z.ZodString>;
497
+ localState: z.ZodOptional<z.ZodString>;
498
+ location: z.ZodArray<z.ZodObject<{
499
+ identifier: z.ZodString;
500
+ id: z.ZodString;
501
+ isApproximate: z.ZodOptional<z.ZodBoolean>;
502
+ components: z.ZodOptional<z.ZodObject<{
503
+ 'ISO_3166-1_alpha-2': z.ZodOptional<z.ZodString>;
504
+ 'ISO_3166-1_alpha-3': z.ZodOptional<z.ZodString>;
505
+ 'ISO_3166-2': z.ZodOptional<z.ZodArray<z.ZodString>>;
506
+ _category: z.ZodOptional<z.ZodString>;
507
+ _normalized_city: z.ZodOptional<z.ZodString>;
508
+ _type: z.ZodString;
509
+ city: z.ZodOptional<z.ZodString>;
510
+ continent: z.ZodOptional<z.ZodString>;
511
+ country: z.ZodOptional<z.ZodString>;
512
+ country_code: z.ZodOptional<z.ZodString>;
513
+ state_code: z.ZodOptional<z.ZodString>;
514
+ county: z.ZodOptional<z.ZodString>;
515
+ municipality: z.ZodOptional<z.ZodString>;
516
+ political_union: z.ZodOptional<z.ZodString>;
517
+ state: z.ZodOptional<z.ZodString>;
518
+ state_district: z.ZodOptional<z.ZodString>;
519
+ }, z.core.$strip>>;
520
+ geometry: z.ZodOptional<z.ZodObject<{
521
+ lat: z.ZodNumber;
522
+ lng: z.ZodNumber;
523
+ }, z.core.$strip>>;
524
+ override: z.ZodOptional<z.ZodBoolean>;
525
+ }, z.core.$strip>>;
526
+ modified: z.ZodNullable<z.ZodOptional<z.ZodString>>;
527
+ onsiteGeneration: z.ZodOptional<z.ZodObject<{
528
+ enabled: z.ZodOptional<z.ZodBoolean>;
529
+ description: z.ZodOptional<z.ZodString>;
530
+ powerCapacity: z.ZodOptional<z.ZodObject<{
531
+ value: z.ZodOptional<z.ZodNumber>;
532
+ unit: z.ZodEnum<{
533
+ kW: "kW";
534
+ MW: "MW";
535
+ GW: "GW";
536
+ kWh: "kWh";
537
+ MWh: "MWh";
538
+ GWh: "GWh";
539
+ acre: "acre";
540
+ hectare: "hectare";
541
+ square_foot: "square_foot";
542
+ square_metre: "square_metre";
543
+ usd: "usd";
544
+ eur: "eur";
545
+ gbp: "gbp";
546
+ }>;
547
+ sectors: z.ZodOptional<z.ZodArray<z.ZodOptional<z.ZodObject<{
548
+ identifier: z.ZodString;
549
+ id: z.ZodString;
550
+ }, z.core.$strip>>>>;
551
+ }, z.core.$strip>>;
552
+ }, z.core.$strip>>;
553
+ organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
554
+ identifier: z.ZodString;
555
+ id: z.ZodString;
556
+ role: z.ZodString;
557
+ ref: z.ZodOptional<z.ZodString>;
558
+ }, z.core.$strip>>>;
559
+ plannedOperationalDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
560
+ powerFields: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
561
+ value: z.ZodNumber;
562
+ unit: z.ZodEnum<{
563
+ kW: "kW";
564
+ MW: "MW";
565
+ kWh: "kWh";
566
+ MWh: "MWh";
567
+ }>;
568
+ identifier: z.ZodEnum<{
569
+ onsiteGeneration: "onsiteGeneration";
570
+ backupGeneration: "backupGeneration";
571
+ }>;
572
+ storage: z.ZodOptional<z.ZodObject<{
573
+ value: z.ZodNumber;
574
+ unit: z.ZodEnum<{
575
+ kW: "kW";
576
+ MW: "MW";
577
+ kWh: "kWh";
578
+ MWh: "MWh";
579
+ }>;
580
+ }, z.core.$strip>>;
581
+ sectors: z.ZodOptional<z.ZodArray<z.ZodObject<{
582
+ identifier: z.ZodString;
583
+ id: z.ZodString;
584
+ }, z.core.$strip>>>;
585
+ description: z.ZodOptional<z.ZodString>;
586
+ }, z.core.$strip>, z.ZodObject<{
587
+ identifier: z.ZodEnum<{
588
+ operatingCapacity: "operatingCapacity";
589
+ }>;
590
+ value: z.ZodNumber;
591
+ unit: z.ZodEnum<{
592
+ kW: "kW";
593
+ MW: "MW";
594
+ GW: "GW";
595
+ kWh: "kWh";
596
+ MWh: "MWh";
597
+ GWh: "GWh";
598
+ acre: "acre";
599
+ hectare: "hectare";
600
+ square_foot: "square_foot";
601
+ square_metre: "square_metre";
602
+ usd: "usd";
603
+ eur: "eur";
604
+ gbp: "gbp";
605
+ }>;
606
+ }, z.core.$strip>], "identifier">>>;
607
+ projectName: z.ZodString;
608
+ queueApplications: z.ZodOptional<z.ZodArray<z.ZodObject<{
609
+ queueKey: z.ZodOptional<z.ZodString>;
610
+ applicationId: z.ZodOptional<z.ZodString>;
611
+ queueDataset: z.ZodOptional<z.ZodString>;
612
+ id: z.ZodString;
613
+ identifier: z.ZodString;
614
+ }, z.core.$strip>>>;
615
+ regions: z.ZodArray<z.ZodObject<{
616
+ identifier: z.ZodString;
617
+ id: z.ZodString;
618
+ }, z.core.$strip>>;
619
+ sectors: z.ZodOptional<z.ZodArray<z.ZodObject<{
620
+ source: z.ZodOptional<z.ZodString>;
621
+ identifier: z.ZodString;
622
+ id: z.ZodString;
623
+ }, z.core.$strip>>>;
624
+ showProject: z.ZodBoolean;
625
+ sizeFields: z.ZodOptional<z.ZodObject<{
626
+ building: z.ZodOptional<z.ZodObject<{
627
+ square_foot: z.ZodNumber;
628
+ square_metre: z.ZodNumber;
629
+ }, z.core.$strip>>;
630
+ land: z.ZodOptional<z.ZodObject<{
631
+ acre: z.ZodNumber;
632
+ hectare: z.ZodNumber;
633
+ }, z.core.$strip>>;
634
+ }, z.core.$strip>>;
635
+ status: z.ZodArray<z.ZodObject<{
636
+ identifier: z.ZodString;
637
+ id: z.ZodString;
638
+ }, z.core.$strip>>;
639
+ substation: z.ZodOptional<z.ZodString>;
640
+ totalMw: z.ZodOptional<z.ZodNumber>;
641
+ totals: z.ZodOptional<z.ZodObject<{
642
+ offtaker: z.ZodOptional<z.ZodNumber>;
643
+ projects: z.ZodOptional<z.ZodNumber>;
644
+ keyPeople: z.ZodOptional<z.ZodNumber>;
645
+ documents: z.ZodOptional<z.ZodNumber>;
646
+ organizations: z.ZodOptional<z.ZodNumber>;
647
+ queueApplications: z.ZodOptional<z.ZodNumber>;
648
+ utility: z.ZodOptional<z.ZodNumber>;
649
+ puc: z.ZodOptional<z.ZodNumber>;
650
+ epc: z.ZodOptional<z.ZodNumber>;
651
+ developer: z.ZodOptional<z.ZodNumber>;
652
+ intels: z.ZodOptional<z.ZodNumber>;
653
+ signals: z.ZodOptional<z.ZodNumber>;
654
+ }, z.core.$strip>>;
655
+ signals: z.ZodOptional<z.ZodArray<z.ZodObject<{
656
+ documents: z.ZodArray<z.ZodObject<{
657
+ filename: z.ZodString;
658
+ size: z.ZodOptional<z.ZodString>;
659
+ created: z.ZodOptional<z.ZodString>;
660
+ filing_id: z.ZodOptional<z.ZodString>;
661
+ mimetype: z.ZodOptional<z.ZodString>;
662
+ type: z.ZodOptional<z.ZodArray<z.ZodString>>;
663
+ document_id: z.ZodString;
664
+ scanResultStatus: z.ZodOptional<z.ZodString>;
665
+ key: z.ZodOptional<z.ZodString>;
666
+ username: z.ZodOptional<z.ZodString>;
667
+ url: z.ZodOptional<z.ZodString>;
668
+ }, z.core.$strip>>;
669
+ subType: z.ZodArray<z.ZodObject<{
670
+ identifier: z.ZodString;
671
+ id: z.ZodString;
672
+ parentId: z.ZodOptional<z.ZodString>;
673
+ }, z.core.$strip>>;
674
+ id: z.ZodString;
675
+ type: z.ZodObject<{
676
+ identifier: z.ZodString;
677
+ id: z.ZodString;
678
+ }, z.core.$strip>;
679
+ headline: z.ZodString;
680
+ }, z.core.$strip>>>;
681
+ documents: z.ZodOptional<z.ZodArray<z.ZodObject<{
682
+ filename: z.ZodString;
683
+ size: z.ZodOptional<z.ZodString>;
684
+ created: z.ZodString;
685
+ filing_id: z.ZodString;
686
+ mimetype: z.ZodOptional<z.ZodString>;
687
+ type: z.ZodArray<z.ZodString>;
688
+ document_id: z.ZodString;
689
+ scanResultStatus: z.ZodOptional<z.ZodString>;
690
+ key: z.ZodOptional<z.ZodString>;
691
+ url: z.ZodOptional<z.ZodString>;
692
+ username: z.ZodString;
693
+ isSignal: z.ZodOptional<z.ZodBoolean>;
694
+ }, z.core.$strip>>>;
695
+ keyPeople: z.ZodOptional<z.ZodArray<z.ZodObject<{
696
+ identifier: z.ZodString;
697
+ fullName: z.ZodString;
698
+ id: z.ZodString;
699
+ linkedinUrl: z.ZodOptional<z.ZodString>;
700
+ roles: z.ZodArray<z.ZodString>;
701
+ email: z.ZodString;
702
+ source: z.ZodString;
703
+ phone: z.ZodString;
704
+ }, z.core.$strip>>>;
705
+ }, z.core.$strict>;
706
+ export declare const dataCenterExportSchemaV1: z.ZodObject<{
707
+ id: z.ZodString;
708
+ $organizations: z.ZodOptional<z.ZodString>;
709
+ '#developers': z.ZodOptional<z.ZodArray<z.ZodString>>;
710
+ '#epcs': z.ZodOptional<z.ZodArray<z.ZodString>>;
711
+ '#utilities': z.ZodOptional<z.ZodArray<z.ZodString>>;
712
+ allSectors: z.ZodOptional<z.ZodString>;
713
+ audiences: z.ZodArray<z.ZodObject<{
714
+ identifier: z.ZodString;
715
+ id: z.ZodString;
716
+ }, z.core.$strip>>;
717
+ cost: z.ZodOptional<z.ZodObject<{
718
+ value: z.ZodOptional<z.ZodNumber>;
719
+ unit: z.ZodEnum<{
720
+ kW: "kW";
721
+ MW: "MW";
722
+ GW: "GW";
723
+ kWh: "kWh";
724
+ MWh: "MWh";
725
+ GWh: "GWh";
726
+ acre: "acre";
727
+ hectare: "hectare";
728
+ square_foot: "square_foot";
729
+ square_metre: "square_metre";
730
+ usd: "usd";
731
+ eur: "eur";
732
+ gbp: "gbp";
733
+ }>;
734
+ }, z.core.$strip>>;
735
+ country: z.ZodOptional<z.ZodString>;
736
+ created: z.ZodNullable<z.ZodOptional<z.ZodString>>;
737
+ createdBy: z.ZodArray<z.ZodObject<{
738
+ identifier: z.ZodString;
739
+ id: z.ZodString;
740
+ }, z.core.$strip>>;
741
+ externalNotes: z.ZodOptional<z.ZodString>;
742
+ geo: z.ZodObject<{
743
+ default: z.ZodOptional<z.ZodObject<{
744
+ lat: z.ZodNumber;
745
+ lon: z.ZodNumber;
746
+ }, z.core.$strip>>;
747
+ defaultValue: z.ZodOptional<z.ZodString>;
748
+ location: z.ZodOptional<z.ZodObject<{
749
+ lat: z.ZodNumber;
750
+ lon: z.ZodNumber;
751
+ }, z.core.$strip>>;
752
+ facility: z.ZodOptional<z.ZodObject<{
753
+ lat: z.ZodNumber;
754
+ lon: z.ZodNumber;
755
+ }, z.core.$strip>>;
756
+ county: z.ZodOptional<z.ZodObject<{
757
+ lat: z.ZodNumber;
758
+ lon: z.ZodNumber;
759
+ }, z.core.$strip>>;
760
+ }, z.core.$strip>;
761
+ intel: z.ZodOptional<z.ZodArray<z.ZodObject<{
762
+ identifier: z.ZodString;
763
+ intelSections: z.ZodArray<z.ZodObject<{
764
+ identifier: z.ZodString;
765
+ id: z.ZodString;
766
+ key: z.ZodString;
767
+ }, z.core.$strip>>;
768
+ regions: z.ZodArray<z.ZodObject<{
769
+ identifier: z.ZodString;
770
+ id: z.ZodString;
771
+ key: z.ZodString;
772
+ }, z.core.$strip>>;
773
+ publishedTime: z.ZodString;
774
+ audiences: z.ZodArray<z.ZodObject<{
775
+ identifier: z.ZodString;
776
+ id: z.ZodString;
777
+ key: z.ZodString;
778
+ }, z.core.$strip>>;
779
+ id: z.ZodString;
780
+ }, z.core.$strip>>>;
781
+ internalNotes: z.ZodOptional<z.ZodString>;
782
+ localCity: z.ZodOptional<z.ZodString>;
783
+ localCounty: z.ZodOptional<z.ZodString>;
784
+ localState: z.ZodOptional<z.ZodString>;
785
+ location: z.ZodArray<z.ZodObject<{
786
+ identifier: z.ZodString;
787
+ id: z.ZodString;
788
+ isApproximate: z.ZodOptional<z.ZodBoolean>;
789
+ components: z.ZodOptional<z.ZodObject<{
790
+ 'ISO_3166-1_alpha-2': z.ZodOptional<z.ZodString>;
791
+ 'ISO_3166-1_alpha-3': z.ZodOptional<z.ZodString>;
792
+ 'ISO_3166-2': z.ZodOptional<z.ZodArray<z.ZodString>>;
793
+ _category: z.ZodOptional<z.ZodString>;
794
+ _normalized_city: z.ZodOptional<z.ZodString>;
795
+ _type: z.ZodString;
796
+ city: z.ZodOptional<z.ZodString>;
797
+ continent: z.ZodOptional<z.ZodString>;
798
+ country: z.ZodOptional<z.ZodString>;
799
+ country_code: z.ZodOptional<z.ZodString>;
800
+ state_code: z.ZodOptional<z.ZodString>;
801
+ county: z.ZodOptional<z.ZodString>;
802
+ municipality: z.ZodOptional<z.ZodString>;
803
+ political_union: z.ZodOptional<z.ZodString>;
804
+ state: z.ZodOptional<z.ZodString>;
805
+ state_district: z.ZodOptional<z.ZodString>;
806
+ }, z.core.$strip>>;
807
+ geometry: z.ZodOptional<z.ZodObject<{
808
+ lat: z.ZodNumber;
809
+ lng: z.ZodNumber;
810
+ }, z.core.$strip>>;
811
+ override: z.ZodOptional<z.ZodBoolean>;
812
+ }, z.core.$strip>>;
813
+ modified: z.ZodNullable<z.ZodOptional<z.ZodString>>;
814
+ onsiteGeneration: z.ZodOptional<z.ZodObject<{
815
+ enabled: z.ZodOptional<z.ZodBoolean>;
816
+ description: z.ZodOptional<z.ZodString>;
817
+ powerCapacity: z.ZodOptional<z.ZodObject<{
818
+ value: z.ZodOptional<z.ZodNumber>;
819
+ unit: z.ZodEnum<{
820
+ kW: "kW";
821
+ MW: "MW";
822
+ GW: "GW";
823
+ kWh: "kWh";
824
+ MWh: "MWh";
825
+ GWh: "GWh";
826
+ acre: "acre";
827
+ hectare: "hectare";
828
+ square_foot: "square_foot";
829
+ square_metre: "square_metre";
830
+ usd: "usd";
831
+ eur: "eur";
832
+ gbp: "gbp";
833
+ }>;
834
+ sectors: z.ZodOptional<z.ZodArray<z.ZodOptional<z.ZodObject<{
835
+ identifier: z.ZodString;
836
+ id: z.ZodString;
837
+ }, z.core.$strip>>>>;
838
+ }, z.core.$strip>>;
839
+ }, z.core.$strip>>;
840
+ organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
841
+ identifier: z.ZodString;
842
+ id: z.ZodString;
843
+ role: z.ZodString;
844
+ ref: z.ZodOptional<z.ZodString>;
845
+ }, z.core.$strip>>>;
846
+ plannedOperationalDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
847
+ powerFields: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
848
+ value: z.ZodNumber;
849
+ unit: z.ZodEnum<{
850
+ kW: "kW";
851
+ MW: "MW";
852
+ kWh: "kWh";
853
+ MWh: "MWh";
854
+ }>;
855
+ identifier: z.ZodEnum<{
856
+ onsiteGeneration: "onsiteGeneration";
857
+ backupGeneration: "backupGeneration";
858
+ }>;
859
+ storage: z.ZodOptional<z.ZodObject<{
860
+ value: z.ZodNumber;
861
+ unit: z.ZodEnum<{
862
+ kW: "kW";
863
+ MW: "MW";
864
+ kWh: "kWh";
865
+ MWh: "MWh";
866
+ }>;
867
+ }, z.core.$strip>>;
868
+ sectors: z.ZodOptional<z.ZodArray<z.ZodObject<{
869
+ identifier: z.ZodString;
870
+ id: z.ZodString;
871
+ }, z.core.$strip>>>;
872
+ description: z.ZodOptional<z.ZodString>;
873
+ }, z.core.$strip>, z.ZodObject<{
874
+ identifier: z.ZodEnum<{
875
+ operatingCapacity: "operatingCapacity";
876
+ }>;
877
+ value: z.ZodNumber;
878
+ unit: z.ZodEnum<{
879
+ kW: "kW";
880
+ MW: "MW";
881
+ GW: "GW";
882
+ kWh: "kWh";
883
+ MWh: "MWh";
884
+ GWh: "GWh";
885
+ acre: "acre";
886
+ hectare: "hectare";
887
+ square_foot: "square_foot";
888
+ square_metre: "square_metre";
889
+ usd: "usd";
890
+ eur: "eur";
891
+ gbp: "gbp";
892
+ }>;
893
+ }, z.core.$strip>], "identifier">>>;
894
+ projectName: z.ZodString;
895
+ queueApplications: z.ZodOptional<z.ZodArray<z.ZodObject<{
896
+ queueKey: z.ZodOptional<z.ZodString>;
897
+ applicationId: z.ZodOptional<z.ZodString>;
898
+ queueDataset: z.ZodOptional<z.ZodString>;
899
+ id: z.ZodString;
900
+ identifier: z.ZodString;
901
+ }, z.core.$strip>>>;
902
+ regions: z.ZodArray<z.ZodObject<{
903
+ identifier: z.ZodString;
904
+ id: z.ZodString;
905
+ }, z.core.$strip>>;
906
+ sectors: z.ZodOptional<z.ZodArray<z.ZodObject<{
907
+ source: z.ZodOptional<z.ZodString>;
908
+ identifier: z.ZodString;
909
+ id: z.ZodString;
910
+ }, z.core.$strip>>>;
911
+ showProject: z.ZodBoolean;
912
+ sizeFields: z.ZodOptional<z.ZodObject<{
913
+ building: z.ZodOptional<z.ZodObject<{
914
+ square_foot: z.ZodNumber;
915
+ square_metre: z.ZodNumber;
916
+ }, z.core.$strip>>;
917
+ land: z.ZodOptional<z.ZodObject<{
918
+ acre: z.ZodNumber;
919
+ hectare: z.ZodNumber;
920
+ }, z.core.$strip>>;
921
+ }, z.core.$strip>>;
922
+ status: z.ZodArray<z.ZodObject<{
923
+ identifier: z.ZodString;
924
+ id: z.ZodString;
925
+ }, z.core.$strip>>;
926
+ substation: z.ZodOptional<z.ZodString>;
927
+ totalMw: z.ZodOptional<z.ZodNumber>;
928
+ totals: z.ZodOptional<z.ZodObject<{
929
+ offtaker: z.ZodOptional<z.ZodNumber>;
930
+ projects: z.ZodOptional<z.ZodNumber>;
931
+ keyPeople: z.ZodOptional<z.ZodNumber>;
932
+ documents: z.ZodOptional<z.ZodNumber>;
933
+ organizations: z.ZodOptional<z.ZodNumber>;
934
+ queueApplications: z.ZodOptional<z.ZodNumber>;
935
+ utility: z.ZodOptional<z.ZodNumber>;
936
+ puc: z.ZodOptional<z.ZodNumber>;
937
+ epc: z.ZodOptional<z.ZodNumber>;
938
+ developer: z.ZodOptional<z.ZodNumber>;
939
+ intels: z.ZodOptional<z.ZodNumber>;
940
+ signals: z.ZodOptional<z.ZodNumber>;
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
+ }, z.core.$strip>>>;
968
+ documents: z.ZodOptional<z.ZodArray<z.ZodObject<{
969
+ filename: z.ZodString;
970
+ size: z.ZodOptional<z.ZodString>;
971
+ created: z.ZodString;
972
+ filing_id: z.ZodString;
973
+ mimetype: z.ZodOptional<z.ZodString>;
974
+ type: z.ZodArray<z.ZodString>;
975
+ document_id: z.ZodString;
976
+ scanResultStatus: z.ZodOptional<z.ZodString>;
977
+ key: z.ZodOptional<z.ZodString>;
978
+ url: z.ZodOptional<z.ZodString>;
979
+ username: z.ZodString;
980
+ isSignal: z.ZodOptional<z.ZodBoolean>;
981
+ }, z.core.$strip>>>;
982
+ keyPeople: z.ZodOptional<z.ZodArray<z.ZodObject<{
983
+ identifier: z.ZodString;
984
+ fullName: z.ZodString;
985
+ id: z.ZodString;
986
+ linkedinUrl: z.ZodOptional<z.ZodString>;
987
+ roles: z.ZodArray<z.ZodString>;
988
+ email: z.ZodString;
989
+ source: z.ZodString;
990
+ phone: z.ZodString;
991
+ }, z.core.$strip>>>;
992
+ }, z.core.$strict>;
993
+ export declare const dataCenterAPISchemaV1: z.ZodObject<{
994
+ sectors: z.ZodOptional<z.ZodArray<z.ZodObject<{
995
+ source: z.ZodOptional<z.ZodString>;
996
+ identifier: z.ZodString;
997
+ id: z.ZodString;
998
+ }, z.core.$strip>>>;
999
+ keyPeople: z.ZodOptional<z.ZodArray<z.ZodObject<{
1000
+ identifier: z.ZodString;
1001
+ fullName: z.ZodString;
1002
+ id: z.ZodString;
1003
+ linkedinUrl: z.ZodOptional<z.ZodString>;
1004
+ roles: z.ZodArray<z.ZodString>;
1005
+ email: z.ZodString;
1006
+ source: z.ZodString;
1007
+ phone: z.ZodString;
1008
+ }, z.core.$strip>>>;
1009
+ id: z.ZodString;
1010
+ plannedOperationalDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1011
+ totalMw: z.ZodOptional<z.ZodNumber>;
1012
+ location: z.ZodArray<z.ZodObject<{
1013
+ identifier: z.ZodString;
1014
+ id: z.ZodString;
1015
+ isApproximate: z.ZodOptional<z.ZodBoolean>;
1016
+ components: z.ZodOptional<z.ZodObject<{
1017
+ 'ISO_3166-1_alpha-2': z.ZodOptional<z.ZodString>;
1018
+ 'ISO_3166-1_alpha-3': z.ZodOptional<z.ZodString>;
1019
+ 'ISO_3166-2': z.ZodOptional<z.ZodArray<z.ZodString>>;
1020
+ _category: z.ZodOptional<z.ZodString>;
1021
+ _normalized_city: z.ZodOptional<z.ZodString>;
1022
+ _type: z.ZodString;
1023
+ city: z.ZodOptional<z.ZodString>;
1024
+ continent: z.ZodOptional<z.ZodString>;
1025
+ country: z.ZodOptional<z.ZodString>;
1026
+ country_code: z.ZodOptional<z.ZodString>;
1027
+ state_code: z.ZodOptional<z.ZodString>;
1028
+ county: z.ZodOptional<z.ZodString>;
1029
+ municipality: z.ZodOptional<z.ZodString>;
1030
+ political_union: z.ZodOptional<z.ZodString>;
1031
+ state: z.ZodOptional<z.ZodString>;
1032
+ state_district: z.ZodOptional<z.ZodString>;
1033
+ }, z.core.$strip>>;
1034
+ geometry: z.ZodOptional<z.ZodObject<{
1035
+ lat: z.ZodNumber;
1036
+ lng: z.ZodNumber;
1037
+ }, z.core.$strip>>;
1038
+ override: z.ZodOptional<z.ZodBoolean>;
1039
+ }, z.core.$strip>>;
1040
+ country: z.ZodOptional<z.ZodString>;
1041
+ created: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1042
+ documents: z.ZodOptional<z.ZodArray<z.ZodObject<{
1043
+ filename: z.ZodString;
1044
+ size: z.ZodOptional<z.ZodString>;
1045
+ created: z.ZodString;
1046
+ filing_id: z.ZodString;
1047
+ mimetype: z.ZodOptional<z.ZodString>;
1048
+ type: z.ZodArray<z.ZodString>;
1049
+ document_id: z.ZodString;
1050
+ scanResultStatus: z.ZodOptional<z.ZodString>;
1051
+ key: z.ZodOptional<z.ZodString>;
1052
+ url: z.ZodOptional<z.ZodString>;
1053
+ username: z.ZodString;
1054
+ isSignal: z.ZodOptional<z.ZodBoolean>;
1055
+ }, z.core.$strip>>>;
1056
+ organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
1057
+ identifier: z.ZodString;
1058
+ id: z.ZodString;
1059
+ role: z.ZodString;
1060
+ ref: z.ZodOptional<z.ZodString>;
1061
+ }, z.core.$strip>>>;
1062
+ queueApplications: z.ZodOptional<z.ZodArray<z.ZodObject<{
1063
+ queueKey: z.ZodOptional<z.ZodString>;
1064
+ applicationId: z.ZodOptional<z.ZodString>;
1065
+ queueDataset: z.ZodOptional<z.ZodString>;
1066
+ id: z.ZodString;
1067
+ identifier: z.ZodString;
1068
+ }, z.core.$strip>>>;
1069
+ signals: z.ZodOptional<z.ZodArray<z.ZodObject<{
1070
+ documents: z.ZodArray<z.ZodObject<{
1071
+ filename: z.ZodString;
1072
+ size: z.ZodOptional<z.ZodString>;
1073
+ created: z.ZodOptional<z.ZodString>;
1074
+ filing_id: z.ZodOptional<z.ZodString>;
1075
+ mimetype: z.ZodOptional<z.ZodString>;
1076
+ type: z.ZodOptional<z.ZodArray<z.ZodString>>;
1077
+ document_id: z.ZodString;
1078
+ scanResultStatus: z.ZodOptional<z.ZodString>;
1079
+ key: z.ZodOptional<z.ZodString>;
1080
+ username: z.ZodOptional<z.ZodString>;
1081
+ url: z.ZodOptional<z.ZodString>;
1082
+ }, z.core.$strip>>;
1083
+ subType: z.ZodArray<z.ZodObject<{
1084
+ identifier: z.ZodString;
1085
+ id: z.ZodString;
1086
+ parentId: z.ZodOptional<z.ZodString>;
1087
+ }, z.core.$strip>>;
1088
+ id: z.ZodString;
1089
+ type: z.ZodObject<{
1090
+ identifier: z.ZodString;
1091
+ id: z.ZodString;
1092
+ }, z.core.$strip>;
1093
+ headline: z.ZodString;
1094
+ }, z.core.$strip>>>;
1095
+ audiences: z.ZodArray<z.ZodObject<{
1096
+ identifier: z.ZodString;
1097
+ id: z.ZodString;
1098
+ }, z.core.$strip>>;
1099
+ regions: z.ZodArray<z.ZodObject<{
1100
+ identifier: z.ZodString;
1101
+ id: z.ZodString;
1102
+ }, z.core.$strip>>;
1103
+ allSectors: z.ZodOptional<z.ZodString>;
1104
+ geo: z.ZodObject<{
1105
+ default: z.ZodOptional<z.ZodObject<{
1106
+ lat: z.ZodNumber;
1107
+ lon: z.ZodNumber;
1108
+ }, z.core.$strip>>;
1109
+ defaultValue: z.ZodOptional<z.ZodString>;
1110
+ location: z.ZodOptional<z.ZodObject<{
1111
+ lat: z.ZodNumber;
1112
+ lon: z.ZodNumber;
1113
+ }, z.core.$strip>>;
1114
+ facility: z.ZodOptional<z.ZodObject<{
1115
+ lat: z.ZodNumber;
1116
+ lon: z.ZodNumber;
1117
+ }, z.core.$strip>>;
1118
+ county: z.ZodOptional<z.ZodObject<{
1119
+ lat: z.ZodNumber;
1120
+ lon: z.ZodNumber;
1121
+ }, z.core.$strip>>;
1122
+ }, z.core.$strip>;
1123
+ totals: z.ZodOptional<z.ZodObject<{
1124
+ offtaker: z.ZodOptional<z.ZodNumber>;
1125
+ projects: z.ZodOptional<z.ZodNumber>;
1126
+ keyPeople: z.ZodOptional<z.ZodNumber>;
1127
+ documents: z.ZodOptional<z.ZodNumber>;
1128
+ organizations: z.ZodOptional<z.ZodNumber>;
1129
+ queueApplications: z.ZodOptional<z.ZodNumber>;
1130
+ utility: z.ZodOptional<z.ZodNumber>;
1131
+ puc: z.ZodOptional<z.ZodNumber>;
1132
+ epc: z.ZodOptional<z.ZodNumber>;
1133
+ developer: z.ZodOptional<z.ZodNumber>;
1134
+ intels: z.ZodOptional<z.ZodNumber>;
1135
+ signals: z.ZodOptional<z.ZodNumber>;
1136
+ }, z.core.$strip>>;
1137
+ $organizations: z.ZodOptional<z.ZodString>;
1138
+ status: z.ZodArray<z.ZodObject<{
1139
+ identifier: z.ZodString;
1140
+ id: z.ZodString;
1141
+ }, z.core.$strip>>;
1142
+ localCounty: z.ZodOptional<z.ZodString>;
1143
+ localState: z.ZodOptional<z.ZodString>;
1144
+ projectName: z.ZodString;
1145
+ cost: z.ZodOptional<z.ZodObject<{
1146
+ value: z.ZodOptional<z.ZodNumber>;
1147
+ unit: z.ZodEnum<{
1148
+ kW: "kW";
1149
+ MW: "MW";
1150
+ GW: "GW";
1151
+ kWh: "kWh";
1152
+ MWh: "MWh";
1153
+ GWh: "GWh";
1154
+ acre: "acre";
1155
+ hectare: "hectare";
1156
+ square_foot: "square_foot";
1157
+ square_metre: "square_metre";
1158
+ usd: "usd";
1159
+ eur: "eur";
1160
+ gbp: "gbp";
1161
+ }>;
1162
+ }, z.core.$strip>>;
1163
+ onsiteGeneration: z.ZodOptional<z.ZodObject<{
1164
+ enabled: z.ZodOptional<z.ZodBoolean>;
1165
+ description: z.ZodOptional<z.ZodString>;
1166
+ powerCapacity: z.ZodOptional<z.ZodObject<{
1167
+ value: z.ZodOptional<z.ZodNumber>;
1168
+ unit: z.ZodEnum<{
1169
+ kW: "kW";
1170
+ MW: "MW";
1171
+ GW: "GW";
1172
+ kWh: "kWh";
1173
+ MWh: "MWh";
1174
+ GWh: "GWh";
1175
+ acre: "acre";
1176
+ hectare: "hectare";
1177
+ square_foot: "square_foot";
1178
+ square_metre: "square_metre";
1179
+ usd: "usd";
1180
+ eur: "eur";
1181
+ gbp: "gbp";
1182
+ }>;
1183
+ sectors: z.ZodOptional<z.ZodArray<z.ZodOptional<z.ZodObject<{
1184
+ identifier: z.ZodString;
1185
+ id: z.ZodString;
1186
+ }, z.core.$strip>>>>;
1187
+ }, z.core.$strip>>;
1188
+ }, z.core.$strip>>;
1189
+ '#developers': z.ZodOptional<z.ZodArray<z.ZodString>>;
1190
+ '#epcs': z.ZodOptional<z.ZodArray<z.ZodString>>;
1191
+ '#utilities': z.ZodOptional<z.ZodArray<z.ZodString>>;
1192
+ externalNotes: z.ZodOptional<z.ZodString>;
1193
+ intel: z.ZodOptional<z.ZodArray<z.ZodObject<{
1194
+ identifier: z.ZodString;
1195
+ intelSections: z.ZodArray<z.ZodObject<{
1196
+ identifier: z.ZodString;
1197
+ id: z.ZodString;
1198
+ key: z.ZodString;
1199
+ }, z.core.$strip>>;
1200
+ regions: z.ZodArray<z.ZodObject<{
1201
+ identifier: z.ZodString;
1202
+ id: z.ZodString;
1203
+ key: z.ZodString;
1204
+ }, z.core.$strip>>;
1205
+ publishedTime: z.ZodString;
1206
+ audiences: z.ZodArray<z.ZodObject<{
1207
+ identifier: z.ZodString;
1208
+ id: z.ZodString;
1209
+ key: z.ZodString;
1210
+ }, z.core.$strip>>;
1211
+ id: z.ZodString;
1212
+ }, z.core.$strip>>>;
1213
+ localCity: z.ZodOptional<z.ZodString>;
1214
+ modified: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1215
+ powerFields: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
1216
+ value: z.ZodNumber;
1217
+ unit: z.ZodEnum<{
1218
+ kW: "kW";
1219
+ MW: "MW";
1220
+ kWh: "kWh";
1221
+ MWh: "MWh";
1222
+ }>;
1223
+ identifier: z.ZodEnum<{
1224
+ onsiteGeneration: "onsiteGeneration";
1225
+ backupGeneration: "backupGeneration";
1226
+ }>;
1227
+ storage: z.ZodOptional<z.ZodObject<{
1228
+ value: z.ZodNumber;
1229
+ unit: z.ZodEnum<{
1230
+ kW: "kW";
1231
+ MW: "MW";
1232
+ kWh: "kWh";
1233
+ MWh: "MWh";
1234
+ }>;
1235
+ }, z.core.$strip>>;
1236
+ sectors: z.ZodOptional<z.ZodArray<z.ZodObject<{
1237
+ identifier: z.ZodString;
1238
+ id: z.ZodString;
1239
+ }, z.core.$strip>>>;
1240
+ description: z.ZodOptional<z.ZodString>;
1241
+ }, z.core.$strip>, z.ZodObject<{
1242
+ identifier: z.ZodEnum<{
1243
+ operatingCapacity: "operatingCapacity";
1244
+ }>;
1245
+ value: z.ZodNumber;
1246
+ unit: z.ZodEnum<{
1247
+ kW: "kW";
1248
+ MW: "MW";
1249
+ GW: "GW";
1250
+ kWh: "kWh";
1251
+ MWh: "MWh";
1252
+ GWh: "GWh";
1253
+ acre: "acre";
1254
+ hectare: "hectare";
1255
+ square_foot: "square_foot";
1256
+ square_metre: "square_metre";
1257
+ usd: "usd";
1258
+ eur: "eur";
1259
+ gbp: "gbp";
1260
+ }>;
1261
+ }, z.core.$strip>], "identifier">>>;
1262
+ showProject: z.ZodBoolean;
1263
+ sizeFields: z.ZodOptional<z.ZodObject<{
1264
+ building: z.ZodOptional<z.ZodObject<{
1265
+ square_foot: z.ZodNumber;
1266
+ square_metre: z.ZodNumber;
1267
+ }, z.core.$strip>>;
1268
+ land: z.ZodOptional<z.ZodObject<{
1269
+ acre: z.ZodNumber;
1270
+ hectare: z.ZodNumber;
1271
+ }, z.core.$strip>>;
1272
+ }, z.core.$strip>>;
1273
+ substation: z.ZodOptional<z.ZodString>;
1274
+ }, z.core.$strict>;
1275
+ export declare const dataCenterByLocationListSchemaV1: z.ZodObject<{
1276
+ id: z.ZodString;
1277
+ $organizations: z.ZodOptional<z.ZodString>;
1278
+ '#developers': z.ZodOptional<z.ZodArray<z.ZodString>>;
1279
+ '#epcs': z.ZodOptional<z.ZodArray<z.ZodString>>;
1280
+ '#utilities': z.ZodOptional<z.ZodArray<z.ZodString>>;
1281
+ allSectors: z.ZodOptional<z.ZodString>;
1282
+ audiences: z.ZodArray<z.ZodObject<{
1283
+ identifier: z.ZodString;
1284
+ id: z.ZodString;
1285
+ }, z.core.$strip>>;
1286
+ cost: z.ZodOptional<z.ZodObject<{
1287
+ value: z.ZodOptional<z.ZodNumber>;
1288
+ unit: z.ZodEnum<{
1289
+ kW: "kW";
1290
+ MW: "MW";
1291
+ GW: "GW";
1292
+ kWh: "kWh";
1293
+ MWh: "MWh";
1294
+ GWh: "GWh";
1295
+ acre: "acre";
1296
+ hectare: "hectare";
1297
+ square_foot: "square_foot";
1298
+ square_metre: "square_metre";
1299
+ usd: "usd";
1300
+ eur: "eur";
1301
+ gbp: "gbp";
1302
+ }>;
1303
+ }, z.core.$strip>>;
1304
+ country: z.ZodOptional<z.ZodString>;
1305
+ created: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1306
+ createdBy: z.ZodArray<z.ZodObject<{
1307
+ identifier: z.ZodString;
1308
+ id: z.ZodString;
1309
+ }, z.core.$strip>>;
1310
+ externalNotes: z.ZodOptional<z.ZodString>;
1311
+ geo: z.ZodObject<{
1312
+ default: z.ZodOptional<z.ZodObject<{
1313
+ lat: z.ZodNumber;
1314
+ lon: z.ZodNumber;
1315
+ }, z.core.$strip>>;
1316
+ defaultValue: z.ZodOptional<z.ZodString>;
1317
+ location: z.ZodOptional<z.ZodObject<{
1318
+ lat: z.ZodNumber;
1319
+ lon: z.ZodNumber;
1320
+ }, z.core.$strip>>;
1321
+ facility: z.ZodOptional<z.ZodObject<{
1322
+ lat: z.ZodNumber;
1323
+ lon: z.ZodNumber;
1324
+ }, z.core.$strip>>;
1325
+ county: z.ZodOptional<z.ZodObject<{
1326
+ lat: z.ZodNumber;
1327
+ lon: z.ZodNumber;
1328
+ }, z.core.$strip>>;
1329
+ }, z.core.$strip>;
1330
+ intel: z.ZodOptional<z.ZodArray<z.ZodObject<{
1331
+ identifier: z.ZodString;
1332
+ intelSections: z.ZodArray<z.ZodObject<{
1333
+ identifier: z.ZodString;
1334
+ id: z.ZodString;
1335
+ key: z.ZodString;
1336
+ }, z.core.$strip>>;
1337
+ regions: z.ZodArray<z.ZodObject<{
1338
+ identifier: z.ZodString;
1339
+ id: z.ZodString;
1340
+ key: z.ZodString;
1341
+ }, z.core.$strip>>;
1342
+ publishedTime: z.ZodString;
1343
+ audiences: z.ZodArray<z.ZodObject<{
1344
+ identifier: z.ZodString;
1345
+ id: z.ZodString;
1346
+ key: z.ZodString;
1347
+ }, z.core.$strip>>;
1348
+ id: z.ZodString;
1349
+ }, z.core.$strip>>>;
1350
+ internalNotes: z.ZodOptional<z.ZodString>;
1351
+ localCity: z.ZodOptional<z.ZodString>;
1352
+ localCounty: z.ZodOptional<z.ZodString>;
1353
+ localState: z.ZodOptional<z.ZodString>;
1354
+ location: z.ZodArray<z.ZodObject<{
1355
+ identifier: z.ZodString;
1356
+ id: z.ZodString;
1357
+ isApproximate: z.ZodOptional<z.ZodBoolean>;
1358
+ components: z.ZodOptional<z.ZodObject<{
1359
+ 'ISO_3166-1_alpha-2': z.ZodOptional<z.ZodString>;
1360
+ 'ISO_3166-1_alpha-3': z.ZodOptional<z.ZodString>;
1361
+ 'ISO_3166-2': z.ZodOptional<z.ZodArray<z.ZodString>>;
1362
+ _category: z.ZodOptional<z.ZodString>;
1363
+ _normalized_city: z.ZodOptional<z.ZodString>;
1364
+ _type: z.ZodString;
1365
+ city: z.ZodOptional<z.ZodString>;
1366
+ continent: z.ZodOptional<z.ZodString>;
1367
+ country: z.ZodOptional<z.ZodString>;
1368
+ country_code: z.ZodOptional<z.ZodString>;
1369
+ state_code: z.ZodOptional<z.ZodString>;
1370
+ county: z.ZodOptional<z.ZodString>;
1371
+ municipality: z.ZodOptional<z.ZodString>;
1372
+ political_union: z.ZodOptional<z.ZodString>;
1373
+ state: z.ZodOptional<z.ZodString>;
1374
+ state_district: z.ZodOptional<z.ZodString>;
1375
+ }, z.core.$strip>>;
1376
+ geometry: z.ZodOptional<z.ZodObject<{
1377
+ lat: z.ZodNumber;
1378
+ lng: z.ZodNumber;
1379
+ }, z.core.$strip>>;
1380
+ override: z.ZodOptional<z.ZodBoolean>;
1381
+ }, z.core.$strip>>;
1382
+ modified: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1383
+ onsiteGeneration: z.ZodOptional<z.ZodObject<{
1384
+ enabled: z.ZodOptional<z.ZodBoolean>;
1385
+ description: z.ZodOptional<z.ZodString>;
1386
+ powerCapacity: z.ZodOptional<z.ZodObject<{
1387
+ value: z.ZodOptional<z.ZodNumber>;
1388
+ unit: z.ZodEnum<{
1389
+ kW: "kW";
1390
+ MW: "MW";
1391
+ GW: "GW";
1392
+ kWh: "kWh";
1393
+ MWh: "MWh";
1394
+ GWh: "GWh";
1395
+ acre: "acre";
1396
+ hectare: "hectare";
1397
+ square_foot: "square_foot";
1398
+ square_metre: "square_metre";
1399
+ usd: "usd";
1400
+ eur: "eur";
1401
+ gbp: "gbp";
1402
+ }>;
1403
+ sectors: z.ZodOptional<z.ZodArray<z.ZodOptional<z.ZodObject<{
1404
+ identifier: z.ZodString;
1405
+ id: z.ZodString;
1406
+ }, z.core.$strip>>>>;
1407
+ }, z.core.$strip>>;
1408
+ }, z.core.$strip>>;
1409
+ organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
1410
+ identifier: z.ZodString;
1411
+ id: z.ZodString;
1412
+ role: z.ZodString;
1413
+ ref: z.ZodOptional<z.ZodString>;
1414
+ }, z.core.$strip>>>;
1415
+ plannedOperationalDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1416
+ powerFields: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
1417
+ value: z.ZodNumber;
1418
+ unit: z.ZodEnum<{
1419
+ kW: "kW";
1420
+ MW: "MW";
1421
+ kWh: "kWh";
1422
+ MWh: "MWh";
1423
+ }>;
1424
+ identifier: z.ZodEnum<{
1425
+ onsiteGeneration: "onsiteGeneration";
1426
+ backupGeneration: "backupGeneration";
1427
+ }>;
1428
+ storage: z.ZodOptional<z.ZodObject<{
1429
+ value: z.ZodNumber;
1430
+ unit: z.ZodEnum<{
1431
+ kW: "kW";
1432
+ MW: "MW";
1433
+ kWh: "kWh";
1434
+ MWh: "MWh";
1435
+ }>;
1436
+ }, z.core.$strip>>;
1437
+ sectors: z.ZodOptional<z.ZodArray<z.ZodObject<{
1438
+ identifier: z.ZodString;
1439
+ id: z.ZodString;
1440
+ }, z.core.$strip>>>;
1441
+ description: z.ZodOptional<z.ZodString>;
1442
+ }, z.core.$strip>, z.ZodObject<{
1443
+ identifier: z.ZodEnum<{
1444
+ operatingCapacity: "operatingCapacity";
1445
+ }>;
1446
+ value: z.ZodNumber;
1447
+ unit: z.ZodEnum<{
1448
+ kW: "kW";
1449
+ MW: "MW";
1450
+ GW: "GW";
1451
+ kWh: "kWh";
1452
+ MWh: "MWh";
1453
+ GWh: "GWh";
1454
+ acre: "acre";
1455
+ hectare: "hectare";
1456
+ square_foot: "square_foot";
1457
+ square_metre: "square_metre";
1458
+ usd: "usd";
1459
+ eur: "eur";
1460
+ gbp: "gbp";
1461
+ }>;
1462
+ }, z.core.$strip>], "identifier">>>;
1463
+ projectName: z.ZodString;
1464
+ queueApplications: z.ZodOptional<z.ZodArray<z.ZodObject<{
1465
+ queueKey: z.ZodOptional<z.ZodString>;
1466
+ applicationId: z.ZodOptional<z.ZodString>;
1467
+ queueDataset: z.ZodOptional<z.ZodString>;
1468
+ id: z.ZodString;
1469
+ identifier: z.ZodString;
1470
+ }, z.core.$strip>>>;
1471
+ regions: z.ZodArray<z.ZodObject<{
1472
+ identifier: z.ZodString;
1473
+ id: z.ZodString;
1474
+ }, z.core.$strip>>;
1475
+ sectors: z.ZodOptional<z.ZodArray<z.ZodObject<{
1476
+ source: z.ZodOptional<z.ZodString>;
1477
+ identifier: z.ZodString;
1478
+ id: z.ZodString;
1479
+ }, z.core.$strip>>>;
1480
+ showProject: z.ZodBoolean;
1481
+ sizeFields: z.ZodOptional<z.ZodObject<{
1482
+ building: z.ZodOptional<z.ZodObject<{
1483
+ square_foot: z.ZodNumber;
1484
+ square_metre: z.ZodNumber;
1485
+ }, z.core.$strip>>;
1486
+ land: z.ZodOptional<z.ZodObject<{
1487
+ acre: z.ZodNumber;
1488
+ hectare: z.ZodNumber;
1489
+ }, z.core.$strip>>;
1490
+ }, z.core.$strip>>;
1491
+ status: z.ZodArray<z.ZodObject<{
1492
+ identifier: z.ZodString;
1493
+ id: z.ZodString;
1494
+ }, z.core.$strip>>;
1495
+ substation: z.ZodOptional<z.ZodString>;
1496
+ totalMw: z.ZodOptional<z.ZodNumber>;
1497
+ totals: z.ZodOptional<z.ZodObject<{
1498
+ offtaker: z.ZodOptional<z.ZodNumber>;
1499
+ projects: z.ZodOptional<z.ZodNumber>;
1500
+ keyPeople: z.ZodOptional<z.ZodNumber>;
1501
+ documents: z.ZodOptional<z.ZodNumber>;
1502
+ organizations: z.ZodOptional<z.ZodNumber>;
1503
+ queueApplications: z.ZodOptional<z.ZodNumber>;
1504
+ utility: z.ZodOptional<z.ZodNumber>;
1505
+ puc: z.ZodOptional<z.ZodNumber>;
1506
+ epc: z.ZodOptional<z.ZodNumber>;
1507
+ developer: z.ZodOptional<z.ZodNumber>;
1508
+ intels: z.ZodOptional<z.ZodNumber>;
1509
+ signals: z.ZodOptional<z.ZodNumber>;
1510
+ }, z.core.$strip>>;
1511
+ signals: z.ZodOptional<z.ZodArray<z.ZodObject<{
1512
+ documents: z.ZodArray<z.ZodObject<{
1513
+ filename: z.ZodString;
1514
+ size: z.ZodOptional<z.ZodString>;
1515
+ created: z.ZodOptional<z.ZodString>;
1516
+ filing_id: z.ZodOptional<z.ZodString>;
1517
+ mimetype: z.ZodOptional<z.ZodString>;
1518
+ type: z.ZodOptional<z.ZodArray<z.ZodString>>;
1519
+ document_id: z.ZodString;
1520
+ scanResultStatus: z.ZodOptional<z.ZodString>;
1521
+ key: z.ZodOptional<z.ZodString>;
1522
+ username: z.ZodOptional<z.ZodString>;
1523
+ url: z.ZodOptional<z.ZodString>;
1524
+ }, z.core.$strip>>;
1525
+ subType: z.ZodArray<z.ZodObject<{
1526
+ identifier: z.ZodString;
1527
+ id: z.ZodString;
1528
+ parentId: z.ZodOptional<z.ZodString>;
1529
+ }, z.core.$strip>>;
1530
+ id: z.ZodString;
1531
+ type: z.ZodObject<{
1532
+ identifier: z.ZodString;
1533
+ id: z.ZodString;
1534
+ }, z.core.$strip>;
1535
+ headline: z.ZodString;
1536
+ }, z.core.$strip>>>;
1537
+ documents: z.ZodOptional<z.ZodArray<z.ZodObject<{
1538
+ filename: z.ZodString;
1539
+ size: z.ZodOptional<z.ZodString>;
1540
+ created: z.ZodString;
1541
+ filing_id: z.ZodString;
1542
+ mimetype: z.ZodOptional<z.ZodString>;
1543
+ type: z.ZodArray<z.ZodString>;
1544
+ document_id: z.ZodString;
1545
+ scanResultStatus: z.ZodOptional<z.ZodString>;
1546
+ key: z.ZodOptional<z.ZodString>;
1547
+ url: z.ZodOptional<z.ZodString>;
1548
+ username: z.ZodString;
1549
+ isSignal: z.ZodOptional<z.ZodBoolean>;
1550
+ }, z.core.$strip>>>;
1551
+ keyPeople: z.ZodOptional<z.ZodArray<z.ZodObject<{
1552
+ identifier: z.ZodString;
1553
+ fullName: z.ZodString;
1554
+ id: z.ZodString;
1555
+ linkedinUrl: z.ZodOptional<z.ZodString>;
1556
+ roles: z.ZodArray<z.ZodString>;
1557
+ email: z.ZodString;
1558
+ source: z.ZodString;
1559
+ phone: z.ZodString;
1560
+ }, z.core.$strip>>>;
1561
+ }, z.core.$strict>;
1562
+ export type DataCenterListTypeV1 = z.infer<typeof dataCenterListSchemaV1>;
1563
+ export type DataCenterDetailsTypeV1 = z.infer<typeof dataCenterDetailsSchemaV1>;
1564
+ export type DataCenterExportTypeV1 = z.infer<typeof dataCenterExportSchemaV1>;
1565
+ export type DataCenterAPITypeV1 = z.infer<typeof dataCenterAPISchemaV1>;
1566
+ export type DataCenterByLocationListTypeV1 = z.infer<typeof dataCenterByLocationListSchemaV1>;
1567
+ export {};