@cloudfleet/sdk 0.0.1-0f4a5ef

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,3039 @@
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
+ endpoint?: string | undefined;
90
+ version_channel?: 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
+ provider?: string[] | undefined;
403
+ sub_region?: string[] | undefined;
404
+ csp_region?: string[] | undefined;
405
+ instance_type?: string[] | undefined;
406
+ version?: unknown;
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
+ provider?: string[] | undefined;
426
+ sub_region?: string[] | undefined;
427
+ csp_region?: string[] | undefined;
428
+ instance_type?: string[] | undefined;
429
+ version?: unknown;
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
+ sku: string;
472
+ provider: string;
473
+ sub_region: string;
474
+ csp_region: string;
475
+ csp_zone: string;
476
+ instance_type: 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
+ sku: string;
493
+ provider: string;
494
+ sub_region: string;
495
+ csp_region: string;
496
+ csp_zone: string;
497
+ instance_type: 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?: "USD" | "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" | "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?: "USD" | "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" | "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?: "USD" | "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" | "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?: "USD" | "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" | "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?: "USD" | "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" | "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?: "USD" | "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" | "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?: "USD" | "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" | "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?: "USD" | "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" | "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?: "USD" | "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" | "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?: "USD" | "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" | "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 zOrganizationCreateInput: z.ZodObject<{
831
+ name: z.ZodString;
832
+ contactInfo: z.ZodObject<{
833
+ address1: z.ZodOptional<z.ZodString>;
834
+ address2: z.ZodOptional<z.ZodString>;
835
+ postalCode: z.ZodOptional<z.ZodString>;
836
+ city: z.ZodOptional<z.ZodString>;
837
+ state: z.ZodOptional<z.ZodString>;
838
+ country: z.ZodOptional<z.ZodString>;
839
+ phone: z.ZodOptional<z.ZodString>;
840
+ email: z.ZodString;
841
+ first_name: z.ZodString;
842
+ last_name: z.ZodString;
843
+ }, "strip", z.ZodTypeAny, {
844
+ email: string;
845
+ first_name: string;
846
+ last_name: string;
847
+ state?: string | undefined;
848
+ country?: string | undefined;
849
+ address1?: string | undefined;
850
+ address2?: string | undefined;
851
+ postalCode?: string | undefined;
852
+ city?: string | undefined;
853
+ phone?: string | undefined;
854
+ }, {
855
+ email: string;
856
+ first_name: string;
857
+ last_name: string;
858
+ state?: string | undefined;
859
+ country?: string | undefined;
860
+ address1?: string | undefined;
861
+ address2?: string | undefined;
862
+ postalCode?: string | undefined;
863
+ city?: string | undefined;
864
+ phone?: string | undefined;
865
+ }>;
866
+ password: z.ZodString;
867
+ }, "strip", z.ZodTypeAny, {
868
+ name: string;
869
+ contactInfo: {
870
+ email: string;
871
+ first_name: string;
872
+ last_name: string;
873
+ state?: string | undefined;
874
+ country?: string | undefined;
875
+ address1?: string | undefined;
876
+ address2?: string | undefined;
877
+ postalCode?: string | undefined;
878
+ city?: string | undefined;
879
+ phone?: string | undefined;
880
+ };
881
+ password: string;
882
+ }, {
883
+ name: string;
884
+ contactInfo: {
885
+ email: string;
886
+ first_name: string;
887
+ last_name: string;
888
+ state?: string | undefined;
889
+ country?: string | undefined;
890
+ address1?: string | undefined;
891
+ address2?: string | undefined;
892
+ postalCode?: string | undefined;
893
+ city?: string | undefined;
894
+ phone?: string | undefined;
895
+ };
896
+ password: string;
897
+ }>;
898
+ export declare const zOrganization: z.ZodObject<{
899
+ name: z.ZodString;
900
+ contactInfo: z.ZodObject<{
901
+ address1: z.ZodOptional<z.ZodString>;
902
+ address2: z.ZodOptional<z.ZodString>;
903
+ postalCode: z.ZodOptional<z.ZodString>;
904
+ city: z.ZodOptional<z.ZodString>;
905
+ state: z.ZodOptional<z.ZodString>;
906
+ country: z.ZodOptional<z.ZodString>;
907
+ phone: z.ZodOptional<z.ZodString>;
908
+ email: z.ZodString;
909
+ first_name: z.ZodString;
910
+ last_name: z.ZodString;
911
+ }, "strip", z.ZodTypeAny, {
912
+ email: string;
913
+ first_name: string;
914
+ last_name: string;
915
+ state?: string | undefined;
916
+ country?: string | undefined;
917
+ address1?: string | undefined;
918
+ address2?: string | undefined;
919
+ postalCode?: string | undefined;
920
+ city?: string | undefined;
921
+ phone?: string | undefined;
922
+ }, {
923
+ email: string;
924
+ first_name: string;
925
+ last_name: string;
926
+ state?: string | undefined;
927
+ country?: string | undefined;
928
+ address1?: string | undefined;
929
+ address2?: string | undefined;
930
+ postalCode?: string | undefined;
931
+ city?: string | undefined;
932
+ phone?: string | undefined;
933
+ }>;
934
+ id: z.ZodString;
935
+ date_created: z.ZodString;
936
+ quota: z.ZodObject<{
937
+ basic_clusters_max: z.ZodNumber;
938
+ basic_clusters_available: z.ZodNumber;
939
+ pro_clusters_max: z.ZodNumber;
940
+ pro_clusters_available: z.ZodNumber;
941
+ fleets_max: z.ZodNumber;
942
+ managed_fleets_cpu_max: z.ZodNumber;
943
+ cluster_tiers: z.ZodArray<z.ZodString, "many">;
944
+ regions: z.ZodArray<z.ZodString, "many">;
945
+ versions: z.ZodArray<z.ZodObject<{
946
+ id: z.ZodString;
947
+ label: z.ZodString;
948
+ }, "strip", z.ZodTypeAny, {
949
+ id: string;
950
+ label: string;
951
+ }, {
952
+ id: string;
953
+ label: string;
954
+ }>, "many">;
955
+ }, "strip", z.ZodTypeAny, {
956
+ versions: {
957
+ id: string;
958
+ label: string;
959
+ }[];
960
+ basic_clusters_max: number;
961
+ basic_clusters_available: number;
962
+ pro_clusters_max: number;
963
+ pro_clusters_available: number;
964
+ fleets_max: number;
965
+ managed_fleets_cpu_max: number;
966
+ cluster_tiers: string[];
967
+ regions: string[];
968
+ }, {
969
+ versions: {
970
+ id: string;
971
+ label: string;
972
+ }[];
973
+ basic_clusters_max: number;
974
+ basic_clusters_available: number;
975
+ pro_clusters_max: number;
976
+ pro_clusters_available: number;
977
+ fleets_max: number;
978
+ managed_fleets_cpu_max: number;
979
+ cluster_tiers: string[];
980
+ regions: string[];
981
+ }>;
982
+ pending_actions: z.ZodArray<z.ZodEnum<["signup-billing-address", "signup-payment-method", "signup-invite-team", "signup-create-cluster"]>, "many">;
983
+ status: z.ZodEnum<["active", "closed", "suspended"]>;
984
+ }, "strip", z.ZodTypeAny, {
985
+ name: string;
986
+ id: string;
987
+ status: "active" | "closed" | "suspended";
988
+ date_created: string;
989
+ contactInfo: {
990
+ email: string;
991
+ first_name: string;
992
+ last_name: string;
993
+ state?: string | undefined;
994
+ country?: string | undefined;
995
+ address1?: string | undefined;
996
+ address2?: string | undefined;
997
+ postalCode?: string | undefined;
998
+ city?: string | undefined;
999
+ phone?: string | undefined;
1000
+ };
1001
+ quota: {
1002
+ versions: {
1003
+ id: string;
1004
+ label: string;
1005
+ }[];
1006
+ basic_clusters_max: number;
1007
+ basic_clusters_available: number;
1008
+ pro_clusters_max: number;
1009
+ pro_clusters_available: number;
1010
+ fleets_max: number;
1011
+ managed_fleets_cpu_max: number;
1012
+ cluster_tiers: string[];
1013
+ regions: string[];
1014
+ };
1015
+ pending_actions: ("signup-payment-method" | "signup-billing-address" | "signup-invite-team" | "signup-create-cluster")[];
1016
+ }, {
1017
+ name: string;
1018
+ id: string;
1019
+ status: "active" | "closed" | "suspended";
1020
+ date_created: string;
1021
+ contactInfo: {
1022
+ email: string;
1023
+ first_name: string;
1024
+ last_name: string;
1025
+ state?: string | undefined;
1026
+ country?: string | undefined;
1027
+ address1?: string | undefined;
1028
+ address2?: string | undefined;
1029
+ postalCode?: string | undefined;
1030
+ city?: string | undefined;
1031
+ phone?: string | undefined;
1032
+ };
1033
+ quota: {
1034
+ versions: {
1035
+ id: string;
1036
+ label: string;
1037
+ }[];
1038
+ basic_clusters_max: number;
1039
+ basic_clusters_available: number;
1040
+ pro_clusters_max: number;
1041
+ pro_clusters_available: number;
1042
+ fleets_max: number;
1043
+ managed_fleets_cpu_max: number;
1044
+ cluster_tiers: string[];
1045
+ regions: string[];
1046
+ };
1047
+ pending_actions: ("signup-payment-method" | "signup-billing-address" | "signup-invite-team" | "signup-create-cluster")[];
1048
+ }>;
1049
+ export declare const zOrganizationUpdateInput: z.ZodObject<{
1050
+ name: z.ZodOptional<z.ZodString>;
1051
+ contactInfo: z.ZodObject<{
1052
+ address1: z.ZodOptional<z.ZodString>;
1053
+ address2: z.ZodOptional<z.ZodString>;
1054
+ postalCode: z.ZodOptional<z.ZodString>;
1055
+ city: z.ZodOptional<z.ZodString>;
1056
+ state: z.ZodOptional<z.ZodString>;
1057
+ country: z.ZodOptional<z.ZodString>;
1058
+ phone: z.ZodOptional<z.ZodString>;
1059
+ email: z.ZodString;
1060
+ first_name: z.ZodString;
1061
+ last_name: z.ZodString;
1062
+ }, "strip", z.ZodTypeAny, {
1063
+ email: string;
1064
+ first_name: string;
1065
+ last_name: string;
1066
+ state?: string | undefined;
1067
+ country?: string | undefined;
1068
+ address1?: string | undefined;
1069
+ address2?: string | undefined;
1070
+ postalCode?: string | undefined;
1071
+ city?: string | undefined;
1072
+ phone?: string | undefined;
1073
+ }, {
1074
+ email: string;
1075
+ first_name: string;
1076
+ last_name: string;
1077
+ state?: string | undefined;
1078
+ country?: string | undefined;
1079
+ address1?: string | undefined;
1080
+ address2?: string | undefined;
1081
+ postalCode?: string | undefined;
1082
+ city?: string | undefined;
1083
+ phone?: string | undefined;
1084
+ }>;
1085
+ }, "strip", z.ZodTypeAny, {
1086
+ contactInfo: {
1087
+ email: string;
1088
+ first_name: string;
1089
+ last_name: string;
1090
+ state?: string | undefined;
1091
+ country?: string | undefined;
1092
+ address1?: string | undefined;
1093
+ address2?: string | undefined;
1094
+ postalCode?: string | undefined;
1095
+ city?: string | undefined;
1096
+ phone?: string | undefined;
1097
+ };
1098
+ name?: string | undefined;
1099
+ }, {
1100
+ contactInfo: {
1101
+ email: string;
1102
+ first_name: string;
1103
+ last_name: string;
1104
+ state?: string | undefined;
1105
+ country?: string | undefined;
1106
+ address1?: string | undefined;
1107
+ address2?: string | undefined;
1108
+ postalCode?: string | undefined;
1109
+ city?: string | undefined;
1110
+ phone?: string | undefined;
1111
+ };
1112
+ name?: string | undefined;
1113
+ }>;
1114
+ export declare const zPaymentMethod: z.ZodObject<{
1115
+ id: z.ZodString;
1116
+ setup: z.ZodBoolean;
1117
+ type: z.ZodEnum<["card"]>;
1118
+ last4: z.ZodString;
1119
+ exp_month: z.ZodNumber;
1120
+ exp_year: z.ZodNumber;
1121
+ brand: z.ZodEnum<["amex", "diners", "discover", "eftpos_au", "jcb", "mastercard", "unionpay", "visa", "unknown"]>;
1122
+ }, "strip", z.ZodTypeAny, {
1123
+ type: "card";
1124
+ id: string;
1125
+ setup: boolean;
1126
+ last4: string;
1127
+ exp_month: number;
1128
+ exp_year: number;
1129
+ brand: "unknown" | "visa" | "amex" | "diners" | "discover" | "eftpos_au" | "jcb" | "mastercard" | "unionpay";
1130
+ }, {
1131
+ type: "card";
1132
+ id: string;
1133
+ setup: boolean;
1134
+ last4: string;
1135
+ exp_month: number;
1136
+ exp_year: number;
1137
+ brand: "unknown" | "visa" | "amex" | "diners" | "discover" | "eftpos_au" | "jcb" | "mastercard" | "unionpay";
1138
+ }>;
1139
+ export declare const zTokenCreateInput: z.ZodObject<{
1140
+ name: z.ZodString;
1141
+ role: z.ZodEnum<["Administrator", "User"]>;
1142
+ }, "strip", z.ZodTypeAny, {
1143
+ name: string;
1144
+ role: "User" | "Administrator";
1145
+ }, {
1146
+ name: string;
1147
+ role: "User" | "Administrator";
1148
+ }>;
1149
+ export declare const zToken: z.ZodObject<{
1150
+ name: z.ZodString;
1151
+ role: z.ZodEnum<["Administrator", "User"]>;
1152
+ id: z.ZodOptional<z.ZodString>;
1153
+ secret: z.ZodOptional<z.ZodString>;
1154
+ date_created: z.ZodString;
1155
+ }, "strip", z.ZodTypeAny, {
1156
+ name: string;
1157
+ role: "User" | "Administrator";
1158
+ date_created: string;
1159
+ id?: string | undefined;
1160
+ secret?: string | undefined;
1161
+ }, {
1162
+ name: string;
1163
+ role: "User" | "Administrator";
1164
+ date_created: string;
1165
+ id?: string | undefined;
1166
+ secret?: string | undefined;
1167
+ }>;
1168
+ export declare const zTokenUpdateInput: z.ZodObject<{
1169
+ name: z.ZodOptional<z.ZodString>;
1170
+ role: z.ZodOptional<z.ZodEnum<["Administrator", "User"]>>;
1171
+ }, "strip", z.ZodTypeAny, {
1172
+ name?: string | undefined;
1173
+ role?: "User" | "Administrator" | undefined;
1174
+ }, {
1175
+ name?: string | undefined;
1176
+ role?: "User" | "Administrator" | undefined;
1177
+ }>;
1178
+ export declare const zUsage: z.ZodObject<{
1179
+ id: z.ZodString;
1180
+ task_id: z.ZodString;
1181
+ unit: z.ZodString;
1182
+ amount: z.ZodNumber;
1183
+ }, "strip", z.ZodTypeAny, {
1184
+ unit: string;
1185
+ id: string;
1186
+ task_id: string;
1187
+ amount: number;
1188
+ }, {
1189
+ unit: string;
1190
+ id: string;
1191
+ task_id: string;
1192
+ amount: number;
1193
+ }>;
1194
+ export declare const zUserCreateInput: z.ZodObject<{
1195
+ email: z.ZodString;
1196
+ first_name: z.ZodString;
1197
+ last_name: z.ZodString;
1198
+ code: z.ZodString;
1199
+ password: z.ZodString;
1200
+ status: z.ZodOptional<z.ZodEnum<["active", "inactive"]>>;
1201
+ role: z.ZodOptional<z.ZodEnum<["Administrator", "User"]>>;
1202
+ }, "strip", z.ZodTypeAny, {
1203
+ code: string;
1204
+ email: string;
1205
+ first_name: string;
1206
+ last_name: string;
1207
+ password: string;
1208
+ role?: "User" | "Administrator" | undefined;
1209
+ status?: "active" | "inactive" | undefined;
1210
+ }, {
1211
+ code: string;
1212
+ email: string;
1213
+ first_name: string;
1214
+ last_name: string;
1215
+ password: string;
1216
+ role?: "User" | "Administrator" | undefined;
1217
+ status?: "active" | "inactive" | undefined;
1218
+ }>;
1219
+ export declare const zUser: z.ZodObject<{
1220
+ email: z.ZodString;
1221
+ first_name: z.ZodString;
1222
+ last_name: z.ZodString;
1223
+ role: z.ZodEnum<["Administrator", "User"]>;
1224
+ status: z.ZodEnum<["active", "inactive"]>;
1225
+ id: z.ZodString;
1226
+ date_created: z.ZodString;
1227
+ cluster_permissions: z.ZodOptional<z.ZodArray<z.ZodObject<{
1228
+ cluster_id: z.ZodString;
1229
+ permissions: z.ZodEnum<["readwrite", "readonly"]>;
1230
+ }, "strip", z.ZodTypeAny, {
1231
+ cluster_id: string;
1232
+ permissions: "readonly" | "readwrite";
1233
+ }, {
1234
+ cluster_id: string;
1235
+ permissions: "readonly" | "readwrite";
1236
+ }>, "many">>;
1237
+ }, "strip", z.ZodTypeAny, {
1238
+ id: string;
1239
+ role: "User" | "Administrator";
1240
+ email: string;
1241
+ status: "active" | "inactive";
1242
+ date_created: string;
1243
+ first_name: string;
1244
+ last_name: string;
1245
+ cluster_permissions?: {
1246
+ cluster_id: string;
1247
+ permissions: "readonly" | "readwrite";
1248
+ }[] | undefined;
1249
+ }, {
1250
+ id: string;
1251
+ role: "User" | "Administrator";
1252
+ email: string;
1253
+ status: "active" | "inactive";
1254
+ date_created: string;
1255
+ first_name: string;
1256
+ last_name: string;
1257
+ cluster_permissions?: {
1258
+ cluster_id: string;
1259
+ permissions: "readonly" | "readwrite";
1260
+ }[] | undefined;
1261
+ }>;
1262
+ export declare const zUserUpdateInput: z.ZodObject<{
1263
+ email: z.ZodOptional<z.ZodString>;
1264
+ first_name: z.ZodOptional<z.ZodString>;
1265
+ last_name: z.ZodOptional<z.ZodString>;
1266
+ role: z.ZodOptional<z.ZodEnum<["Administrator", "User"]>>;
1267
+ status: z.ZodOptional<z.ZodEnum<["active", "inactive"]>>;
1268
+ }, "strip", z.ZodTypeAny, {
1269
+ role?: "User" | "Administrator" | undefined;
1270
+ email?: string | undefined;
1271
+ status?: "active" | "inactive" | undefined;
1272
+ first_name?: string | undefined;
1273
+ last_name?: string | undefined;
1274
+ }, {
1275
+ role?: "User" | "Administrator" | undefined;
1276
+ email?: string | undefined;
1277
+ status?: "active" | "inactive" | undefined;
1278
+ first_name?: string | undefined;
1279
+ last_name?: string | undefined;
1280
+ }>;
1281
+ export declare const zGetUsageResponse: z.ZodArray<z.ZodObject<{
1282
+ id: z.ZodString;
1283
+ task_id: z.ZodString;
1284
+ unit: z.ZodString;
1285
+ amount: z.ZodNumber;
1286
+ }, "strip", z.ZodTypeAny, {
1287
+ unit: string;
1288
+ id: string;
1289
+ task_id: string;
1290
+ amount: number;
1291
+ }, {
1292
+ unit: string;
1293
+ id: string;
1294
+ task_id: string;
1295
+ amount: number;
1296
+ }>, "many">;
1297
+ export declare const zGetBalanceResponse: z.ZodNumber;
1298
+ export declare const zGetPaymentMethodResponse: z.ZodObject<{
1299
+ id: z.ZodString;
1300
+ setup: z.ZodBoolean;
1301
+ type: z.ZodEnum<["card"]>;
1302
+ last4: z.ZodString;
1303
+ exp_month: z.ZodNumber;
1304
+ exp_year: z.ZodNumber;
1305
+ brand: z.ZodEnum<["amex", "diners", "discover", "eftpos_au", "jcb", "mastercard", "unionpay", "visa", "unknown"]>;
1306
+ }, "strip", z.ZodTypeAny, {
1307
+ type: "card";
1308
+ id: string;
1309
+ setup: boolean;
1310
+ last4: string;
1311
+ exp_month: number;
1312
+ exp_year: number;
1313
+ brand: "unknown" | "visa" | "amex" | "diners" | "discover" | "eftpos_au" | "jcb" | "mastercard" | "unionpay";
1314
+ }, {
1315
+ type: "card";
1316
+ id: string;
1317
+ setup: boolean;
1318
+ last4: string;
1319
+ exp_month: number;
1320
+ exp_year: number;
1321
+ brand: "unknown" | "visa" | "amex" | "diners" | "discover" | "eftpos_au" | "jcb" | "mastercard" | "unionpay";
1322
+ }>;
1323
+ export declare const zGetPaymentMethodSecretResponse: z.ZodObject<{
1324
+ id: z.ZodOptional<z.ZodString>;
1325
+ }, "strip", z.ZodTypeAny, {
1326
+ id?: string | undefined;
1327
+ }, {
1328
+ id?: string | undefined;
1329
+ }>;
1330
+ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
1331
+ id: z.ZodOptional<z.ZodString>;
1332
+ organizationId: z.ZodOptional<z.ZodString>;
1333
+ status: z.ZodOptional<z.ZodEnum<["DRAFT", "COMMITTED", "VOID"]>>;
1334
+ amount: z.ZodOptional<z.ZodNumber>;
1335
+ 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"]>>;
1336
+ creditAdj: z.ZodOptional<z.ZodNumber>;
1337
+ refundAdj: z.ZodOptional<z.ZodNumber>;
1338
+ invoiceDate: z.ZodOptional<z.ZodString>;
1339
+ targetDate: z.ZodOptional<z.ZodString>;
1340
+ invoiceNumber: z.ZodOptional<z.ZodString>;
1341
+ balance: z.ZodOptional<z.ZodNumber>;
1342
+ bundleKeys: z.ZodOptional<z.ZodString>;
1343
+ credits: z.ZodOptional<z.ZodArray<z.ZodObject<{
1344
+ id: z.ZodOptional<z.ZodString>;
1345
+ linkedInvoiceItemId: z.ZodOptional<z.ZodString>;
1346
+ productName: z.ZodOptional<z.ZodString>;
1347
+ planName: z.ZodOptional<z.ZodString>;
1348
+ phaseName: z.ZodOptional<z.ZodString>;
1349
+ usageName: z.ZodOptional<z.ZodString>;
1350
+ prettyProductName: z.ZodOptional<z.ZodString>;
1351
+ prettyPlanName: z.ZodOptional<z.ZodString>;
1352
+ prettyPhaseName: z.ZodOptional<z.ZodString>;
1353
+ prettyUsageName: z.ZodOptional<z.ZodString>;
1354
+ itemType: z.ZodOptional<z.ZodEnum<["EXTERNAL_CHARGE", "FIXED", "RECURRING", "REPAIR_ADJ", "CBA_ADJ", "CREDIT_ADJ", "ITEM_ADJ", "USAGE", "TAX", "PARENT_SUMMARY"]>>;
1355
+ description: z.ZodOptional<z.ZodString>;
1356
+ startDate: z.ZodOptional<z.ZodString>;
1357
+ endDate: z.ZodOptional<z.ZodString>;
1358
+ amount: z.ZodOptional<z.ZodNumber>;
1359
+ rate: z.ZodOptional<z.ZodNumber>;
1360
+ 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"]>>;
1361
+ quantity: z.ZodOptional<z.ZodNumber>;
1362
+ itemDetails: z.ZodOptional<z.ZodString>;
1363
+ catalogEffectiveDate: z.ZodOptional<z.ZodString>;
1364
+ childItems: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
1365
+ }, "strip", z.ZodTypeAny, {
1366
+ currency?: "USD" | "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" | "UYU" | "UZS" | "VEF" | "VND" | "VUV" | "WST" | "XAF" | "XCD" | "XDR" | "XOF" | "XPF" | "YER" | "ZAR" | "ZMW" | "ZWD" | "BTC" | undefined;
1367
+ id?: string | undefined;
1368
+ description?: string | undefined;
1369
+ amount?: number | undefined;
1370
+ linkedInvoiceItemId?: string | undefined;
1371
+ productName?: string | undefined;
1372
+ planName?: string | undefined;
1373
+ phaseName?: string | undefined;
1374
+ usageName?: string | undefined;
1375
+ prettyProductName?: string | undefined;
1376
+ prettyPlanName?: string | undefined;
1377
+ prettyPhaseName?: string | undefined;
1378
+ prettyUsageName?: string | undefined;
1379
+ itemType?: "EXTERNAL_CHARGE" | "FIXED" | "RECURRING" | "REPAIR_ADJ" | "CBA_ADJ" | "CREDIT_ADJ" | "ITEM_ADJ" | "USAGE" | "TAX" | "PARENT_SUMMARY" | undefined;
1380
+ startDate?: string | undefined;
1381
+ endDate?: string | undefined;
1382
+ rate?: number | undefined;
1383
+ quantity?: number | undefined;
1384
+ itemDetails?: string | undefined;
1385
+ catalogEffectiveDate?: string | undefined;
1386
+ childItems?: unknown[] | undefined;
1387
+ }, {
1388
+ currency?: "USD" | "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" | "UYU" | "UZS" | "VEF" | "VND" | "VUV" | "WST" | "XAF" | "XCD" | "XDR" | "XOF" | "XPF" | "YER" | "ZAR" | "ZMW" | "ZWD" | "BTC" | undefined;
1389
+ id?: string | undefined;
1390
+ description?: string | undefined;
1391
+ amount?: number | undefined;
1392
+ linkedInvoiceItemId?: string | undefined;
1393
+ productName?: string | undefined;
1394
+ planName?: string | undefined;
1395
+ phaseName?: string | undefined;
1396
+ usageName?: string | undefined;
1397
+ prettyProductName?: string | undefined;
1398
+ prettyPlanName?: string | undefined;
1399
+ prettyPhaseName?: string | undefined;
1400
+ prettyUsageName?: string | undefined;
1401
+ itemType?: "EXTERNAL_CHARGE" | "FIXED" | "RECURRING" | "REPAIR_ADJ" | "CBA_ADJ" | "CREDIT_ADJ" | "ITEM_ADJ" | "USAGE" | "TAX" | "PARENT_SUMMARY" | undefined;
1402
+ startDate?: string | undefined;
1403
+ endDate?: string | undefined;
1404
+ rate?: number | undefined;
1405
+ quantity?: number | undefined;
1406
+ itemDetails?: string | undefined;
1407
+ catalogEffectiveDate?: string | undefined;
1408
+ childItems?: unknown[] | undefined;
1409
+ }>, "many">>;
1410
+ items: z.ZodOptional<z.ZodArray<z.ZodObject<{
1411
+ id: z.ZodOptional<z.ZodString>;
1412
+ linkedInvoiceItemId: z.ZodOptional<z.ZodString>;
1413
+ productName: z.ZodOptional<z.ZodString>;
1414
+ planName: z.ZodOptional<z.ZodString>;
1415
+ phaseName: z.ZodOptional<z.ZodString>;
1416
+ usageName: z.ZodOptional<z.ZodString>;
1417
+ prettyProductName: z.ZodOptional<z.ZodString>;
1418
+ prettyPlanName: z.ZodOptional<z.ZodString>;
1419
+ prettyPhaseName: z.ZodOptional<z.ZodString>;
1420
+ prettyUsageName: z.ZodOptional<z.ZodString>;
1421
+ itemType: z.ZodOptional<z.ZodEnum<["EXTERNAL_CHARGE", "FIXED", "RECURRING", "REPAIR_ADJ", "CBA_ADJ", "CREDIT_ADJ", "ITEM_ADJ", "USAGE", "TAX", "PARENT_SUMMARY"]>>;
1422
+ description: z.ZodOptional<z.ZodString>;
1423
+ startDate: z.ZodOptional<z.ZodString>;
1424
+ endDate: z.ZodOptional<z.ZodString>;
1425
+ amount: z.ZodOptional<z.ZodNumber>;
1426
+ rate: z.ZodOptional<z.ZodNumber>;
1427
+ 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"]>>;
1428
+ quantity: z.ZodOptional<z.ZodNumber>;
1429
+ itemDetails: z.ZodOptional<z.ZodString>;
1430
+ catalogEffectiveDate: z.ZodOptional<z.ZodString>;
1431
+ childItems: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
1432
+ }, "strip", z.ZodTypeAny, {
1433
+ currency?: "USD" | "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" | "UYU" | "UZS" | "VEF" | "VND" | "VUV" | "WST" | "XAF" | "XCD" | "XDR" | "XOF" | "XPF" | "YER" | "ZAR" | "ZMW" | "ZWD" | "BTC" | undefined;
1434
+ id?: string | undefined;
1435
+ description?: string | undefined;
1436
+ amount?: number | undefined;
1437
+ linkedInvoiceItemId?: string | undefined;
1438
+ productName?: string | undefined;
1439
+ planName?: string | undefined;
1440
+ phaseName?: string | undefined;
1441
+ usageName?: string | undefined;
1442
+ prettyProductName?: string | undefined;
1443
+ prettyPlanName?: string | undefined;
1444
+ prettyPhaseName?: string | undefined;
1445
+ prettyUsageName?: string | undefined;
1446
+ itemType?: "EXTERNAL_CHARGE" | "FIXED" | "RECURRING" | "REPAIR_ADJ" | "CBA_ADJ" | "CREDIT_ADJ" | "ITEM_ADJ" | "USAGE" | "TAX" | "PARENT_SUMMARY" | undefined;
1447
+ startDate?: string | undefined;
1448
+ endDate?: string | undefined;
1449
+ rate?: number | undefined;
1450
+ quantity?: number | undefined;
1451
+ itemDetails?: string | undefined;
1452
+ catalogEffectiveDate?: string | undefined;
1453
+ childItems?: unknown[] | undefined;
1454
+ }, {
1455
+ currency?: "USD" | "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" | "UYU" | "UZS" | "VEF" | "VND" | "VUV" | "WST" | "XAF" | "XCD" | "XDR" | "XOF" | "XPF" | "YER" | "ZAR" | "ZMW" | "ZWD" | "BTC" | undefined;
1456
+ id?: string | undefined;
1457
+ description?: string | undefined;
1458
+ amount?: number | undefined;
1459
+ linkedInvoiceItemId?: string | undefined;
1460
+ productName?: string | undefined;
1461
+ planName?: string | undefined;
1462
+ phaseName?: string | undefined;
1463
+ usageName?: string | undefined;
1464
+ prettyProductName?: string | undefined;
1465
+ prettyPlanName?: string | undefined;
1466
+ prettyPhaseName?: string | undefined;
1467
+ prettyUsageName?: string | undefined;
1468
+ itemType?: "EXTERNAL_CHARGE" | "FIXED" | "RECURRING" | "REPAIR_ADJ" | "CBA_ADJ" | "CREDIT_ADJ" | "ITEM_ADJ" | "USAGE" | "TAX" | "PARENT_SUMMARY" | undefined;
1469
+ startDate?: string | undefined;
1470
+ endDate?: string | undefined;
1471
+ rate?: number | undefined;
1472
+ quantity?: number | undefined;
1473
+ itemDetails?: string | undefined;
1474
+ catalogEffectiveDate?: string | undefined;
1475
+ childItems?: unknown[] | undefined;
1476
+ }>, "many">>;
1477
+ }, "strip", z.ZodTypeAny, {
1478
+ currency?: "USD" | "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" | "UYU" | "UZS" | "VEF" | "VND" | "VUV" | "WST" | "XAF" | "XCD" | "XDR" | "XOF" | "XPF" | "YER" | "ZAR" | "ZMW" | "ZWD" | "BTC" | undefined;
1479
+ id?: string | undefined;
1480
+ status?: "DRAFT" | "COMMITTED" | "VOID" | undefined;
1481
+ amount?: number | undefined;
1482
+ items?: {
1483
+ currency?: "USD" | "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" | "UYU" | "UZS" | "VEF" | "VND" | "VUV" | "WST" | "XAF" | "XCD" | "XDR" | "XOF" | "XPF" | "YER" | "ZAR" | "ZMW" | "ZWD" | "BTC" | undefined;
1484
+ id?: string | undefined;
1485
+ description?: string | undefined;
1486
+ amount?: number | undefined;
1487
+ linkedInvoiceItemId?: string | undefined;
1488
+ productName?: string | undefined;
1489
+ planName?: string | undefined;
1490
+ phaseName?: string | undefined;
1491
+ usageName?: string | undefined;
1492
+ prettyProductName?: string | undefined;
1493
+ prettyPlanName?: string | undefined;
1494
+ prettyPhaseName?: string | undefined;
1495
+ prettyUsageName?: string | undefined;
1496
+ itemType?: "EXTERNAL_CHARGE" | "FIXED" | "RECURRING" | "REPAIR_ADJ" | "CBA_ADJ" | "CREDIT_ADJ" | "ITEM_ADJ" | "USAGE" | "TAX" | "PARENT_SUMMARY" | undefined;
1497
+ startDate?: string | undefined;
1498
+ endDate?: string | undefined;
1499
+ rate?: number | undefined;
1500
+ quantity?: number | undefined;
1501
+ itemDetails?: string | undefined;
1502
+ catalogEffectiveDate?: string | undefined;
1503
+ childItems?: unknown[] | undefined;
1504
+ }[] | undefined;
1505
+ organizationId?: string | undefined;
1506
+ creditAdj?: number | undefined;
1507
+ refundAdj?: number | undefined;
1508
+ invoiceDate?: string | undefined;
1509
+ targetDate?: string | undefined;
1510
+ invoiceNumber?: string | undefined;
1511
+ balance?: number | undefined;
1512
+ bundleKeys?: string | undefined;
1513
+ credits?: {
1514
+ currency?: "USD" | "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" | "UYU" | "UZS" | "VEF" | "VND" | "VUV" | "WST" | "XAF" | "XCD" | "XDR" | "XOF" | "XPF" | "YER" | "ZAR" | "ZMW" | "ZWD" | "BTC" | undefined;
1515
+ id?: string | undefined;
1516
+ description?: string | undefined;
1517
+ amount?: number | undefined;
1518
+ linkedInvoiceItemId?: string | undefined;
1519
+ productName?: string | undefined;
1520
+ planName?: string | undefined;
1521
+ phaseName?: string | undefined;
1522
+ usageName?: string | undefined;
1523
+ prettyProductName?: string | undefined;
1524
+ prettyPlanName?: string | undefined;
1525
+ prettyPhaseName?: string | undefined;
1526
+ prettyUsageName?: string | undefined;
1527
+ itemType?: "EXTERNAL_CHARGE" | "FIXED" | "RECURRING" | "REPAIR_ADJ" | "CBA_ADJ" | "CREDIT_ADJ" | "ITEM_ADJ" | "USAGE" | "TAX" | "PARENT_SUMMARY" | undefined;
1528
+ startDate?: string | undefined;
1529
+ endDate?: string | undefined;
1530
+ rate?: number | undefined;
1531
+ quantity?: number | undefined;
1532
+ itemDetails?: string | undefined;
1533
+ catalogEffectiveDate?: string | undefined;
1534
+ childItems?: unknown[] | undefined;
1535
+ }[] | undefined;
1536
+ }, {
1537
+ currency?: "USD" | "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" | "UYU" | "UZS" | "VEF" | "VND" | "VUV" | "WST" | "XAF" | "XCD" | "XDR" | "XOF" | "XPF" | "YER" | "ZAR" | "ZMW" | "ZWD" | "BTC" | undefined;
1538
+ id?: string | undefined;
1539
+ status?: "DRAFT" | "COMMITTED" | "VOID" | undefined;
1540
+ amount?: number | undefined;
1541
+ items?: {
1542
+ currency?: "USD" | "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" | "UYU" | "UZS" | "VEF" | "VND" | "VUV" | "WST" | "XAF" | "XCD" | "XDR" | "XOF" | "XPF" | "YER" | "ZAR" | "ZMW" | "ZWD" | "BTC" | undefined;
1543
+ id?: string | undefined;
1544
+ description?: string | undefined;
1545
+ amount?: number | undefined;
1546
+ linkedInvoiceItemId?: string | undefined;
1547
+ productName?: string | undefined;
1548
+ planName?: string | undefined;
1549
+ phaseName?: string | undefined;
1550
+ usageName?: string | undefined;
1551
+ prettyProductName?: string | undefined;
1552
+ prettyPlanName?: string | undefined;
1553
+ prettyPhaseName?: string | undefined;
1554
+ prettyUsageName?: string | undefined;
1555
+ itemType?: "EXTERNAL_CHARGE" | "FIXED" | "RECURRING" | "REPAIR_ADJ" | "CBA_ADJ" | "CREDIT_ADJ" | "ITEM_ADJ" | "USAGE" | "TAX" | "PARENT_SUMMARY" | undefined;
1556
+ startDate?: string | undefined;
1557
+ endDate?: string | undefined;
1558
+ rate?: number | undefined;
1559
+ quantity?: number | undefined;
1560
+ itemDetails?: string | undefined;
1561
+ catalogEffectiveDate?: string | undefined;
1562
+ childItems?: unknown[] | undefined;
1563
+ }[] | undefined;
1564
+ organizationId?: string | undefined;
1565
+ creditAdj?: number | undefined;
1566
+ refundAdj?: number | undefined;
1567
+ invoiceDate?: string | undefined;
1568
+ targetDate?: string | undefined;
1569
+ invoiceNumber?: string | undefined;
1570
+ balance?: number | undefined;
1571
+ bundleKeys?: string | undefined;
1572
+ credits?: {
1573
+ currency?: "USD" | "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" | "UYU" | "UZS" | "VEF" | "VND" | "VUV" | "WST" | "XAF" | "XCD" | "XDR" | "XOF" | "XPF" | "YER" | "ZAR" | "ZMW" | "ZWD" | "BTC" | undefined;
1574
+ id?: string | undefined;
1575
+ description?: string | undefined;
1576
+ amount?: number | undefined;
1577
+ linkedInvoiceItemId?: string | undefined;
1578
+ productName?: string | undefined;
1579
+ planName?: string | undefined;
1580
+ phaseName?: string | undefined;
1581
+ usageName?: string | undefined;
1582
+ prettyProductName?: string | undefined;
1583
+ prettyPlanName?: string | undefined;
1584
+ prettyPhaseName?: string | undefined;
1585
+ prettyUsageName?: string | undefined;
1586
+ itemType?: "EXTERNAL_CHARGE" | "FIXED" | "RECURRING" | "REPAIR_ADJ" | "CBA_ADJ" | "CREDIT_ADJ" | "ITEM_ADJ" | "USAGE" | "TAX" | "PARENT_SUMMARY" | undefined;
1587
+ startDate?: string | undefined;
1588
+ endDate?: string | undefined;
1589
+ rate?: number | undefined;
1590
+ quantity?: number | undefined;
1591
+ itemDetails?: string | undefined;
1592
+ catalogEffectiveDate?: string | undefined;
1593
+ childItems?: unknown[] | undefined;
1594
+ }[] | undefined;
1595
+ }>, "many">;
1596
+ export declare const zGetInvoiceResponse: z.ZodObject<{
1597
+ html: z.ZodOptional<z.ZodString>;
1598
+ }, "strip", z.ZodTypeAny, {
1599
+ html?: string | undefined;
1600
+ }, {
1601
+ html?: string | undefined;
1602
+ }>;
1603
+ export declare const zListFleetsResponse: z.ZodArray<z.ZodObject<{
1604
+ limits: z.ZodOptional<z.ZodObject<{
1605
+ cpu: z.ZodNumber;
1606
+ }, "strip", z.ZodTypeAny, {
1607
+ cpu: number;
1608
+ }, {
1609
+ cpu: number;
1610
+ }>>;
1611
+ gcp: z.ZodOptional<z.ZodObject<{
1612
+ enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1613
+ project: z.ZodString;
1614
+ }, "strip", z.ZodTypeAny, {
1615
+ project: string;
1616
+ enabled: boolean;
1617
+ }, {
1618
+ project: string;
1619
+ enabled?: boolean | undefined;
1620
+ }>>;
1621
+ hetzner: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
1622
+ enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1623
+ apiKey: z.ZodOptional<z.ZodString>;
1624
+ }, "strip", z.ZodTypeAny, {
1625
+ enabled: boolean;
1626
+ apiKey?: string | undefined;
1627
+ }, {
1628
+ apiKey?: string | undefined;
1629
+ enabled?: boolean | undefined;
1630
+ }>, z.ZodObject<{
1631
+ apiKey: z.ZodOptional<z.ZodString>;
1632
+ enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1633
+ }, "strip", z.ZodTypeAny, {
1634
+ enabled: boolean;
1635
+ apiKey?: string | undefined;
1636
+ }, {
1637
+ apiKey?: string | undefined;
1638
+ enabled?: boolean | undefined;
1639
+ }>]>>;
1640
+ aws: z.ZodOptional<z.ZodObject<{
1641
+ enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1642
+ controllerRoleArn: z.ZodString;
1643
+ }, "strip", z.ZodTypeAny, {
1644
+ controllerRoleArn: string;
1645
+ enabled: boolean;
1646
+ }, {
1647
+ controllerRoleArn: string;
1648
+ enabled?: boolean | undefined;
1649
+ }>>;
1650
+ id: z.ZodString;
1651
+ type: z.ZodEnum<["managed", "connected"]>;
1652
+ }, "strip", z.ZodTypeAny, {
1653
+ type: "connected" | "managed";
1654
+ id: string;
1655
+ limits?: {
1656
+ cpu: number;
1657
+ } | undefined;
1658
+ gcp?: {
1659
+ project: string;
1660
+ enabled: boolean;
1661
+ } | undefined;
1662
+ hetzner?: {
1663
+ enabled: boolean;
1664
+ apiKey?: string | undefined;
1665
+ } | {
1666
+ enabled: boolean;
1667
+ apiKey?: string | undefined;
1668
+ } | undefined;
1669
+ aws?: {
1670
+ controllerRoleArn: string;
1671
+ enabled: boolean;
1672
+ } | undefined;
1673
+ }, {
1674
+ type: "connected" | "managed";
1675
+ id: string;
1676
+ limits?: {
1677
+ cpu: number;
1678
+ } | undefined;
1679
+ gcp?: {
1680
+ project: string;
1681
+ enabled?: boolean | undefined;
1682
+ } | undefined;
1683
+ hetzner?: {
1684
+ apiKey?: string | undefined;
1685
+ enabled?: boolean | undefined;
1686
+ } | {
1687
+ apiKey?: string | undefined;
1688
+ enabled?: boolean | undefined;
1689
+ } | undefined;
1690
+ aws?: {
1691
+ controllerRoleArn: string;
1692
+ enabled?: boolean | undefined;
1693
+ } | undefined;
1694
+ }>, "many">;
1695
+ export declare const zCreateFleetResponse: z.ZodString;
1696
+ export declare const zDeleteFleetResponse: z.ZodString;
1697
+ export declare const zGetFleetResponse: z.ZodObject<{
1698
+ limits: z.ZodOptional<z.ZodObject<{
1699
+ cpu: z.ZodNumber;
1700
+ }, "strip", z.ZodTypeAny, {
1701
+ cpu: number;
1702
+ }, {
1703
+ cpu: number;
1704
+ }>>;
1705
+ gcp: z.ZodOptional<z.ZodObject<{
1706
+ enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1707
+ project: z.ZodString;
1708
+ }, "strip", z.ZodTypeAny, {
1709
+ project: string;
1710
+ enabled: boolean;
1711
+ }, {
1712
+ project: string;
1713
+ enabled?: boolean | undefined;
1714
+ }>>;
1715
+ hetzner: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
1716
+ enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1717
+ apiKey: z.ZodOptional<z.ZodString>;
1718
+ }, "strip", z.ZodTypeAny, {
1719
+ enabled: boolean;
1720
+ apiKey?: string | undefined;
1721
+ }, {
1722
+ apiKey?: string | undefined;
1723
+ enabled?: boolean | undefined;
1724
+ }>, z.ZodObject<{
1725
+ apiKey: z.ZodOptional<z.ZodString>;
1726
+ enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1727
+ }, "strip", z.ZodTypeAny, {
1728
+ enabled: boolean;
1729
+ apiKey?: string | undefined;
1730
+ }, {
1731
+ apiKey?: string | undefined;
1732
+ enabled?: boolean | undefined;
1733
+ }>]>>;
1734
+ aws: z.ZodOptional<z.ZodObject<{
1735
+ enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1736
+ controllerRoleArn: z.ZodString;
1737
+ }, "strip", z.ZodTypeAny, {
1738
+ controllerRoleArn: string;
1739
+ enabled: boolean;
1740
+ }, {
1741
+ controllerRoleArn: string;
1742
+ enabled?: boolean | undefined;
1743
+ }>>;
1744
+ id: z.ZodString;
1745
+ type: z.ZodEnum<["managed", "connected"]>;
1746
+ }, "strip", z.ZodTypeAny, {
1747
+ type: "connected" | "managed";
1748
+ id: string;
1749
+ limits?: {
1750
+ cpu: number;
1751
+ } | undefined;
1752
+ gcp?: {
1753
+ project: string;
1754
+ enabled: boolean;
1755
+ } | undefined;
1756
+ hetzner?: {
1757
+ enabled: boolean;
1758
+ apiKey?: string | undefined;
1759
+ } | {
1760
+ enabled: boolean;
1761
+ apiKey?: string | undefined;
1762
+ } | undefined;
1763
+ aws?: {
1764
+ controllerRoleArn: string;
1765
+ enabled: boolean;
1766
+ } | undefined;
1767
+ }, {
1768
+ type: "connected" | "managed";
1769
+ id: string;
1770
+ limits?: {
1771
+ cpu: number;
1772
+ } | undefined;
1773
+ gcp?: {
1774
+ project: string;
1775
+ enabled?: boolean | undefined;
1776
+ } | undefined;
1777
+ hetzner?: {
1778
+ apiKey?: string | undefined;
1779
+ enabled?: boolean | undefined;
1780
+ } | {
1781
+ apiKey?: string | undefined;
1782
+ enabled?: boolean | undefined;
1783
+ } | undefined;
1784
+ aws?: {
1785
+ controllerRoleArn: string;
1786
+ enabled?: boolean | undefined;
1787
+ } | undefined;
1788
+ }>;
1789
+ export declare const zUpdateFleetResponse: z.ZodString;
1790
+ export declare const zListClustersResponse: z.ZodArray<z.ZodObject<{
1791
+ name: z.ZodString;
1792
+ region: z.ZodOptional<z.ZodEnum<["staging", "northamerica-central-1"]>>;
1793
+ tier: z.ZodEnum<["basic", "pro"]>;
1794
+ version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
1795
+ id: z.ZodString;
1796
+ status: z.ZodEnum<["active", "deleted", "creating", "deployed", "failed", "updating"]>;
1797
+ endpoint: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodEnum<[""]>]>>;
1798
+ certificate_ca: z.ZodOptional<z.ZodString>;
1799
+ version_current: z.ZodOptional<z.ZodString>;
1800
+ created_at: z.ZodOptional<z.ZodString>;
1801
+ updated_at: z.ZodOptional<z.ZodString>;
1802
+ ready: z.ZodOptional<z.ZodBoolean>;
1803
+ }, "strip", z.ZodTypeAny, {
1804
+ name: string;
1805
+ id: string;
1806
+ status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
1807
+ tier: "basic" | "pro";
1808
+ version_channel: string;
1809
+ region?: "staging" | "northamerica-central-1" | undefined;
1810
+ endpoint?: string | undefined;
1811
+ certificate_ca?: string | undefined;
1812
+ version_current?: string | undefined;
1813
+ created_at?: string | undefined;
1814
+ updated_at?: string | undefined;
1815
+ ready?: boolean | undefined;
1816
+ }, {
1817
+ name: string;
1818
+ id: string;
1819
+ status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
1820
+ tier: "basic" | "pro";
1821
+ region?: "staging" | "northamerica-central-1" | undefined;
1822
+ endpoint?: string | undefined;
1823
+ version_channel?: string | undefined;
1824
+ certificate_ca?: string | undefined;
1825
+ version_current?: string | undefined;
1826
+ created_at?: string | undefined;
1827
+ updated_at?: string | undefined;
1828
+ ready?: boolean | undefined;
1829
+ }>, "many">;
1830
+ export declare const zCreateClusterResponse: z.ZodString;
1831
+ export declare const zDeleteClusterResponse: z.ZodString;
1832
+ export declare const zGetClusterResponse: z.ZodObject<{
1833
+ name: z.ZodString;
1834
+ region: z.ZodOptional<z.ZodEnum<["staging", "northamerica-central-1"]>>;
1835
+ tier: z.ZodEnum<["basic", "pro"]>;
1836
+ version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
1837
+ id: z.ZodString;
1838
+ status: z.ZodEnum<["active", "deleted", "creating", "deployed", "failed", "updating"]>;
1839
+ endpoint: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodEnum<[""]>]>>;
1840
+ certificate_ca: z.ZodOptional<z.ZodString>;
1841
+ version_current: z.ZodOptional<z.ZodString>;
1842
+ created_at: z.ZodOptional<z.ZodString>;
1843
+ updated_at: z.ZodOptional<z.ZodString>;
1844
+ ready: z.ZodOptional<z.ZodBoolean>;
1845
+ }, "strip", z.ZodTypeAny, {
1846
+ name: string;
1847
+ id: string;
1848
+ status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
1849
+ tier: "basic" | "pro";
1850
+ version_channel: string;
1851
+ region?: "staging" | "northamerica-central-1" | undefined;
1852
+ endpoint?: string | undefined;
1853
+ certificate_ca?: string | undefined;
1854
+ version_current?: string | undefined;
1855
+ created_at?: string | undefined;
1856
+ updated_at?: string | undefined;
1857
+ ready?: boolean | undefined;
1858
+ }, {
1859
+ name: string;
1860
+ id: string;
1861
+ status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
1862
+ tier: "basic" | "pro";
1863
+ region?: "staging" | "northamerica-central-1" | undefined;
1864
+ endpoint?: string | undefined;
1865
+ version_channel?: string | undefined;
1866
+ certificate_ca?: string | undefined;
1867
+ version_current?: string | undefined;
1868
+ created_at?: string | undefined;
1869
+ updated_at?: string | undefined;
1870
+ ready?: boolean | undefined;
1871
+ }>;
1872
+ export declare const zUpdateClusterResponse: z.ZodObject<{
1873
+ name: z.ZodString;
1874
+ region: z.ZodOptional<z.ZodEnum<["staging", "northamerica-central-1"]>>;
1875
+ tier: z.ZodEnum<["basic", "pro"]>;
1876
+ version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
1877
+ id: z.ZodString;
1878
+ status: z.ZodEnum<["active", "deleted", "creating", "deployed", "failed", "updating"]>;
1879
+ endpoint: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodEnum<[""]>]>>;
1880
+ certificate_ca: z.ZodOptional<z.ZodString>;
1881
+ version_current: z.ZodOptional<z.ZodString>;
1882
+ created_at: z.ZodOptional<z.ZodString>;
1883
+ updated_at: z.ZodOptional<z.ZodString>;
1884
+ ready: z.ZodOptional<z.ZodBoolean>;
1885
+ }, "strip", z.ZodTypeAny, {
1886
+ name: string;
1887
+ id: string;
1888
+ status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
1889
+ tier: "basic" | "pro";
1890
+ version_channel: string;
1891
+ region?: "staging" | "northamerica-central-1" | undefined;
1892
+ endpoint?: string | undefined;
1893
+ certificate_ca?: string | undefined;
1894
+ version_current?: string | undefined;
1895
+ created_at?: string | undefined;
1896
+ updated_at?: string | undefined;
1897
+ ready?: boolean | undefined;
1898
+ }, {
1899
+ name: string;
1900
+ id: string;
1901
+ status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
1902
+ tier: "basic" | "pro";
1903
+ region?: "staging" | "northamerica-central-1" | undefined;
1904
+ endpoint?: string | undefined;
1905
+ version_channel?: string | undefined;
1906
+ certificate_ca?: string | undefined;
1907
+ version_current?: string | undefined;
1908
+ created_at?: string | undefined;
1909
+ updated_at?: string | undefined;
1910
+ ready?: boolean | undefined;
1911
+ }>;
1912
+ export declare const zGetJoinInformationResponse: z.ZodObject<{
1913
+ name: z.ZodString;
1914
+ region: z.ZodOptional<z.ZodEnum<["staging", "northamerica-central-1"]>>;
1915
+ tier: z.ZodEnum<["basic", "pro"]>;
1916
+ version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
1917
+ id: z.ZodString;
1918
+ status: z.ZodEnum<["active", "deleted", "creating", "deployed", "failed", "updating"]>;
1919
+ endpoint: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodEnum<[""]>]>>;
1920
+ certificate_ca: z.ZodOptional<z.ZodString>;
1921
+ version_current: z.ZodOptional<z.ZodString>;
1922
+ created_at: z.ZodOptional<z.ZodString>;
1923
+ updated_at: z.ZodOptional<z.ZodString>;
1924
+ ready: z.ZodOptional<z.ZodBoolean>;
1925
+ }, "strip", z.ZodTypeAny, {
1926
+ name: string;
1927
+ id: string;
1928
+ status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
1929
+ tier: "basic" | "pro";
1930
+ version_channel: string;
1931
+ region?: "staging" | "northamerica-central-1" | undefined;
1932
+ endpoint?: string | undefined;
1933
+ certificate_ca?: string | undefined;
1934
+ version_current?: string | undefined;
1935
+ created_at?: string | undefined;
1936
+ updated_at?: string | undefined;
1937
+ ready?: boolean | undefined;
1938
+ }, {
1939
+ name: string;
1940
+ id: string;
1941
+ status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
1942
+ tier: "basic" | "pro";
1943
+ region?: "staging" | "northamerica-central-1" | undefined;
1944
+ endpoint?: string | undefined;
1945
+ version_channel?: string | undefined;
1946
+ certificate_ca?: string | undefined;
1947
+ version_current?: string | undefined;
1948
+ created_at?: string | undefined;
1949
+ updated_at?: string | undefined;
1950
+ ready?: boolean | undefined;
1951
+ }>;
1952
+ export declare const zGetInfrastructureResponse: z.ZodArray<z.ZodObject<{
1953
+ sku: z.ZodString;
1954
+ provider: z.ZodString;
1955
+ region: z.ZodString;
1956
+ sub_region: z.ZodString;
1957
+ csp_region: z.ZodString;
1958
+ csp_zone: z.ZodString;
1959
+ instance_type: z.ZodString;
1960
+ architecture: z.ZodString;
1961
+ os: z.ZodString;
1962
+ vcpu: z.ZodNumber;
1963
+ memory: z.ZodNumber;
1964
+ local_storage: z.ZodNumber;
1965
+ accelerator_name: z.ZodOptional<z.ZodString>;
1966
+ accelerator_manufacturer: z.ZodOptional<z.ZodString>;
1967
+ accelerator_count: z.ZodOptional<z.ZodNumber>;
1968
+ accelerator_memory: z.ZodOptional<z.ZodNumber>;
1969
+ pods_capacity: z.ZodOptional<z.ZodNumber>;
1970
+ capacity_type: z.ZodOptional<z.ZodString>;
1971
+ price: z.ZodNumber;
1972
+ available: z.ZodOptional<z.ZodBoolean>;
1973
+ }, "strip", z.ZodTypeAny, {
1974
+ memory: number;
1975
+ region: string;
1976
+ sku: string;
1977
+ provider: string;
1978
+ sub_region: string;
1979
+ csp_region: string;
1980
+ csp_zone: string;
1981
+ instance_type: string;
1982
+ architecture: string;
1983
+ os: string;
1984
+ vcpu: number;
1985
+ local_storage: number;
1986
+ price: number;
1987
+ accelerator_name?: string | undefined;
1988
+ accelerator_manufacturer?: string | undefined;
1989
+ accelerator_count?: number | undefined;
1990
+ accelerator_memory?: number | undefined;
1991
+ pods_capacity?: number | undefined;
1992
+ capacity_type?: string | undefined;
1993
+ available?: boolean | undefined;
1994
+ }, {
1995
+ memory: number;
1996
+ region: string;
1997
+ sku: string;
1998
+ provider: string;
1999
+ sub_region: string;
2000
+ csp_region: string;
2001
+ csp_zone: string;
2002
+ instance_type: string;
2003
+ architecture: string;
2004
+ os: string;
2005
+ vcpu: number;
2006
+ local_storage: number;
2007
+ price: number;
2008
+ accelerator_name?: string | undefined;
2009
+ accelerator_manufacturer?: string | undefined;
2010
+ accelerator_count?: number | undefined;
2011
+ accelerator_memory?: number | undefined;
2012
+ pods_capacity?: number | undefined;
2013
+ capacity_type?: string | undefined;
2014
+ available?: boolean | undefined;
2015
+ }>, "many">;
2016
+ export declare const zGetFacetsResponse: z.ZodArray<z.ZodObject<{
2017
+ provider: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2018
+ region: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2019
+ sub_region: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2020
+ csp_region: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2021
+ vcpu_min: z.ZodOptional<z.ZodNumber>;
2022
+ vcpu_max: z.ZodOptional<z.ZodNumber>;
2023
+ memory_min: z.ZodOptional<z.ZodNumber>;
2024
+ memory_max: z.ZodOptional<z.ZodNumber>;
2025
+ storage_local_min: z.ZodOptional<z.ZodNumber>;
2026
+ storage_local_max: z.ZodOptional<z.ZodNumber>;
2027
+ accelerator_name: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2028
+ accelerator_manufacturer: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2029
+ accelerator_count_min: z.ZodOptional<z.ZodNumber>;
2030
+ accelerator_count_max: z.ZodOptional<z.ZodNumber>;
2031
+ accelerator_memory_min: z.ZodOptional<z.ZodNumber>;
2032
+ accelerator_memory_max: z.ZodOptional<z.ZodNumber>;
2033
+ price_min: z.ZodOptional<z.ZodNumber>;
2034
+ price_max: z.ZodOptional<z.ZodNumber>;
2035
+ regions_struct: z.ZodOptional<z.ZodArray<z.ZodObject<{
2036
+ region: z.ZodOptional<z.ZodString>;
2037
+ sub_region: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2038
+ }, "strip", z.ZodTypeAny, {
2039
+ region?: string | undefined;
2040
+ sub_region?: string[] | undefined;
2041
+ }, {
2042
+ region?: string | undefined;
2043
+ sub_region?: string[] | undefined;
2044
+ }>, "many">>;
2045
+ accelerators_struct: z.ZodOptional<z.ZodArray<z.ZodObject<{
2046
+ accelerator_manufacturer: z.ZodOptional<z.ZodString>;
2047
+ accelerator_name: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2048
+ }, "strip", z.ZodTypeAny, {
2049
+ accelerator_name?: string[] | undefined;
2050
+ accelerator_manufacturer?: string | undefined;
2051
+ }, {
2052
+ accelerator_name?: string[] | undefined;
2053
+ accelerator_manufacturer?: string | undefined;
2054
+ }>, "many">>;
2055
+ count_total: z.ZodOptional<z.ZodNumber>;
2056
+ count_accelerators: z.ZodOptional<z.ZodNumber>;
2057
+ count_instance_types: z.ZodOptional<z.ZodNumber>;
2058
+ count_accelerators_instance_types: z.ZodOptional<z.ZodNumber>;
2059
+ }, "strip", z.ZodTypeAny, {
2060
+ region?: string[] | undefined;
2061
+ provider?: string[] | undefined;
2062
+ sub_region?: string[] | undefined;
2063
+ csp_region?: string[] | undefined;
2064
+ accelerator_name?: string[] | undefined;
2065
+ accelerator_manufacturer?: string[] | undefined;
2066
+ accelerator_count_min?: number | undefined;
2067
+ accelerator_count_max?: number | undefined;
2068
+ accelerator_memory_min?: number | undefined;
2069
+ accelerator_memory_max?: number | undefined;
2070
+ memory_min?: number | undefined;
2071
+ memory_max?: number | undefined;
2072
+ vcpu_min?: number | undefined;
2073
+ vcpu_max?: number | undefined;
2074
+ storage_local_min?: number | undefined;
2075
+ storage_local_max?: number | undefined;
2076
+ price_min?: number | undefined;
2077
+ price_max?: number | undefined;
2078
+ regions_struct?: {
2079
+ region?: string | undefined;
2080
+ sub_region?: string[] | undefined;
2081
+ }[] | undefined;
2082
+ accelerators_struct?: {
2083
+ accelerator_name?: string[] | undefined;
2084
+ accelerator_manufacturer?: string | undefined;
2085
+ }[] | undefined;
2086
+ count_total?: number | undefined;
2087
+ count_accelerators?: number | undefined;
2088
+ count_instance_types?: number | undefined;
2089
+ count_accelerators_instance_types?: number | undefined;
2090
+ }, {
2091
+ region?: string[] | undefined;
2092
+ provider?: string[] | undefined;
2093
+ sub_region?: string[] | undefined;
2094
+ csp_region?: string[] | undefined;
2095
+ accelerator_name?: string[] | undefined;
2096
+ accelerator_manufacturer?: string[] | undefined;
2097
+ accelerator_count_min?: number | undefined;
2098
+ accelerator_count_max?: number | undefined;
2099
+ accelerator_memory_min?: number | undefined;
2100
+ accelerator_memory_max?: number | undefined;
2101
+ memory_min?: number | undefined;
2102
+ memory_max?: number | undefined;
2103
+ vcpu_min?: number | undefined;
2104
+ vcpu_max?: number | undefined;
2105
+ storage_local_min?: number | undefined;
2106
+ storage_local_max?: number | undefined;
2107
+ price_min?: number | undefined;
2108
+ price_max?: number | undefined;
2109
+ regions_struct?: {
2110
+ region?: string | undefined;
2111
+ sub_region?: string[] | undefined;
2112
+ }[] | undefined;
2113
+ accelerators_struct?: {
2114
+ accelerator_name?: string[] | undefined;
2115
+ accelerator_manufacturer?: string | undefined;
2116
+ }[] | undefined;
2117
+ count_total?: number | undefined;
2118
+ count_accelerators?: number | undefined;
2119
+ count_instance_types?: number | undefined;
2120
+ count_accelerators_instance_types?: number | undefined;
2121
+ }>, "many">;
2122
+ export declare const zGetRegionsResponse: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
2123
+ export declare const zListInvitesResponse: z.ZodArray<z.ZodObject<{
2124
+ id: z.ZodOptional<z.ZodString>;
2125
+ organization_id: z.ZodOptional<z.ZodString>;
2126
+ date_created: z.ZodString;
2127
+ email: z.ZodOptional<z.ZodString>;
2128
+ code: z.ZodOptional<z.ZodString>;
2129
+ }, "strip", z.ZodTypeAny, {
2130
+ date_created: string;
2131
+ code?: string | undefined;
2132
+ id?: string | undefined;
2133
+ email?: string | undefined;
2134
+ organization_id?: string | undefined;
2135
+ }, {
2136
+ date_created: string;
2137
+ code?: string | undefined;
2138
+ id?: string | undefined;
2139
+ email?: string | undefined;
2140
+ organization_id?: string | undefined;
2141
+ }>, "many">;
2142
+ export declare const zCreateInviteResponse: z.ZodObject<{
2143
+ id: z.ZodOptional<z.ZodString>;
2144
+ organization_id: z.ZodOptional<z.ZodString>;
2145
+ date_created: z.ZodString;
2146
+ email: z.ZodOptional<z.ZodString>;
2147
+ code: z.ZodOptional<z.ZodString>;
2148
+ }, "strip", z.ZodTypeAny, {
2149
+ date_created: string;
2150
+ code?: string | undefined;
2151
+ id?: string | undefined;
2152
+ email?: string | undefined;
2153
+ organization_id?: string | undefined;
2154
+ }, {
2155
+ date_created: string;
2156
+ code?: string | undefined;
2157
+ id?: string | undefined;
2158
+ email?: string | undefined;
2159
+ organization_id?: string | undefined;
2160
+ }>;
2161
+ export declare const zGetInviteResponse: z.ZodObject<{
2162
+ id: z.ZodOptional<z.ZodString>;
2163
+ organization_id: z.ZodOptional<z.ZodString>;
2164
+ date_created: z.ZodString;
2165
+ email: z.ZodOptional<z.ZodString>;
2166
+ code: z.ZodOptional<z.ZodString>;
2167
+ }, "strip", z.ZodTypeAny, {
2168
+ date_created: string;
2169
+ code?: string | undefined;
2170
+ id?: string | undefined;
2171
+ email?: string | undefined;
2172
+ organization_id?: string | undefined;
2173
+ }, {
2174
+ date_created: string;
2175
+ code?: string | undefined;
2176
+ id?: string | undefined;
2177
+ email?: string | undefined;
2178
+ organization_id?: string | undefined;
2179
+ }>;
2180
+ export declare const zGetOrganizationResponse: z.ZodObject<{
2181
+ name: z.ZodString;
2182
+ contactInfo: z.ZodObject<{
2183
+ address1: z.ZodOptional<z.ZodString>;
2184
+ address2: z.ZodOptional<z.ZodString>;
2185
+ postalCode: z.ZodOptional<z.ZodString>;
2186
+ city: z.ZodOptional<z.ZodString>;
2187
+ state: z.ZodOptional<z.ZodString>;
2188
+ country: z.ZodOptional<z.ZodString>;
2189
+ phone: z.ZodOptional<z.ZodString>;
2190
+ email: z.ZodString;
2191
+ first_name: z.ZodString;
2192
+ last_name: z.ZodString;
2193
+ }, "strip", z.ZodTypeAny, {
2194
+ email: string;
2195
+ first_name: string;
2196
+ last_name: string;
2197
+ state?: string | undefined;
2198
+ country?: string | undefined;
2199
+ address1?: string | undefined;
2200
+ address2?: string | undefined;
2201
+ postalCode?: string | undefined;
2202
+ city?: string | undefined;
2203
+ phone?: string | undefined;
2204
+ }, {
2205
+ email: string;
2206
+ first_name: string;
2207
+ last_name: string;
2208
+ state?: string | undefined;
2209
+ country?: string | undefined;
2210
+ address1?: string | undefined;
2211
+ address2?: string | undefined;
2212
+ postalCode?: string | undefined;
2213
+ city?: string | undefined;
2214
+ phone?: string | undefined;
2215
+ }>;
2216
+ id: z.ZodString;
2217
+ date_created: z.ZodString;
2218
+ quota: z.ZodObject<{
2219
+ basic_clusters_max: z.ZodNumber;
2220
+ basic_clusters_available: z.ZodNumber;
2221
+ pro_clusters_max: z.ZodNumber;
2222
+ pro_clusters_available: z.ZodNumber;
2223
+ fleets_max: z.ZodNumber;
2224
+ managed_fleets_cpu_max: z.ZodNumber;
2225
+ cluster_tiers: z.ZodArray<z.ZodString, "many">;
2226
+ regions: z.ZodArray<z.ZodString, "many">;
2227
+ versions: z.ZodArray<z.ZodObject<{
2228
+ id: z.ZodString;
2229
+ label: z.ZodString;
2230
+ }, "strip", z.ZodTypeAny, {
2231
+ id: string;
2232
+ label: string;
2233
+ }, {
2234
+ id: string;
2235
+ label: string;
2236
+ }>, "many">;
2237
+ }, "strip", z.ZodTypeAny, {
2238
+ versions: {
2239
+ id: string;
2240
+ label: string;
2241
+ }[];
2242
+ basic_clusters_max: number;
2243
+ basic_clusters_available: number;
2244
+ pro_clusters_max: number;
2245
+ pro_clusters_available: number;
2246
+ fleets_max: number;
2247
+ managed_fleets_cpu_max: number;
2248
+ cluster_tiers: string[];
2249
+ regions: string[];
2250
+ }, {
2251
+ versions: {
2252
+ id: string;
2253
+ label: string;
2254
+ }[];
2255
+ basic_clusters_max: number;
2256
+ basic_clusters_available: number;
2257
+ pro_clusters_max: number;
2258
+ pro_clusters_available: number;
2259
+ fleets_max: number;
2260
+ managed_fleets_cpu_max: number;
2261
+ cluster_tiers: string[];
2262
+ regions: string[];
2263
+ }>;
2264
+ pending_actions: z.ZodArray<z.ZodEnum<["signup-billing-address", "signup-payment-method", "signup-invite-team", "signup-create-cluster"]>, "many">;
2265
+ status: z.ZodEnum<["active", "closed", "suspended"]>;
2266
+ }, "strip", z.ZodTypeAny, {
2267
+ name: string;
2268
+ id: string;
2269
+ status: "active" | "closed" | "suspended";
2270
+ date_created: string;
2271
+ contactInfo: {
2272
+ email: string;
2273
+ first_name: string;
2274
+ last_name: string;
2275
+ state?: string | undefined;
2276
+ country?: string | undefined;
2277
+ address1?: string | undefined;
2278
+ address2?: string | undefined;
2279
+ postalCode?: string | undefined;
2280
+ city?: string | undefined;
2281
+ phone?: string | undefined;
2282
+ };
2283
+ quota: {
2284
+ versions: {
2285
+ id: string;
2286
+ label: string;
2287
+ }[];
2288
+ basic_clusters_max: number;
2289
+ basic_clusters_available: number;
2290
+ pro_clusters_max: number;
2291
+ pro_clusters_available: number;
2292
+ fleets_max: number;
2293
+ managed_fleets_cpu_max: number;
2294
+ cluster_tiers: string[];
2295
+ regions: string[];
2296
+ };
2297
+ pending_actions: ("signup-payment-method" | "signup-billing-address" | "signup-invite-team" | "signup-create-cluster")[];
2298
+ }, {
2299
+ name: string;
2300
+ id: string;
2301
+ status: "active" | "closed" | "suspended";
2302
+ date_created: string;
2303
+ contactInfo: {
2304
+ email: string;
2305
+ first_name: string;
2306
+ last_name: string;
2307
+ state?: string | undefined;
2308
+ country?: string | undefined;
2309
+ address1?: string | undefined;
2310
+ address2?: string | undefined;
2311
+ postalCode?: string | undefined;
2312
+ city?: string | undefined;
2313
+ phone?: string | undefined;
2314
+ };
2315
+ quota: {
2316
+ versions: {
2317
+ id: string;
2318
+ label: string;
2319
+ }[];
2320
+ basic_clusters_max: number;
2321
+ basic_clusters_available: number;
2322
+ pro_clusters_max: number;
2323
+ pro_clusters_available: number;
2324
+ fleets_max: number;
2325
+ managed_fleets_cpu_max: number;
2326
+ cluster_tiers: string[];
2327
+ regions: string[];
2328
+ };
2329
+ pending_actions: ("signup-payment-method" | "signup-billing-address" | "signup-invite-team" | "signup-create-cluster")[];
2330
+ }>;
2331
+ export declare const zCreateOrganizationResponse: z.ZodObject<{
2332
+ name: z.ZodString;
2333
+ contactInfo: z.ZodObject<{
2334
+ address1: z.ZodOptional<z.ZodString>;
2335
+ address2: z.ZodOptional<z.ZodString>;
2336
+ postalCode: z.ZodOptional<z.ZodString>;
2337
+ city: z.ZodOptional<z.ZodString>;
2338
+ state: z.ZodOptional<z.ZodString>;
2339
+ country: z.ZodOptional<z.ZodString>;
2340
+ phone: z.ZodOptional<z.ZodString>;
2341
+ email: z.ZodString;
2342
+ first_name: z.ZodString;
2343
+ last_name: z.ZodString;
2344
+ }, "strip", z.ZodTypeAny, {
2345
+ email: string;
2346
+ first_name: string;
2347
+ last_name: string;
2348
+ state?: string | undefined;
2349
+ country?: string | undefined;
2350
+ address1?: string | undefined;
2351
+ address2?: string | undefined;
2352
+ postalCode?: string | undefined;
2353
+ city?: string | undefined;
2354
+ phone?: string | undefined;
2355
+ }, {
2356
+ email: string;
2357
+ first_name: string;
2358
+ last_name: string;
2359
+ state?: string | undefined;
2360
+ country?: string | undefined;
2361
+ address1?: string | undefined;
2362
+ address2?: string | undefined;
2363
+ postalCode?: string | undefined;
2364
+ city?: string | undefined;
2365
+ phone?: string | undefined;
2366
+ }>;
2367
+ id: z.ZodString;
2368
+ date_created: z.ZodString;
2369
+ quota: z.ZodObject<{
2370
+ basic_clusters_max: z.ZodNumber;
2371
+ basic_clusters_available: z.ZodNumber;
2372
+ pro_clusters_max: z.ZodNumber;
2373
+ pro_clusters_available: z.ZodNumber;
2374
+ fleets_max: z.ZodNumber;
2375
+ managed_fleets_cpu_max: z.ZodNumber;
2376
+ cluster_tiers: z.ZodArray<z.ZodString, "many">;
2377
+ regions: z.ZodArray<z.ZodString, "many">;
2378
+ versions: z.ZodArray<z.ZodObject<{
2379
+ id: z.ZodString;
2380
+ label: z.ZodString;
2381
+ }, "strip", z.ZodTypeAny, {
2382
+ id: string;
2383
+ label: string;
2384
+ }, {
2385
+ id: string;
2386
+ label: string;
2387
+ }>, "many">;
2388
+ }, "strip", z.ZodTypeAny, {
2389
+ versions: {
2390
+ id: string;
2391
+ label: string;
2392
+ }[];
2393
+ basic_clusters_max: number;
2394
+ basic_clusters_available: number;
2395
+ pro_clusters_max: number;
2396
+ pro_clusters_available: number;
2397
+ fleets_max: number;
2398
+ managed_fleets_cpu_max: number;
2399
+ cluster_tiers: string[];
2400
+ regions: string[];
2401
+ }, {
2402
+ versions: {
2403
+ id: string;
2404
+ label: string;
2405
+ }[];
2406
+ basic_clusters_max: number;
2407
+ basic_clusters_available: number;
2408
+ pro_clusters_max: number;
2409
+ pro_clusters_available: number;
2410
+ fleets_max: number;
2411
+ managed_fleets_cpu_max: number;
2412
+ cluster_tiers: string[];
2413
+ regions: string[];
2414
+ }>;
2415
+ pending_actions: z.ZodArray<z.ZodEnum<["signup-billing-address", "signup-payment-method", "signup-invite-team", "signup-create-cluster"]>, "many">;
2416
+ status: z.ZodEnum<["active", "closed", "suspended"]>;
2417
+ }, "strip", z.ZodTypeAny, {
2418
+ name: string;
2419
+ id: string;
2420
+ status: "active" | "closed" | "suspended";
2421
+ date_created: string;
2422
+ contactInfo: {
2423
+ email: string;
2424
+ first_name: string;
2425
+ last_name: string;
2426
+ state?: string | undefined;
2427
+ country?: string | undefined;
2428
+ address1?: string | undefined;
2429
+ address2?: string | undefined;
2430
+ postalCode?: string | undefined;
2431
+ city?: string | undefined;
2432
+ phone?: string | undefined;
2433
+ };
2434
+ quota: {
2435
+ versions: {
2436
+ id: string;
2437
+ label: string;
2438
+ }[];
2439
+ basic_clusters_max: number;
2440
+ basic_clusters_available: number;
2441
+ pro_clusters_max: number;
2442
+ pro_clusters_available: number;
2443
+ fleets_max: number;
2444
+ managed_fleets_cpu_max: number;
2445
+ cluster_tiers: string[];
2446
+ regions: string[];
2447
+ };
2448
+ pending_actions: ("signup-payment-method" | "signup-billing-address" | "signup-invite-team" | "signup-create-cluster")[];
2449
+ }, {
2450
+ name: string;
2451
+ id: string;
2452
+ status: "active" | "closed" | "suspended";
2453
+ date_created: string;
2454
+ contactInfo: {
2455
+ email: string;
2456
+ first_name: string;
2457
+ last_name: string;
2458
+ state?: string | undefined;
2459
+ country?: string | undefined;
2460
+ address1?: string | undefined;
2461
+ address2?: string | undefined;
2462
+ postalCode?: string | undefined;
2463
+ city?: string | undefined;
2464
+ phone?: string | undefined;
2465
+ };
2466
+ quota: {
2467
+ versions: {
2468
+ id: string;
2469
+ label: string;
2470
+ }[];
2471
+ basic_clusters_max: number;
2472
+ basic_clusters_available: number;
2473
+ pro_clusters_max: number;
2474
+ pro_clusters_available: number;
2475
+ fleets_max: number;
2476
+ managed_fleets_cpu_max: number;
2477
+ cluster_tiers: string[];
2478
+ regions: string[];
2479
+ };
2480
+ pending_actions: ("signup-payment-method" | "signup-billing-address" | "signup-invite-team" | "signup-create-cluster")[];
2481
+ }>;
2482
+ export declare const zUpdateOrganizationResponse: z.ZodObject<{
2483
+ name: z.ZodString;
2484
+ contactInfo: z.ZodObject<{
2485
+ address1: z.ZodOptional<z.ZodString>;
2486
+ address2: z.ZodOptional<z.ZodString>;
2487
+ postalCode: z.ZodOptional<z.ZodString>;
2488
+ city: z.ZodOptional<z.ZodString>;
2489
+ state: z.ZodOptional<z.ZodString>;
2490
+ country: z.ZodOptional<z.ZodString>;
2491
+ phone: z.ZodOptional<z.ZodString>;
2492
+ email: z.ZodString;
2493
+ first_name: z.ZodString;
2494
+ last_name: z.ZodString;
2495
+ }, "strip", z.ZodTypeAny, {
2496
+ email: string;
2497
+ first_name: string;
2498
+ last_name: string;
2499
+ state?: string | undefined;
2500
+ country?: string | undefined;
2501
+ address1?: string | undefined;
2502
+ address2?: string | undefined;
2503
+ postalCode?: string | undefined;
2504
+ city?: string | undefined;
2505
+ phone?: string | undefined;
2506
+ }, {
2507
+ email: string;
2508
+ first_name: string;
2509
+ last_name: string;
2510
+ state?: string | undefined;
2511
+ country?: string | undefined;
2512
+ address1?: string | undefined;
2513
+ address2?: string | undefined;
2514
+ postalCode?: string | undefined;
2515
+ city?: string | undefined;
2516
+ phone?: string | undefined;
2517
+ }>;
2518
+ id: z.ZodString;
2519
+ date_created: z.ZodString;
2520
+ quota: z.ZodObject<{
2521
+ basic_clusters_max: z.ZodNumber;
2522
+ basic_clusters_available: z.ZodNumber;
2523
+ pro_clusters_max: z.ZodNumber;
2524
+ pro_clusters_available: z.ZodNumber;
2525
+ fleets_max: z.ZodNumber;
2526
+ managed_fleets_cpu_max: z.ZodNumber;
2527
+ cluster_tiers: z.ZodArray<z.ZodString, "many">;
2528
+ regions: z.ZodArray<z.ZodString, "many">;
2529
+ versions: z.ZodArray<z.ZodObject<{
2530
+ id: z.ZodString;
2531
+ label: z.ZodString;
2532
+ }, "strip", z.ZodTypeAny, {
2533
+ id: string;
2534
+ label: string;
2535
+ }, {
2536
+ id: string;
2537
+ label: string;
2538
+ }>, "many">;
2539
+ }, "strip", z.ZodTypeAny, {
2540
+ versions: {
2541
+ id: string;
2542
+ label: string;
2543
+ }[];
2544
+ basic_clusters_max: number;
2545
+ basic_clusters_available: number;
2546
+ pro_clusters_max: number;
2547
+ pro_clusters_available: number;
2548
+ fleets_max: number;
2549
+ managed_fleets_cpu_max: number;
2550
+ cluster_tiers: string[];
2551
+ regions: string[];
2552
+ }, {
2553
+ versions: {
2554
+ id: string;
2555
+ label: string;
2556
+ }[];
2557
+ basic_clusters_max: number;
2558
+ basic_clusters_available: number;
2559
+ pro_clusters_max: number;
2560
+ pro_clusters_available: number;
2561
+ fleets_max: number;
2562
+ managed_fleets_cpu_max: number;
2563
+ cluster_tiers: string[];
2564
+ regions: string[];
2565
+ }>;
2566
+ pending_actions: z.ZodArray<z.ZodEnum<["signup-billing-address", "signup-payment-method", "signup-invite-team", "signup-create-cluster"]>, "many">;
2567
+ status: z.ZodEnum<["active", "closed", "suspended"]>;
2568
+ }, "strip", z.ZodTypeAny, {
2569
+ name: string;
2570
+ id: string;
2571
+ status: "active" | "closed" | "suspended";
2572
+ date_created: string;
2573
+ contactInfo: {
2574
+ email: string;
2575
+ first_name: string;
2576
+ last_name: string;
2577
+ state?: string | undefined;
2578
+ country?: string | undefined;
2579
+ address1?: string | undefined;
2580
+ address2?: string | undefined;
2581
+ postalCode?: string | undefined;
2582
+ city?: string | undefined;
2583
+ phone?: string | undefined;
2584
+ };
2585
+ quota: {
2586
+ versions: {
2587
+ id: string;
2588
+ label: string;
2589
+ }[];
2590
+ basic_clusters_max: number;
2591
+ basic_clusters_available: number;
2592
+ pro_clusters_max: number;
2593
+ pro_clusters_available: number;
2594
+ fleets_max: number;
2595
+ managed_fleets_cpu_max: number;
2596
+ cluster_tiers: string[];
2597
+ regions: string[];
2598
+ };
2599
+ pending_actions: ("signup-payment-method" | "signup-billing-address" | "signup-invite-team" | "signup-create-cluster")[];
2600
+ }, {
2601
+ name: string;
2602
+ id: string;
2603
+ status: "active" | "closed" | "suspended";
2604
+ date_created: string;
2605
+ contactInfo: {
2606
+ email: string;
2607
+ first_name: string;
2608
+ last_name: string;
2609
+ state?: string | undefined;
2610
+ country?: string | undefined;
2611
+ address1?: string | undefined;
2612
+ address2?: string | undefined;
2613
+ postalCode?: string | undefined;
2614
+ city?: string | undefined;
2615
+ phone?: string | undefined;
2616
+ };
2617
+ quota: {
2618
+ versions: {
2619
+ id: string;
2620
+ label: string;
2621
+ }[];
2622
+ basic_clusters_max: number;
2623
+ basic_clusters_available: number;
2624
+ pro_clusters_max: number;
2625
+ pro_clusters_available: number;
2626
+ fleets_max: number;
2627
+ managed_fleets_cpu_max: number;
2628
+ cluster_tiers: string[];
2629
+ regions: string[];
2630
+ };
2631
+ pending_actions: ("signup-payment-method" | "signup-billing-address" | "signup-invite-team" | "signup-create-cluster")[];
2632
+ }>;
2633
+ export declare const zListTokensResponse: z.ZodArray<z.ZodObject<{
2634
+ name: z.ZodString;
2635
+ role: z.ZodEnum<["Administrator", "User"]>;
2636
+ id: z.ZodOptional<z.ZodString>;
2637
+ secret: z.ZodOptional<z.ZodString>;
2638
+ date_created: z.ZodString;
2639
+ }, "strip", z.ZodTypeAny, {
2640
+ name: string;
2641
+ role: "User" | "Administrator";
2642
+ date_created: string;
2643
+ id?: string | undefined;
2644
+ secret?: string | undefined;
2645
+ }, {
2646
+ name: string;
2647
+ role: "User" | "Administrator";
2648
+ date_created: string;
2649
+ id?: string | undefined;
2650
+ secret?: string | undefined;
2651
+ }>, "many">;
2652
+ export declare const zCreateTokenResponse: z.ZodObject<{
2653
+ name: z.ZodString;
2654
+ role: z.ZodEnum<["Administrator", "User"]>;
2655
+ id: z.ZodOptional<z.ZodString>;
2656
+ secret: z.ZodOptional<z.ZodString>;
2657
+ date_created: z.ZodString;
2658
+ }, "strip", z.ZodTypeAny, {
2659
+ name: string;
2660
+ role: "User" | "Administrator";
2661
+ date_created: string;
2662
+ id?: string | undefined;
2663
+ secret?: string | undefined;
2664
+ }, {
2665
+ name: string;
2666
+ role: "User" | "Administrator";
2667
+ date_created: string;
2668
+ id?: string | undefined;
2669
+ secret?: string | undefined;
2670
+ }>;
2671
+ export declare const zGetTokenResponse: z.ZodObject<{
2672
+ name: z.ZodString;
2673
+ role: z.ZodEnum<["Administrator", "User"]>;
2674
+ id: z.ZodOptional<z.ZodString>;
2675
+ secret: z.ZodOptional<z.ZodString>;
2676
+ date_created: z.ZodString;
2677
+ }, "strip", z.ZodTypeAny, {
2678
+ name: string;
2679
+ role: "User" | "Administrator";
2680
+ date_created: string;
2681
+ id?: string | undefined;
2682
+ secret?: string | undefined;
2683
+ }, {
2684
+ name: string;
2685
+ role: "User" | "Administrator";
2686
+ date_created: string;
2687
+ id?: string | undefined;
2688
+ secret?: string | undefined;
2689
+ }>;
2690
+ export declare const zUpdateTokenResponse: z.ZodObject<{
2691
+ name: z.ZodString;
2692
+ role: z.ZodEnum<["Administrator", "User"]>;
2693
+ id: z.ZodOptional<z.ZodString>;
2694
+ secret: z.ZodOptional<z.ZodString>;
2695
+ date_created: z.ZodString;
2696
+ }, "strip", z.ZodTypeAny, {
2697
+ name: string;
2698
+ role: "User" | "Administrator";
2699
+ date_created: string;
2700
+ id?: string | undefined;
2701
+ secret?: string | undefined;
2702
+ }, {
2703
+ name: string;
2704
+ role: "User" | "Administrator";
2705
+ date_created: string;
2706
+ id?: string | undefined;
2707
+ secret?: string | undefined;
2708
+ }>;
2709
+ export declare const zRegenerateTokenResponse: z.ZodObject<{
2710
+ name: z.ZodString;
2711
+ role: z.ZodEnum<["Administrator", "User"]>;
2712
+ id: z.ZodOptional<z.ZodString>;
2713
+ secret: z.ZodOptional<z.ZodString>;
2714
+ date_created: z.ZodString;
2715
+ }, "strip", z.ZodTypeAny, {
2716
+ name: string;
2717
+ role: "User" | "Administrator";
2718
+ date_created: string;
2719
+ id?: string | undefined;
2720
+ secret?: string | undefined;
2721
+ }, {
2722
+ name: string;
2723
+ role: "User" | "Administrator";
2724
+ date_created: string;
2725
+ id?: string | undefined;
2726
+ secret?: string | undefined;
2727
+ }>;
2728
+ export declare const zListUserOrganizationsResponse: z.ZodArray<z.ZodObject<{
2729
+ realm: z.ZodOptional<z.ZodString>;
2730
+ displayName: z.ZodOptional<z.ZodString>;
2731
+ }, "strip", z.ZodTypeAny, {
2732
+ realm?: string | undefined;
2733
+ displayName?: string | undefined;
2734
+ }, {
2735
+ realm?: string | undefined;
2736
+ displayName?: string | undefined;
2737
+ }>, "many">;
2738
+ export declare const zListUsersResponse: z.ZodArray<z.ZodObject<{
2739
+ email: z.ZodString;
2740
+ first_name: z.ZodString;
2741
+ last_name: z.ZodString;
2742
+ role: z.ZodEnum<["Administrator", "User"]>;
2743
+ status: z.ZodEnum<["active", "inactive"]>;
2744
+ id: z.ZodString;
2745
+ date_created: z.ZodString;
2746
+ cluster_permissions: z.ZodOptional<z.ZodArray<z.ZodObject<{
2747
+ cluster_id: z.ZodString;
2748
+ permissions: z.ZodEnum<["readwrite", "readonly"]>;
2749
+ }, "strip", z.ZodTypeAny, {
2750
+ cluster_id: string;
2751
+ permissions: "readonly" | "readwrite";
2752
+ }, {
2753
+ cluster_id: string;
2754
+ permissions: "readonly" | "readwrite";
2755
+ }>, "many">>;
2756
+ }, "strip", z.ZodTypeAny, {
2757
+ id: string;
2758
+ role: "User" | "Administrator";
2759
+ email: string;
2760
+ status: "active" | "inactive";
2761
+ date_created: string;
2762
+ first_name: string;
2763
+ last_name: string;
2764
+ cluster_permissions?: {
2765
+ cluster_id: string;
2766
+ permissions: "readonly" | "readwrite";
2767
+ }[] | undefined;
2768
+ }, {
2769
+ id: string;
2770
+ role: "User" | "Administrator";
2771
+ email: string;
2772
+ status: "active" | "inactive";
2773
+ date_created: string;
2774
+ first_name: string;
2775
+ last_name: string;
2776
+ cluster_permissions?: {
2777
+ cluster_id: string;
2778
+ permissions: "readonly" | "readwrite";
2779
+ }[] | undefined;
2780
+ }>, "many">;
2781
+ export declare const zCreateUserResponse: z.ZodObject<{
2782
+ email: z.ZodString;
2783
+ first_name: z.ZodString;
2784
+ last_name: z.ZodString;
2785
+ role: z.ZodEnum<["Administrator", "User"]>;
2786
+ status: z.ZodEnum<["active", "inactive"]>;
2787
+ id: z.ZodString;
2788
+ date_created: z.ZodString;
2789
+ cluster_permissions: z.ZodOptional<z.ZodArray<z.ZodObject<{
2790
+ cluster_id: z.ZodString;
2791
+ permissions: z.ZodEnum<["readwrite", "readonly"]>;
2792
+ }, "strip", z.ZodTypeAny, {
2793
+ cluster_id: string;
2794
+ permissions: "readonly" | "readwrite";
2795
+ }, {
2796
+ cluster_id: string;
2797
+ permissions: "readonly" | "readwrite";
2798
+ }>, "many">>;
2799
+ }, "strip", z.ZodTypeAny, {
2800
+ id: string;
2801
+ role: "User" | "Administrator";
2802
+ email: string;
2803
+ status: "active" | "inactive";
2804
+ date_created: string;
2805
+ first_name: string;
2806
+ last_name: string;
2807
+ cluster_permissions?: {
2808
+ cluster_id: string;
2809
+ permissions: "readonly" | "readwrite";
2810
+ }[] | undefined;
2811
+ }, {
2812
+ id: string;
2813
+ role: "User" | "Administrator";
2814
+ email: string;
2815
+ status: "active" | "inactive";
2816
+ date_created: string;
2817
+ first_name: string;
2818
+ last_name: string;
2819
+ cluster_permissions?: {
2820
+ cluster_id: string;
2821
+ permissions: "readonly" | "readwrite";
2822
+ }[] | undefined;
2823
+ }>;
2824
+ export declare const zDeleteUserResponse: z.ZodObject<{
2825
+ email: z.ZodString;
2826
+ first_name: z.ZodString;
2827
+ last_name: z.ZodString;
2828
+ role: z.ZodEnum<["Administrator", "User"]>;
2829
+ status: z.ZodEnum<["active", "inactive"]>;
2830
+ id: z.ZodString;
2831
+ date_created: z.ZodString;
2832
+ cluster_permissions: z.ZodOptional<z.ZodArray<z.ZodObject<{
2833
+ cluster_id: z.ZodString;
2834
+ permissions: z.ZodEnum<["readwrite", "readonly"]>;
2835
+ }, "strip", z.ZodTypeAny, {
2836
+ cluster_id: string;
2837
+ permissions: "readonly" | "readwrite";
2838
+ }, {
2839
+ cluster_id: string;
2840
+ permissions: "readonly" | "readwrite";
2841
+ }>, "many">>;
2842
+ }, "strip", z.ZodTypeAny, {
2843
+ id: string;
2844
+ role: "User" | "Administrator";
2845
+ email: string;
2846
+ status: "active" | "inactive";
2847
+ date_created: string;
2848
+ first_name: string;
2849
+ last_name: string;
2850
+ cluster_permissions?: {
2851
+ cluster_id: string;
2852
+ permissions: "readonly" | "readwrite";
2853
+ }[] | undefined;
2854
+ }, {
2855
+ id: string;
2856
+ role: "User" | "Administrator";
2857
+ email: string;
2858
+ status: "active" | "inactive";
2859
+ date_created: string;
2860
+ first_name: string;
2861
+ last_name: string;
2862
+ cluster_permissions?: {
2863
+ cluster_id: string;
2864
+ permissions: "readonly" | "readwrite";
2865
+ }[] | undefined;
2866
+ }>;
2867
+ export declare const zGetUserResponse: z.ZodObject<{
2868
+ email: z.ZodString;
2869
+ first_name: z.ZodString;
2870
+ last_name: z.ZodString;
2871
+ role: z.ZodEnum<["Administrator", "User"]>;
2872
+ status: z.ZodEnum<["active", "inactive"]>;
2873
+ id: z.ZodString;
2874
+ date_created: z.ZodString;
2875
+ cluster_permissions: z.ZodOptional<z.ZodArray<z.ZodObject<{
2876
+ cluster_id: z.ZodString;
2877
+ permissions: z.ZodEnum<["readwrite", "readonly"]>;
2878
+ }, "strip", z.ZodTypeAny, {
2879
+ cluster_id: string;
2880
+ permissions: "readonly" | "readwrite";
2881
+ }, {
2882
+ cluster_id: string;
2883
+ permissions: "readonly" | "readwrite";
2884
+ }>, "many">>;
2885
+ }, "strip", z.ZodTypeAny, {
2886
+ id: string;
2887
+ role: "User" | "Administrator";
2888
+ email: string;
2889
+ status: "active" | "inactive";
2890
+ date_created: string;
2891
+ first_name: string;
2892
+ last_name: string;
2893
+ cluster_permissions?: {
2894
+ cluster_id: string;
2895
+ permissions: "readonly" | "readwrite";
2896
+ }[] | undefined;
2897
+ }, {
2898
+ id: string;
2899
+ role: "User" | "Administrator";
2900
+ email: string;
2901
+ status: "active" | "inactive";
2902
+ date_created: string;
2903
+ first_name: string;
2904
+ last_name: string;
2905
+ cluster_permissions?: {
2906
+ cluster_id: string;
2907
+ permissions: "readonly" | "readwrite";
2908
+ }[] | undefined;
2909
+ }>;
2910
+ export declare const zUpdateUserResponse: z.ZodObject<{
2911
+ email: z.ZodString;
2912
+ first_name: z.ZodString;
2913
+ last_name: z.ZodString;
2914
+ role: z.ZodEnum<["Administrator", "User"]>;
2915
+ status: z.ZodEnum<["active", "inactive"]>;
2916
+ id: z.ZodString;
2917
+ date_created: z.ZodString;
2918
+ cluster_permissions: z.ZodOptional<z.ZodArray<z.ZodObject<{
2919
+ cluster_id: z.ZodString;
2920
+ permissions: z.ZodEnum<["readwrite", "readonly"]>;
2921
+ }, "strip", z.ZodTypeAny, {
2922
+ cluster_id: string;
2923
+ permissions: "readonly" | "readwrite";
2924
+ }, {
2925
+ cluster_id: string;
2926
+ permissions: "readonly" | "readwrite";
2927
+ }>, "many">>;
2928
+ }, "strip", z.ZodTypeAny, {
2929
+ id: string;
2930
+ role: "User" | "Administrator";
2931
+ email: string;
2932
+ status: "active" | "inactive";
2933
+ date_created: string;
2934
+ first_name: string;
2935
+ last_name: string;
2936
+ cluster_permissions?: {
2937
+ cluster_id: string;
2938
+ permissions: "readonly" | "readwrite";
2939
+ }[] | undefined;
2940
+ }, {
2941
+ id: string;
2942
+ role: "User" | "Administrator";
2943
+ email: string;
2944
+ status: "active" | "inactive";
2945
+ date_created: string;
2946
+ first_name: string;
2947
+ last_name: string;
2948
+ cluster_permissions?: {
2949
+ cluster_id: string;
2950
+ permissions: "readonly" | "readwrite";
2951
+ }[] | undefined;
2952
+ }>;
2953
+ export declare const zDeleteClusterPermissionsResponse: z.ZodObject<{
2954
+ email: z.ZodString;
2955
+ first_name: z.ZodString;
2956
+ last_name: z.ZodString;
2957
+ role: z.ZodEnum<["Administrator", "User"]>;
2958
+ status: z.ZodEnum<["active", "inactive"]>;
2959
+ id: z.ZodString;
2960
+ date_created: z.ZodString;
2961
+ cluster_permissions: z.ZodOptional<z.ZodArray<z.ZodObject<{
2962
+ cluster_id: z.ZodString;
2963
+ permissions: z.ZodEnum<["readwrite", "readonly"]>;
2964
+ }, "strip", z.ZodTypeAny, {
2965
+ cluster_id: string;
2966
+ permissions: "readonly" | "readwrite";
2967
+ }, {
2968
+ cluster_id: string;
2969
+ permissions: "readonly" | "readwrite";
2970
+ }>, "many">>;
2971
+ }, "strip", z.ZodTypeAny, {
2972
+ id: string;
2973
+ role: "User" | "Administrator";
2974
+ email: string;
2975
+ status: "active" | "inactive";
2976
+ date_created: string;
2977
+ first_name: string;
2978
+ last_name: string;
2979
+ cluster_permissions?: {
2980
+ cluster_id: string;
2981
+ permissions: "readonly" | "readwrite";
2982
+ }[] | undefined;
2983
+ }, {
2984
+ id: string;
2985
+ role: "User" | "Administrator";
2986
+ email: string;
2987
+ status: "active" | "inactive";
2988
+ date_created: string;
2989
+ first_name: string;
2990
+ last_name: string;
2991
+ cluster_permissions?: {
2992
+ cluster_id: string;
2993
+ permissions: "readonly" | "readwrite";
2994
+ }[] | undefined;
2995
+ }>;
2996
+ export declare const zSetClusterPermissionsResponse: z.ZodObject<{
2997
+ email: z.ZodString;
2998
+ first_name: z.ZodString;
2999
+ last_name: z.ZodString;
3000
+ role: z.ZodEnum<["Administrator", "User"]>;
3001
+ status: z.ZodEnum<["active", "inactive"]>;
3002
+ id: z.ZodString;
3003
+ date_created: z.ZodString;
3004
+ cluster_permissions: z.ZodOptional<z.ZodArray<z.ZodObject<{
3005
+ cluster_id: z.ZodString;
3006
+ permissions: z.ZodEnum<["readwrite", "readonly"]>;
3007
+ }, "strip", z.ZodTypeAny, {
3008
+ cluster_id: string;
3009
+ permissions: "readonly" | "readwrite";
3010
+ }, {
3011
+ cluster_id: string;
3012
+ permissions: "readonly" | "readwrite";
3013
+ }>, "many">>;
3014
+ }, "strip", z.ZodTypeAny, {
3015
+ id: string;
3016
+ role: "User" | "Administrator";
3017
+ email: string;
3018
+ status: "active" | "inactive";
3019
+ date_created: string;
3020
+ first_name: string;
3021
+ last_name: string;
3022
+ cluster_permissions?: {
3023
+ cluster_id: string;
3024
+ permissions: "readonly" | "readwrite";
3025
+ }[] | undefined;
3026
+ }, {
3027
+ id: string;
3028
+ role: "User" | "Administrator";
3029
+ email: string;
3030
+ status: "active" | "inactive";
3031
+ date_created: string;
3032
+ first_name: string;
3033
+ last_name: string;
3034
+ cluster_permissions?: {
3035
+ cluster_id: string;
3036
+ permissions: "readonly" | "readwrite";
3037
+ }[] | undefined;
3038
+ }>;
3039
+ //# sourceMappingURL=zod.gen.d.ts.map