@cloudfleet/sdk 0.0.1-b3d7b23 → 0.0.1-b5444d4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/zod.gen.d.ts CHANGED
@@ -1,5 +1,9 @@
1
1
  import * as z from 'zod';
2
2
  export declare const zBillingContact: z.ZodObject<{
3
+ type: z.ZodEnum<{
4
+ business: "business";
5
+ personal: "personal";
6
+ }>;
3
7
  company: z.ZodOptional<z.ZodString>;
4
8
  address1: z.ZodOptional<z.ZodString>;
5
9
  address2: z.ZodOptional<z.ZodString>;
@@ -168,22 +172,7 @@ export declare const zChart: z.ZodObject<{
168
172
  name: z.ZodString;
169
173
  namespace: z.ZodString;
170
174
  chart: z.ZodString;
171
- status: z.ZodEnum<{
172
- InstallSucceeded: "InstallSucceeded";
173
- InstallFailed: "InstallFailed";
174
- UpgradeSucceeded: "UpgradeSucceeded";
175
- UpgradeFailed: "UpgradeFailed";
176
- TestSucceeded: "TestSucceeded";
177
- TestFailed: "TestFailed";
178
- RollbackSucceeded: "RollbackSucceeded";
179
- RollbackFailed: "RollbackFailed";
180
- UninstallSucceeded: "UninstallSucceeded";
181
- UninstallFailed: "UninstallFailed";
182
- ArtifactFailed: "ArtifactFailed";
183
- DependencyNotReady: "DependencyNotReady";
184
- Progressing: "Progressing";
185
- SourceNotReady: "SourceNotReady";
186
- }>;
175
+ status: z.ZodString;
187
176
  version_current: z.ZodString;
188
177
  created_at: z.ZodString;
189
178
  updated_at: z.ZodString;
@@ -199,23 +188,36 @@ export declare const zClusterCreateInput: z.ZodObject<{
199
188
  basic: "basic";
200
189
  pro: "pro";
201
190
  }>;
202
- region: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
203
- "staging-1a": "staging-1a";
204
- "northamerica-central-1": "northamerica-central-1";
205
- "europe-central-1a": "europe-central-1a";
206
- "northamerica-central-1a": "northamerica-central-1a";
207
- }>>>;
208
- version_channel: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
209
- "1.x.x-cfke.x": "1.x.x-cfke.x";
210
- "1.31.x-cfke.x": "1.31.x-cfke.x";
211
- "1.32.x-cfke.x": "1.32.x-cfke.x";
212
- "1.33.x-cfke.x": "1.33.x-cfke.x";
191
+ region: z.ZodString;
192
+ version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
193
+ release_channel: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
194
+ stable: "stable";
195
+ rapid: "rapid";
196
+ extended: "extended";
213
197
  }>>>;
198
+ features: z.ZodDefault<z.ZodOptional<z.ZodObject<{
199
+ gpu_sharing_strategy: z.ZodEnum<{
200
+ none: "none";
201
+ mps: "mps";
202
+ time_slicing: "time_slicing";
203
+ }>;
204
+ gpu_max_shared_clients_per_gpu: z.ZodInt;
205
+ cilium_socket_lb_host_namespace_only: z.ZodOptional<z.ZodBoolean>;
206
+ }, z.core.$strip>>>;
207
+ networking: z.ZodOptional<z.ZodObject<{
208
+ pod_cidr: z.ZodOptional<z.ZodString>;
209
+ service_cidr: z.ZodOptional<z.ZodString>;
210
+ cluster_dns: z.ZodOptional<z.ZodString>;
211
+ dual_stack: z.ZodOptional<z.ZodBoolean>;
212
+ pod_cidr_v6: z.ZodOptional<z.ZodString>;
213
+ service_cidr_v6: z.ZodOptional<z.ZodString>;
214
+ }, z.core.$strip>>;
214
215
  }, z.core.$strip>;
215
216
  export declare const zClusterJoinInformation: z.ZodObject<{
216
217
  certificate_authority: z.ZodString;
217
218
  endpoint: z.ZodURL;
218
219
  cluster_dns: z.ZodString;
220
+ pod_cidr: z.ZodString;
219
221
  auth_key: z.ZodString;
220
222
  bootstrap_token: z.ZodString;
221
223
  versions: z.ZodObject<{
@@ -236,17 +238,31 @@ export declare const zCluster: z.ZodObject<{
236
238
  basic: "basic";
237
239
  pro: "pro";
238
240
  }>;
239
- region: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
240
- "staging-1a": "staging-1a";
241
- "northamerica-central-1": "northamerica-central-1";
242
- "europe-central-1a": "europe-central-1a";
243
- "northamerica-central-1a": "northamerica-central-1a";
244
- }>>>;
241
+ region: z.ZodString;
242
+ networking: z.ZodOptional<z.ZodObject<{
243
+ pod_cidr: z.ZodOptional<z.ZodString>;
244
+ service_cidr: z.ZodOptional<z.ZodString>;
245
+ cluster_dns: z.ZodOptional<z.ZodString>;
246
+ dual_stack: z.ZodOptional<z.ZodBoolean>;
247
+ pod_cidr_v6: z.ZodOptional<z.ZodString>;
248
+ service_cidr_v6: z.ZodOptional<z.ZodString>;
249
+ }, z.core.$strip>>;
250
+ release_channel: z.ZodOptional<z.ZodEnum<{
251
+ stable: "stable";
252
+ rapid: "rapid";
253
+ extended: "extended";
254
+ }>>;
255
+ features: z.ZodOptional<z.ZodObject<{
256
+ gpu_sharing_strategy: z.ZodEnum<{
257
+ none: "none";
258
+ mps: "mps";
259
+ time_slicing: "time_slicing";
260
+ }>;
261
+ gpu_max_shared_clients_per_gpu: z.ZodInt;
262
+ cilium_socket_lb_host_namespace_only: z.ZodOptional<z.ZodBoolean>;
263
+ }, z.core.$strip>>;
245
264
  id: z.ZodUUID;
246
265
  status: z.ZodEnum<{
247
- deleted: "deleted";
248
- failed: "failed";
249
- active: "active";
250
266
  disabled: "disabled";
251
267
  creating: "creating";
252
268
  deployed: "deployed";
@@ -255,6 +271,9 @@ export declare const zCluster: z.ZodObject<{
255
271
  endpoint: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
256
272
  "": "";
257
273
  }>]>>;
274
+ endpoint_public: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
275
+ "": "";
276
+ }>]>>;
258
277
  certificate_ca: z.ZodOptional<z.ZodString>;
259
278
  version_current: z.ZodOptional<z.ZodString>;
260
279
  created_at: z.ZodOptional<z.ZodString>;
@@ -269,59 +288,804 @@ export declare const zClusterUpdateInput: z.ZodObject<{
269
288
  pro: "pro";
270
289
  }>;
271
290
  version_channel: z.ZodOptional<z.ZodString>;
291
+ release_channel: z.ZodOptional<z.ZodEnum<{
292
+ stable: "stable";
293
+ rapid: "rapid";
294
+ extended: "extended";
295
+ }>>;
296
+ features: z.ZodOptional<z.ZodObject<{
297
+ gpu_sharing_strategy: z.ZodEnum<{
298
+ none: "none";
299
+ mps: "mps";
300
+ time_slicing: "time_slicing";
301
+ }>;
302
+ gpu_max_shared_clients_per_gpu: z.ZodInt;
303
+ cilium_socket_lb_host_namespace_only: z.ZodOptional<z.ZodBoolean>;
304
+ }, z.core.$strip>>;
272
305
  }, z.core.$strip>;
273
306
  export declare const zFleetCreateInput: z.ZodObject<{
274
307
  limits: z.ZodOptional<z.ZodObject<{
275
- cpu: z.ZodNumber;
308
+ cpu: z.ZodOptional<z.ZodInt>;
276
309
  }, z.core.$strip>>;
277
310
  gcp: z.ZodOptional<z.ZodObject<{
278
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
279
- project: z.ZodString;
311
+ enabled: z.ZodBoolean;
312
+ project: z.ZodOptional<z.ZodString>;
280
313
  }, z.core.$strip>>;
281
314
  hetzner: z.ZodOptional<z.ZodObject<{
282
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
283
- apiKey: z.ZodString;
315
+ enabled: z.ZodBoolean;
316
+ apiKey: z.ZodOptional<z.ZodString>;
284
317
  }, z.core.$strip>>;
285
318
  aws: z.ZodOptional<z.ZodObject<{
286
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
287
- controllerRoleArn: z.ZodString;
319
+ enabled: z.ZodBoolean;
320
+ controllerRoleArn: z.ZodOptional<z.ZodString>;
321
+ }, z.core.$strip>>;
322
+ constraints: z.ZodOptional<z.ZodObject<{
323
+ 'karpenter.sh/capacity-type': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
324
+ "on-demand": "on-demand";
325
+ spot: "spot";
326
+ }>>>>;
327
+ 'kubernetes.io/arch': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
328
+ amd64: "amd64";
329
+ arm64: "arm64";
330
+ }>>>>;
331
+ 'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
332
+ p3: "p3";
333
+ cx: "cx";
334
+ h1: "h1";
335
+ h3: "h3";
336
+ a1: "a1";
337
+ a2: "a2";
338
+ a3: "a3";
339
+ a4: "a4";
340
+ c1: "c1";
341
+ c2: "c2";
342
+ c2d: "c2d";
343
+ c3: "c3";
344
+ c3d: "c3d";
345
+ c4: "c4";
346
+ c4a: "c4a";
347
+ c4d: "c4d";
348
+ c5: "c5";
349
+ c5a: "c5a";
350
+ c5ad: "c5ad";
351
+ c5d: "c5d";
352
+ c5n: "c5n";
353
+ c6a: "c6a";
354
+ c6g: "c6g";
355
+ c6gd: "c6gd";
356
+ c6gn: "c6gn";
357
+ c6i: "c6i";
358
+ c6id: "c6id";
359
+ c6in: "c6in";
360
+ c7a: "c7a";
361
+ c7g: "c7g";
362
+ c7gd: "c7gd";
363
+ c7gn: "c7gn";
364
+ c7i: "c7i";
365
+ "c7i-flex": "c7i-flex";
366
+ c8g: "c8g";
367
+ c8gd: "c8gd";
368
+ cax: "cax";
369
+ ccx: "ccx";
370
+ cpx: "cpx";
371
+ d2: "d2";
372
+ d3: "d3";
373
+ d3en: "d3en";
374
+ dl1: "dl1";
375
+ dl2q: "dl2q";
376
+ e2: "e2";
377
+ f1: "f1";
378
+ f2: "f2";
379
+ g1: "g1";
380
+ g2: "g2";
381
+ g4ad: "g4ad";
382
+ g4dn: "g4dn";
383
+ g5: "g5";
384
+ g5g: "g5g";
385
+ g6: "g6";
386
+ g6e: "g6e";
387
+ gr6: "gr6";
388
+ hpc6a: "hpc6a";
389
+ hpc6id: "hpc6id";
390
+ hpc7a: "hpc7a";
391
+ hpc7g: "hpc7g";
392
+ i2: "i2";
393
+ i3: "i3";
394
+ i3en: "i3en";
395
+ i4g: "i4g";
396
+ i4i: "i4i";
397
+ i7i: "i7i";
398
+ i7ie: "i7ie";
399
+ i8g: "i8g";
400
+ im4gn: "im4gn";
401
+ inf1: "inf1";
402
+ inf2: "inf2";
403
+ is4gen: "is4gen";
404
+ m1: "m1";
405
+ m2: "m2";
406
+ m3: "m3";
407
+ m4: "m4";
408
+ m5: "m5";
409
+ m5a: "m5a";
410
+ m5ad: "m5ad";
411
+ m5d: "m5d";
412
+ m5dn: "m5dn";
413
+ m5n: "m5n";
414
+ m5zn: "m5zn";
415
+ m6a: "m6a";
416
+ m6g: "m6g";
417
+ m6gd: "m6gd";
418
+ m6i: "m6i";
419
+ m6id: "m6id";
420
+ m6idn: "m6idn";
421
+ m6in: "m6in";
422
+ m7a: "m7a";
423
+ m7g: "m7g";
424
+ m7gd: "m7gd";
425
+ m7i: "m7i";
426
+ "m7i-flex": "m7i-flex";
427
+ m8g: "m8g";
428
+ m8gd: "m8gd";
429
+ n1: "n1";
430
+ n2: "n2";
431
+ n2d: "n2d";
432
+ n4: "n4";
433
+ p3dn: "p3dn";
434
+ p4d: "p4d";
435
+ p4de: "p4de";
436
+ p5: "p5";
437
+ p5e: "p5e";
438
+ p5en: "p5en";
439
+ "p6-b200": "p6-b200";
440
+ r3: "r3";
441
+ r4: "r4";
442
+ r5: "r5";
443
+ r5a: "r5a";
444
+ r5ad: "r5ad";
445
+ r5b: "r5b";
446
+ r5d: "r5d";
447
+ r5dn: "r5dn";
448
+ r5n: "r5n";
449
+ r6a: "r6a";
450
+ r6g: "r6g";
451
+ r6gd: "r6gd";
452
+ r6i: "r6i";
453
+ r6id: "r6id";
454
+ r6idn: "r6idn";
455
+ r6in: "r6in";
456
+ r7a: "r7a";
457
+ r7g: "r7g";
458
+ r7gd: "r7gd";
459
+ r7i: "r7i";
460
+ r7iz: "r7iz";
461
+ r8g: "r8g";
462
+ r8gd: "r8gd";
463
+ t2: "t2";
464
+ t2a: "t2a";
465
+ t2d: "t2d";
466
+ t3: "t3";
467
+ t3a: "t3a";
468
+ t4g: "t4g";
469
+ trn1: "trn1";
470
+ trn1n: "trn1n";
471
+ "u-3tb1": "u-3tb1";
472
+ "u-6tb1": "u-6tb1";
473
+ "u7i-12tb": "u7i-12tb";
474
+ "u7i-6tb": "u7i-6tb";
475
+ "u7i-8tb": "u7i-8tb";
476
+ "u7in-16tb": "u7in-16tb";
477
+ "u7in-24tb": "u7in-24tb";
478
+ "u7in-32tb": "u7in-32tb";
479
+ vt1: "vt1";
480
+ x1: "x1";
481
+ x1e: "x1e";
482
+ x2gd: "x2gd";
483
+ x2idn: "x2idn";
484
+ x2iedn: "x2iedn";
485
+ x2iezn: "x2iezn";
486
+ x4: "x4";
487
+ x8g: "x8g";
488
+ z1d: "z1d";
489
+ z3: "z3";
490
+ }>>>;
491
+ 'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
492
+ "africa-south1": "africa-south1";
493
+ "ap-northeast-1": "ap-northeast-1";
494
+ "ap-northeast-2": "ap-northeast-2";
495
+ "ap-northeast-3": "ap-northeast-3";
496
+ "ap-south-1": "ap-south-1";
497
+ "ap-southeast-1": "ap-southeast-1";
498
+ "ap-southeast-2": "ap-southeast-2";
499
+ ash: "ash";
500
+ "asia-east1": "asia-east1";
501
+ "asia-east2": "asia-east2";
502
+ "asia-northeast1": "asia-northeast1";
503
+ "asia-northeast2": "asia-northeast2";
504
+ "asia-northeast3": "asia-northeast3";
505
+ "asia-south1": "asia-south1";
506
+ "asia-south2": "asia-south2";
507
+ "asia-southeast1": "asia-southeast1";
508
+ "asia-southeast2": "asia-southeast2";
509
+ "australia-southeast1": "australia-southeast1";
510
+ "australia-southeast2": "australia-southeast2";
511
+ "ca-central-1": "ca-central-1";
512
+ "eu-central-1": "eu-central-1";
513
+ "eu-central-2": "eu-central-2";
514
+ "eu-north-1": "eu-north-1";
515
+ "eu-west-1": "eu-west-1";
516
+ "eu-west-2": "eu-west-2";
517
+ "eu-west-3": "eu-west-3";
518
+ "europe-central2": "europe-central2";
519
+ "europe-north1": "europe-north1";
520
+ "europe-southwest1": "europe-southwest1";
521
+ "europe-west1": "europe-west1";
522
+ "europe-west10": "europe-west10";
523
+ "europe-west12": "europe-west12";
524
+ "europe-west2": "europe-west2";
525
+ "europe-west3": "europe-west3";
526
+ "europe-west4": "europe-west4";
527
+ "europe-west6": "europe-west6";
528
+ "europe-west8": "europe-west8";
529
+ "europe-west9": "europe-west9";
530
+ fsn1: "fsn1";
531
+ hel1: "hel1";
532
+ hil: "hil";
533
+ "me-central1": "me-central1";
534
+ "me-central2": "me-central2";
535
+ "me-west1": "me-west1";
536
+ nbg1: "nbg1";
537
+ "northamerica-northeast1": "northamerica-northeast1";
538
+ "northamerica-northeast2": "northamerica-northeast2";
539
+ "sa-east-1": "sa-east-1";
540
+ sin: "sin";
541
+ "southamerica-east1": "southamerica-east1";
542
+ "southamerica-west1": "southamerica-west1";
543
+ "us-central1": "us-central1";
544
+ "us-east-1": "us-east-1";
545
+ "us-east-2": "us-east-2";
546
+ "us-east1": "us-east1";
547
+ "us-east4": "us-east4";
548
+ "us-east5": "us-east5";
549
+ "us-south1": "us-south1";
550
+ "us-west-1": "us-west-1";
551
+ "us-west-2": "us-west-2";
552
+ "us-west1": "us-west1";
553
+ "us-west2": "us-west2";
554
+ "us-west3": "us-west3";
555
+ "us-west4": "us-west4";
556
+ }>>>;
288
557
  }, z.core.$strip>>;
558
+ scalingProfile: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
559
+ aggressive: "aggressive";
560
+ conservative: "conservative";
561
+ }>>>;
289
562
  id: z.ZodString;
290
563
  }, z.core.$strip>;
291
564
  export declare const zFleet: z.ZodObject<{
292
565
  limits: z.ZodOptional<z.ZodObject<{
293
- cpu: z.ZodNumber;
566
+ cpu: z.ZodOptional<z.ZodInt>;
294
567
  }, z.core.$strip>>;
295
568
  gcp: z.ZodOptional<z.ZodObject<{
296
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
297
- project: z.ZodString;
569
+ enabled: z.ZodBoolean;
570
+ project: z.ZodOptional<z.ZodString>;
298
571
  }, z.core.$strip>>;
299
572
  hetzner: z.ZodOptional<z.ZodObject<{
300
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
301
- apiKey: z.ZodString;
573
+ enabled: z.ZodBoolean;
574
+ apiKey: z.ZodOptional<z.ZodString>;
302
575
  }, z.core.$strip>>;
303
576
  aws: z.ZodOptional<z.ZodObject<{
304
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
305
- controllerRoleArn: z.ZodString;
577
+ enabled: z.ZodBoolean;
578
+ controllerRoleArn: z.ZodOptional<z.ZodString>;
579
+ }, z.core.$strip>>;
580
+ constraints: z.ZodOptional<z.ZodObject<{
581
+ 'karpenter.sh/capacity-type': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
582
+ "on-demand": "on-demand";
583
+ spot: "spot";
584
+ }>>>>;
585
+ 'kubernetes.io/arch': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
586
+ amd64: "amd64";
587
+ arm64: "arm64";
588
+ }>>>>;
589
+ 'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
590
+ p3: "p3";
591
+ cx: "cx";
592
+ h1: "h1";
593
+ h3: "h3";
594
+ a1: "a1";
595
+ a2: "a2";
596
+ a3: "a3";
597
+ a4: "a4";
598
+ c1: "c1";
599
+ c2: "c2";
600
+ c2d: "c2d";
601
+ c3: "c3";
602
+ c3d: "c3d";
603
+ c4: "c4";
604
+ c4a: "c4a";
605
+ c4d: "c4d";
606
+ c5: "c5";
607
+ c5a: "c5a";
608
+ c5ad: "c5ad";
609
+ c5d: "c5d";
610
+ c5n: "c5n";
611
+ c6a: "c6a";
612
+ c6g: "c6g";
613
+ c6gd: "c6gd";
614
+ c6gn: "c6gn";
615
+ c6i: "c6i";
616
+ c6id: "c6id";
617
+ c6in: "c6in";
618
+ c7a: "c7a";
619
+ c7g: "c7g";
620
+ c7gd: "c7gd";
621
+ c7gn: "c7gn";
622
+ c7i: "c7i";
623
+ "c7i-flex": "c7i-flex";
624
+ c8g: "c8g";
625
+ c8gd: "c8gd";
626
+ cax: "cax";
627
+ ccx: "ccx";
628
+ cpx: "cpx";
629
+ d2: "d2";
630
+ d3: "d3";
631
+ d3en: "d3en";
632
+ dl1: "dl1";
633
+ dl2q: "dl2q";
634
+ e2: "e2";
635
+ f1: "f1";
636
+ f2: "f2";
637
+ g1: "g1";
638
+ g2: "g2";
639
+ g4ad: "g4ad";
640
+ g4dn: "g4dn";
641
+ g5: "g5";
642
+ g5g: "g5g";
643
+ g6: "g6";
644
+ g6e: "g6e";
645
+ gr6: "gr6";
646
+ hpc6a: "hpc6a";
647
+ hpc6id: "hpc6id";
648
+ hpc7a: "hpc7a";
649
+ hpc7g: "hpc7g";
650
+ i2: "i2";
651
+ i3: "i3";
652
+ i3en: "i3en";
653
+ i4g: "i4g";
654
+ i4i: "i4i";
655
+ i7i: "i7i";
656
+ i7ie: "i7ie";
657
+ i8g: "i8g";
658
+ im4gn: "im4gn";
659
+ inf1: "inf1";
660
+ inf2: "inf2";
661
+ is4gen: "is4gen";
662
+ m1: "m1";
663
+ m2: "m2";
664
+ m3: "m3";
665
+ m4: "m4";
666
+ m5: "m5";
667
+ m5a: "m5a";
668
+ m5ad: "m5ad";
669
+ m5d: "m5d";
670
+ m5dn: "m5dn";
671
+ m5n: "m5n";
672
+ m5zn: "m5zn";
673
+ m6a: "m6a";
674
+ m6g: "m6g";
675
+ m6gd: "m6gd";
676
+ m6i: "m6i";
677
+ m6id: "m6id";
678
+ m6idn: "m6idn";
679
+ m6in: "m6in";
680
+ m7a: "m7a";
681
+ m7g: "m7g";
682
+ m7gd: "m7gd";
683
+ m7i: "m7i";
684
+ "m7i-flex": "m7i-flex";
685
+ m8g: "m8g";
686
+ m8gd: "m8gd";
687
+ n1: "n1";
688
+ n2: "n2";
689
+ n2d: "n2d";
690
+ n4: "n4";
691
+ p3dn: "p3dn";
692
+ p4d: "p4d";
693
+ p4de: "p4de";
694
+ p5: "p5";
695
+ p5e: "p5e";
696
+ p5en: "p5en";
697
+ "p6-b200": "p6-b200";
698
+ r3: "r3";
699
+ r4: "r4";
700
+ r5: "r5";
701
+ r5a: "r5a";
702
+ r5ad: "r5ad";
703
+ r5b: "r5b";
704
+ r5d: "r5d";
705
+ r5dn: "r5dn";
706
+ r5n: "r5n";
707
+ r6a: "r6a";
708
+ r6g: "r6g";
709
+ r6gd: "r6gd";
710
+ r6i: "r6i";
711
+ r6id: "r6id";
712
+ r6idn: "r6idn";
713
+ r6in: "r6in";
714
+ r7a: "r7a";
715
+ r7g: "r7g";
716
+ r7gd: "r7gd";
717
+ r7i: "r7i";
718
+ r7iz: "r7iz";
719
+ r8g: "r8g";
720
+ r8gd: "r8gd";
721
+ t2: "t2";
722
+ t2a: "t2a";
723
+ t2d: "t2d";
724
+ t3: "t3";
725
+ t3a: "t3a";
726
+ t4g: "t4g";
727
+ trn1: "trn1";
728
+ trn1n: "trn1n";
729
+ "u-3tb1": "u-3tb1";
730
+ "u-6tb1": "u-6tb1";
731
+ "u7i-12tb": "u7i-12tb";
732
+ "u7i-6tb": "u7i-6tb";
733
+ "u7i-8tb": "u7i-8tb";
734
+ "u7in-16tb": "u7in-16tb";
735
+ "u7in-24tb": "u7in-24tb";
736
+ "u7in-32tb": "u7in-32tb";
737
+ vt1: "vt1";
738
+ x1: "x1";
739
+ x1e: "x1e";
740
+ x2gd: "x2gd";
741
+ x2idn: "x2idn";
742
+ x2iedn: "x2iedn";
743
+ x2iezn: "x2iezn";
744
+ x4: "x4";
745
+ x8g: "x8g";
746
+ z1d: "z1d";
747
+ z3: "z3";
748
+ }>>>;
749
+ 'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
750
+ "africa-south1": "africa-south1";
751
+ "ap-northeast-1": "ap-northeast-1";
752
+ "ap-northeast-2": "ap-northeast-2";
753
+ "ap-northeast-3": "ap-northeast-3";
754
+ "ap-south-1": "ap-south-1";
755
+ "ap-southeast-1": "ap-southeast-1";
756
+ "ap-southeast-2": "ap-southeast-2";
757
+ ash: "ash";
758
+ "asia-east1": "asia-east1";
759
+ "asia-east2": "asia-east2";
760
+ "asia-northeast1": "asia-northeast1";
761
+ "asia-northeast2": "asia-northeast2";
762
+ "asia-northeast3": "asia-northeast3";
763
+ "asia-south1": "asia-south1";
764
+ "asia-south2": "asia-south2";
765
+ "asia-southeast1": "asia-southeast1";
766
+ "asia-southeast2": "asia-southeast2";
767
+ "australia-southeast1": "australia-southeast1";
768
+ "australia-southeast2": "australia-southeast2";
769
+ "ca-central-1": "ca-central-1";
770
+ "eu-central-1": "eu-central-1";
771
+ "eu-central-2": "eu-central-2";
772
+ "eu-north-1": "eu-north-1";
773
+ "eu-west-1": "eu-west-1";
774
+ "eu-west-2": "eu-west-2";
775
+ "eu-west-3": "eu-west-3";
776
+ "europe-central2": "europe-central2";
777
+ "europe-north1": "europe-north1";
778
+ "europe-southwest1": "europe-southwest1";
779
+ "europe-west1": "europe-west1";
780
+ "europe-west10": "europe-west10";
781
+ "europe-west12": "europe-west12";
782
+ "europe-west2": "europe-west2";
783
+ "europe-west3": "europe-west3";
784
+ "europe-west4": "europe-west4";
785
+ "europe-west6": "europe-west6";
786
+ "europe-west8": "europe-west8";
787
+ "europe-west9": "europe-west9";
788
+ fsn1: "fsn1";
789
+ hel1: "hel1";
790
+ hil: "hil";
791
+ "me-central1": "me-central1";
792
+ "me-central2": "me-central2";
793
+ "me-west1": "me-west1";
794
+ nbg1: "nbg1";
795
+ "northamerica-northeast1": "northamerica-northeast1";
796
+ "northamerica-northeast2": "northamerica-northeast2";
797
+ "sa-east-1": "sa-east-1";
798
+ sin: "sin";
799
+ "southamerica-east1": "southamerica-east1";
800
+ "southamerica-west1": "southamerica-west1";
801
+ "us-central1": "us-central1";
802
+ "us-east-1": "us-east-1";
803
+ "us-east-2": "us-east-2";
804
+ "us-east1": "us-east1";
805
+ "us-east4": "us-east4";
806
+ "us-east5": "us-east5";
807
+ "us-south1": "us-south1";
808
+ "us-west-1": "us-west-1";
809
+ "us-west-2": "us-west-2";
810
+ "us-west1": "us-west1";
811
+ "us-west2": "us-west2";
812
+ "us-west3": "us-west3";
813
+ "us-west4": "us-west4";
814
+ }>>>;
306
815
  }, z.core.$strip>>;
