@cloudfleet/sdk 0.0.1-82e92ad → 0.0.1-84adc67

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";
@@ -272,59 +288,804 @@ export declare const zClusterUpdateInput: z.ZodObject<{
272
288
  pro: "pro";
273
289
  }>;
274
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>>;
275
305
  }, z.core.$strip>;
276
306
  export declare const zFleetCreateInput: z.ZodObject<{
277
307
  limits: z.ZodOptional<z.ZodObject<{
278
- cpu: z.ZodNumber;
308
+ cpu: z.ZodOptional<z.ZodInt>;
279
309
  }, z.core.$strip>>;
280
310
  gcp: z.ZodOptional<z.ZodObject<{
281
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
282
- project: z.ZodString;
311
+ enabled: z.ZodBoolean;
312
+ project: z.ZodOptional<z.ZodString>;
283
313
  }, z.core.$strip>>;
284
314
  hetzner: z.ZodOptional<z.ZodObject<{
285
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
286
- apiKey: z.ZodString;
315
+ enabled: z.ZodBoolean;
316
+ apiKey: z.ZodOptional<z.ZodString>;
287
317
  }, z.core.$strip>>;
288
318
  aws: z.ZodOptional<z.ZodObject<{
289
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
290
- 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
+ }>>>;
291
557
  }, z.core.$strip>>;
558
+ scalingProfile: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
559
+ aggressive: "aggressive";
560
+ conservative: "conservative";
561
+ }>>>;
292
562
  id: z.ZodString;
293
563
  }, z.core.$strip>;
294
564
  export declare const zFleet: z.ZodObject<{
295
565
  limits: z.ZodOptional<z.ZodObject<{
296
- cpu: z.ZodNumber;
566
+ cpu: z.ZodOptional<z.ZodInt>;
297
567
  }, z.core.$strip>>;
298
568
  gcp: z.ZodOptional<z.ZodObject<{
299
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
300
- project: z.ZodString;
569
+ enabled: z.ZodBoolean;
570
+ project: z.ZodOptional<z.ZodString>;
301
571
  }, z.core.$strip>>;
302
572
  hetzner: z.ZodOptional<z.ZodObject<{
303
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
304
- apiKey: z.ZodString;
573
+ enabled: z.ZodBoolean;
574
+ apiKey: z.ZodOptional<z.ZodString>;
305
575
  }, z.core.$strip>>;
306
576
  aws: z.ZodOptional<z.ZodObject<{
307
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
308
- 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
+ }>>>;
309
815
  }, z.core.$strip>>;
816
+ scalingProfile: z.ZodDefault<z.ZodEnum<{
817
+ aggressive: "aggressive";
818
+ conservative: "conservative";
819
+ }>>;
310
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;
311
825
  }, z.core.$strip>;
312
826
  export declare const zFleetUpdateInput: z.ZodObject<{
313
827
  limits: z.ZodOptional<z.ZodObject<{
314
- cpu: z.ZodNumber;
828
+ cpu: z.ZodOptional<z.ZodInt>;
315
829
  }, z.core.$strip>>;
316
830
  gcp: z.ZodOptional<z.ZodObject<{
317
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
318
- project: z.ZodString;
831
+ enabled: z.ZodBoolean;
832
+ project: z.ZodOptional<z.ZodString>;
319
833
  }, z.core.$strip>>;
320
834
  hetzner: z.ZodOptional<z.ZodObject<{
321
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
322
- apiKey: z.ZodString;
835
+ enabled: z.ZodBoolean;
836
+ apiKey: z.ZodOptional<z.ZodString>;
323
837
  }, z.core.$strip>>;
324
838
  aws: z.ZodOptional<z.ZodObject<{
325
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
326
- controllerRoleArn: z.ZodString;
839
+ enabled: z.ZodBoolean;
840
+ controllerRoleArn: z.ZodOptional<z.ZodString>;
327
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
+ }>>>;
328
1089
  }, z.core.$strip>;
329
1090
  export declare const zInvite: z.ZodObject<{
330
1091
  id: z.ZodOptional<z.ZodString>;
@@ -332,6 +1093,10 @@ export declare const zInvite: z.ZodObject<{
332
1093
  date_created: z.ZodISODateTime;
333
1094
  email: z.ZodOptional<z.ZodEmail>;
334
1095
  code: z.ZodOptional<z.ZodString>;
1096
+ role: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
1097
+ Administrator: "Administrator";
1098
+ User: "User";
1099
+ }>>>;
335
1100
  }, z.core.$strip>;
336
1101
  export declare const zInvoice: z.ZodObject<{
337
1102
  id: z.ZodOptional<z.ZodString>;
@@ -371,15 +1136,26 @@ export declare const zMarketplaceListing: z.ZodObject<{
371
1136
  }, z.core.$strip>>;
372
1137
  }, z.core.$strip>;
373
1138
  export declare const zOrganizationCreateInput: z.ZodObject<{
1139
+ type: z.ZodEnum<{
1140
+ business: "business";
1141
+ personal: "personal";
1142
+ }>;
374
1143
  email: z.ZodEmail;
375
1144
  first_name: z.ZodString;
376
1145
  last_name: z.ZodString;
377
1146
  company_name: z.ZodString;
378
1147
  password: z.ZodString;
379
1148
  }, z.core.$strip>;
1149
+ export declare const zOrganizationCreateOutput: z.ZodObject<{
1150
+ id: z.ZodString;
1151
+ }, z.core.$strip>;
380
1152
  export declare const zOrganization: z.ZodObject<{
381
1153
  id: z.ZodUUID;
382
1154
  name: z.ZodOptional<z.ZodString>;
1155
+ type: z.ZodEnum<{
1156
+ business: "business";
1157
+ personal: "personal";
1158
+ }>;
383
1159
  date_created: z.ZodISODateTime;
384
1160
  quota: z.ZodObject<{
385
1161
  basic_clusters_max: z.ZodInt;
@@ -400,27 +1176,27 @@ export declare const zOrganization: z.ZodObject<{
400
1176
  closed: "closed";
401
1177
  suspended: "suspended";
402
1178
  }>;
1179
+ verification: z.ZodEnum<{
1180
+ none: "none";
1181
+ submitted: "submitted";
1182
+ verified: "verified";
1183
+ }>;
403
1184
  }, z.core.$strip>;
404
1185
  export declare const zPaymentMethod: z.ZodObject<{
405
- id: z.ZodUUID;
406
- setup: z.ZodBoolean;
1186
+ id: z.ZodString;
407
1187
  type: z.ZodEnum<{
408
1188
  card: "card";
1189
+ sepa_debit: "sepa_debit";
1190
+ bank_transfer: "bank_transfer";
409
1191
  }>;
410
1192
  last4: z.ZodString;
411
1193
  exp_month: z.ZodInt;
412
1194
  exp_year: z.ZodInt;
413
- brand: z.ZodEnum<{
414
- unknown: "unknown";
415
- amex: "amex";
416
- diners: "diners";
417
- discover: "discover";
418
- eftpos_au: "eftpos_au";
419
- jcb: "jcb";
420
- mastercard: "mastercard";
421
- unionpay: "unionpay";
422
- visa: "visa";
423
- }>;
1195
+ brand: z.ZodString;
1196
+ iban: z.ZodString;
1197
+ bic: z.ZodString;
1198
+ account_holder_name: z.ZodString;
1199
+ is_default: z.ZodBoolean;
424
1200
  }, z.core.$strip>;
425
1201
  export declare const zPlatformQuota: z.ZodObject<{
426
1202
  basic_clusters_max: z.ZodInt;
@@ -643,16 +1419,49 @@ export declare const zUserCreateInput: z.ZodObject<{
643
1419
  last_name: z.ZodString;
644
1420
  code: z.ZodString;
645
1421
  password: z.ZodString;
646
- 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<{
647
1432
  active: "active";
648
1433
  inactive: "inactive";
649
- }>>;
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>;
650
1442
  role: z.ZodOptional<z.ZodEnum<{
651
1443
  Administrator: "Administrator";
652
1444
  User: "User";
653
1445
  }>>;
1446
+ status: z.ZodOptional<z.ZodEnum<{
1447
+ active: "active";
1448
+ inactive: "inactive";
1449
+ }>>;
654
1450
  }, z.core.$strip>;
655
- 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<{
656
1465
  email: z.ZodEmail;
657
1466
  first_name: z.ZodString;
658
1467
  last_name: z.ZodString;
@@ -666,8 +1475,75 @@ export declare const zUser: z.ZodObject<{
666
1475
  }>;
667
1476
  id: z.ZodUUID;
668
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;
669
1485
  }, z.core.$strip>;
670
- 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<{
671
1547
  email: z.ZodOptional<z.ZodEmail>;
672
1548
  first_name: z.ZodOptional<z.ZodString>;
673
1549
  last_name: z.ZodOptional<z.ZodString>;
@@ -680,630 +1556,544 @@ export declare const zUserUpdateInput: z.ZodObject<{
680
1556
  inactive: "inactive";
681
1557
  }>>;
682
1558
  }, z.core.$strip>;
683
- export declare const zGetUsageQuery: z.ZodObject<{
684
- granularity: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
685
- hourly: "hourly";
686
- daily: "daily";
687
- monthly: "monthly";
688
- }>>>;
1559
+ export declare const zUpdateUserPath: z.ZodObject<{
1560
+ user_id: z.ZodString;
689
1561
  }, z.core.$strip>;
690
1562
  /**
691
- * Usage data with facets for filtering
1563
+ * Successfully created. Returns created user details.
692
1564
  */
693
- export declare const zGetUsageResponse: z.ZodObject<{
694
- data: z.ZodArray<z.ZodObject<{
695
- hour: z.ZodString;
696
- cluster_id: z.ZodString;
697
- product: z.ZodString;
698
- value: z.ZodNumber;
699
- price: z.ZodNumber;
700
- total: z.ZodNumber;
701
- }, z.core.$strip>>;
702
- facets: z.ZodObject<{
703
- cluster_id: z.ZodOptional<z.ZodArray<z.ZodString>>;
704
- product: z.ZodOptional<z.ZodArray<z.ZodString>>;
705
- }, 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;
706
1579
  }, z.core.$strip>;
707
1580
  /**
708
- * Redacted payment card information.
1581
+ * Returns a list of access token details with masked secrets.
709
1582
  */
710
- export declare const zGetPaymentMethodResponse: z.ZodObject<{
711
- id: z.ZodUUID;
712
- setup: z.ZodBoolean;
713
- type: z.ZodEnum<{
714
- 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";
715
1588
  }>;
716
- last4: z.ZodString;
717
- exp_month: z.ZodInt;
718
- exp_year: z.ZodInt;
719
- brand: z.ZodEnum<{
720
- unknown: "unknown";
721
- amex: "amex";
722
- diners: "diners";
723
- discover: "discover";
724
- eftpos_au: "eftpos_au";
725
- jcb: "jcb";
726
- mastercard: "mastercard";
727
- unionpay: "unionpay";
728
- 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";
729
1598
  }>;
730
1599
  }, z.core.$strip>;
731
1600
  /**
732
- * 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.
733
- *
1601
+ * Successfully created. Returns created token details with unmasked/raw secret.
734
1602
  */
735
- 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
+ }>;
736
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;
737
1618
  }, z.core.$strip>;
