@cloudfleet/sdk 0.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,2842 @@
1
+ import { z } from 'zod';
2
+ export declare const zClusterCreateInput: z.ZodObject<{
3
+ name: z.ZodString;
4
+ region: z.ZodOptional<z.ZodEnum<["staging", "northamerica-central-1"]>>;
5
+ tier: z.ZodEnum<["basic", "pro"]>;
6
+ version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
7
+ }, "strip", z.ZodTypeAny, {
8
+ name: string;
9
+ tier: "basic" | "pro";
10
+ version_channel: string;
11
+ region?: "staging" | "northamerica-central-1" | undefined;
12
+ }, {
13
+ name: string;
14
+ tier: "basic" | "pro";
15
+ region?: "staging" | "northamerica-central-1" | undefined;
16
+ version_channel?: string | undefined;
17
+ }>;
18
+ export declare const zClusterJoinInformation: z.ZodObject<{
19
+ certificate_authority: z.ZodString;
20
+ endpoint: z.ZodString;
21
+ auth_key: z.ZodString;
22
+ bootstrap_token: z.ZodString;
23
+ versions: z.ZodObject<{
24
+ kubernetes: z.ZodString;
25
+ tailscale: z.ZodString;
26
+ containerd: z.ZodString;
27
+ }, "strip", z.ZodTypeAny, {
28
+ kubernetes: string;
29
+ tailscale: string;
30
+ containerd: string;
31
+ }, {
32
+ kubernetes: string;
33
+ tailscale: string;
34
+ containerd: string;
35
+ }>;
36
+ }, "strip", z.ZodTypeAny, {
37
+ certificate_authority: string;
38
+ endpoint: string;
39
+ auth_key: string;
40
+ bootstrap_token: string;
41
+ versions: {
42
+ kubernetes: string;
43
+ tailscale: string;
44
+ containerd: string;
45
+ };
46
+ }, {
47
+ certificate_authority: string;
48
+ endpoint: string;
49
+ auth_key: string;
50
+ bootstrap_token: string;
51
+ versions: {
52
+ kubernetes: string;
53
+ tailscale: string;
54
+ containerd: string;
55
+ };
56
+ }>;
57
+ export declare const zCluster: z.ZodObject<{
58
+ name: z.ZodString;
59
+ region: z.ZodOptional<z.ZodEnum<["staging", "northamerica-central-1"]>>;
60
+ tier: z.ZodEnum<["basic", "pro"]>;
61
+ version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
62
+ id: z.ZodString;
63
+ status: z.ZodEnum<["active", "deleted", "creating", "deployed", "failed", "updating"]>;
64
+ endpoint: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodEnum<[""]>]>>;
65
+ certificate_ca: z.ZodOptional<z.ZodString>;
66
+ version_current: z.ZodOptional<z.ZodString>;
67
+ created_at: z.ZodOptional<z.ZodString>;
68
+ updated_at: z.ZodOptional<z.ZodString>;
69
+ ready: z.ZodOptional<z.ZodBoolean>;
70
+ }, "strip", z.ZodTypeAny, {
71
+ name: string;
72
+ id: string;
73
+ status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
74
+ tier: "basic" | "pro";
75
+ version_channel: string;
76
+ region?: "staging" | "northamerica-central-1" | undefined;
77
+ endpoint?: string | undefined;
78
+ certificate_ca?: string | undefined;
79
+ version_current?: string | undefined;
80
+ created_at?: string | undefined;
81
+ updated_at?: string | undefined;
82
+ ready?: boolean | undefined;
83
+ }, {
84
+ name: string;
85
+ id: string;
86
+ status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
87
+ tier: "basic" | "pro";
88
+ region?: "staging" | "northamerica-central-1" | undefined;
89
+ version_channel?: string | undefined;
90
+ endpoint?: string | undefined;
91
+ certificate_ca?: string | undefined;
92
+ version_current?: string | undefined;
93
+ created_at?: string | undefined;
94
+ updated_at?: string | undefined;
95
+ ready?: boolean | undefined;
96
+ }>;
97
+ export declare const zClusterUpdateInput: z.ZodObject<{
98
+ name: z.ZodOptional<z.ZodString>;
99
+ version_channel: z.ZodOptional<z.ZodString>;
100
+ }, "strip", z.ZodTypeAny, {
101
+ name?: string | undefined;
102
+ version_channel?: string | undefined;
103
+ }, {
104
+ name?: string | undefined;
105
+ version_channel?: string | undefined;
106
+ }>;
107
+ export declare const zFleetCreateInput: z.ZodObject<{
108
+ limits: z.ZodOptional<z.ZodObject<{
109
+ cpu: z.ZodNumber;
110
+ }, "strip", z.ZodTypeAny, {
111
+ cpu: number;
112
+ }, {
113
+ cpu: number;
114
+ }>>;
115
+ gcp: z.ZodOptional<z.ZodObject<{
116
+ enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
117
+ project: z.ZodString;
118
+ }, "strip", z.ZodTypeAny, {
119
+ project: string;
120
+ enabled: boolean;
121
+ }, {
122
+ project: string;
123
+ enabled?: boolean | undefined;
124
+ }>>;
125
+ hetzner: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
126
+ enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
127
+ apiKey: z.ZodOptional<z.ZodString>;
128
+ }, "strip", z.ZodTypeAny, {
129
+ enabled: boolean;
130
+ apiKey?: string | undefined;
131
+ }, {
132
+ apiKey?: string | undefined;
133
+ enabled?: boolean | undefined;
134
+ }>, z.ZodObject<{
135
+ apiKey: z.ZodOptional<z.ZodString>;
136
+ enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
137
+ }, "strip", z.ZodTypeAny, {
138
+ enabled: boolean;
139
+ apiKey?: string | undefined;
140
+ }, {
141
+ apiKey?: string | undefined;
142
+ enabled?: boolean | undefined;
143
+ }>]>>;
144
+ aws: z.ZodOptional<z.ZodObject<{
145
+ enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
146
+ controllerRoleArn: z.ZodString;
147
+ }, "strip", z.ZodTypeAny, {
148
+ controllerRoleArn: string;
149
+ enabled: boolean;
150
+ }, {
151
+ controllerRoleArn: string;
152
+ enabled?: boolean | undefined;
153
+ }>>;
154
+ id: z.ZodString;
155
+ type: z.ZodEnum<["managed", "connected"]>;
156
+ }, "strip", z.ZodTypeAny, {
157
+ type: "connected" | "managed";
158
+ id: string;
159
+ limits?: {
160
+ cpu: number;
161
+ } | undefined;
162
+ gcp?: {
163
+ project: string;
164
+ enabled: boolean;
165
+ } | undefined;
166
+ hetzner?: {
167
+ enabled: boolean;
168
+ apiKey?: string | undefined;
169
+ } | {
170
+ enabled: boolean;
171
+ apiKey?: string | undefined;
172
+ } | undefined;
173
+ aws?: {
174
+ controllerRoleArn: string;
175
+ enabled: boolean;
176
+ } | undefined;
177
+ }, {
178
+ type: "connected" | "managed";
179
+ id: string;
180
+ limits?: {
181
+ cpu: number;
182
+ } | undefined;
183
+ gcp?: {
184
+ project: string;
185
+ enabled?: boolean | undefined;
186
+ } | undefined;
187
+ hetzner?: {
188
+ apiKey?: string | undefined;
189
+ enabled?: boolean | undefined;
190
+ } | {
191
+ apiKey?: string | undefined;
192
+ enabled?: boolean | undefined;
193
+ } | undefined;
194
+ aws?: {
195
+ controllerRoleArn: string;
196
+ enabled?: boolean | undefined;
197
+ } | undefined;
198
+ }>;
199
+ export declare const zFleet: z.ZodObject<{
200
+ limits: z.ZodOptional<z.ZodObject<{
201
+ cpu: z.ZodNumber;
202
+ }, "strip", z.ZodTypeAny, {
203
+ cpu: number;
204
+ }, {
205
+ cpu: number;
206
+ }>>;
207
+ gcp: z.ZodOptional<z.ZodObject<{
208
+ enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
209
+ project: z.ZodString;
210
+ }, "strip", z.ZodTypeAny, {
211
+ project: string;
212
+ enabled: boolean;
213
+ }, {
214
+ project: string;
215
+ enabled?: boolean | undefined;
216
+ }>>;
217
+ hetzner: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
218
+ enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
219
+ apiKey: z.ZodOptional<z.ZodString>;
220
+ }, "strip", z.ZodTypeAny, {
221
+ enabled: boolean;
222
+ apiKey?: string | undefined;
223
+ }, {
224
+ apiKey?: string | undefined;
225
+ enabled?: boolean | undefined;
226
+ }>, z.ZodObject<{
227
+ apiKey: z.ZodOptional<z.ZodString>;
228
+ enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
229
+ }, "strip", z.ZodTypeAny, {
230
+ enabled: boolean;
231
+ apiKey?: string | undefined;
232
+ }, {
233
+ apiKey?: string | undefined;
234
+ enabled?: boolean | undefined;
235
+ }>]>>;
236
+ aws: z.ZodOptional<z.ZodObject<{
237
+ enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
238
+ controllerRoleArn: z.ZodString;
239
+ }, "strip", z.ZodTypeAny, {
240
+ controllerRoleArn: string;
241
+ enabled: boolean;
242
+ }, {
243
+ controllerRoleArn: string;
244
+ enabled?: boolean | undefined;
245
+ }>>;
246
+ id: z.ZodString;
247
+ type: z.ZodEnum<["managed", "connected"]>;
248
+ }, "strip", z.ZodTypeAny, {
249
+ type: "connected" | "managed";
250
+ id: string;
251
+ limits?: {
252
+ cpu: number;
253
+ } | undefined;
254
+ gcp?: {
255
+ project: string;
256
+ enabled: boolean;
257
+ } | undefined;
258
+ hetzner?: {
259
+ enabled: boolean;
260
+ apiKey?: string | undefined;
261
+ } | {
262
+ enabled: boolean;
263
+ apiKey?: string | undefined;
264
+ } | undefined;
265
+ aws?: {
266
+ controllerRoleArn: string;
267
+ enabled: boolean;
268
+ } | undefined;
269
+ }, {
270
+ type: "connected" | "managed";
271
+ id: string;
272
+ limits?: {
273
+ cpu: number;
274
+ } | undefined;
275
+ gcp?: {
276
+ project: string;
277
+ enabled?: boolean | undefined;
278
+ } | undefined;
279
+ hetzner?: {
280
+ apiKey?: string | undefined;
281
+ enabled?: boolean | undefined;
282
+ } | {
283
+ apiKey?: string | undefined;
284
+ enabled?: boolean | undefined;
285
+ } | undefined;
286
+ aws?: {
287
+ controllerRoleArn: string;
288
+ enabled?: boolean | undefined;
289
+ } | undefined;
290
+ }>;
291
+ export declare const zFleetUpdateInput: z.ZodObject<{
292
+ limits: z.ZodOptional<z.ZodObject<{
293
+ cpu: z.ZodNumber;
294
+ }, "strip", z.ZodTypeAny, {
295
+ cpu: number;
296
+ }, {
297
+ cpu: number;
298
+ }>>;
299
+ gcp: z.ZodOptional<z.ZodObject<{
300
+ enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
301
+ project: z.ZodString;
302
+ }, "strip", z.ZodTypeAny, {
303
+ project: string;
304
+ enabled: boolean;
305
+ }, {
306
+ project: string;
307
+ enabled?: boolean | undefined;
308
+ }>>;
309
+ hetzner: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
310
+ enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
311
+ apiKey: z.ZodOptional<z.ZodString>;
312
+ }, "strip", z.ZodTypeAny, {
313
+ enabled: boolean;
314
+ apiKey?: string | undefined;
315
+ }, {
316
+ apiKey?: string | undefined;
317
+ enabled?: boolean | undefined;
318
+ }>, z.ZodObject<{
319
+ apiKey: z.ZodOptional<z.ZodString>;
320
+ enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
321
+ }, "strip", z.ZodTypeAny, {
322
+ enabled: boolean;
323
+ apiKey?: string | undefined;
324
+ }, {
325
+ apiKey?: string | undefined;
326
+ enabled?: boolean | undefined;
327
+ }>]>>;
328
+ aws: z.ZodOptional<z.ZodObject<{
329
+ enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
330
+ controllerRoleArn: z.ZodString;
331
+ }, "strip", z.ZodTypeAny, {
332
+ controllerRoleArn: string;
333
+ enabled: boolean;
334
+ }, {
335
+ controllerRoleArn: string;
336
+ enabled?: boolean | undefined;
337
+ }>>;
338
+ }, "strip", z.ZodTypeAny, {
339
+ limits?: {
340
+ cpu: number;
341
+ } | undefined;
342
+ gcp?: {
343
+ project: string;
344
+ enabled: boolean;
345
+ } | undefined;
346
+ hetzner?: {
347
+ enabled: boolean;
348
+ apiKey?: string | undefined;
349
+ } | {
350
+ enabled: boolean;
351
+ apiKey?: string | undefined;
352
+ } | undefined;
353
+ aws?: {
354
+ controllerRoleArn: string;
355
+ enabled: boolean;
356
+ } | undefined;
357
+ }, {
358
+ limits?: {
359
+ cpu: number;
360
+ } | undefined;
361
+ gcp?: {
362
+ project: string;
363
+ enabled?: boolean | undefined;
364
+ } | undefined;
365
+ hetzner?: {
366
+ apiKey?: string | undefined;
367
+ enabled?: boolean | undefined;
368
+ } | {
369
+ apiKey?: string | undefined;
370
+ enabled?: boolean | undefined;
371
+ } | undefined;
372
+ aws?: {
373
+ controllerRoleArn: string;
374
+ enabled?: boolean | undefined;
375
+ } | undefined;
376
+ }>;
377
+ export declare const zInfrastructureFilter: z.ZodObject<{
378
+ version: z.ZodOptional<z.ZodUnknown>;
379
+ provider: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
380
+ region: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
381
+ sub_region: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
382
+ csp_region: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
383
+ instance_type: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
384
+ accelerator_name: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
385
+ accelerator_manufacturer: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
386
+ accelerator_count_min: z.ZodOptional<z.ZodNumber>;
387
+ accelerator_count_max: z.ZodOptional<z.ZodNumber>;
388
+ accelerator_memory_min: z.ZodOptional<z.ZodNumber>;
389
+ accelerator_memory_max: z.ZodOptional<z.ZodNumber>;
390
+ memory_min: z.ZodOptional<z.ZodNumber>;
391
+ memory_max: z.ZodOptional<z.ZodNumber>;
392
+ vcpu_min: z.ZodOptional<z.ZodNumber>;
393
+ vcpu_max: z.ZodOptional<z.ZodNumber>;
394
+ storage_total_min: z.ZodOptional<z.ZodNumber>;
395
+ storage_total_max: z.ZodOptional<z.ZodNumber>;
396
+ storage_local_min: z.ZodOptional<z.ZodNumber>;
397
+ storage_local_max: z.ZodOptional<z.ZodNumber>;
398
+ price_min: z.ZodOptional<z.ZodNumber>;
399
+ price_max: z.ZodOptional<z.ZodNumber>;
400
+ }, "strip", z.ZodTypeAny, {
401
+ region?: string[] | undefined;
402
+ version?: unknown;
403
+ provider?: string[] | undefined;
404
+ sub_region?: string[] | undefined;
405
+ csp_region?: string[] | undefined;
406
+ instance_type?: string[] | undefined;
407
+ accelerator_name?: string[] | undefined;
408
+ accelerator_manufacturer?: string[] | undefined;
409
+ accelerator_count_min?: number | undefined;
410
+ accelerator_count_max?: number | undefined;
411
+ accelerator_memory_min?: number | undefined;
412
+ accelerator_memory_max?: number | undefined;
413
+ memory_min?: number | undefined;
414
+ memory_max?: number | undefined;
415
+ vcpu_min?: number | undefined;
416
+ vcpu_max?: number | undefined;
417
+ storage_total_min?: number | undefined;
418
+ storage_total_max?: number | undefined;
419
+ storage_local_min?: number | undefined;
420
+ storage_local_max?: number | undefined;
421
+ price_min?: number | undefined;
422
+ price_max?: number | undefined;
423
+ }, {
424
+ region?: string[] | undefined;
425
+ version?: unknown;
426
+ provider?: string[] | undefined;
427
+ sub_region?: string[] | undefined;
428
+ csp_region?: string[] | undefined;
429
+ instance_type?: string[] | undefined;
430
+ accelerator_name?: string[] | undefined;
431
+ accelerator_manufacturer?: string[] | undefined;
432
+ accelerator_count_min?: number | undefined;
433
+ accelerator_count_max?: number | undefined;
434
+ accelerator_memory_min?: number | undefined;
435
+ accelerator_memory_max?: number | undefined;
436
+ memory_min?: number | undefined;
437
+ memory_max?: number | undefined;
438
+ vcpu_min?: number | undefined;
439
+ vcpu_max?: number | undefined;
440
+ storage_total_min?: number | undefined;
441
+ storage_total_max?: number | undefined;
442
+ storage_local_min?: number | undefined;
443
+ storage_local_max?: number | undefined;
444
+ price_min?: number | undefined;
445
+ price_max?: number | undefined;
446
+ }>;
447
+ export declare const zInfrastructureInstance: z.ZodObject<{
448
+ sku: z.ZodString;
449
+ provider: z.ZodString;
450
+ region: z.ZodString;
451
+ sub_region: z.ZodString;
452
+ csp_region: z.ZodString;
453
+ csp_zone: z.ZodString;
454
+ instance_type: z.ZodString;
455
+ architecture: z.ZodString;
456
+ os: z.ZodString;
457
+ vcpu: z.ZodNumber;
458
+ memory: z.ZodNumber;
459
+ local_storage: z.ZodNumber;
460
+ accelerator_name: z.ZodOptional<z.ZodString>;
461
+ accelerator_manufacturer: z.ZodOptional<z.ZodString>;
462
+ accelerator_count: z.ZodOptional<z.ZodNumber>;
463
+ accelerator_memory: z.ZodOptional<z.ZodNumber>;
464
+ pods_capacity: z.ZodOptional<z.ZodNumber>;
465
+ capacity_type: z.ZodOptional<z.ZodString>;
466
+ price: z.ZodNumber;
467
+ available: z.ZodOptional<z.ZodBoolean>;
468
+ }, "strip", z.ZodTypeAny, {
469
+ memory: number;
470
+ region: string;
471
+ provider: string;
472
+ sub_region: string;
473
+ csp_region: string;
474
+ instance_type: string;
475
+ sku: string;
476
+ csp_zone: string;
477
+ architecture: string;
478
+ os: string;
479
+ vcpu: number;
480
+ local_storage: number;
481
+ price: number;
482
+ accelerator_name?: string | undefined;
483
+ accelerator_manufacturer?: string | undefined;
484
+ accelerator_count?: number | undefined;
485
+ accelerator_memory?: number | undefined;
486
+ pods_capacity?: number | undefined;
487
+ capacity_type?: string | undefined;
488
+ available?: boolean | undefined;
489
+ }, {
490
+ memory: number;
491
+ region: string;
492
+ provider: string;
493
+ sub_region: string;
494
+ csp_region: string;
495
+ instance_type: string;
496
+ sku: string;
497
+ csp_zone: string;
498
+ architecture: string;
499
+ os: string;
500
+ vcpu: number;
501
+ local_storage: number;
502
+ price: number;
503
+ accelerator_name?: string | undefined;
504
+ accelerator_manufacturer?: string | undefined;
505
+ accelerator_count?: number | undefined;
506
+ accelerator_memory?: number | undefined;
507
+ pods_capacity?: number | undefined;
508
+ capacity_type?: string | undefined;
509
+ available?: boolean | undefined;
510
+ }>;
511
+ export declare const zInvite: z.ZodObject<{
512
+ id: z.ZodOptional<z.ZodString>;
513
+ organization_id: z.ZodOptional<z.ZodString>;
514
+ date_created: z.ZodString;
515
+ email: z.ZodOptional<z.ZodString>;
516
+ code: z.ZodOptional<z.ZodString>;
517
+ }, "strip", z.ZodTypeAny, {
518
+ date_created: string;
519
+ code?: string | undefined;
520
+ id?: string | undefined;
521
+ email?: string | undefined;
522
+ organization_id?: string | undefined;
523
+ }, {
524
+ date_created: string;
525
+ code?: string | undefined;
526
+ id?: string | undefined;
527
+ email?: string | undefined;
528
+ organization_id?: string | undefined;
529
+ }>;
530
+ export declare const zInvoice: z.ZodObject<{
531
+ id: z.ZodOptional<z.ZodString>;
532
+ organizationId: z.ZodOptional<z.ZodString>;
533
+ status: z.ZodOptional<z.ZodEnum<["DRAFT", "COMMITTED", "VOID"]>>;
534
+ amount: z.ZodOptional<z.ZodNumber>;
535
+ currency: z.ZodOptional<z.ZodEnum<["AED", "AFN", "ALL", "AMD", "ANG", "AOA", "ARS", "AUD", "AWG", "AZN", "BAM", "BBD", "BDT", "BGN", "BHD", "BIF", "BMD", "BND", "BOB", "BRL", "BSD", "BTN", "BWP", "BYR", "BZD", "CAD", "CDF", "CHF", "CLP", "CNY", "COP", "CRC", "CUC", "CUP", "CVE", "CZK", "DJF", "DKK", "DOP", "DZD", "EGP", "ERN", "ETB", "EUR", "FJD", "FKP", "GBP", "GEL", "GGP", "GHS", "GIP", "GMD", "GNF", "GTQ", "GYD", "HKD", "HNL", "HRK", "HTG", "HUF", "IDR", "ILS", "IMP", "INR", "IQD", "IRR", "ISK", "JEP", "JMD", "JOD", "JPY", "KES", "KGS", "KHR", "KMF", "KPW", "KRW", "KWD", "KYD", "KZT", "LAK", "LBP", "LKR", "LRD", "LSL", "LTL", "LVL", "LYD", "MAD", "MDL", "MGA", "MKD", "MMK", "MNT", "MOP", "MRO", "MUR", "MVR", "MWK", "MXN", "MYR", "MZN", "NAD", "NGN", "NIO", "NOK", "NPR", "NZD", "OMR", "PAB", "PEN", "PGK", "PHP", "PKR", "PLN", "PYG", "QAR", "RON", "RSD", "RUB", "RWF", "SAR", "SBD", "SCR", "SDG", "SEK", "SGD", "SHP", "SLL", "SOS", "SPL", "SRD", "STD", "SVC", "SYP", "SZL", "THB", "TJS", "TMT", "TND", "TOP", "TRY", "TTD", "TVD", "TWD", "TZS", "UAH", "UGX", "USD", "UYU", "UZS", "VEF", "VND", "VUV", "WST", "XAF", "XCD", "XDR", "XOF", "XPF", "YER", "ZAR", "ZMW", "ZWD", "BTC"]>>;
536
+ creditAdj: z.ZodOptional<z.ZodNumber>;
537
+ refundAdj: z.ZodOptional<z.ZodNumber>;
538
+ invoiceDate: z.ZodOptional<z.ZodString>;
539
+ targetDate: z.ZodOptional<z.ZodString>;
540
+ invoiceNumber: z.ZodOptional<z.ZodString>;
541
+ balance: z.ZodOptional<z.ZodNumber>;
542
+ bundleKeys: z.ZodOptional<z.ZodString>;
543
+ credits: z.ZodOptional<z.ZodArray<z.ZodObject<{
544
+ id: z.ZodOptional<z.ZodString>;
545
+ linkedInvoiceItemId: z.ZodOptional<z.ZodString>;
546
+ productName: z.ZodOptional<z.ZodString>;
547
+ planName: z.ZodOptional<z.ZodString>;
548
+ phaseName: z.ZodOptional<z.ZodString>;
549
+ usageName: z.ZodOptional<z.ZodString>;
550
+ prettyProductName: z.ZodOptional<z.ZodString>;
551
+ prettyPlanName: z.ZodOptional<z.ZodString>;
552
+ prettyPhaseName: z.ZodOptional<z.ZodString>;
553
+ prettyUsageName: z.ZodOptional<z.ZodString>;
554
+ itemType: z.ZodOptional<z.ZodEnum<["EXTERNAL_CHARGE", "FIXED", "RECURRING", "REPAIR_ADJ", "CBA_ADJ", "CREDIT_ADJ", "ITEM_ADJ", "USAGE", "TAX", "PARENT_SUMMARY"]>>;
555
+ description: z.ZodOptional<z.ZodString>;
556
+ startDate: z.ZodOptional<z.ZodString>;
557
+ endDate: z.ZodOptional<z.ZodString>;
558
+ amount: z.ZodOptional<z.ZodNumber>;
559
+ rate: z.ZodOptional<z.ZodNumber>;
560
+ currency: z.ZodOptional<z.ZodEnum<["AED", "AFN", "ALL", "AMD", "ANG", "AOA", "ARS", "AUD", "AWG", "AZN", "BAM", "BBD", "BDT", "BGN", "BHD", "BIF", "BMD", "BND", "BOB", "BRL", "BSD", "BTN", "BWP", "BYR", "BZD", "CAD", "CDF", "CHF", "CLP", "CNY", "COP", "CRC", "CUC", "CUP", "CVE", "CZK", "DJF", "DKK", "DOP", "DZD", "EGP", "ERN", "ETB", "EUR", "FJD", "FKP", "GBP", "GEL", "GGP", "GHS", "GIP", "GMD", "GNF", "GTQ", "GYD", "HKD", "HNL", "HRK", "HTG", "HUF", "IDR", "ILS", "IMP", "INR", "IQD", "IRR", "ISK", "JEP", "JMD", "JOD", "JPY", "KES", "KGS", "KHR", "KMF", "KPW", "KRW", "KWD", "KYD", "KZT", "LAK", "LBP", "LKR", "LRD", "LSL", "LTL", "LVL", "LYD", "MAD", "MDL", "MGA", "MKD", "MMK", "MNT", "MOP", "MRO", "MUR", "MVR", "MWK", "MXN", "MYR", "MZN", "NAD", "NGN", "NIO", "NOK", "NPR", "NZD", "OMR", "PAB", "PEN", "PGK", "PHP", "PKR", "PLN", "PYG", "QAR", "RON", "RSD", "RUB", "RWF", "SAR", "SBD", "SCR", "SDG", "SEK", "SGD", "SHP", "SLL", "SOS", "SPL", "SRD", "STD", "SVC", "SYP", "SZL", "THB", "TJS", "TMT", "TND", "TOP", "TRY", "TTD", "TVD", "TWD", "TZS", "UAH", "UGX", "USD", "UYU", "UZS", "VEF", "VND", "VUV", "WST", "XAF", "XCD", "XDR", "XOF", "XPF", "YER", "ZAR", "ZMW", "ZWD", "BTC"]>>;
561
+ quantity: z.ZodOptional<z.ZodNumber>;
562
+ itemDetails: z.ZodOptional<z.ZodString>;
563
+ catalogEffectiveDate: z.ZodOptional<z.ZodString>;
564
+ childItems: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
565
+ }, "strip", z.ZodTypeAny, {
566
+ currency?: "AED" | "AFN" | "ALL" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BRL" | "BSD" | "BTN" | "BWP" | "BYR" | "BZD" | "CAD" | "CDF" | "CHF" | "CLP" | "CNY" | "COP" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GGP" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "IMP" | "INR" | "IQD" | "IRR" | "ISK" | "JEP" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LTL" | "LVL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRO" | "MUR" | "MVR" | "MWK" | "MXN" | "MYR" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SPL" | "SRD" | "STD" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TVD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "UYU" | "UZS" | "VEF" | "VND" | "VUV" | "WST" | "XAF" | "XCD" | "XDR" | "XOF" | "XPF" | "YER" | "ZAR" | "ZMW" | "ZWD" | "BTC" | undefined;
567
+ id?: string | undefined;
568
+ description?: string | undefined;
569
+ amount?: number | undefined;
570
+ linkedInvoiceItemId?: string | undefined;
571
+ productName?: string | undefined;
572
+ planName?: string | undefined;
573
+ phaseName?: string | undefined;
574
+ usageName?: string | undefined;
575
+ prettyProductName?: string | undefined;
576
+ prettyPlanName?: string | undefined;
577
+ prettyPhaseName?: string | undefined;
578
+ prettyUsageName?: string | undefined;
579
+ itemType?: "EXTERNAL_CHARGE" | "FIXED" | "RECURRING" | "REPAIR_ADJ" | "CBA_ADJ" | "CREDIT_ADJ" | "ITEM_ADJ" | "USAGE" | "TAX" | "PARENT_SUMMARY" | undefined;
580
+ startDate?: string | undefined;
581
+ endDate?: string | undefined;
582
+ rate?: number | undefined;
583
+ quantity?: number | undefined;
584
+ itemDetails?: string | undefined;
585
+ catalogEffectiveDate?: string | undefined;
586
+ childItems?: unknown[] | undefined;
587
+ }, {
588
+ currency?: "AED" | "AFN" | "ALL" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BRL" | "BSD" | "BTN" | "BWP" | "BYR" | "BZD" | "CAD" | "CDF" | "CHF" | "CLP" | "CNY" | "COP" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GGP" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "IMP" | "INR" | "IQD" | "IRR" | "ISK" | "JEP" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LTL" | "LVL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRO" | "MUR" | "MVR" | "MWK" | "MXN" | "MYR" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SPL" | "SRD" | "STD" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TVD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "UYU" | "UZS" | "VEF" | "VND" | "VUV" | "WST" | "XAF" | "XCD" | "XDR" | "XOF" | "XPF" | "YER" | "ZAR" | "ZMW" | "ZWD" | "BTC" | undefined;
589
+ id?: string | undefined;
590
+ description?: string | undefined;
591
+ amount?: number | undefined;
592
+ linkedInvoiceItemId?: string | undefined;
593
+ productName?: string | undefined;
594
+ planName?: string | undefined;
595
+ phaseName?: string | undefined;
596
+ usageName?: string | undefined;
597
+ prettyProductName?: string | undefined;
598
+ prettyPlanName?: string | undefined;
599
+ prettyPhaseName?: string | undefined;
600
+ prettyUsageName?: string | undefined;
601
+ itemType?: "EXTERNAL_CHARGE" | "FIXED" | "RECURRING" | "REPAIR_ADJ" | "CBA_ADJ" | "CREDIT_ADJ" | "ITEM_ADJ" | "USAGE" | "TAX" | "PARENT_SUMMARY" | undefined;
602
+ startDate?: string | undefined;
603
+ endDate?: string | undefined;
604
+ rate?: number | undefined;
605
+ quantity?: number | undefined;
606
+ itemDetails?: string | undefined;
607
+ catalogEffectiveDate?: string | undefined;
608
+ childItems?: unknown[] | undefined;
609
+ }>, "many">>;
610
+ items: z.ZodOptional<z.ZodArray<z.ZodObject<{
611
+ id: z.ZodOptional<z.ZodString>;
612
+ linkedInvoiceItemId: z.ZodOptional<z.ZodString>;
613
+ productName: z.ZodOptional<z.ZodString>;
614
+ planName: z.ZodOptional<z.ZodString>;
615
+ phaseName: z.ZodOptional<z.ZodString>;
616
+ usageName: z.ZodOptional<z.ZodString>;
617
+ prettyProductName: z.ZodOptional<z.ZodString>;
618
+ prettyPlanName: z.ZodOptional<z.ZodString>;
619
+ prettyPhaseName: z.ZodOptional<z.ZodString>;
620
+ prettyUsageName: z.ZodOptional<z.ZodString>;
621
+ itemType: z.ZodOptional<z.ZodEnum<["EXTERNAL_CHARGE", "FIXED", "RECURRING", "REPAIR_ADJ", "CBA_ADJ", "CREDIT_ADJ", "ITEM_ADJ", "USAGE", "TAX", "PARENT_SUMMARY"]>>;
622
+ description: z.ZodOptional<z.ZodString>;
623
+ startDate: z.ZodOptional<z.ZodString>;
624
+ endDate: z.ZodOptional<z.ZodString>;
625
+ amount: z.ZodOptional<z.ZodNumber>;
626
+ rate: z.ZodOptional<z.ZodNumber>;
627
+ currency: z.ZodOptional<z.ZodEnum<["AED", "AFN", "ALL", "AMD", "ANG", "AOA", "ARS", "AUD", "AWG", "AZN", "BAM", "BBD", "BDT", "BGN", "BHD", "BIF", "BMD", "BND", "BOB", "BRL", "BSD", "BTN", "BWP", "BYR", "BZD", "CAD", "CDF", "CHF", "CLP", "CNY", "COP", "CRC", "CUC", "CUP", "CVE", "CZK", "DJF", "DKK", "DOP", "DZD", "EGP", "ERN", "ETB", "EUR", "FJD", "FKP", "GBP", "GEL", "GGP", "GHS", "GIP", "GMD", "GNF", "GTQ", "GYD", "HKD", "HNL", "HRK", "HTG", "HUF", "IDR", "ILS", "IMP", "INR", "IQD", "IRR", "ISK", "JEP", "JMD", "JOD", "JPY", "KES", "KGS", "KHR", "KMF", "KPW", "KRW", "KWD", "KYD", "KZT", "LAK", "LBP", "LKR", "LRD", "LSL", "LTL", "LVL", "LYD", "MAD", "MDL", "MGA", "MKD", "MMK", "MNT", "MOP", "MRO", "MUR", "MVR", "MWK", "MXN", "MYR", "MZN", "NAD", "NGN", "NIO", "NOK", "NPR", "NZD", "OMR", "PAB", "PEN", "PGK", "PHP", "PKR", "PLN", "PYG", "QAR", "RON", "RSD", "RUB", "RWF", "SAR", "SBD", "SCR", "SDG", "SEK", "SGD", "SHP", "SLL", "SOS", "SPL", "SRD", "STD", "SVC", "SYP", "SZL", "THB", "TJS", "TMT", "TND", "TOP", "TRY", "TTD", "TVD", "TWD", "TZS", "UAH", "UGX", "USD", "UYU", "UZS", "VEF", "VND", "VUV", "WST", "XAF", "XCD", "XDR", "XOF", "XPF", "YER", "ZAR", "ZMW", "ZWD", "BTC"]>>;
628
+ quantity: z.ZodOptional<z.ZodNumber>;
629
+ itemDetails: z.ZodOptional<z.ZodString>;
630
+ catalogEffectiveDate: z.ZodOptional<z.ZodString>;
631
+ childItems: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
632
+ }, "strip", z.ZodTypeAny, {
633
+ currency?: "AED" | "AFN" | "ALL" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BRL" | "BSD" | "BTN" | "BWP" | "BYR" | "BZD" | "CAD" | "CDF" | "CHF" | "CLP" | "CNY" | "COP" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GGP" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "IMP" | "INR" | "IQD" | "IRR" | "ISK" | "JEP" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LTL" | "LVL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRO" | "MUR" | "MVR" | "MWK" | "MXN" | "MYR" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SPL" | "SRD" | "STD" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TVD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "UYU" | "UZS" | "VEF" | "VND" | "VUV" | "WST" | "XAF" | "XCD" | "XDR" | "XOF" | "XPF" | "YER" | "ZAR" | "ZMW" | "ZWD" | "BTC" | undefined;
634
+ id?: string | undefined;
635
+ description?: string | undefined;
636
+ amount?: number | undefined;
637
+ linkedInvoiceItemId?: string | undefined;
638
+ productName?: string | undefined;
639
+ planName?: string | undefined;
640
+ phaseName?: string | undefined;
641
+ usageName?: string | undefined;
642
+ prettyProductName?: string | undefined;
643
+ prettyPlanName?: string | undefined;
644
+ prettyPhaseName?: string | undefined;
645
+ prettyUsageName?: string | undefined;
646
+ itemType?: "EXTERNAL_CHARGE" | "FIXED" | "RECURRING" | "REPAIR_ADJ" | "CBA_ADJ" | "CREDIT_ADJ" | "ITEM_ADJ" | "USAGE" | "TAX" | "PARENT_SUMMARY" | undefined;
647
+ startDate?: string | undefined;
648
+ endDate?: string | undefined;
649
+ rate?: number | undefined;
650
+ quantity?: number | undefined;
651
+ itemDetails?: string | undefined;
652
+ catalogEffectiveDate?: string | undefined;
653
+ childItems?: unknown[] | undefined;
654
+ }, {
655
+ currency?: "AED" | "AFN" | "ALL" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BRL" | "BSD" | "BTN" | "BWP" | "BYR" | "BZD" | "CAD" | "CDF" | "CHF" | "CLP" | "CNY" | "COP" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GGP" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "IMP" | "INR" | "IQD" | "IRR" | "ISK" | "JEP" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LTL" | "LVL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRO" | "MUR" | "MVR" | "MWK" | "MXN" | "MYR" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SPL" | "SRD" | "STD" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TVD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "UYU" | "UZS" | "VEF" | "VND" | "VUV" | "WST" | "XAF" | "XCD" | "XDR" | "XOF" | "XPF" | "YER" | "ZAR" | "ZMW" | "ZWD" | "BTC" | undefined;
656
+ id?: string | undefined;
657
+ description?: string | undefined;
658
+ amount?: number | undefined;
659
+ linkedInvoiceItemId?: string | undefined;
660
+ productName?: string | undefined;
661
+ planName?: string | undefined;
662
+ phaseName?: string | undefined;
663
+ usageName?: string | undefined;
664
+ prettyProductName?: string | undefined;
665
+ prettyPlanName?: string | undefined;
666
+ prettyPhaseName?: string | undefined;
667
+ prettyUsageName?: string | undefined;
668
+ itemType?: "EXTERNAL_CHARGE" | "FIXED" | "RECURRING" | "REPAIR_ADJ" | "CBA_ADJ" | "CREDIT_ADJ" | "ITEM_ADJ" | "USAGE" | "TAX" | "PARENT_SUMMARY" | undefined;
669
+ startDate?: string | undefined;
670
+ endDate?: string | undefined;
671
+ rate?: number | undefined;
672
+ quantity?: number | undefined;
673
+ itemDetails?: string | undefined;
674
+ catalogEffectiveDate?: string | undefined;
675
+ childItems?: unknown[] | undefined;
676
+ }>, "many">>;
677
+ }, "strip", z.ZodTypeAny, {
678
+ currency?: "AED" | "AFN" | "ALL" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BRL" | "BSD" | "BTN" | "BWP" | "BYR" | "BZD" | "CAD" | "CDF" | "CHF" | "CLP" | "CNY" | "COP" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GGP" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "IMP" | "INR" | "IQD" | "IRR" | "ISK" | "JEP" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LTL" | "LVL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRO" | "MUR" | "MVR" | "MWK" | "MXN" | "MYR" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SPL" | "SRD" | "STD" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TVD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "UYU" | "UZS" | "VEF" | "VND" | "VUV" | "WST" | "XAF" | "XCD" | "XDR" | "XOF" | "XPF" | "YER" | "ZAR" | "ZMW" | "ZWD" | "BTC" | undefined;
679
+ id?: string | undefined;
680
+ status?: "DRAFT" | "COMMITTED" | "VOID" | undefined;
681
+ amount?: number | undefined;
682
+ items?: {
683
+ currency?: "AED" | "AFN" | "ALL" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BRL" | "BSD" | "BTN" | "BWP" | "BYR" | "BZD" | "CAD" | "CDF" | "CHF" | "CLP" | "CNY" | "COP" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GGP" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "IMP" | "INR" | "IQD" | "IRR" | "ISK" | "JEP" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LTL" | "LVL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRO" | "MUR" | "MVR" | "MWK" | "MXN" | "MYR" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SPL" | "SRD" | "STD" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TVD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "UYU" | "UZS" | "VEF" | "VND" | "VUV" | "WST" | "XAF" | "XCD" | "XDR" | "XOF" | "XPF" | "YER" | "ZAR" | "ZMW" | "ZWD" | "BTC" | undefined;
684
+ id?: string | undefined;
685
+ description?: string | undefined;
686
+ amount?: number | undefined;
687
+ linkedInvoiceItemId?: string | undefined;
688
+ productName?: string | undefined;
689
+ planName?: string | undefined;
690
+ phaseName?: string | undefined;
691
+ usageName?: string | undefined;
692
+ prettyProductName?: string | undefined;
693
+ prettyPlanName?: string | undefined;
694
+ prettyPhaseName?: string | undefined;
695
+ prettyUsageName?: string | undefined;
696
+ itemType?: "EXTERNAL_CHARGE" | "FIXED" | "RECURRING" | "REPAIR_ADJ" | "CBA_ADJ" | "CREDIT_ADJ" | "ITEM_ADJ" | "USAGE" | "TAX" | "PARENT_SUMMARY" | undefined;
697
+ startDate?: string | undefined;
698
+ endDate?: string | undefined;
699
+ rate?: number | undefined;
700
+ quantity?: number | undefined;
701
+ itemDetails?: string | undefined;
702
+ catalogEffectiveDate?: string | undefined;
703
+ childItems?: unknown[] | undefined;
704
+ }[] | undefined;
705
+ organizationId?: string | undefined;
706
+ creditAdj?: number | undefined;
707
+ refundAdj?: number | undefined;
708
+ invoiceDate?: string | undefined;
709
+ targetDate?: string | undefined;
710
+ invoiceNumber?: string | undefined;
711
+ balance?: number | undefined;
712
+ bundleKeys?: string | undefined;
713
+ credits?: {
714
+ currency?: "AED" | "AFN" | "ALL" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BRL" | "BSD" | "BTN" | "BWP" | "BYR" | "BZD" | "CAD" | "CDF" | "CHF" | "CLP" | "CNY" | "COP" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GGP" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "IMP" | "INR" | "IQD" | "IRR" | "ISK" | "JEP" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LTL" | "LVL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRO" | "MUR" | "MVR" | "MWK" | "MXN" | "MYR" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SPL" | "SRD" | "STD" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TVD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "UYU" | "UZS" | "VEF" | "VND" | "VUV" | "WST" | "XAF" | "XCD" | "XDR" | "XOF" | "XPF" | "YER" | "ZAR" | "ZMW" | "ZWD" | "BTC" | undefined;
715
+ id?: string | undefined;
716
+ description?: string | undefined;
717
+ amount?: number | undefined;
718
+ linkedInvoiceItemId?: string | undefined;
719
+ productName?: string | undefined;
720
+ planName?: string | undefined;
721
+ phaseName?: string | undefined;
722
+ usageName?: string | undefined;
723
+ prettyProductName?: string | undefined;
724
+ prettyPlanName?: string | undefined;
725
+ prettyPhaseName?: string | undefined;
726
+ prettyUsageName?: string | undefined;
727
+ itemType?: "EXTERNAL_CHARGE" | "FIXED" | "RECURRING" | "REPAIR_ADJ" | "CBA_ADJ" | "CREDIT_ADJ" | "ITEM_ADJ" | "USAGE" | "TAX" | "PARENT_SUMMARY" | undefined;
728
+ startDate?: string | undefined;
729
+ endDate?: string | undefined;
730
+ rate?: number | undefined;
731
+ quantity?: number | undefined;
732
+ itemDetails?: string | undefined;
733
+ catalogEffectiveDate?: string | undefined;
734
+ childItems?: unknown[] | undefined;
735
+ }[] | undefined;
736
+ }, {
737
+ currency?: "AED" | "AFN" | "ALL" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BRL" | "BSD" | "BTN" | "BWP" | "BYR" | "BZD" | "CAD" | "CDF" | "CHF" | "CLP" | "CNY" | "COP" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GGP" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "IMP" | "INR" | "IQD" | "IRR" | "ISK" | "JEP" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LTL" | "LVL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRO" | "MUR" | "MVR" | "MWK" | "MXN" | "MYR" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SPL" | "SRD" | "STD" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TVD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "UYU" | "UZS" | "VEF" | "VND" | "VUV" | "WST" | "XAF" | "XCD" | "XDR" | "XOF" | "XPF" | "YER" | "ZAR" | "ZMW" | "ZWD" | "BTC" | undefined;
738
+ id?: string | undefined;
739
+ status?: "DRAFT" | "COMMITTED" | "VOID" | undefined;
740
+ amount?: number | undefined;
741
+ items?: {
742
+ currency?: "AED" | "AFN" | "ALL" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BRL" | "BSD" | "BTN" | "BWP" | "BYR" | "BZD" | "CAD" | "CDF" | "CHF" | "CLP" | "CNY" | "COP" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GGP" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "IMP" | "INR" | "IQD" | "IRR" | "ISK" | "JEP" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LTL" | "LVL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRO" | "MUR" | "MVR" | "MWK" | "MXN" | "MYR" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SPL" | "SRD" | "STD" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TVD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "UYU" | "UZS" | "VEF" | "VND" | "VUV" | "WST" | "XAF" | "XCD" | "XDR" | "XOF" | "XPF" | "YER" | "ZAR" | "ZMW" | "ZWD" | "BTC" | undefined;
743
+ id?: string | undefined;
744
+ description?: string | undefined;
745
+ amount?: number | undefined;
746
+ linkedInvoiceItemId?: string | undefined;
747
+ productName?: string | undefined;
748
+ planName?: string | undefined;
749
+ phaseName?: string | undefined;
750
+ usageName?: string | undefined;
751
+ prettyProductName?: string | undefined;
752
+ prettyPlanName?: string | undefined;
753
+ prettyPhaseName?: string | undefined;
754
+ prettyUsageName?: string | undefined;
755
+ itemType?: "EXTERNAL_CHARGE" | "FIXED" | "RECURRING" | "REPAIR_ADJ" | "CBA_ADJ" | "CREDIT_ADJ" | "ITEM_ADJ" | "USAGE" | "TAX" | "PARENT_SUMMARY" | undefined;
756
+ startDate?: string | undefined;
757
+ endDate?: string | undefined;
758
+ rate?: number | undefined;
759
+ quantity?: number | undefined;
760
+ itemDetails?: string | undefined;
761
+ catalogEffectiveDate?: string | undefined;
762
+ childItems?: unknown[] | undefined;
763
+ }[] | undefined;
764
+ organizationId?: string | undefined;
765
+ creditAdj?: number | undefined;
766
+ refundAdj?: number | undefined;
767
+ invoiceDate?: string | undefined;
768
+ targetDate?: string | undefined;
769
+ invoiceNumber?: string | undefined;
770
+ balance?: number | undefined;
771
+ bundleKeys?: string | undefined;
772
+ credits?: {
773
+ currency?: "AED" | "AFN" | "ALL" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BRL" | "BSD" | "BTN" | "BWP" | "BYR" | "BZD" | "CAD" | "CDF" | "CHF" | "CLP" | "CNY" | "COP" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GGP" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "IMP" | "INR" | "IQD" | "IRR" | "ISK" | "JEP" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LTL" | "LVL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRO" | "MUR" | "MVR" | "MWK" | "MXN" | "MYR" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SPL" | "SRD" | "STD" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TVD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "UYU" | "UZS" | "VEF" | "VND" | "VUV" | "WST" | "XAF" | "XCD" | "XDR" | "XOF" | "XPF" | "YER" | "ZAR" | "ZMW" | "ZWD" | "BTC" | undefined;
774
+ id?: string | undefined;
775
+ description?: string | undefined;
776
+ amount?: number | undefined;
777
+ linkedInvoiceItemId?: string | undefined;
778
+ productName?: string | undefined;
779
+ planName?: string | undefined;
780
+ phaseName?: string | undefined;
781
+ usageName?: string | undefined;
782
+ prettyProductName?: string | undefined;
783
+ prettyPlanName?: string | undefined;
784
+ prettyPhaseName?: string | undefined;
785
+ prettyUsageName?: string | undefined;
786
+ itemType?: "EXTERNAL_CHARGE" | "FIXED" | "RECURRING" | "REPAIR_ADJ" | "CBA_ADJ" | "CREDIT_ADJ" | "ITEM_ADJ" | "USAGE" | "TAX" | "PARENT_SUMMARY" | undefined;
787
+ startDate?: string | undefined;
788
+ endDate?: string | undefined;
789
+ rate?: number | undefined;
790
+ quantity?: number | undefined;
791
+ itemDetails?: string | undefined;
792
+ catalogEffectiveDate?: string | undefined;
793
+ childItems?: unknown[] | undefined;
794
+ }[] | undefined;
795
+ }>;
796
+ export declare const zOrganizationContactInfo: z.ZodObject<{
797
+ address1: z.ZodOptional<z.ZodString>;
798
+ address2: z.ZodOptional<z.ZodString>;
799
+ postalCode: z.ZodOptional<z.ZodString>;
800
+ city: z.ZodOptional<z.ZodString>;
801
+ state: z.ZodOptional<z.ZodString>;
802
+ country: z.ZodOptional<z.ZodString>;
803
+ phone: z.ZodOptional<z.ZodString>;
804
+ email: z.ZodString;
805
+ first_name: z.ZodString;
806
+ last_name: z.ZodString;
807
+ }, "strip", z.ZodTypeAny, {
808
+ email: string;
809
+ first_name: string;
810
+ last_name: string;
811
+ state?: string | undefined;
812
+ country?: string | undefined;
813
+ address1?: string | undefined;
814
+ address2?: string | undefined;
815
+ postalCode?: string | undefined;
816
+ city?: string | undefined;
817
+ phone?: string | undefined;
818
+ }, {
819
+ email: string;
820
+ first_name: string;
821
+ last_name: string;
822
+ state?: string | undefined;
823
+ country?: string | undefined;
824
+ address1?: string | undefined;
825
+ address2?: string | undefined;
826
+ postalCode?: string | undefined;
827
+ city?: string | undefined;
828
+ phone?: string | undefined;
829
+ }>;
830
+ export declare const zOrganization: z.ZodObject<{
831
+ id: z.ZodOptional<z.ZodString>;
832
+ date_created: z.ZodString;
833
+ name: z.ZodOptional<z.ZodString>;
834
+ contactInfo: z.ZodObject<{
835
+ address1: z.ZodOptional<z.ZodString>;
836
+ address2: z.ZodOptional<z.ZodString>;
837
+ postalCode: z.ZodOptional<z.ZodString>;
838
+ city: z.ZodOptional<z.ZodString>;
839
+ state: z.ZodOptional<z.ZodString>;
840
+ country: z.ZodOptional<z.ZodString>;
841
+ phone: z.ZodOptional<z.ZodString>;
842
+ email: z.ZodString;
843
+ first_name: z.ZodString;
844
+ last_name: z.ZodString;
845
+ }, "strip", z.ZodTypeAny, {
846
+ email: string;
847
+ first_name: string;
848
+ last_name: string;
849
+ state?: string | undefined;
850
+ country?: string | undefined;
851
+ address1?: string | undefined;
852
+ address2?: string | undefined;
853
+ postalCode?: string | undefined;
854
+ city?: string | undefined;
855
+ phone?: string | undefined;
856
+ }, {
857
+ email: string;
858
+ first_name: string;
859
+ last_name: string;
860
+ state?: string | undefined;
861
+ country?: string | undefined;
862
+ address1?: string | undefined;
863
+ address2?: string | undefined;
864
+ postalCode?: string | undefined;
865
+ city?: string | undefined;
866
+ phone?: string | undefined;
867
+ }>;
868
+ quota: z.ZodObject<{
869
+ basic_clusters_max: z.ZodNumber;
870
+ basic_clusters_available: z.ZodNumber;
871
+ pro_clusters_max: z.ZodNumber;
872
+ pro_clusters_available: z.ZodNumber;
873
+ fleets_max: z.ZodNumber;
874
+ managed_fleets_cpu_max: z.ZodNumber;
875
+ cluster_tiers: z.ZodArray<z.ZodString, "many">;
876
+ regions: z.ZodArray<z.ZodString, "many">;
877
+ versions: z.ZodArray<z.ZodObject<{
878
+ id: z.ZodString;
879
+ label: z.ZodString;
880
+ }, "strip", z.ZodTypeAny, {
881
+ id: string;
882
+ label: string;
883
+ }, {
884
+ id: string;
885
+ label: string;
886
+ }>, "many">;
887
+ }, "strip", z.ZodTypeAny, {
888
+ versions: {
889
+ id: string;
890
+ label: string;
891
+ }[];
892
+ basic_clusters_max: number;
893
+ basic_clusters_available: number;
894
+ pro_clusters_max: number;
895
+ pro_clusters_available: number;
896
+ fleets_max: number;
897
+ managed_fleets_cpu_max: number;
898
+ cluster_tiers: string[];
899
+ regions: string[];
900
+ }, {
901
+ versions: {
902
+ id: string;
903
+ label: string;
904
+ }[];
905
+ basic_clusters_max: number;
906
+ basic_clusters_available: number;
907
+ pro_clusters_max: number;
908
+ pro_clusters_available: number;
909
+ fleets_max: number;
910
+ managed_fleets_cpu_max: number;
911
+ cluster_tiers: string[];
912
+ regions: string[];
913
+ }>;
914
+ pending_actions: z.ZodOptional<z.ZodArray<z.ZodEnum<["signup-billing-address", "signup-payment-method", "signup-invite-team", "signup-create-cluster"]>, "many">>;
915
+ status: z.ZodOptional<z.ZodEnum<["active", "closed", "suspended"]>>;
916
+ }, "strip", z.ZodTypeAny, {
917
+ contactInfo: {
918
+ email: string;
919
+ first_name: string;
920
+ last_name: string;
921
+ state?: string | undefined;
922
+ country?: string | undefined;
923
+ address1?: string | undefined;
924
+ address2?: string | undefined;
925
+ postalCode?: string | undefined;
926
+ city?: string | undefined;
927
+ phone?: string | undefined;
928
+ };
929
+ date_created: string;
930
+ quota: {
931
+ versions: {
932
+ id: string;
933
+ label: string;
934
+ }[];
935
+ basic_clusters_max: number;
936
+ basic_clusters_available: number;
937
+ pro_clusters_max: number;
938
+ pro_clusters_available: number;
939
+ fleets_max: number;
940
+ managed_fleets_cpu_max: number;
941
+ cluster_tiers: string[];
942
+ regions: string[];
943
+ };
944
+ name?: string | undefined;
945
+ id?: string | undefined;
946
+ status?: "active" | "closed" | "suspended" | undefined;
947
+ pending_actions?: ("signup-billing-address" | "signup-payment-method" | "signup-invite-team" | "signup-create-cluster")[] | undefined;
948
+ }, {
949
+ contactInfo: {
950
+ email: string;
951
+ first_name: string;
952
+ last_name: string;
953
+ state?: string | undefined;
954
+ country?: string | undefined;
955
+ address1?: string | undefined;
956
+ address2?: string | undefined;
957
+ postalCode?: string | undefined;
958
+ city?: string | undefined;
959
+ phone?: string | undefined;
960
+ };
961
+ date_created: string;
962
+ quota: {
963
+ versions: {
964
+ id: string;
965
+ label: string;
966
+ }[];
967
+ basic_clusters_max: number;
968
+ basic_clusters_available: number;
969
+ pro_clusters_max: number;
970
+ pro_clusters_available: number;
971
+ fleets_max: number;
972
+ managed_fleets_cpu_max: number;
973
+ cluster_tiers: string[];
974
+ regions: string[];
975
+ };
976
+ name?: string | undefined;
977
+ id?: string | undefined;
978
+ status?: "active" | "closed" | "suspended" | undefined;
979
+ pending_actions?: ("signup-billing-address" | "signup-payment-method" | "signup-invite-team" | "signup-create-cluster")[] | undefined;
980
+ }>;
981
+ export declare const zPaymentMethod: z.ZodObject<{
982
+ id: z.ZodString;
983
+ setup: z.ZodBoolean;
984
+ type: z.ZodEnum<["card"]>;
985
+ last4: z.ZodString;
986
+ exp_month: z.ZodNumber;
987
+ exp_year: z.ZodNumber;
988
+ brand: z.ZodEnum<["amex", "diners", "discover", "eftpos_au", "jcb", "mastercard", "unionpay", "visa", "unknown"]>;
989
+ }, "strip", z.ZodTypeAny, {
990
+ type: "card";
991
+ id: string;
992
+ setup: boolean;
993
+ last4: string;
994
+ exp_month: number;
995
+ exp_year: number;
996
+ brand: "unknown" | "amex" | "diners" | "discover" | "eftpos_au" | "jcb" | "mastercard" | "unionpay" | "visa";
997
+ }, {
998
+ type: "card";
999
+ id: string;
1000
+ setup: boolean;
1001
+ last4: string;
1002
+ exp_month: number;
1003
+ exp_year: number;
1004
+ brand: "unknown" | "amex" | "diners" | "discover" | "eftpos_au" | "jcb" | "mastercard" | "unionpay" | "visa";
1005
+ }>;
1006
+ export declare const zToken: z.ZodObject<{
1007
+ id: z.ZodOptional<z.ZodString>;
1008
+ secret: z.ZodOptional<z.ZodString>;
1009
+ name: z.ZodOptional<z.ZodString>;
1010
+ date_created: z.ZodString;
1011
+ role: z.ZodOptional<z.ZodEnum<["Administrator", "User"]>>;
1012
+ }, "strip", z.ZodTypeAny, {
1013
+ date_created: string;
1014
+ name?: string | undefined;
1015
+ id?: string | undefined;
1016
+ secret?: string | undefined;
1017
+ role?: "Administrator" | "User" | undefined;
1018
+ }, {
1019
+ date_created: string;
1020
+ name?: string | undefined;
1021
+ id?: string | undefined;
1022
+ secret?: string | undefined;
1023
+ role?: "Administrator" | "User" | undefined;
1024
+ }>;
1025
+ export declare const zUsage: z.ZodObject<{
1026
+ id: z.ZodString;
1027
+ task_id: z.ZodString;
1028
+ unit: z.ZodString;
1029
+ amount: z.ZodNumber;
1030
+ }, "strip", z.ZodTypeAny, {
1031
+ unit: string;
1032
+ id: string;
1033
+ task_id: string;
1034
+ amount: number;
1035
+ }, {
1036
+ unit: string;
1037
+ id: string;
1038
+ task_id: string;
1039
+ amount: number;
1040
+ }>;
1041
+ export declare const zUser: z.ZodObject<{
1042
+ id: z.ZodOptional<z.ZodString>;
1043
+ date_created: z.ZodString;
1044
+ email: z.ZodOptional<z.ZodString>;
1045
+ first_name: z.ZodOptional<z.ZodString>;
1046
+ last_name: z.ZodOptional<z.ZodString>;
1047
+ role: z.ZodOptional<z.ZodEnum<["Administrator", "User"]>>;
1048
+ cluster_permissions: z.ZodOptional<z.ZodArray<z.ZodObject<{
1049
+ cluster_id: z.ZodString;
1050
+ permissions: z.ZodEnum<["readwrite", "readonly"]>;
1051
+ }, "strip", z.ZodTypeAny, {
1052
+ cluster_id: string;
1053
+ permissions: "readonly" | "readwrite";
1054
+ }, {
1055
+ cluster_id: string;
1056
+ permissions: "readonly" | "readwrite";
1057
+ }>, "many">>;
1058
+ status: z.ZodOptional<z.ZodEnum<["active", "inactive"]>>;
1059
+ }, "strip", z.ZodTypeAny, {
1060
+ date_created: string;
1061
+ id?: string | undefined;
1062
+ role?: "Administrator" | "User" | undefined;
1063
+ email?: string | undefined;
1064
+ status?: "active" | "inactive" | undefined;
1065
+ first_name?: string | undefined;
1066
+ last_name?: string | undefined;
1067
+ cluster_permissions?: {
1068
+ cluster_id: string;
1069
+ permissions: "readonly" | "readwrite";
1070
+ }[] | undefined;
1071
+ }, {
1072
+ date_created: string;
1073
+ id?: string | undefined;
1074
+ role?: "Administrator" | "User" | undefined;
1075
+ email?: string | undefined;
1076
+ status?: "active" | "inactive" | undefined;
1077
+ first_name?: string | undefined;
1078
+ last_name?: string | undefined;
1079
+ cluster_permissions?: {
1080
+ cluster_id: string;
1081
+ permissions: "readonly" | "readwrite";
1082
+ }[] | undefined;
1083
+ }>;
1084
+ export declare const zGetBillingUsageResponse: z.ZodArray<z.ZodObject<{
1085
+ id: z.ZodString;
1086
+ task_id: z.ZodString;
1087
+ unit: z.ZodString;
1088
+ amount: z.ZodNumber;
1089
+ }, "strip", z.ZodTypeAny, {
1090
+ unit: string;
1091
+ id: string;
1092
+ task_id: string;
1093
+ amount: number;
1094
+ }, {
1095
+ unit: string;
1096
+ id: string;
1097
+ task_id: string;
1098
+ amount: number;
1099
+ }>, "many">;
1100
+ export declare const zGetBillingBalanceResponse: z.ZodNumber;
1101
+ export declare const zGetBillingPaymentMethodResponse: z.ZodObject<{
1102
+ id: z.ZodString;
1103
+ setup: z.ZodBoolean;
1104
+ type: z.ZodEnum<["card"]>;
1105
+ last4: z.ZodString;
1106
+ exp_month: z.ZodNumber;
1107
+ exp_year: z.ZodNumber;
1108
+ brand: z.ZodEnum<["amex", "diners", "discover", "eftpos_au", "jcb", "mastercard", "unionpay", "visa", "unknown"]>;
1109
+ }, "strip", z.ZodTypeAny, {
1110
+ type: "card";
1111
+ id: string;
1112
+ setup: boolean;
1113
+ last4: string;
1114
+ exp_month: number;
1115
+ exp_year: number;
1116
+ brand: "unknown" | "amex" | "diners" | "discover" | "eftpos_au" | "jcb" | "mastercard" | "unionpay" | "visa";
1117
+ }, {
1118
+ type: "card";
1119
+ id: string;
1120
+ setup: boolean;
1121
+ last4: string;
1122
+ exp_month: number;
1123
+ exp_year: number;
1124
+ brand: "unknown" | "amex" | "diners" | "discover" | "eftpos_au" | "jcb" | "mastercard" | "unionpay" | "visa";
1125
+ }>;
1126
+ export declare const zPutBillingPaymentMethodResponse: z.ZodObject<{
1127
+ id: z.ZodOptional<z.ZodString>;
1128
+ }, "strip", z.ZodTypeAny, {
1129
+ id?: string | undefined;
1130
+ }, {
1131
+ id?: string | undefined;
1132
+ }>;
1133
+ export declare const zGetBillingInvoicesResponse: z.ZodArray<z.ZodObject<{
1134
+ id: z.ZodOptional<z.ZodString>;
1135
+ organizationId: z.ZodOptional<z.ZodString>;
1136
+ status: z.ZodOptional<z.ZodEnum<["DRAFT", "COMMITTED", "VOID"]>>;
1137
+ amount: z.ZodOptional<z.ZodNumber>;
1138
+ currency: z.ZodOptional<z.ZodEnum<["AED", "AFN", "ALL", "AMD", "ANG", "AOA", "ARS", "AUD", "AWG", "AZN", "BAM", "BBD", "BDT", "BGN", "BHD", "BIF", "BMD", "BND", "BOB", "BRL", "BSD", "BTN", "BWP", "BYR", "BZD", "CAD", "CDF", "CHF", "CLP", "CNY", "COP", "CRC", "CUC", "CUP", "CVE", "CZK", "DJF", "DKK", "DOP", "DZD", "EGP", "ERN", "ETB", "EUR", "FJD", "FKP", "GBP", "GEL", "GGP", "GHS", "GIP", "GMD", "GNF", "GTQ", "GYD", "HKD", "HNL", "HRK", "HTG", "HUF", "IDR", "ILS", "IMP", "INR", "IQD", "IRR", "ISK", "JEP", "JMD", "JOD", "JPY", "KES", "KGS", "KHR", "KMF", "KPW", "KRW", "KWD", "KYD", "KZT", "LAK", "LBP", "LKR", "LRD", "LSL", "LTL", "LVL", "LYD", "MAD", "MDL", "MGA", "MKD", "MMK", "MNT", "MOP", "MRO", "MUR", "MVR", "MWK", "MXN", "MYR", "MZN", "NAD", "NGN", "NIO", "NOK", "NPR", "NZD", "OMR", "PAB", "PEN", "PGK", "PHP", "PKR", "PLN", "PYG", "QAR", "RON", "RSD", "RUB", "RWF", "SAR", "SBD", "SCR", "SDG", "SEK", "SGD", "SHP", "SLL", "SOS", "SPL", "SRD", "STD", "SVC", "SYP", "SZL", "THB", "TJS", "TMT", "TND", "TOP", "TRY", "TTD", "TVD", "TWD", "TZS", "UAH", "UGX", "USD", "UYU", "UZS", "VEF", "VND", "VUV", "WST", "XAF", "XCD", "XDR", "XOF", "XPF", "YER", "ZAR", "ZMW", "ZWD", "BTC"]>>;
1139
+ creditAdj: z.ZodOptional<z.ZodNumber>;
1140
+ refundAdj: z.ZodOptional<z.ZodNumber>;
1141
+ invoiceDate: z.ZodOptional<z.ZodString>;
1142
+ targetDate: z.ZodOptional<z.ZodString>;
1143
+ invoiceNumber: z.ZodOptional<z.ZodString>;
1144
+ balance: z.ZodOptional<z.ZodNumber>;
1145
+ bundleKeys: z.ZodOptional<z.ZodString>;
1146
+ credits: z.ZodOptional<z.ZodArray<z.ZodObject<{
1147
+ id: z.ZodOptional<z.ZodString>;
1148
+ linkedInvoiceItemId: z.ZodOptional<z.ZodString>;
1149
+ productName: z.ZodOptional<z.ZodString>;
1150
+ planName: z.ZodOptional<z.ZodString>;
1151
+ phaseName: z.ZodOptional<z.ZodString>;
1152
+ usageName: z.ZodOptional<z.ZodString>;
1153
+ prettyProductName: z.ZodOptional<z.ZodString>;
1154
+ prettyPlanName: z.ZodOptional<z.ZodString>;
1155
+ prettyPhaseName: z.ZodOptional<z.ZodString>;
1156
+ prettyUsageName: z.ZodOptional<z.ZodString>;
1157
+ itemType: z.ZodOptional<z.ZodEnum<["EXTERNAL_CHARGE", "FIXED", "RECURRING", "REPAIR_ADJ", "CBA_ADJ", "CREDIT_ADJ", "ITEM_ADJ", "USAGE", "TAX", "PARENT_SUMMARY"]>>;
1158
+ description: z.ZodOptional<z.ZodString>;
1159
+ startDate: z.ZodOptional<z.ZodString>;
1160
+ endDate: z.ZodOptional<z.ZodString>;
1161
+ amount: z.ZodOptional<z.ZodNumber>;
1162
+ rate: z.ZodOptional<z.ZodNumber>;
1163
+ currency: z.ZodOptional<z.ZodEnum<["AED", "AFN", "ALL", "AMD", "ANG", "AOA", "ARS", "AUD", "AWG", "AZN", "BAM", "BBD", "BDT", "BGN", "BHD", "BIF", "BMD", "BND", "BOB", "BRL", "BSD", "BTN", "BWP", "BYR", "BZD", "CAD", "CDF", "CHF", "CLP", "CNY", "COP", "CRC", "CUC", "CUP", "CVE", "CZK", "DJF", "DKK", "DOP", "DZD", "EGP", "ERN", "ETB", "EUR", "FJD", "FKP", "GBP", "GEL", "GGP", "GHS", "GIP", "GMD", "GNF", "GTQ", "GYD", "HKD", "HNL", "HRK", "HTG", "HUF", "IDR", "ILS", "IMP", "INR", "IQD", "IRR", "ISK", "JEP", "JMD", "JOD", "JPY", "KES", "KGS", "KHR", "KMF", "KPW", "KRW", "KWD", "KYD", "KZT", "LAK", "LBP", "LKR", "LRD", "LSL", "LTL", "LVL", "LYD", "MAD", "MDL", "MGA", "MKD", "MMK", "MNT", "MOP", "MRO", "MUR", "MVR", "MWK", "MXN", "MYR", "MZN", "NAD", "NGN", "NIO", "NOK", "NPR", "NZD", "OMR", "PAB", "PEN", "PGK", "PHP", "PKR", "PLN", "PYG", "QAR", "RON", "RSD", "RUB", "RWF", "SAR", "SBD", "SCR", "SDG", "SEK", "SGD", "SHP", "SLL", "SOS", "SPL", "SRD", "STD", "SVC", "SYP", "SZL", "THB", "TJS", "TMT", "TND", "TOP", "TRY", "TTD", "TVD", "TWD", "TZS", "UAH", "UGX", "USD", "UYU", "UZS", "VEF", "VND", "VUV", "WST", "XAF", "XCD", "XDR", "XOF", "XPF", "YER", "ZAR", "ZMW", "ZWD", "BTC"]>>;
1164
+ quantity: z.ZodOptional<z.ZodNumber>;
1165
+ itemDetails: z.ZodOptional<z.ZodString>;
1166
+ catalogEffectiveDate: z.ZodOptional<z.ZodString>;
1167
+ childItems: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
1168
+ }, "strip", z.ZodTypeAny, {
1169
+ currency?: "AED" | "AFN" | "ALL" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BRL" | "BSD" | "BTN" | "BWP" | "BYR" | "BZD" | "CAD" | "CDF" | "CHF" | "CLP" | "CNY" | "COP" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GGP" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "IMP" | "INR" | "IQD" | "IRR" | "ISK" | "JEP" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LTL" | "LVL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRO" | "MUR" | "MVR" | "MWK" | "MXN" | "MYR" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SPL" | "SRD" | "STD" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TVD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "UYU" | "UZS" | "VEF" | "VND" | "VUV" | "WST" | "XAF" | "XCD" | "XDR" | "XOF" | "XPF" | "YER" | "ZAR" | "ZMW" | "ZWD" | "BTC" | undefined;
1170
+ id?: string | undefined;
1171
+ description?: string | undefined;
1172
+ amount?: number | undefined;
1173
+ linkedInvoiceItemId?: string | undefined;
1174
+ productName?: string | undefined;
1175
+ planName?: string | undefined;
1176
+ phaseName?: string | undefined;
1177
+ usageName?: string | undefined;
1178
+ prettyProductName?: string | undefined;
1179
+ prettyPlanName?: string | undefined;
1180
+ prettyPhaseName?: string | undefined;
1181
+ prettyUsageName?: string | undefined;
1182
+ itemType?: "EXTERNAL_CHARGE" | "FIXED" | "RECURRING" | "REPAIR_ADJ" | "CBA_ADJ" | "CREDIT_ADJ" | "ITEM_ADJ" | "USAGE" | "TAX" | "PARENT_SUMMARY" | undefined;
1183
+ startDate?: string | undefined;
1184
+ endDate?: string | undefined;
1185
+ rate?: number | undefined;
1186
+ quantity?: number | undefined;
1187
+ itemDetails?: string | undefined;
1188
+ catalogEffectiveDate?: string | undefined;
1189
+ childItems?: unknown[] | undefined;
1190
+ }, {
1191
+ currency?: "AED" | "AFN" | "ALL" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BRL" | "BSD" | "BTN" | "BWP" | "BYR" | "BZD" | "CAD" | "CDF" | "CHF" | "CLP" | "CNY" | "COP" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GGP" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "IMP" | "INR" | "IQD" | "IRR" | "ISK" | "JEP" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LTL" | "LVL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRO" | "MUR" | "MVR" | "MWK" | "MXN" | "MYR" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SPL" | "SRD" | "STD" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TVD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "UYU" | "UZS" | "VEF" | "VND" | "VUV" | "WST" | "XAF" | "XCD" | "XDR" | "XOF" | "XPF" | "YER" | "ZAR" | "ZMW" | "ZWD" | "BTC" | undefined;
1192
+ id?: string | undefined;
1193
+ description?: string | undefined;
1194
+ amount?: number | undefined;
1195
+ linkedInvoiceItemId?: string | undefined;
1196
+ productName?: string | undefined;
1197
+ planName?: string | undefined;
1198
+ phaseName?: string | undefined;
1199
+ usageName?: string | undefined;
1200
+ prettyProductName?: string | undefined;
1201
+ prettyPlanName?: string | undefined;
1202
+ prettyPhaseName?: string | undefined;
1203
+ prettyUsageName?: string | undefined;
1204
+ itemType?: "EXTERNAL_CHARGE" | "FIXED" | "RECURRING" | "REPAIR_ADJ" | "CBA_ADJ" | "CREDIT_ADJ" | "ITEM_ADJ" | "USAGE" | "TAX" | "PARENT_SUMMARY" | undefined;
1205
+ startDate?: string | undefined;
1206
+ endDate?: string | undefined;
1207
+ rate?: number | undefined;
1208
+ quantity?: number | undefined;
1209
+ itemDetails?: string | undefined;
1210
+ catalogEffectiveDate?: string | undefined;
1211
+ childItems?: unknown[] | undefined;
1212
+ }>, "many">>;
1213
+ items: z.ZodOptional<z.ZodArray<z.ZodObject<{
1214
+ id: z.ZodOptional<z.ZodString>;
1215
+ linkedInvoiceItemId: z.ZodOptional<z.ZodString>;
1216
+ productName: z.ZodOptional<z.ZodString>;
1217
+ planName: z.ZodOptional<z.ZodString>;
1218
+ phaseName: z.ZodOptional<z.ZodString>;
1219
+ usageName: z.ZodOptional<z.ZodString>;
1220
+ prettyProductName: z.ZodOptional<z.ZodString>;
1221
+ prettyPlanName: z.ZodOptional<z.ZodString>;
1222
+ prettyPhaseName: z.ZodOptional<z.ZodString>;
1223
+ prettyUsageName: z.ZodOptional<z.ZodString>;
1224
+ itemType: z.ZodOptional<z.ZodEnum<["EXTERNAL_CHARGE", "FIXED", "RECURRING", "REPAIR_ADJ", "CBA_ADJ", "CREDIT_ADJ", "ITEM_ADJ", "USAGE", "TAX", "PARENT_SUMMARY"]>>;
1225
+ description: z.ZodOptional<z.ZodString>;
1226
+ startDate: z.ZodOptional<z.ZodString>;
1227
+ endDate: z.ZodOptional<z.ZodString>;
1228
+ amount: z.ZodOptional<z.ZodNumber>;
1229
+ rate: z.ZodOptional<z.ZodNumber>;
1230
+ currency: z.ZodOptional<z.ZodEnum<["AED", "AFN", "ALL", "AMD", "ANG", "AOA", "ARS", "AUD", "AWG", "AZN", "BAM", "BBD", "BDT", "BGN", "BHD", "BIF", "BMD", "BND", "BOB", "BRL", "BSD", "BTN", "BWP", "BYR", "BZD", "CAD", "CDF", "CHF", "CLP", "CNY", "COP", "CRC", "CUC", "CUP", "CVE", "CZK", "DJF", "DKK", "DOP", "DZD", "EGP", "ERN", "ETB", "EUR", "FJD", "FKP", "GBP", "GEL", "GGP", "GHS", "GIP", "GMD", "GNF", "GTQ", "GYD", "HKD", "HNL", "HRK", "HTG", "HUF", "IDR", "ILS", "IMP", "INR", "IQD", "IRR", "ISK", "JEP", "JMD", "JOD", "JPY", "KES", "KGS", "KHR", "KMF", "KPW", "KRW", "KWD", "KYD", "KZT", "LAK", "LBP", "LKR", "LRD", "LSL", "LTL", "LVL", "LYD", "MAD", "MDL", "MGA", "MKD", "MMK", "MNT", "MOP", "MRO", "MUR", "MVR", "MWK", "MXN", "MYR", "MZN", "NAD", "NGN", "NIO", "NOK", "NPR", "NZD", "OMR", "PAB", "PEN", "PGK", "PHP", "PKR", "PLN", "PYG", "QAR", "RON", "RSD", "RUB", "RWF", "SAR", "SBD", "SCR", "SDG", "SEK", "SGD", "SHP", "SLL", "SOS", "SPL", "SRD", "STD", "SVC", "SYP", "SZL", "THB", "TJS", "TMT", "TND", "TOP", "TRY", "TTD", "TVD", "TWD", "TZS", "UAH", "UGX", "USD", "UYU", "UZS", "VEF", "VND", "VUV", "WST", "XAF", "XCD", "XDR", "XOF", "XPF", "YER", "ZAR", "ZMW", "ZWD", "BTC"]>>;
1231
+ quantity: z.ZodOptional<z.ZodNumber>;
1232
+ itemDetails: z.ZodOptional<z.ZodString>;
1233
+ catalogEffectiveDate: z.ZodOptional<z.ZodString>;
1234
+ childItems: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
1235
+ }, "strip", z.ZodTypeAny, {
1236
+ currency?: "AED" | "AFN" | "ALL" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BRL" | "BSD" | "BTN" | "BWP" | "BYR" | "BZD" | "CAD" | "CDF" | "CHF" | "CLP" | "CNY" | "COP" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GGP" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "IMP" | "INR" | "IQD" | "IRR" | "ISK" | "JEP" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LTL" | "LVL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRO" | "MUR" | "MVR" | "MWK" | "MXN" | "MYR" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SPL" | "SRD" | "STD" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TVD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "UYU" | "UZS" | "VEF" | "VND" | "VUV" | "WST" | "XAF" | "XCD" | "XDR" | "XOF" | "XPF" | "YER" | "ZAR" | "ZMW" | "ZWD" | "BTC" | undefined;
1237
+ id?: string | undefined;
1238
+ description?: string | undefined;
1239
+ amount?: number | undefined;
1240
+ linkedInvoiceItemId?: string | undefined;
1241
+ productName?: string | undefined;
1242
+ planName?: string | undefined;
1243
+ phaseName?: string | undefined;
1244
+ usageName?: string | undefined;
1245
+ prettyProductName?: string | undefined;
1246
+ prettyPlanName?: string | undefined;
1247
+ prettyPhaseName?: string | undefined;
1248
+ prettyUsageName?: string | undefined;
1249
+ itemType?: "EXTERNAL_CHARGE" | "FIXED" | "RECURRING" | "REPAIR_ADJ" | "CBA_ADJ" | "CREDIT_ADJ" | "ITEM_ADJ" | "USAGE" | "TAX" | "PARENT_SUMMARY" | undefined;
1250
+ startDate?: string | undefined;
1251
+ endDate?: string | undefined;
1252
+ rate?: number | undefined;
1253
+ quantity?: number | undefined;
1254
+ itemDetails?: string | undefined;
1255
+ catalogEffectiveDate?: string | undefined;
1256
+ childItems?: unknown[] | undefined;
1257
+ }, {
1258
+ currency?: "AED" | "AFN" | "ALL" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BRL" | "BSD" | "BTN" | "BWP" | "BYR" | "BZD" | "CAD" | "CDF" | "CHF" | "CLP" | "CNY" | "COP" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GGP" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "IMP" | "INR" | "IQD" | "IRR" | "ISK" | "JEP" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LTL" | "LVL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRO" | "MUR" | "MVR" | "MWK" | "MXN" | "MYR" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SPL" | "SRD" | "STD" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TVD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "UYU" | "UZS" | "VEF" | "VND" | "VUV" | "WST" | "XAF" | "XCD" | "XDR" | "XOF" | "XPF" | "YER" | "ZAR" | "ZMW" | "ZWD" | "BTC" | undefined;
1259
+ id?: string | undefined;
1260
+ description?: string | undefined;
1261
+ amount?: number | undefined;
1262
+ linkedInvoiceItemId?: string | undefined;
1263
+ productName?: string | undefined;
1264
+ planName?: string | undefined;
1265
+ phaseName?: string | undefined;
1266
+ usageName?: string | undefined;
1267
+ prettyProductName?: string | undefined;
1268
+ prettyPlanName?: string | undefined;
1269
+ prettyPhaseName?: string | undefined;
1270
+ prettyUsageName?: string | undefined;
1271
+ itemType?: "EXTERNAL_CHARGE" | "FIXED" | "RECURRING" | "REPAIR_ADJ" | "CBA_ADJ" | "CREDIT_ADJ" | "ITEM_ADJ" | "USAGE" | "TAX" | "PARENT_SUMMARY" | undefined;
1272
+ startDate?: string | undefined;
1273
+ endDate?: string | undefined;
1274
+ rate?: number | undefined;
1275
+ quantity?: number | undefined;
1276
+ itemDetails?: string | undefined;
1277
+ catalogEffectiveDate?: string | undefined;
1278
+ childItems?: unknown[] | undefined;
1279
+ }>, "many">>;
1280
+ }, "strip", z.ZodTypeAny, {
1281
+ currency?: "AED" | "AFN" | "ALL" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BRL" | "BSD" | "BTN" | "BWP" | "BYR" | "BZD" | "CAD" | "CDF" | "CHF" | "CLP" | "CNY" | "COP" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GGP" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "IMP" | "INR" | "IQD" | "IRR" | "ISK" | "JEP" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LTL" | "LVL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRO" | "MUR" | "MVR" | "MWK" | "MXN" | "MYR" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SPL" | "SRD" | "STD" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TVD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "UYU" | "UZS" | "VEF" | "VND" | "VUV" | "WST" | "XAF" | "XCD" | "XDR" | "XOF" | "XPF" | "YER" | "ZAR" | "ZMW" | "ZWD" | "BTC" | undefined;
1282
+ id?: string | undefined;
1283
+ status?: "DRAFT" | "COMMITTED" | "VOID" | undefined;
1284
+ amount?: number | undefined;
1285
+ items?: {
1286
+ currency?: "AED" | "AFN" | "ALL" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BRL" | "BSD" | "BTN" | "BWP" | "BYR" | "BZD" | "CAD" | "CDF" | "CHF" | "CLP" | "CNY" | "COP" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GGP" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "IMP" | "INR" | "IQD" | "IRR" | "ISK" | "JEP" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LTL" | "LVL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRO" | "MUR" | "MVR" | "MWK" | "MXN" | "MYR" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SPL" | "SRD" | "STD" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TVD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "UYU" | "UZS" | "VEF" | "VND" | "VUV" | "WST" | "XAF" | "XCD" | "XDR" | "XOF" | "XPF" | "YER" | "ZAR" | "ZMW" | "ZWD" | "BTC" | undefined;
1287
+ id?: string | undefined;
1288
+ description?: string | undefined;
1289
+ amount?: number | undefined;
1290
+ linkedInvoiceItemId?: string | undefined;
1291
+ productName?: string | undefined;
1292
+ planName?: string | undefined;
1293
+ phaseName?: string | undefined;
1294
+ usageName?: string | undefined;
1295
+ prettyProductName?: string | undefined;
1296
+ prettyPlanName?: string | undefined;
1297
+ prettyPhaseName?: string | undefined;
1298
+ prettyUsageName?: string | undefined;
1299
+ itemType?: "EXTERNAL_CHARGE" | "FIXED" | "RECURRING" | "REPAIR_ADJ" | "CBA_ADJ" | "CREDIT_ADJ" | "ITEM_ADJ" | "USAGE" | "TAX" | "PARENT_SUMMARY" | undefined;
1300
+ startDate?: string | undefined;
1301
+ endDate?: string | undefined;
1302
+ rate?: number | undefined;
1303
+ quantity?: number | undefined;
1304
+ itemDetails?: string | undefined;
1305
+ catalogEffectiveDate?: string | undefined;
1306
+ childItems?: unknown[] | undefined;
1307
+ }[] | undefined;
1308
+ organizationId?: string | undefined;
1309
+ creditAdj?: number | undefined;
1310
+ refundAdj?: number | undefined;
1311
+ invoiceDate?: string | undefined;
1312
+ targetDate?: string | undefined;
1313
+ invoiceNumber?: string | undefined;
1314
+ balance?: number | undefined;
1315
+ bundleKeys?: string | undefined;
1316
+ credits?: {
1317
+ currency?: "AED" | "AFN" | "ALL" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BRL" | "BSD" | "BTN" | "BWP" | "BYR" | "BZD" | "CAD" | "CDF" | "CHF" | "CLP" | "CNY" | "COP" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GGP" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "IMP" | "INR" | "IQD" | "IRR" | "ISK" | "JEP" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LTL" | "LVL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRO" | "MUR" | "MVR" | "MWK" | "MXN" | "MYR" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SPL" | "SRD" | "STD" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TVD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "UYU" | "UZS" | "VEF" | "VND" | "VUV" | "WST" | "XAF" | "XCD" | "XDR" | "XOF" | "XPF" | "YER" | "ZAR" | "ZMW" | "ZWD" | "BTC" | undefined;
1318
+ id?: string | undefined;
1319
+ description?: string | undefined;
1320
+ amount?: number | undefined;
1321
+ linkedInvoiceItemId?: string | undefined;
1322
+ productName?: string | undefined;
1323
+ planName?: string | undefined;
1324
+ phaseName?: string | undefined;
1325
+ usageName?: string | undefined;
1326
+ prettyProductName?: string | undefined;
1327
+ prettyPlanName?: string | undefined;
1328
+ prettyPhaseName?: string | undefined;
1329
+ prettyUsageName?: string | undefined;
1330
+ itemType?: "EXTERNAL_CHARGE" | "FIXED" | "RECURRING" | "REPAIR_ADJ" | "CBA_ADJ" | "CREDIT_ADJ" | "ITEM_ADJ" | "USAGE" | "TAX" | "PARENT_SUMMARY" | undefined;
1331
+ startDate?: string | undefined;
1332
+ endDate?: string | undefined;
1333
+ rate?: number | undefined;
1334
+ quantity?: number | undefined;
1335
+ itemDetails?: string | undefined;
1336
+ catalogEffectiveDate?: string | undefined;
1337
+ childItems?: unknown[] | undefined;
1338
+ }[] | undefined;
1339
+ }, {
1340
+ currency?: "AED" | "AFN" | "ALL" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BRL" | "BSD" | "BTN" | "BWP" | "BYR" | "BZD" | "CAD" | "CDF" | "CHF" | "CLP" | "CNY" | "COP" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GGP" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "IMP" | "INR" | "IQD" | "IRR" | "ISK" | "JEP" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LTL" | "LVL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRO" | "MUR" | "MVR" | "MWK" | "MXN" | "MYR" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SPL" | "SRD" | "STD" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TVD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "UYU" | "UZS" | "VEF" | "VND" | "VUV" | "WST" | "XAF" | "XCD" | "XDR" | "XOF" | "XPF" | "YER" | "ZAR" | "ZMW" | "ZWD" | "BTC" | undefined;
1341
+ id?: string | undefined;
1342
+ status?: "DRAFT" | "COMMITTED" | "VOID" | undefined;
1343
+ amount?: number | undefined;
1344
+ items?: {
1345
+ currency?: "AED" | "AFN" | "ALL" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BRL" | "BSD" | "BTN" | "BWP" | "BYR" | "BZD" | "CAD" | "CDF" | "CHF" | "CLP" | "CNY" | "COP" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GGP" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "IMP" | "INR" | "IQD" | "IRR" | "ISK" | "JEP" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LTL" | "LVL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRO" | "MUR" | "MVR" | "MWK" | "MXN" | "MYR" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SPL" | "SRD" | "STD" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TVD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "UYU" | "UZS" | "VEF" | "VND" | "VUV" | "WST" | "XAF" | "XCD" | "XDR" | "XOF" | "XPF" | "YER" | "ZAR" | "ZMW" | "ZWD" | "BTC" | undefined;
1346
+ id?: string | undefined;
1347
+ description?: string | undefined;
1348
+ amount?: number | undefined;
1349
+ linkedInvoiceItemId?: string | undefined;
1350
+ productName?: string | undefined;
1351
+ planName?: string | undefined;
1352
+ phaseName?: string | undefined;
1353
+ usageName?: string | undefined;
1354
+ prettyProductName?: string | undefined;
1355
+ prettyPlanName?: string | undefined;
1356
+ prettyPhaseName?: string | undefined;
1357
+ prettyUsageName?: string | undefined;
1358
+ itemType?: "EXTERNAL_CHARGE" | "FIXED" | "RECURRING" | "REPAIR_ADJ" | "CBA_ADJ" | "CREDIT_ADJ" | "ITEM_ADJ" | "USAGE" | "TAX" | "PARENT_SUMMARY" | undefined;
1359
+ startDate?: string | undefined;
1360
+ endDate?: string | undefined;
1361
+ rate?: number | undefined;
1362
+ quantity?: number | undefined;
1363
+ itemDetails?: string | undefined;
1364
+ catalogEffectiveDate?: string | undefined;
1365
+ childItems?: unknown[] | undefined;
1366
+ }[] | undefined;
1367
+ organizationId?: string | undefined;
1368
+ creditAdj?: number | undefined;
1369
+ refundAdj?: number | undefined;
1370
+ invoiceDate?: string | undefined;
1371
+ targetDate?: string | undefined;
1372
+ invoiceNumber?: string | undefined;
1373
+ balance?: number | undefined;
1374
+ bundleKeys?: string | undefined;
1375
+ credits?: {
1376
+ currency?: "AED" | "AFN" | "ALL" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BRL" | "BSD" | "BTN" | "BWP" | "BYR" | "BZD" | "CAD" | "CDF" | "CHF" | "CLP" | "CNY" | "COP" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GGP" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "IMP" | "INR" | "IQD" | "IRR" | "ISK" | "JEP" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LTL" | "LVL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRO" | "MUR" | "MVR" | "MWK" | "MXN" | "MYR" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SPL" | "SRD" | "STD" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TVD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "UYU" | "UZS" | "VEF" | "VND" | "VUV" | "WST" | "XAF" | "XCD" | "XDR" | "XOF" | "XPF" | "YER" | "ZAR" | "ZMW" | "ZWD" | "BTC" | undefined;
1377
+ id?: string | undefined;
1378
+ description?: string | undefined;
1379
+ amount?: number | undefined;
1380
+ linkedInvoiceItemId?: string | undefined;
1381
+ productName?: string | undefined;
1382
+ planName?: string | undefined;
1383
+ phaseName?: string | undefined;
1384
+ usageName?: string | undefined;
1385
+ prettyProductName?: string | undefined;
1386
+ prettyPlanName?: string | undefined;
1387
+ prettyPhaseName?: string | undefined;
1388
+ prettyUsageName?: string | undefined;
1389
+ itemType?: "EXTERNAL_CHARGE" | "FIXED" | "RECURRING" | "REPAIR_ADJ" | "CBA_ADJ" | "CREDIT_ADJ" | "ITEM_ADJ" | "USAGE" | "TAX" | "PARENT_SUMMARY" | undefined;
1390
+ startDate?: string | undefined;
1391
+ endDate?: string | undefined;
1392
+ rate?: number | undefined;
1393
+ quantity?: number | undefined;
1394
+ itemDetails?: string | undefined;
1395
+ catalogEffectiveDate?: string | undefined;
1396
+ childItems?: unknown[] | undefined;
1397
+ }[] | undefined;
1398
+ }>, "many">;
1399
+ export declare const zGetBillingInvoicesByIdResponse: z.ZodObject<{
1400
+ html: z.ZodOptional<z.ZodString>;
1401
+ }, "strip", z.ZodTypeAny, {
1402
+ html?: string | undefined;
1403
+ }, {
1404
+ html?: string | undefined;
1405
+ }>;
1406
+ export declare const zGetClustersByClusterIdFleetsResponse: z.ZodArray<z.ZodObject<{
1407
+ limits: z.ZodOptional<z.ZodObject<{
1408
+ cpu: z.ZodNumber;
1409
+ }, "strip", z.ZodTypeAny, {
1410
+ cpu: number;
1411
+ }, {
1412
+ cpu: number;
1413
+ }>>;
1414
+ gcp: z.ZodOptional<z.ZodObject<{
1415
+ enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1416
+ project: z.ZodString;
1417
+ }, "strip", z.ZodTypeAny, {
1418
+ project: string;
1419
+ enabled: boolean;
1420
+ }, {
1421
+ project: string;
1422
+ enabled?: boolean | undefined;
1423
+ }>>;
1424
+ hetzner: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
1425
+ enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1426
+ apiKey: z.ZodOptional<z.ZodString>;
1427
+ }, "strip", z.ZodTypeAny, {
1428
+ enabled: boolean;
1429
+ apiKey?: string | undefined;
1430
+ }, {
1431
+ apiKey?: string | undefined;
1432
+ enabled?: boolean | undefined;
1433
+ }>, z.ZodObject<{
1434
+ apiKey: z.ZodOptional<z.ZodString>;
1435
+ enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1436
+ }, "strip", z.ZodTypeAny, {
1437
+ enabled: boolean;
1438
+ apiKey?: string | undefined;
1439
+ }, {
1440
+ apiKey?: string | undefined;
1441
+ enabled?: boolean | undefined;
1442
+ }>]>>;
1443
+ aws: z.ZodOptional<z.ZodObject<{
1444
+ enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1445
+ controllerRoleArn: z.ZodString;
1446
+ }, "strip", z.ZodTypeAny, {
1447
+ controllerRoleArn: string;
1448
+ enabled: boolean;
1449
+ }, {
1450
+ controllerRoleArn: string;
1451
+ enabled?: boolean | undefined;
1452
+ }>>;
1453
+ id: z.ZodString;
1454
+ type: z.ZodEnum<["managed", "connected"]>;
1455
+ }, "strip", z.ZodTypeAny, {
1456
+ type: "connected" | "managed";
1457
+ id: string;
1458
+ limits?: {
1459
+ cpu: number;
1460
+ } | undefined;
1461
+ gcp?: {
1462
+ project: string;
1463
+ enabled: boolean;
1464
+ } | undefined;
1465
+ hetzner?: {
1466
+ enabled: boolean;
1467
+ apiKey?: string | undefined;
1468
+ } | {
1469
+ enabled: boolean;
1470
+ apiKey?: string | undefined;
1471
+ } | undefined;
1472
+ aws?: {
1473
+ controllerRoleArn: string;
1474
+ enabled: boolean;
1475
+ } | undefined;
1476
+ }, {
1477
+ type: "connected" | "managed";
1478
+ id: string;
1479
+ limits?: {
1480
+ cpu: number;
1481
+ } | undefined;
1482
+ gcp?: {
1483
+ project: string;
1484
+ enabled?: boolean | undefined;
1485
+ } | undefined;
1486
+ hetzner?: {
1487
+ apiKey?: string | undefined;
1488
+ enabled?: boolean | undefined;
1489
+ } | {
1490
+ apiKey?: string | undefined;
1491
+ enabled?: boolean | undefined;
1492
+ } | undefined;
1493
+ aws?: {
1494
+ controllerRoleArn: string;
1495
+ enabled?: boolean | undefined;
1496
+ } | undefined;
1497
+ }>, "many">;
1498
+ export declare const zPostClustersByClusterIdFleetsResponse: z.ZodString;
1499
+ export declare const zDeleteClustersByClusterIdFleetsByFleetNameResponse: z.ZodString;
1500
+ export declare const zGetClustersByClusterIdFleetsByFleetNameResponse: z.ZodObject<{
1501
+ limits: z.ZodOptional<z.ZodObject<{
1502
+ cpu: z.ZodNumber;
1503
+ }, "strip", z.ZodTypeAny, {
1504
+ cpu: number;
1505
+ }, {
1506
+ cpu: number;
1507
+ }>>;
1508
+ gcp: z.ZodOptional<z.ZodObject<{
1509
+ enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1510
+ project: z.ZodString;
1511
+ }, "strip", z.ZodTypeAny, {
1512
+ project: string;
1513
+ enabled: boolean;
1514
+ }, {
1515
+ project: string;
1516
+ enabled?: boolean | undefined;
1517
+ }>>;
1518
+ hetzner: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
1519
+ enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1520
+ apiKey: z.ZodOptional<z.ZodString>;
1521
+ }, "strip", z.ZodTypeAny, {
1522
+ enabled: boolean;
1523
+ apiKey?: string | undefined;
1524
+ }, {
1525
+ apiKey?: string | undefined;
1526
+ enabled?: boolean | undefined;
1527
+ }>, z.ZodObject<{
1528
+ apiKey: z.ZodOptional<z.ZodString>;
1529
+ enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1530
+ }, "strip", z.ZodTypeAny, {
1531
+ enabled: boolean;
1532
+ apiKey?: string | undefined;
1533
+ }, {
1534
+ apiKey?: string | undefined;
1535
+ enabled?: boolean | undefined;
1536
+ }>]>>;
1537
+ aws: z.ZodOptional<z.ZodObject<{
1538
+ enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1539
+ controllerRoleArn: z.ZodString;
1540
+ }, "strip", z.ZodTypeAny, {
1541
+ controllerRoleArn: string;
1542
+ enabled: boolean;
1543
+ }, {
1544
+ controllerRoleArn: string;
1545
+ enabled?: boolean | undefined;
1546
+ }>>;
1547
+ id: z.ZodString;
1548
+ type: z.ZodEnum<["managed", "connected"]>;
1549
+ }, "strip", z.ZodTypeAny, {
1550
+ type: "connected" | "managed";
1551
+ id: string;
1552
+ limits?: {
1553
+ cpu: number;
1554
+ } | undefined;
1555
+ gcp?: {
1556
+ project: string;
1557
+ enabled: boolean;
1558
+ } | undefined;
1559
+ hetzner?: {
1560
+ enabled: boolean;
1561
+ apiKey?: string | undefined;
1562
+ } | {
1563
+ enabled: boolean;
1564
+ apiKey?: string | undefined;
1565
+ } | undefined;
1566
+ aws?: {
1567
+ controllerRoleArn: string;
1568
+ enabled: boolean;
1569
+ } | undefined;
1570
+ }, {
1571
+ type: "connected" | "managed";
1572
+ id: string;
1573
+ limits?: {
1574
+ cpu: number;
1575
+ } | undefined;
1576
+ gcp?: {
1577
+ project: string;
1578
+ enabled?: boolean | undefined;
1579
+ } | undefined;
1580
+ hetzner?: {
1581
+ apiKey?: string | undefined;
1582
+ enabled?: boolean | undefined;
1583
+ } | {
1584
+ apiKey?: string | undefined;
1585
+ enabled?: boolean | undefined;
1586
+ } | undefined;
1587
+ aws?: {
1588
+ controllerRoleArn: string;
1589
+ enabled?: boolean | undefined;
1590
+ } | undefined;
1591
+ }>;
1592
+ export declare const zPutClustersByClusterIdFleetsByFleetNameResponse: z.ZodString;
1593
+ export declare const zGetClustersResponse: z.ZodArray<z.ZodObject<{
1594
+ name: z.ZodString;
1595
+ region: z.ZodOptional<z.ZodEnum<["staging", "northamerica-central-1"]>>;
1596
+ tier: z.ZodEnum<["basic", "pro"]>;
1597
+ version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
1598
+ id: z.ZodString;
1599
+ status: z.ZodEnum<["active", "deleted", "creating", "deployed", "failed", "updating"]>;
1600
+ endpoint: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodEnum<[""]>]>>;
1601
+ certificate_ca: z.ZodOptional<z.ZodString>;
1602
+ version_current: z.ZodOptional<z.ZodString>;
1603
+ created_at: z.ZodOptional<z.ZodString>;
1604
+ updated_at: z.ZodOptional<z.ZodString>;
1605
+ ready: z.ZodOptional<z.ZodBoolean>;
1606
+ }, "strip", z.ZodTypeAny, {
1607
+ name: string;
1608
+ id: string;
1609
+ status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
1610
+ tier: "basic" | "pro";
1611
+ version_channel: string;
1612
+ region?: "staging" | "northamerica-central-1" | undefined;
1613
+ endpoint?: string | undefined;
1614
+ certificate_ca?: string | undefined;
1615
+ version_current?: string | undefined;
1616
+ created_at?: string | undefined;
1617
+ updated_at?: string | undefined;
1618
+ ready?: boolean | undefined;
1619
+ }, {
1620
+ name: string;
1621
+ id: string;
1622
+ status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
1623
+ tier: "basic" | "pro";
1624
+ region?: "staging" | "northamerica-central-1" | undefined;
1625
+ version_channel?: string | undefined;
1626
+ endpoint?: string | undefined;
1627
+ certificate_ca?: string | undefined;
1628
+ version_current?: string | undefined;
1629
+ created_at?: string | undefined;
1630
+ updated_at?: string | undefined;
1631
+ ready?: boolean | undefined;
1632
+ }>, "many">;
1633
+ export declare const zPostClustersResponse: z.ZodString;
1634
+ export declare const zDeleteClustersByClusterIdResponse: z.ZodString;
1635
+ export declare const zGetClustersByClusterIdResponse: z.ZodObject<{
1636
+ name: z.ZodString;
1637
+ region: z.ZodOptional<z.ZodEnum<["staging", "northamerica-central-1"]>>;
1638
+ tier: z.ZodEnum<["basic", "pro"]>;
1639
+ version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
1640
+ id: z.ZodString;
1641
+ status: z.ZodEnum<["active", "deleted", "creating", "deployed", "failed", "updating"]>;
1642
+ endpoint: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodEnum<[""]>]>>;
1643
+ certificate_ca: z.ZodOptional<z.ZodString>;
1644
+ version_current: z.ZodOptional<z.ZodString>;
1645
+ created_at: z.ZodOptional<z.ZodString>;
1646
+ updated_at: z.ZodOptional<z.ZodString>;
1647
+ ready: z.ZodOptional<z.ZodBoolean>;
1648
+ }, "strip", z.ZodTypeAny, {
1649
+ name: string;
1650
+ id: string;
1651
+ status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
1652
+ tier: "basic" | "pro";
1653
+ version_channel: string;
1654
+ region?: "staging" | "northamerica-central-1" | undefined;
1655
+ endpoint?: string | undefined;
1656
+ certificate_ca?: string | undefined;
1657
+ version_current?: string | undefined;
1658
+ created_at?: string | undefined;
1659
+ updated_at?: string | undefined;
1660
+ ready?: boolean | undefined;
1661
+ }, {
1662
+ name: string;
1663
+ id: string;
1664
+ status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
1665
+ tier: "basic" | "pro";
1666
+ region?: "staging" | "northamerica-central-1" | undefined;
1667
+ version_channel?: string | undefined;
1668
+ endpoint?: string | undefined;
1669
+ certificate_ca?: string | undefined;
1670
+ version_current?: string | undefined;
1671
+ created_at?: string | undefined;
1672
+ updated_at?: string | undefined;
1673
+ ready?: boolean | undefined;
1674
+ }>;
1675
+ export declare const zPutClustersByClusterIdResponse: z.ZodObject<{
1676
+ name: z.ZodString;
1677
+ region: z.ZodOptional<z.ZodEnum<["staging", "northamerica-central-1"]>>;
1678
+ tier: z.ZodEnum<["basic", "pro"]>;
1679
+ version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
1680
+ id: z.ZodString;
1681
+ status: z.ZodEnum<["active", "deleted", "creating", "deployed", "failed", "updating"]>;
1682
+ endpoint: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodEnum<[""]>]>>;
1683
+ certificate_ca: z.ZodOptional<z.ZodString>;
1684
+ version_current: z.ZodOptional<z.ZodString>;
1685
+ created_at: z.ZodOptional<z.ZodString>;
1686
+ updated_at: z.ZodOptional<z.ZodString>;
1687
+ ready: z.ZodOptional<z.ZodBoolean>;
1688
+ }, "strip", z.ZodTypeAny, {
1689
+ name: string;
1690
+ id: string;
1691
+ status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
1692
+ tier: "basic" | "pro";
1693
+ version_channel: string;
1694
+ region?: "staging" | "northamerica-central-1" | undefined;
1695
+ endpoint?: string | undefined;
1696
+ certificate_ca?: string | undefined;
1697
+ version_current?: string | undefined;
1698
+ created_at?: string | undefined;
1699
+ updated_at?: string | undefined;
1700
+ ready?: boolean | undefined;
1701
+ }, {
1702
+ name: string;
1703
+ id: string;
1704
+ status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
1705
+ tier: "basic" | "pro";
1706
+ region?: "staging" | "northamerica-central-1" | undefined;
1707
+ version_channel?: string | undefined;
1708
+ endpoint?: string | undefined;
1709
+ certificate_ca?: string | undefined;
1710
+ version_current?: string | undefined;
1711
+ created_at?: string | undefined;
1712
+ updated_at?: string | undefined;
1713
+ ready?: boolean | undefined;
1714
+ }>;
1715
+ export declare const zPostClustersByClusterIdJoinInformationResponse: z.ZodObject<{
1716
+ name: z.ZodString;
1717
+ region: z.ZodOptional<z.ZodEnum<["staging", "northamerica-central-1"]>>;
1718
+ tier: z.ZodEnum<["basic", "pro"]>;
1719
+ version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
1720
+ id: z.ZodString;
1721
+ status: z.ZodEnum<["active", "deleted", "creating", "deployed", "failed", "updating"]>;
1722
+ endpoint: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodEnum<[""]>]>>;
1723
+ certificate_ca: z.ZodOptional<z.ZodString>;
1724
+ version_current: z.ZodOptional<z.ZodString>;
1725
+ created_at: z.ZodOptional<z.ZodString>;
1726
+ updated_at: z.ZodOptional<z.ZodString>;
1727
+ ready: z.ZodOptional<z.ZodBoolean>;
1728
+ }, "strip", z.ZodTypeAny, {
1729
+ name: string;
1730
+ id: string;
1731
+ status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
1732
+ tier: "basic" | "pro";
1733
+ version_channel: string;
1734
+ region?: "staging" | "northamerica-central-1" | undefined;
1735
+ endpoint?: string | undefined;
1736
+ certificate_ca?: string | undefined;
1737
+ version_current?: string | undefined;
1738
+ created_at?: string | undefined;
1739
+ updated_at?: string | undefined;
1740
+ ready?: boolean | undefined;
1741
+ }, {
1742
+ name: string;
1743
+ id: string;
1744
+ status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
1745
+ tier: "basic" | "pro";
1746
+ region?: "staging" | "northamerica-central-1" | undefined;
1747
+ version_channel?: string | undefined;
1748
+ endpoint?: string | undefined;
1749
+ certificate_ca?: string | undefined;
1750
+ version_current?: string | undefined;
1751
+ created_at?: string | undefined;
1752
+ updated_at?: string | undefined;
1753
+ ready?: boolean | undefined;
1754
+ }>;
1755
+ export declare const zGetInfrastructureResponse: z.ZodArray<z.ZodObject<{
1756
+ sku: z.ZodString;
1757
+ provider: z.ZodString;
1758
+ region: z.ZodString;
1759
+ sub_region: z.ZodString;
1760
+ csp_region: z.ZodString;
1761
+ csp_zone: z.ZodString;
1762
+ instance_type: z.ZodString;
1763
+ architecture: z.ZodString;
1764
+ os: z.ZodString;
1765
+ vcpu: z.ZodNumber;
1766
+ memory: z.ZodNumber;
1767
+ local_storage: z.ZodNumber;
1768
+ accelerator_name: z.ZodOptional<z.ZodString>;
1769
+ accelerator_manufacturer: z.ZodOptional<z.ZodString>;
1770
+ accelerator_count: z.ZodOptional<z.ZodNumber>;
1771
+ accelerator_memory: z.ZodOptional<z.ZodNumber>;
1772
+ pods_capacity: z.ZodOptional<z.ZodNumber>;
1773
+ capacity_type: z.ZodOptional<z.ZodString>;
1774
+ price: z.ZodNumber;
1775
+ available: z.ZodOptional<z.ZodBoolean>;
1776
+ }, "strip", z.ZodTypeAny, {
1777
+ memory: number;
1778
+ region: string;
1779
+ provider: string;
1780
+ sub_region: string;
1781
+ csp_region: string;
1782
+ instance_type: string;
1783
+ sku: string;
1784
+ csp_zone: string;
1785
+ architecture: string;
1786
+ os: string;
1787
+ vcpu: number;
1788
+ local_storage: number;
1789
+ price: number;
1790
+ accelerator_name?: string | undefined;
1791
+ accelerator_manufacturer?: string | undefined;
1792
+ accelerator_count?: number | undefined;
1793
+ accelerator_memory?: number | undefined;
1794
+ pods_capacity?: number | undefined;
1795
+ capacity_type?: string | undefined;
1796
+ available?: boolean | undefined;
1797
+ }, {
1798
+ memory: number;
1799
+ region: string;
1800
+ provider: string;
1801
+ sub_region: string;
1802
+ csp_region: string;
1803
+ instance_type: string;
1804
+ sku: string;
1805
+ csp_zone: string;
1806
+ architecture: string;
1807
+ os: string;
1808
+ vcpu: number;
1809
+ local_storage: number;
1810
+ price: number;
1811
+ accelerator_name?: string | undefined;
1812
+ accelerator_manufacturer?: string | undefined;
1813
+ accelerator_count?: number | undefined;
1814
+ accelerator_memory?: number | undefined;
1815
+ pods_capacity?: number | undefined;
1816
+ capacity_type?: string | undefined;
1817
+ available?: boolean | undefined;
1818
+ }>, "many">;
1819
+ export declare const zGetInfrastructureFacetsResponse: z.ZodArray<z.ZodObject<{
1820
+ provider: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1821
+ region: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1822
+ sub_region: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1823
+ csp_region: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1824
+ vcpu_min: z.ZodOptional<z.ZodNumber>;
1825
+ vcpu_max: z.ZodOptional<z.ZodNumber>;
1826
+ memory_min: z.ZodOptional<z.ZodNumber>;
1827
+ memory_max: z.ZodOptional<z.ZodNumber>;
1828
+ storage_local_min: z.ZodOptional<z.ZodNumber>;
1829
+ storage_local_max: z.ZodOptional<z.ZodNumber>;
1830
+ accelerator_name: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1831
+ accelerator_manufacturer: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1832
+ accelerator_count_min: z.ZodOptional<z.ZodNumber>;
1833
+ accelerator_count_max: z.ZodOptional<z.ZodNumber>;
1834
+ accelerator_memory_min: z.ZodOptional<z.ZodNumber>;
1835
+ accelerator_memory_max: z.ZodOptional<z.ZodNumber>;
1836
+ price_min: z.ZodOptional<z.ZodNumber>;
1837
+ price_max: z.ZodOptional<z.ZodNumber>;
1838
+ regions_struct: z.ZodOptional<z.ZodArray<z.ZodObject<{
1839
+ region: z.ZodOptional<z.ZodString>;
1840
+ sub_region: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1841
+ }, "strip", z.ZodTypeAny, {
1842
+ region?: string | undefined;
1843
+ sub_region?: string[] | undefined;
1844
+ }, {
1845
+ region?: string | undefined;
1846
+ sub_region?: string[] | undefined;
1847
+ }>, "many">>;
1848
+ accelerators_struct: z.ZodOptional<z.ZodArray<z.ZodObject<{
1849
+ accelerator_manufacturer: z.ZodOptional<z.ZodString>;
1850
+ accelerator_name: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1851
+ }, "strip", z.ZodTypeAny, {
1852
+ accelerator_name?: string[] | undefined;
1853
+ accelerator_manufacturer?: string | undefined;
1854
+ }, {
1855
+ accelerator_name?: string[] | undefined;
1856
+ accelerator_manufacturer?: string | undefined;
1857
+ }>, "many">>;
1858
+ count_total: z.ZodOptional<z.ZodNumber>;
1859
+ count_accelerators: z.ZodOptional<z.ZodNumber>;
1860
+ count_instance_types: z.ZodOptional<z.ZodNumber>;
1861
+ count_accelerators_instance_types: z.ZodOptional<z.ZodNumber>;
1862
+ }, "strip", z.ZodTypeAny, {
1863
+ region?: string[] | undefined;
1864
+ provider?: string[] | undefined;
1865
+ sub_region?: string[] | undefined;
1866
+ csp_region?: string[] | undefined;
1867
+ accelerator_name?: string[] | undefined;
1868
+ accelerator_manufacturer?: string[] | undefined;
1869
+ accelerator_count_min?: number | undefined;
1870
+ accelerator_count_max?: number | undefined;
1871
+ accelerator_memory_min?: number | undefined;
1872
+ accelerator_memory_max?: number | undefined;
1873
+ memory_min?: number | undefined;
1874
+ memory_max?: number | undefined;
1875
+ vcpu_min?: number | undefined;
1876
+ vcpu_max?: number | undefined;
1877
+ storage_local_min?: number | undefined;
1878
+ storage_local_max?: number | undefined;
1879
+ price_min?: number | undefined;
1880
+ price_max?: number | undefined;
1881
+ regions_struct?: {
1882
+ region?: string | undefined;
1883
+ sub_region?: string[] | undefined;
1884
+ }[] | undefined;
1885
+ accelerators_struct?: {
1886
+ accelerator_name?: string[] | undefined;
1887
+ accelerator_manufacturer?: string | undefined;
1888
+ }[] | undefined;
1889
+ count_total?: number | undefined;
1890
+ count_accelerators?: number | undefined;
1891
+ count_instance_types?: number | undefined;
1892
+ count_accelerators_instance_types?: number | undefined;
1893
+ }, {
1894
+ region?: string[] | undefined;
1895
+ provider?: string[] | undefined;
1896
+ sub_region?: string[] | undefined;
1897
+ csp_region?: string[] | undefined;
1898
+ accelerator_name?: string[] | undefined;
1899
+ accelerator_manufacturer?: string[] | undefined;
1900
+ accelerator_count_min?: number | undefined;
1901
+ accelerator_count_max?: number | undefined;
1902
+ accelerator_memory_min?: number | undefined;
1903
+ accelerator_memory_max?: number | undefined;
1904
+ memory_min?: number | undefined;
1905
+ memory_max?: number | undefined;
1906
+ vcpu_min?: number | undefined;
1907
+ vcpu_max?: number | undefined;
1908
+ storage_local_min?: number | undefined;
1909
+ storage_local_max?: number | undefined;
1910
+ price_min?: number | undefined;
1911
+ price_max?: number | undefined;
1912
+ regions_struct?: {
1913
+ region?: string | undefined;
1914
+ sub_region?: string[] | undefined;
1915
+ }[] | undefined;
1916
+ accelerators_struct?: {
1917
+ accelerator_name?: string[] | undefined;
1918
+ accelerator_manufacturer?: string | undefined;
1919
+ }[] | undefined;
1920
+ count_total?: number | undefined;
1921
+ count_accelerators?: number | undefined;
1922
+ count_instance_types?: number | undefined;
1923
+ count_accelerators_instance_types?: number | undefined;
1924
+ }>, "many">;
1925
+ export declare const zGetInfrastructureRegionsResponse: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
1926
+ export declare const zGetInvitesResponse: z.ZodArray<z.ZodObject<{
1927
+ id: z.ZodOptional<z.ZodString>;
1928
+ organization_id: z.ZodOptional<z.ZodString>;
1929
+ date_created: z.ZodString;
1930
+ email: z.ZodOptional<z.ZodString>;
1931
+ code: z.ZodOptional<z.ZodString>;
1932
+ }, "strip", z.ZodTypeAny, {
1933
+ date_created: string;
1934
+ code?: string | undefined;
1935
+ id?: string | undefined;
1936
+ email?: string | undefined;
1937
+ organization_id?: string | undefined;
1938
+ }, {
1939
+ date_created: string;
1940
+ code?: string | undefined;
1941
+ id?: string | undefined;
1942
+ email?: string | undefined;
1943
+ organization_id?: string | undefined;
1944
+ }>, "many">;
1945
+ export declare const zPostInvitesResponse: z.ZodObject<{
1946
+ id: z.ZodOptional<z.ZodString>;
1947
+ organization_id: z.ZodOptional<z.ZodString>;
1948
+ date_created: z.ZodString;
1949
+ email: z.ZodOptional<z.ZodString>;
1950
+ code: z.ZodOptional<z.ZodString>;
1951
+ }, "strip", z.ZodTypeAny, {
1952
+ date_created: string;
1953
+ code?: string | undefined;
1954
+ id?: string | undefined;
1955
+ email?: string | undefined;
1956
+ organization_id?: string | undefined;
1957
+ }, {
1958
+ date_created: string;
1959
+ code?: string | undefined;
1960
+ id?: string | undefined;
1961
+ email?: string | undefined;
1962
+ organization_id?: string | undefined;
1963
+ }>;
1964
+ export declare const zGetInvitesByCodeResponse: z.ZodObject<{
1965
+ id: z.ZodOptional<z.ZodString>;
1966
+ organization_id: z.ZodOptional<z.ZodString>;
1967
+ date_created: z.ZodString;
1968
+ email: z.ZodOptional<z.ZodString>;
1969
+ code: z.ZodOptional<z.ZodString>;
1970
+ }, "strip", z.ZodTypeAny, {
1971
+ date_created: string;
1972
+ code?: string | undefined;
1973
+ id?: string | undefined;
1974
+ email?: string | undefined;
1975
+ organization_id?: string | undefined;
1976
+ }, {
1977
+ date_created: string;
1978
+ code?: string | undefined;
1979
+ id?: string | undefined;
1980
+ email?: string | undefined;
1981
+ organization_id?: string | undefined;
1982
+ }>;
1983
+ export declare const zGetOrganizationResponse: z.ZodObject<{
1984
+ id: z.ZodOptional<z.ZodString>;
1985
+ date_created: z.ZodString;
1986
+ name: z.ZodOptional<z.ZodString>;
1987
+ contactInfo: z.ZodObject<{
1988
+ address1: z.ZodOptional<z.ZodString>;
1989
+ address2: z.ZodOptional<z.ZodString>;
1990
+ postalCode: z.ZodOptional<z.ZodString>;
1991
+ city: z.ZodOptional<z.ZodString>;
1992
+ state: z.ZodOptional<z.ZodString>;
1993
+ country: z.ZodOptional<z.ZodString>;
1994
+ phone: z.ZodOptional<z.ZodString>;
1995
+ email: z.ZodString;
1996
+ first_name: z.ZodString;
1997
+ last_name: z.ZodString;
1998
+ }, "strip", z.ZodTypeAny, {
1999
+ email: string;
2000
+ first_name: string;
2001
+ last_name: string;
2002
+ state?: string | undefined;
2003
+ country?: string | undefined;
2004
+ address1?: string | undefined;
2005
+ address2?: string | undefined;
2006
+ postalCode?: string | undefined;
2007
+ city?: string | undefined;
2008
+ phone?: string | undefined;
2009
+ }, {
2010
+ email: string;
2011
+ first_name: string;
2012
+ last_name: string;
2013
+ state?: string | undefined;
2014
+ country?: string | undefined;
2015
+ address1?: string | undefined;
2016
+ address2?: string | undefined;
2017
+ postalCode?: string | undefined;
2018
+ city?: string | undefined;
2019
+ phone?: string | undefined;
2020
+ }>;
2021
+ quota: z.ZodObject<{
2022
+ basic_clusters_max: z.ZodNumber;
2023
+ basic_clusters_available: z.ZodNumber;
2024
+ pro_clusters_max: z.ZodNumber;
2025
+ pro_clusters_available: z.ZodNumber;
2026
+ fleets_max: z.ZodNumber;
2027
+ managed_fleets_cpu_max: z.ZodNumber;
2028
+ cluster_tiers: z.ZodArray<z.ZodString, "many">;
2029
+ regions: z.ZodArray<z.ZodString, "many">;
2030
+ versions: z.ZodArray<z.ZodObject<{
2031
+ id: z.ZodString;
2032
+ label: z.ZodString;
2033
+ }, "strip", z.ZodTypeAny, {
2034
+ id: string;
2035
+ label: string;
2036
+ }, {
2037
+ id: string;
2038
+ label: string;
2039
+ }>, "many">;
2040
+ }, "strip", z.ZodTypeAny, {
2041
+ versions: {
2042
+ id: string;
2043
+ label: string;
2044
+ }[];
2045
+ basic_clusters_max: number;
2046
+ basic_clusters_available: number;
2047
+ pro_clusters_max: number;
2048
+ pro_clusters_available: number;
2049
+ fleets_max: number;
2050
+ managed_fleets_cpu_max: number;
2051
+ cluster_tiers: string[];
2052
+ regions: string[];
2053
+ }, {
2054
+ versions: {
2055
+ id: string;
2056
+ label: string;
2057
+ }[];
2058
+ basic_clusters_max: number;
2059
+ basic_clusters_available: number;
2060
+ pro_clusters_max: number;
2061
+ pro_clusters_available: number;
2062
+ fleets_max: number;
2063
+ managed_fleets_cpu_max: number;
2064
+ cluster_tiers: string[];
2065
+ regions: string[];
2066
+ }>;
2067
+ pending_actions: z.ZodOptional<z.ZodArray<z.ZodEnum<["signup-billing-address", "signup-payment-method", "signup-invite-team", "signup-create-cluster"]>, "many">>;
2068
+ status: z.ZodOptional<z.ZodEnum<["active", "closed", "suspended"]>>;
2069
+ }, "strip", z.ZodTypeAny, {
2070
+ contactInfo: {
2071
+ email: string;
2072
+ first_name: string;
2073
+ last_name: string;
2074
+ state?: string | undefined;
2075
+ country?: string | undefined;
2076
+ address1?: string | undefined;
2077
+ address2?: string | undefined;
2078
+ postalCode?: string | undefined;
2079
+ city?: string | undefined;
2080
+ phone?: string | undefined;
2081
+ };
2082
+ date_created: string;
2083
+ quota: {
2084
+ versions: {
2085
+ id: string;
2086
+ label: string;
2087
+ }[];
2088
+ basic_clusters_max: number;
2089
+ basic_clusters_available: number;
2090
+ pro_clusters_max: number;
2091
+ pro_clusters_available: number;
2092
+ fleets_max: number;
2093
+ managed_fleets_cpu_max: number;
2094
+ cluster_tiers: string[];
2095
+ regions: string[];
2096
+ };
2097
+ name?: string | undefined;
2098
+ id?: string | undefined;
2099
+ status?: "active" | "closed" | "suspended" | undefined;
2100
+ pending_actions?: ("signup-billing-address" | "signup-payment-method" | "signup-invite-team" | "signup-create-cluster")[] | undefined;
2101
+ }, {
2102
+ contactInfo: {
2103
+ email: string;
2104
+ first_name: string;
2105
+ last_name: string;
2106
+ state?: string | undefined;
2107
+ country?: string | undefined;
2108
+ address1?: string | undefined;
2109
+ address2?: string | undefined;
2110
+ postalCode?: string | undefined;
2111
+ city?: string | undefined;
2112
+ phone?: string | undefined;
2113
+ };
2114
+ date_created: string;
2115
+ quota: {
2116
+ versions: {
2117
+ id: string;
2118
+ label: string;
2119
+ }[];
2120
+ basic_clusters_max: number;
2121
+ basic_clusters_available: number;
2122
+ pro_clusters_max: number;
2123
+ pro_clusters_available: number;
2124
+ fleets_max: number;
2125
+ managed_fleets_cpu_max: number;
2126
+ cluster_tiers: string[];
2127
+ regions: string[];
2128
+ };
2129
+ name?: string | undefined;
2130
+ id?: string | undefined;
2131
+ status?: "active" | "closed" | "suspended" | undefined;
2132
+ pending_actions?: ("signup-billing-address" | "signup-payment-method" | "signup-invite-team" | "signup-create-cluster")[] | undefined;
2133
+ }>;
2134
+ export declare const zPostOrganizationResponse: z.ZodObject<{
2135
+ id: z.ZodOptional<z.ZodString>;
2136
+ date_created: z.ZodString;
2137
+ name: z.ZodOptional<z.ZodString>;
2138
+ contactInfo: z.ZodObject<{
2139
+ address1: z.ZodOptional<z.ZodString>;
2140
+ address2: z.ZodOptional<z.ZodString>;
2141
+ postalCode: z.ZodOptional<z.ZodString>;
2142
+ city: z.ZodOptional<z.ZodString>;
2143
+ state: z.ZodOptional<z.ZodString>;
2144
+ country: z.ZodOptional<z.ZodString>;
2145
+ phone: z.ZodOptional<z.ZodString>;
2146
+ email: z.ZodString;
2147
+ first_name: z.ZodString;
2148
+ last_name: z.ZodString;
2149
+ }, "strip", z.ZodTypeAny, {
2150
+ email: string;
2151
+ first_name: string;
2152
+ last_name: string;
2153
+ state?: string | undefined;
2154
+ country?: string | undefined;
2155
+ address1?: string | undefined;
2156
+ address2?: string | undefined;
2157
+ postalCode?: string | undefined;
2158
+ city?: string | undefined;
2159
+ phone?: string | undefined;
2160
+ }, {
2161
+ email: string;
2162
+ first_name: string;
2163
+ last_name: string;
2164
+ state?: string | undefined;
2165
+ country?: string | undefined;
2166
+ address1?: string | undefined;
2167
+ address2?: string | undefined;
2168
+ postalCode?: string | undefined;
2169
+ city?: string | undefined;
2170
+ phone?: string | undefined;
2171
+ }>;
2172
+ quota: z.ZodObject<{
2173
+ basic_clusters_max: z.ZodNumber;
2174
+ basic_clusters_available: z.ZodNumber;
2175
+ pro_clusters_max: z.ZodNumber;
2176
+ pro_clusters_available: z.ZodNumber;
2177
+ fleets_max: z.ZodNumber;
2178
+ managed_fleets_cpu_max: z.ZodNumber;
2179
+ cluster_tiers: z.ZodArray<z.ZodString, "many">;
2180
+ regions: z.ZodArray<z.ZodString, "many">;
2181
+ versions: z.ZodArray<z.ZodObject<{
2182
+ id: z.ZodString;
2183
+ label: z.ZodString;
2184
+ }, "strip", z.ZodTypeAny, {
2185
+ id: string;
2186
+ label: string;
2187
+ }, {
2188
+ id: string;
2189
+ label: string;
2190
+ }>, "many">;
2191
+ }, "strip", z.ZodTypeAny, {
2192
+ versions: {
2193
+ id: string;
2194
+ label: string;
2195
+ }[];
2196
+ basic_clusters_max: number;
2197
+ basic_clusters_available: number;
2198
+ pro_clusters_max: number;
2199
+ pro_clusters_available: number;
2200
+ fleets_max: number;
2201
+ managed_fleets_cpu_max: number;
2202
+ cluster_tiers: string[];
2203
+ regions: string[];
2204
+ }, {
2205
+ versions: {
2206
+ id: string;
2207
+ label: string;
2208
+ }[];
2209
+ basic_clusters_max: number;
2210
+ basic_clusters_available: number;
2211
+ pro_clusters_max: number;
2212
+ pro_clusters_available: number;
2213
+ fleets_max: number;
2214
+ managed_fleets_cpu_max: number;
2215
+ cluster_tiers: string[];
2216
+ regions: string[];
2217
+ }>;
2218
+ pending_actions: z.ZodOptional<z.ZodArray<z.ZodEnum<["signup-billing-address", "signup-payment-method", "signup-invite-team", "signup-create-cluster"]>, "many">>;
2219
+ status: z.ZodOptional<z.ZodEnum<["active", "closed", "suspended"]>>;
2220
+ }, "strip", z.ZodTypeAny, {
2221
+ contactInfo: {
2222
+ email: string;
2223
+ first_name: string;
2224
+ last_name: string;
2225
+ state?: string | undefined;
2226
+ country?: string | undefined;
2227
+ address1?: string | undefined;
2228
+ address2?: string | undefined;
2229
+ postalCode?: string | undefined;
2230
+ city?: string | undefined;
2231
+ phone?: string | undefined;
2232
+ };
2233
+ date_created: string;
2234
+ quota: {
2235
+ versions: {
2236
+ id: string;
2237
+ label: string;
2238
+ }[];
2239
+ basic_clusters_max: number;
2240
+ basic_clusters_available: number;
2241
+ pro_clusters_max: number;
2242
+ pro_clusters_available: number;
2243
+ fleets_max: number;
2244
+ managed_fleets_cpu_max: number;
2245
+ cluster_tiers: string[];
2246
+ regions: string[];
2247
+ };
2248
+ name?: string | undefined;
2249
+ id?: string | undefined;
2250
+ status?: "active" | "closed" | "suspended" | undefined;
2251
+ pending_actions?: ("signup-billing-address" | "signup-payment-method" | "signup-invite-team" | "signup-create-cluster")[] | undefined;
2252
+ }, {
2253
+ contactInfo: {
2254
+ email: string;
2255
+ first_name: string;
2256
+ last_name: string;
2257
+ state?: string | undefined;
2258
+ country?: string | undefined;
2259
+ address1?: string | undefined;
2260
+ address2?: string | undefined;
2261
+ postalCode?: string | undefined;
2262
+ city?: string | undefined;
2263
+ phone?: string | undefined;
2264
+ };
2265
+ date_created: string;
2266
+ quota: {
2267
+ versions: {
2268
+ id: string;
2269
+ label: string;
2270
+ }[];
2271
+ basic_clusters_max: number;
2272
+ basic_clusters_available: number;
2273
+ pro_clusters_max: number;
2274
+ pro_clusters_available: number;
2275
+ fleets_max: number;
2276
+ managed_fleets_cpu_max: number;
2277
+ cluster_tiers: string[];
2278
+ regions: string[];
2279
+ };
2280
+ name?: string | undefined;
2281
+ id?: string | undefined;
2282
+ status?: "active" | "closed" | "suspended" | undefined;
2283
+ pending_actions?: ("signup-billing-address" | "signup-payment-method" | "signup-invite-team" | "signup-create-cluster")[] | undefined;
2284
+ }>;
2285
+ export declare const zPutOrganizationResponse: z.ZodObject<{
2286
+ id: z.ZodOptional<z.ZodString>;
2287
+ date_created: z.ZodString;
2288
+ name: z.ZodOptional<z.ZodString>;
2289
+ contactInfo: z.ZodObject<{
2290
+ address1: z.ZodOptional<z.ZodString>;
2291
+ address2: z.ZodOptional<z.ZodString>;
2292
+ postalCode: z.ZodOptional<z.ZodString>;
2293
+ city: z.ZodOptional<z.ZodString>;
2294
+ state: z.ZodOptional<z.ZodString>;
2295
+ country: z.ZodOptional<z.ZodString>;
2296
+ phone: z.ZodOptional<z.ZodString>;
2297
+ email: z.ZodString;
2298
+ first_name: z.ZodString;
2299
+ last_name: z.ZodString;
2300
+ }, "strip", z.ZodTypeAny, {
2301
+ email: string;
2302
+ first_name: string;
2303
+ last_name: string;
2304
+ state?: string | undefined;
2305
+ country?: string | undefined;
2306
+ address1?: string | undefined;
2307
+ address2?: string | undefined;
2308
+ postalCode?: string | undefined;
2309
+ city?: string | undefined;
2310
+ phone?: string | undefined;
2311
+ }, {
2312
+ email: string;
2313
+ first_name: string;
2314
+ last_name: string;
2315
+ state?: string | undefined;
2316
+ country?: string | undefined;
2317
+ address1?: string | undefined;
2318
+ address2?: string | undefined;
2319
+ postalCode?: string | undefined;
2320
+ city?: string | undefined;
2321
+ phone?: string | undefined;
2322
+ }>;
2323
+ quota: z.ZodObject<{
2324
+ basic_clusters_max: z.ZodNumber;
2325
+ basic_clusters_available: z.ZodNumber;
2326
+ pro_clusters_max: z.ZodNumber;
2327
+ pro_clusters_available: z.ZodNumber;
2328
+ fleets_max: z.ZodNumber;
2329
+ managed_fleets_cpu_max: z.ZodNumber;
2330
+ cluster_tiers: z.ZodArray<z.ZodString, "many">;
2331
+ regions: z.ZodArray<z.ZodString, "many">;
2332
+ versions: z.ZodArray<z.ZodObject<{
2333
+ id: z.ZodString;
2334
+ label: z.ZodString;
2335
+ }, "strip", z.ZodTypeAny, {
2336
+ id: string;
2337
+ label: string;
2338
+ }, {
2339
+ id: string;
2340
+ label: string;
2341
+ }>, "many">;
2342
+ }, "strip", z.ZodTypeAny, {
2343
+ versions: {
2344
+ id: string;
2345
+ label: string;
2346
+ }[];
2347
+ basic_clusters_max: number;
2348
+ basic_clusters_available: number;
2349
+ pro_clusters_max: number;
2350
+ pro_clusters_available: number;
2351
+ fleets_max: number;
2352
+ managed_fleets_cpu_max: number;
2353
+ cluster_tiers: string[];
2354
+ regions: string[];
2355
+ }, {
2356
+ versions: {
2357
+ id: string;
2358
+ label: string;
2359
+ }[];
2360
+ basic_clusters_max: number;
2361
+ basic_clusters_available: number;
2362
+ pro_clusters_max: number;
2363
+ pro_clusters_available: number;
2364
+ fleets_max: number;
2365
+ managed_fleets_cpu_max: number;
2366
+ cluster_tiers: string[];
2367
+ regions: string[];
2368
+ }>;
2369
+ pending_actions: z.ZodOptional<z.ZodArray<z.ZodEnum<["signup-billing-address", "signup-payment-method", "signup-invite-team", "signup-create-cluster"]>, "many">>;
2370
+ status: z.ZodOptional<z.ZodEnum<["active", "closed", "suspended"]>>;
2371
+ }, "strip", z.ZodTypeAny, {
2372
+ contactInfo: {
2373
+ email: string;
2374
+ first_name: string;
2375
+ last_name: string;
2376
+ state?: string | undefined;
2377
+ country?: string | undefined;
2378
+ address1?: string | undefined;
2379
+ address2?: string | undefined;
2380
+ postalCode?: string | undefined;
2381
+ city?: string | undefined;
2382
+ phone?: string | undefined;
2383
+ };
2384
+ date_created: string;
2385
+ quota: {
2386
+ versions: {
2387
+ id: string;
2388
+ label: string;
2389
+ }[];
2390
+ basic_clusters_max: number;
2391
+ basic_clusters_available: number;
2392
+ pro_clusters_max: number;
2393
+ pro_clusters_available: number;
2394
+ fleets_max: number;
2395
+ managed_fleets_cpu_max: number;
2396
+ cluster_tiers: string[];
2397
+ regions: string[];
2398
+ };
2399
+ name?: string | undefined;
2400
+ id?: string | undefined;
2401
+ status?: "active" | "closed" | "suspended" | undefined;
2402
+ pending_actions?: ("signup-billing-address" | "signup-payment-method" | "signup-invite-team" | "signup-create-cluster")[] | undefined;
2403
+ }, {
2404
+ contactInfo: {
2405
+ email: string;
2406
+ first_name: string;
2407
+ last_name: string;
2408
+ state?: string | undefined;
2409
+ country?: string | undefined;
2410
+ address1?: string | undefined;
2411
+ address2?: string | undefined;
2412
+ postalCode?: string | undefined;
2413
+ city?: string | undefined;
2414
+ phone?: string | undefined;
2415
+ };
2416
+ date_created: string;
2417
+ quota: {
2418
+ versions: {
2419
+ id: string;
2420
+ label: string;
2421
+ }[];
2422
+ basic_clusters_max: number;
2423
+ basic_clusters_available: number;
2424
+ pro_clusters_max: number;
2425
+ pro_clusters_available: number;
2426
+ fleets_max: number;
2427
+ managed_fleets_cpu_max: number;
2428
+ cluster_tiers: string[];
2429
+ regions: string[];
2430
+ };
2431
+ name?: string | undefined;
2432
+ id?: string | undefined;
2433
+ status?: "active" | "closed" | "suspended" | undefined;
2434
+ pending_actions?: ("signup-billing-address" | "signup-payment-method" | "signup-invite-team" | "signup-create-cluster")[] | undefined;
2435
+ }>;
2436
+ export declare const zGetTokensResponse: z.ZodArray<z.ZodObject<{
2437
+ id: z.ZodOptional<z.ZodString>;
2438
+ secret: z.ZodOptional<z.ZodString>;
2439
+ name: z.ZodOptional<z.ZodString>;
2440
+ date_created: z.ZodString;
2441
+ role: z.ZodOptional<z.ZodEnum<["Administrator", "User"]>>;
2442
+ }, "strip", z.ZodTypeAny, {
2443
+ date_created: string;
2444
+ name?: string | undefined;
2445
+ id?: string | undefined;
2446
+ secret?: string | undefined;
2447
+ role?: "Administrator" | "User" | undefined;
2448
+ }, {
2449
+ date_created: string;
2450
+ name?: string | undefined;
2451
+ id?: string | undefined;
2452
+ secret?: string | undefined;
2453
+ role?: "Administrator" | "User" | undefined;
2454
+ }>, "many">;
2455
+ export declare const zPostTokensResponse: z.ZodObject<{
2456
+ id: z.ZodOptional<z.ZodString>;
2457
+ secret: z.ZodOptional<z.ZodString>;
2458
+ name: z.ZodOptional<z.ZodString>;
2459
+ date_created: z.ZodString;
2460
+ role: z.ZodOptional<z.ZodEnum<["Administrator", "User"]>>;
2461
+ }, "strip", z.ZodTypeAny, {
2462
+ date_created: string;
2463
+ name?: string | undefined;
2464
+ id?: string | undefined;
2465
+ secret?: string | undefined;
2466
+ role?: "Administrator" | "User" | undefined;
2467
+ }, {
2468
+ date_created: string;
2469
+ name?: string | undefined;
2470
+ id?: string | undefined;
2471
+ secret?: string | undefined;
2472
+ role?: "Administrator" | "User" | undefined;
2473
+ }>;
2474
+ export declare const zGetTokensByTokenIdResponse: z.ZodObject<{
2475
+ id: z.ZodOptional<z.ZodString>;
2476
+ secret: z.ZodOptional<z.ZodString>;
2477
+ name: z.ZodOptional<z.ZodString>;
2478
+ date_created: z.ZodString;
2479
+ role: z.ZodOptional<z.ZodEnum<["Administrator", "User"]>>;
2480
+ }, "strip", z.ZodTypeAny, {
2481
+ date_created: string;
2482
+ name?: string | undefined;
2483
+ id?: string | undefined;
2484
+ secret?: string | undefined;
2485
+ role?: "Administrator" | "User" | undefined;
2486
+ }, {
2487
+ date_created: string;
2488
+ name?: string | undefined;
2489
+ id?: string | undefined;
2490
+ secret?: string | undefined;
2491
+ role?: "Administrator" | "User" | undefined;
2492
+ }>;
2493
+ export declare const zPutTokensByTokenIdResponse: z.ZodObject<{
2494
+ id: z.ZodOptional<z.ZodString>;
2495
+ secret: z.ZodOptional<z.ZodString>;
2496
+ name: z.ZodOptional<z.ZodString>;
2497
+ date_created: z.ZodString;
2498
+ role: z.ZodOptional<z.ZodEnum<["Administrator", "User"]>>;
2499
+ }, "strip", z.ZodTypeAny, {
2500
+ date_created: string;
2501
+ name?: string | undefined;
2502
+ id?: string | undefined;
2503
+ secret?: string | undefined;
2504
+ role?: "Administrator" | "User" | undefined;
2505
+ }, {
2506
+ date_created: string;
2507
+ name?: string | undefined;
2508
+ id?: string | undefined;
2509
+ secret?: string | undefined;
2510
+ role?: "Administrator" | "User" | undefined;
2511
+ }>;
2512
+ export declare const zPutTokensByTokenIdSecretResponse: z.ZodObject<{
2513
+ id: z.ZodOptional<z.ZodString>;
2514
+ secret: z.ZodOptional<z.ZodString>;
2515
+ name: z.ZodOptional<z.ZodString>;
2516
+ date_created: z.ZodString;
2517
+ role: z.ZodOptional<z.ZodEnum<["Administrator", "User"]>>;
2518
+ }, "strip", z.ZodTypeAny, {
2519
+ date_created: string;
2520
+ name?: string | undefined;
2521
+ id?: string | undefined;
2522
+ secret?: string | undefined;
2523
+ role?: "Administrator" | "User" | undefined;
2524
+ }, {
2525
+ date_created: string;
2526
+ name?: string | undefined;
2527
+ id?: string | undefined;
2528
+ secret?: string | undefined;
2529
+ role?: "Administrator" | "User" | undefined;
2530
+ }>;
2531
+ export declare const zGetUsersOrganizationsByEmailResponse: z.ZodArray<z.ZodObject<{
2532
+ realm: z.ZodOptional<z.ZodString>;
2533
+ displayName: z.ZodOptional<z.ZodString>;
2534
+ }, "strip", z.ZodTypeAny, {
2535
+ realm?: string | undefined;
2536
+ displayName?: string | undefined;
2537
+ }, {
2538
+ realm?: string | undefined;
2539
+ displayName?: string | undefined;
2540
+ }>, "many">;
2541
+ export declare const zGetUsersResponse: z.ZodArray<z.ZodObject<{
2542
+ id: z.ZodOptional<z.ZodString>;
2543
+ date_created: z.ZodString;
2544
+ email: z.ZodOptional<z.ZodString>;
2545
+ first_name: z.ZodOptional<z.ZodString>;
2546
+ last_name: z.ZodOptional<z.ZodString>;
2547
+ role: z.ZodOptional<z.ZodEnum<["Administrator", "User"]>>;
2548
+ cluster_permissions: z.ZodOptional<z.ZodArray<z.ZodObject<{
2549
+ cluster_id: z.ZodString;
2550
+ permissions: z.ZodEnum<["readwrite", "readonly"]>;
2551
+ }, "strip", z.ZodTypeAny, {
2552
+ cluster_id: string;
2553
+ permissions: "readonly" | "readwrite";
2554
+ }, {
2555
+ cluster_id: string;
2556
+ permissions: "readonly" | "readwrite";
2557
+ }>, "many">>;
2558
+ status: z.ZodOptional<z.ZodEnum<["active", "inactive"]>>;
2559
+ }, "strip", z.ZodTypeAny, {
2560
+ date_created: string;
2561
+ id?: string | undefined;
2562
+ role?: "Administrator" | "User" | undefined;
2563
+ email?: string | undefined;
2564
+ status?: "active" | "inactive" | undefined;
2565
+ first_name?: string | undefined;
2566
+ last_name?: string | undefined;
2567
+ cluster_permissions?: {
2568
+ cluster_id: string;
2569
+ permissions: "readonly" | "readwrite";
2570
+ }[] | undefined;
2571
+ }, {
2572
+ date_created: string;
2573
+ id?: string | undefined;
2574
+ role?: "Administrator" | "User" | undefined;
2575
+ email?: string | undefined;
2576
+ status?: "active" | "inactive" | undefined;
2577
+ first_name?: string | undefined;
2578
+ last_name?: string | undefined;
2579
+ cluster_permissions?: {
2580
+ cluster_id: string;
2581
+ permissions: "readonly" | "readwrite";
2582
+ }[] | undefined;
2583
+ }>, "many">;
2584
+ export declare const zPostUsersResponse: z.ZodObject<{
2585
+ id: z.ZodOptional<z.ZodString>;
2586
+ date_created: z.ZodString;
2587
+ email: z.ZodOptional<z.ZodString>;
2588
+ first_name: z.ZodOptional<z.ZodString>;
2589
+ last_name: z.ZodOptional<z.ZodString>;
2590
+ role: z.ZodOptional<z.ZodEnum<["Administrator", "User"]>>;
2591
+ cluster_permissions: z.ZodOptional<z.ZodArray<z.ZodObject<{
2592
+ cluster_id: z.ZodString;
2593
+ permissions: z.ZodEnum<["readwrite", "readonly"]>;
2594
+ }, "strip", z.ZodTypeAny, {
2595
+ cluster_id: string;
2596
+ permissions: "readonly" | "readwrite";
2597
+ }, {
2598
+ cluster_id: string;
2599
+ permissions: "readonly" | "readwrite";
2600
+ }>, "many">>;
2601
+ status: z.ZodOptional<z.ZodEnum<["active", "inactive"]>>;
2602
+ }, "strip", z.ZodTypeAny, {
2603
+ date_created: string;
2604
+ id?: string | undefined;
2605
+ role?: "Administrator" | "User" | undefined;
2606
+ email?: string | undefined;
2607
+ status?: "active" | "inactive" | undefined;
2608
+ first_name?: string | undefined;
2609
+ last_name?: string | undefined;
2610
+ cluster_permissions?: {
2611
+ cluster_id: string;
2612
+ permissions: "readonly" | "readwrite";
2613
+ }[] | undefined;
2614
+ }, {
2615
+ date_created: string;
2616
+ id?: string | undefined;
2617
+ role?: "Administrator" | "User" | undefined;
2618
+ email?: string | undefined;
2619
+ status?: "active" | "inactive" | undefined;
2620
+ first_name?: string | undefined;
2621
+ last_name?: string | undefined;
2622
+ cluster_permissions?: {
2623
+ cluster_id: string;
2624
+ permissions: "readonly" | "readwrite";
2625
+ }[] | undefined;
2626
+ }>;
2627
+ export declare const zDeleteUsersByUserIdResponse: z.ZodObject<{
2628
+ id: z.ZodOptional<z.ZodString>;
2629
+ date_created: z.ZodString;
2630
+ email: z.ZodOptional<z.ZodString>;
2631
+ first_name: z.ZodOptional<z.ZodString>;
2632
+ last_name: z.ZodOptional<z.ZodString>;
2633
+ role: z.ZodOptional<z.ZodEnum<["Administrator", "User"]>>;
2634
+ cluster_permissions: z.ZodOptional<z.ZodArray<z.ZodObject<{
2635
+ cluster_id: z.ZodString;
2636
+ permissions: z.ZodEnum<["readwrite", "readonly"]>;
2637
+ }, "strip", z.ZodTypeAny, {
2638
+ cluster_id: string;
2639
+ permissions: "readonly" | "readwrite";
2640
+ }, {
2641
+ cluster_id: string;
2642
+ permissions: "readonly" | "readwrite";
2643
+ }>, "many">>;
2644
+ status: z.ZodOptional<z.ZodEnum<["active", "inactive"]>>;
2645
+ }, "strip", z.ZodTypeAny, {
2646
+ date_created: string;
2647
+ id?: string | undefined;
2648
+ role?: "Administrator" | "User" | undefined;
2649
+ email?: string | undefined;
2650
+ status?: "active" | "inactive" | undefined;
2651
+ first_name?: string | undefined;
2652
+ last_name?: string | undefined;
2653
+ cluster_permissions?: {
2654
+ cluster_id: string;
2655
+ permissions: "readonly" | "readwrite";
2656
+ }[] | undefined;
2657
+ }, {
2658
+ date_created: string;
2659
+ id?: string | undefined;
2660
+ role?: "Administrator" | "User" | undefined;
2661
+ email?: string | undefined;
2662
+ status?: "active" | "inactive" | undefined;
2663
+ first_name?: string | undefined;
2664
+ last_name?: string | undefined;
2665
+ cluster_permissions?: {
2666
+ cluster_id: string;
2667
+ permissions: "readonly" | "readwrite";
2668
+ }[] | undefined;
2669
+ }>;
2670
+ export declare const zGetUsersByUserIdResponse: z.ZodObject<{
2671
+ id: z.ZodOptional<z.ZodString>;
2672
+ date_created: z.ZodString;
2673
+ email: z.ZodOptional<z.ZodString>;
2674
+ first_name: z.ZodOptional<z.ZodString>;
2675
+ last_name: z.ZodOptional<z.ZodString>;
2676
+ role: z.ZodOptional<z.ZodEnum<["Administrator", "User"]>>;
2677
+ cluster_permissions: z.ZodOptional<z.ZodArray<z.ZodObject<{
2678
+ cluster_id: z.ZodString;
2679
+ permissions: z.ZodEnum<["readwrite", "readonly"]>;
2680
+ }, "strip", z.ZodTypeAny, {
2681
+ cluster_id: string;
2682
+ permissions: "readonly" | "readwrite";
2683
+ }, {
2684
+ cluster_id: string;
2685
+ permissions: "readonly" | "readwrite";
2686
+ }>, "many">>;
2687
+ status: z.ZodOptional<z.ZodEnum<["active", "inactive"]>>;
2688
+ }, "strip", z.ZodTypeAny, {
2689
+ date_created: string;
2690
+ id?: string | undefined;
2691
+ role?: "Administrator" | "User" | undefined;
2692
+ email?: string | undefined;
2693
+ status?: "active" | "inactive" | undefined;
2694
+ first_name?: string | undefined;
2695
+ last_name?: string | undefined;
2696
+ cluster_permissions?: {
2697
+ cluster_id: string;
2698
+ permissions: "readonly" | "readwrite";
2699
+ }[] | undefined;
2700
+ }, {
2701
+ date_created: string;
2702
+ id?: string | undefined;
2703
+ role?: "Administrator" | "User" | undefined;
2704
+ email?: string | undefined;
2705
+ status?: "active" | "inactive" | undefined;
2706
+ first_name?: string | undefined;
2707
+ last_name?: string | undefined;
2708
+ cluster_permissions?: {
2709
+ cluster_id: string;
2710
+ permissions: "readonly" | "readwrite";
2711
+ }[] | undefined;
2712
+ }>;
2713
+ export declare const zPutUsersByUserIdResponse: z.ZodObject<{
2714
+ id: z.ZodOptional<z.ZodString>;
2715
+ date_created: z.ZodString;
2716
+ email: z.ZodOptional<z.ZodString>;
2717
+ first_name: z.ZodOptional<z.ZodString>;
2718
+ last_name: z.ZodOptional<z.ZodString>;
2719
+ role: z.ZodOptional<z.ZodEnum<["Administrator", "User"]>>;
2720
+ cluster_permissions: z.ZodOptional<z.ZodArray<z.ZodObject<{
2721
+ cluster_id: z.ZodString;
2722
+ permissions: z.ZodEnum<["readwrite", "readonly"]>;
2723
+ }, "strip", z.ZodTypeAny, {
2724
+ cluster_id: string;
2725
+ permissions: "readonly" | "readwrite";
2726
+ }, {
2727
+ cluster_id: string;
2728
+ permissions: "readonly" | "readwrite";
2729
+ }>, "many">>;
2730
+ status: z.ZodOptional<z.ZodEnum<["active", "inactive"]>>;
2731
+ }, "strip", z.ZodTypeAny, {
2732
+ date_created: string;
2733
+ id?: string | undefined;
2734
+ role?: "Administrator" | "User" | undefined;
2735
+ email?: string | undefined;
2736
+ status?: "active" | "inactive" | undefined;
2737
+ first_name?: string | undefined;
2738
+ last_name?: string | undefined;
2739
+ cluster_permissions?: {
2740
+ cluster_id: string;
2741
+ permissions: "readonly" | "readwrite";
2742
+ }[] | undefined;
2743
+ }, {
2744
+ date_created: string;
2745
+ id?: string | undefined;
2746
+ role?: "Administrator" | "User" | undefined;
2747
+ email?: string | undefined;
2748
+ status?: "active" | "inactive" | undefined;
2749
+ first_name?: string | undefined;
2750
+ last_name?: string | undefined;
2751
+ cluster_permissions?: {
2752
+ cluster_id: string;
2753
+ permissions: "readonly" | "readwrite";
2754
+ }[] | undefined;
2755
+ }>;
2756
+ export declare const zDeleteUsersByUserIdClustersByClusterIdResponse: z.ZodObject<{
2757
+ id: z.ZodOptional<z.ZodString>;
2758
+ date_created: z.ZodString;
2759
+ email: z.ZodOptional<z.ZodString>;
2760
+ first_name: z.ZodOptional<z.ZodString>;
2761
+ last_name: z.ZodOptional<z.ZodString>;
2762
+ role: z.ZodOptional<z.ZodEnum<["Administrator", "User"]>>;
2763
+ cluster_permissions: z.ZodOptional<z.ZodArray<z.ZodObject<{
2764
+ cluster_id: z.ZodString;
2765
+ permissions: z.ZodEnum<["readwrite", "readonly"]>;
2766
+ }, "strip", z.ZodTypeAny, {
2767
+ cluster_id: string;
2768
+ permissions: "readonly" | "readwrite";
2769
+ }, {
2770
+ cluster_id: string;
2771
+ permissions: "readonly" | "readwrite";
2772
+ }>, "many">>;
2773
+ status: z.ZodOptional<z.ZodEnum<["active", "inactive"]>>;
2774
+ }, "strip", z.ZodTypeAny, {
2775
+ date_created: string;
2776
+ id?: string | undefined;
2777
+ role?: "Administrator" | "User" | undefined;
2778
+ email?: string | undefined;
2779
+ status?: "active" | "inactive" | undefined;
2780
+ first_name?: string | undefined;
2781
+ last_name?: string | undefined;
2782
+ cluster_permissions?: {
2783
+ cluster_id: string;
2784
+ permissions: "readonly" | "readwrite";
2785
+ }[] | undefined;
2786
+ }, {
2787
+ date_created: string;
2788
+ id?: string | undefined;
2789
+ role?: "Administrator" | "User" | undefined;
2790
+ email?: string | undefined;
2791
+ status?: "active" | "inactive" | undefined;
2792
+ first_name?: string | undefined;
2793
+ last_name?: string | undefined;
2794
+ cluster_permissions?: {
2795
+ cluster_id: string;
2796
+ permissions: "readonly" | "readwrite";
2797
+ }[] | undefined;
2798
+ }>;
2799
+ export declare const zPutUsersByUserIdClustersByClusterIdResponse: z.ZodObject<{
2800
+ id: z.ZodOptional<z.ZodString>;
2801
+ date_created: z.ZodString;
2802
+ email: z.ZodOptional<z.ZodString>;
2803
+ first_name: z.ZodOptional<z.ZodString>;
2804
+ last_name: z.ZodOptional<z.ZodString>;
2805
+ role: z.ZodOptional<z.ZodEnum<["Administrator", "User"]>>;
2806
+ cluster_permissions: z.ZodOptional<z.ZodArray<z.ZodObject<{
2807
+ cluster_id: z.ZodString;
2808
+ permissions: z.ZodEnum<["readwrite", "readonly"]>;
2809
+ }, "strip", z.ZodTypeAny, {
2810
+ cluster_id: string;
2811
+ permissions: "readonly" | "readwrite";
2812
+ }, {
2813
+ cluster_id: string;
2814
+ permissions: "readonly" | "readwrite";
2815
+ }>, "many">>;
2816
+ status: z.ZodOptional<z.ZodEnum<["active", "inactive"]>>;
2817
+ }, "strip", z.ZodTypeAny, {
2818
+ date_created: string;
2819
+ id?: string | undefined;
2820
+ role?: "Administrator" | "User" | undefined;
2821
+ email?: string | undefined;
2822
+ status?: "active" | "inactive" | undefined;
2823
+ first_name?: string | undefined;
2824
+ last_name?: string | undefined;
2825
+ cluster_permissions?: {
2826
+ cluster_id: string;
2827
+ permissions: "readonly" | "readwrite";
2828
+ }[] | undefined;
2829
+ }, {
2830
+ date_created: string;
2831
+ id?: string | undefined;
2832
+ role?: "Administrator" | "User" | undefined;
2833
+ email?: string | undefined;
2834
+ status?: "active" | "inactive" | undefined;
2835
+ first_name?: string | undefined;
2836
+ last_name?: string | undefined;
2837
+ cluster_permissions?: {
2838
+ cluster_id: string;
2839
+ permissions: "readonly" | "readwrite";
2840
+ }[] | undefined;
2841
+ }>;
2842
+ //# sourceMappingURL=zod.gen.d.ts.map