816
+ scalingProfile: z.ZodDefault<z.ZodEnum<{
817
+ aggressive: "aggressive";
818
+ conservative: "conservative";
819
+ }>>;
307
820
  id: z.ZodString;
821
+ ready: z.ZodBoolean;
822
+ status_message: z.ZodOptional<z.ZodString>;
823
+ created_at: z.ZodString;
824
+ updated_at: z.ZodString;
308
825
  }, z.core.$strip>;
309
826
  export declare const zFleetUpdateInput: z.ZodObject<{
310
827
  limits: z.ZodOptional<z.ZodObject<{
311
- cpu: z.ZodNumber;
828
+ cpu: z.ZodOptional<z.ZodInt>;
312
829
  }, z.core.$strip>>;
313
830
  gcp: z.ZodOptional<z.ZodObject<{
314
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
315
- project: z.ZodString;
831
+ enabled: z.ZodBoolean;
832
+ project: z.ZodOptional<z.ZodString>;
316
833
  }, z.core.$strip>>;
317
834
  hetzner: z.ZodOptional<z.ZodObject<{
318
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
319
- apiKey: z.ZodString;
835
+ enabled: z.ZodBoolean;
836
+ apiKey: z.ZodOptional<z.ZodString>;
320
837
  }, z.core.$strip>>;
321
838
  aws: z.ZodOptional<z.ZodObject<{
322
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
323
- controllerRoleArn: z.ZodString;
839
+ enabled: z.ZodBoolean;
840
+ controllerRoleArn: z.ZodOptional<z.ZodString>;
324
841
  }, z.core.$strip>>;
842
+ constraints: z.ZodOptional<z.ZodObject<{
843
+ 'karpenter.sh/capacity-type': z.ZodOptional<z.ZodArray<z.ZodEnum<{
844
+ "on-demand": "on-demand";
845
+ spot: "spot";
846
+ }>>>;
847
+ 'kubernetes.io/arch': z.ZodOptional<z.ZodArray<z.ZodEnum<{
848
+ amd64: "amd64";
849
+ arm64: "arm64";
850
+ }>>>;
851
+ 'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
852
+ p3: "p3";
853
+ cx: "cx";
854
+ h1: "h1";
855
+ h3: "h3";
856
+ a1: "a1";
857
+ a2: "a2";
858
+ a3: "a3";
859
+ a4: "a4";
860
+ c1: "c1";
861
+ c2: "c2";
862
+ c2d: "c2d";
863
+ c3: "c3";
864
+ c3d: "c3d";
865
+ c4: "c4";
866
+ c4a: "c4a";
867
+ c4d: "c4d";
868
+ c5: "c5";
869
+ c5a: "c5a";
870
+ c5ad: "c5ad";
871
+ c5d: "c5d";
872
+ c5n: "c5n";
873
+ c6a: "c6a";
874
+ c6g: "c6g";
875
+ c6gd: "c6gd";
876
+ c6gn: "c6gn";
877
+ c6i: "c6i";
878
+ c6id: "c6id";
879
+ c6in: "c6in";
880
+ c7a: "c7a";
881
+ c7g: "c7g";
882
+ c7gd: "c7gd";
883
+ c7gn: "c7gn";
884
+ c7i: "c7i";
885
+ "c7i-flex": "c7i-flex";
886
+ c8g: "c8g";
887
+ c8gd: "c8gd";
888
+ cax: "cax";
889
+ ccx: "ccx";
890
+ cpx: "cpx";
891
+ d2: "d2";
892
+ d3: "d3";
893
+ d3en: "d3en";
894
+ dl1: "dl1";
895
+ dl2q: "dl2q";
896
+ e2: "e2";
897
+ f1: "f1";
898
+ f2: "f2";
899
+ g1: "g1";
900
+ g2: "g2";
901
+ g4ad: "g4ad";
902
+ g4dn: "g4dn";
903
+ g5: "g5";
904
+ g5g: "g5g";
905
+ g6: "g6";
906
+ g6e: "g6e";
907
+ gr6: "gr6";
908
+ hpc6a: "hpc6a";
909
+ hpc6id: "hpc6id";
910
+ hpc7a: "hpc7a";
911
+ hpc7g: "hpc7g";
912
+ i2: "i2";
913
+ i3: "i3";
914
+ i3en: "i3en";
915
+ i4g: "i4g";
916
+ i4i: "i4i";
917
+ i7i: "i7i";
918
+ i7ie: "i7ie";
919
+ i8g: "i8g";
920
+ im4gn: "im4gn";
921
+ inf1: "inf1";
922
+ inf2: "inf2";
923
+ is4gen: "is4gen";
924
+ m1: "m1";
925
+ m2: "m2";
926
+ m3: "m3";
927
+ m4: "m4";
928
+ m5: "m5";
929
+ m5a: "m5a";
930
+ m5ad: "m5ad";
931
+ m5d: "m5d";
932
+ m5dn: "m5dn";
933
+ m5n: "m5n";
934
+ m5zn: "m5zn";
935
+ m6a: "m6a";
936
+ m6g: "m6g";
937
+ m6gd: "m6gd";
938
+ m6i: "m6i";
939
+ m6id: "m6id";
940
+ m6idn: "m6idn";
941
+ m6in: "m6in";
942
+ m7a: "m7a";
943
+ m7g: "m7g";
944
+ m7gd: "m7gd";
945
+ m7i: "m7i";
946
+ "m7i-flex": "m7i-flex";
947
+ m8g: "m8g";
948
+ m8gd: "m8gd";
949
+ n1: "n1";
950
+ n2: "n2";
951
+ n2d: "n2d";
952
+ n4: "n4";
953
+ p3dn: "p3dn";
954
+ p4d: "p4d";
955
+ p4de: "p4de";
956
+ p5: "p5";
957
+ p5e: "p5e";
958
+ p5en: "p5en";
959
+ "p6-b200": "p6-b200";
960
+ r3: "r3";
961
+ r4: "r4";
962
+ r5: "r5";
963
+ r5a: "r5a";
964
+ r5ad: "r5ad";
965
+ r5b: "r5b";
966
+ r5d: "r5d";
967
+ r5dn: "r5dn";
968
+ r5n: "r5n";
969
+ r6a: "r6a";
970
+ r6g: "r6g";
971
+ r6gd: "r6gd";
972
+ r6i: "r6i";
973
+ r6id: "r6id";
974
+ r6idn: "r6idn";
975
+ r6in: "r6in";
976
+ r7a: "r7a";
977
+ r7g: "r7g";
978
+ r7gd: "r7gd";
979
+ r7i: "r7i";
980
+ r7iz: "r7iz";
981
+ r8g: "r8g";
982
+ r8gd: "r8gd";
983
+ t2: "t2";
984
+ t2a: "t2a";
985
+ t2d: "t2d";
986
+ t3: "t3";
987
+ t3a: "t3a";
988
+ t4g: "t4g";
989
+ trn1: "trn1";
990
+ trn1n: "trn1n";
991
+ "u-3tb1": "u-3tb1";
992
+ "u-6tb1": "u-6tb1";
993
+ "u7i-12tb": "u7i-12tb";
994
+ "u7i-6tb": "u7i-6tb";
995
+ "u7i-8tb": "u7i-8tb";
996
+ "u7in-16tb": "u7in-16tb";
997
+ "u7in-24tb": "u7in-24tb";
998
+ "u7in-32tb": "u7in-32tb";
999
+ vt1: "vt1";
1000
+ x1: "x1";
1001
+ x1e: "x1e";
1002
+ x2gd: "x2gd";
1003
+ x2idn: "x2idn";
1004
+ x2iedn: "x2iedn";
1005
+ x2iezn: "x2iezn";
1006
+ x4: "x4";
1007
+ x8g: "x8g";
1008
+ z1d: "z1d";
1009
+ z3: "z3";
1010
+ }>>>;
1011
+ 'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
1012
+ "africa-south1": "africa-south1";
1013
+ "ap-northeast-1": "ap-northeast-1";
1014
+ "ap-northeast-2": "ap-northeast-2";
1015
+ "ap-northeast-3": "ap-northeast-3";
1016
+ "ap-south-1": "ap-south-1";
1017
+ "ap-southeast-1": "ap-southeast-1";
1018
+ "ap-southeast-2": "ap-southeast-2";
1019
+ ash: "ash";
1020
+ "asia-east1": "asia-east1";
1021
+ "asia-east2": "asia-east2";
1022
+ "asia-northeast1": "asia-northeast1";
1023
+ "asia-northeast2": "asia-northeast2";
1024
+ "asia-northeast3": "asia-northeast3";
1025
+ "asia-south1": "asia-south1";
1026
+ "asia-south2": "asia-south2";
1027
+ "asia-southeast1": "asia-southeast1";
1028
+ "asia-southeast2": "asia-southeast2";
1029
+ "australia-southeast1": "australia-southeast1";
1030
+ "australia-southeast2": "australia-southeast2";
1031
+ "ca-central-1": "ca-central-1";
1032
+ "eu-central-1": "eu-central-1";
1033
+ "eu-central-2": "eu-central-2";
1034
+ "eu-north-1": "eu-north-1";
1035
+ "eu-west-1": "eu-west-1";
1036
+ "eu-west-2": "eu-west-2";
1037
+ "eu-west-3": "eu-west-3";
1038
+ "europe-central2": "europe-central2";
1039
+ "europe-north1": "europe-north1";
1040
+ "europe-southwest1": "europe-southwest1";
1041
+ "europe-west1": "europe-west1";
1042
+ "europe-west10": "europe-west10";
1043
+ "europe-west12": "europe-west12";
1044
+ "europe-west2": "europe-west2";
1045
+ "europe-west3": "europe-west3";
1046
+ "europe-west4": "europe-west4";
1047
+ "europe-west6": "europe-west6";
1048
+ "europe-west8": "europe-west8";
1049
+ "europe-west9": "europe-west9";
1050
+ fsn1: "fsn1";
1051
+ hel1: "hel1";
1052
+ hil: "hil";
1053
+ "me-central1": "me-central1";
1054
+ "me-central2": "me-central2";
1055
+ "me-west1": "me-west1";
1056
+ nbg1: "nbg1";
1057
+ "northamerica-northeast1": "northamerica-northeast1";
1058
+ "northamerica-northeast2": "northamerica-northeast2";
1059
+ "sa-east-1": "sa-east-1";
1060
+ sin: "sin";
1061
+ "southamerica-east1": "southamerica-east1";
1062
+ "southamerica-west1": "southamerica-west1";
1063
+ "us-central1": "us-central1";
1064
+ "us-east-1": "us-east-1";
1065
+ "us-east-2": "us-east-2";
1066
+ "us-east1": "us-east1";
1067
+ "us-east4": "us-east4";
1068
+ "us-east5": "us-east5";
1069
+ "us-south1": "us-south1";
1070
+ "us-west-1": "us-west-1";
1071
+ "us-west-2": "us-west-2";
1072
+ "us-west1": "us-west1";
1073
+ "us-west2": "us-west2";
1074
+ "us-west3": "us-west3";
1075
+ "us-west4": "us-west4";
1076
+ }>>>;
1077
+ }, z.core.$strip>>;
1078
+ scalingProfile: z.ZodEnum<{
1079
+ aggressive: "aggressive";
1080
+ conservative: "conservative";
1081
+ }>;
1082
+ }, z.core.$strip>;
1083
+ export declare const zInviteCreateInput: z.ZodObject<{
1084
+ email: z.ZodEmail;
1085
+ role: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
1086
+ Administrator: "Administrator";
1087
+ User: "User";
1088
+ }>>>;
325
1089
  }, z.core.$strip>;
326
1090
  export declare const zInvite: z.ZodObject<{
327
1091
  id: z.ZodOptional<z.ZodString>;
@@ -329,6 +1093,10 @@ export declare const zInvite: z.ZodObject<{
329
1093
  date_created: z.ZodISODateTime;
330
1094
  email: z.ZodOptional<z.ZodEmail>;
331
1095
  code: z.ZodOptional<z.ZodString>;
1096
+ role: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
1097
+ Administrator: "Administrator";
1098
+ User: "User";
1099
+ }>>>;
332
1100
  }, z.core.$strip>;
333
1101
  export declare const zInvoice: z.ZodObject<{
334
1102
  id: z.ZodOptional<z.ZodString>;
@@ -368,15 +1136,26 @@ export declare const zMarketplaceListing: z.ZodObject<{
368
1136
  }, z.core.$strip>>;
369
1137
  }, z.core.$strip>;
370
1138
  export declare const zOrganizationCreateInput: z.ZodObject<{
1139
+ type: z.ZodEnum<{
1140
+ business: "business";
1141
+ personal: "personal";
1142
+ }>;
371
1143
  email: z.ZodEmail;
372
1144
  first_name: z.ZodString;
373
1145
  last_name: z.ZodString;
374
1146
  company_name: z.ZodString;
375
1147
  password: z.ZodString;
376
1148
  }, z.core.$strip>;