738
1619
  /**
739
- * An array of usage records.
1620
+ * Returns access token details with masked secret.
740
1621
  */
741
- 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
+ }>;
742
1628
  id: z.ZodOptional<z.ZodString>;
743
- number: z.ZodOptional<z.ZodString>;
744
- status: z.ZodOptional<z.ZodString>;
745
- total: z.ZodOptional<z.ZodNumber>;
746
- currency: z.ZodOptional<z.ZodString>;
747
- created: z.ZodISODateTime;
748
- period_start: z.ZodISODateTime;
749
- period_end: z.ZodISODateTime;
750
- invoice_pdf: z.ZodOptional<z.ZodString>;
751
- }, z.core.$strip>>;
752
- /**
753
- * Returns a single object containing organization contact and billing address details.
754
- */
755
- export declare const zGetContactResponse: z.ZodObject<{
756
- company: z.ZodOptional<z.ZodString>;
757
- address1: z.ZodOptional<z.ZodString>;
758
- address2: z.ZodOptional<z.ZodString>;
759
- postalCode: z.ZodOptional<z.ZodString>;
760
- city: z.ZodOptional<z.ZodString>;
761
- state: z.ZodOptional<z.ZodString>;
762
- country: z.ZodOptional<z.ZodString>;
763
- phone: z.ZodOptional<z.ZodString>;
764
- email: z.ZodEmail;
765
- individual_name: z.ZodString;
766
- tax_id: z.ZodOptional<z.ZodString>;
767
- tax_id_type: z.ZodOptional<z.ZodEnum<{
768
- "": "";
769
- ad_nrt: "ad_nrt";
770
- ae_trn: "ae_trn";
771
- al_tin: "al_tin";
772
- am_tin: "am_tin";
773
- ao_tin: "ao_tin";
774
- ar_cuit: "ar_cuit";
775
- at_vat: "at_vat";
776
- au_abn: "au_abn";
777
- au_arn: "au_arn";
778
- ba_tin: "ba_tin";
779
- bb_tin: "bb_tin";
780
- be_vat: "be_vat";
781
- bg_uic: "bg_uic";
782
- bg_vat: "bg_vat";
783
- bh_vat: "bh_vat";
784
- bo_tin: "bo_tin";
785
- br_cnpj: "br_cnpj";
786
- br_cpf: "br_cpf";
787
- bs_tin: "bs_tin";
788
- by_tin: "by_tin";
789
- ca_bn: "ca_bn";
790
- ca_gst_hst: "ca_gst_hst";
791
- ca_pst_bc: "ca_pst_bc";
792
- ca_pst_mb: "ca_pst_mb";
793
- ca_pst_sk: "ca_pst_sk";
794
- ca_qst: "ca_qst";
795
- cd_nif: "cd_nif";
796
- ch_uid: "ch_uid";
797
- ch_vat: "ch_vat";
798
- cl_tin: "cl_tin";
799
- cn_tin: "cn_tin";
800
- co_nit: "co_nit";
801
- cr_tin: "cr_tin";
802
- cy_vat: "cy_vat";
803
- cz_vat: "cz_vat";
804
- de_stn: "de_stn";
805
- de_vat: "de_vat";
806
- dk_vat: "dk_vat";
807
- do_rcn: "do_rcn";
808
- ec_ruc: "ec_ruc";
809
- ee_vat: "ee_vat";
810
- eg_tin: "eg_tin";
811
- es_cif: "es_cif";
812
- es_vat: "es_vat";
813
- eu_oss_vat: "eu_oss_vat";
814
- fi_vat: "fi_vat";
815
- fr_vat: "fr_vat";
816
- gb_vat: "gb_vat";
817
- ge_vat: "ge_vat";
818
- gn_nif: "gn_nif";
819
- gr_vat: "gr_vat";
820
- hk_br: "hk_br";
821
- hr_oib: "hr_oib";
822
- hr_vat: "hr_vat";
823
- hu_tin: "hu_tin";
824
- hu_vat: "hu_vat";
825
- id_npwp: "id_npwp";
826
- ie_vat: "ie_vat";
827
- il_vat: "il_vat";
828
- in_gst: "in_gst";
829
- is_vat: "is_vat";
830
- it_vat: "it_vat";
831
- jp_cn: "jp_cn";
832
- jp_rn: "jp_rn";
833
- jp_trn: "jp_trn";
834
- ke_pin: "ke_pin";
835
- kh_tin: "kh_tin";
836
- kr_brn: "kr_brn";
837
- kz_bin: "kz_bin";
838
- li_uid: "li_uid";
839
- li_vat: "li_vat";
840
- lt_vat: "lt_vat";
841
- lu_vat: "lu_vat";
842
- lv_vat: "lv_vat";
843
- ma_vat: "ma_vat";
844
- md_vat: "md_vat";
845
- me_pib: "me_pib";
846
- mk_vat: "mk_vat";
847
- mr_nif: "mr_nif";
848
- mt_vat: "mt_vat";
849
- mx_rfc: "mx_rfc";
850
- my_frp: "my_frp";
851
- my_itn: "my_itn";
852
- my_sst: "my_sst";
853
- ng_tin: "ng_tin";
854
- nl_vat: "nl_vat";
855
- no_vat: "no_vat";
856
- no_voec: "no_voec";
857
- np_pan: "np_pan";
858
- nz_gst: "nz_gst";
859
- om_vat: "om_vat";
860
- pe_ruc: "pe_ruc";
861
- ph_tin: "ph_tin";
862
- pl_vat: "pl_vat";
863
- pt_vat: "pt_vat";
864
- ro_tin: "ro_tin";
865
- ro_vat: "ro_vat";
866
- rs_pib: "rs_pib";
867
- ru_inn: "ru_inn";
868
- ru_kpp: "ru_kpp";
869
- sa_vat: "sa_vat";
870
- se_vat: "se_vat";
871
- sg_gst: "sg_gst";
872
- sg_uen: "sg_uen";
873
- si_tin: "si_tin";
874
- si_vat: "si_vat";
875
- sk_vat: "sk_vat";
876
- sn_ninea: "sn_ninea";
877
- sr_fin: "sr_fin";
878
- sv_nit: "sv_nit";
879
- th_vat: "th_vat";
880
- tj_tin: "tj_tin";
881
- tr_tin: "tr_tin";
882
- tw_vat: "tw_vat";
883
- tz_vat: "tz_vat";
884
- ua_vat: "ua_vat";
885
- ug_tin: "ug_tin";
886
- us_ein: "us_ein";
887
- uy_ruc: "uy_ruc";
888
- uz_tin: "uz_tin";
889
- uz_vat: "uz_vat";
890
- ve_rif: "ve_rif";
891
- vn_tin: "vn_tin";
892
- xi_vat: "xi_vat";
893
- za_vat: "za_vat";
894
- zm_tin: "zm_tin";
895
- zw_tin: "zw_tin";
896
- }>>;
1629
+ secret: z.ZodOptional<z.ZodString>;
1630
+ date_created: z.ZodISODateTime;
897
1631
  }, z.core.$strip>;