1149
+ export declare const zOrganizationCreateOutput: z.ZodObject<{
1150
+ id: z.ZodString;
1151
+ }, z.core.$strip>;
377
1152
  export declare const zOrganization: z.ZodObject<{
378
1153
  id: z.ZodUUID;
379
1154
  name: z.ZodOptional<z.ZodString>;
1155
+ type: z.ZodEnum<{
1156
+ business: "business";
1157
+ personal: "personal";
1158
+ }>;
380
1159
  date_created: z.ZodISODateTime;
381
1160
  quota: z.ZodObject<{
382
1161
  basic_clusters_max: z.ZodInt;
@@ -397,27 +1176,27 @@ export declare const zOrganization: z.ZodObject<{
397
1176
  closed: "closed";
398
1177
  suspended: "suspended";
399
1178
  }>;
1179
+ verification: z.ZodEnum<{
1180
+ none: "none";
1181
+ submitted: "submitted";
1182
+ verified: "verified";
1183
+ }>;
400
1184
  }, z.core.$strip>;
401
1185
  export declare const zPaymentMethod: z.ZodObject<{
402
- id: z.ZodUUID;
403
- setup: z.ZodBoolean;
1186
+ id: z.ZodString;
404
1187
  type: z.ZodEnum<{
405
1188
  card: "card";
1189
+ sepa_debit: "sepa_debit";
1190
+ bank_transfer: "bank_transfer";
406
1191
  }>;
407
1192
  last4: z.ZodString;
408
1193
  exp_month: z.ZodInt;
409
1194
  exp_year: z.ZodInt;
410
- brand: z.ZodEnum<{
411
- unknown: "unknown";
412
- amex: "amex";
413
- diners: "diners";
414
- discover: "discover";
415
- eftpos_au: "eftpos_au";
416
- jcb: "jcb";
417
- mastercard: "mastercard";
418
- unionpay: "unionpay";
419
- visa: "visa";
420
- }>;
1195
+ brand: z.ZodString;
1196
+ iban: z.ZodString;
1197
+ bic: z.ZodString;
1198
+ account_holder_name: z.ZodString;
1199
+ is_default: z.ZodBoolean;
421
1200
  }, z.core.$strip>;
422
1201
  export declare const zPlatformQuota: z.ZodObject<{
423
1202
  basic_clusters_max: z.ZodInt;
@@ -640,16 +1419,49 @@ export declare const zUserCreateInput: z.ZodObject<{
640
1419
  last_name: z.ZodString;
641
1420
  code: z.ZodString;
642
1421
  password: z.ZodString;
643
- status: z.ZodOptional<z.ZodEnum<{
1422
+ }, z.core.$strip>;
1423
+ export declare const zUser: z.ZodObject<{
1424
+ email: z.ZodEmail;
1425
+ first_name: z.ZodString;
1426
+ last_name: z.ZodString;
1427
+ role: z.ZodEnum<{
1428
+ Administrator: "Administrator";
1429
+ User: "User";
1430
+ }>;
1431
+ status: z.ZodEnum<{
644
1432
  active: "active";
645
1433
  inactive: "inactive";
646
- }>>;
1434
+ }>;
1435
+ id: z.ZodUUID;
1436
+ date_created: z.ZodISODateTime;
1437
+ }, z.core.$strip>;
1438
+ export declare const zUserUpdateInput: z.ZodObject<{
1439
+ email: z.ZodOptional<z.ZodEmail>;
1440
+ first_name: z.ZodOptional<z.ZodString>;
1441
+ last_name: z.ZodOptional<z.ZodString>;
647
1442
  role: z.ZodOptional<z.ZodEnum<{
648
1443
  Administrator: "Administrator";
649
1444
  User: "User";
650
1445
  }>>;
1446
+ status: z.ZodOptional<z.ZodEnum<{
1447
+ active: "active";
1448
+ inactive: "inactive";
1449
+ }>>;
651
1450
  }, z.core.$strip>;
652
- export declare const zUser: z.ZodObject<{
1451
+ export declare const zListUserOrganizationsPath: z.ZodObject<{
1452
+ email: z.ZodString;
1453
+ }, z.core.$strip>;
1454
+ /**
1455
+ * An array of organizations the user belongs to.
1456
+ */
1457
+ export declare const zListUserOrganizationsResponse: z.ZodArray<z.ZodObject<{
1458
+ realm: z.ZodOptional<z.ZodString>;
1459
+ displayName: z.ZodOptional<z.ZodString>;
1460
+ }, z.core.$strip>>;
1461
+ /**
1462
+ * An array of users
1463
+ */
1464
+ export declare const zListUsersResponse: z.ZodArray<z.ZodObject<{
653
1465
  email: z.ZodEmail;
654
1466
  first_name: z.ZodString;
655
1467
  last_name: z.ZodString;
@@ -663,8 +1475,75 @@ export declare const zUser: z.ZodObject<{
663
1475
  }>;
664
1476
  id: z.ZodUUID;
665
1477
  date_created: z.ZodISODateTime;
1478
+ }, z.core.$strip>>;
1479
+ export declare const zCreateUserBody: z.ZodObject<{
1480
+ email: z.ZodEmail;
1481
+ first_name: z.ZodString;
1482
+ last_name: z.ZodString;
1483
+ code: z.ZodString;
1484
+ password: z.ZodString;
666
1485
  }, z.core.$strip>;
667
- export declare const zUserUpdateInput: z.ZodObject<{
1486
+ /**
1487
+ * Successfully created. Returns created user details.
1488
+ */
1489
+ export declare const zCreateUserResponse: z.ZodObject<{
1490
+ email: z.ZodEmail;
1491
+ first_name: z.ZodString;
1492
+ last_name: z.ZodString;
1493
+ role: z.ZodEnum<{
1494
+ Administrator: "Administrator";
1495
+ User: "User";
1496
+ }>;
1497
+ status: z.ZodEnum<{
1498
+ active: "active";
1499
+ inactive: "inactive";
1500
+ }>;
1501
+ id: z.ZodUUID;
1502
+ date_created: z.ZodISODateTime;
1503
+ }, z.core.$strip>;
1504
+ export declare const zDeleteUserPath: z.ZodObject<{
1505
+ user_id: z.ZodString;
1506
+ }, z.core.$strip>;
1507
+ /**
1508
+ * User profile information
1509
+ */
1510
+ export declare const zDeleteUserResponse: z.ZodObject<{
1511
+ email: z.ZodEmail;
1512
+ first_name: z.ZodString;
1513
+ last_name: z.ZodString;
1514
+ role: z.ZodEnum<{
1515
+ Administrator: "Administrator";
1516
+ User: "User";
1517
+ }>;
1518
+ status: z.ZodEnum<{
1519
+ active: "active";
1520
+ inactive: "inactive";
1521
+ }>;
1522
+ id: z.ZodUUID;
1523
+ date_created: z.ZodISODateTime;
1524
+ }, z.core.$strip>;
1525
+ export declare const zGetUserPath: z.ZodObject<{
1526
+ user_id: z.ZodString;
1527
+ }, z.core.$strip>;
1528
+ /**
1529
+ * User profile information
1530
+ */
1531
+ export declare const zGetUserResponse: z.ZodObject<{
1532
+ email: z.ZodEmail;
1533
+ first_name: z.ZodString;
1534
+ last_name: z.ZodString;
1535
+ role: z.ZodEnum<{
1536
+ Administrator: "Administrator";
1537
+ User: "User";
1538
+ }>;
1539
+ status: z.ZodEnum<{
1540
+ active: "active";
1541
+ inactive: "inactive";
1542
+ }>;
1543
+ id: z.ZodUUID;
1544
+ date_created: z.ZodISODateTime;
1545
+ }, z.core.$strip>;
1546
+ export declare const zUpdateUserBody: z.ZodObject<{
668
1547
  email: z.ZodOptional<z.ZodEmail>;
669
1548
  first_name: z.ZodOptional<z.ZodString>;
670
1549
  last_name: z.ZodOptional<z.ZodString>;
@@ -677,630 +1556,544 @@ export declare const zUserUpdateInput: z.ZodObject<{
677
1556
  inactive: "inactive";
678
1557
  }>>;
679
1558
  }, z.core.$strip>;
680
- export declare const zGetUsageQuery: z.ZodObject<{
681
- granularity: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
682
- hourly: "hourly";
683
- daily: "daily";
684
- monthly: "monthly";
685
- }>>>;
1559
+ export declare const zUpdateUserPath: z.ZodObject<{
1560
+ user_id: z.ZodString;
686
1561
  }, z.core.$strip>;
687
1562
  /**
688
- * Usage data with facets for filtering
1563
+ * Successfully created. Returns created user details.
689
1564
  */
690
- export declare const zGetUsageResponse: z.ZodObject<{
691
- data: z.ZodArray<z.ZodObject<{
692
- hour: z.ZodString;
693
- cluster_id: z.ZodString;
694
- product: z.ZodString;
695
- value: z.ZodNumber;
696
- price: z.ZodNumber;
697
- total: z.ZodNumber;
698
- }, z.core.$strip>>;
699
- facets: z.ZodObject<{
700
- cluster_id: z.ZodOptional<z.ZodArray<z.ZodString>>;
701
- product: z.ZodOptional<z.ZodArray<z.ZodString>>;
702
- }, z.core.$strip>;
1565
+ export declare const zUpdateUserResponse: z.ZodObject<{
1566
+ email: z.ZodEmail;
1567
+ first_name: z.ZodString;
1568
+ last_name: z.ZodString;
1569
+ role: z.ZodEnum<{
1570
+ Administrator: "Administrator";
1571
+ User: "User";
1572
+ }>;
1573
+ status: z.ZodEnum<{
1574
+ active: "active";
1575
+ inactive: "inactive";
1576
+ }>;
1577
+ id: z.ZodUUID;
1578
+ date_created: z.ZodISODateTime;
703
1579
  }, z.core.$strip>;
704
1580
  /**
705
- * Redacted payment card information.
1581
+ * Returns a list of access token details with masked secrets.
706
1582
  */
707
- export declare const zGetPaymentMethodResponse: z.ZodObject<{
708
- id: z.ZodUUID;
709
- setup: z.ZodBoolean;
710
- type: z.ZodEnum<{
711
- card: "card";
1583
+ export declare const zListTokensResponse: z.ZodArray<z.ZodObject<{
1584
+ name: z.ZodString;
1585
+ role: z.ZodEnum<{
1586
+ Administrator: "Administrator";
1587
+ User: "User";
712
1588
  }>;
713
- last4: z.ZodString;
714
- exp_month: z.ZodInt;
715
- exp_year: z.ZodInt;
716
- brand: z.ZodEnum<{
717
- unknown: "unknown";
718
- amex: "amex";
719
- diners: "diners";
720
- discover: "discover";
721
- eftpos_au: "eftpos_au";
722
- jcb: "jcb";
723
- mastercard: "mastercard";
724
- unionpay: "unionpay";
725
- visa: "visa";
1589
+ id: z.ZodOptional<z.ZodString>;
1590
+ secret: z.ZodOptional<z.ZodString>;
1591
+ date_created: z.ZodISODateTime;
1592
+ }, z.core.$strip>>;
1593
+ export declare const zCreateTokenBody: z.ZodObject<{
1594
+ name: z.ZodString;
1595
+ role: z.ZodEnum<{
1596
+ Administrator: "Administrator";
1597
+ User: "User";
726
1598
  }>;
727
1599
  }, z.core.$strip>;
728
1600
  /**
729
- * The client secret. Used for client-side retrieval using a publishable key. The client secret can be used to complete a payment from your frontend. It should not be stored, logged, or exposed to anyone other than the customer. Make sure that you have TLS enabled on any page that includes the client secret.
730
- *
1601
+ * Successfully created. Returns created token details with unmasked/raw secret.
731
1602
  */
732
- export declare const zGetPaymentMethodSecretResponse: z.ZodObject<{
1603
+ export declare const zCreateTokenResponse: z.ZodObject<{
1604
+ name: z.ZodString;
1605
+ role: z.ZodEnum<{
1606
+ Administrator: "Administrator";
1607
+ User: "User";
1608
+ }>;
733
1609
  id: z.ZodOptional<z.ZodString>;
1610
+ secret: z.ZodOptional<z.ZodString>;
1611
+ date_created: z.ZodISODateTime;
1612
+ }, z.core.$strip>;
1613
+ export declare const zDeleteTokenPath: z.ZodObject<{
1614
+ token_id: z.ZodString;
1615
+ }, z.core.$strip>;
1616
+ export declare const zGetTokenPath: z.ZodObject<{
1617
+ token_id: z.ZodString;
734
1618
  }, z.core.$strip>;
735
1619
  /**
736
- * An array of usage records.
1620
+ * Returns access token details with masked secret.
737
1621
  */
738
- export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
1622
+ export declare const zGetTokenResponse: z.ZodObject<{
1623
+ name: z.ZodString;
1624
+ role: z.ZodEnum<{
1625
+ Administrator: "Administrator";
1626
+ User: "User";
1627
+ }>;
739
1628
  id: z.ZodOptional<z.ZodString>;
740
- number: z.ZodOptional<z.ZodString>;
741
- status: z.ZodOptional<z.ZodString>;
742
- total: z.ZodOptional<z.ZodNumber>;
743
- currency: z.ZodOptional<z.ZodString>;
744
- created: z.ZodISODateTime;
745
- period_start: z.ZodISODateTime;
746
- period_end: z.ZodISODateTime;
747
- invoice_pdf: z.ZodOptional<z.ZodString>;
748
- }, z.core.$strip>>;
749
- /**
750
- * Returns a single object containing organization contact and billing address details.
751
- */
752
- export declare const zGetContactResponse: z.ZodObject<{
753
- company: z.ZodOptional<z.ZodString>;
754
- address1: z.ZodOptional<z.ZodString>;
755
- address2: z.ZodOptional<z.ZodString>;
756
- postalCode: z.ZodOptional<z.ZodString>;
757
- city: z.ZodOptional<z.ZodString>;
758
- state: z.ZodOptional<z.ZodString>;
759
- country: z.ZodOptional<z.ZodString>;
760
- phone: z.ZodOptional<z.ZodString>;
761
- email: z.ZodEmail;
762
- individual_name: z.ZodString;
763
- tax_id: z.ZodOptional<z.ZodString>;
764
- tax_id_type: z.ZodOptional<z.ZodEnum<{
765
- "": "";
766
- ad_nrt: "ad_nrt";
767
- ae_trn: "ae_trn";
768
- al_tin: "al_tin";
769
- am_tin: "am_tin";
770
- ao_tin: "ao_tin";
771
- ar_cuit: "ar_cuit";
772
- at_vat: "at_vat";
773
- au_abn: "au_abn";
774
- au_arn: "au_arn";
775
- ba_tin: "ba_tin";
776
- bb_tin: "bb_tin";
777
- be_vat: "be_vat";
778
- bg_uic: "bg_uic";
779
- bg_vat: "bg_vat";
780
- bh_vat: "bh_vat";
781
- bo_tin: "bo_tin";
782
- br_cnpj: "br_cnpj";
783
- br_cpf: "br_cpf";
784
- bs_tin: "bs_tin";
785
- by_tin: "by_tin";
786
- ca_bn: "ca_bn";
787
- ca_gst_hst: "ca_gst_hst";
788
- ca_pst_bc: "ca_pst_bc";
789
- ca_pst_mb: "ca_pst_mb";
790
- ca_pst_sk: "ca_pst_sk";
791
- ca_qst: "ca_qst";
792
- cd_nif: "cd_nif";
793
- ch_uid: "ch_uid";
794
- ch_vat: "ch_vat";
795
- cl_tin: "cl_tin";
796
- cn_tin: "cn_tin";
797
- co_nit: "co_nit";
798
- cr_tin: "cr_tin";
799
- cy_vat: "cy_vat";
800
- cz_vat: "cz_vat";
801
- de_stn: "de_stn";
802
- de_vat: "de_vat";
803
- dk_vat: "dk_vat";
804
- do_rcn: "do_rcn";
805
- ec_ruc: "ec_ruc";
806
- ee_vat: "ee_vat";
807
- eg_tin: "eg_tin";
808
- es_cif: "es_cif";
809
- es_vat: "es_vat";
810
- eu_oss_vat: "eu_oss_vat";
811
- fi_vat: "fi_vat";
812
- fr_vat: "fr_vat";
813
- gb_vat: "gb_vat";
814
- ge_vat: "ge_vat";
815
- gn_nif: "gn_nif";
816
- gr_vat: "gr_vat";
817
- hk_br: "hk_br";
818
- hr_oib: "hr_oib";
819
- hr_vat: "hr_vat";
820
- hu_tin: "hu_tin";
821
- hu_vat: "hu_vat";
822
- id_npwp: "id_npwp";
823
- ie_vat: "ie_vat";
824
- il_vat: "il_vat";
825
- in_gst: "in_gst";
826
- is_vat: "is_vat";
827
- it_vat: "it_vat";
828
- jp_cn: "jp_cn";
829
- jp_rn: "jp_rn";
830
- jp_trn: "jp_trn";
831
- ke_pin: "ke_pin";
832
- kh_tin: "kh_tin";
833
- kr_brn: "kr_brn";
834
- kz_bin: "kz_bin";
835
- li_uid: "li_uid";
836
- li_vat: "li_vat";
837
- lt_vat: "lt_vat";
838
- lu_vat: "lu_vat";
839
- lv_vat: "lv_vat";
840
- ma_vat: "ma_vat";
841
- md_vat: "md_vat";
842
- me_pib: "me_pib";
843
- mk_vat: "mk_vat";
844
- mr_nif: "mr_nif";
845
- mt_vat: "mt_vat";
846
- mx_rfc: "mx_rfc";
847
- my_frp: "my_frp";
848
- my_itn: "my_itn";
849
- my_sst: "my_sst";
850
- ng_tin: "ng_tin";
851
- nl_vat: "nl_vat";
852
- no_vat: "no_vat";
853
- no_voec: "no_voec";
854
- np_pan: "np_pan";
855
- nz_gst: "nz_gst";
856
- om_vat: "om_vat";
857
- pe_ruc: "pe_ruc";
858
- ph_tin: "ph_tin";
859
- pl_vat: "pl_vat";
860
- pt_vat: "pt_vat";
861
- ro_tin: "ro_tin";
862
- ro_vat: "ro_vat";
863
- rs_pib: "rs_pib";
864
- ru_inn: "ru_inn";
865
- ru_kpp: "ru_kpp";
866
- sa_vat: "sa_vat";
867
- se_vat: "se_vat";
868
- sg_gst: "sg_gst";
869
- sg_uen: "sg_uen";
870
- si_tin: "si_tin";
871
- si_vat: "si_vat";
872
- sk_vat: "sk_vat";
873
- sn_ninea: "sn_ninea";
874
- sr_fin: "sr_fin";
875
- sv_nit: "sv_nit";
876
- th_vat: "th_vat";
877
- tj_tin: "tj_tin";
878
- tr_tin: "tr_tin";
879
- tw_vat: "tw_vat";
880
- tz_vat: "tz_vat";
881
- ua_vat: "ua_vat";
882
- ug_tin: "ug_tin";
883
- us_ein: "us_ein";
884
- uy_ruc: "uy_ruc";
885
- uz_tin: "uz_tin";
886
- uz_vat: "uz_vat";
887
- ve_rif: "ve_rif";
888
- vn_tin: "vn_tin";
889
- xi_vat: "xi_vat";
890
- za_vat: "za_vat";
891
- zm_tin: "zm_tin";
892
- zw_tin: "zw_tin";
893
- }>>;
1629
+ secret: z.ZodOptional<z.ZodString>;
1630
+ date_created: z.ZodISODateTime;
894
1631
  }, z.core.$strip>;
895
- export declare const zUpdateContactBody: z.ZodObject<{
896
- company: z.ZodOptional<z.ZodString>;
897
- address1: z.ZodOptional<z.ZodString>;
898
- address2: z.ZodOptional<z.ZodString>;
899
- postalCode: z.ZodOptional<z.ZodString>;
900
- city: z.ZodOptional<z.ZodString>;
901
- state: z.ZodOptional<z.ZodString>;
902
- country: z.ZodOptional<z.ZodString>;
903
- phone: z.ZodOptional<z.ZodString>;
904
- email: z.ZodEmail;
905
- individual_name: z.ZodString;
906
- tax_id: z.ZodOptional<z.ZodString>;
907
- tax_id_type: z.ZodOptional<z.ZodEnum<{
908
- "": "";
909
- ad_nrt: "ad_nrt";
910
- ae_trn: "ae_trn";
911
- al_tin: "al_tin";
912
- am_tin: "am_tin";
913
- ao_tin: "ao_tin";
914
- ar_cuit: "ar_cuit";
915
- at_vat: "at_vat";
916
- au_abn: "au_abn";
917
- au_arn: "au_arn";
918
- ba_tin: "ba_tin";
919
- bb_tin: "bb_tin";
920
- be_vat: "be_vat";
921
- bg_uic: "bg_uic";
922
- bg_vat: "bg_vat";
923
- bh_vat: "bh_vat";
924
- bo_tin: "bo_tin";
925
- br_cnpj: "br_cnpj";
926
- br_cpf: "br_cpf";
927
- bs_tin: "bs_tin";
928
- by_tin: "by_tin";
929
- ca_bn: "ca_bn";
930
- ca_gst_hst: "ca_gst_hst";
931
- ca_pst_bc: "ca_pst_bc";
932
- ca_pst_mb: "ca_pst_mb";
933
- ca_pst_sk: "ca_pst_sk";
934
- ca_qst: "ca_qst";
935
- cd_nif: "cd_nif";
936
- ch_uid: "ch_uid";
937
- ch_vat: "ch_vat";
938
- cl_tin: "cl_tin";
939
- cn_tin: "cn_tin";
940
- co_nit: "co_nit";
941
- cr_tin: "cr_tin";
942
- cy_vat: "cy_vat";
943
- cz_vat: "cz_vat";
944
- de_stn: "de_stn";
945
- de_vat: "de_vat";
946
- dk_vat: "dk_vat";
947
- do_rcn: "do_rcn";
948
- ec_ruc: "ec_ruc";
949
- ee_vat: "ee_vat";
950
- eg_tin: "eg_tin";
951
- es_cif: "es_cif";
952
- es_vat: "es_vat";
953
- eu_oss_vat: "eu_oss_vat";
954
- fi_vat: "fi_vat";
955
- fr_vat: "fr_vat";
956
- gb_vat: "gb_vat";
957
- ge_vat: "ge_vat";
958
- gn_nif: "gn_nif";
959
- gr_vat: "gr_vat";
960
- hk_br: "hk_br";
961
- hr_oib: "hr_oib";
962
- hr_vat: "hr_vat";
963
- hu_tin: "hu_tin";
964
- hu_vat: "hu_vat";
965
- id_npwp: "id_npwp";
966
- ie_vat: "ie_vat";
967
- il_vat: "il_vat";
968
- in_gst: "in_gst";
969
- is_vat: "is_vat";
970
- it_vat: "it_vat";
971
- jp_cn: "jp_cn";
972
- jp_rn: "jp_rn";
973
- jp_trn: "jp_trn";
974
- ke_pin: "ke_pin";
975
- kh_tin: "kh_tin";
976
- kr_brn: "kr_brn";
977
- kz_bin: "kz_bin";
978
- li_uid: "li_uid";
979
- li_vat: "li_vat";
980
- lt_vat: "lt_vat";
981
- lu_vat: "lu_vat";
982
- lv_vat: "lv_vat";
983
- ma_vat: "ma_vat";
984
- md_vat: "md_vat";
985
- me_pib: "me_pib";
986
- mk_vat: "mk_vat";
987
- mr_nif: "mr_nif";
988
- mt_vat: "mt_vat";
989
- mx_rfc: "mx_rfc";
990
- my_frp: "my_frp";
991
- my_itn: "my_itn";
992
- my_sst: "my_sst";
993
- ng_tin: "ng_tin";
994
- nl_vat: "nl_vat";
995
- no_vat: "no_vat";
996
- no_voec: "no_voec";
997
- np_pan: "np_pan";
998
- nz_gst: "nz_gst";
999
- om_vat: "om_vat";
1000
- pe_ruc: "pe_ruc";
1001
- ph_tin: "ph_tin";
1002
- pl_vat: "pl_vat";
1003
- pt_vat: "pt_vat";
1004
- ro_tin: "ro_tin";
1005
- ro_vat: "ro_vat";
1006
- rs_pib: "rs_pib";
1007
- ru_inn: "ru_inn";
1008
- ru_kpp: "ru_kpp";
1009
- sa_vat: "sa_vat";
1010
- se_vat: "se_vat";
1011
- sg_gst: "sg_gst";
1012
- sg_uen: "sg_uen";
1013
- si_tin: "si_tin";
1014
- si_vat: "si_vat";
1015
- sk_vat: "sk_vat";
1016
- sn_ninea: "sn_ninea";
1017
- sr_fin: "sr_fin";
1018
- sv_nit: "sv_nit";
1019
- th_vat: "th_vat";
1020
- tj_tin: "tj_tin";
1021
- tr_tin: "tr_tin";
1022
- tw_vat: "tw_vat";
1023
- tz_vat: "tz_vat";
1024
- ua_vat: "ua_vat";
1025
- ug_tin: "ug_tin";
1026
- us_ein: "us_ein";
1027
- uy_ruc: "uy_ruc";
1028
- uz_tin: "uz_tin";
1029
- uz_vat: "uz_vat";
1030
- ve_rif: "ve_rif";
1031
- vn_tin: "vn_tin";
1032
- xi_vat: "xi_vat";
1033
- za_vat: "za_vat";
1034
- zm_tin: "zm_tin";
1035
- zw_tin: "zw_tin";
1632
+ export declare const zUpdateTokenBody: z.ZodObject<{
1633
+ name: z.ZodOptional<z.ZodString>;
1634
+ role: z.ZodOptional<z.ZodEnum<{
1635
+ Administrator: "Administrator";
1636
+ User: "User";
1036
1637
  }>>;
1037
1638
  }, z.core.$strip>;
1639
+ export declare const zUpdateTokenPath: z.ZodObject<{
1640
+ token_id: z.ZodString;
1641
+ }, z.core.$strip>;
1642
+ /**
1643
+ * Successfully updated. Returns updated token details with masked secret.
1644
+ */
1645
+ export declare const zUpdateTokenResponse: z.ZodObject<{
1646
+ name: z.ZodString;
1647
+ role: z.ZodEnum<{
1648
+ Administrator: "Administrator";
1649
+ User: "User";
1650
+ }>;
1651
+ id: z.ZodOptional<z.ZodString>;
1652
+ secret: z.ZodOptional<z.ZodString>;
1653
+ date_created: z.ZodISODateTime;
1654
+ }, z.core.$strip>;
1655
+ export declare const zRegenerateTokenPath: z.ZodObject<{
1656
+ token_id: z.ZodString;
1657
+ }, z.core.$strip>;
1658
+ /**
1659
+ * Successfully updated. Returns updated token details with unmasked / raw secret.
1660
+ */
1661
+ export declare const zRegenerateTokenResponse: z.ZodObject<{
1662
+ name: z.ZodString;
1663
+ role: z.ZodEnum<{
1664
+ Administrator: "Administrator";
1665
+ User: "User";
1666
+ }>;
1667
+ id: z.ZodOptional<z.ZodString>;
1668
+ secret: z.ZodOptional<z.ZodString>;
1669
+ date_created: z.ZodISODateTime;
1670
+ }, z.core.$strip>;
1671
+ /**
1672
+ * Tickets for the organization.
1673
+ */
1674
+ export declare const zListTicketsResponse: z.ZodObject<{
1675
+ items: z.ZodArray<z.ZodObject<{
1676
+ id: z.ZodString;
1677
+ status: z.ZodEnum<{
1678
+ closed: "closed";
1679
+ waiting_on_us: "waiting_on_us";
1680
+ waiting_on_user: "waiting_on_user";
1681
+ }>;
1682
+ category: z.ZodEnum<{
1683
+ billing: "billing";
1684
+ technical: "technical";
1685
+ general: "general";
1686
+ }>;
1687
+ summary: z.ZodString;
1688
+ closed_at: z.ZodOptional<z.ZodISODateTime>;
1689
+ date_created: z.ZodISODateTime;
1690
+ date_updated: z.ZodISODateTime;
1691
+ messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
1692
+ id: z.ZodString;
1693
+ type: z.ZodEnum<{
1694
+ customer_reply: "customer_reply";
1695
+ agent_reply: "agent_reply";
1696
+ }>;
1697
+ body: z.ZodString;
1698
+ author_first_name: z.ZodOptional<z.ZodString>;
1699
+ author_last_name: z.ZodOptional<z.ZodString>;
1700
+ attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
1701
+ id: z.ZodString;
1702
+ filename: z.ZodString;
1703
+ content_type: z.ZodString;
1704
+ size: z.ZodInt;
1705
+ }, z.core.$strip>>>;
1706
+ date_created: z.ZodISODateTime;
1707
+ }, z.core.$strip>>>;
1708
+ }, z.core.$strip>>;
1709
+ }, z.core.$strip>;
1710
+ export declare const zCreateTicketBody: z.ZodObject<{
1711
+ payload: z.ZodOptional<z.ZodString>;
1712
+ attachments: z.ZodOptional<z.ZodArray<z.ZodString>>;
1713
+ }, z.core.$strip>;
1714
+ /**
1715
+ * Ticket created.
1716
+ */
1717
+ export declare const zCreateTicketResponse: z.ZodObject<{
1718
+ id: z.ZodString;
1719
+ status: z.ZodEnum<{
1720
+ closed: "closed";
1721
+ waiting_on_us: "waiting_on_us";
1722
+ waiting_on_user: "waiting_on_user";
1723
+ }>;
1724
+ category: z.ZodEnum<{
1725
+ billing: "billing";
1726
+ technical: "technical";
1727
+ general: "general";
1728
+ }>;
1729
+ summary: z.ZodString;
1730
+ closed_at: z.ZodOptional<z.ZodISODateTime>;
1731
+ date_created: z.ZodISODateTime;
1732
+ date_updated: z.ZodISODateTime;
1733
+ messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
1734
+ id: z.ZodString;
1735
+ type: z.ZodEnum<{
1736
+ customer_reply: "customer_reply";
1737
+ agent_reply: "agent_reply";
1738
+ }>;
1739
+ body: z.ZodString;
1740
+ author_first_name: z.ZodOptional<z.ZodString>;
1741
+ author_last_name: z.ZodOptional<z.ZodString>;
1742
+ attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
1743
+ id: z.ZodString;
1744
+ filename: z.ZodString;
1745
+ content_type: z.ZodString;
1746
+ size: z.ZodInt;
1747
+ }, z.core.$strip>>>;
1748
+ date_created: z.ZodISODateTime;
1749
+ }, z.core.$strip>>>;
1750
+ }, z.core.$strip>;
1751
+ export declare const zCloseTicketPath: z.ZodObject<{
1752
+ ticket_id: z.ZodString;
1753
+ }, z.core.$strip>;
1754
+ /**
1755
+ * Ticket closed.
1756
+ */
1757
+ export declare const zCloseTicketResponse: z.ZodObject<{
1758
+ id: z.ZodString;
1759
+ status: z.ZodEnum<{
1760
+ closed: "closed";
1761
+ waiting_on_us: "waiting_on_us";
1762
+ waiting_on_user: "waiting_on_user";
1763
+ }>;
1764
+ category: z.ZodEnum<{
1765
+ billing: "billing";
1766
+ technical: "technical";
1767
+ general: "general";
1768
+ }>;
1769
+ summary: z.ZodString;
1770
+ closed_at: z.ZodOptional<z.ZodISODateTime>;
1771
+ date_created: z.ZodISODateTime;
1772
+ date_updated: z.ZodISODateTime;
1773
+ messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
1774
+ id: z.ZodString;
1775
+ type: z.ZodEnum<{
1776
+ customer_reply: "customer_reply";
1777
+ agent_reply: "agent_reply";
1778
+ }>;
1779
+ body: z.ZodString;
1780
+ author_first_name: z.ZodOptional<z.ZodString>;
1781
+ author_last_name: z.ZodOptional<z.ZodString>;
1782
+ attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
1783
+ id: z.ZodString;
1784
+ filename: z.ZodString;
1785
+ content_type: z.ZodString;
1786
+ size: z.ZodInt;
1787
+ }, z.core.$strip>>>;
1788
+ date_created: z.ZodISODateTime;
1789
+ }, z.core.$strip>>>;
1790
+ }, z.core.$strip>;
1791
+ export declare const zGetTicketPath: z.ZodObject<{
1792
+ ticket_id: z.ZodString;
1793
+ }, z.core.$strip>;
1794
+ /**
1795
+ * Ticket with messages (internal notes excluded).
1796
+ */
1797
+ export declare const zGetTicketResponse: z.ZodObject<{
1798
+ id: z.ZodString;
1799
+ status: z.ZodEnum<{
1800
+ closed: "closed";
1801
+ waiting_on_us: "waiting_on_us";
1802
+ waiting_on_user: "waiting_on_user";
1803
+ }>;
1804
+ category: z.ZodEnum<{
1805
+ billing: "billing";
1806
+ technical: "technical";
1807
+ general: "general";
1808
+ }>;
1809
+ summary: z.ZodString;
1810
+ closed_at: z.ZodOptional<z.ZodISODateTime>;
1811
+ date_created: z.ZodISODateTime;
1812
+ date_updated: z.ZodISODateTime;
1813
+ messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
1814
+ id: z.ZodString;
1815
+ type: z.ZodEnum<{
1816
+ customer_reply: "customer_reply";
1817
+ agent_reply: "agent_reply";
1818
+ }>;
1819
+ body: z.ZodString;
1820
+ author_first_name: z.ZodOptional<z.ZodString>;
1821
+ author_last_name: z.ZodOptional<z.ZodString>;
1822
+ attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
1823
+ id: z.ZodString;
1824
+ filename: z.ZodString;
1825
+ content_type: z.ZodString;
1826
+ size: z.ZodInt;
1827
+ }, z.core.$strip>>>;
1828
+ date_created: z.ZodISODateTime;
1829
+ }, z.core.$strip>>>;
1830
+ }, z.core.$strip>;
1831
+ export declare const zReplyTicketBody: z.ZodObject<{
1832
+ payload: z.ZodOptional<z.ZodString>;
1833
+ attachments: z.ZodOptional<z.ZodArray<z.ZodString>>;
1834
+ }, z.core.$strip>;
1835
+ export declare const zReplyTicketPath: z.ZodObject<{
1836
+ ticket_id: z.ZodString;
1837
+ }, z.core.$strip>;
1038
1838
  /**
1039
- * Successfully updated. Returns updated organization details.
1839
+ * Reply appended.
1040
1840
  */
1041
- export declare const zUpdateContactResponse: z.ZodObject<{
1042
- company: z.ZodOptional<z.ZodString>;
1043
- address1: z.ZodOptional<z.ZodString>;
1044
- address2: z.ZodOptional<z.ZodString>;
1045
- postalCode: z.ZodOptional<z.ZodString>;
1046
- city: z.ZodOptional<z.ZodString>;
1047
- state: z.ZodOptional<z.ZodString>;
1048
- country: z.ZodOptional<z.ZodString>;
1049
- phone: z.ZodOptional<z.ZodString>;
1050
- email: z.ZodEmail;
1051
- individual_name: z.ZodString;
1052
- tax_id: z.ZodOptional<z.ZodString>;
1053
- tax_id_type: z.ZodOptional<z.ZodEnum<{
1054
- "": "";
1055
- ad_nrt: "ad_nrt";
1056
- ae_trn: "ae_trn";
1057
- al_tin: "al_tin";
1058
- am_tin: "am_tin";
1059
- ao_tin: "ao_tin";
1060
- ar_cuit: "ar_cuit";
1061
- at_vat: "at_vat";
1062
- au_abn: "au_abn";
1063
- au_arn: "au_arn";
1064
- ba_tin: "ba_tin";
1065
- bb_tin: "bb_tin";
1066
- be_vat: "be_vat";
1067
- bg_uic: "bg_uic";
1068
- bg_vat: "bg_vat";
1069
- bh_vat: "bh_vat";
1070
- bo_tin: "bo_tin";
1071
- br_cnpj: "br_cnpj";
1072
- br_cpf: "br_cpf";
1073
- bs_tin: "bs_tin";
1074
- by_tin: "by_tin";
1075
- ca_bn: "ca_bn";
1076
- ca_gst_hst: "ca_gst_hst";
1077
- ca_pst_bc: "ca_pst_bc";
1078
- ca_pst_mb: "ca_pst_mb";
1079
- ca_pst_sk: "ca_pst_sk";
1080
- ca_qst: "ca_qst";
1081
- cd_nif: "cd_nif";
1082
- ch_uid: "ch_uid";
1083
- ch_vat: "ch_vat";
1084
- cl_tin: "cl_tin";
1085
- cn_tin: "cn_tin";
1086
- co_nit: "co_nit";
1087
- cr_tin: "cr_tin";
1088
- cy_vat: "cy_vat";
1089
- cz_vat: "cz_vat";
1090
- de_stn: "de_stn";
1091
- de_vat: "de_vat";
1092
- dk_vat: "dk_vat";
1093
- do_rcn: "do_rcn";
1094
- ec_ruc: "ec_ruc";
1095
- ee_vat: "ee_vat";
1096
- eg_tin: "eg_tin";
1097
- es_cif: "es_cif";
1098
- es_vat: "es_vat";
1099
- eu_oss_vat: "eu_oss_vat";
1100
- fi_vat: "fi_vat";
1101
- fr_vat: "fr_vat";
1102
- gb_vat: "gb_vat";
1103
- ge_vat: "ge_vat";
1104
- gn_nif: "gn_nif";
1105
- gr_vat: "gr_vat";
1106
- hk_br: "hk_br";
1107
- hr_oib: "hr_oib";
1108
- hr_vat: "hr_vat";
1109
- hu_tin: "hu_tin";
1110
- hu_vat: "hu_vat";
1111
- id_npwp: "id_npwp";
1112
- ie_vat: "ie_vat";
1113
- il_vat: "il_vat";
1114
- in_gst: "in_gst";
1115
- is_vat: "is_vat";
1116
- it_vat: "it_vat";
1117
- jp_cn: "jp_cn";
1118
- jp_rn: "jp_rn";
1119
- jp_trn: "jp_trn";
1120
- ke_pin: "ke_pin";
1121
- kh_tin: "kh_tin";
1122
- kr_brn: "kr_brn";
1123
- kz_bin: "kz_bin";
1124
- li_uid: "li_uid";
1125
- li_vat: "li_vat";
1126
- lt_vat: "lt_vat";
1127
- lu_vat: "lu_vat";
1128
- lv_vat: "lv_vat";
1129
- ma_vat: "ma_vat";
1130
- md_vat: "md_vat";
1131
- me_pib: "me_pib";
1132
- mk_vat: "mk_vat";
1133
- mr_nif: "mr_nif";
1134
- mt_vat: "mt_vat";
1135
- mx_rfc: "mx_rfc";
1136
- my_frp: "my_frp";
1137
- my_itn: "my_itn";
1138
- my_sst: "my_sst";
1139
- ng_tin: "ng_tin";
1140
- nl_vat: "nl_vat";
1141
- no_vat: "no_vat";
1142
- no_voec: "no_voec";
1143
- np_pan: "np_pan";
1144
- nz_gst: "nz_gst";
1145
- om_vat: "om_vat";
1146
- pe_ruc: "pe_ruc";
1147
- ph_tin: "ph_tin";
1148
- pl_vat: "pl_vat";
1149
- pt_vat: "pt_vat";
1150
- ro_tin: "ro_tin";
1151
- ro_vat: "ro_vat";
1152
- rs_pib: "rs_pib";
1153
- ru_inn: "ru_inn";
1154
- ru_kpp: "ru_kpp";
1155
- sa_vat: "sa_vat";
1156
- se_vat: "se_vat";
1157
- sg_gst: "sg_gst";
1158
- sg_uen: "sg_uen";
1159
- si_tin: "si_tin";
1160
- si_vat: "si_vat";
1161
- sk_vat: "sk_vat";
1162
- sn_ninea: "sn_ninea";
1163
- sr_fin: "sr_fin";
1164
- sv_nit: "sv_nit";
1165
- th_vat: "th_vat";
1166
- tj_tin: "tj_tin";
1167
- tr_tin: "tr_tin";
1168
- tw_vat: "tw_vat";
1169
- tz_vat: "tz_vat";
1170
- ua_vat: "ua_vat";
1171
- ug_tin: "ug_tin";
1172
- us_ein: "us_ein";
1173
- uy_ruc: "uy_ruc";
1174
- uz_tin: "uz_tin";
1175
- uz_vat: "uz_vat";
1176
- ve_rif: "ve_rif";
1177
- vn_tin: "vn_tin";
1178
- xi_vat: "xi_vat";
1179
- za_vat: "za_vat";
1180
- zm_tin: "zm_tin";
1181
- zw_tin: "zw_tin";
1182
- }>>;
1841
+ export declare const zReplyTicketResponse: z.ZodObject<{
1842
+ id: z.ZodString;
1843
+ type: z.ZodEnum<{
1844
+ customer_reply: "customer_reply";
1845
+ agent_reply: "agent_reply";
1846
+ }>;
1847
+ body: z.ZodString;
1848
+ author_first_name: z.ZodOptional<z.ZodString>;
1849
+ author_last_name: z.ZodOptional<z.ZodString>;
1850
+ attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
1851
+ id: z.ZodString;
1852
+ filename: z.ZodString;
1853
+ content_type: z.ZodString;
1854
+ size: z.ZodInt;
1855
+ }, z.core.$strip>>>;
1856
+ date_created: z.ZodISODateTime;
1857
+ }, z.core.$strip>;
1858
+ export declare const zGetTicketAttachmentPath: z.ZodObject<{
1859
+ ticket_id: z.ZodString;
1860
+ attachment_id: z.ZodString;
1861
+ }, z.core.$strip>;
1862
+ /**
1863
+ * Attachment binary stream.
1864
+ */
1865
+ export declare const zGetTicketAttachmentResponse: z.ZodString;
1866
+ /**
1867
+ * List of repositories
1868
+ */
1869
+ export declare const zListRepositoriesResponse: z.ZodArray<z.ZodObject<{
1870
+ name: z.ZodString;
1871
+ region: z.ZodString;
1872
+ uri: z.ZodString;
1873
+ }, z.core.$strip>>;
1874
+ export declare const zListTagsPath: z.ZodObject<{
1875
+ region: z.ZodString;
1876
+ repository: z.ZodString;
1877
+ }, z.core.$strip>;
1878
+ /**
1879
+ * Repository with tags
1880
+ */
1881
+ export declare const zListTagsResponse: z.ZodObject<{
1882
+ name: z.ZodString;
1883
+ region: z.ZodString;
1884
+ uri: z.ZodString;
1885
+ tags: z.ZodArray<z.ZodObject<{
1886
+ name: z.ZodString;
1887
+ size: z.ZodNumber;
1888
+ mediaType: z.ZodOptional<z.ZodString>;
1889
+ platforms: z.ZodOptional<z.ZodArray<z.ZodString>>;
1890
+ }, z.core.$strip>>;
1891
+ totalSize: z.ZodNumber;
1892
+ }, z.core.$strip>;
1893
+ export declare const zDeleteTagPath: z.ZodObject<{
1894
+ region: z.ZodString;
1895
+ repository: z.ZodString;
1896
+ tag: z.ZodString;
1897
+ }, z.core.$strip>;
1898
+ export declare const zGetTagPath: z.ZodObject<{
1899
+ region: z.ZodString;
1900
+ repository: z.ZodString;
1901
+ tag: z.ZodString;
1902
+ }, z.core.$strip>;
1903
+ /**
1904
+ * Tag details
1905
+ */
1906
+ export declare const zGetTagResponse: z.ZodObject<{
1907
+ name: z.ZodString;
1908
+ digest: z.ZodString;
1909
+ mediaType: z.ZodOptional<z.ZodString>;
1910
+ config: z.ZodOptional<z.ZodObject<{
1911
+ size: z.ZodNumber;
1912
+ }, z.core.$strip>>;
1913
+ layers: z.ZodOptional<z.ZodArray<z.ZodObject<{
1914
+ digest: z.ZodOptional<z.ZodString>;
1915
+ size: z.ZodNumber;
1916
+ }, z.core.$strip>>>;
1917
+ manifests: z.ZodOptional<z.ZodArray<z.ZodObject<{
1918
+ digest: z.ZodString;
1919
+ platform: z.ZodOptional<z.ZodObject<{
1920
+ architecture: z.ZodString;
1921
+ os: z.ZodString;
1922
+ variant: z.ZodOptional<z.ZodString>;
1923
+ }, z.core.$strip>>;
1924
+ layers: z.ZodOptional<z.ZodArray<z.ZodObject<{
1925
+ digest: z.ZodOptional<z.ZodString>;
1926
+ size: z.ZodNumber;
1927
+ }, z.core.$strip>>>;
1928
+ size: z.ZodOptional<z.ZodNumber>;
1929
+ }, z.core.$strip>>>;
1930
+ size: z.ZodNumber;
1931
+ region: z.ZodString;
1932
+ repository: z.ZodString;
1933
+ uri: z.ZodString;
1183
1934
  }, z.core.$strip>;
1184
1935
  /**
1185
- * An array of the applied promotional credits records.
1936
+ * Returns a single object containing organization details.
1186
1937
  */
1187
- export declare const zGetCreditsResponse: z.ZodArray<z.ZodObject<{
1188
- id: z.ZodOptional<z.ZodString>;
1938
+ export declare const zGetOrganizationResponse: z.ZodObject<{
1939
+ id: z.ZodUUID;
1940
+ name: z.ZodOptional<z.ZodString>;
1189
1941
  type: z.ZodEnum<{
1190
- credit: "credit";
1191
- discount: "discount";
1942
+ business: "business";
1943
+ personal: "personal";
1944
+ }>;
1945
+ date_created: z.ZodISODateTime;
1946
+ quota: z.ZodObject<{
1947
+ basic_clusters_max: z.ZodInt;
1948
+ basic_clusters_available: z.ZodInt;
1949
+ pro_clusters_max: z.ZodInt;
1950
+ pro_clusters_available: z.ZodInt;
1951
+ fleets_max: z.ZodInt;
1952
+ cluster_tiers: z.ZodArray<z.ZodString>;
1953
+ regions: z.ZodArray<z.ZodString>;
1954
+ versions: z.ZodArray<z.ZodObject<{
1955
+ id: z.ZodString;
1956
+ label: z.ZodString;
1957
+ }, z.core.$strip>>;
1958
+ cfcr_storage_gb: z.ZodInt;
1959
+ }, z.core.$strip>;
1960
+ status: z.ZodEnum<{
1961
+ active: "active";
1962
+ closed: "closed";
1963
+ suspended: "suspended";
1964
+ }>;
1965
+ verification: z.ZodEnum<{
1966
+ none: "none";
1967
+ submitted: "submitted";
1968
+ verified: "verified";
1192
1969
  }>;
1193
- date_start: z.ZodISODateTime;
1194
- date_end: z.ZodOptional<z.ZodISODateTime>;
1195
- code: z.ZodString;
1196
- description: z.ZodOptional<z.ZodString>;
1197
- value_total: z.ZodNumber;
1198
- value_remaining: z.ZodOptional<z.ZodNumber>;
1199
- }, z.core.$strip>>;
1200
- export declare const zRedeemCreditsBody: z.ZodObject<{
1201
- code: z.ZodOptional<z.ZodString>;
1202
1970
  }, z.core.$strip>;
1203
- export declare const zListChartsPath: z.ZodObject<{
1204
- cluster_id: z.ZodString;
1971
+ export declare const zCreateOrganizationBody: z.ZodObject<{
1972
+ type: z.ZodEnum<{
1973
+ business: "business";
1974
+ personal: "personal";
1975
+ }>;
1976
+ email: z.ZodEmail;
1977
+ first_name: z.ZodString;
1978
+ last_name: z.ZodString;
1979
+ company_name: z.ZodString;
1980
+ password: z.ZodString;
1205
1981
  }, z.core.$strip>;
1206
1982
  /**
1207
- * An array of charts
1983
+ * Organization signup accepted. Returns the generated organization id immediately; provisioning (billing, Keycloak realm, user) continues asynchronously in the background.
1984
+ *
1208
1985
  */
1209
- export declare const zListChartsResponse: z.ZodArray<z.ZodObject<{
1210
- values: z.ZodString;
1211
- version_channel: z.ZodString;
1986
+ export declare const zCreateOrganizationResponse: z.ZodObject<{
1987
+ id: z.ZodString;
1988
+ }, z.core.$strip>;
1989
+ /**
1990
+ * JSON-RPC 2.0 request payload
1991
+ */
1992
+ export declare const zPostMcpBody: z.ZodObject<{
1993
+ jsonrpc: z.ZodOptional<z.ZodString>;
1994
+ method: z.ZodOptional<z.ZodString>;
1995
+ id: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>;
1996
+ params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1997
+ }, z.core.$strip>;
1998
+ /**
1999
+ * JSON-RPC 2.0 success or error response
2000
+ */
2001
+ export declare const zPostMcpResponse: z.ZodObject<{
2002
+ jsonrpc: z.ZodOptional<z.ZodString>;
2003
+ id: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>;
2004
+ result: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
2005
+ error: z.ZodOptional<z.ZodObject<{
2006
+ code: z.ZodOptional<z.ZodInt>;
2007
+ message: z.ZodOptional<z.ZodString>;
2008
+ }, z.core.$strip>>;
2009
+ }, z.core.$strip>;
2010
+ /**
2011
+ * An array of chart listings in the marketplace.
2012
+ */
2013
+ export declare const zListMarketplaceChartsResponse: z.ZodArray<z.ZodObject<{
1212
2014
  name: z.ZodString;
1213
- namespace: z.ZodString;
1214
- chart: z.ZodString;
1215
- status: z.ZodEnum<{
1216
- InstallSucceeded: "InstallSucceeded";
1217
- InstallFailed: "InstallFailed";
1218
- UpgradeSucceeded: "UpgradeSucceeded";
1219
- UpgradeFailed: "UpgradeFailed";
1220
- TestSucceeded: "TestSucceeded";
1221
- TestFailed: "TestFailed";
1222
- RollbackSucceeded: "RollbackSucceeded";
1223
- RollbackFailed: "RollbackFailed";
1224
- UninstallSucceeded: "UninstallSucceeded";
1225
- UninstallFailed: "UninstallFailed";
1226
- ArtifactFailed: "ArtifactFailed";
1227
- DependencyNotReady: "DependencyNotReady";
1228
- Progressing: "Progressing";
1229
- SourceNotReady: "SourceNotReady";
1230
- }>;
1231
- version_current: z.ZodString;
1232
- created_at: z.ZodString;
1233
- updated_at: z.ZodString;
1234
- ready: z.ZodBoolean;
2015
+ versions: z.ZodArray<z.ZodString>;
2016
+ version_channels: z.ZodArray<z.ZodString>;
2017
+ latestVersion: z.ZodString;
2018
+ metadata: z.ZodOptional<z.ZodObject<{
2019
+ name: z.ZodString;
2020
+ version: z.ZodString;
2021
+ description: z.ZodOptional<z.ZodString>;
2022
+ appVersion: z.ZodOptional<z.ZodString>;
2023
+ apiVersion: z.ZodOptional<z.ZodString>;
2024
+ keywords: z.ZodOptional<z.ZodArray<z.ZodString>>;
2025
+ home: z.ZodOptional<z.ZodString>;
2026
+ icon: z.ZodOptional<z.ZodString>;
2027
+ sources: z.ZodOptional<z.ZodArray<z.ZodString>>;
2028
+ maintainers: z.ZodOptional<z.ZodArray<z.ZodObject<{
2029
+ name: z.ZodString;
2030
+ email: z.ZodOptional<z.ZodString>;
2031
+ }, z.core.$strip>>>;
2032
+ }, z.core.$strip>>;
1235
2033
  }, z.core.$strip>>;
1236
- export declare const zCreateChartBody: z.ZodObject<{
1237
- values: z.ZodString;
2034
+ export declare const zGetMarketplaceChartFilesPath: z.ZodObject<{
2035
+ chart_name: z.ZodString;
1238
2036
  version_channel: z.ZodString;
1239
- name: z.ZodString;
1240
- namespace: z.ZodString;
1241
- chart: z.ZodString;
1242
2037
  }, z.core.$strip>;
1243
- export declare const zCreateChartPath: z.ZodObject<{
1244
- cluster_id: z.ZodString;
2038
+ /**
2039
+ * Returns an object containing the chart files for the latest matching version.
2040
+ */
2041
+ export declare const zGetMarketplaceChartFilesResponse: z.ZodObject<{
2042
+ chartYaml: z.ZodOptional<z.ZodString>;
2043
+ valuesYaml: z.ZodOptional<z.ZodString>;
2044
+ valuesSchemaJson: z.ZodOptional<z.ZodString>;
1245
2045
  }, z.core.$strip>;
1246
2046
  /**
1247
- * Successfully created. Returns created Chart ID.
2047
+ * An array of invites
1248
2048
  */
1249
- export declare const zCreateChartResponse: z.ZodString;
1250
- export declare const zDeleteChartPath: z.ZodObject<{
1251
- cluster_id: z.ZodString;
1252
- chart_name: z.ZodString;
2049
+ export declare const zListInvitesResponse: z.ZodArray<z.ZodObject<{
2050
+ id: z.ZodOptional<z.ZodString>;
2051
+ organization_id: z.ZodOptional<z.ZodUUID>;
2052
+ date_created: z.ZodISODateTime;
2053
+ email: z.ZodOptional<z.ZodEmail>;
2054
+ code: z.ZodOptional<z.ZodString>;
2055
+ role: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
2056
+ Administrator: "Administrator";
2057
+ User: "User";
2058
+ }>>>;
2059
+ }, z.core.$strip>>;
2060
+ export declare const zCreateInviteBody: z.ZodObject<{
2061
+ email: z.ZodEmail;
2062
+ role: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
2063
+ Administrator: "Administrator";
2064
+ User: "User";
2065
+ }>>>;
1253
2066
  }, z.core.$strip>;
1254
2067
  /**
1255
- * Successfully deleted.
2068
+ * Successfully created. Returns created invite details.
1256
2069
  */
1257
- export declare const zDeleteChartResponse: z.ZodString;
1258
- export declare const zGetChartPath: z.ZodObject<{
1259
- cluster_id: z.ZodString;
1260
- chart_name: z.ZodString;
2070
+ export declare const zCreateInviteResponse: z.ZodObject<{
2071
+ id: z.ZodOptional<z.ZodString>;
2072
+ organization_id: z.ZodOptional<z.ZodUUID>;
2073
+ date_created: z.ZodISODateTime;
2074
+ email: z.ZodOptional<z.ZodEmail>;
2075
+ code: z.ZodOptional<z.ZodString>;
2076
+ role: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
2077
+ Administrator: "Administrator";
2078
+ User: "User";
2079
+ }>>>;
2080
+ }, z.core.$strip>;
2081
+ export declare const zGetInvitePath: z.ZodObject<{
2082
+ code: z.ZodString;
1261
2083
  }, z.core.$strip>;
1262
2084
  /**
1263
- * Returns a single object containing chart details.
2085
+ * The invitation code is valid. Returns the invited email and organization.
1264
2086
  */
1265
- export declare const zGetChartResponse: z.ZodObject<{
1266
- values: z.ZodString;
1267
- version_channel: z.ZodString;
1268
- name: z.ZodString;
1269
- namespace: z.ZodString;
1270
- chart: z.ZodString;
1271
- status: z.ZodEnum<{
1272
- InstallSucceeded: "InstallSucceeded";
1273
- InstallFailed: "InstallFailed";
1274
- UpgradeSucceeded: "UpgradeSucceeded";
1275
- UpgradeFailed: "UpgradeFailed";
1276
- TestSucceeded: "TestSucceeded";
1277
- TestFailed: "TestFailed";
1278
- RollbackSucceeded: "RollbackSucceeded";
1279
- RollbackFailed: "RollbackFailed";
1280
- UninstallSucceeded: "UninstallSucceeded";
1281
- UninstallFailed: "UninstallFailed";
1282
- ArtifactFailed: "ArtifactFailed";
1283
- DependencyNotReady: "DependencyNotReady";
1284
- Progressing: "Progressing";
1285
- SourceNotReady: "SourceNotReady";
1286
- }>;
1287
- version_current: z.ZodString;
1288
- created_at: z.ZodString;
1289
- updated_at: z.ZodString;
1290
- ready: z.ZodBoolean;
2087
+ export declare const zGetInviteResponse: z.ZodObject<{
2088
+ email: z.ZodOptional<z.ZodEmail>;
2089
+ organization_id: z.ZodOptional<z.ZodString>;
1291
2090
  }, z.core.$strip>;
1292
- export declare const zUpdateChartBody: z.ZodObject<{
1293
- values: z.ZodString;
1294
- version_channel: z.ZodString;
2091
+ export declare const zDeleteInvitePath: z.ZodObject<{
2092
+ email: z.ZodEmail;
1295
2093
  }, z.core.$strip>;
1296
- export declare const zUpdateChartPath: z.ZodObject<{
2094
+ export declare const zQueryClusterPath: z.ZodObject<{
1297
2095
  cluster_id: z.ZodString;
1298
- chart_name: z.ZodString;
1299
2096
  }, z.core.$strip>;
1300
- /**
1301
- * Successfully updated.
1302
- */
1303
- export declare const zUpdateChartResponse: z.ZodString;
1304
2097
  export declare const zListFleetsPath: z.ZodObject<{
1305
2098
  cluster_id: z.ZodString;
1306
2099
  }, z.core.$strip>;
@@ -1309,38 +2102,522 @@ export declare const zListFleetsPath: z.ZodObject<{
1309
2102
  */
1310
2103
  export declare const zListFleetsResponse: z.ZodArray<z.ZodObject<{
1311
2104
  limits: z.ZodOptional<z.ZodObject<{
1312
- cpu: z.ZodNumber;
2105
+ cpu: z.ZodOptional<z.ZodInt>;
1313
2106
  }, z.core.$strip>>;
1314
2107
  gcp: z.ZodOptional<z.ZodObject<{
1315
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1316
- project: z.ZodString;
2108
+ enabled: z.ZodBoolean;
2109
+ project: z.ZodOptional<z.ZodString>;
1317
2110
  }, z.core.$strip>>;
1318
2111
  hetzner: z.ZodOptional<z.ZodObject<{
1319
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1320
- apiKey: z.ZodString;
2112
+ enabled: z.ZodBoolean;
2113
+ apiKey: z.ZodOptional<z.ZodString>;
1321
2114
  }, z.core.$strip>>;
1322
2115
  aws: z.ZodOptional<z.ZodObject<{
1323
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1324
- controllerRoleArn: z.ZodString;
2116
+ enabled: z.ZodBoolean;
2117
+ controllerRoleArn: z.ZodOptional<z.ZodString>;
2118
+ }, z.core.$strip>>;
2119
+ constraints: z.ZodOptional<z.ZodObject<{
2120
+ 'karpenter.sh/capacity-type': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
2121
+ "on-demand": "on-demand";
2122
+ spot: "spot";
2123
+ }>>>>;
2124
+ 'kubernetes.io/arch': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
2125
+ amd64: "amd64";
2126
+ arm64: "arm64";
2127
+ }>>>>;
2128
+ 'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
2129
+ p3: "p3";
2130
+ cx: "cx";
2131
+ h1: "h1";
2132
+ h3: "h3";
2133
+ a1: "a1";
2134
+ a2: "a2";
2135
+ a3: "a3";
2136
+ a4: "a4";
2137
+ c1: "c1";
2138
+ c2: "c2";
2139
+ c2d: "c2d";
2140
+ c3: "c3";
2141
+ c3d: "c3d";
2142
+ c4: "c4";
2143
+ c4a: "c4a";
2144
+ c4d: "c4d";
2145
+ c5: "c5";
2146
+ c5a: "c5a";
2147
+ c5ad: "c5ad";
2148
+ c5d: "c5d";
2149
+ c5n: "c5n";
2150
+ c6a: "c6a";
2151
+ c6g: "c6g";
2152
+ c6gd: "c6gd";
2153
+ c6gn: "c6gn";
2154
+ c6i: "c6i";
2155
+ c6id: "c6id";
2156
+ c6in: "c6in";
2157
+ c7a: "c7a";
2158
+ c7g: "c7g";
2159
+ c7gd: "c7gd";
2160
+ c7gn: "c7gn";
2161
+ c7i: "c7i";
2162
+ "c7i-flex": "c7i-flex";
2163
+ c8g: "c8g";
2164
+ c8gd: "c8gd";
2165
+ cax: "cax";
2166
+ ccx: "ccx";
2167
+ cpx: "cpx";
2168
+ d2: "d2";
2169
+ d3: "d3";
2170
+ d3en: "d3en";
2171
+ dl1: "dl1";
2172
+ dl2q: "dl2q";
2173
+ e2: "e2";
2174
+ f1: "f1";
2175
+ f2: "f2";
2176
+ g1: "g1";
2177
+ g2: "g2";
2178
+ g4ad: "g4ad";
2179
+ g4dn: "g4dn";
2180
+ g5: "g5";
2181
+ g5g: "g5g";
2182
+ g6: "g6";
2183
+ g6e: "g6e";
2184
+ gr6: "gr6";
2185
+ hpc6a: "hpc6a";
2186
+ hpc6id: "hpc6id";
2187
+ hpc7a: "hpc7a";
2188
+ hpc7g: "hpc7g";
2189
+ i2: "i2";
2190
+ i3: "i3";
2191
+ i3en: "i3en";
2192
+ i4g: "i4g";
2193
+ i4i: "i4i";
2194
+ i7i: "i7i";
2195
+ i7ie: "i7ie";
2196
+ i8g: "i8g";
2197
+ im4gn: "im4gn";
2198
+ inf1: "inf1";
2199
+ inf2: "inf2";
2200
+ is4gen: "is4gen";
2201
+ m1: "m1";
2202
+ m2: "m2";
2203
+ m3: "m3";
2204
+ m4: "m4";
2205
+ m5: "m5";
2206
+ m5a: "m5a";
2207
+ m5ad: "m5ad";
2208
+ m5d: "m5d";
2209
+ m5dn: "m5dn";
2210
+ m5n: "m5n";
2211
+ m5zn: "m5zn";
2212
+ m6a: "m6a";
2213
+ m6g: "m6g";
2214
+ m6gd: "m6gd";
2215
+ m6i: "m6i";
2216
+ m6id: "m6id";
2217
+ m6idn: "m6idn";
2218
+ m6in: "m6in";
2219
+ m7a: "m7a";
2220
+ m7g: "m7g";
2221
+ m7gd: "m7gd";
2222
+ m7i: "m7i";
2223
+ "m7i-flex": "m7i-flex";
2224
+ m8g: "m8g";
2225
+ m8gd: "m8gd";
2226
+ n1: "n1";
2227
+ n2: "n2";
2228
+ n2d: "n2d";
2229
+ n4: "n4";
2230
+ p3dn: "p3dn";
2231
+ p4d: "p4d";
2232
+ p4de: "p4de";
2233
+ p5: "p5";
2234
+ p5e: "p5e";
2235
+ p5en: "p5en";
2236
+ "p6-b200": "p6-b200";
2237
+ r3: "r3";
2238
+ r4: "r4";
2239
+ r5: "r5";
2240
+ r5a: "r5a";
2241
+ r5ad: "r5ad";
2242
+ r5b: "r5b";
2243
+ r5d: "r5d";
2244
+ r5dn: "r5dn";
2245
+ r5n: "r5n";
2246
+ r6a: "r6a";
2247
+ r6g: "r6g";
2248
+ r6gd: "r6gd";
2249
+ r6i: "r6i";
2250
+ r6id: "r6id";
2251
+ r6idn: "r6idn";
2252
+ r6in: "r6in";
2253
+ r7a: "r7a";
2254
+ r7g: "r7g";
2255
+ r7gd: "r7gd";
2256
+ r7i: "r7i";
2257
+ r7iz: "r7iz";
2258
+ r8g: "r8g";
2259
+ r8gd: "r8gd";
2260
+ t2: "t2";
2261
+ t2a: "t2a";
2262
+ t2d: "t2d";
2263
+ t3: "t3";
2264
+ t3a: "t3a";
2265
+ t4g: "t4g";
2266
+ trn1: "trn1";
2267
+ trn1n: "trn1n";
2268
+ "u-3tb1": "u-3tb1";
2269
+ "u-6tb1": "u-6tb1";
2270
+ "u7i-12tb": "u7i-12tb";
2271
+ "u7i-6tb": "u7i-6tb";
2272
+ "u7i-8tb": "u7i-8tb";
2273
+ "u7in-16tb": "u7in-16tb";
2274
+ "u7in-24tb": "u7in-24tb";
2275
+ "u7in-32tb": "u7in-32tb";
2276
+ vt1: "vt1";
2277
+ x1: "x1";
2278
+ x1e: "x1e";
2279
+ x2gd: "x2gd";
2280
+ x2idn: "x2idn";
2281
+ x2iedn: "x2iedn";
2282
+ x2iezn: "x2iezn";
2283
+ x4: "x4";
2284
+ x8g: "x8g";
2285
+ z1d: "z1d";
2286
+ z3: "z3";
2287
+ }>>>;
2288
+ 'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
2289
+ "africa-south1": "africa-south1";
2290
+ "ap-northeast-1": "ap-northeast-1";
2291
+ "ap-northeast-2": "ap-northeast-2";
2292
+ "ap-northeast-3": "ap-northeast-3";
2293
+ "ap-south-1": "ap-south-1";
2294
+ "ap-southeast-1": "ap-southeast-1";
2295
+ "ap-southeast-2": "ap-southeast-2";
2296
+ ash: "ash";
2297
+ "asia-east1": "asia-east1";
2298
+ "asia-east2": "asia-east2";
2299
+ "asia-northeast1": "asia-northeast1";
2300
+ "asia-northeast2": "asia-northeast2";
2301
+ "asia-northeast3": "asia-northeast3";
2302
+ "asia-south1": "asia-south1";
2303
+ "asia-south2": "asia-south2";
2304
+ "asia-southeast1": "asia-southeast1";
2305
+ "asia-southeast2": "asia-southeast2";
2306
+ "australia-southeast1": "australia-southeast1";
2307
+ "australia-southeast2": "australia-southeast2";
2308
+ "ca-central-1": "ca-central-1";
2309
+ "eu-central-1": "eu-central-1";
2310
+ "eu-central-2": "eu-central-2";
2311
+ "eu-north-1": "eu-north-1";
2312
+ "eu-west-1": "eu-west-1";
2313
+ "eu-west-2": "eu-west-2";
2314
+ "eu-west-3": "eu-west-3";
2315
+ "europe-central2": "europe-central2";
2316
+ "europe-north1": "europe-north1";
2317
+ "europe-southwest1": "europe-southwest1";
2318
+ "europe-west1": "europe-west1";
2319
+ "europe-west10": "europe-west10";
2320
+ "europe-west12": "europe-west12";
2321
+ "europe-west2": "europe-west2";
2322
+ "europe-west3": "europe-west3";
2323
+ "europe-west4": "europe-west4";
2324
+ "europe-west6": "europe-west6";
2325
+ "europe-west8": "europe-west8";
2326
+ "europe-west9": "europe-west9";
2327
+ fsn1: "fsn1";
2328
+ hel1: "hel1";
2329
+ hil: "hil";
2330
+ "me-central1": "me-central1";
2331
+ "me-central2": "me-central2";
2332
+ "me-west1": "me-west1";
2333
+ nbg1: "nbg1";
2334
+ "northamerica-northeast1": "northamerica-northeast1";
2335
+ "northamerica-northeast2": "northamerica-northeast2";
2336
+ "sa-east-1": "sa-east-1";
2337
+ sin: "sin";
2338
+ "southamerica-east1": "southamerica-east1";
2339
+ "southamerica-west1": "southamerica-west1";
2340
+ "us-central1": "us-central1";
2341
+ "us-east-1": "us-east-1";
2342
+ "us-east-2": "us-east-2";
2343
+ "us-east1": "us-east1";
2344
+ "us-east4": "us-east4";
2345
+ "us-east5": "us-east5";
2346
+ "us-south1": "us-south1";
2347
+ "us-west-1": "us-west-1";
2348
+ "us-west-2": "us-west-2";
2349
+ "us-west1": "us-west1";
2350
+ "us-west2": "us-west2";
2351
+ "us-west3": "us-west3";
2352
+ "us-west4": "us-west4";
2353
+ }>>>;
1325
2354
  }, z.core.$strip>>;
2355
+ scalingProfile: z.ZodDefault<z.ZodEnum<{
2356
+ aggressive: "aggressive";
2357
+ conservative: "conservative";
2358
+ }>>;
1326
2359
  id: z.ZodString;
2360
+ ready: z.ZodBoolean;
2361
+ status_message: z.ZodOptional<z.ZodString>;
2362
+ created_at: z.ZodString;
2363
+ updated_at: z.ZodString;
1327
2364
  }, z.core.$strip>>;
1328
2365
  export declare const zCreateFleetBody: z.ZodObject<{
1329
2366
  limits: z.ZodOptional<z.ZodObject<{
1330
- cpu: z.ZodNumber;
2367
+ cpu: z.ZodOptional<z.ZodInt>;
1331
2368
  }, z.core.$strip>>;
1332
2369
  gcp: z.ZodOptional<z.ZodObject<{
1333
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1334
- project: z.ZodString;
2370
+ enabled: z.ZodBoolean;
2371
+ project: z.ZodOptional<z.ZodString>;
1335
2372
  }, z.core.$strip>>;
1336
2373
  hetzner: z.ZodOptional<z.ZodObject<{
1337
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1338
- apiKey: z.ZodString;
2374
+ enabled: z.ZodBoolean;
2375
+ apiKey: z.ZodOptional<z.ZodString>;
1339
2376
  }, z.core.$strip>>;
1340
2377
  aws: z.ZodOptional<z.ZodObject<{
1341
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1342
- controllerRoleArn: z.ZodString;
2378
+ enabled: z.ZodBoolean;
2379
+ controllerRoleArn: z.ZodOptional<z.ZodString>;
1343
2380
  }, z.core.$strip>>;
2381
+ constraints: z.ZodOptional<z.ZodObject<{
2382
+ 'karpenter.sh/capacity-type': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
2383
+ "on-demand": "on-demand";
2384
+ spot: "spot";
2385
+ }>>>>;
2386
+ 'kubernetes.io/arch': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
2387
+ amd64: "amd64";
2388
+ arm64: "arm64";
2389
+ }>>>>;
2390
+ 'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
2391
+ p3: "p3";
2392
+ cx: "cx";
2393
+ h1: "h1";
2394
+ h3: "h3";
2395
+ a1: "a1";
2396
+ a2: "a2";
2397
+ a3: "a3";
2398
+ a4: "a4";
2399
+ c1: "c1";
2400
+ c2: "c2";
2401
+ c2d: "c2d";
2402
+ c3: "c3";
2403
+ c3d: "c3d";
2404
+ c4: "c4";
2405
+ c4a: "c4a";
2406
+ c4d: "c4d";
2407
+ c5: "c5";
2408
+ c5a: "c5a";
2409
+ c5ad: "c5ad";
2410
+ c5d: "c5d";
2411
+ c5n: "c5n";
2412
+ c6a: "c6a";
2413
+ c6g: "c6g";
2414
+ c6gd: "c6gd";
2415
+ c6gn: "c6gn";
2416
+ c6i: "c6i";
2417
+ c6id: "c6id";
2418
+ c6in: "c6in";
2419
+ c7a: "c7a";
2420
+ c7g: "c7g";
2421
+ c7gd: "c7gd";
2422
+ c7gn: "c7gn";
2423
+ c7i: "c7i";
2424
+ "c7i-flex": "c7i-flex";
2425
+ c8g: "c8g";
2426
+ c8gd: "c8gd";
2427
+ cax: "cax";
2428
+ ccx: "ccx";
2429
+ cpx: "cpx";
2430
+ d2: "d2";
2431
+ d3: "d3";
2432
+ d3en: "d3en";
2433
+ dl1: "dl1";
2434
+ dl2q: "dl2q";
2435
+ e2: "e2";
2436
+ f1: "f1";
2437
+ f2: "f2";
2438
+ g1: "g1";
2439
+ g2: "g2";
2440
+ g4ad: "g4ad";
2441
+ g4dn: "g4dn";
2442
+ g5: "g5";
2443
+ g5g: "g5g";
2444
+ g6: "g6";
2445
+ g6e: "g6e";
2446
+ gr6: "gr6";
2447
+ hpc6a: "hpc6a";
2448
+ hpc6id: "hpc6id";
2449
+ hpc7a: "hpc7a";
2450
+ hpc7g: "hpc7g";
2451
+ i2: "i2";
2452
+ i3: "i3";
2453
+ i3en: "i3en";
2454
+ i4g: "i4g";
2455
+ i4i: "i4i";
2456
+ i7i: "i7i";
2457
+ i7ie: "i7ie";
2458
+ i8g: "i8g";
2459
+ im4gn: "im4gn";
2460
+ inf1: "inf1";
2461
+ inf2: "inf2";
2462
+ is4gen: "is4gen";
2463
+ m1: "m1";
2464
+ m2: "m2";
2465
+ m3: "m3";
2466
+ m4: "m4";
2467
+ m5: "m5";
2468
+ m5a: "m5a";
2469
+ m5ad: "m5ad";
2470
+ m5d: "m5d";
2471
+ m5dn: "m5dn";
2472
+ m5n: "m5n";
2473
+ m5zn: "m5zn";
2474
+ m6a: "m6a";
2475
+ m6g: "m6g";
2476
+ m6gd: "m6gd";
2477
+ m6i: "m6i";
2478
+ m6id: "m6id";
2479
+ m6idn: "m6idn";
2480
+ m6in: "m6in";
2481
+ m7a: "m7a";
2482
+ m7g: "m7g";
2483
+ m7gd: "m7gd";
2484
+ m7i: "m7i";
2485
+ "m7i-flex": "m7i-flex";
2486
+ m8g: "m8g";
2487
+ m8gd: "m8gd";
2488
+ n1: "n1";
2489
+ n2: "n2";
2490
+ n2d: "n2d";
2491
+ n4: "n4";
2492
+ p3dn: "p3dn";
2493
+ p4d: "p4d";
2494
+ p4de: "p4de";
2495
+ p5: "p5";
2496
+ p5e: "p5e";
2497
+ p5en: "p5en";
2498
+ "p6-b200": "p6-b200";
2499
+ r3: "r3";
2500
+ r4: "r4";
2501
+ r5: "r5";
2502
+ r5a: "r5a";
2503
+ r5ad: "r5ad";
2504
+ r5b: "r5b";
2505
+ r5d: "r5d";
2506
+ r5dn: "r5dn";
2507
+ r5n: "r5n";
2508
+ r6a: "r6a";
2509
+ r6g: "r6g";
2510
+ r6gd: "r6gd";
2511
+ r6i: "r6i";
2512
+ r6id: "r6id";
2513
+ r6idn: "r6idn";
2514
+ r6in: "r6in";
2515
+ r7a: "r7a";
2516
+ r7g: "r7g";
2517
+ r7gd: "r7gd";
2518
+ r7i: "r7i";
2519
+ r7iz: "r7iz";
2520
+ r8g: "r8g";
2521
+ r8gd: "r8gd";
2522
+ t2: "t2";
2523
+ t2a: "t2a";
2524
+ t2d: "t2d";
2525
+ t3: "t3";
2526
+ t3a: "t3a";
2527
+ t4g: "t4g";
2528
+ trn1: "trn1";
2529
+ trn1n: "trn1n";
2530
+ "u-3tb1": "u-3tb1";
2531
+ "u-6tb1": "u-6tb1";
2532
+ "u7i-12tb": "u7i-12tb";
2533
+ "u7i-6tb": "u7i-6tb";
2534
+ "u7i-8tb": "u7i-8tb";
2535
+ "u7in-16tb": "u7in-16tb";
2536
+ "u7in-24tb": "u7in-24tb";
2537
+ "u7in-32tb": "u7in-32tb";
2538
+ vt1: "vt1";
2539
+ x1: "x1";
2540
+ x1e: "x1e";
2541
+ x2gd: "x2gd";
2542
+ x2idn: "x2idn";
2543
+ x2iedn: "x2iedn";
2544
+ x2iezn: "x2iezn";
2545
+ x4: "x4";
2546
+ x8g: "x8g";
2547
+ z1d: "z1d";
2548
+ z3: "z3";
2549
+ }>>>;
2550
+ 'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
2551
+ "africa-south1": "africa-south1";
2552
+ "ap-northeast-1": "ap-northeast-1";
2553
+ "ap-northeast-2": "ap-northeast-2";
2554
+ "ap-northeast-3": "ap-northeast-3";
2555
+ "ap-south-1": "ap-south-1";
2556
+ "ap-southeast-1": "ap-southeast-1";
2557
+ "ap-southeast-2": "ap-southeast-2";
2558
+ ash: "ash";
2559
+ "asia-east1": "asia-east1";
2560
+ "asia-east2": "asia-east2";
2561
+ "asia-northeast1": "asia-northeast1";
2562
+ "asia-northeast2": "asia-northeast2";
2563
+ "asia-northeast3": "asia-northeast3";
2564
+ "asia-south1": "asia-south1";
2565
+ "asia-south2": "asia-south2";
2566
+ "asia-southeast1": "asia-southeast1";
2567
+ "asia-southeast2": "asia-southeast2";
2568
+ "australia-southeast1": "australia-southeast1";
2569
+ "australia-southeast2": "australia-southeast2";
2570
+ "ca-central-1": "ca-central-1";
2571
+ "eu-central-1": "eu-central-1";
2572
+ "eu-central-2": "eu-central-2";
2573
+ "eu-north-1": "eu-north-1";
2574
+ "eu-west-1": "eu-west-1";
2575
+ "eu-west-2": "eu-west-2";
2576
+ "eu-west-3": "eu-west-3";
2577
+ "europe-central2": "europe-central2";
2578
+ "europe-north1": "europe-north1";
2579
+ "europe-southwest1": "europe-southwest1";
2580
+ "europe-west1": "europe-west1";
2581
+ "europe-west10": "europe-west10";
2582
+ "europe-west12": "europe-west12";
2583
+ "europe-west2": "europe-west2";
2584
+ "europe-west3": "europe-west3";
2585
+ "europe-west4": "europe-west4";
2586
+ "europe-west6": "europe-west6";
2587
+ "europe-west8": "europe-west8";
2588
+ "europe-west9": "europe-west9";
2589
+ fsn1: "fsn1";
2590
+ hel1: "hel1";
2591
+ hil: "hil";
2592
+ "me-central1": "me-central1";
2593
+ "me-central2": "me-central2";
2594
+ "me-west1": "me-west1";
2595
+ nbg1: "nbg1";
2596
+ "northamerica-northeast1": "northamerica-northeast1";
2597
+ "northamerica-northeast2": "northamerica-northeast2";
2598
+ "sa-east-1": "sa-east-1";
2599
+ sin: "sin";
2600
+ "southamerica-east1": "southamerica-east1";
2601
+ "southamerica-west1": "southamerica-west1";
2602
+ "us-central1": "us-central1";
2603
+ "us-east-1": "us-east-1";
2604
+ "us-east-2": "us-east-2";
2605
+ "us-east1": "us-east1";
2606
+ "us-east4": "us-east4";
2607
+ "us-east5": "us-east5";
2608
+ "us-south1": "us-south1";
2609
+ "us-west-1": "us-west-1";
2610
+ "us-west-2": "us-west-2";
2611
+ "us-west1": "us-west1";
2612
+ "us-west2": "us-west2";
2613
+ "us-west3": "us-west3";
2614
+ "us-west4": "us-west4";
2615
+ }>>>;
2616
+ }, z.core.$strip>>;
2617
+ scalingProfile: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
2618
+ aggressive: "aggressive";
2619
+ conservative: "conservative";
2620
+ }>>>;
1344
2621
  id: z.ZodString;
1345
2622
  }, z.core.$strip>;
1346
2623
  export declare const zCreateFleetPath: z.ZodObject<{
@@ -1367,184 +2644,636 @@ export declare const zGetFleetPath: z.ZodObject<{
1367
2644
  */
1368
2645
  export declare const zGetFleetResponse: z.ZodObject<{
1369
2646
  limits: z.ZodOptional<z.ZodObject<{
1370
- cpu: z.ZodNumber;
2647
+ cpu: z.ZodOptional<z.ZodInt>;
1371
2648
  }, z.core.$strip>>;
1372
2649
  gcp: z.ZodOptional<z.ZodObject<{
1373
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1374
- project: z.ZodString;
2650
+ enabled: z.ZodBoolean;
2651
+ project: z.ZodOptional<z.ZodString>;
1375
2652
  }, z.core.$strip>>;
1376
2653
  hetzner: z.ZodOptional<z.ZodObject<{
1377
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1378
- apiKey: z.ZodString;
2654
+ enabled: z.ZodBoolean;
2655
+ apiKey: z.ZodOptional<z.ZodString>;
1379
2656
  }, z.core.$strip>>;
1380
2657
  aws: z.ZodOptional<z.ZodObject<{
1381
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1382
- controllerRoleArn: z.ZodString;
2658
+ enabled: z.ZodBoolean;
2659
+ controllerRoleArn: z.ZodOptional<z.ZodString>;
1383
2660
  }, z.core.$strip>>;
2661
+ constraints: z.ZodOptional<z.ZodObject<{
2662
+ 'karpenter.sh/capacity-type': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
2663
+ "on-demand": "on-demand";
2664
+ spot: "spot";
2665
+ }>>>>;
2666
+ 'kubernetes.io/arch': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
2667
+ amd64: "amd64";
2668
+ arm64: "arm64";
2669
+ }>>>>;
2670
+ 'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
2671
+ p3: "p3";
2672
+ cx: "cx";
2673
+ h1: "h1";
2674
+ h3: "h3";
2675
+ a1: "a1";
2676
+ a2: "a2";
2677
+ a3: "a3";
2678
+ a4: "a4";
2679
+ c1: "c1";
2680
+ c2: "c2";
2681
+ c2d: "c2d";
2682
+ c3: "c3";
2683
+ c3d: "c3d";
2684
+ c4: "c4";
2685
+ c4a: "c4a";
2686
+ c4d: "c4d";
2687
+ c5: "c5";
2688
+ c5a: "c5a";
2689
+ c5ad: "c5ad";
2690
+ c5d: "c5d";
2691
+ c5n: "c5n";
2692
+ c6a: "c6a";
2693
+ c6g: "c6g";
2694
+ c6gd: "c6gd";
2695
+ c6gn: "c6gn";
2696
+ c6i: "c6i";
2697
+ c6id: "c6id";
2698
+ c6in: "c6in";
2699
+ c7a: "c7a";
2700
+ c7g: "c7g";
2701
+ c7gd: "c7gd";
2702
+ c7gn: "c7gn";
2703
+ c7i: "c7i";
2704
+ "c7i-flex": "c7i-flex";
2705
+ c8g: "c8g";
2706
+ c8gd: "c8gd";
2707
+ cax: "cax";
2708
+ ccx: "ccx";
2709
+ cpx: "cpx";
2710
+ d2: "d2";
2711
+ d3: "d3";
2712
+ d3en: "d3en";
2713
+ dl1: "dl1";
2714
+ dl2q: "dl2q";
2715
+ e2: "e2";
2716
+ f1: "f1";
2717
+ f2: "f2";
2718
+ g1: "g1";
2719
+ g2: "g2";
2720
+ g4ad: "g4ad";
2721
+ g4dn: "g4dn";
2722
+ g5: "g5";
2723
+ g5g: "g5g";
2724
+ g6: "g6";
2725
+ g6e: "g6e";
2726
+ gr6: "gr6";
2727
+ hpc6a: "hpc6a";
2728
+ hpc6id: "hpc6id";
2729
+ hpc7a: "hpc7a";
2730
+ hpc7g: "hpc7g";
2731
+ i2: "i2";
2732
+ i3: "i3";
2733
+ i3en: "i3en";
2734
+ i4g: "i4g";
2735
+ i4i: "i4i";
2736
+ i7i: "i7i";
2737
+ i7ie: "i7ie";
2738
+ i8g: "i8g";
2739
+ im4gn: "im4gn";
2740
+ inf1: "inf1";
2741
+ inf2: "inf2";
2742
+ is4gen: "is4gen";
2743
+ m1: "m1";
2744
+ m2: "m2";
2745
+ m3: "m3";
2746
+ m4: "m4";
2747
+ m5: "m5";
2748
+ m5a: "m5a";
2749
+ m5ad: "m5ad";
2750
+ m5d: "m5d";
2751
+ m5dn: "m5dn";
2752
+ m5n: "m5n";
2753
+ m5zn: "m5zn";
2754
+ m6a: "m6a";
2755
+ m6g: "m6g";
2756
+ m6gd: "m6gd";
2757
+ m6i: "m6i";
2758
+ m6id: "m6id";
2759
+ m6idn: "m6idn";
2760
+ m6in: "m6in";
2761
+ m7a: "m7a";
2762
+ m7g: "m7g";
2763
+ m7gd: "m7gd";
2764
+ m7i: "m7i";
2765
+ "m7i-flex": "m7i-flex";
2766
+ m8g: "m8g";
2767
+ m8gd: "m8gd";
2768
+ n1: "n1";
2769
+ n2: "n2";
2770
+ n2d: "n2d";
2771
+ n4: "n4";
2772
+ p3dn: "p3dn";
2773
+ p4d: "p4d";
2774
+ p4de: "p4de";
2775
+ p5: "p5";
2776
+ p5e: "p5e";
2777
+ p5en: "p5en";
2778
+ "p6-b200": "p6-b200";
2779
+ r3: "r3";
2780
+ r4: "r4";
2781
+ r5: "r5";
2782
+ r5a: "r5a";
2783
+ r5ad: "r5ad";
2784
+ r5b: "r5b";
2785
+ r5d: "r5d";
2786
+ r5dn: "r5dn";
2787
+ r5n: "r5n";
2788
+ r6a: "r6a";
2789
+ r6g: "r6g";
2790
+ r6gd: "r6gd";
2791
+ r6i: "r6i";
2792
+ r6id: "r6id";
2793
+ r6idn: "r6idn";
2794
+ r6in: "r6in";
2795
+ r7a: "r7a";
2796
+ r7g: "r7g";
2797
+ r7gd: "r7gd";
2798
+ r7i: "r7i";
2799
+ r7iz: "r7iz";
2800
+ r8g: "r8g";
2801
+ r8gd: "r8gd";
2802
+ t2: "t2";
2803
+ t2a: "t2a";
2804
+ t2d: "t2d";
2805
+ t3: "t3";
2806
+ t3a: "t3a";
2807
+ t4g: "t4g";
2808
+ trn1: "trn1";
2809
+ trn1n: "trn1n";
2810
+ "u-3tb1": "u-3tb1";
2811
+ "u-6tb1": "u-6tb1";
2812
+ "u7i-12tb": "u7i-12tb";
2813
+ "u7i-6tb": "u7i-6tb";
2814
+ "u7i-8tb": "u7i-8tb";
2815
+ "u7in-16tb": "u7in-16tb";
2816
+ "u7in-24tb": "u7in-24tb";
2817
+ "u7in-32tb": "u7in-32tb";
2818
+ vt1: "vt1";
2819
+ x1: "x1";
2820
+ x1e: "x1e";
2821
+ x2gd: "x2gd";
2822
+ x2idn: "x2idn";
2823
+ x2iedn: "x2iedn";
2824
+ x2iezn: "x2iezn";
2825
+ x4: "x4";
2826
+ x8g: "x8g";
2827
+ z1d: "z1d";
2828
+ z3: "z3";
2829
+ }>>>;
2830
+ 'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
2831
+ "africa-south1": "africa-south1";
2832
+ "ap-northeast-1": "ap-northeast-1";
2833
+ "ap-northeast-2": "ap-northeast-2";
2834
+ "ap-northeast-3": "ap-northeast-3";
2835
+ "ap-south-1": "ap-south-1";
2836
+ "ap-southeast-1": "ap-southeast-1";
2837
+ "ap-southeast-2": "ap-southeast-2";
2838
+ ash: "ash";
2839
+ "asia-east1": "asia-east1";
2840
+ "asia-east2": "asia-east2";
2841
+ "asia-northeast1": "asia-northeast1";
2842
+ "asia-northeast2": "asia-northeast2";
2843
+ "asia-northeast3": "asia-northeast3";
2844
+ "asia-south1": "asia-south1";
2845
+ "asia-south2": "asia-south2";
2846
+ "asia-southeast1": "asia-southeast1";
2847
+ "asia-southeast2": "asia-southeast2";
2848
+ "australia-southeast1": "australia-southeast1";
2849
+ "australia-southeast2": "australia-southeast2";
2850
+ "ca-central-1": "ca-central-1";
2851
+ "eu-central-1": "eu-central-1";
2852
+ "eu-central-2": "eu-central-2";
2853
+ "eu-north-1": "eu-north-1";
2854
+ "eu-west-1": "eu-west-1";
2855
+ "eu-west-2": "eu-west-2";
2856
+ "eu-west-3": "eu-west-3";
2857
+ "europe-central2": "europe-central2";
2858
+ "europe-north1": "europe-north1";
2859
+ "europe-southwest1": "europe-southwest1";
2860
+ "europe-west1": "europe-west1";
2861
+ "europe-west10": "europe-west10";
2862
+ "europe-west12": "europe-west12";
2863
+ "europe-west2": "europe-west2";
2864
+ "europe-west3": "europe-west3";
2865
+ "europe-west4": "europe-west4";
2866
+ "europe-west6": "europe-west6";
2867
+ "europe-west8": "europe-west8";
2868
+ "europe-west9": "europe-west9";
2869
+ fsn1: "fsn1";
2870
+ hel1: "hel1";
2871
+ hil: "hil";
2872
+ "me-central1": "me-central1";
2873
+ "me-central2": "me-central2";
2874
+ "me-west1": "me-west1";
2875
+ nbg1: "nbg1";
2876
+ "northamerica-northeast1": "northamerica-northeast1";
2877
+ "northamerica-northeast2": "northamerica-northeast2";
2878
+ "sa-east-1": "sa-east-1";
2879
+ sin: "sin";
2880
+ "southamerica-east1": "southamerica-east1";
2881
+ "southamerica-west1": "southamerica-west1";
2882
+ "us-central1": "us-central1";
2883
+ "us-east-1": "us-east-1";
2884
+ "us-east-2": "us-east-2";
2885
+ "us-east1": "us-east1";
2886
+ "us-east4": "us-east4";
2887
+ "us-east5": "us-east5";
2888
+ "us-south1": "us-south1";
2889
+ "us-west-1": "us-west-1";
2890
+ "us-west-2": "us-west-2";
2891
+ "us-west1": "us-west1";
2892
+ "us-west2": "us-west2";
2893
+ "us-west3": "us-west3";
2894
+ "us-west4": "us-west4";
2895
+ }>>>;
2896
+ }, z.core.$strip>>;
2897
+ scalingProfile: z.ZodDefault<z.ZodEnum<{
2898
+ aggressive: "aggressive";
2899
+ conservative: "conservative";
2900
+ }>>;
1384
2901
  id: z.ZodString;
2902
+ ready: z.ZodBoolean;
2903
+ status_message: z.ZodOptional<z.ZodString>;
2904
+ created_at: z.ZodString;
2905
+ updated_at: z.ZodString;
1385
2906
  }, z.core.$strip>;
1386
2907
  export declare const zUpdateFleetBody: z.ZodObject<{
1387
2908
  limits: z.ZodOptional<z.ZodObject<{
1388
- cpu: z.ZodNumber;
2909
+ cpu: z.ZodOptional<z.ZodInt>;
1389
2910
  }, z.core.$strip>>;
1390
2911
  gcp: z.ZodOptional<z.ZodObject<{
1391
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1392
- project: z.ZodString;
2912
+ enabled: z.ZodBoolean;
2913
+ project: z.ZodOptional<z.ZodString>;
1393
2914
  }, z.core.$strip>>;
1394
2915
  hetzner: z.ZodOptional<z.ZodObject<{
1395
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1396
- apiKey: z.ZodString;
2916
+ enabled: z.ZodBoolean;
2917
+ apiKey: z.ZodOptional<z.ZodString>;
1397
2918
  }, z.core.$strip>>;
1398
2919
  aws: z.ZodOptional<z.ZodObject<{
1399
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1400
- controllerRoleArn: z.ZodString;
2920
+ enabled: z.ZodBoolean;
2921
+ controllerRoleArn: z.ZodOptional<z.ZodString>;
2922
+ }, z.core.$strip>>;
2923
+ constraints: z.ZodOptional<z.ZodObject<{
2924
+ 'karpenter.sh/capacity-type': z.ZodOptional<z.ZodArray<z.ZodEnum<{
2925
+ "on-demand": "on-demand";
2926
+ spot: "spot";
2927
+ }>>>;
2928
+ 'kubernetes.io/arch': z.ZodOptional<z.ZodArray<z.ZodEnum<{
2929
+ amd64: "amd64";
2930
+ arm64: "arm64";
2931
+ }>>>;
2932
+ 'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
2933
+ p3: "p3";
2934
+ cx: "cx";
2935
+ h1: "h1";
2936
+ h3: "h3";
2937
+ a1: "a1";
2938
+ a2: "a2";
2939
+ a3: "a3";
2940
+ a4: "a4";
2941
+ c1: "c1";
2942
+ c2: "c2";
2943
+ c2d: "c2d";
2944
+ c3: "c3";
2945
+ c3d: "c3d";
2946
+ c4: "c4";
2947
+ c4a: "c4a";
2948
+ c4d: "c4d";
2949
+ c5: "c5";
2950
+ c5a: "c5a";
2951
+ c5ad: "c5ad";
2952
+ c5d: "c5d";
2953
+ c5n: "c5n";
2954
+ c6a: "c6a";
2955
+ c6g: "c6g";
2956
+ c6gd: "c6gd";
2957
+ c6gn: "c6gn";
2958
+ c6i: "c6i";
2959
+ c6id: "c6id";
2960
+ c6in: "c6in";
2961
+ c7a: "c7a";
2962
+ c7g: "c7g";
2963
+ c7gd: "c7gd";
2964
+ c7gn: "c7gn";
2965
+ c7i: "c7i";
2966
+ "c7i-flex": "c7i-flex";
2967
+ c8g: "c8g";
2968
+ c8gd: "c8gd";
2969
+ cax: "cax";
2970
+ ccx: "ccx";
2971
+ cpx: "cpx";
2972
+ d2: "d2";
2973
+ d3: "d3";
2974
+ d3en: "d3en";
2975
+ dl1: "dl1";
2976
+ dl2q: "dl2q";
2977
+ e2: "e2";
2978
+ f1: "f1";
2979
+ f2: "f2";
2980
+ g1: "g1";
2981
+ g2: "g2";
2982
+ g4ad: "g4ad";
2983
+ g4dn: "g4dn";
2984
+ g5: "g5";
2985
+ g5g: "g5g";
2986
+ g6: "g6";
2987
+ g6e: "g6e";
2988
+ gr6: "gr6";
2989
+ hpc6a: "hpc6a";
2990
+ hpc6id: "hpc6id";
2991
+ hpc7a: "hpc7a";
2992
+ hpc7g: "hpc7g";
2993
+ i2: "i2";
2994
+ i3: "i3";
2995
+ i3en: "i3en";
2996
+ i4g: "i4g";
2997
+ i4i: "i4i";
2998
+ i7i: "i7i";
2999
+ i7ie: "i7ie";
3000
+ i8g: "i8g";
3001
+ im4gn: "im4gn";
3002
+ inf1: "inf1";
3003
+ inf2: "inf2";
3004
+ is4gen: "is4gen";
3005
+ m1: "m1";
3006
+ m2: "m2";
3007
+ m3: "m3";
3008
+ m4: "m4";
3009
+ m5: "m5";
3010
+ m5a: "m5a";
3011
+ m5ad: "m5ad";
3012
+ m5d: "m5d";
3013
+ m5dn: "m5dn";
3014
+ m5n: "m5n";
3015
+ m5zn: "m5zn";
3016
+ m6a: "m6a";
3017
+ m6g: "m6g";
3018
+ m6gd: "m6gd";
3019
+ m6i: "m6i";
3020
+ m6id: "m6id";
3021
+ m6idn: "m6idn";
3022
+ m6in: "m6in";
3023
+ m7a: "m7a";
3024
+ m7g: "m7g";
3025
+ m7gd: "m7gd";
3026
+ m7i: "m7i";
3027
+ "m7i-flex": "m7i-flex";
3028
+ m8g: "m8g";
3029
+ m8gd: "m8gd";
3030
+ n1: "n1";
3031
+ n2: "n2";
3032
+ n2d: "n2d";
3033
+ n4: "n4";
3034
+ p3dn: "p3dn";
3035
+ p4d: "p4d";
3036
+ p4de: "p4de";
3037
+ p5: "p5";
3038
+ p5e: "p5e";
3039
+ p5en: "p5en";
3040
+ "p6-b200": "p6-b200";
3041
+ r3: "r3";
3042
+ r4: "r4";
3043
+ r5: "r5";
3044
+ r5a: "r5a";
3045
+ r5ad: "r5ad";
3046
+ r5b: "r5b";
3047
+ r5d: "r5d";
3048
+ r5dn: "r5dn";
3049
+ r5n: "r5n";
3050
+ r6a: "r6a";
3051
+ r6g: "r6g";
3052
+ r6gd: "r6gd";
3053
+ r6i: "r6i";
3054
+ r6id: "r6id";
3055
+ r6idn: "r6idn";
3056
+ r6in: "r6in";
3057
+ r7a: "r7a";
3058
+ r7g: "r7g";
3059
+ r7gd: "r7gd";
3060
+ r7i: "r7i";
3061
+ r7iz: "r7iz";
3062
+ r8g: "r8g";
3063
+ r8gd: "r8gd";
3064
+ t2: "t2";
3065
+ t2a: "t2a";
3066
+ t2d: "t2d";
3067
+ t3: "t3";
3068
+ t3a: "t3a";
3069
+ t4g: "t4g";
3070
+ trn1: "trn1";
3071
+ trn1n: "trn1n";
3072
+ "u-3tb1": "u-3tb1";
3073
+ "u-6tb1": "u-6tb1";
3074
+ "u7i-12tb": "u7i-12tb";
3075
+ "u7i-6tb": "u7i-6tb";
3076
+ "u7i-8tb": "u7i-8tb";
3077
+ "u7in-16tb": "u7in-16tb";
3078
+ "u7in-24tb": "u7in-24tb";
3079
+ "u7in-32tb": "u7in-32tb";
3080
+ vt1: "vt1";
3081
+ x1: "x1";
3082
+ x1e: "x1e";
3083
+ x2gd: "x2gd";
3084
+ x2idn: "x2idn";
3085
+ x2iedn: "x2iedn";
3086
+ x2iezn: "x2iezn";
3087
+ x4: "x4";
3088
+ x8g: "x8g";
3089
+ z1d: "z1d";
3090
+ z3: "z3";
3091
+ }>>>;
3092
+ 'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
3093
+ "africa-south1": "africa-south1";
3094
+ "ap-northeast-1": "ap-northeast-1";
3095
+ "ap-northeast-2": "ap-northeast-2";
3096
+ "ap-northeast-3": "ap-northeast-3";
3097
+ "ap-south-1": "ap-south-1";
3098
+ "ap-southeast-1": "ap-southeast-1";
3099
+ "ap-southeast-2": "ap-southeast-2";
3100
+ ash: "ash";
3101
+ "asia-east1": "asia-east1";
3102
+ "asia-east2": "asia-east2";
3103
+ "asia-northeast1": "asia-northeast1";
3104
+ "asia-northeast2": "asia-northeast2";
3105
+ "asia-northeast3": "asia-northeast3";
3106
+ "asia-south1": "asia-south1";
3107
+ "asia-south2": "asia-south2";
3108
+ "asia-southeast1": "asia-southeast1";
3109
+ "asia-southeast2": "asia-southeast2";
3110
+ "australia-southeast1": "australia-southeast1";
3111
+ "australia-southeast2": "australia-southeast2";
3112
+ "ca-central-1": "ca-central-1";
3113
+ "eu-central-1": "eu-central-1";
3114
+ "eu-central-2": "eu-central-2";
3115
+ "eu-north-1": "eu-north-1";
3116
+ "eu-west-1": "eu-west-1";
3117
+ "eu-west-2": "eu-west-2";
3118
+ "eu-west-3": "eu-west-3";
3119
+ "europe-central2": "europe-central2";
3120
+ "europe-north1": "europe-north1";
3121
+ "europe-southwest1": "europe-southwest1";
3122
+ "europe-west1": "europe-west1";
3123
+ "europe-west10": "europe-west10";
3124
+ "europe-west12": "europe-west12";
3125
+ "europe-west2": "europe-west2";
3126
+ "europe-west3": "europe-west3";
3127
+ "europe-west4": "europe-west4";
3128
+ "europe-west6": "europe-west6";
3129
+ "europe-west8": "europe-west8";
3130
+ "europe-west9": "europe-west9";
3131
+ fsn1: "fsn1";
3132
+ hel1: "hel1";
3133
+ hil: "hil";
3134
+ "me-central1": "me-central1";
3135
+ "me-central2": "me-central2";
3136
+ "me-west1": "me-west1";
3137
+ nbg1: "nbg1";
3138
+ "northamerica-northeast1": "northamerica-northeast1";
3139
+ "northamerica-northeast2": "northamerica-northeast2";
3140
+ "sa-east-1": "sa-east-1";
3141
+ sin: "sin";
3142
+ "southamerica-east1": "southamerica-east1";
3143
+ "southamerica-west1": "southamerica-west1";
3144
+ "us-central1": "us-central1";
3145
+ "us-east-1": "us-east-1";
3146
+ "us-east-2": "us-east-2";
3147
+ "us-east1": "us-east1";
3148
+ "us-east4": "us-east4";
3149
+ "us-east5": "us-east5";
3150
+ "us-south1": "us-south1";
3151
+ "us-west-1": "us-west-1";
3152
+ "us-west-2": "us-west-2";
3153
+ "us-west1": "us-west1";
3154
+ "us-west2": "us-west2";
3155
+ "us-west3": "us-west3";
3156
+ "us-west4": "us-west4";
3157
+ }>>>;
1401
3158
  }, z.core.$strip>>;