898
- export declare const zUpdateContactBody: z.ZodObject<{
899
- company: z.ZodOptional<z.ZodString>;
900
- address1: z.ZodOptional<z.ZodString>;
901
- address2: z.ZodOptional<z.ZodString>;
902
- postalCode: z.ZodOptional<z.ZodString>;
903
- city: z.ZodOptional<z.ZodString>;
904
- state: z.ZodOptional<z.ZodString>;
905
- country: z.ZodOptional<z.ZodString>;
906
- phone: z.ZodOptional<z.ZodString>;
907
- email: z.ZodEmail;
908
- individual_name: z.ZodString;
909
- tax_id: z.ZodOptional<z.ZodString>;
910
- tax_id_type: z.ZodOptional<z.ZodEnum<{
911
- "": "";
912
- ad_nrt: "ad_nrt";
913
- ae_trn: "ae_trn";
914
- al_tin: "al_tin";
915
- am_tin: "am_tin";
916
- ao_tin: "ao_tin";
917
- ar_cuit: "ar_cuit";
918
- at_vat: "at_vat";
919
- au_abn: "au_abn";
920
- au_arn: "au_arn";
921
- ba_tin: "ba_tin";
922
- bb_tin: "bb_tin";
923
- be_vat: "be_vat";
924
- bg_uic: "bg_uic";
925
- bg_vat: "bg_vat";
926
- bh_vat: "bh_vat";
927
- bo_tin: "bo_tin";
928
- br_cnpj: "br_cnpj";
929
- br_cpf: "br_cpf";
930
- bs_tin: "bs_tin";
931
- by_tin: "by_tin";
932
- ca_bn: "ca_bn";
933
- ca_gst_hst: "ca_gst_hst";
934
- ca_pst_bc: "ca_pst_bc";
935
- ca_pst_mb: "ca_pst_mb";
936
- ca_pst_sk: "ca_pst_sk";
937
- ca_qst: "ca_qst";
938
- cd_nif: "cd_nif";
939
- ch_uid: "ch_uid";
940
- ch_vat: "ch_vat";
941
- cl_tin: "cl_tin";
942
- cn_tin: "cn_tin";
943
- co_nit: "co_nit";
944
- cr_tin: "cr_tin";
945
- cy_vat: "cy_vat";
946
- cz_vat: "cz_vat";
947
- de_stn: "de_stn";
948
- de_vat: "de_vat";
949
- dk_vat: "dk_vat";
950
- do_rcn: "do_rcn";
951
- ec_ruc: "ec_ruc";
952
- ee_vat: "ee_vat";
953
- eg_tin: "eg_tin";
954
- es_cif: "es_cif";
955
- es_vat: "es_vat";
956
- eu_oss_vat: "eu_oss_vat";
957
- fi_vat: "fi_vat";
958
- fr_vat: "fr_vat";
959
- gb_vat: "gb_vat";
960
- ge_vat: "ge_vat";
961
- gn_nif: "gn_nif";
962
- gr_vat: "gr_vat";
963
- hk_br: "hk_br";
964
- hr_oib: "hr_oib";
965
- hr_vat: "hr_vat";
966
- hu_tin: "hu_tin";
967
- hu_vat: "hu_vat";
968
- id_npwp: "id_npwp";
969
- ie_vat: "ie_vat";
970
- il_vat: "il_vat";
971
- in_gst: "in_gst";
972
- is_vat: "is_vat";
973
- it_vat: "it_vat";
974
- jp_cn: "jp_cn";
975
- jp_rn: "jp_rn";
976
- jp_trn: "jp_trn";
977
- ke_pin: "ke_pin";
978
- kh_tin: "kh_tin";
979
- kr_brn: "kr_brn";
980
- kz_bin: "kz_bin";
981
- li_uid: "li_uid";
982
- li_vat: "li_vat";
983
- lt_vat: "lt_vat";
984
- lu_vat: "lu_vat";
985
- lv_vat: "lv_vat";
986
- ma_vat: "ma_vat";
987
- md_vat: "md_vat";
988
- me_pib: "me_pib";
989
- mk_vat: "mk_vat";
990
- mr_nif: "mr_nif";
991
- mt_vat: "mt_vat";
992
- mx_rfc: "mx_rfc";
993
- my_frp: "my_frp";
994
- my_itn: "my_itn";
995
- my_sst: "my_sst";
996
- ng_tin: "ng_tin";
997
- nl_vat: "nl_vat";
998
- no_vat: "no_vat";
999
- no_voec: "no_voec";
1000
- np_pan: "np_pan";
1001
- nz_gst: "nz_gst";
1002
- om_vat: "om_vat";
1003
- pe_ruc: "pe_ruc";
1004
- ph_tin: "ph_tin";
1005
- pl_vat: "pl_vat";
1006
- pt_vat: "pt_vat";
1007
- ro_tin: "ro_tin";
1008
- ro_vat: "ro_vat";
1009
- rs_pib: "rs_pib";
1010
- ru_inn: "ru_inn";
1011
- ru_kpp: "ru_kpp";
1012
- sa_vat: "sa_vat";
1013
- se_vat: "se_vat";
1014
- sg_gst: "sg_gst";
1015
- sg_uen: "sg_uen";
1016
- si_tin: "si_tin";
1017
- si_vat: "si_vat";
1018
- sk_vat: "sk_vat";
1019
- sn_ninea: "sn_ninea";
1020
- sr_fin: "sr_fin";
1021
- sv_nit: "sv_nit";
1022
- th_vat: "th_vat";
1023
- tj_tin: "tj_tin";
1024
- tr_tin: "tr_tin";
1025
- tw_vat: "tw_vat";
1026
- tz_vat: "tz_vat";
1027
- ua_vat: "ua_vat";
1028
- ug_tin: "ug_tin";
1029
- us_ein: "us_ein";
1030
- uy_ruc: "uy_ruc";
1031
- uz_tin: "uz_tin";
1032
- uz_vat: "uz_vat";
1033
- ve_rif: "ve_rif";
1034
- vn_tin: "vn_tin";
1035
- xi_vat: "xi_vat";
1036
- za_vat: "za_vat";
1037
- zm_tin: "zm_tin";
1038
- 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";
1039
1637
  }>>;
1040
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>;
1041
1838
  /**
1042
- * Successfully updated. Returns updated organization details.
1839
+ * Reply appended.
1043
1840
  */
1044
- export declare const zUpdateContactResponse: z.ZodObject<{
1045
- company: z.ZodOptional<z.ZodString>;
1046
- address1: z.ZodOptional<z.ZodString>;
1047
- address2: z.ZodOptional<z.ZodString>;
1048
- postalCode: z.ZodOptional<z.ZodString>;
1049
- city: z.ZodOptional<z.ZodString>;
1050
- state: z.ZodOptional<z.ZodString>;
1051
- country: z.ZodOptional<z.ZodString>;
1052
- phone: z.ZodOptional<z.ZodString>;
1053
- email: z.ZodEmail;
1054
- individual_name: z.ZodString;
1055
- tax_id: z.ZodOptional<z.ZodString>;
1056
- tax_id_type: z.ZodOptional<z.ZodEnum<{
1057
- "": "";
1058
- ad_nrt: "ad_nrt";
1059
- ae_trn: "ae_trn";
1060
- al_tin: "al_tin";
1061
- am_tin: "am_tin";
1062
- ao_tin: "ao_tin";
1063
- ar_cuit: "ar_cuit";
1064
- at_vat: "at_vat";
1065
- au_abn: "au_abn";
1066
- au_arn: "au_arn";
1067
- ba_tin: "ba_tin";
1068
- bb_tin: "bb_tin";
1069
- be_vat: "be_vat";
1070
- bg_uic: "bg_uic";
1071
- bg_vat: "bg_vat";
1072
- bh_vat: "bh_vat";
1073
- bo_tin: "bo_tin";
1074
- br_cnpj: "br_cnpj";
1075
- br_cpf: "br_cpf";
1076
- bs_tin: "bs_tin";
1077
- by_tin: "by_tin";
1078
- ca_bn: "ca_bn";
1079
- ca_gst_hst: "ca_gst_hst";
1080
- ca_pst_bc: "ca_pst_bc";
1081
- ca_pst_mb: "ca_pst_mb";
1082
- ca_pst_sk: "ca_pst_sk";
1083
- ca_qst: "ca_qst";
1084
- cd_nif: "cd_nif";
1085
- ch_uid: "ch_uid";
1086
- ch_vat: "ch_vat";
1087
- cl_tin: "cl_tin";
1088
- cn_tin: "cn_tin";
1089
- co_nit: "co_nit";
1090
- cr_tin: "cr_tin";
1091
- cy_vat: "cy_vat";
1092
- cz_vat: "cz_vat";
1093
- de_stn: "de_stn";
1094
- de_vat: "de_vat";
1095
- dk_vat: "dk_vat";
1096
- do_rcn: "do_rcn";
1097
- ec_ruc: "ec_ruc";
1098
- ee_vat: "ee_vat";
1099
- eg_tin: "eg_tin";
1100
- es_cif: "es_cif";
1101
- es_vat: "es_vat";
1102
- eu_oss_vat: "eu_oss_vat";
1103
- fi_vat: "fi_vat";
1104
- fr_vat: "fr_vat";
1105
- gb_vat: "gb_vat";
1106
- ge_vat: "ge_vat";
1107
- gn_nif: "gn_nif";
1108
- gr_vat: "gr_vat";
1109
- hk_br: "hk_br";
1110
- hr_oib: "hr_oib";
1111
- hr_vat: "hr_vat";
1112
- hu_tin: "hu_tin";
1113
- hu_vat: "hu_vat";
1114
- id_npwp: "id_npwp";
1115
- ie_vat: "ie_vat";
1116
- il_vat: "il_vat";
1117
- in_gst: "in_gst";
1118
- is_vat: "is_vat";
1119
- it_vat: "it_vat";
1120
- jp_cn: "jp_cn";
1121
- jp_rn: "jp_rn";
1122
- jp_trn: "jp_trn";
1123
- ke_pin: "ke_pin";
1124
- kh_tin: "kh_tin";
1125
- kr_brn: "kr_brn";
1126
- kz_bin: "kz_bin";
1127
- li_uid: "li_uid";
1128
- li_vat: "li_vat";
1129
- lt_vat: "lt_vat";
1130
- lu_vat: "lu_vat";
1131
- lv_vat: "lv_vat";
1132
- ma_vat: "ma_vat";
1133
- md_vat: "md_vat";
1134
- me_pib: "me_pib";
1135
- mk_vat: "mk_vat";
1136
- mr_nif: "mr_nif";
1137
- mt_vat: "mt_vat";
1138
- mx_rfc: "mx_rfc";
1139
- my_frp: "my_frp";
1140
- my_itn: "my_itn";
1141
- my_sst: "my_sst";
1142
- ng_tin: "ng_tin";
1143
- nl_vat: "nl_vat";
1144
- no_vat: "no_vat";
1145
- no_voec: "no_voec";
1146
- np_pan: "np_pan";
1147
- nz_gst: "nz_gst";
1148
- om_vat: "om_vat";
1149
- pe_ruc: "pe_ruc";
1150
- ph_tin: "ph_tin";
1151
- pl_vat: "pl_vat";
1152
- pt_vat: "pt_vat";
1153
- ro_tin: "ro_tin";
1154
- ro_vat: "ro_vat";
1155
- rs_pib: "rs_pib";
1156
- ru_inn: "ru_inn";
1157
- ru_kpp: "ru_kpp";
1158
- sa_vat: "sa_vat";
1159
- se_vat: "se_vat";
1160
- sg_gst: "sg_gst";
1161
- sg_uen: "sg_uen";
1162
- si_tin: "si_tin";
1163
- si_vat: "si_vat";
1164
- sk_vat: "sk_vat";
1165
- sn_ninea: "sn_ninea";
1166
- sr_fin: "sr_fin";
1167
- sv_nit: "sv_nit";
1168
- th_vat: "th_vat";
1169
- tj_tin: "tj_tin";
1170
- tr_tin: "tr_tin";
1171
- tw_vat: "tw_vat";
1172
- tz_vat: "tz_vat";
1173
- ua_vat: "ua_vat";
1174
- ug_tin: "ug_tin";
1175
- us_ein: "us_ein";
1176
- uy_ruc: "uy_ruc";
1177
- uz_tin: "uz_tin";
1178
- uz_vat: "uz_vat";
1179
- ve_rif: "ve_rif";
1180
- vn_tin: "vn_tin";
1181
- xi_vat: "xi_vat";
1182
- za_vat: "za_vat";
1183
- zm_tin: "zm_tin";
1184
- zw_tin: "zw_tin";
1185
- }>>;
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;
1186
1934
  }, z.core.$strip>;
1187
1935
  /**
1188
- * An array of the applied promotional credits records.
1936
+ * Returns a single object containing organization details.
1189
1937
  */
1190
- export declare const zGetCreditsResponse: z.ZodArray<z.ZodObject<{
1191
- id: z.ZodOptional<z.ZodString>;
1938
+ export declare const zGetOrganizationResponse: z.ZodObject<{
1939
+ id: z.ZodUUID;
1940
+ name: z.ZodOptional<z.ZodString>;
1192
1941
  type: z.ZodEnum<{
1193
- credit: "credit";
1194
- 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";
1195
1969
  }>;
1196
- date_start: z.ZodISODateTime;
1197
- date_end: z.ZodOptional<z.ZodISODateTime>;
1198
- code: z.ZodString;
1199
- description: z.ZodOptional<z.ZodString>;
1200
- value_total: z.ZodNumber;
1201
- value_remaining: z.ZodOptional<z.ZodNumber>;
1202
- }, z.core.$strip>>;
1203
- export declare const zRedeemCreditsBody: z.ZodObject<{
1204
- code: z.ZodOptional<z.ZodString>;
1205
1970
  }, z.core.$strip>;
1206
- export declare const zListChartsPath: z.ZodObject<{
1207
- 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;
1208
1981
  }, z.core.$strip>;
1209
1982
  /**
1210
- * 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
+ *
1211
1985
  */
1212
- export declare const zListChartsResponse: z.ZodArray<z.ZodObject<{
1213
- values: z.ZodString;
1214
- 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<{
1215
2014
  name: z.ZodString;
1216
- namespace: z.ZodString;
1217
- chart: z.ZodString;
1218
- status: z.ZodEnum<{
1219
- InstallSucceeded: "InstallSucceeded";
1220
- InstallFailed: "InstallFailed";
1221
- UpgradeSucceeded: "UpgradeSucceeded";
1222
- UpgradeFailed: "UpgradeFailed";
1223
- TestSucceeded: "TestSucceeded";
1224
- TestFailed: "TestFailed";
1225
- RollbackSucceeded: "RollbackSucceeded";
1226
- RollbackFailed: "RollbackFailed";
1227
- UninstallSucceeded: "UninstallSucceeded";
1228
- UninstallFailed: "UninstallFailed";
1229
- ArtifactFailed: "ArtifactFailed";
1230
- DependencyNotReady: "DependencyNotReady";
1231
- Progressing: "Progressing";
1232
- SourceNotReady: "SourceNotReady";
1233
- }>;
1234
- version_current: z.ZodString;
1235
- created_at: z.ZodString;
1236
- updated_at: z.ZodString;
1237
- 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>>;
1238
2033
  }, z.core.$strip>>;
1239
- export declare const zCreateChartBody: z.ZodObject<{
1240
- values: z.ZodString;
2034
+ export declare const zGetMarketplaceChartFilesPath: z.ZodObject<{
2035
+ chart_name: z.ZodString;
1241
2036
  version_channel: z.ZodString;
1242
- name: z.ZodString;
1243
- namespace: z.ZodString;
1244
- chart: z.ZodString;
1245
2037
  }, z.core.$strip>;
1246
- export declare const zCreateChartPath: z.ZodObject<{
1247
- 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>;
1248
2045
  }, z.core.$strip>;
1249
2046
  /**
1250
- * Successfully created. Returns created Chart ID.
2047
+ * An array of invites
1251
2048
  */
1252
- export declare const zCreateChartResponse: z.ZodString;
1253
- export declare const zDeleteChartPath: z.ZodObject<{
1254
- cluster_id: z.ZodString;
1255
- 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
+ }>>>;
1256
2066
  }, z.core.$strip>;
1257
2067
  /**
1258
- * Successfully deleted.
2068
+ * Successfully created. Returns created invite details.
1259
2069
  */
1260
- export declare const zDeleteChartResponse: z.ZodString;
1261
- export declare const zGetChartPath: z.ZodObject<{
1262
- cluster_id: z.ZodString;
1263
- 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;
1264
2083
  }, z.core.$strip>;
1265
2084
  /**
1266
- * Returns a single object containing chart details.
2085
+ * The invitation code is valid. Returns the invited email and organization.
1267
2086
  */
1268
- export declare const zGetChartResponse: z.ZodObject<{
1269
- values: z.ZodString;
1270
- version_channel: z.ZodString;
1271
- name: z.ZodString;
1272
- namespace: z.ZodString;
1273
- chart: z.ZodString;
1274
- status: z.ZodEnum<{
1275
- InstallSucceeded: "InstallSucceeded";
1276
- InstallFailed: "InstallFailed";
1277
- UpgradeSucceeded: "UpgradeSucceeded";
1278
- UpgradeFailed: "UpgradeFailed";
1279
- TestSucceeded: "TestSucceeded";
1280
- TestFailed: "TestFailed";
1281
- RollbackSucceeded: "RollbackSucceeded";
1282
- RollbackFailed: "RollbackFailed";
1283
- UninstallSucceeded: "UninstallSucceeded";
1284
- UninstallFailed: "UninstallFailed";
1285
- ArtifactFailed: "ArtifactFailed";
1286
- DependencyNotReady: "DependencyNotReady";
1287
- Progressing: "Progressing";
1288
- SourceNotReady: "SourceNotReady";
1289
- }>;
1290
- version_current: z.ZodString;
1291
- created_at: z.ZodString;
1292
- updated_at: z.ZodString;
1293
- ready: z.ZodBoolean;
2087
+ export declare const zGetInviteResponse: z.ZodObject<{
2088
+ email: z.ZodOptional<z.ZodEmail>;
2089
+ organization_id: z.ZodOptional<z.ZodString>;
1294
2090
  }, z.core.$strip>;
1295
- export declare const zUpdateChartBody: z.ZodObject<{
1296
- values: z.ZodString;
1297
- version_channel: z.ZodString;
2091
+ export declare const zDeleteInvitePath: z.ZodObject<{
2092
+ email: z.ZodEmail;
1298
2093
  }, z.core.$strip>;
1299
- export declare const zUpdateChartPath: z.ZodObject<{
2094
+ export declare const zQueryClusterPath: z.ZodObject<{
1300
2095
  cluster_id: z.ZodString;
1301
- chart_name: z.ZodString;
1302
2096
  }, z.core.$strip>;
1303
- /**
1304
- * Successfully updated.
1305
- */
1306
- export declare const zUpdateChartResponse: z.ZodString;
1307
2097
  export declare const zListFleetsPath: z.ZodObject<{
1308
2098
  cluster_id: z.ZodString;
1309
2099
  }, z.core.$strip>;
@@ -1312,38 +2102,522 @@ export declare const zListFleetsPath: z.ZodObject<{
1312
2102
  */
1313
2103
  export declare const zListFleetsResponse: z.ZodArray<z.ZodObject<{
1314
2104
  limits: z.ZodOptional<z.ZodObject<{
1315
- cpu: z.ZodNumber;
2105
+ cpu: z.ZodOptional<z.ZodInt>;
1316
2106
  }, z.core.$strip>>;
1317
2107
  gcp: z.ZodOptional<z.ZodObject<{
1318
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1319
- project: z.ZodString;
2108
+ enabled: z.ZodBoolean;
2109
+ project: z.ZodOptional<z.ZodString>;
1320
2110
  }, z.core.$strip>>;
1321
2111
  hetzner: z.ZodOptional<z.ZodObject<{
1322
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1323
- apiKey: z.ZodString;
2112
+ enabled: z.ZodBoolean;
2113
+ apiKey: z.ZodOptional<z.ZodString>;
1324
2114
  }, z.core.$strip>>;
1325
2115
  aws: z.ZodOptional<z.ZodObject<{
1326
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1327
- 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
+ }>>>;
1328
2354
  }, z.core.$strip>>;
2355
+ scalingProfile: z.ZodDefault<z.ZodEnum<{
2356
+ aggressive: "aggressive";
2357
+ conservative: "conservative";
2358
+ }>>;
1329
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;
1330
2364
  }, z.core.$strip>>;
1331
2365
  export declare const zCreateFleetBody: z.ZodObject<{
1332
2366
  limits: z.ZodOptional<z.ZodObject<{
1333
- cpu: z.ZodNumber;
2367
+ cpu: z.ZodOptional<z.ZodInt>;
1334
2368
  }, z.core.$strip>>;
1335
2369
  gcp: z.ZodOptional<z.ZodObject<{
1336
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1337
- project: z.ZodString;
2370
+ enabled: z.ZodBoolean;
2371
+ project: z.ZodOptional<z.ZodString>;
1338
2372
  }, z.core.$strip>>;
1339
2373
  hetzner: z.ZodOptional<z.ZodObject<{
1340
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1341
- apiKey: z.ZodString;
2374
+ enabled: z.ZodBoolean;
2375
+ apiKey: z.ZodOptional<z.ZodString>;
1342
2376
  }, z.core.$strip>>;
1343
2377
  aws: z.ZodOptional<z.ZodObject<{
1344
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1345
- controllerRoleArn: z.ZodString;
2378
+ enabled: z.ZodBoolean;
2379
+ controllerRoleArn: z.ZodOptional<z.ZodString>;
1346
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
+ }>>>;
1347
2621
  id: z.ZodString;
1348
2622
  }, z.core.$strip>;
1349
2623
  export declare const zCreateFleetPath: z.ZodObject<{
@@ -1370,190 +2644,636 @@ export declare const zGetFleetPath: z.ZodObject<{
1370
2644
  */
1371
2645
  export declare const zGetFleetResponse: z.ZodObject<{
1372
2646
  limits: z.ZodOptional<z.ZodObject<{
1373
- cpu: z.ZodNumber;
2647
+ cpu: z.ZodOptional<z.ZodInt>;
1374
2648
  }, z.core.$strip>>;
1375
2649
  gcp: z.ZodOptional<z.ZodObject<{
1376
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1377
- project: z.ZodString;
2650
+ enabled: z.ZodBoolean;
2651
+ project: z.ZodOptional<z.ZodString>;
1378
2652
  }, z.core.$strip>>;
1379
2653
  hetzner: z.ZodOptional<z.ZodObject<{
1380
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1381
- apiKey: z.ZodString;
2654
+ enabled: z.ZodBoolean;
2655
+ apiKey: z.ZodOptional<z.ZodString>;
1382
2656
  }, z.core.$strip>>;
1383
2657
  aws: z.ZodOptional<z.ZodObject<{
1384
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1385
- controllerRoleArn: z.ZodString;
2658
+ enabled: z.ZodBoolean;
2659
+ controllerRoleArn: z.ZodOptional<z.ZodString>;
1386
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
+ }>>;
1387
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;
1388
2906
  }, z.core.$strip>;
1389
2907
  export declare const zUpdateFleetBody: z.ZodObject<{
1390
2908
  limits: z.ZodOptional<z.ZodObject<{
1391
- cpu: z.ZodNumber;
2909
+ cpu: z.ZodOptional<z.ZodInt>;
1392
2910
  }, z.core.$strip>>;
1393
2911
  gcp: z.ZodOptional<z.ZodObject<{
1394
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1395
- project: z.ZodString;
2912
+ enabled: z.ZodBoolean;
2913
+ project: z.ZodOptional<z.ZodString>;
1396
2914
  }, z.core.$strip>>;
1397
2915
  hetzner: z.ZodOptional<z.ZodObject<{
1398
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1399
- apiKey: z.ZodString;
2916
+ enabled: z.ZodBoolean;
2917
+ apiKey: z.ZodOptional<z.ZodString>;
1400
2918
  }, z.core.$strip>>;
1401
2919
  aws: z.ZodOptional<z.ZodObject<{
1402
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1403
- 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
+ }>>>;
1404
3158
  }, z.core.$strip>>;
3159
+ scalingProfile: z.ZodEnum<{
3160
+ aggressive: "aggressive";
3161
+ conservative: "conservative";
3162
+ }>;
1405
3163
  }, z.core.$strip>;
1406
3164
  export declare const zUpdateFleetPath: z.ZodObject<{
1407
3165
  cluster_id: z.ZodString;
1408
3166
  fleet_name: z.ZodString;
1409
3167
  }, z.core.$strip>;
1410
- /**
1411
- * Successfully updated.
1412
- */
1413
- export declare const zUpdateFleetResponse: z.ZodString;
1414
- export declare const zQueryClusterPath: z.ZodObject<{
1415
- cluster_id: z.ZodString;
1416
- }, z.core.$strip>;
1417
- /**
1418
- * An array of clusters
1419
- */
1420
- export declare const zListClustersResponse: z.ZodArray<z.ZodObject<{
1421
- name: z.ZodString;
1422
- tier: z.ZodEnum<{
1423
- basic: "basic";
1424
- pro: "pro";
1425
- }>;
1426
- region: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
1427
- "staging-1a": "staging-1a";
1428
- "northamerica-central-1": "northamerica-central-1";
1429
- "europe-central-1a": "europe-central-1a";
1430
- "northamerica-central-1a": "northamerica-central-1a";
1431
- }>>>;
1432
- id: z.ZodUUID;
1433
- status: z.ZodEnum<{
1434
- deleted: "deleted";
1435
- failed: "failed";
1436
- active: "active";
1437
- disabled: "disabled";
1438
- creating: "creating";
1439
- deployed: "deployed";
1440
- updating: "updating";
1441
- }>;
1442
- endpoint: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
1443
- "": "";
1444
- }>]>>;
1445
- endpoint_public: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
1446
- "": "";
1447
- }>]>>;
1448
- certificate_ca: z.ZodOptional<z.ZodString>;
1449
- version_current: z.ZodOptional<z.ZodString>;
1450
- created_at: z.ZodOptional<z.ZodString>;
1451
- updated_at: z.ZodOptional<z.ZodString>;
1452
- ready: z.ZodOptional<z.ZodBoolean>;
1453
- version_channel: z.ZodOptional<z.ZodString>;
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;
1454
3189
  }, z.core.$strip>>;
1455
- export declare const zCreateClusterBody: z.ZodObject<{
3190
+ export declare const zCreateChartBody: z.ZodObject<{
3191
+ values: z.ZodString;
3192
+ version_channel: z.ZodString;
1456
3193
  name: z.ZodString;
1457
- tier: z.ZodEnum<{
1458
- basic: "basic";
1459
- pro: "pro";
1460
- }>;
1461
- region: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
1462
- "staging-1a": "staging-1a";
1463
- "northamerica-central-1": "northamerica-central-1";
1464
- "europe-central-1a": "europe-central-1a";
1465
- "northamerica-central-1a": "northamerica-central-1a";
1466
- }>>>;
1467
- version_channel: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
1468
- "1.x.x-cfke.x": "1.x.x-cfke.x";
1469
- "1.31.x-cfke.x": "1.31.x-cfke.x";
1470
- "1.32.x-cfke.x": "1.32.x-cfke.x";
1471
- "1.33.x-cfke.x": "1.33.x-cfke.x";
1472
- }>>>;
3194
+ namespace: z.ZodString;
3195
+ chart: z.ZodString;
3196
+ }, z.core.$strip>;
3197
+ export declare const zCreateChartPath: z.ZodObject<{
3198
+ cluster_id: z.ZodString;
1473
3199
  }, z.core.$strip>;
1474
3200
  /**
1475
- * Successfully created. Returns created Cluster ID.
3201
+ * Successfully created. Returns created Chart ID.
1476
3202
  */
1477
- export declare const zCreateClusterResponse: z.ZodString;
1478
- export declare const zDeleteClusterPath: z.ZodObject<{
3203
+ export declare const zCreateChartResponse: z.ZodString;
3204
+ export declare const zDeleteChartPath: z.ZodObject<{
1479
3205
  cluster_id: z.ZodString;
3206
+ chart_name: z.ZodString;
1480
3207
  }, z.core.$strip>;
1481
3208
  /**
1482
3209
  * Successfully deleted.
1483
3210
  */
1484
- export declare const zDeleteClusterResponse: z.ZodString;
1485
- export declare const zGetClusterPath: z.ZodObject<{
3211
+ export declare const zDeleteChartResponse: z.ZodString;
3212
+ export declare const zGetChartPath: z.ZodObject<{
1486
3213
  cluster_id: z.ZodString;
3214
+ chart_name: z.ZodString;
1487
3215
  }, z.core.$strip>;
1488
3216
  /**
1489
- * Returns a single object containing cluster details.
3217
+ * Returns a single object containing chart details.
1490
3218
  */
1491
- export declare const zGetClusterResponse: z.ZodObject<{
3219
+ export declare const zGetChartResponse: z.ZodObject<{
3220
+ values: z.ZodString;
3221
+ version_channel: z.ZodString;
1492
3222
  name: z.ZodString;
1493
- tier: z.ZodEnum<{
1494
- basic: "basic";
1495
- pro: "pro";
1496
- }>;
1497
- region: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
1498
- "staging-1a": "staging-1a";
1499
- "northamerica-central-1": "northamerica-central-1";
1500
- "europe-central-1a": "europe-central-1a";
1501
- "northamerica-central-1a": "northamerica-central-1a";
1502
- }>>>;
1503
- id: z.ZodUUID;
1504
- status: z.ZodEnum<{
1505
- deleted: "deleted";
1506
- failed: "failed";
1507
- active: "active";
1508
- disabled: "disabled";
1509
- creating: "creating";
1510
- deployed: "deployed";
1511
- updating: "updating";
1512
- }>;
1513
- endpoint: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
1514
- "": "";
1515
- }>]>>;
1516
- endpoint_public: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
1517
- "": "";
1518
- }>]>>;
1519
- certificate_ca: z.ZodOptional<z.ZodString>;
1520
- version_current: z.ZodOptional<z.ZodString>;
1521
- created_at: z.ZodOptional<z.ZodString>;
1522
- updated_at: z.ZodOptional<z.ZodString>;
1523
- ready: z.ZodOptional<z.ZodBoolean>;
1524
- 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;
1525
3230
  }, z.core.$strip>;
1526
- export declare const zUpdateClusterBody: z.ZodObject<{
1527
- name: z.ZodOptional<z.ZodString>;
1528
- tier: z.ZodEnum<{
1529
- basic: "basic";
1530
- pro: "pro";
1531
- }>;
1532
- version_channel: z.ZodOptional<z.ZodString>;
3231
+ export declare const zUpdateChartBody: z.ZodObject<{
3232
+ values: z.ZodString;
3233
+ version_channel: z.ZodString;
1533
3234
  }, z.core.$strip>;
1534
- export declare const zUpdateClusterPath: z.ZodObject<{
3235
+ export declare const zUpdateChartPath: z.ZodObject<{
1535
3236
  cluster_id: z.ZodString;
3237
+ chart_name: z.ZodString;
1536
3238
  }, z.core.$strip>;
1537
3239
  /**
1538
- * Successfully updated. Returns updated cluster details.
3240
+ * Successfully updated.
1539
3241
  */
1540
- 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<{
1541
3247
  name: z.ZodString;
1542
3248
  tier: z.ZodEnum<{
1543
3249
  basic: "basic";
1544
3250
  pro: "pro";
1545
3251
  }>;
1546
- region: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
1547
- "staging-1a": "staging-1a";
1548
- "northamerica-central-1": "northamerica-central-1";
1549
- "europe-central-1a": "europe-central-1a";
1550
- "northamerica-central-1a": "northamerica-central-1a";
1551
- }>>>;
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>>;
1552
3275
  id: z.ZodUUID;
1553
3276
  status: z.ZodEnum<{
1554
- deleted: "deleted";
1555
- failed: "failed";
1556
- active: "active";
1557
3277
  disabled: "disabled";
1558
3278
  creating: "creating";
1559
3279
  deployed: "deployed";
@@ -1571,651 +3291,748 @@ export declare const zUpdateClusterResponse: z.ZodObject<{
1571
3291
  updated_at: z.ZodOptional<z.ZodString>;
1572
3292
  ready: z.ZodOptional<z.ZodBoolean>;
1573
3293
  version_channel: z.ZodOptional<z.ZodString>;
1574
- }, z.core.$strip>;
1575
- export declare const zGetJoinInformationPath: z.ZodObject<{
1576
- cluster_id: z.ZodString;
1577
- }, z.core.$strip>;
1578
- /**
1579
- * An object of cluster join information
1580
- */
1581
- export declare const zGetJoinInformationResponse: z.ZodObject<{
1582
- certificate_authority: z.ZodString;
1583
- endpoint: z.ZodURL;
1584
- cluster_dns: z.ZodString;
1585
- auth_key: z.ZodString;
1586
- bootstrap_token: z.ZodString;
1587
- versions: z.ZodObject<{
1588
- kubernetes: z.ZodString;
1589
- tailscale: z.ZodString;
1590
- containerd: z.ZodString;
1591
- nvidia_driver: z.ZodString;
1592
- }, z.core.$strip>;
1593
- third_party_api_access_config: z.ZodObject<{
1594
- metadata_url: z.ZodString;
1595
- aws_role_arn: z.ZodString;
1596
- gcp_workload_identity_provider: z.ZodString;
1597
- }, z.core.$strip>;
1598
- }, z.core.$strip>;
1599
- /**
1600
- * An array of invites
1601
- */
1602
- export declare const zListInvitesResponse: z.ZodArray<z.ZodObject<{
1603
- id: z.ZodOptional<z.ZodString>;
1604
- organization_id: z.ZodOptional<z.ZodUUID>;
1605
- date_created: z.ZodISODateTime;
1606
- email: z.ZodOptional<z.ZodEmail>;
1607
- code: z.ZodOptional<z.ZodString>;
1608
3294
  }, z.core.$strip>>;
1609
- export declare const zCreateInviteBody: z.ZodObject<{
1610
- email: z.ZodOptional<z.ZodString>;
1611
- }, z.core.$strip>;
1612
- /**
1613
- * Successfully created. Returns created invite details.
1614
- */
1615
- export declare const zCreateInviteResponse: z.ZodObject<{
1616
- id: z.ZodOptional<z.ZodString>;
1617
- organization_id: z.ZodOptional<z.ZodUUID>;
1618
- date_created: z.ZodISODateTime;
1619
- email: z.ZodOptional<z.ZodEmail>;
1620
- code: z.ZodOptional<z.ZodString>;
1621
- }, z.core.$strip>;
1622
- export declare const zGetInvitePath: z.ZodObject<{
1623
- code: z.ZodString;
1624
- }, z.core.$strip>;
1625
- /**
1626
- * Returns a single object containing invite details.
1627
- */
1628
- export declare const zGetInviteResponse: z.ZodObject<{
1629
- id: z.ZodOptional<z.ZodString>;
1630
- organization_id: z.ZodOptional<z.ZodUUID>;
1631
- date_created: z.ZodISODateTime;
1632
- email: z.ZodOptional<z.ZodEmail>;
1633
- code: z.ZodOptional<z.ZodString>;
1634
- }, z.core.$strip>;
1635
- export declare const zDeleteInvitePath: z.ZodObject<{
1636
- email: z.ZodString;
1637
- }, z.core.$strip>;
1638
- /**
1639
- * An array of chart listings in the marketplace.
1640
- */
1641
- export declare const zListMarketplaceChartsResponse: z.ZodArray<z.ZodObject<{
3295
+ export declare const zCreateClusterBody: z.ZodObject<{
1642
3296
  name: z.ZodString;
1643
- versions: z.ZodArray<z.ZodString>;
1644
- version_channels: z.ZodArray<z.ZodString>;
1645
- latestVersion: z.ZodString;
1646
- metadata: z.ZodOptional<z.ZodObject<{
1647
- name: z.ZodString;
1648
- version: z.ZodString;
1649
- description: z.ZodOptional<z.ZodString>;
1650
- appVersion: z.ZodOptional<z.ZodString>;
1651
- apiVersion: z.ZodOptional<z.ZodString>;
1652
- keywords: z.ZodOptional<z.ZodArray<z.ZodString>>;
1653
- home: z.ZodOptional<z.ZodString>;
1654
- icon: z.ZodOptional<z.ZodString>;
1655
- sources: z.ZodOptional<z.ZodArray<z.ZodString>>;
1656
- maintainers: z.ZodOptional<z.ZodArray<z.ZodObject<{
1657
- name: z.ZodString;
1658
- email: z.ZodOptional<z.ZodString>;
1659
- }, z.core.$strip>>>;
1660
- }, z.core.$strip>>;
1661
- }, z.core.$strip>>;
1662
- export declare const zGetMarketplaceChartFilesPath: z.ZodObject<{
1663
- chart_name: z.ZodString;
1664
- version_channel: z.ZodString;
1665
- }, z.core.$strip>;
1666
- /**
1667
- * Returns an object containing the chart files for the latest matching version.
1668
- */
1669
- export declare const zGetMarketplaceChartFilesResponse: z.ZodObject<{
1670
- chartYaml: z.ZodOptional<z.ZodString>;
1671
- valuesYaml: z.ZodOptional<z.ZodString>;
1672
- valuesSchemaJson: z.ZodOptional<z.ZodString>;
1673
- }, z.core.$strip>;
1674
- /**
1675
- * JSON-RPC 2.0 request payload
1676
- */
1677
- export declare const zPostMcpBody: z.ZodObject<{
1678
- jsonrpc: z.ZodOptional<z.ZodString>;
1679
- method: z.ZodOptional<z.ZodString>;
1680
- id: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>;
1681
- params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1682
- }, z.core.$strip>;
1683
- /**
1684
- * JSON-RPC 2.0 success or error response
1685
- */
1686
- export declare const zPostMcpResponse: z.ZodObject<{
1687
- jsonrpc: z.ZodOptional<z.ZodString>;
1688
- id: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>;
1689
- result: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1690
- error: z.ZodOptional<z.ZodObject<{
1691
- code: z.ZodOptional<z.ZodInt>;
1692
- message: z.ZodOptional<z.ZodString>;
1693
- }, z.core.$strip>>;
1694
- }, z.core.$strip>;
1695
- /**
1696
- * Returns a single object containing organization details.
1697
- */
1698
- export declare const zGetOrganizationResponse: z.ZodObject<{
1699
- id: z.ZodUUID;
1700
- name: z.ZodOptional<z.ZodString>;
1701
- date_created: z.ZodISODateTime;
1702
- quota: z.ZodObject<{
1703
- basic_clusters_max: z.ZodInt;
1704
- basic_clusters_available: z.ZodInt;
1705
- pro_clusters_max: z.ZodInt;
1706
- pro_clusters_available: z.ZodInt;
1707
- fleets_max: z.ZodInt;
1708
- cluster_tiers: z.ZodArray<z.ZodString>;
1709
- regions: z.ZodArray<z.ZodString>;
1710
- versions: z.ZodArray<z.ZodObject<{
1711
- id: z.ZodString;
1712
- label: z.ZodString;
1713
- }, z.core.$strip>>;
1714
- cfcr_storage_gb: z.ZodInt;
1715
- }, z.core.$strip>;
1716
- status: z.ZodEnum<{
1717
- active: "active";
1718
- closed: "closed";
1719
- suspended: "suspended";
3297
+ tier: z.ZodEnum<{
3298
+ basic: "basic";
3299
+ pro: "pro";
1720
3300
  }>;
1721
- }, z.core.$strip>;
1722
- export declare const zCreateOrganizationBody: z.ZodObject<{
1723
- email: z.ZodEmail;
1724
- first_name: z.ZodString;
1725
- last_name: z.ZodString;
1726
- company_name: z.ZodString;
1727
- 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>>;
1728
3325
  }, z.core.$strip>;
1729
3326
  /**
1730
- * List of repositories
3327
+ * Successfully created. Returns created Cluster ID.
1731
3328
  */
1732
- export declare const zListRepositoriesResponse: z.ZodArray<z.ZodObject<{
1733
- name: z.ZodString;
1734
- region: z.ZodString;
1735
- uri: z.ZodString;
1736
- }, z.core.$strip>>;
1737
- export declare const zListTagsPath: z.ZodObject<{
1738
- region: z.ZodString;
1739
- repository: z.ZodString;
3329
+ export declare const zCreateClusterResponse: z.ZodString;
3330
+ export declare const zDeleteClusterPath: z.ZodObject<{
3331
+ cluster_id: z.ZodString;
1740
3332
  }, z.core.$strip>;
1741
3333
  /**
1742
- * Repository with tags
3334
+ * Successfully deleted. The cluster has been torn down.
1743
3335
  */
1744
- export declare const zListTagsResponse: z.ZodObject<{
1745
- name: z.ZodString;
1746
- region: z.ZodString;
1747
- uri: z.ZodString;
1748
- tags: z.ZodArray<z.ZodObject<{
1749
- name: z.ZodString;
1750
- size: z.ZodNumber;
1751
- mediaType: z.ZodOptional<z.ZodString>;
1752
- platforms: z.ZodOptional<z.ZodArray<z.ZodString>>;
1753
- }, z.core.$strip>>;
1754
- totalSize: z.ZodNumber;
1755
- }, z.core.$strip>;
1756
- export declare const zDeleteTagPath: z.ZodObject<{
1757
- region: z.ZodString;
1758
- repository: z.ZodString;
1759
- tag: z.ZodString;
1760
- }, z.core.$strip>;
1761
- export declare const zGetTagPath: z.ZodObject<{
1762
- region: z.ZodString;
1763
- repository: z.ZodString;
1764
- tag: z.ZodString;
3336
+ export declare const zDeleteClusterResponse: z.ZodString;
3337
+ export declare const zGetClusterPath: z.ZodObject<{
3338
+ cluster_id: z.ZodString;
1765
3339
  }, z.core.$strip>;
1766
3340
  /**
1767
- * Tag details
3341
+ * Returns a single object containing cluster details.
1768
3342
  */
1769
- export declare const zGetTagResponse: z.ZodObject<{
3343
+ export declare const zGetClusterResponse: z.ZodObject<{
1770
3344
  name: z.ZodString;
1771
- digest: z.ZodString;
1772
- mediaType: z.ZodOptional<z.ZodString>;
1773
- config: z.ZodOptional<z.ZodObject<{
1774
- size: z.ZodNumber;
1775
- }, z.core.$strip>>;
1776
- layers: z.ZodOptional<z.ZodArray<z.ZodObject<{
1777
- digest: z.ZodOptional<z.ZodString>;
1778
- size: z.ZodNumber;
1779
- }, z.core.$strip>>>;
1780
- manifests: z.ZodOptional<z.ZodArray<z.ZodObject<{
1781
- digest: z.ZodString;
1782
- platform: z.ZodOptional<z.ZodObject<{
1783
- architecture: z.ZodString;
1784
- os: z.ZodString;
1785
- variant: z.ZodOptional<z.ZodString>;
1786
- }, z.core.$strip>>;
1787
- layers: z.ZodOptional<z.ZodArray<z.ZodObject<{
1788
- digest: z.ZodOptional<z.ZodString>;
1789
- size: z.ZodNumber;
1790
- }, z.core.$strip>>>;
1791
- size: z.ZodOptional<z.ZodNumber>;
1792
- }, z.core.$strip>>>;
1793
- size: z.ZodNumber;
3345
+ tier: z.ZodEnum<{
3346
+ basic: "basic";
3347
+ pro: "pro";
3348
+ }>;
1794
3349
  region: z.ZodString;
1795
- repository: z.ZodString;
1796
- uri: z.ZodString;
1797
- }, z.core.$strip>;
1798
- /**
1799
- * Tickets for the organization.
1800
- */
1801
- export declare const zListTicketsResponse: z.ZodObject<{
1802
- items: z.ZodArray<z.ZodObject<{
1803
- id: z.ZodString;
1804
- status: z.ZodEnum<{
1805
- closed: "closed";
1806
- waiting_on_us: "waiting_on_us";
1807
- waiting_on_user: "waiting_on_user";
1808
- }>;
1809
- category: z.ZodEnum<{
1810
- billing: "billing";
1811
- technical: "technical";
1812
- 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";
1813
3368
  }>;
1814
- summary: z.ZodString;
1815
- closed_at: z.ZodOptional<z.ZodISODateTime>;
1816
- date_created: z.ZodISODateTime;
1817
- date_updated: z.ZodISODateTime;
1818
- messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
1819
- id: z.ZodString;
1820
- type: z.ZodEnum<{
1821
- customer_reply: "customer_reply";
1822
- agent_reply: "agent_reply";
1823
- }>;
1824
- body: z.ZodString;
1825
- author_first_name: z.ZodOptional<z.ZodString>;
1826
- author_last_name: z.ZodOptional<z.ZodString>;
1827
- attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
1828
- id: z.ZodString;
1829
- filename: z.ZodString;
1830
- content_type: z.ZodString;
1831
- size: z.ZodInt;
1832
- }, z.core.$strip>>>;
1833
- date_created: z.ZodISODateTime;
1834
- }, z.core.$strip>>>;
3369
+ gpu_max_shared_clients_per_gpu: z.ZodInt;
3370
+ cilium_socket_lb_host_namespace_only: z.ZodOptional<z.ZodBoolean>;
1835
3371
  }, z.core.$strip>>;
1836
- }, z.core.$strip>;
1837
- export declare const zCreateTicketBody: z.ZodObject<{
1838
- payload: z.ZodOptional<z.ZodString>;
1839
- attachments: z.ZodOptional<z.ZodArray<z.ZodString>>;
1840
- }, z.core.$strip>;
1841
- /**
1842
- * Ticket created.
1843
- */
1844
- export declare const zCreateTicketResponse: z.ZodObject<{
1845
- id: z.ZodString;
3372
+ id: z.ZodUUID;
1846
3373
  status: z.ZodEnum<{
1847
- closed: "closed";
1848
- waiting_on_us: "waiting_on_us";
1849
- waiting_on_user: "waiting_on_user";
3374
+ disabled: "disabled";
3375
+ creating: "creating";
3376
+ deployed: "deployed";
3377
+ updating: "updating";
1850
3378
  }>;
1851
- category: z.ZodEnum<{
1852
- billing: "billing";
1853
- technical: "technical";
1854
- 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";
1855
3397
  }>;
1856
- summary: z.ZodString;
1857
- closed_at: z.ZodOptional<z.ZodISODateTime>;
1858
- date_created: z.ZodISODateTime;
1859
- date_updated: z.ZodISODateTime;
1860
- messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
1861
- id: z.ZodString;
1862
- type: z.ZodEnum<{
1863
- customer_reply: "customer_reply";
1864
- 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";
1865
3409
  }>;
1866
- body: z.ZodString;
1867
- author_first_name: z.ZodOptional<z.ZodString>;
1868
- author_last_name: z.ZodOptional<z.ZodString>;
1869
- attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
1870
- id: z.ZodString;
1871
- filename: z.ZodString;
1872
- content_type: z.ZodString;
1873
- size: z.ZodInt;
1874
- }, z.core.$strip>>>;
1875
- date_created: z.ZodISODateTime;
1876
- }, 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>>;
1877
3413
  }, z.core.$strip>;
1878
- export declare const zCloseTicketPath: z.ZodObject<{
1879
- ticket_id: z.ZodString;
3414
+ export declare const zUpdateClusterPath: z.ZodObject<{
3415
+ cluster_id: z.ZodString;
1880
3416
  }, z.core.$strip>;
1881
3417
  /**
1882
- * Ticket closed.
3418
+ * Successfully updated. Returns updated cluster details.
1883
3419
  */
1884
- export declare const zCloseTicketResponse: z.ZodObject<{
1885
- id: z.ZodString;
1886
- status: z.ZodEnum<{
1887
- closed: "closed";
1888
- waiting_on_us: "waiting_on_us";
1889
- waiting_on_user: "waiting_on_user";
1890
- }>;
1891
- category: z.ZodEnum<{
1892
- billing: "billing";
1893
- technical: "technical";
1894
- general: "general";
3420
+ export declare const zUpdateClusterResponse: z.ZodObject<{
3421
+ name: z.ZodString;
3422
+ tier: z.ZodEnum<{
3423
+ basic: "basic";
3424
+ pro: "pro";
1895
3425
  }>;
1896
- summary: z.ZodString;
1897
- closed_at: z.ZodOptional<z.ZodISODateTime>;
1898
- date_created: z.ZodISODateTime;
1899
- date_updated: z.ZodISODateTime;
1900
- messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
1901
- id: z.ZodString;
1902
- type: z.ZodEnum<{
1903
- customer_reply: "customer_reply";
1904
- 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";
1905
3445
  }>;
1906
- body: z.ZodString;
1907
- author_first_name: z.ZodOptional<z.ZodString>;
1908
- author_last_name: z.ZodOptional<z.ZodString>;
1909
- attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
1910
- id: z.ZodString;
1911
- filename: z.ZodString;
1912
- content_type: z.ZodString;
1913
- size: z.ZodInt;
1914
- }, z.core.$strip>>>;
1915
- date_created: z.ZodISODateTime;
1916
- }, 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>;
1917
3468
  }, z.core.$strip>;
1918
- export declare const zGetTicketPath: z.ZodObject<{
1919
- ticket_id: z.ZodString;
3469
+ export declare const zGetJoinInformationPath: z.ZodObject<{
3470
+ cluster_id: z.ZodString;
1920
3471
  }, z.core.$strip>;
1921
3472
  /**
1922
- * Ticket with messages (internal notes excluded).
3473
+ * An object of cluster join information
1923
3474
  */
1924
- export declare const zGetTicketResponse: z.ZodObject<{
1925
- id: z.ZodString;
1926
- status: z.ZodEnum<{
1927
- closed: "closed";
1928
- waiting_on_us: "waiting_on_us";
1929
- waiting_on_user: "waiting_on_user";
1930
- }>;
1931
- category: z.ZodEnum<{
1932
- billing: "billing";
1933
- technical: "technical";
1934
- general: "general";
1935
- }>;
1936
- summary: z.ZodString;
1937
- closed_at: z.ZodOptional<z.ZodISODateTime>;
1938
- date_created: z.ZodISODateTime;
1939
- date_updated: z.ZodISODateTime;
1940
- messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
1941
- id: z.ZodString;
1942
- type: z.ZodEnum<{
1943
- customer_reply: "customer_reply";
1944
- agent_reply: "agent_reply";
1945
- }>;
1946
- body: z.ZodString;
1947
- author_first_name: z.ZodOptional<z.ZodString>;
1948
- author_last_name: z.ZodOptional<z.ZodString>;
1949
- attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
1950
- id: z.ZodString;
1951
- filename: z.ZodString;
1952
- content_type: z.ZodString;
1953
- size: z.ZodInt;
1954
- }, z.core.$strip>>>;
1955
- date_created: z.ZodISODateTime;
1956
- }, 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>;
1957
3493
  }, z.core.$strip>;
1958
- export declare const zReplyTicketBody: z.ZodObject<{
1959
- payload: z.ZodOptional<z.ZodString>;
1960
- 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
+ }>>>;
1961
3500
  }, z.core.$strip>;
1962
- export declare const zReplyTicketPath: z.ZodObject<{
1963
- 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>;
1964
3517
  }, z.core.$strip>;
1965
3518
  /**
1966
- * 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
+ *
1967
3521
  */
1968
- 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<{
1969
3529
  id: z.ZodString;
1970
3530
  type: z.ZodEnum<{
1971
- customer_reply: "customer_reply";
1972
- agent_reply: "agent_reply";
3531
+ card: "card";
3532
+ sepa_debit: "sepa_debit";
3533
+ bank_transfer: "bank_transfer";
1973
3534
  }>;
1974
- body: z.ZodString;
1975
- author_first_name: z.ZodOptional<z.ZodString>;
1976
- author_last_name: z.ZodOptional<z.ZodString>;
1977
- attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
1978
- id: z.ZodString;
1979
- filename: z.ZodString;
1980
- content_type: z.ZodString;
1981
- size: z.ZodInt;
1982
- }, z.core.$strip>>>;
1983
- date_created: z.ZodISODateTime;
1984
- }, z.core.$strip>;
1985
- export declare const zGetTicketAttachmentPath: z.ZodObject<{
1986
- ticket_id: z.ZodString;
1987
- 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;
1988
3546
  }, z.core.$strip>;
1989
3547
  /**
1990
- * Attachment binary stream.
3548
+ * Default payment method updated.
1991
3549
  */
1992
- 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>;
1993
3554
  /**
1994
- * Returns a list of access token details with masked secrets.
3555
+ * Payment method deleted.
1995
3556
  */
1996
- export declare const zListTokensResponse: z.ZodArray<z.ZodObject<{
1997
- name: z.ZodString;
1998
- role: z.ZodEnum<{
1999
- Administrator: "Administrator";
2000
- User: "User";
2001
- }>;
2002
- id: z.ZodOptional<z.ZodString>;
2003
- secret: z.ZodOptional<z.ZodString>;
2004
- date_created: z.ZodISODateTime;
2005
- }, z.core.$strip>>;
2006
- export declare const zCreateTokenBody: z.ZodObject<{
2007
- name: z.ZodString;
2008
- role: z.ZodEnum<{
2009
- Administrator: "Administrator";
2010
- User: "User";
2011
- }>;
2012
- }, z.core.$strip>;
3557
+ export declare const zDeletePaymentMethodResponse: z.ZodVoid;
2013
3558
  /**
2014
- * Successfully created. Returns created token details with unmasked/raw secret.
3559
+ * An array of usage records.
2015
3560
  */
2016
- export declare const zCreateTokenResponse: z.ZodObject<{
2017
- name: z.ZodString;
2018
- role: z.ZodEnum<{
2019
- Administrator: "Administrator";
2020
- User: "User";
2021
- }>;
3561
+ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
2022
3562
  id: z.ZodOptional<z.ZodString>;
2023
- secret: z.ZodOptional<z.ZodString>;
2024
- date_created: z.ZodISODateTime;
2025
- }, z.core.$strip>;
2026
- export declare const zDeleteTokenPath: z.ZodObject<{
2027
- token_id: z.ZodString;
2028
- }, z.core.$strip>;
2029
- export declare const zGetTokenPath: z.ZodObject<{
2030
- token_id: z.ZodString;
2031
- }, 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>>;
2032
3572
  /**
2033
- * Returns access token details with masked secret.
3573
+ * Returns a single object containing organization contact and billing address details.
2034
3574
  */
2035
- export declare const zGetTokenResponse: z.ZodObject<{
2036
- name: z.ZodString;
2037
- role: z.ZodEnum<{
2038
- Administrator: "Administrator";
2039
- User: "User";
3575
+ export declare const zGetContactResponse: z.ZodObject<{
3576
+ type: z.ZodEnum<{
3577
+ business: "business";
3578
+ personal: "personal";
2040
3579
  }>;
2041
- id: z.ZodOptional<z.ZodString>;
2042
- secret: z.ZodOptional<z.ZodString>;
2043
- date_created: z.ZodISODateTime;
2044
- }, z.core.$strip>;
2045
- export declare const zUpdateTokenBody: z.ZodObject<{
2046
- name: z.ZodOptional<z.ZodString>;
2047
- role: z.ZodOptional<z.ZodEnum<{
2048
- Administrator: "Administrator";
2049
- 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";
2050
3720
  }>>;
2051
3721
  }, z.core.$strip>;
2052
- export declare const zUpdateTokenPath: z.ZodObject<{
2053
- token_id: z.ZodString;
2054
- }, z.core.$strip>;
2055
- /**
2056
- * Successfully updated. Returns updated token details with masked secret.
2057
- */
2058
- export declare const zUpdateTokenResponse: z.ZodObject<{
2059
- name: z.ZodString;
2060
- role: z.ZodEnum<{
2061
- Administrator: "Administrator";
2062
- User: "User";
2063
- }>;
2064
- id: z.ZodOptional<z.ZodString>;
2065
- secret: z.ZodOptional<z.ZodString>;
2066
- date_created: z.ZodISODateTime;
2067
- }, z.core.$strip>;
2068
- export declare const zRegenerateTokenPath: z.ZodObject<{
2069
- token_id: z.ZodString;
2070
- }, z.core.$strip>;
2071
- /**
2072
- * Successfully updated. Returns updated token details with unmasked / raw secret.
2073
- */
2074
- export declare const zRegenerateTokenResponse: z.ZodObject<{
2075
- name: z.ZodString;
2076
- role: z.ZodEnum<{
2077
- Administrator: "Administrator";
2078
- User: "User";
2079
- }>;
2080
- id: z.ZodOptional<z.ZodString>;
2081
- secret: z.ZodOptional<z.ZodString>;
2082
- date_created: z.ZodISODateTime;
2083
- }, z.core.$strip>;
2084
- export declare const zListUserOrganizationsPath: z.ZodObject<{
2085
- email: z.ZodString;
2086
- }, z.core.$strip>;
2087
- /**
2088
- * An array of organizations the user belongs to.
2089
- */
2090
- export declare const zListUserOrganizationsResponse: z.ZodArray<z.ZodObject<{
2091
- realm: z.ZodOptional<z.ZodString>;
2092
- displayName: z.ZodOptional<z.ZodString>;
2093
- }, z.core.$strip>>;
2094
- /**
2095
- * An array of users
2096
- */
2097
- export declare const zListUsersResponse: z.ZodArray<z.ZodObject<{
2098
- email: z.ZodEmail;
2099
- first_name: z.ZodString;
2100
- last_name: z.ZodString;
2101
- role: z.ZodEnum<{
2102
- Administrator: "Administrator";
2103
- User: "User";
2104
- }>;
2105
- status: z.ZodEnum<{
2106
- active: "active";
2107
- inactive: "inactive";
3722
+ export declare const zUpdateContactBody: z.ZodObject<{
3723
+ type: z.ZodEnum<{
3724
+ business: "business";
3725
+ personal: "personal";
2108
3726
  }>;
2109
- id: z.ZodUUID;
2110
- date_created: z.ZodISODateTime;
2111
- }, z.core.$strip>>;
2112
- 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>;
2113
3735
  email: z.ZodEmail;
2114
- first_name: z.ZodString;
2115
- last_name: z.ZodString;
2116
- code: z.ZodString;
2117
- password: z.ZodString;
2118
- status: z.ZodOptional<z.ZodEnum<{
2119
- active: "active";
2120
- inactive: "inactive";
2121
- }>>;
2122
- role: z.ZodOptional<z.ZodEnum<{
2123
- Administrator: "Administrator";
2124
- 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";
2125
3867
  }>>;
2126
3868
  }, z.core.$strip>;
2127
3869
  /**
2128
- * Successfully created. Returns created user details.
2129
- */
2130
- export declare const zCreateUserResponse: z.ZodObject<{
2131
- email: z.ZodEmail;
2132
- first_name: z.ZodString;
2133
- last_name: z.ZodString;
2134
- role: z.ZodEnum<{
2135
- Administrator: "Administrator";
2136
- User: "User";
2137
- }>;
2138
- status: z.ZodEnum<{
2139
- active: "active";
2140
- inactive: "inactive";
2141
- }>;
2142
- id: z.ZodUUID;
2143
- date_created: z.ZodISODateTime;
2144
- }, z.core.$strip>;
2145
- export declare const zDeleteUserPath: z.ZodObject<{
2146
- user_id: z.ZodString;
2147
- }, z.core.$strip>;
2148
- /**
2149
- * User profile information
3870
+ * Successfully updated. Returns updated organization details.
2150
3871
  */
2151
- export declare const zDeleteUserResponse: z.ZodObject<{
2152
- email: z.ZodEmail;
2153
- first_name: z.ZodString;
2154
- last_name: z.ZodString;
2155
- role: z.ZodEnum<{
2156
- Administrator: "Administrator";
2157
- User: "User";
2158
- }>;
2159
- status: z.ZodEnum<{
2160
- active: "active";
2161
- inactive: "inactive";
3872
+ export declare const zUpdateContactResponse: z.ZodObject<{
3873
+ type: z.ZodEnum<{
3874
+ business: "business";
3875
+ personal: "personal";
2162
3876
  }>;
2163
- id: z.ZodUUID;
2164
- date_created: z.ZodISODateTime;
2165
- }, z.core.$strip>;
2166
- export declare const zGetUserPath: z.ZodObject<{
2167
- user_id: z.ZodString;
2168
- }, z.core.$strip>;
2169
- /**
2170
- * User profile information
2171
- */
2172
- 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>;
2173
3885
  email: z.ZodEmail;
2174
- first_name: z.ZodString;
2175
- last_name: z.ZodString;
2176
- role: z.ZodEnum<{
2177
- Administrator: "Administrator";
2178
- User: "User";
2179
- }>;
2180
- status: z.ZodEnum<{
2181
- active: "active";
2182
- inactive: "inactive";
2183
- }>;
2184
- id: z.ZodUUID;
2185
- date_created: z.ZodISODateTime;
2186
- }, z.core.$strip>;
2187
- export declare const zUpdateUserBody: z.ZodObject<{
2188
- email: z.ZodOptional<z.ZodEmail>;
2189
- first_name: z.ZodOptional<z.ZodString>;
2190
- last_name: z.ZodOptional<z.ZodString>;
2191
- role: z.ZodOptional<z.ZodEnum<{
2192
- Administrator: "Administrator";
2193
- User: "User";
2194
- }>>;
2195
- status: z.ZodOptional<z.ZodEnum<{
2196
- active: "active";
2197
- 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";
2198
4017
  }>>;
2199
4018
  }, z.core.$strip>;
2200
- export declare const zUpdateUserPath: z.ZodObject<{
2201
- user_id: z.ZodString;
2202
- }, z.core.$strip>;
2203
4019
  /**
2204
- * Successfully created. Returns created user details.
4020
+ * An array of the applied promotional credits records.
2205
4021
  */
2206
- export declare const zUpdateUserResponse: z.ZodObject<{
2207
- email: z.ZodEmail;
2208
- first_name: z.ZodString;
2209
- last_name: z.ZodString;
2210
- role: z.ZodEnum<{
2211
- Administrator: "Administrator";
2212
- User: "User";
2213
- }>;
2214
- status: z.ZodEnum<{
2215
- active: "active";
2216
- 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";
2217
4027
  }>;
2218
- id: z.ZodUUID;
2219
- 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>;
2220
4037
  }, z.core.$strip>;
2221
4038
  //# sourceMappingURL=zod.gen.d.ts.map