3159
+ scalingProfile: z.ZodEnum<{
3160
+ aggressive: "aggressive";
3161
+ conservative: "conservative";
3162
+ }>;
1402
3163
  }, z.core.$strip>;
1403
3164
  export declare const zUpdateFleetPath: z.ZodObject<{
1404
3165
  cluster_id: z.ZodString;
1405
3166
  fleet_name: z.ZodString;
1406
- }, z.core.$strip>;
1407
- /**
1408
- * Successfully updated.
1409
- */
1410
- export declare const zUpdateFleetResponse: z.ZodString;
1411
- export declare const zQueryClusterPath: z.ZodObject<{
1412
- cluster_id: z.ZodString;
1413
- }, z.core.$strip>;
1414
- /**
1415
- * An array of clusters
1416
- */
1417
- export declare const zListClustersResponse: z.ZodArray<z.ZodObject<{
1418
- name: z.ZodString;
1419
- tier: z.ZodEnum<{
1420
- basic: "basic";
1421
- pro: "pro";
1422
- }>;
1423
- region: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
1424
- "staging-1a": "staging-1a";
1425
- "northamerica-central-1": "northamerica-central-1";
1426
- "europe-central-1a": "europe-central-1a";
1427
- "northamerica-central-1a": "northamerica-central-1a";
1428
- }>>>;
1429
- id: z.ZodUUID;
1430
- status: z.ZodEnum<{
1431
- deleted: "deleted";
1432
- failed: "failed";
1433
- active: "active";
1434
- disabled: "disabled";
1435
- creating: "creating";
1436
- deployed: "deployed";
1437
- updating: "updating";
1438
- }>;
1439
- endpoint: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
1440
- "": "";
1441
- }>]>>;
1442
- certificate_ca: z.ZodOptional<z.ZodString>;
1443
- version_current: z.ZodOptional<z.ZodString>;
1444
- created_at: z.ZodOptional<z.ZodString>;
1445
- updated_at: z.ZodOptional<z.ZodString>;
1446
- ready: z.ZodOptional<z.ZodBoolean>;
1447
- version_channel: z.ZodOptional<z.ZodString>;
3167
+ }, z.core.$strip>;
3168
+ /**
3169
+ * Successfully updated.
3170
+ */
3171
+ export declare const zUpdateFleetResponse: z.ZodString;
3172
+ export declare const zListChartsPath: z.ZodObject<{
3173
+ cluster_id: z.ZodString;
3174
+ }, z.core.$strip>;
3175
+ /**
3176
+ * An array of charts
3177
+ */
3178
+ export declare const zListChartsResponse: z.ZodArray<z.ZodObject<{
3179
+ values: z.ZodString;
3180
+ version_channel: z.ZodString;
3181
+ name: z.ZodString;
3182
+ namespace: z.ZodString;
3183
+ chart: z.ZodString;
3184
+ status: z.ZodString;
3185
+ version_current: z.ZodString;
3186
+ created_at: z.ZodString;
3187
+ updated_at: z.ZodString;
3188
+ ready: z.ZodBoolean;
1448
3189
  }, z.core.$strip>>;
1449
- export declare const zCreateClusterBody: z.ZodObject<{
3190
+ export declare const zCreateChartBody: z.ZodObject<{
3191
+ values: z.ZodString;
3192
+ version_channel: z.ZodString;
1450
3193
  name: z.ZodString;
1451
- tier: z.ZodEnum<{
1452
- basic: "basic";
1453
- pro: "pro";
1454
- }>;
1455
- region: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
1456
- "staging-1a": "staging-1a";
1457
- "northamerica-central-1": "northamerica-central-1";
1458
- "europe-central-1a": "europe-central-1a";
1459
- "northamerica-central-1a": "northamerica-central-1a";
1460
- }>>>;
1461
- version_channel: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
1462
- "1.x.x-cfke.x": "1.x.x-cfke.x";
1463
- "1.31.x-cfke.x": "1.31.x-cfke.x";
1464
- "1.32.x-cfke.x": "1.32.x-cfke.x";
1465
- "1.33.x-cfke.x": "1.33.x-cfke.x";
1466
- }>>>;
3194
+ namespace: z.ZodString;
3195
+ chart: z.ZodString;
3196
+ }, z.core.$strip>;
3197
+ export declare const zCreateChartPath: z.ZodObject<{
3198
+ cluster_id: z.ZodString;
1467
3199
  }, z.core.$strip>;
1468
3200
  /**
1469
- * Successfully created. Returns created Cluster ID.
3201
+ * Successfully created. Returns created Chart ID.
1470
3202
  */
1471
- export declare const zCreateClusterResponse: z.ZodString;
1472
- export declare const zDeleteClusterPath: z.ZodObject<{
3203
+ export declare const zCreateChartResponse: z.ZodString;
3204
+ export declare const zDeleteChartPath: z.ZodObject<{
1473
3205
  cluster_id: z.ZodString;
3206
+ chart_name: z.ZodString;
1474
3207
  }, z.core.$strip>;
1475
3208
  /**
1476
3209
  * Successfully deleted.
1477
3210
  */
1478
- export declare const zDeleteClusterResponse: z.ZodString;
1479
- export declare const zGetClusterPath: z.ZodObject<{
3211
+ export declare const zDeleteChartResponse: z.ZodString;
3212
+ export declare const zGetChartPath: z.ZodObject<{
1480
3213
  cluster_id: z.ZodString;
3214
+ chart_name: z.ZodString;
1481
3215
  }, z.core.$strip>;
1482
3216
  /**
1483
- * Returns a single object containing cluster details.
3217
+ * Returns a single object containing chart details.
1484
3218
  */
1485
- export declare const zGetClusterResponse: z.ZodObject<{
3219
+ export declare const zGetChartResponse: z.ZodObject<{
3220
+ values: z.ZodString;
3221
+ version_channel: z.ZodString;
1486
3222
  name: z.ZodString;
1487
- tier: z.ZodEnum<{
1488
- basic: "basic";
1489
- pro: "pro";
1490
- }>;
1491
- region: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
1492
- "staging-1a": "staging-1a";
1493
- "northamerica-central-1": "northamerica-central-1";
1494
- "europe-central-1a": "europe-central-1a";
1495
- "northamerica-central-1a": "northamerica-central-1a";
1496
- }>>>;
1497
- id: z.ZodUUID;
1498
- status: z.ZodEnum<{
1499
- deleted: "deleted";
1500
- failed: "failed";
1501
- active: "active";
1502
- disabled: "disabled";
1503
- creating: "creating";
1504
- deployed: "deployed";
1505
- updating: "updating";
1506
- }>;
1507
- endpoint: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
1508
- "": "";
1509
- }>]>>;
1510
- certificate_ca: z.ZodOptional<z.ZodString>;
1511
- version_current: z.ZodOptional<z.ZodString>;
1512
- created_at: z.ZodOptional<z.ZodString>;
1513
- updated_at: z.ZodOptional<z.ZodString>;
1514
- ready: z.ZodOptional<z.ZodBoolean>;
1515
- version_channel: z.ZodOptional<z.ZodString>;
3223
+ namespace: z.ZodString;
3224
+ chart: z.ZodString;
3225
+ status: z.ZodString;
3226
+ version_current: z.ZodString;
3227
+ created_at: z.ZodString;
3228
+ updated_at: z.ZodString;
3229
+ ready: z.ZodBoolean;
1516
3230
  }, z.core.$strip>;
1517
- export declare const zUpdateClusterBody: z.ZodObject<{
1518
- name: z.ZodOptional<z.ZodString>;
1519
- tier: z.ZodEnum<{
1520
- basic: "basic";
1521
- pro: "pro";
1522
- }>;
1523
- version_channel: z.ZodOptional<z.ZodString>;
3231
+ export declare const zUpdateChartBody: z.ZodObject<{
3232
+ values: z.ZodString;
3233
+ version_channel: z.ZodString;
1524
3234
  }, z.core.$strip>;
1525
- export declare const zUpdateClusterPath: z.ZodObject<{
3235
+ export declare const zUpdateChartPath: z.ZodObject<{
1526
3236
  cluster_id: z.ZodString;
3237
+ chart_name: z.ZodString;
1527
3238
  }, z.core.$strip>;
1528
3239
  /**
1529
- * Successfully updated. Returns updated cluster details.
3240
+ * Successfully updated.
1530
3241
  */
1531
- export declare const zUpdateClusterResponse: z.ZodObject<{
3242
+ export declare const zUpdateChartResponse: z.ZodString;
3243
+ /**
3244
+ * An array of clusters
3245
+ */
3246
+ export declare const zListClustersResponse: z.ZodArray<z.ZodObject<{
1532
3247
  name: z.ZodString;
1533
3248
  tier: z.ZodEnum<{
1534
3249
  basic: "basic";
1535
3250
  pro: "pro";
1536
3251
  }>;
1537
- region: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
1538
- "staging-1a": "staging-1a";
1539
- "northamerica-central-1": "northamerica-central-1";
1540
- "europe-central-1a": "europe-central-1a";
1541
- "northamerica-central-1a": "northamerica-central-1a";
1542
- }>>>;
3252
+ region: z.ZodString;
3253
+ networking: z.ZodOptional<z.ZodObject<{
3254
+ pod_cidr: z.ZodOptional<z.ZodString>;
3255
+ service_cidr: z.ZodOptional<z.ZodString>;
3256
+ cluster_dns: z.ZodOptional<z.ZodString>;
3257
+ dual_stack: z.ZodOptional<z.ZodBoolean>;
3258
+ pod_cidr_v6: z.ZodOptional<z.ZodString>;
3259
+ service_cidr_v6: z.ZodOptional<z.ZodString>;
3260
+ }, z.core.$strip>>;
3261
+ release_channel: z.ZodOptional<z.ZodEnum<{
3262
+ stable: "stable";
3263
+ rapid: "rapid";
3264
+ extended: "extended";
3265
+ }>>;
3266
+ features: z.ZodOptional<z.ZodObject<{
3267
+ gpu_sharing_strategy: z.ZodEnum<{
3268
+ none: "none";
3269
+ mps: "mps";
3270
+ time_slicing: "time_slicing";
3271
+ }>;
3272
+ gpu_max_shared_clients_per_gpu: z.ZodInt;
3273
+ cilium_socket_lb_host_namespace_only: z.ZodOptional<z.ZodBoolean>;
3274
+ }, z.core.$strip>>;
1543
3275
  id: z.ZodUUID;
1544
3276
  status: z.ZodEnum<{
1545
- deleted: "deleted";
1546
- failed: "failed";
1547
- active: "active";
1548
3277
  disabled: "disabled";
1549
3278
  creating: "creating";
1550
3279
  deployed: "deployed";
@@ -1553,657 +3282,757 @@ export declare const zUpdateClusterResponse: z.ZodObject<{
1553
3282
  endpoint: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
1554
3283
  "": "";
1555
3284
  }>]>>;
3285
+ endpoint_public: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
3286
+ "": "";
3287
+ }>]>>;
1556
3288
  certificate_ca: z.ZodOptional<z.ZodString>;
1557
3289
  version_current: z.ZodOptional<z.ZodString>;
1558
3290
  created_at: z.ZodOptional<z.ZodString>;
1559
3291
  updated_at: z.ZodOptional<z.ZodString>;
1560
3292
  ready: z.ZodOptional<z.ZodBoolean>;
1561
3293
  version_channel: z.ZodOptional<z.ZodString>;
1562
- }, z.core.$strip>;
1563
- export declare const zGetJoinInformationPath: z.ZodObject<{
1564
- cluster_id: z.ZodString;
1565
- }, z.core.$strip>;
1566
- /**
1567
- * An object of cluster join information
1568
- */
1569
- export declare const zGetJoinInformationResponse: z.ZodObject<{
1570
- certificate_authority: z.ZodString;
1571
- endpoint: z.ZodURL;
1572
- cluster_dns: z.ZodString;
1573
- auth_key: z.ZodString;
1574
- bootstrap_token: z.ZodString;
1575
- versions: z.ZodObject<{
1576
- kubernetes: z.ZodString;
1577
- tailscale: z.ZodString;
1578
- containerd: z.ZodString;
1579
- nvidia_driver: z.ZodString;
1580
- }, z.core.$strip>;
1581
- third_party_api_access_config: z.ZodObject<{
1582
- metadata_url: z.ZodString;
1583
- aws_role_arn: z.ZodString;
1584
- gcp_workload_identity_provider: z.ZodString;
1585
- }, z.core.$strip>;
1586
- }, z.core.$strip>;
1587
- /**
1588
- * An array of invites
1589
- */
1590
- export declare const zListInvitesResponse: z.ZodArray<z.ZodObject<{
1591
- id: z.ZodOptional<z.ZodString>;
1592
- organization_id: z.ZodOptional<z.ZodUUID>;
1593
- date_created: z.ZodISODateTime;
1594
- email: z.ZodOptional<z.ZodEmail>;
1595
- code: z.ZodOptional<z.ZodString>;
1596
- }, z.core.$strip>>;
1597
- export declare const zCreateInviteBody: z.ZodObject<{
1598
- email: z.ZodOptional<z.ZodString>;
1599
- }, z.core.$strip>;
1600
- /**
1601
- * Successfully created. Returns created invite details.
1602
- */
1603
- export declare const zCreateInviteResponse: z.ZodObject<{
1604
- id: z.ZodOptional<z.ZodString>;
1605
- organization_id: z.ZodOptional<z.ZodUUID>;
1606
- date_created: z.ZodISODateTime;
1607
- email: z.ZodOptional<z.ZodEmail>;
1608
- code: z.ZodOptional<z.ZodString>;
1609
- }, z.core.$strip>;
1610
- export declare const zGetInvitePath: z.ZodObject<{
1611
- code: z.ZodString;
1612
- }, z.core.$strip>;
1613
- /**
1614
- * Returns a single object containing invite details.
1615
- */
1616
- export declare const zGetInviteResponse: z.ZodObject<{
1617
- id: z.ZodOptional<z.ZodString>;
1618
- organization_id: z.ZodOptional<z.ZodUUID>;
1619
- date_created: z.ZodISODateTime;
1620
- email: z.ZodOptional<z.ZodEmail>;
1621
- code: z.ZodOptional<z.ZodString>;
1622
- }, z.core.$strip>;
1623
- export declare const zDeleteInvitePath: z.ZodObject<{
1624
- email: z.ZodString;
1625
- }, z.core.$strip>;
1626
- /**
1627
- * An array of chart listings in the marketplace.
1628
- */
1629
- export declare const zListMarketplaceChartsResponse: z.ZodArray<z.ZodObject<{
1630
- name: z.ZodString;
1631
- versions: z.ZodArray<z.ZodString>;
1632
- version_channels: z.ZodArray<z.ZodString>;
1633
- latestVersion: z.ZodString;
1634
- metadata: z.ZodOptional<z.ZodObject<{
1635
- name: z.ZodString;
1636
- version: z.ZodString;
1637
- description: z.ZodOptional<z.ZodString>;
1638
- appVersion: z.ZodOptional<z.ZodString>;
1639
- apiVersion: z.ZodOptional<z.ZodString>;
1640
- keywords: z.ZodOptional<z.ZodArray<z.ZodString>>;
1641
- home: z.ZodOptional<z.ZodString>;
1642
- icon: z.ZodOptional<z.ZodString>;
1643
- sources: z.ZodOptional<z.ZodArray<z.ZodString>>;
1644
- maintainers: z.ZodOptional<z.ZodArray<z.ZodObject<{
1645
- name: z.ZodString;
1646
- email: z.ZodOptional<z.ZodString>;
1647
- }, z.core.$strip>>>;
1648
- }, z.core.$strip>>;
1649
3294
  }, z.core.$strip>>;
1650
- export declare const zGetMarketplaceChartFilesPath: z.ZodObject<{
1651
- chart_name: z.ZodString;
1652
- version_channel: z.ZodString;
1653
- }, z.core.$strip>;
1654
- /**
1655
- * Returns an object containing the chart files for the latest matching version.
1656
- */
1657
- export declare const zGetMarketplaceChartFilesResponse: z.ZodObject<{
1658
- chartYaml: z.ZodOptional<z.ZodString>;
1659
- valuesYaml: z.ZodOptional<z.ZodString>;
1660
- valuesSchemaJson: z.ZodOptional<z.ZodString>;
1661
- }, z.core.$strip>;
1662
- /**
1663
- * JSON-RPC 2.0 request payload
1664
- */
1665
- export declare const zPostMcpBody: z.ZodObject<{
1666
- jsonrpc: z.ZodOptional<z.ZodString>;
1667
- method: z.ZodOptional<z.ZodString>;
1668
- id: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>;
1669
- params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1670
- }, z.core.$strip>;
1671
- /**
1672
- * JSON-RPC 2.0 success or error response
1673
- */
1674
- export declare const zPostMcpResponse: z.ZodObject<{
1675
- jsonrpc: z.ZodOptional<z.ZodString>;
1676
- id: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>;
1677
- result: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1678
- error: z.ZodOptional<z.ZodObject<{
1679
- code: z.ZodOptional<z.ZodInt>;
1680
- message: z.ZodOptional<z.ZodString>;
1681
- }, z.core.$strip>>;
1682
- }, z.core.$strip>;
1683
- /**
1684
- * Returns a single object containing organization details.
1685
- */
1686
- export declare const zGetOrganizationResponse: z.ZodObject<{
1687
- id: z.ZodUUID;
1688
- name: z.ZodOptional<z.ZodString>;
1689
- date_created: z.ZodISODateTime;
1690
- quota: z.ZodObject<{
1691
- basic_clusters_max: z.ZodInt;
1692
- basic_clusters_available: z.ZodInt;
1693
- pro_clusters_max: z.ZodInt;
1694
- pro_clusters_available: z.ZodInt;
1695
- fleets_max: z.ZodInt;
1696
- cluster_tiers: z.ZodArray<z.ZodString>;
1697
- regions: z.ZodArray<z.ZodString>;
1698
- versions: z.ZodArray<z.ZodObject<{
1699
- id: z.ZodString;
1700
- label: z.ZodString;
1701
- }, z.core.$strip>>;
1702
- cfcr_storage_gb: z.ZodInt;
1703
- }, z.core.$strip>;
1704
- status: z.ZodEnum<{
1705
- active: "active";
1706
- closed: "closed";
1707
- suspended: "suspended";
3295
+ export declare const zCreateClusterBody: z.ZodObject<{
3296
+ name: z.ZodString;
3297
+ tier: z.ZodEnum<{
3298
+ basic: "basic";
3299
+ pro: "pro";
1708
3300
  }>;
1709
- }, z.core.$strip>;
1710
- export declare const zCreateOrganizationBody: z.ZodObject<{
1711
- email: z.ZodEmail;
1712
- first_name: z.ZodString;
1713
- last_name: z.ZodString;
1714
- company_name: z.ZodString;
1715
- password: z.ZodString;
3301
+ region: z.ZodString;
3302
+ version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
3303
+ release_channel: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
3304
+ stable: "stable";
3305
+ rapid: "rapid";
3306
+ extended: "extended";
3307
+ }>>>;
3308
+ features: z.ZodDefault<z.ZodOptional<z.ZodObject<{
3309
+ gpu_sharing_strategy: z.ZodEnum<{
3310
+ none: "none";
3311
+ mps: "mps";
3312
+ time_slicing: "time_slicing";
3313
+ }>;
3314
+ gpu_max_shared_clients_per_gpu: z.ZodInt;
3315
+ cilium_socket_lb_host_namespace_only: z.ZodOptional<z.ZodBoolean>;
3316
+ }, z.core.$strip>>>;
3317
+ networking: z.ZodOptional<z.ZodObject<{
3318
+ pod_cidr: z.ZodOptional<z.ZodString>;
3319
+ service_cidr: z.ZodOptional<z.ZodString>;
3320
+ cluster_dns: z.ZodOptional<z.ZodString>;
3321
+ dual_stack: z.ZodOptional<z.ZodBoolean>;
3322
+ pod_cidr_v6: z.ZodOptional<z.ZodString>;
3323
+ service_cidr_v6: z.ZodOptional<z.ZodString>;
3324
+ }, z.core.$strip>>;
1716
3325
  }, z.core.$strip>;
1717
3326
  /**
1718
- * List of repositories
3327
+ * Successfully created. Returns created Cluster ID.
1719
3328
  */
1720
- export declare const zListRepositoriesResponse: z.ZodArray<z.ZodObject<{
1721
- name: z.ZodString;
1722
- region: z.ZodString;
1723
- uri: z.ZodString;
1724
- }, z.core.$strip>>;
1725
- export declare const zListTagsPath: z.ZodObject<{
1726
- region: z.ZodString;
1727
- repository: z.ZodString;
3329
+ export declare const zCreateClusterResponse: z.ZodString;
3330
+ export declare const zDeleteClusterPath: z.ZodObject<{
3331
+ cluster_id: z.ZodString;
1728
3332
  }, z.core.$strip>;
1729
3333
  /**
1730
- * Repository with tags
3334
+ * Successfully deleted. The cluster has been torn down.
1731
3335
  */
1732
- export declare const zListTagsResponse: z.ZodObject<{
1733
- name: z.ZodString;
1734
- region: z.ZodString;
1735
- uri: z.ZodString;
1736
- tags: z.ZodArray<z.ZodObject<{
1737
- name: z.ZodString;
1738
- size: z.ZodNumber;
1739
- mediaType: z.ZodOptional<z.ZodString>;
1740
- platforms: z.ZodOptional<z.ZodArray<z.ZodString>>;
1741
- }, z.core.$strip>>;
1742
- totalSize: z.ZodNumber;
1743
- }, z.core.$strip>;
1744
- export declare const zDeleteTagPath: z.ZodObject<{
1745
- region: z.ZodString;
1746
- repository: z.ZodString;
1747
- tag: z.ZodString;
1748
- }, z.core.$strip>;
1749
- export declare const zGetTagPath: z.ZodObject<{
1750
- region: z.ZodString;
1751
- repository: z.ZodString;
1752
- tag: z.ZodString;
3336
+ export declare const zDeleteClusterResponse: z.ZodString;
3337
+ export declare const zGetClusterPath: z.ZodObject<{
3338
+ cluster_id: z.ZodString;
1753
3339
  }, z.core.$strip>;
1754
3340
  /**
1755
- * Tag details
3341
+ * Returns a single object containing cluster details.
1756
3342
  */
1757
- export declare const zGetTagResponse: z.ZodObject<{
3343
+ export declare const zGetClusterResponse: z.ZodObject<{
1758
3344
  name: z.ZodString;
1759
- digest: z.ZodString;
1760
- mediaType: z.ZodOptional<z.ZodString>;
1761
- config: z.ZodOptional<z.ZodObject<{
1762
- size: z.ZodNumber;
1763
- }, z.core.$strip>>;
1764
- layers: z.ZodOptional<z.ZodArray<z.ZodObject<{
1765
- digest: z.ZodOptional<z.ZodString>;
1766
- size: z.ZodNumber;
1767
- }, z.core.$strip>>>;
1768
- manifests: z.ZodOptional<z.ZodArray<z.ZodObject<{
1769
- digest: z.ZodString;
1770
- platform: z.ZodOptional<z.ZodObject<{
1771
- architecture: z.ZodString;
1772
- os: z.ZodString;
1773
- variant: z.ZodOptional<z.ZodString>;
1774
- }, z.core.$strip>>;
1775
- layers: z.ZodOptional<z.ZodArray<z.ZodObject<{
1776
- digest: z.ZodOptional<z.ZodString>;
1777
- size: z.ZodNumber;
1778
- }, z.core.$strip>>>;
1779
- size: z.ZodOptional<z.ZodNumber>;
1780
- }, z.core.$strip>>>;
1781
- size: z.ZodNumber;
3345
+ tier: z.ZodEnum<{
3346
+ basic: "basic";
3347
+ pro: "pro";
3348
+ }>;
1782
3349
  region: z.ZodString;
1783
- repository: z.ZodString;
1784
- uri: z.ZodString;
1785
- }, z.core.$strip>;
1786
- /**
1787
- * Tickets for the organization.
1788
- */
1789
- export declare const zListTicketsResponse: z.ZodObject<{
1790
- items: z.ZodArray<z.ZodObject<{
1791
- id: z.ZodString;
1792
- status: z.ZodEnum<{
1793
- closed: "closed";
1794
- waiting_on_us: "waiting_on_us";
1795
- waiting_on_user: "waiting_on_user";
1796
- }>;
1797
- category: z.ZodEnum<{
1798
- billing: "billing";
1799
- technical: "technical";
1800
- general: "general";
3350
+ networking: z.ZodOptional<z.ZodObject<{
3351
+ pod_cidr: z.ZodOptional<z.ZodString>;
3352
+ service_cidr: z.ZodOptional<z.ZodString>;
3353
+ cluster_dns: z.ZodOptional<z.ZodString>;
3354
+ dual_stack: z.ZodOptional<z.ZodBoolean>;
3355
+ pod_cidr_v6: z.ZodOptional<z.ZodString>;
3356
+ service_cidr_v6: z.ZodOptional<z.ZodString>;
3357
+ }, z.core.$strip>>;
3358
+ release_channel: z.ZodOptional<z.ZodEnum<{
3359
+ stable: "stable";
3360
+ rapid: "rapid";
3361
+ extended: "extended";
3362
+ }>>;
3363
+ features: z.ZodOptional<z.ZodObject<{
3364
+ gpu_sharing_strategy: z.ZodEnum<{
3365
+ none: "none";
3366
+ mps: "mps";
3367
+ time_slicing: "time_slicing";
1801
3368
  }>;
1802
- summary: z.ZodString;
1803
- closed_at: z.ZodOptional<z.ZodISODateTime>;
1804
- date_created: z.ZodISODateTime;
1805
- date_updated: z.ZodISODateTime;
1806
- messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
1807
- id: z.ZodString;
1808
- type: z.ZodEnum<{
1809
- customer_reply: "customer_reply";
1810
- agent_reply: "agent_reply";
1811
- }>;
1812
- body: z.ZodString;
1813
- author_first_name: z.ZodOptional<z.ZodString>;
1814
- author_last_name: z.ZodOptional<z.ZodString>;
1815
- attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
1816
- id: z.ZodString;
1817
- filename: z.ZodString;
1818
- content_type: z.ZodString;
1819
- size: z.ZodInt;
1820
- }, z.core.$strip>>>;
1821
- date_created: z.ZodISODateTime;
1822
- }, z.core.$strip>>>;
3369
+ gpu_max_shared_clients_per_gpu: z.ZodInt;
3370
+ cilium_socket_lb_host_namespace_only: z.ZodOptional<z.ZodBoolean>;
1823
3371
  }, z.core.$strip>>;
1824
- }, z.core.$strip>;
1825
- export declare const zCreateTicketBody: z.ZodObject<{
1826
- payload: z.ZodOptional<z.ZodString>;
1827
- attachments: z.ZodOptional<z.ZodArray<z.ZodString>>;
1828
- }, z.core.$strip>;
1829
- /**
1830
- * Ticket created.
1831
- */
1832
- export declare const zCreateTicketResponse: z.ZodObject<{
1833
- id: z.ZodString;
3372
+ id: z.ZodUUID;
1834
3373
  status: z.ZodEnum<{
1835
- closed: "closed";
1836
- waiting_on_us: "waiting_on_us";
1837
- waiting_on_user: "waiting_on_user";
3374
+ disabled: "disabled";
3375
+ creating: "creating";
3376
+ deployed: "deployed";
3377
+ updating: "updating";
1838
3378
  }>;
1839
- category: z.ZodEnum<{
1840
- billing: "billing";
1841
- technical: "technical";
1842
- general: "general";
3379
+ endpoint: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
3380
+ "": "";
3381
+ }>]>>;
3382
+ endpoint_public: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
3383
+ "": "";
3384
+ }>]>>;
3385
+ certificate_ca: z.ZodOptional<z.ZodString>;
3386
+ version_current: z.ZodOptional<z.ZodString>;
3387
+ created_at: z.ZodOptional<z.ZodString>;
3388
+ updated_at: z.ZodOptional<z.ZodString>;
3389
+ ready: z.ZodOptional<z.ZodBoolean>;
3390
+ version_channel: z.ZodOptional<z.ZodString>;
3391
+ }, z.core.$strip>;
3392
+ export declare const zUpdateClusterBody: z.ZodObject<{
3393
+ name: z.ZodOptional<z.ZodString>;
3394
+ tier: z.ZodEnum<{
3395
+ basic: "basic";
3396
+ pro: "pro";
1843
3397
  }>;
1844
- summary: z.ZodString;
1845
- closed_at: z.ZodOptional<z.ZodISODateTime>;
1846
- date_created: z.ZodISODateTime;
1847
- date_updated: z.ZodISODateTime;
1848
- messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
1849
- id: z.ZodString;
1850
- type: z.ZodEnum<{
1851
- customer_reply: "customer_reply";
1852
- agent_reply: "agent_reply";
3398
+ version_channel: z.ZodOptional<z.ZodString>;
3399
+ release_channel: z.ZodOptional<z.ZodEnum<{
3400
+ stable: "stable";
3401
+ rapid: "rapid";
3402
+ extended: "extended";
3403
+ }>>;
3404
+ features: z.ZodOptional<z.ZodObject<{
3405
+ gpu_sharing_strategy: z.ZodEnum<{
3406
+ none: "none";
3407
+ mps: "mps";
3408
+ time_slicing: "time_slicing";
1853
3409
  }>;
1854
- body: z.ZodString;
1855
- author_first_name: z.ZodOptional<z.ZodString>;
1856
- author_last_name: z.ZodOptional<z.ZodString>;
1857
- attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
1858
- id: z.ZodString;
1859
- filename: z.ZodString;
1860
- content_type: z.ZodString;
1861
- size: z.ZodInt;
1862
- }, z.core.$strip>>>;
1863
- date_created: z.ZodISODateTime;
1864
- }, z.core.$strip>>>;
3410
+ gpu_max_shared_clients_per_gpu: z.ZodInt;
3411
+ cilium_socket_lb_host_namespace_only: z.ZodOptional<z.ZodBoolean>;
3412
+ }, z.core.$strip>>;
1865
3413
  }, z.core.$strip>;
1866
- export declare const zCloseTicketPath: z.ZodObject<{
1867
- ticket_id: z.ZodString;
3414
+ export declare const zUpdateClusterPath: z.ZodObject<{
3415
+ cluster_id: z.ZodString;
1868
3416
  }, z.core.$strip>;
1869
3417
  /**
1870
- * Ticket closed.
3418
+ * Successfully updated. Returns updated cluster details.
1871
3419
  */
1872
- export declare const zCloseTicketResponse: z.ZodObject<{
1873
- id: z.ZodString;
1874
- status: z.ZodEnum<{
1875
- closed: "closed";
1876
- waiting_on_us: "waiting_on_us";
1877
- waiting_on_user: "waiting_on_user";
1878
- }>;
1879
- category: z.ZodEnum<{
1880
- billing: "billing";
1881
- technical: "technical";
1882
- general: "general";
3420
+ export declare const zUpdateClusterResponse: z.ZodObject<{
3421
+ name: z.ZodString;
3422
+ tier: z.ZodEnum<{
3423
+ basic: "basic";
3424
+ pro: "pro";
1883
3425
  }>;
1884
- summary: z.ZodString;
1885
- closed_at: z.ZodOptional<z.ZodISODateTime>;
1886
- date_created: z.ZodISODateTime;
1887
- date_updated: z.ZodISODateTime;
1888
- messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
1889
- id: z.ZodString;
1890
- type: z.ZodEnum<{
1891
- customer_reply: "customer_reply";
1892
- agent_reply: "agent_reply";
3426
+ region: z.ZodString;
3427
+ networking: z.ZodOptional<z.ZodObject<{
3428
+ pod_cidr: z.ZodOptional<z.ZodString>;
3429
+ service_cidr: z.ZodOptional<z.ZodString>;
3430
+ cluster_dns: z.ZodOptional<z.ZodString>;
3431
+ dual_stack: z.ZodOptional<z.ZodBoolean>;
3432
+ pod_cidr_v6: z.ZodOptional<z.ZodString>;
3433
+ service_cidr_v6: z.ZodOptional<z.ZodString>;
3434
+ }, z.core.$strip>>;
3435
+ release_channel: z.ZodOptional<z.ZodEnum<{
3436
+ stable: "stable";
3437
+ rapid: "rapid";
3438
+ extended: "extended";
3439
+ }>>;
3440
+ features: z.ZodOptional<z.ZodObject<{
3441
+ gpu_sharing_strategy: z.ZodEnum<{
3442
+ none: "none";
3443
+ mps: "mps";
3444
+ time_slicing: "time_slicing";
1893
3445
  }>;
1894
- body: z.ZodString;
1895
- author_first_name: z.ZodOptional<z.ZodString>;
1896
- author_last_name: z.ZodOptional<z.ZodString>;
1897
- attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
1898
- id: z.ZodString;
1899
- filename: z.ZodString;
1900
- content_type: z.ZodString;
1901
- size: z.ZodInt;
1902
- }, z.core.$strip>>>;
1903
- date_created: z.ZodISODateTime;
1904
- }, z.core.$strip>>>;
3446
+ gpu_max_shared_clients_per_gpu: z.ZodInt;
3447
+ cilium_socket_lb_host_namespace_only: z.ZodOptional<z.ZodBoolean>;
3448
+ }, z.core.$strip>>;
3449
+ id: z.ZodUUID;
3450
+ status: z.ZodEnum<{
3451
+ disabled: "disabled";
3452
+ creating: "creating";
3453
+ deployed: "deployed";
3454
+ updating: "updating";
3455
+ }>;
3456
+ endpoint: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
3457
+ "": "";
3458
+ }>]>>;
3459
+ endpoint_public: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
3460
+ "": "";
3461
+ }>]>>;
3462
+ certificate_ca: z.ZodOptional<z.ZodString>;
3463
+ version_current: z.ZodOptional<z.ZodString>;
3464
+ created_at: z.ZodOptional<z.ZodString>;
3465
+ updated_at: z.ZodOptional<z.ZodString>;
3466
+ ready: z.ZodOptional<z.ZodBoolean>;
3467
+ version_channel: z.ZodOptional<z.ZodString>;
1905
3468
  }, z.core.$strip>;
1906
- export declare const zGetTicketPath: z.ZodObject<{
1907
- ticket_id: z.ZodString;
3469
+ export declare const zGetJoinInformationPath: z.ZodObject<{
3470
+ cluster_id: z.ZodString;
1908
3471
  }, z.core.$strip>;
1909
3472
  /**
1910
- * Ticket with messages (internal notes excluded).
3473
+ * An object of cluster join information
1911
3474
  */
1912
- export declare const zGetTicketResponse: z.ZodObject<{
1913
- id: z.ZodString;
1914
- status: z.ZodEnum<{
1915
- closed: "closed";
1916
- waiting_on_us: "waiting_on_us";
1917
- waiting_on_user: "waiting_on_user";
1918
- }>;
1919
- category: z.ZodEnum<{
1920
- billing: "billing";
1921
- technical: "technical";
1922
- general: "general";
1923
- }>;
1924
- summary: z.ZodString;
1925
- closed_at: z.ZodOptional<z.ZodISODateTime>;
1926
- date_created: z.ZodISODateTime;
1927
- date_updated: z.ZodISODateTime;
1928
- messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
1929
- id: z.ZodString;
1930
- type: z.ZodEnum<{
1931
- customer_reply: "customer_reply";
1932
- agent_reply: "agent_reply";
1933
- }>;
1934
- body: z.ZodString;
1935
- author_first_name: z.ZodOptional<z.ZodString>;
1936
- author_last_name: z.ZodOptional<z.ZodString>;
1937
- attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
1938
- id: z.ZodString;
1939
- filename: z.ZodString;
1940
- content_type: z.ZodString;
1941
- size: z.ZodInt;
1942
- }, z.core.$strip>>>;
1943
- date_created: z.ZodISODateTime;
1944
- }, z.core.$strip>>>;
3475
+ export declare const zGetJoinInformationResponse: z.ZodObject<{
3476
+ certificate_authority: z.ZodString;
3477
+ endpoint: z.ZodURL;
3478
+ cluster_dns: z.ZodString;
3479
+ pod_cidr: z.ZodString;
3480
+ auth_key: z.ZodString;
3481
+ bootstrap_token: z.ZodString;
3482
+ versions: z.ZodObject<{
3483
+ kubernetes: z.ZodString;
3484
+ tailscale: z.ZodString;
3485
+ containerd: z.ZodString;
3486
+ nvidia_driver: z.ZodString;
3487
+ }, z.core.$strip>;
3488
+ third_party_api_access_config: z.ZodObject<{
3489
+ metadata_url: z.ZodString;
3490
+ aws_role_arn: z.ZodString;
3491
+ gcp_workload_identity_provider: z.ZodString;
3492
+ }, z.core.$strip>;
1945
3493
  }, z.core.$strip>;
1946
- export declare const zReplyTicketBody: z.ZodObject<{
1947
- payload: z.ZodOptional<z.ZodString>;
1948
- attachments: z.ZodOptional<z.ZodArray<z.ZodString>>;
3494
+ export declare const zGetUsageQuery: z.ZodObject<{
3495
+ granularity: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
3496
+ hourly: "hourly";
3497
+ daily: "daily";
3498
+ monthly: "monthly";
3499
+ }>>>;
1949
3500
  }, z.core.$strip>;
1950
- export declare const zReplyTicketPath: z.ZodObject<{
1951
- ticket_id: z.ZodString;
3501
+ /**
3502
+ * Usage data with facets for filtering
3503
+ */
3504
+ export declare const zGetUsageResponse: z.ZodObject<{
3505
+ data: z.ZodArray<z.ZodObject<{
3506
+ hour: z.ZodString;
3507
+ cluster_id: z.ZodString;
3508
+ product: z.ZodString;
3509
+ value: z.ZodNumber;
3510
+ price: z.ZodNumber;
3511
+ total: z.ZodNumber;
3512
+ }, z.core.$strip>>;
3513
+ facets: z.ZodObject<{
3514
+ cluster_id: z.ZodOptional<z.ZodArray<z.ZodString>>;
3515
+ product: z.ZodOptional<z.ZodArray<z.ZodString>>;
3516
+ }, z.core.$strip>;
1952
3517
  }, z.core.$strip>;
1953
3518
  /**
1954
- * Reply appended.
3519
+ * The client secret. Used for client-side retrieval using a publishable key. The client secret can be used to complete a payment from your frontend. It should not be stored, logged, or exposed to anyone other than the customer. Make sure that you have TLS enabled on any page that includes the client secret.
3520
+ *
1955
3521
  */
1956
- export declare const zReplyTicketResponse: z.ZodObject<{
3522
+ export declare const zGetPaymentMethodSecretResponse: z.ZodObject<{
3523
+ id: z.ZodOptional<z.ZodString>;
3524
+ }, z.core.$strip>;
3525
+ /**
3526
+ * An array of payment methods.
3527
+ */
3528
+ export declare const zListPaymentMethodsResponse: z.ZodArray<z.ZodObject<{
1957
3529
  id: z.ZodString;
1958
3530
  type: z.ZodEnum<{
1959
- customer_reply: "customer_reply";
1960
- agent_reply: "agent_reply";
3531
+ card: "card";
3532
+ sepa_debit: "sepa_debit";
3533
+ bank_transfer: "bank_transfer";
1961
3534
  }>;
1962
- body: z.ZodString;
1963
- author_first_name: z.ZodOptional<z.ZodString>;
1964
- author_last_name: z.ZodOptional<z.ZodString>;
1965
- attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
1966
- id: z.ZodString;
1967
- filename: z.ZodString;
1968
- content_type: z.ZodString;
1969
- size: z.ZodInt;
1970
- }, z.core.$strip>>>;
1971
- date_created: z.ZodISODateTime;
1972
- }, z.core.$strip>;
1973
- export declare const zGetTicketAttachmentPath: z.ZodObject<{
1974
- ticket_id: z.ZodString;
1975
- attachment_id: z.ZodString;
3535
+ last4: z.ZodString;
3536
+ exp_month: z.ZodInt;
3537
+ exp_year: z.ZodInt;
3538
+ brand: z.ZodString;
3539
+ iban: z.ZodString;
3540
+ bic: z.ZodString;
3541
+ account_holder_name: z.ZodString;
3542
+ is_default: z.ZodBoolean;
3543
+ }, z.core.$strip>>;
3544
+ export declare const zSetDefaultPaymentMethodPath: z.ZodObject<{
3545
+ paymentMethodId: z.ZodString;
1976
3546
  }, z.core.$strip>;
1977
3547
  /**
1978
- * Attachment binary stream.
3548
+ * Default payment method updated.
1979
3549
  */
1980
- export declare const zGetTicketAttachmentResponse: z.ZodString;
3550
+ export declare const zSetDefaultPaymentMethodResponse: z.ZodVoid;
3551
+ export declare const zDeletePaymentMethodPath: z.ZodObject<{
3552
+ paymentMethodId: z.ZodString;
3553
+ }, z.core.$strip>;
1981
3554
  /**
1982
- * Returns a list of access token details with masked secrets.
3555
+ * Payment method deleted.
1983
3556
  */
1984
- export declare const zListTokensResponse: z.ZodArray<z.ZodObject<{
1985
- name: z.ZodString;
1986
- role: z.ZodEnum<{
1987
- Administrator: "Administrator";
1988
- User: "User";
1989
- }>;
1990
- id: z.ZodOptional<z.ZodString>;
1991
- secret: z.ZodOptional<z.ZodString>;
1992
- date_created: z.ZodISODateTime;
1993
- }, z.core.$strip>>;
1994
- export declare const zCreateTokenBody: z.ZodObject<{
1995
- name: z.ZodString;
1996
- role: z.ZodEnum<{
1997
- Administrator: "Administrator";
1998
- User: "User";
1999
- }>;
2000
- }, z.core.$strip>;
3557
+ export declare const zDeletePaymentMethodResponse: z.ZodVoid;
2001
3558
  /**
2002
- * Successfully created. Returns created token details with unmasked/raw secret.
3559
+ * An array of usage records.
2003
3560
  */
2004
- export declare const zCreateTokenResponse: z.ZodObject<{
2005
- name: z.ZodString;
2006
- role: z.ZodEnum<{
2007
- Administrator: "Administrator";
2008
- User: "User";
2009
- }>;
3561
+ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
2010
3562
  id: z.ZodOptional<z.ZodString>;
2011
- secret: z.ZodOptional<z.ZodString>;
2012
- date_created: z.ZodISODateTime;
2013
- }, z.core.$strip>;
2014
- export declare const zDeleteTokenPath: z.ZodObject<{
2015
- token_id: z.ZodString;
2016
- }, z.core.$strip>;
2017
- export declare const zGetTokenPath: z.ZodObject<{
2018
- token_id: z.ZodString;
2019
- }, z.core.$strip>;
3563
+ number: z.ZodOptional<z.ZodString>;
3564
+ status: z.ZodOptional<z.ZodString>;
3565
+ total: z.ZodOptional<z.ZodNumber>;
3566
+ currency: z.ZodOptional<z.ZodString>;
3567
+ created: z.ZodISODateTime;
3568
+ period_start: z.ZodISODateTime;
3569
+ period_end: z.ZodISODateTime;
3570
+ invoice_pdf: z.ZodOptional<z.ZodString>;
3571
+ }, z.core.$strip>>;
2020
3572
  /**
2021
- * Returns access token details with masked secret.
3573
+ * Returns a single object containing organization contact and billing address details.
2022
3574
  */
2023
- export declare const zGetTokenResponse: z.ZodObject<{
2024
- name: z.ZodString;
2025
- role: z.ZodEnum<{
2026
- Administrator: "Administrator";
2027
- User: "User";
3575
+ export declare const zGetContactResponse: z.ZodObject<{
3576
+ type: z.ZodEnum<{
3577
+ business: "business";
3578
+ personal: "personal";
2028
3579
  }>;
2029
- id: z.ZodOptional<z.ZodString>;
2030
- secret: z.ZodOptional<z.ZodString>;
2031
- date_created: z.ZodISODateTime;
2032
- }, z.core.$strip>;
2033
- export declare const zUpdateTokenBody: z.ZodObject<{
2034
- name: z.ZodOptional<z.ZodString>;
2035
- role: z.ZodOptional<z.ZodEnum<{
2036
- Administrator: "Administrator";
2037
- User: "User";
3580
+ company: z.ZodOptional<z.ZodString>;
3581
+ address1: z.ZodOptional<z.ZodString>;
3582
+ address2: z.ZodOptional<z.ZodString>;
3583
+ postalCode: z.ZodOptional<z.ZodString>;
3584
+ city: z.ZodOptional<z.ZodString>;
3585
+ state: z.ZodOptional<z.ZodString>;
3586
+ country: z.ZodOptional<z.ZodString>;
3587
+ phone: z.ZodOptional<z.ZodString>;
3588
+ email: z.ZodEmail;
3589
+ individual_name: z.ZodString;
3590
+ tax_id: z.ZodOptional<z.ZodString>;
3591
+ tax_id_type: z.ZodOptional<z.ZodEnum<{
3592
+ "": "";
3593
+ ad_nrt: "ad_nrt";
3594
+ ae_trn: "ae_trn";
3595
+ al_tin: "al_tin";
3596
+ am_tin: "am_tin";
3597
+ ao_tin: "ao_tin";
3598
+ ar_cuit: "ar_cuit";
3599
+ at_vat: "at_vat";
3600
+ au_abn: "au_abn";
3601
+ au_arn: "au_arn";
3602
+ ba_tin: "ba_tin";
3603
+ bb_tin: "bb_tin";
3604
+ be_vat: "be_vat";
3605
+ bg_uic: "bg_uic";
3606
+ bg_vat: "bg_vat";
3607
+ bh_vat: "bh_vat";
3608
+ bo_tin: "bo_tin";
3609
+ br_cnpj: "br_cnpj";
3610
+ br_cpf: "br_cpf";
3611
+ bs_tin: "bs_tin";
3612
+ by_tin: "by_tin";
3613
+ ca_bn: "ca_bn";
3614
+ ca_gst_hst: "ca_gst_hst";
3615
+ ca_pst_bc: "ca_pst_bc";
3616
+ ca_pst_mb: "ca_pst_mb";
3617
+ ca_pst_sk: "ca_pst_sk";
3618
+ ca_qst: "ca_qst";
3619
+ cd_nif: "cd_nif";
3620
+ ch_uid: "ch_uid";
3621
+ ch_vat: "ch_vat";
3622
+ cl_tin: "cl_tin";
3623
+ cn_tin: "cn_tin";
3624
+ co_nit: "co_nit";
3625
+ cr_tin: "cr_tin";
3626
+ cy_vat: "cy_vat";
3627
+ cz_vat: "cz_vat";
3628
+ de_stn: "de_stn";
3629
+ de_vat: "de_vat";
3630
+ dk_vat: "dk_vat";
3631
+ do_rcn: "do_rcn";
3632
+ ec_ruc: "ec_ruc";
3633
+ ee_vat: "ee_vat";
3634
+ eg_tin: "eg_tin";
3635
+ es_cif: "es_cif";
3636
+ es_vat: "es_vat";
3637
+ eu_oss_vat: "eu_oss_vat";
3638
+ fi_vat: "fi_vat";
3639
+ fr_vat: "fr_vat";
3640
+ gb_vat: "gb_vat";
3641
+ ge_vat: "ge_vat";
3642
+ gn_nif: "gn_nif";
3643
+ gr_vat: "gr_vat";
3644
+ hk_br: "hk_br";
3645
+ hr_oib: "hr_oib";
3646
+ hr_vat: "hr_vat";
3647
+ hu_tin: "hu_tin";
3648
+ hu_vat: "hu_vat";
3649
+ id_npwp: "id_npwp";
3650
+ ie_vat: "ie_vat";
3651
+ il_vat: "il_vat";
3652
+ in_gst: "in_gst";
3653
+ is_vat: "is_vat";
3654
+ it_vat: "it_vat";
3655
+ jp_cn: "jp_cn";
3656
+ jp_rn: "jp_rn";
3657
+ jp_trn: "jp_trn";
3658
+ ke_pin: "ke_pin";
3659
+ kh_tin: "kh_tin";
3660
+ kr_brn: "kr_brn";
3661
+ kz_bin: "kz_bin";
3662
+ li_uid: "li_uid";
3663
+ li_vat: "li_vat";
3664
+ lt_vat: "lt_vat";
3665
+ lu_vat: "lu_vat";
3666
+ lv_vat: "lv_vat";
3667
+ ma_vat: "ma_vat";
3668
+ md_vat: "md_vat";
3669
+ me_pib: "me_pib";
3670
+ mk_vat: "mk_vat";
3671
+ mr_nif: "mr_nif";
3672
+ mt_vat: "mt_vat";
3673
+ mx_rfc: "mx_rfc";
3674
+ my_frp: "my_frp";
3675
+ my_itn: "my_itn";
3676
+ my_sst: "my_sst";
3677
+ ng_tin: "ng_tin";
3678
+ nl_vat: "nl_vat";
3679
+ no_vat: "no_vat";
3680
+ no_voec: "no_voec";
3681
+ np_pan: "np_pan";
3682
+ nz_gst: "nz_gst";
3683
+ om_vat: "om_vat";
3684
+ pe_ruc: "pe_ruc";
3685
+ ph_tin: "ph_tin";
3686
+ pl_vat: "pl_vat";
3687
+ pt_vat: "pt_vat";
3688
+ ro_tin: "ro_tin";
3689
+ ro_vat: "ro_vat";
3690
+ rs_pib: "rs_pib";
3691
+ ru_inn: "ru_inn";
3692
+ ru_kpp: "ru_kpp";
3693
+ sa_vat: "sa_vat";
3694
+ se_vat: "se_vat";
3695
+ sg_gst: "sg_gst";
3696
+ sg_uen: "sg_uen";
3697
+ si_tin: "si_tin";
3698
+ si_vat: "si_vat";
3699
+ sk_vat: "sk_vat";
3700
+ sn_ninea: "sn_ninea";
3701
+ sr_fin: "sr_fin";
3702
+ sv_nit: "sv_nit";
3703
+ th_vat: "th_vat";
3704
+ tj_tin: "tj_tin";
3705
+ tr_tin: "tr_tin";
3706
+ tw_vat: "tw_vat";
3707
+ tz_vat: "tz_vat";
3708
+ ua_vat: "ua_vat";
3709
+ ug_tin: "ug_tin";
3710
+ us_ein: "us_ein";
3711
+ uy_ruc: "uy_ruc";
3712
+ uz_tin: "uz_tin";
3713
+ uz_vat: "uz_vat";
3714
+ ve_rif: "ve_rif";
3715
+ vn_tin: "vn_tin";
3716
+ xi_vat: "xi_vat";
3717
+ za_vat: "za_vat";
3718
+ zm_tin: "zm_tin";
3719
+ zw_tin: "zw_tin";
2038
3720
  }>>;
2039
3721
  }, z.core.$strip>;
2040
- export declare const zUpdateTokenPath: z.ZodObject<{
2041
- token_id: z.ZodString;
2042
- }, z.core.$strip>;
2043
- /**
2044
- * Successfully updated. Returns updated token details with masked secret.
2045
- */
2046
- export declare const zUpdateTokenResponse: z.ZodObject<{
2047
- name: z.ZodString;
2048
- role: z.ZodEnum<{
2049
- Administrator: "Administrator";
2050
- User: "User";
2051
- }>;
2052
- id: z.ZodOptional<z.ZodString>;
2053
- secret: z.ZodOptional<z.ZodString>;
2054
- date_created: z.ZodISODateTime;
2055
- }, z.core.$strip>;
2056
- export declare const zRegenerateTokenPath: z.ZodObject<{
2057
- token_id: z.ZodString;
2058
- }, z.core.$strip>;
2059
- /**
2060
- * Successfully updated. Returns updated token details with unmasked / raw secret.
2061
- */
2062
- export declare const zRegenerateTokenResponse: z.ZodObject<{
2063
- name: z.ZodString;
2064
- role: z.ZodEnum<{
2065
- Administrator: "Administrator";
2066
- User: "User";
2067
- }>;
2068
- id: z.ZodOptional<z.ZodString>;
2069
- secret: z.ZodOptional<z.ZodString>;
2070
- date_created: z.ZodISODateTime;
2071
- }, z.core.$strip>;
2072
- export declare const zListUserOrganizationsPath: z.ZodObject<{
2073
- email: z.ZodString;
2074
- }, z.core.$strip>;
2075
- /**
2076
- * An array of organizations the user belongs to.
2077
- */
2078
- export declare const zListUserOrganizationsResponse: z.ZodArray<z.ZodObject<{
2079
- realm: z.ZodOptional<z.ZodString>;
2080
- displayName: z.ZodOptional<z.ZodString>;
2081
- }, z.core.$strip>>;
2082
- /**
2083
- * An array of users
2084
- */
2085
- export declare const zListUsersResponse: z.ZodArray<z.ZodObject<{
2086
- email: z.ZodEmail;
2087
- first_name: z.ZodString;
2088
- last_name: z.ZodString;
2089
- role: z.ZodEnum<{
2090
- Administrator: "Administrator";
2091
- User: "User";
2092
- }>;
2093
- status: z.ZodEnum<{
2094
- active: "active";
2095
- inactive: "inactive";
3722
+ export declare const zUpdateContactBody: z.ZodObject<{
3723
+ type: z.ZodEnum<{
3724
+ business: "business";
3725
+ personal: "personal";
2096
3726
  }>;
2097
- id: z.ZodUUID;
2098
- date_created: z.ZodISODateTime;
2099
- }, z.core.$strip>>;
2100
- export declare const zCreateUserBody: z.ZodObject<{
3727
+ company: z.ZodOptional<z.ZodString>;
3728
+ address1: z.ZodOptional<z.ZodString>;
3729
+ address2: z.ZodOptional<z.ZodString>;
3730
+ postalCode: z.ZodOptional<z.ZodString>;
3731
+ city: z.ZodOptional<z.ZodString>;
3732
+ state: z.ZodOptional<z.ZodString>;
3733
+ country: z.ZodOptional<z.ZodString>;
3734
+ phone: z.ZodOptional<z.ZodString>;
2101
3735
  email: z.ZodEmail;
2102
- first_name: z.ZodString;
2103
- last_name: z.ZodString;
2104
- code: z.ZodString;
2105
- password: z.ZodString;
2106
- status: z.ZodOptional<z.ZodEnum<{
2107
- active: "active";
2108
- inactive: "inactive";
2109
- }>>;
2110
- role: z.ZodOptional<z.ZodEnum<{
2111
- Administrator: "Administrator";
2112
- User: "User";
3736
+ individual_name: z.ZodString;
3737
+ tax_id: z.ZodOptional<z.ZodString>;
3738
+ tax_id_type: z.ZodOptional<z.ZodEnum<{
3739
+ "": "";
3740
+ ad_nrt: "ad_nrt";
3741
+ ae_trn: "ae_trn";
3742
+ al_tin: "al_tin";
3743
+ am_tin: "am_tin";
3744
+ ao_tin: "ao_tin";
3745
+ ar_cuit: "ar_cuit";
3746
+ at_vat: "at_vat";
3747
+ au_abn: "au_abn";
3748
+ au_arn: "au_arn";
3749
+ ba_tin: "ba_tin";
3750
+ bb_tin: "bb_tin";
3751
+ be_vat: "be_vat";
3752
+ bg_uic: "bg_uic";
3753
+ bg_vat: "bg_vat";
3754
+ bh_vat: "bh_vat";
3755
+ bo_tin: "bo_tin";
3756
+ br_cnpj: "br_cnpj";
3757
+ br_cpf: "br_cpf";
3758
+ bs_tin: "bs_tin";
3759
+ by_tin: "by_tin";
3760
+ ca_bn: "ca_bn";
3761
+ ca_gst_hst: "ca_gst_hst";
3762
+ ca_pst_bc: "ca_pst_bc";
3763
+ ca_pst_mb: "ca_pst_mb";
3764
+ ca_pst_sk: "ca_pst_sk";
3765
+ ca_qst: "ca_qst";
3766
+ cd_nif: "cd_nif";
3767
+ ch_uid: "ch_uid";
3768
+ ch_vat: "ch_vat";
3769
+ cl_tin: "cl_tin";
3770
+ cn_tin: "cn_tin";
3771
+ co_nit: "co_nit";
3772
+ cr_tin: "cr_tin";
3773
+ cy_vat: "cy_vat";
3774
+ cz_vat: "cz_vat";
3775
+ de_stn: "de_stn";
3776
+ de_vat: "de_vat";
3777
+ dk_vat: "dk_vat";
3778
+ do_rcn: "do_rcn";
3779
+ ec_ruc: "ec_ruc";
3780
+ ee_vat: "ee_vat";
3781
+ eg_tin: "eg_tin";
3782
+ es_cif: "es_cif";
3783
+ es_vat: "es_vat";
3784
+ eu_oss_vat: "eu_oss_vat";
3785
+ fi_vat: "fi_vat";
3786
+ fr_vat: "fr_vat";
3787
+ gb_vat: "gb_vat";
3788
+ ge_vat: "ge_vat";
3789
+ gn_nif: "gn_nif";
3790
+ gr_vat: "gr_vat";
3791
+ hk_br: "hk_br";
3792
+ hr_oib: "hr_oib";
3793
+ hr_vat: "hr_vat";
3794
+ hu_tin: "hu_tin";
3795
+ hu_vat: "hu_vat";
3796
+ id_npwp: "id_npwp";
3797
+ ie_vat: "ie_vat";
3798
+ il_vat: "il_vat";
3799
+ in_gst: "in_gst";
3800
+ is_vat: "is_vat";
3801
+ it_vat: "it_vat";
3802
+ jp_cn: "jp_cn";
3803
+ jp_rn: "jp_rn";
3804
+ jp_trn: "jp_trn";
3805
+ ke_pin: "ke_pin";
3806
+ kh_tin: "kh_tin";
3807
+ kr_brn: "kr_brn";
3808
+ kz_bin: "kz_bin";
3809
+ li_uid: "li_uid";
3810
+ li_vat: "li_vat";
3811
+ lt_vat: "lt_vat";
3812
+ lu_vat: "lu_vat";
3813
+ lv_vat: "lv_vat";
3814
+ ma_vat: "ma_vat";
3815
+ md_vat: "md_vat";
3816
+ me_pib: "me_pib";
3817
+ mk_vat: "mk_vat";
3818
+ mr_nif: "mr_nif";
3819
+ mt_vat: "mt_vat";
3820
+ mx_rfc: "mx_rfc";
3821
+ my_frp: "my_frp";
3822
+ my_itn: "my_itn";
3823
+ my_sst: "my_sst";
3824
+ ng_tin: "ng_tin";
3825
+ nl_vat: "nl_vat";
3826
+ no_vat: "no_vat";
3827
+ no_voec: "no_voec";
3828
+ np_pan: "np_pan";
3829
+ nz_gst: "nz_gst";
3830
+ om_vat: "om_vat";
3831
+ pe_ruc: "pe_ruc";
3832
+ ph_tin: "ph_tin";
3833
+ pl_vat: "pl_vat";
3834
+ pt_vat: "pt_vat";
3835
+ ro_tin: "ro_tin";
3836
+ ro_vat: "ro_vat";
3837
+ rs_pib: "rs_pib";
3838
+ ru_inn: "ru_inn";
3839
+ ru_kpp: "ru_kpp";
3840
+ sa_vat: "sa_vat";
3841
+ se_vat: "se_vat";
3842
+ sg_gst: "sg_gst";
3843
+ sg_uen: "sg_uen";
3844
+ si_tin: "si_tin";
3845
+ si_vat: "si_vat";
3846
+ sk_vat: "sk_vat";
3847
+ sn_ninea: "sn_ninea";
3848
+ sr_fin: "sr_fin";
3849
+ sv_nit: "sv_nit";
3850
+ th_vat: "th_vat";
3851
+ tj_tin: "tj_tin";
3852
+ tr_tin: "tr_tin";
3853
+ tw_vat: "tw_vat";
3854
+ tz_vat: "tz_vat";
3855
+ ua_vat: "ua_vat";
3856
+ ug_tin: "ug_tin";
3857
+ us_ein: "us_ein";
3858
+ uy_ruc: "uy_ruc";
3859
+ uz_tin: "uz_tin";
3860
+ uz_vat: "uz_vat";
3861
+ ve_rif: "ve_rif";
3862
+ vn_tin: "vn_tin";
3863
+ xi_vat: "xi_vat";
3864
+ za_vat: "za_vat";
3865
+ zm_tin: "zm_tin";
3866
+ zw_tin: "zw_tin";
2113
3867
  }>>;
2114
3868
  }, z.core.$strip>;
2115
3869
  /**
2116
- * Successfully created. Returns created user details.
2117
- */
2118
- export declare const zCreateUserResponse: z.ZodObject<{
2119
- email: z.ZodEmail;
2120
- first_name: z.ZodString;
2121
- last_name: z.ZodString;
2122
- role: z.ZodEnum<{
2123
- Administrator: "Administrator";
2124
- User: "User";
2125
- }>;
2126
- status: z.ZodEnum<{
2127
- active: "active";
2128
- inactive: "inactive";
2129
- }>;
2130
- id: z.ZodUUID;
2131
- date_created: z.ZodISODateTime;
2132
- }, z.core.$strip>;
2133
- export declare const zDeleteUserPath: z.ZodObject<{
2134
- user_id: z.ZodString;
2135
- }, z.core.$strip>;
2136
- /**
2137
- * User profile information
3870
+ * Successfully updated. Returns updated organization details.
2138
3871
  */
2139
- export declare const zDeleteUserResponse: z.ZodObject<{
2140
- email: z.ZodEmail;
2141
- first_name: z.ZodString;
2142
- last_name: z.ZodString;
2143
- role: z.ZodEnum<{
2144
- Administrator: "Administrator";
2145
- User: "User";
2146
- }>;
2147
- status: z.ZodEnum<{
2148
- active: "active";
2149
- inactive: "inactive";
3872
+ export declare const zUpdateContactResponse: z.ZodObject<{
3873
+ type: z.ZodEnum<{
3874
+ business: "business";
3875
+ personal: "personal";
2150
3876
  }>;
2151
- id: z.ZodUUID;
2152
- date_created: z.ZodISODateTime;
2153
- }, z.core.$strip>;
2154
- export declare const zGetUserPath: z.ZodObject<{
2155
- user_id: z.ZodString;
2156
- }, z.core.$strip>;
2157
- /**
2158
- * User profile information
2159
- */
2160
- export declare const zGetUserResponse: z.ZodObject<{
3877
+ company: z.ZodOptional<z.ZodString>;
3878
+ address1: z.ZodOptional<z.ZodString>;
3879
+ address2: z.ZodOptional<z.ZodString>;
3880
+ postalCode: z.ZodOptional<z.ZodString>;
3881
+ city: z.ZodOptional<z.ZodString>;
3882
+ state: z.ZodOptional<z.ZodString>;
3883
+ country: z.ZodOptional<z.ZodString>;
3884
+ phone: z.ZodOptional<z.ZodString>;
2161
3885
  email: z.ZodEmail;
2162
- first_name: z.ZodString;
2163
- last_name: z.ZodString;
2164
- role: z.ZodEnum<{
2165
- Administrator: "Administrator";
2166
- User: "User";
2167
- }>;
2168
- status: z.ZodEnum<{
2169
- active: "active";
2170
- inactive: "inactive";
2171
- }>;
2172
- id: z.ZodUUID;
2173
- date_created: z.ZodISODateTime;
2174
- }, z.core.$strip>;
2175
- export declare const zUpdateUserBody: z.ZodObject<{
2176
- email: z.ZodOptional<z.ZodEmail>;
2177
- first_name: z.ZodOptional<z.ZodString>;
2178
- last_name: z.ZodOptional<z.ZodString>;
2179
- role: z.ZodOptional<z.ZodEnum<{
2180
- Administrator: "Administrator";
2181
- User: "User";
2182
- }>>;
2183
- status: z.ZodOptional<z.ZodEnum<{
2184
- active: "active";
2185
- inactive: "inactive";
3886
+ individual_name: z.ZodString;
3887
+ tax_id: z.ZodOptional<z.ZodString>;
3888
+ tax_id_type: z.ZodOptional<z.ZodEnum<{
3889
+ "": "";
3890
+ ad_nrt: "ad_nrt";
3891
+ ae_trn: "ae_trn";
3892
+ al_tin: "al_tin";
3893
+ am_tin: "am_tin";
3894
+ ao_tin: "ao_tin";
3895
+ ar_cuit: "ar_cuit";
3896
+ at_vat: "at_vat";
3897
+ au_abn: "au_abn";
3898
+ au_arn: "au_arn";
3899
+ ba_tin: "ba_tin";
3900
+ bb_tin: "bb_tin";
3901
+ be_vat: "be_vat";
3902
+ bg_uic: "bg_uic";
3903
+ bg_vat: "bg_vat";
3904
+ bh_vat: "bh_vat";
3905
+ bo_tin: "bo_tin";
3906
+ br_cnpj: "br_cnpj";
3907
+ br_cpf: "br_cpf";
3908
+ bs_tin: "bs_tin";
3909
+ by_tin: "by_tin";
3910
+ ca_bn: "ca_bn";
3911
+ ca_gst_hst: "ca_gst_hst";
3912
+ ca_pst_bc: "ca_pst_bc";
3913
+ ca_pst_mb: "ca_pst_mb";
3914
+ ca_pst_sk: "ca_pst_sk";
3915
+ ca_qst: "ca_qst";
3916
+ cd_nif: "cd_nif";
3917
+ ch_uid: "ch_uid";
3918
+ ch_vat: "ch_vat";
3919
+ cl_tin: "cl_tin";
3920
+ cn_tin: "cn_tin";
3921
+ co_nit: "co_nit";
3922
+ cr_tin: "cr_tin";
3923
+ cy_vat: "cy_vat";
3924
+ cz_vat: "cz_vat";
3925
+ de_stn: "de_stn";
3926
+ de_vat: "de_vat";
3927
+ dk_vat: "dk_vat";
3928
+ do_rcn: "do_rcn";
3929
+ ec_ruc: "ec_ruc";
3930
+ ee_vat: "ee_vat";
3931
+ eg_tin: "eg_tin";
3932
+ es_cif: "es_cif";
3933
+ es_vat: "es_vat";
3934
+ eu_oss_vat: "eu_oss_vat";
3935
+ fi_vat: "fi_vat";
3936
+ fr_vat: "fr_vat";
3937
+ gb_vat: "gb_vat";
3938
+ ge_vat: "ge_vat";
3939
+ gn_nif: "gn_nif";
3940
+ gr_vat: "gr_vat";
3941
+ hk_br: "hk_br";
3942
+ hr_oib: "hr_oib";
3943
+ hr_vat: "hr_vat";
3944
+ hu_tin: "hu_tin";
3945
+ hu_vat: "hu_vat";
3946
+ id_npwp: "id_npwp";
3947
+ ie_vat: "ie_vat";
3948
+ il_vat: "il_vat";
3949
+ in_gst: "in_gst";
3950
+ is_vat: "is_vat";
3951
+ it_vat: "it_vat";
3952
+ jp_cn: "jp_cn";
3953
+ jp_rn: "jp_rn";
3954
+ jp_trn: "jp_trn";
3955
+ ke_pin: "ke_pin";
3956
+ kh_tin: "kh_tin";
3957
+ kr_brn: "kr_brn";
3958
+ kz_bin: "kz_bin";
3959
+ li_uid: "li_uid";
3960
+ li_vat: "li_vat";
3961
+ lt_vat: "lt_vat";
3962
+ lu_vat: "lu_vat";
3963
+ lv_vat: "lv_vat";
3964
+ ma_vat: "ma_vat";
3965
+ md_vat: "md_vat";
3966
+ me_pib: "me_pib";
3967
+ mk_vat: "mk_vat";
3968
+ mr_nif: "mr_nif";
3969
+ mt_vat: "mt_vat";
3970
+ mx_rfc: "mx_rfc";
3971
+ my_frp: "my_frp";
3972
+ my_itn: "my_itn";
3973
+ my_sst: "my_sst";
3974
+ ng_tin: "ng_tin";
3975
+ nl_vat: "nl_vat";
3976
+ no_vat: "no_vat";
3977
+ no_voec: "no_voec";
3978
+ np_pan: "np_pan";
3979
+ nz_gst: "nz_gst";
3980
+ om_vat: "om_vat";
3981
+ pe_ruc: "pe_ruc";
3982
+ ph_tin: "ph_tin";
3983
+ pl_vat: "pl_vat";
3984
+ pt_vat: "pt_vat";
3985
+ ro_tin: "ro_tin";
3986
+ ro_vat: "ro_vat";
3987
+ rs_pib: "rs_pib";
3988
+ ru_inn: "ru_inn";
3989
+ ru_kpp: "ru_kpp";
3990
+ sa_vat: "sa_vat";
3991
+ se_vat: "se_vat";
3992
+ sg_gst: "sg_gst";
3993
+ sg_uen: "sg_uen";
3994
+ si_tin: "si_tin";
3995
+ si_vat: "si_vat";
3996
+ sk_vat: "sk_vat";
3997
+ sn_ninea: "sn_ninea";
3998
+ sr_fin: "sr_fin";
3999
+ sv_nit: "sv_nit";
4000
+ th_vat: "th_vat";
4001
+ tj_tin: "tj_tin";
4002
+ tr_tin: "tr_tin";
4003
+ tw_vat: "tw_vat";
4004
+ tz_vat: "tz_vat";
4005
+ ua_vat: "ua_vat";
4006
+ ug_tin: "ug_tin";
4007
+ us_ein: "us_ein";
4008
+ uy_ruc: "uy_ruc";
4009
+ uz_tin: "uz_tin";
4010
+ uz_vat: "uz_vat";
4011
+ ve_rif: "ve_rif";
4012
+ vn_tin: "vn_tin";
4013
+ xi_vat: "xi_vat";
4014
+ za_vat: "za_vat";
4015
+ zm_tin: "zm_tin";
4016
+ zw_tin: "zw_tin";
2186
4017
  }>>;
2187
4018
  }, z.core.$strip>;
2188
- export declare const zUpdateUserPath: z.ZodObject<{
2189
- user_id: z.ZodString;
2190
- }, z.core.$strip>;
2191
4019
  /**
2192
- * Successfully created. Returns created user details.
4020
+ * An array of the applied promotional credits records.
2193
4021
  */
2194
- export declare const zUpdateUserResponse: z.ZodObject<{
2195
- email: z.ZodEmail;
2196
- first_name: z.ZodString;
2197
- last_name: z.ZodString;
2198
- role: z.ZodEnum<{
2199
- Administrator: "Administrator";
2200
- User: "User";
2201
- }>;
2202
- status: z.ZodEnum<{
2203
- active: "active";
2204
- inactive: "inactive";
4022
+ export declare const zGetCreditsResponse: z.ZodArray<z.ZodObject<{
4023
+ id: z.ZodOptional<z.ZodString>;
4024
+ type: z.ZodEnum<{
4025
+ credit: "credit";
4026
+ discount: "discount";
2205
4027
  }>;
2206
- id: z.ZodUUID;
2207
- date_created: z.ZodISODateTime;
4028
+ date_start: z.ZodISODateTime;
4029
+ date_end: z.ZodOptional<z.ZodISODateTime>;
4030
+ code: z.ZodString;
4031
+ description: z.ZodOptional<z.ZodString>;
4032
+ value_total: z.ZodNumber;
4033
+ value_remaining: z.ZodOptional<z.ZodNumber>;
4034
+ }, z.core.$strip>>;
4035
+ export declare const zRedeemCreditsBody: z.ZodObject<{
4036
+ code: z.ZodOptional<z.ZodString>;
2208
4037
  }, z.core.$strip>;
2209
4038
  //# sourceMappingURL=zod.gen.d.ts.map