@cloudfleet/sdk 0.0.1-80ccdf7 → 0.0.1-81297bc

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,14 @@ export declare const zClusterCreateInput: z.ZodObject<{
199
188
  basic: "basic";
200
189
  pro: "pro";
201
190
  }>;
202
- region: 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.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";
213
- }>>;
191
+ region: z.ZodString;
192
+ version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
214
193
  }, z.core.$strip>;
215
194
  export declare const zClusterJoinInformation: z.ZodObject<{
216
195
  certificate_authority: z.ZodString;
217
196
  endpoint: z.ZodURL;
218
197
  cluster_dns: z.ZodString;
198
+ pod_cidr: z.ZodString;
219
199
  auth_key: z.ZodString;
220
200
  bootstrap_token: z.ZodString;
221
201
  versions: z.ZodObject<{
@@ -236,12 +216,7 @@ export declare const zCluster: z.ZodObject<{
236
216
  basic: "basic";
237
217
  pro: "pro";
238
218
  }>;
239
- region: 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
- }>>;
219
+ region: z.ZodString;
245
220
  id: z.ZodUUID;
246
221
  status: z.ZodEnum<{
247
222
  deleted: "deleted";
@@ -255,6 +230,9 @@ export declare const zCluster: z.ZodObject<{
255
230
  endpoint: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
256
231
  "": "";
257
232
  }>]>>;
233
+ endpoint_public: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
234
+ "": "";
235
+ }>]>>;
258
236
  certificate_ca: z.ZodOptional<z.ZodString>;
259
237
  version_current: z.ZodOptional<z.ZodString>;
260
238
  created_at: z.ZodOptional<z.ZodString>;
@@ -272,56 +250,783 @@ export declare const zClusterUpdateInput: z.ZodObject<{
272
250
  }, z.core.$strip>;
273
251
  export declare const zFleetCreateInput: z.ZodObject<{
274
252
  limits: z.ZodOptional<z.ZodObject<{
275
- cpu: z.ZodNumber;
253
+ cpu: z.ZodOptional<z.ZodInt>;
276
254
  }, z.core.$strip>>;
277
255
  gcp: z.ZodOptional<z.ZodObject<{
278
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
279
- project: z.ZodString;
256
+ enabled: z.ZodBoolean;
257
+ project: z.ZodOptional<z.ZodString>;
280
258
  }, z.core.$strip>>;
281
259
  hetzner: z.ZodOptional<z.ZodObject<{
282
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
283
- apiKey: z.ZodString;
260
+ enabled: z.ZodBoolean;
261
+ apiKey: z.ZodOptional<z.ZodString>;
284
262
  }, z.core.$strip>>;
285
263
  aws: z.ZodOptional<z.ZodObject<{
286
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
287
- controllerRoleArn: z.ZodString;
264
+ enabled: z.ZodBoolean;
265
+ controllerRoleArn: z.ZodOptional<z.ZodString>;
288
266
  }, z.core.$strip>>;
267
+ constraints: z.ZodOptional<z.ZodObject<{
268
+ 'karpenter.sh/capacity-type': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
269
+ "on-demand": "on-demand";
270
+ spot: "spot";
271
+ }>>>>;
272
+ 'kubernetes.io/arch': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
273
+ amd64: "amd64";
274
+ arm64: "arm64";
275
+ }>>>>;
276
+ 'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
277
+ p3: "p3";
278
+ cx: "cx";
279
+ h1: "h1";
280
+ h3: "h3";
281
+ a1: "a1";
282
+ a2: "a2";
283
+ a3: "a3";
284
+ a4: "a4";
285
+ c1: "c1";
286
+ c2: "c2";
287
+ c2d: "c2d";
288
+ c3: "c3";
289
+ c3d: "c3d";
290
+ c4: "c4";
291
+ c4a: "c4a";
292
+ c4d: "c4d";
293
+ c5: "c5";
294
+ c5a: "c5a";
295
+ c5ad: "c5ad";
296
+ c5d: "c5d";
297
+ c5n: "c5n";
298
+ c6a: "c6a";
299
+ c6g: "c6g";
300
+ c6gd: "c6gd";
301
+ c6gn: "c6gn";
302
+ c6i: "c6i";
303
+ c6id: "c6id";
304
+ c6in: "c6in";
305
+ c7a: "c7a";
306
+ c7g: "c7g";
307
+ c7gd: "c7gd";
308
+ c7gn: "c7gn";
309
+ c7i: "c7i";
310
+ "c7i-flex": "c7i-flex";
311
+ c8g: "c8g";
312
+ c8gd: "c8gd";
313
+ cax: "cax";
314
+ ccx: "ccx";
315
+ cpx: "cpx";
316
+ d2: "d2";
317
+ d3: "d3";
318
+ d3en: "d3en";
319
+ dl1: "dl1";
320
+ dl2q: "dl2q";
321
+ e2: "e2";
322
+ f1: "f1";
323
+ f2: "f2";
324
+ g1: "g1";
325
+ g2: "g2";
326
+ g4ad: "g4ad";
327
+ g4dn: "g4dn";
328
+ g5: "g5";
329
+ g5g: "g5g";
330
+ g6: "g6";
331
+ g6e: "g6e";
332
+ gr6: "gr6";
333
+ hpc6a: "hpc6a";
334
+ hpc6id: "hpc6id";
335
+ hpc7a: "hpc7a";
336
+ hpc7g: "hpc7g";
337
+ i2: "i2";
338
+ i3: "i3";
339
+ i3en: "i3en";
340
+ i4g: "i4g";
341
+ i4i: "i4i";
342
+ i7i: "i7i";
343
+ i7ie: "i7ie";
344
+ i8g: "i8g";
345
+ im4gn: "im4gn";
346
+ inf1: "inf1";
347
+ inf2: "inf2";
348
+ is4gen: "is4gen";
349
+ m1: "m1";
350
+ m2: "m2";
351
+ m3: "m3";
352
+ m4: "m4";
353
+ m5: "m5";
354
+ m5a: "m5a";
355
+ m5ad: "m5ad";
356
+ m5d: "m5d";
357
+ m5dn: "m5dn";
358
+ m5n: "m5n";
359
+ m5zn: "m5zn";
360
+ m6a: "m6a";
361
+ m6g: "m6g";
362
+ m6gd: "m6gd";
363
+ m6i: "m6i";
364
+ m6id: "m6id";
365
+ m6idn: "m6idn";
366
+ m6in: "m6in";
367
+ m7a: "m7a";
368
+ m7g: "m7g";
369
+ m7gd: "m7gd";
370
+ m7i: "m7i";
371
+ "m7i-flex": "m7i-flex";
372
+ m8g: "m8g";
373
+ m8gd: "m8gd";
374
+ n1: "n1";
375
+ n2: "n2";
376
+ n2d: "n2d";
377
+ n4: "n4";
378
+ p3dn: "p3dn";
379
+ p4d: "p4d";
380
+ p4de: "p4de";
381
+ p5: "p5";
382
+ p5e: "p5e";
383
+ p5en: "p5en";
384
+ "p6-b200": "p6-b200";
385
+ r3: "r3";
386
+ r4: "r4";
387
+ r5: "r5";
388
+ r5a: "r5a";
389
+ r5ad: "r5ad";
390
+ r5b: "r5b";
391
+ r5d: "r5d";
392
+ r5dn: "r5dn";
393
+ r5n: "r5n";
394
+ r6a: "r6a";
395
+ r6g: "r6g";
396
+ r6gd: "r6gd";
397
+ r6i: "r6i";
398
+ r6id: "r6id";
399
+ r6idn: "r6idn";
400
+ r6in: "r6in";
401
+ r7a: "r7a";
402
+ r7g: "r7g";
403
+ r7gd: "r7gd";
404
+ r7i: "r7i";
405
+ r7iz: "r7iz";
406
+ r8g: "r8g";
407
+ r8gd: "r8gd";
408
+ t2: "t2";
409
+ t2a: "t2a";
410
+ t2d: "t2d";
411
+ t3: "t3";
412
+ t3a: "t3a";
413
+ t4g: "t4g";
414
+ trn1: "trn1";
415
+ trn1n: "trn1n";
416
+ "u-3tb1": "u-3tb1";
417
+ "u-6tb1": "u-6tb1";
418
+ "u7i-12tb": "u7i-12tb";
419
+ "u7i-6tb": "u7i-6tb";
420
+ "u7i-8tb": "u7i-8tb";
421
+ "u7in-16tb": "u7in-16tb";
422
+ "u7in-24tb": "u7in-24tb";
423
+ "u7in-32tb": "u7in-32tb";
424
+ vt1: "vt1";
425
+ x1: "x1";
426
+ x1e: "x1e";
427
+ x2gd: "x2gd";
428
+ x2idn: "x2idn";
429
+ x2iedn: "x2iedn";
430
+ x2iezn: "x2iezn";
431
+ x4: "x4";
432
+ x8g: "x8g";
433
+ z1d: "z1d";
434
+ z3: "z3";
435
+ }>>>;
436
+ 'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
437
+ "africa-south1": "africa-south1";
438
+ "ap-northeast-1": "ap-northeast-1";
439
+ "ap-northeast-2": "ap-northeast-2";
440
+ "ap-northeast-3": "ap-northeast-3";
441
+ "ap-south-1": "ap-south-1";
442
+ "ap-southeast-1": "ap-southeast-1";
443
+ "ap-southeast-2": "ap-southeast-2";
444
+ ash: "ash";
445
+ "asia-east1": "asia-east1";
446
+ "asia-east2": "asia-east2";
447
+ "asia-northeast1": "asia-northeast1";
448
+ "asia-northeast2": "asia-northeast2";
449
+ "asia-northeast3": "asia-northeast3";
450
+ "asia-south1": "asia-south1";
451
+ "asia-south2": "asia-south2";
452
+ "asia-southeast1": "asia-southeast1";
453
+ "asia-southeast2": "asia-southeast2";
454
+ "australia-southeast1": "australia-southeast1";
455
+ "australia-southeast2": "australia-southeast2";
456
+ "ca-central-1": "ca-central-1";
457
+ "eu-central-1": "eu-central-1";
458
+ "eu-central-2": "eu-central-2";
459
+ "eu-north-1": "eu-north-1";
460
+ "eu-west-1": "eu-west-1";
461
+ "eu-west-2": "eu-west-2";
462
+ "eu-west-3": "eu-west-3";
463
+ "europe-central2": "europe-central2";
464
+ "europe-north1": "europe-north1";
465
+ "europe-southwest1": "europe-southwest1";
466
+ "europe-west1": "europe-west1";
467
+ "europe-west10": "europe-west10";
468
+ "europe-west12": "europe-west12";
469
+ "europe-west2": "europe-west2";
470
+ "europe-west3": "europe-west3";
471
+ "europe-west4": "europe-west4";
472
+ "europe-west6": "europe-west6";
473
+ "europe-west8": "europe-west8";
474
+ "europe-west9": "europe-west9";
475
+ fsn1: "fsn1";
476
+ hel1: "hel1";
477
+ hil: "hil";
478
+ "me-central1": "me-central1";
479
+ "me-central2": "me-central2";
480
+ "me-west1": "me-west1";
481
+ nbg1: "nbg1";
482
+ "northamerica-northeast1": "northamerica-northeast1";
483
+ "northamerica-northeast2": "northamerica-northeast2";
484
+ "sa-east-1": "sa-east-1";
485
+ sin: "sin";
486
+ "southamerica-east1": "southamerica-east1";
487
+ "southamerica-west1": "southamerica-west1";
488
+ "us-central1": "us-central1";
489
+ "us-east-1": "us-east-1";
490
+ "us-east-2": "us-east-2";
491
+ "us-east1": "us-east1";
492
+ "us-east4": "us-east4";
493
+ "us-east5": "us-east5";
494
+ "us-south1": "us-south1";
495
+ "us-west-1": "us-west-1";
496
+ "us-west-2": "us-west-2";
497
+ "us-west1": "us-west1";
498
+ "us-west2": "us-west2";
499
+ "us-west3": "us-west3";
500
+ "us-west4": "us-west4";
501
+ }>>>;
502
+ }, z.core.$strip>>;
503
+ scalingProfile: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
504
+ aggressive: "aggressive";
505
+ conservative: "conservative";
506
+ }>>>;
289
507
  id: z.ZodString;
290
508
  }, z.core.$strip>;
291
509
  export declare const zFleet: z.ZodObject<{
292
510
  limits: z.ZodOptional<z.ZodObject<{
293
- cpu: z.ZodNumber;
511
+ cpu: z.ZodOptional<z.ZodInt>;
294
512
  }, z.core.$strip>>;
295
513
  gcp: z.ZodOptional<z.ZodObject<{
296
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
297
- project: z.ZodString;
514
+ enabled: z.ZodBoolean;
515
+ project: z.ZodOptional<z.ZodString>;
298
516
  }, z.core.$strip>>;
299
517
  hetzner: z.ZodOptional<z.ZodObject<{
300
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
301
- apiKey: z.ZodString;
518
+ enabled: z.ZodBoolean;
519
+ apiKey: z.ZodOptional<z.ZodString>;
302
520
  }, z.core.$strip>>;
303
521
  aws: z.ZodOptional<z.ZodObject<{
304
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
305
- controllerRoleArn: z.ZodString;
522
+ enabled: z.ZodBoolean;
523
+ controllerRoleArn: z.ZodOptional<z.ZodString>;
524
+ }, z.core.$strip>>;
525
+ constraints: z.ZodOptional<z.ZodObject<{
526
+ 'karpenter.sh/capacity-type': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
527
+ "on-demand": "on-demand";
528
+ spot: "spot";
529
+ }>>>>;
530
+ 'kubernetes.io/arch': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
531
+ amd64: "amd64";
532
+ arm64: "arm64";
533
+ }>>>>;
534
+ 'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
535
+ p3: "p3";
536
+ cx: "cx";
537
+ h1: "h1";
538
+ h3: "h3";
539
+ a1: "a1";
540
+ a2: "a2";
541
+ a3: "a3";
542
+ a4: "a4";
543
+ c1: "c1";
544
+ c2: "c2";
545
+ c2d: "c2d";
546
+ c3: "c3";
547
+ c3d: "c3d";
548
+ c4: "c4";
549
+ c4a: "c4a";
550
+ c4d: "c4d";
551
+ c5: "c5";
552
+ c5a: "c5a";
553
+ c5ad: "c5ad";
554
+ c5d: "c5d";
555
+ c5n: "c5n";
556
+ c6a: "c6a";
557
+ c6g: "c6g";
558
+ c6gd: "c6gd";
559
+ c6gn: "c6gn";
560
+ c6i: "c6i";
561
+ c6id: "c6id";
562
+ c6in: "c6in";
563
+ c7a: "c7a";
564
+ c7g: "c7g";
565
+ c7gd: "c7gd";
566
+ c7gn: "c7gn";
567
+ c7i: "c7i";
568
+ "c7i-flex": "c7i-flex";
569
+ c8g: "c8g";
570
+ c8gd: "c8gd";
571
+ cax: "cax";
572
+ ccx: "ccx";
573
+ cpx: "cpx";
574
+ d2: "d2";
575
+ d3: "d3";
576
+ d3en: "d3en";
577
+ dl1: "dl1";
578
+ dl2q: "dl2q";
579
+ e2: "e2";
580
+ f1: "f1";
581
+ f2: "f2";
582
+ g1: "g1";
583
+ g2: "g2";
584
+ g4ad: "g4ad";
585
+ g4dn: "g4dn";
586
+ g5: "g5";
587
+ g5g: "g5g";
588
+ g6: "g6";
589
+ g6e: "g6e";
590
+ gr6: "gr6";
591
+ hpc6a: "hpc6a";
592
+ hpc6id: "hpc6id";
593
+ hpc7a: "hpc7a";
594
+ hpc7g: "hpc7g";
595
+ i2: "i2";
596
+ i3: "i3";
597
+ i3en: "i3en";
598
+ i4g: "i4g";
599
+ i4i: "i4i";
600
+ i7i: "i7i";
601
+ i7ie: "i7ie";
602
+ i8g: "i8g";
603
+ im4gn: "im4gn";
604
+ inf1: "inf1";
605
+ inf2: "inf2";
606
+ is4gen: "is4gen";
607
+ m1: "m1";
608
+ m2: "m2";
609
+ m3: "m3";
610
+ m4: "m4";
611
+ m5: "m5";
612
+ m5a: "m5a";
613
+ m5ad: "m5ad";
614
+ m5d: "m5d";
615
+ m5dn: "m5dn";
616
+ m5n: "m5n";
617
+ m5zn: "m5zn";
618
+ m6a: "m6a";
619
+ m6g: "m6g";
620
+ m6gd: "m6gd";
621
+ m6i: "m6i";
622
+ m6id: "m6id";
623
+ m6idn: "m6idn";
624
+ m6in: "m6in";
625
+ m7a: "m7a";
626
+ m7g: "m7g";
627
+ m7gd: "m7gd";
628
+ m7i: "m7i";
629
+ "m7i-flex": "m7i-flex";
630
+ m8g: "m8g";
631
+ m8gd: "m8gd";
632
+ n1: "n1";
633
+ n2: "n2";
634
+ n2d: "n2d";
635
+ n4: "n4";
636
+ p3dn: "p3dn";
637
+ p4d: "p4d";
638
+ p4de: "p4de";
639
+ p5: "p5";
640
+ p5e: "p5e";
641
+ p5en: "p5en";
642
+ "p6-b200": "p6-b200";
643
+ r3: "r3";
644
+ r4: "r4";
645
+ r5: "r5";
646
+ r5a: "r5a";
647
+ r5ad: "r5ad";
648
+ r5b: "r5b";
649
+ r5d: "r5d";
650
+ r5dn: "r5dn";
651
+ r5n: "r5n";
652
+ r6a: "r6a";
653
+ r6g: "r6g";
654
+ r6gd: "r6gd";
655
+ r6i: "r6i";
656
+ r6id: "r6id";
657
+ r6idn: "r6idn";
658
+ r6in: "r6in";
659
+ r7a: "r7a";
660
+ r7g: "r7g";
661
+ r7gd: "r7gd";
662
+ r7i: "r7i";
663
+ r7iz: "r7iz";
664
+ r8g: "r8g";
665
+ r8gd: "r8gd";
666
+ t2: "t2";
667
+ t2a: "t2a";
668
+ t2d: "t2d";
669
+ t3: "t3";
670
+ t3a: "t3a";
671
+ t4g: "t4g";
672
+ trn1: "trn1";
673
+ trn1n: "trn1n";
674
+ "u-3tb1": "u-3tb1";
675
+ "u-6tb1": "u-6tb1";
676
+ "u7i-12tb": "u7i-12tb";
677
+ "u7i-6tb": "u7i-6tb";
678
+ "u7i-8tb": "u7i-8tb";
679
+ "u7in-16tb": "u7in-16tb";
680
+ "u7in-24tb": "u7in-24tb";
681
+ "u7in-32tb": "u7in-32tb";
682
+ vt1: "vt1";
683
+ x1: "x1";
684
+ x1e: "x1e";
685
+ x2gd: "x2gd";
686
+ x2idn: "x2idn";
687
+ x2iedn: "x2iedn";
688
+ x2iezn: "x2iezn";
689
+ x4: "x4";
690
+ x8g: "x8g";
691
+ z1d: "z1d";
692
+ z3: "z3";
693
+ }>>>;
694
+ 'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
695
+ "africa-south1": "africa-south1";
696
+ "ap-northeast-1": "ap-northeast-1";
697
+ "ap-northeast-2": "ap-northeast-2";
698
+ "ap-northeast-3": "ap-northeast-3";
699
+ "ap-south-1": "ap-south-1";
700
+ "ap-southeast-1": "ap-southeast-1";
701
+ "ap-southeast-2": "ap-southeast-2";
702
+ ash: "ash";
703
+ "asia-east1": "asia-east1";
704
+ "asia-east2": "asia-east2";
705
+ "asia-northeast1": "asia-northeast1";
706
+ "asia-northeast2": "asia-northeast2";
707
+ "asia-northeast3": "asia-northeast3";
708
+ "asia-south1": "asia-south1";
709
+ "asia-south2": "asia-south2";
710
+ "asia-southeast1": "asia-southeast1";
711
+ "asia-southeast2": "asia-southeast2";
712
+ "australia-southeast1": "australia-southeast1";
713
+ "australia-southeast2": "australia-southeast2";
714
+ "ca-central-1": "ca-central-1";
715
+ "eu-central-1": "eu-central-1";
716
+ "eu-central-2": "eu-central-2";
717
+ "eu-north-1": "eu-north-1";
718
+ "eu-west-1": "eu-west-1";
719
+ "eu-west-2": "eu-west-2";
720
+ "eu-west-3": "eu-west-3";
721
+ "europe-central2": "europe-central2";
722
+ "europe-north1": "europe-north1";
723
+ "europe-southwest1": "europe-southwest1";
724
+ "europe-west1": "europe-west1";
725
+ "europe-west10": "europe-west10";
726
+ "europe-west12": "europe-west12";
727
+ "europe-west2": "europe-west2";
728
+ "europe-west3": "europe-west3";
729
+ "europe-west4": "europe-west4";
730
+ "europe-west6": "europe-west6";
731
+ "europe-west8": "europe-west8";
732
+ "europe-west9": "europe-west9";
733
+ fsn1: "fsn1";
734
+ hel1: "hel1";
735
+ hil: "hil";
736
+ "me-central1": "me-central1";
737
+ "me-central2": "me-central2";
738
+ "me-west1": "me-west1";
739
+ nbg1: "nbg1";
740
+ "northamerica-northeast1": "northamerica-northeast1";
741
+ "northamerica-northeast2": "northamerica-northeast2";
742
+ "sa-east-1": "sa-east-1";
743
+ sin: "sin";
744
+ "southamerica-east1": "southamerica-east1";
745
+ "southamerica-west1": "southamerica-west1";
746
+ "us-central1": "us-central1";
747
+ "us-east-1": "us-east-1";
748
+ "us-east-2": "us-east-2";
749
+ "us-east1": "us-east1";
750
+ "us-east4": "us-east4";
751
+ "us-east5": "us-east5";
752
+ "us-south1": "us-south1";
753
+ "us-west-1": "us-west-1";
754
+ "us-west-2": "us-west-2";
755
+ "us-west1": "us-west1";
756
+ "us-west2": "us-west2";
757
+ "us-west3": "us-west3";
758
+ "us-west4": "us-west4";
759
+ }>>>;
306
760
  }, z.core.$strip>>;
761
+ scalingProfile: z.ZodDefault<z.ZodEnum<{
762
+ aggressive: "aggressive";
763
+ conservative: "conservative";
764
+ }>>;
307
765
  id: z.ZodString;
308
766
  }, z.core.$strip>;
309
767
  export declare const zFleetUpdateInput: z.ZodObject<{
310
768
  limits: z.ZodOptional<z.ZodObject<{
311
- cpu: z.ZodNumber;
769
+ cpu: z.ZodOptional<z.ZodInt>;
312
770
  }, z.core.$strip>>;
313
771
  gcp: z.ZodOptional<z.ZodObject<{
314
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
315
- project: z.ZodString;
772
+ enabled: z.ZodBoolean;
773
+ project: z.ZodOptional<z.ZodString>;
316
774
  }, z.core.$strip>>;
317
775
  hetzner: z.ZodOptional<z.ZodObject<{
318
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
319
- apiKey: z.ZodString;
776
+ enabled: z.ZodBoolean;
777
+ apiKey: z.ZodOptional<z.ZodString>;
320
778
  }, z.core.$strip>>;
321
779
  aws: z.ZodOptional<z.ZodObject<{
322
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
323
- controllerRoleArn: z.ZodString;
780
+ enabled: z.ZodBoolean;
781
+ controllerRoleArn: z.ZodOptional<z.ZodString>;
324
782
  }, z.core.$strip>>;
783
+ constraints: z.ZodOptional<z.ZodObject<{
784
+ 'karpenter.sh/capacity-type': z.ZodOptional<z.ZodArray<z.ZodEnum<{
785
+ "on-demand": "on-demand";
786
+ spot: "spot";
787
+ }>>>;
788
+ 'kubernetes.io/arch': z.ZodOptional<z.ZodArray<z.ZodEnum<{
789
+ amd64: "amd64";
790
+ arm64: "arm64";
791
+ }>>>;
792
+ 'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
793
+ p3: "p3";
794
+ cx: "cx";
795
+ h1: "h1";
796
+ h3: "h3";
797
+ a1: "a1";
798
+ a2: "a2";
799
+ a3: "a3";
800
+ a4: "a4";
801
+ c1: "c1";
802
+ c2: "c2";
803
+ c2d: "c2d";
804
+ c3: "c3";
805
+ c3d: "c3d";
806
+ c4: "c4";
807
+ c4a: "c4a";
808
+ c4d: "c4d";
809
+ c5: "c5";
810
+ c5a: "c5a";
811
+ c5ad: "c5ad";
812
+ c5d: "c5d";
813
+ c5n: "c5n";
814
+ c6a: "c6a";
815
+ c6g: "c6g";
816
+ c6gd: "c6gd";
817
+ c6gn: "c6gn";
818
+ c6i: "c6i";
819
+ c6id: "c6id";
820
+ c6in: "c6in";
821
+ c7a: "c7a";
822
+ c7g: "c7g";
823
+ c7gd: "c7gd";
824
+ c7gn: "c7gn";
825
+ c7i: "c7i";
826
+ "c7i-flex": "c7i-flex";
827
+ c8g: "c8g";
828
+ c8gd: "c8gd";
829
+ cax: "cax";
830
+ ccx: "ccx";
831
+ cpx: "cpx";
832
+ d2: "d2";
833
+ d3: "d3";
834
+ d3en: "d3en";
835
+ dl1: "dl1";
836
+ dl2q: "dl2q";
837
+ e2: "e2";
838
+ f1: "f1";
839
+ f2: "f2";
840
+ g1: "g1";
841
+ g2: "g2";
842
+ g4ad: "g4ad";
843
+ g4dn: "g4dn";
844
+ g5: "g5";
845
+ g5g: "g5g";
846
+ g6: "g6";
847
+ g6e: "g6e";
848
+ gr6: "gr6";
849
+ hpc6a: "hpc6a";
850
+ hpc6id: "hpc6id";
851
+ hpc7a: "hpc7a";
852
+ hpc7g: "hpc7g";
853
+ i2: "i2";
854
+ i3: "i3";
855
+ i3en: "i3en";
856
+ i4g: "i4g";
857
+ i4i: "i4i";
858
+ i7i: "i7i";
859
+ i7ie: "i7ie";
860
+ i8g: "i8g";
861
+ im4gn: "im4gn";
862
+ inf1: "inf1";
863
+ inf2: "inf2";
864
+ is4gen: "is4gen";
865
+ m1: "m1";
866
+ m2: "m2";
867
+ m3: "m3";
868
+ m4: "m4";
869
+ m5: "m5";
870
+ m5a: "m5a";
871
+ m5ad: "m5ad";
872
+ m5d: "m5d";
873
+ m5dn: "m5dn";
874
+ m5n: "m5n";
875
+ m5zn: "m5zn";
876
+ m6a: "m6a";
877
+ m6g: "m6g";
878
+ m6gd: "m6gd";
879
+ m6i: "m6i";
880
+ m6id: "m6id";
881
+ m6idn: "m6idn";
882
+ m6in: "m6in";
883
+ m7a: "m7a";
884
+ m7g: "m7g";
885
+ m7gd: "m7gd";
886
+ m7i: "m7i";
887
+ "m7i-flex": "m7i-flex";
888
+ m8g: "m8g";
889
+ m8gd: "m8gd";
890
+ n1: "n1";
891
+ n2: "n2";
892
+ n2d: "n2d";
893
+ n4: "n4";
894
+ p3dn: "p3dn";
895
+ p4d: "p4d";
896
+ p4de: "p4de";
897
+ p5: "p5";
898
+ p5e: "p5e";
899
+ p5en: "p5en";
900
+ "p6-b200": "p6-b200";
901
+ r3: "r3";
902
+ r4: "r4";
903
+ r5: "r5";
904
+ r5a: "r5a";
905
+ r5ad: "r5ad";
906
+ r5b: "r5b";
907
+ r5d: "r5d";
908
+ r5dn: "r5dn";
909
+ r5n: "r5n";
910
+ r6a: "r6a";
911
+ r6g: "r6g";
912
+ r6gd: "r6gd";
913
+ r6i: "r6i";
914
+ r6id: "r6id";
915
+ r6idn: "r6idn";
916
+ r6in: "r6in";
917
+ r7a: "r7a";
918
+ r7g: "r7g";
919
+ r7gd: "r7gd";
920
+ r7i: "r7i";
921
+ r7iz: "r7iz";
922
+ r8g: "r8g";
923
+ r8gd: "r8gd";
924
+ t2: "t2";
925
+ t2a: "t2a";
926
+ t2d: "t2d";
927
+ t3: "t3";
928
+ t3a: "t3a";
929
+ t4g: "t4g";
930
+ trn1: "trn1";
931
+ trn1n: "trn1n";
932
+ "u-3tb1": "u-3tb1";
933
+ "u-6tb1": "u-6tb1";
934
+ "u7i-12tb": "u7i-12tb";
935
+ "u7i-6tb": "u7i-6tb";
936
+ "u7i-8tb": "u7i-8tb";
937
+ "u7in-16tb": "u7in-16tb";
938
+ "u7in-24tb": "u7in-24tb";
939
+ "u7in-32tb": "u7in-32tb";
940
+ vt1: "vt1";
941
+ x1: "x1";
942
+ x1e: "x1e";
943
+ x2gd: "x2gd";
944
+ x2idn: "x2idn";
945
+ x2iedn: "x2iedn";
946
+ x2iezn: "x2iezn";
947
+ x4: "x4";
948
+ x8g: "x8g";
949
+ z1d: "z1d";
950
+ z3: "z3";
951
+ }>>>;
952
+ 'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
953
+ "africa-south1": "africa-south1";
954
+ "ap-northeast-1": "ap-northeast-1";
955
+ "ap-northeast-2": "ap-northeast-2";
956
+ "ap-northeast-3": "ap-northeast-3";
957
+ "ap-south-1": "ap-south-1";
958
+ "ap-southeast-1": "ap-southeast-1";
959
+ "ap-southeast-2": "ap-southeast-2";
960
+ ash: "ash";
961
+ "asia-east1": "asia-east1";
962
+ "asia-east2": "asia-east2";
963
+ "asia-northeast1": "asia-northeast1";
964
+ "asia-northeast2": "asia-northeast2";
965
+ "asia-northeast3": "asia-northeast3";
966
+ "asia-south1": "asia-south1";
967
+ "asia-south2": "asia-south2";
968
+ "asia-southeast1": "asia-southeast1";
969
+ "asia-southeast2": "asia-southeast2";
970
+ "australia-southeast1": "australia-southeast1";
971
+ "australia-southeast2": "australia-southeast2";
972
+ "ca-central-1": "ca-central-1";
973
+ "eu-central-1": "eu-central-1";
974
+ "eu-central-2": "eu-central-2";
975
+ "eu-north-1": "eu-north-1";
976
+ "eu-west-1": "eu-west-1";
977
+ "eu-west-2": "eu-west-2";
978
+ "eu-west-3": "eu-west-3";
979
+ "europe-central2": "europe-central2";
980
+ "europe-north1": "europe-north1";
981
+ "europe-southwest1": "europe-southwest1";
982
+ "europe-west1": "europe-west1";
983
+ "europe-west10": "europe-west10";
984
+ "europe-west12": "europe-west12";
985
+ "europe-west2": "europe-west2";
986
+ "europe-west3": "europe-west3";
987
+ "europe-west4": "europe-west4";
988
+ "europe-west6": "europe-west6";
989
+ "europe-west8": "europe-west8";
990
+ "europe-west9": "europe-west9";
991
+ fsn1: "fsn1";
992
+ hel1: "hel1";
993
+ hil: "hil";
994
+ "me-central1": "me-central1";
995
+ "me-central2": "me-central2";
996
+ "me-west1": "me-west1";
997
+ nbg1: "nbg1";
998
+ "northamerica-northeast1": "northamerica-northeast1";
999
+ "northamerica-northeast2": "northamerica-northeast2";
1000
+ "sa-east-1": "sa-east-1";
1001
+ sin: "sin";
1002
+ "southamerica-east1": "southamerica-east1";
1003
+ "southamerica-west1": "southamerica-west1";
1004
+ "us-central1": "us-central1";
1005
+ "us-east-1": "us-east-1";
1006
+ "us-east-2": "us-east-2";
1007
+ "us-east1": "us-east1";
1008
+ "us-east4": "us-east4";
1009
+ "us-east5": "us-east5";
1010
+ "us-south1": "us-south1";
1011
+ "us-west-1": "us-west-1";
1012
+ "us-west-2": "us-west-2";
1013
+ "us-west1": "us-west1";
1014
+ "us-west2": "us-west2";
1015
+ "us-west3": "us-west3";
1016
+ "us-west4": "us-west4";
1017
+ }>>>;
1018
+ }, z.core.$strip>>;
1019
+ scalingProfile: z.ZodEnum<{
1020
+ aggressive: "aggressive";
1021
+ conservative: "conservative";
1022
+ }>;
1023
+ }, z.core.$strip>;
1024
+ export declare const zInviteCreateInput: z.ZodObject<{
1025
+ email: z.ZodEmail;
1026
+ role: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
1027
+ Administrator: "Administrator";
1028
+ User: "User";
1029
+ }>>>;
325
1030
  }, z.core.$strip>;
326
1031
  export declare const zInvite: z.ZodObject<{
327
1032
  id: z.ZodOptional<z.ZodString>;
@@ -329,6 +1034,10 @@ export declare const zInvite: z.ZodObject<{
329
1034
  date_created: z.ZodISODateTime;
330
1035
  email: z.ZodOptional<z.ZodEmail>;
331
1036
  code: z.ZodOptional<z.ZodString>;
1037
+ role: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
1038
+ Administrator: "Administrator";
1039
+ User: "User";
1040
+ }>>>;
332
1041
  }, z.core.$strip>;
333
1042
  export declare const zInvoice: z.ZodObject<{
334
1043
  id: z.ZodOptional<z.ZodString>;
@@ -368,15 +1077,26 @@ export declare const zMarketplaceListing: z.ZodObject<{
368
1077
  }, z.core.$strip>>;
369
1078
  }, z.core.$strip>;
370
1079
  export declare const zOrganizationCreateInput: z.ZodObject<{
1080
+ type: z.ZodEnum<{
1081
+ business: "business";
1082
+ personal: "personal";
1083
+ }>;
371
1084
  email: z.ZodEmail;
372
1085
  first_name: z.ZodString;
373
1086
  last_name: z.ZodString;
374
1087
  company_name: z.ZodString;
375
1088
  password: z.ZodString;
376
1089
  }, z.core.$strip>;
1090
+ export declare const zOrganizationCreateOutput: z.ZodObject<{
1091
+ id: z.ZodString;
1092
+ }, z.core.$strip>;
377
1093
  export declare const zOrganization: z.ZodObject<{
378
1094
  id: z.ZodUUID;
379
1095
  name: z.ZodOptional<z.ZodString>;
1096
+ type: z.ZodEnum<{
1097
+ business: "business";
1098
+ personal: "personal";
1099
+ }>;
380
1100
  date_created: z.ZodISODateTime;
381
1101
  quota: z.ZodObject<{
382
1102
  basic_clusters_max: z.ZodInt;
@@ -390,8 +1110,6 @@ export declare const zOrganization: z.ZodObject<{
390
1110
  id: z.ZodString;
391
1111
  label: z.ZodString;
392
1112
  }, z.core.$strip>>;
393
- copilot_user_hourly_tokens: z.ZodInt;
394
- copilot_organization_hourly_tokens: z.ZodInt;
395
1113
  cfcr_storage_gb: z.ZodInt;
396
1114
  }, z.core.$strip>;
397
1115
  status: z.ZodEnum<{
@@ -399,27 +1117,27 @@ export declare const zOrganization: z.ZodObject<{
399
1117
  closed: "closed";
400
1118
  suspended: "suspended";
401
1119
  }>;
1120
+ verification: z.ZodEnum<{
1121
+ none: "none";
1122
+ submitted: "submitted";
1123
+ verified: "verified";
1124
+ }>;
402
1125
  }, z.core.$strip>;
403
1126
  export declare const zPaymentMethod: z.ZodObject<{
404
- id: z.ZodUUID;
405
- setup: z.ZodBoolean;
1127
+ id: z.ZodString;
406
1128
  type: z.ZodEnum<{
407
1129
  card: "card";
1130
+ sepa_debit: "sepa_debit";
1131
+ bank_transfer: "bank_transfer";
408
1132
  }>;
409
1133
  last4: z.ZodString;
410
1134
  exp_month: z.ZodInt;
411
1135
  exp_year: z.ZodInt;
412
- brand: z.ZodEnum<{
413
- unknown: "unknown";
414
- amex: "amex";
415
- diners: "diners";
416
- discover: "discover";
417
- eftpos_au: "eftpos_au";
418
- jcb: "jcb";
419
- mastercard: "mastercard";
420
- unionpay: "unionpay";
421
- visa: "visa";
422
- }>;
1136
+ brand: z.ZodString;
1137
+ iban: z.ZodString;
1138
+ bic: z.ZodString;
1139
+ account_holder_name: z.ZodString;
1140
+ is_default: z.ZodBoolean;
423
1141
  }, z.core.$strip>;
424
1142
  export declare const zPlatformQuota: z.ZodObject<{
425
1143
  basic_clusters_max: z.ZodInt;
@@ -433,8 +1151,6 @@ export declare const zPlatformQuota: z.ZodObject<{
433
1151
  id: z.ZodString;
434
1152
  label: z.ZodString;
435
1153
  }, z.core.$strip>>;
436
- copilot_user_hourly_tokens: z.ZodInt;
437
- copilot_organization_hourly_tokens: z.ZodInt;
438
1154
  cfcr_storage_gb: z.ZodInt;
439
1155
  }, z.core.$strip>;
440
1156
  export declare const zRegistryRepository: z.ZodObject<{
@@ -483,6 +1199,111 @@ export declare const zRegistryTag: z.ZodObject<{
483
1199
  repository: z.ZodString;
484
1200
  uri: z.ZodString;
485
1201
  }, z.core.$strip>;
1202
+ export declare const zTicketAttachment: z.ZodObject<{
1203
+ id: z.ZodString;
1204
+ filename: z.ZodString;
1205
+ content_type: z.ZodString;
1206
+ size: z.ZodInt;
1207
+ }, z.core.$strip>;
1208
+ export declare const zTicketCreateInput: z.ZodObject<{
1209
+ category: z.ZodEnum<{
1210
+ billing: "billing";
1211
+ technical: "technical";
1212
+ general: "general";
1213
+ }>;
1214
+ body: z.ZodString;
1215
+ properties: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1216
+ }, z.core.$strip>;
1217
+ export declare const zTicketListResponse: z.ZodObject<{
1218
+ items: z.ZodArray<z.ZodObject<{
1219
+ id: z.ZodString;
1220
+ status: z.ZodEnum<{
1221
+ closed: "closed";
1222
+ waiting_on_us: "waiting_on_us";
1223
+ waiting_on_user: "waiting_on_user";
1224
+ }>;
1225
+ category: z.ZodEnum<{
1226
+ billing: "billing";
1227
+ technical: "technical";
1228
+ general: "general";
1229
+ }>;
1230
+ summary: z.ZodString;
1231
+ closed_at: z.ZodOptional<z.ZodISODateTime>;
1232
+ date_created: z.ZodISODateTime;
1233
+ date_updated: z.ZodISODateTime;
1234
+ messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
1235
+ id: z.ZodString;
1236
+ type: z.ZodEnum<{
1237
+ customer_reply: "customer_reply";
1238
+ agent_reply: "agent_reply";
1239
+ }>;
1240
+ body: z.ZodString;
1241
+ author_first_name: z.ZodOptional<z.ZodString>;
1242
+ author_last_name: z.ZodOptional<z.ZodString>;
1243
+ attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
1244
+ id: z.ZodString;
1245
+ filename: z.ZodString;
1246
+ content_type: z.ZodString;
1247
+ size: z.ZodInt;
1248
+ }, z.core.$strip>>>;
1249
+ date_created: z.ZodISODateTime;
1250
+ }, z.core.$strip>>>;
1251
+ }, z.core.$strip>>;
1252
+ }, z.core.$strip>;
1253
+ export declare const zTicketMessageInput: z.ZodObject<{
1254
+ body: z.ZodString;
1255
+ }, z.core.$strip>;
1256
+ export declare const zTicketMessage: z.ZodObject<{
1257
+ id: z.ZodString;
1258
+ type: z.ZodEnum<{
1259
+ customer_reply: "customer_reply";
1260
+ agent_reply: "agent_reply";
1261
+ }>;
1262
+ body: z.ZodString;
1263
+ author_first_name: z.ZodOptional<z.ZodString>;
1264
+ author_last_name: z.ZodOptional<z.ZodString>;
1265
+ attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
1266
+ id: z.ZodString;
1267
+ filename: z.ZodString;
1268
+ content_type: z.ZodString;
1269
+ size: z.ZodInt;
1270
+ }, z.core.$strip>>>;
1271
+ date_created: z.ZodISODateTime;
1272
+ }, z.core.$strip>;
1273
+ export declare const zTicket: z.ZodObject<{
1274
+ id: z.ZodString;
1275
+ status: z.ZodEnum<{
1276
+ closed: "closed";
1277
+ waiting_on_us: "waiting_on_us";
1278
+ waiting_on_user: "waiting_on_user";
1279
+ }>;
1280
+ category: z.ZodEnum<{
1281
+ billing: "billing";
1282
+ technical: "technical";
1283
+ general: "general";
1284
+ }>;
1285
+ summary: z.ZodString;
1286
+ closed_at: z.ZodOptional<z.ZodISODateTime>;
1287
+ date_created: z.ZodISODateTime;
1288
+ date_updated: z.ZodISODateTime;
1289
+ messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
1290
+ id: z.ZodString;
1291
+ type: z.ZodEnum<{
1292
+ customer_reply: "customer_reply";
1293
+ agent_reply: "agent_reply";
1294
+ }>;
1295
+ body: z.ZodString;
1296
+ author_first_name: z.ZodOptional<z.ZodString>;
1297
+ author_last_name: z.ZodOptional<z.ZodString>;
1298
+ attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
1299
+ id: z.ZodString;
1300
+ filename: z.ZodString;
1301
+ content_type: z.ZodString;
1302
+ size: z.ZodInt;
1303
+ }, z.core.$strip>>>;
1304
+ date_created: z.ZodISODateTime;
1305
+ }, z.core.$strip>>>;
1306
+ }, z.core.$strip>;
486
1307
  export declare const zTokenCreateInput: z.ZodObject<{
487
1308
  name: z.ZodString;
488
1309
  role: z.ZodEnum<{
@@ -539,14 +1360,6 @@ export declare const zUserCreateInput: z.ZodObject<{
539
1360
  last_name: z.ZodString;
540
1361
  code: z.ZodString;
541
1362
  password: z.ZodString;
542
- status: z.ZodOptional<z.ZodEnum<{
543
- active: "active";
544
- inactive: "inactive";
545
- }>>;
546
- role: z.ZodOptional<z.ZodEnum<{
547
- Administrator: "Administrator";
548
- User: "User";
549
- }>>;
550
1363
  }, z.core.$strip>;
551
1364
  export declare const zUser: z.ZodObject<{
552
1365
  email: z.ZodEmail;
@@ -577,11 +1390,11 @@ export declare const zUserUpdateInput: z.ZodObject<{
577
1390
  }>>;
578
1391
  }, z.core.$strip>;
579
1392
  export declare const zGetUsageQuery: z.ZodObject<{
580
- granularity: z.ZodOptional<z.ZodEnum<{
1393
+ granularity: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
581
1394
  hourly: "hourly";
582
1395
  daily: "daily";
583
1396
  monthly: "monthly";
584
- }>>;
1397
+ }>>>;
585
1398
  }, z.core.$strip>;
586
1399
  /**
587
1400
  * Usage data with facets for filtering
@@ -601,36 +1414,45 @@ export declare const zGetUsageResponse: z.ZodObject<{
601
1414
  }, z.core.$strip>;
602
1415
  }, z.core.$strip>;
603
1416
  /**
604
- * Redacted payment card information.
1417
+ * 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.
1418
+ *
605
1419
  */
606
- export declare const zGetPaymentMethodResponse: z.ZodObject<{
607
- id: z.ZodUUID;
608
- setup: z.ZodBoolean;
1420
+ export declare const zGetPaymentMethodSecretResponse: z.ZodObject<{
1421
+ id: z.ZodOptional<z.ZodString>;
1422
+ }, z.core.$strip>;
1423
+ /**
1424
+ * An array of payment methods.
1425
+ */
1426
+ export declare const zListPaymentMethodsResponse: z.ZodArray<z.ZodObject<{
1427
+ id: z.ZodString;
609
1428
  type: z.ZodEnum<{
610
1429
  card: "card";
1430
+ sepa_debit: "sepa_debit";
1431
+ bank_transfer: "bank_transfer";
611
1432
  }>;
612
1433
  last4: z.ZodString;
613
1434
  exp_month: z.ZodInt;
614
1435
  exp_year: z.ZodInt;
615
- brand: z.ZodEnum<{
616
- unknown: "unknown";
617
- amex: "amex";
618
- diners: "diners";
619
- discover: "discover";
620
- eftpos_au: "eftpos_au";
621
- jcb: "jcb";
622
- mastercard: "mastercard";
623
- unionpay: "unionpay";
624
- visa: "visa";
625
- }>;
1436
+ brand: z.ZodString;
1437
+ iban: z.ZodString;
1438
+ bic: z.ZodString;
1439
+ account_holder_name: z.ZodString;
1440
+ is_default: z.ZodBoolean;
1441
+ }, z.core.$strip>>;
1442
+ export declare const zSetDefaultPaymentMethodPath: z.ZodObject<{
1443
+ paymentMethodId: z.ZodString;
626
1444
  }, z.core.$strip>;
627
1445
  /**
628
- * 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.
629
- *
1446
+ * Default payment method updated.
630
1447
  */
631
- export declare const zGetPaymentMethodSecretResponse: z.ZodObject<{
632
- id: z.ZodOptional<z.ZodString>;
1448
+ export declare const zSetDefaultPaymentMethodResponse: z.ZodVoid;
1449
+ export declare const zDeletePaymentMethodPath: z.ZodObject<{
1450
+ paymentMethodId: z.ZodString;
633
1451
  }, z.core.$strip>;
1452
+ /**
1453
+ * Payment method deleted.
1454
+ */
1455
+ export declare const zDeletePaymentMethodResponse: z.ZodVoid;
634
1456
  /**
635
1457
  * An array of usage records.
636
1458
  */
@@ -649,6 +1471,10 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
649
1471
  * Returns a single object containing organization contact and billing address details.
650
1472
  */
651
1473
  export declare const zGetContactResponse: z.ZodObject<{
1474
+ type: z.ZodEnum<{
1475
+ business: "business";
1476
+ personal: "personal";
1477
+ }>;
652
1478
  company: z.ZodOptional<z.ZodString>;
653
1479
  address1: z.ZodOptional<z.ZodString>;
654
1480
  address2: z.ZodOptional<z.ZodString>;
@@ -792,6 +1618,10 @@ export declare const zGetContactResponse: z.ZodObject<{
792
1618
  }>>;
793
1619
  }, z.core.$strip>;
794
1620
  export declare const zUpdateContactBody: z.ZodObject<{
1621
+ type: z.ZodEnum<{
1622
+ business: "business";
1623
+ personal: "personal";
1624
+ }>;
795
1625
  company: z.ZodOptional<z.ZodString>;
796
1626
  address1: z.ZodOptional<z.ZodString>;
797
1627
  address2: z.ZodOptional<z.ZodString>;
@@ -938,6 +1768,10 @@ export declare const zUpdateContactBody: z.ZodObject<{
938
1768
  * Successfully updated. Returns updated organization details.
939
1769
  */
940
1770
  export declare const zUpdateContactResponse: z.ZodObject<{
1771
+ type: z.ZodEnum<{
1772
+ business: "business";
1773
+ personal: "personal";
1774
+ }>;
941
1775
  company: z.ZodOptional<z.ZodString>;
942
1776
  address1: z.ZodOptional<z.ZodString>;
943
1777
  address2: z.ZodOptional<z.ZodString>;
@@ -1111,22 +1945,7 @@ export declare const zListChartsResponse: z.ZodArray<z.ZodObject<{
1111
1945
  name: z.ZodString;
1112
1946
  namespace: z.ZodString;
1113
1947
  chart: z.ZodString;
1114
- status: z.ZodEnum<{
1115
- InstallSucceeded: "InstallSucceeded";
1116
- InstallFailed: "InstallFailed";
1117
- UpgradeSucceeded: "UpgradeSucceeded";
1118
- UpgradeFailed: "UpgradeFailed";
1119
- TestSucceeded: "TestSucceeded";
1120
- TestFailed: "TestFailed";
1121
- RollbackSucceeded: "RollbackSucceeded";
1122
- RollbackFailed: "RollbackFailed";
1123
- UninstallSucceeded: "UninstallSucceeded";
1124
- UninstallFailed: "UninstallFailed";
1125
- ArtifactFailed: "ArtifactFailed";
1126
- DependencyNotReady: "DependencyNotReady";
1127
- Progressing: "Progressing";
1128
- SourceNotReady: "SourceNotReady";
1129
- }>;
1948
+ status: z.ZodString;
1130
1949
  version_current: z.ZodString;
1131
1950
  created_at: z.ZodString;
1132
1951
  updated_at: z.ZodString;
@@ -1167,22 +1986,7 @@ export declare const zGetChartResponse: z.ZodObject<{
1167
1986
  name: z.ZodString;
1168
1987
  namespace: z.ZodString;
1169
1988
  chart: z.ZodString;
1170
- status: z.ZodEnum<{
1171
- InstallSucceeded: "InstallSucceeded";
1172
- InstallFailed: "InstallFailed";
1173
- UpgradeSucceeded: "UpgradeSucceeded";
1174
- UpgradeFailed: "UpgradeFailed";
1175
- TestSucceeded: "TestSucceeded";
1176
- TestFailed: "TestFailed";
1177
- RollbackSucceeded: "RollbackSucceeded";
1178
- RollbackFailed: "RollbackFailed";
1179
- UninstallSucceeded: "UninstallSucceeded";
1180
- UninstallFailed: "UninstallFailed";
1181
- ArtifactFailed: "ArtifactFailed";
1182
- DependencyNotReady: "DependencyNotReady";
1183
- Progressing: "Progressing";
1184
- SourceNotReady: "SourceNotReady";
1185
- }>;
1989
+ status: z.ZodString;
1186
1990
  version_current: z.ZodString;
1187
1991
  created_at: z.ZodString;
1188
1992
  updated_at: z.ZodString;
@@ -1208,38 +2012,518 @@ export declare const zListFleetsPath: z.ZodObject<{
1208
2012
  */
1209
2013
  export declare const zListFleetsResponse: z.ZodArray<z.ZodObject<{
1210
2014
  limits: z.ZodOptional<z.ZodObject<{
1211
- cpu: z.ZodNumber;
2015
+ cpu: z.ZodOptional<z.ZodInt>;
1212
2016
  }, z.core.$strip>>;
1213
2017
  gcp: z.ZodOptional<z.ZodObject<{
1214
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1215
- project: z.ZodString;
2018
+ enabled: z.ZodBoolean;
2019
+ project: z.ZodOptional<z.ZodString>;
1216
2020
  }, z.core.$strip>>;
1217
2021
  hetzner: z.ZodOptional<z.ZodObject<{
1218
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1219
- apiKey: z.ZodString;
2022
+ enabled: z.ZodBoolean;
2023
+ apiKey: z.ZodOptional<z.ZodString>;
1220
2024
  }, z.core.$strip>>;
1221
2025
  aws: z.ZodOptional<z.ZodObject<{
1222
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1223
- controllerRoleArn: z.ZodString;
2026
+ enabled: z.ZodBoolean;
2027
+ controllerRoleArn: z.ZodOptional<z.ZodString>;
1224
2028
  }, z.core.$strip>>;
2029
+ constraints: z.ZodOptional<z.ZodObject<{
2030
+ 'karpenter.sh/capacity-type': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
2031
+ "on-demand": "on-demand";
2032
+ spot: "spot";
2033
+ }>>>>;
2034
+ 'kubernetes.io/arch': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
2035
+ amd64: "amd64";
2036
+ arm64: "arm64";
2037
+ }>>>>;
2038
+ 'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
2039
+ p3: "p3";
2040
+ cx: "cx";
2041
+ h1: "h1";
2042
+ h3: "h3";
2043
+ a1: "a1";
2044
+ a2: "a2";
2045
+ a3: "a3";
2046
+ a4: "a4";
2047
+ c1: "c1";
2048
+ c2: "c2";
2049
+ c2d: "c2d";
2050
+ c3: "c3";
2051
+ c3d: "c3d";
2052
+ c4: "c4";
2053
+ c4a: "c4a";
2054
+ c4d: "c4d";
2055
+ c5: "c5";
2056
+ c5a: "c5a";
2057
+ c5ad: "c5ad";
2058
+ c5d: "c5d";
2059
+ c5n: "c5n";
2060
+ c6a: "c6a";
2061
+ c6g: "c6g";
2062
+ c6gd: "c6gd";
2063
+ c6gn: "c6gn";
2064
+ c6i: "c6i";
2065
+ c6id: "c6id";
2066
+ c6in: "c6in";
2067
+ c7a: "c7a";
2068
+ c7g: "c7g";
2069
+ c7gd: "c7gd";
2070
+ c7gn: "c7gn";
2071
+ c7i: "c7i";
2072
+ "c7i-flex": "c7i-flex";
2073
+ c8g: "c8g";
2074
+ c8gd: "c8gd";
2075
+ cax: "cax";
2076
+ ccx: "ccx";
2077
+ cpx: "cpx";
2078
+ d2: "d2";
2079
+ d3: "d3";
2080
+ d3en: "d3en";
2081
+ dl1: "dl1";
2082
+ dl2q: "dl2q";
2083
+ e2: "e2";
2084
+ f1: "f1";
2085
+ f2: "f2";
2086
+ g1: "g1";
2087
+ g2: "g2";
2088
+ g4ad: "g4ad";
2089
+ g4dn: "g4dn";
2090
+ g5: "g5";
2091
+ g5g: "g5g";
2092
+ g6: "g6";
2093
+ g6e: "g6e";
2094
+ gr6: "gr6";
2095
+ hpc6a: "hpc6a";
2096
+ hpc6id: "hpc6id";
2097
+ hpc7a: "hpc7a";
2098
+ hpc7g: "hpc7g";
2099
+ i2: "i2";
2100
+ i3: "i3";
2101
+ i3en: "i3en";
2102
+ i4g: "i4g";
2103
+ i4i: "i4i";
2104
+ i7i: "i7i";
2105
+ i7ie: "i7ie";
2106
+ i8g: "i8g";
2107
+ im4gn: "im4gn";
2108
+ inf1: "inf1";
2109
+ inf2: "inf2";
2110
+ is4gen: "is4gen";
2111
+ m1: "m1";
2112
+ m2: "m2";
2113
+ m3: "m3";
2114
+ m4: "m4";
2115
+ m5: "m5";
2116
+ m5a: "m5a";
2117
+ m5ad: "m5ad";
2118
+ m5d: "m5d";
2119
+ m5dn: "m5dn";
2120
+ m5n: "m5n";
2121
+ m5zn: "m5zn";
2122
+ m6a: "m6a";
2123
+ m6g: "m6g";
2124
+ m6gd: "m6gd";
2125
+ m6i: "m6i";
2126
+ m6id: "m6id";
2127
+ m6idn: "m6idn";
2128
+ m6in: "m6in";
2129
+ m7a: "m7a";
2130
+ m7g: "m7g";
2131
+ m7gd: "m7gd";
2132
+ m7i: "m7i";
2133
+ "m7i-flex": "m7i-flex";
2134
+ m8g: "m8g";
2135
+ m8gd: "m8gd";
2136
+ n1: "n1";
2137
+ n2: "n2";
2138
+ n2d: "n2d";
2139
+ n4: "n4";
2140
+ p3dn: "p3dn";
2141
+ p4d: "p4d";
2142
+ p4de: "p4de";
2143
+ p5: "p5";
2144
+ p5e: "p5e";
2145
+ p5en: "p5en";
2146
+ "p6-b200": "p6-b200";
2147
+ r3: "r3";
2148
+ r4: "r4";
2149
+ r5: "r5";
2150
+ r5a: "r5a";
2151
+ r5ad: "r5ad";
2152
+ r5b: "r5b";
2153
+ r5d: "r5d";
2154
+ r5dn: "r5dn";
2155
+ r5n: "r5n";
2156
+ r6a: "r6a";
2157
+ r6g: "r6g";
2158
+ r6gd: "r6gd";
2159
+ r6i: "r6i";
2160
+ r6id: "r6id";
2161
+ r6idn: "r6idn";
2162
+ r6in: "r6in";
2163
+ r7a: "r7a";
2164
+ r7g: "r7g";
2165
+ r7gd: "r7gd";
2166
+ r7i: "r7i";
2167
+ r7iz: "r7iz";
2168
+ r8g: "r8g";
2169
+ r8gd: "r8gd";
2170
+ t2: "t2";
2171
+ t2a: "t2a";
2172
+ t2d: "t2d";
2173
+ t3: "t3";
2174
+ t3a: "t3a";
2175
+ t4g: "t4g";
2176
+ trn1: "trn1";
2177
+ trn1n: "trn1n";
2178
+ "u-3tb1": "u-3tb1";
2179
+ "u-6tb1": "u-6tb1";
2180
+ "u7i-12tb": "u7i-12tb";
2181
+ "u7i-6tb": "u7i-6tb";
2182
+ "u7i-8tb": "u7i-8tb";
2183
+ "u7in-16tb": "u7in-16tb";
2184
+ "u7in-24tb": "u7in-24tb";
2185
+ "u7in-32tb": "u7in-32tb";
2186
+ vt1: "vt1";
2187
+ x1: "x1";
2188
+ x1e: "x1e";
2189
+ x2gd: "x2gd";
2190
+ x2idn: "x2idn";
2191
+ x2iedn: "x2iedn";
2192
+ x2iezn: "x2iezn";
2193
+ x4: "x4";
2194
+ x8g: "x8g";
2195
+ z1d: "z1d";
2196
+ z3: "z3";
2197
+ }>>>;
2198
+ 'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
2199
+ "africa-south1": "africa-south1";
2200
+ "ap-northeast-1": "ap-northeast-1";
2201
+ "ap-northeast-2": "ap-northeast-2";
2202
+ "ap-northeast-3": "ap-northeast-3";
2203
+ "ap-south-1": "ap-south-1";
2204
+ "ap-southeast-1": "ap-southeast-1";
2205
+ "ap-southeast-2": "ap-southeast-2";
2206
+ ash: "ash";
2207
+ "asia-east1": "asia-east1";
2208
+ "asia-east2": "asia-east2";
2209
+ "asia-northeast1": "asia-northeast1";
2210
+ "asia-northeast2": "asia-northeast2";
2211
+ "asia-northeast3": "asia-northeast3";
2212
+ "asia-south1": "asia-south1";
2213
+ "asia-south2": "asia-south2";
2214
+ "asia-southeast1": "asia-southeast1";
2215
+ "asia-southeast2": "asia-southeast2";
2216
+ "australia-southeast1": "australia-southeast1";
2217
+ "australia-southeast2": "australia-southeast2";
2218
+ "ca-central-1": "ca-central-1";
2219
+ "eu-central-1": "eu-central-1";
2220
+ "eu-central-2": "eu-central-2";
2221
+ "eu-north-1": "eu-north-1";
2222
+ "eu-west-1": "eu-west-1";
2223
+ "eu-west-2": "eu-west-2";
2224
+ "eu-west-3": "eu-west-3";
2225
+ "europe-central2": "europe-central2";
2226
+ "europe-north1": "europe-north1";
2227
+ "europe-southwest1": "europe-southwest1";
2228
+ "europe-west1": "europe-west1";
2229
+ "europe-west10": "europe-west10";
2230
+ "europe-west12": "europe-west12";
2231
+ "europe-west2": "europe-west2";
2232
+ "europe-west3": "europe-west3";
2233
+ "europe-west4": "europe-west4";
2234
+ "europe-west6": "europe-west6";
2235
+ "europe-west8": "europe-west8";
2236
+ "europe-west9": "europe-west9";
2237
+ fsn1: "fsn1";
2238
+ hel1: "hel1";
2239
+ hil: "hil";
2240
+ "me-central1": "me-central1";
2241
+ "me-central2": "me-central2";
2242
+ "me-west1": "me-west1";
2243
+ nbg1: "nbg1";
2244
+ "northamerica-northeast1": "northamerica-northeast1";
2245
+ "northamerica-northeast2": "northamerica-northeast2";
2246
+ "sa-east-1": "sa-east-1";
2247
+ sin: "sin";
2248
+ "southamerica-east1": "southamerica-east1";
2249
+ "southamerica-west1": "southamerica-west1";
2250
+ "us-central1": "us-central1";
2251
+ "us-east-1": "us-east-1";
2252
+ "us-east-2": "us-east-2";
2253
+ "us-east1": "us-east1";
2254
+ "us-east4": "us-east4";
2255
+ "us-east5": "us-east5";
2256
+ "us-south1": "us-south1";
2257
+ "us-west-1": "us-west-1";
2258
+ "us-west-2": "us-west-2";
2259
+ "us-west1": "us-west1";
2260
+ "us-west2": "us-west2";
2261
+ "us-west3": "us-west3";
2262
+ "us-west4": "us-west4";
2263
+ }>>>;
2264
+ }, z.core.$strip>>;
2265
+ scalingProfile: z.ZodDefault<z.ZodEnum<{
2266
+ aggressive: "aggressive";
2267
+ conservative: "conservative";
2268
+ }>>;
1225
2269
  id: z.ZodString;
1226
2270
  }, z.core.$strip>>;
1227
2271
  export declare const zCreateFleetBody: z.ZodObject<{
1228
2272
  limits: z.ZodOptional<z.ZodObject<{
1229
- cpu: z.ZodNumber;
2273
+ cpu: z.ZodOptional<z.ZodInt>;
1230
2274
  }, z.core.$strip>>;
1231
2275
  gcp: z.ZodOptional<z.ZodObject<{
1232
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1233
- project: z.ZodString;
2276
+ enabled: z.ZodBoolean;
2277
+ project: z.ZodOptional<z.ZodString>;
1234
2278
  }, z.core.$strip>>;
1235
2279
  hetzner: z.ZodOptional<z.ZodObject<{
1236
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1237
- apiKey: z.ZodString;
2280
+ enabled: z.ZodBoolean;
2281
+ apiKey: z.ZodOptional<z.ZodString>;
1238
2282
  }, z.core.$strip>>;
1239
2283
  aws: z.ZodOptional<z.ZodObject<{
1240
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1241
- controllerRoleArn: z.ZodString;
2284
+ enabled: z.ZodBoolean;
2285
+ controllerRoleArn: z.ZodOptional<z.ZodString>;
1242
2286
  }, z.core.$strip>>;
2287
+ constraints: z.ZodOptional<z.ZodObject<{
2288
+ 'karpenter.sh/capacity-type': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
2289
+ "on-demand": "on-demand";
2290
+ spot: "spot";
2291
+ }>>>>;
2292
+ 'kubernetes.io/arch': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
2293
+ amd64: "amd64";
2294
+ arm64: "arm64";
2295
+ }>>>>;
2296
+ 'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
2297
+ p3: "p3";
2298
+ cx: "cx";
2299
+ h1: "h1";
2300
+ h3: "h3";
2301
+ a1: "a1";
2302
+ a2: "a2";
2303
+ a3: "a3";
2304
+ a4: "a4";
2305
+ c1: "c1";
2306
+ c2: "c2";
2307
+ c2d: "c2d";
2308
+ c3: "c3";
2309
+ c3d: "c3d";
2310
+ c4: "c4";
2311
+ c4a: "c4a";
2312
+ c4d: "c4d";
2313
+ c5: "c5";
2314
+ c5a: "c5a";
2315
+ c5ad: "c5ad";
2316
+ c5d: "c5d";
2317
+ c5n: "c5n";
2318
+ c6a: "c6a";
2319
+ c6g: "c6g";
2320
+ c6gd: "c6gd";
2321
+ c6gn: "c6gn";
2322
+ c6i: "c6i";
2323
+ c6id: "c6id";
2324
+ c6in: "c6in";
2325
+ c7a: "c7a";
2326
+ c7g: "c7g";
2327
+ c7gd: "c7gd";
2328
+ c7gn: "c7gn";
2329
+ c7i: "c7i";
2330
+ "c7i-flex": "c7i-flex";
2331
+ c8g: "c8g";
2332
+ c8gd: "c8gd";
2333
+ cax: "cax";
2334
+ ccx: "ccx";
2335
+ cpx: "cpx";
2336
+ d2: "d2";
2337
+ d3: "d3";
2338
+ d3en: "d3en";
2339
+ dl1: "dl1";
2340
+ dl2q: "dl2q";
2341
+ e2: "e2";
2342
+ f1: "f1";
2343
+ f2: "f2";
2344
+ g1: "g1";
2345
+ g2: "g2";
2346
+ g4ad: "g4ad";
2347
+ g4dn: "g4dn";
2348
+ g5: "g5";
2349
+ g5g: "g5g";
2350
+ g6: "g6";
2351
+ g6e: "g6e";
2352
+ gr6: "gr6";
2353
+ hpc6a: "hpc6a";
2354
+ hpc6id: "hpc6id";
2355
+ hpc7a: "hpc7a";
2356
+ hpc7g: "hpc7g";
2357
+ i2: "i2";
2358
+ i3: "i3";
2359
+ i3en: "i3en";
2360
+ i4g: "i4g";
2361
+ i4i: "i4i";
2362
+ i7i: "i7i";
2363
+ i7ie: "i7ie";
2364
+ i8g: "i8g";
2365
+ im4gn: "im4gn";
2366
+ inf1: "inf1";
2367
+ inf2: "inf2";
2368
+ is4gen: "is4gen";
2369
+ m1: "m1";
2370
+ m2: "m2";
2371
+ m3: "m3";
2372
+ m4: "m4";
2373
+ m5: "m5";
2374
+ m5a: "m5a";
2375
+ m5ad: "m5ad";
2376
+ m5d: "m5d";
2377
+ m5dn: "m5dn";
2378
+ m5n: "m5n";
2379
+ m5zn: "m5zn";
2380
+ m6a: "m6a";
2381
+ m6g: "m6g";
2382
+ m6gd: "m6gd";
2383
+ m6i: "m6i";
2384
+ m6id: "m6id";
2385
+ m6idn: "m6idn";
2386
+ m6in: "m6in";
2387
+ m7a: "m7a";
2388
+ m7g: "m7g";
2389
+ m7gd: "m7gd";
2390
+ m7i: "m7i";
2391
+ "m7i-flex": "m7i-flex";
2392
+ m8g: "m8g";
2393
+ m8gd: "m8gd";
2394
+ n1: "n1";
2395
+ n2: "n2";
2396
+ n2d: "n2d";
2397
+ n4: "n4";
2398
+ p3dn: "p3dn";
2399
+ p4d: "p4d";
2400
+ p4de: "p4de";
2401
+ p5: "p5";
2402
+ p5e: "p5e";
2403
+ p5en: "p5en";
2404
+ "p6-b200": "p6-b200";
2405
+ r3: "r3";
2406
+ r4: "r4";
2407
+ r5: "r5";
2408
+ r5a: "r5a";
2409
+ r5ad: "r5ad";
2410
+ r5b: "r5b";
2411
+ r5d: "r5d";
2412
+ r5dn: "r5dn";
2413
+ r5n: "r5n";
2414
+ r6a: "r6a";
2415
+ r6g: "r6g";
2416
+ r6gd: "r6gd";
2417
+ r6i: "r6i";
2418
+ r6id: "r6id";
2419
+ r6idn: "r6idn";
2420
+ r6in: "r6in";
2421
+ r7a: "r7a";
2422
+ r7g: "r7g";
2423
+ r7gd: "r7gd";
2424
+ r7i: "r7i";
2425
+ r7iz: "r7iz";
2426
+ r8g: "r8g";
2427
+ r8gd: "r8gd";
2428
+ t2: "t2";
2429
+ t2a: "t2a";
2430
+ t2d: "t2d";
2431
+ t3: "t3";
2432
+ t3a: "t3a";
2433
+ t4g: "t4g";
2434
+ trn1: "trn1";
2435
+ trn1n: "trn1n";
2436
+ "u-3tb1": "u-3tb1";
2437
+ "u-6tb1": "u-6tb1";
2438
+ "u7i-12tb": "u7i-12tb";
2439
+ "u7i-6tb": "u7i-6tb";
2440
+ "u7i-8tb": "u7i-8tb";
2441
+ "u7in-16tb": "u7in-16tb";
2442
+ "u7in-24tb": "u7in-24tb";
2443
+ "u7in-32tb": "u7in-32tb";
2444
+ vt1: "vt1";
2445
+ x1: "x1";
2446
+ x1e: "x1e";
2447
+ x2gd: "x2gd";
2448
+ x2idn: "x2idn";
2449
+ x2iedn: "x2iedn";
2450
+ x2iezn: "x2iezn";
2451
+ x4: "x4";
2452
+ x8g: "x8g";
2453
+ z1d: "z1d";
2454
+ z3: "z3";
2455
+ }>>>;
2456
+ 'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
2457
+ "africa-south1": "africa-south1";
2458
+ "ap-northeast-1": "ap-northeast-1";
2459
+ "ap-northeast-2": "ap-northeast-2";
2460
+ "ap-northeast-3": "ap-northeast-3";
2461
+ "ap-south-1": "ap-south-1";
2462
+ "ap-southeast-1": "ap-southeast-1";
2463
+ "ap-southeast-2": "ap-southeast-2";
2464
+ ash: "ash";
2465
+ "asia-east1": "asia-east1";
2466
+ "asia-east2": "asia-east2";
2467
+ "asia-northeast1": "asia-northeast1";
2468
+ "asia-northeast2": "asia-northeast2";
2469
+ "asia-northeast3": "asia-northeast3";
2470
+ "asia-south1": "asia-south1";
2471
+ "asia-south2": "asia-south2";
2472
+ "asia-southeast1": "asia-southeast1";
2473
+ "asia-southeast2": "asia-southeast2";
2474
+ "australia-southeast1": "australia-southeast1";
2475
+ "australia-southeast2": "australia-southeast2";
2476
+ "ca-central-1": "ca-central-1";
2477
+ "eu-central-1": "eu-central-1";
2478
+ "eu-central-2": "eu-central-2";
2479
+ "eu-north-1": "eu-north-1";
2480
+ "eu-west-1": "eu-west-1";
2481
+ "eu-west-2": "eu-west-2";
2482
+ "eu-west-3": "eu-west-3";
2483
+ "europe-central2": "europe-central2";
2484
+ "europe-north1": "europe-north1";
2485
+ "europe-southwest1": "europe-southwest1";
2486
+ "europe-west1": "europe-west1";
2487
+ "europe-west10": "europe-west10";
2488
+ "europe-west12": "europe-west12";
2489
+ "europe-west2": "europe-west2";
2490
+ "europe-west3": "europe-west3";
2491
+ "europe-west4": "europe-west4";
2492
+ "europe-west6": "europe-west6";
2493
+ "europe-west8": "europe-west8";
2494
+ "europe-west9": "europe-west9";
2495
+ fsn1: "fsn1";
2496
+ hel1: "hel1";
2497
+ hil: "hil";
2498
+ "me-central1": "me-central1";
2499
+ "me-central2": "me-central2";
2500
+ "me-west1": "me-west1";
2501
+ nbg1: "nbg1";
2502
+ "northamerica-northeast1": "northamerica-northeast1";
2503
+ "northamerica-northeast2": "northamerica-northeast2";
2504
+ "sa-east-1": "sa-east-1";
2505
+ sin: "sin";
2506
+ "southamerica-east1": "southamerica-east1";
2507
+ "southamerica-west1": "southamerica-west1";
2508
+ "us-central1": "us-central1";
2509
+ "us-east-1": "us-east-1";
2510
+ "us-east-2": "us-east-2";
2511
+ "us-east1": "us-east1";
2512
+ "us-east4": "us-east4";
2513
+ "us-east5": "us-east5";
2514
+ "us-south1": "us-south1";
2515
+ "us-west-1": "us-west-1";
2516
+ "us-west-2": "us-west-2";
2517
+ "us-west1": "us-west1";
2518
+ "us-west2": "us-west2";
2519
+ "us-west3": "us-west3";
2520
+ "us-west4": "us-west4";
2521
+ }>>>;
2522
+ }, z.core.$strip>>;
2523
+ scalingProfile: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
2524
+ aggressive: "aggressive";
2525
+ conservative: "conservative";
2526
+ }>>>;
1243
2527
  id: z.ZodString;
1244
2528
  }, z.core.$strip>;
1245
2529
  export declare const zCreateFleetPath: z.ZodObject<{
@@ -1266,38 +2550,518 @@ export declare const zGetFleetPath: z.ZodObject<{
1266
2550
  */
1267
2551
  export declare const zGetFleetResponse: z.ZodObject<{
1268
2552
  limits: z.ZodOptional<z.ZodObject<{
1269
- cpu: z.ZodNumber;
2553
+ cpu: z.ZodOptional<z.ZodInt>;
1270
2554
  }, z.core.$strip>>;
1271
2555
  gcp: z.ZodOptional<z.ZodObject<{
1272
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1273
- project: z.ZodString;
2556
+ enabled: z.ZodBoolean;
2557
+ project: z.ZodOptional<z.ZodString>;
1274
2558
  }, z.core.$strip>>;
1275
2559
  hetzner: z.ZodOptional<z.ZodObject<{
1276
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1277
- apiKey: z.ZodString;
2560
+ enabled: z.ZodBoolean;
2561
+ apiKey: z.ZodOptional<z.ZodString>;
1278
2562
  }, z.core.$strip>>;
1279
2563
  aws: z.ZodOptional<z.ZodObject<{
1280
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1281
- controllerRoleArn: z.ZodString;
2564
+ enabled: z.ZodBoolean;
2565
+ controllerRoleArn: z.ZodOptional<z.ZodString>;
2566
+ }, z.core.$strip>>;
2567
+ constraints: z.ZodOptional<z.ZodObject<{
2568
+ 'karpenter.sh/capacity-type': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
2569
+ "on-demand": "on-demand";
2570
+ spot: "spot";
2571
+ }>>>>;
2572
+ 'kubernetes.io/arch': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
2573
+ amd64: "amd64";
2574
+ arm64: "arm64";
2575
+ }>>>>;
2576
+ 'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
2577
+ p3: "p3";
2578
+ cx: "cx";
2579
+ h1: "h1";
2580
+ h3: "h3";
2581
+ a1: "a1";
2582
+ a2: "a2";
2583
+ a3: "a3";
2584
+ a4: "a4";
2585
+ c1: "c1";
2586
+ c2: "c2";
2587
+ c2d: "c2d";
2588
+ c3: "c3";
2589
+ c3d: "c3d";
2590
+ c4: "c4";
2591
+ c4a: "c4a";
2592
+ c4d: "c4d";
2593
+ c5: "c5";
2594
+ c5a: "c5a";
2595
+ c5ad: "c5ad";
2596
+ c5d: "c5d";
2597
+ c5n: "c5n";
2598
+ c6a: "c6a";
2599
+ c6g: "c6g";
2600
+ c6gd: "c6gd";
2601
+ c6gn: "c6gn";
2602
+ c6i: "c6i";
2603
+ c6id: "c6id";
2604
+ c6in: "c6in";
2605
+ c7a: "c7a";
2606
+ c7g: "c7g";
2607
+ c7gd: "c7gd";
2608
+ c7gn: "c7gn";
2609
+ c7i: "c7i";
2610
+ "c7i-flex": "c7i-flex";
2611
+ c8g: "c8g";
2612
+ c8gd: "c8gd";
2613
+ cax: "cax";
2614
+ ccx: "ccx";
2615
+ cpx: "cpx";
2616
+ d2: "d2";
2617
+ d3: "d3";
2618
+ d3en: "d3en";
2619
+ dl1: "dl1";
2620
+ dl2q: "dl2q";
2621
+ e2: "e2";
2622
+ f1: "f1";
2623
+ f2: "f2";
2624
+ g1: "g1";
2625
+ g2: "g2";
2626
+ g4ad: "g4ad";
2627
+ g4dn: "g4dn";
2628
+ g5: "g5";
2629
+ g5g: "g5g";
2630
+ g6: "g6";
2631
+ g6e: "g6e";
2632
+ gr6: "gr6";
2633
+ hpc6a: "hpc6a";
2634
+ hpc6id: "hpc6id";
2635
+ hpc7a: "hpc7a";
2636
+ hpc7g: "hpc7g";
2637
+ i2: "i2";
2638
+ i3: "i3";
2639
+ i3en: "i3en";
2640
+ i4g: "i4g";
2641
+ i4i: "i4i";
2642
+ i7i: "i7i";
2643
+ i7ie: "i7ie";
2644
+ i8g: "i8g";
2645
+ im4gn: "im4gn";
2646
+ inf1: "inf1";
2647
+ inf2: "inf2";
2648
+ is4gen: "is4gen";
2649
+ m1: "m1";
2650
+ m2: "m2";
2651
+ m3: "m3";
2652
+ m4: "m4";
2653
+ m5: "m5";
2654
+ m5a: "m5a";
2655
+ m5ad: "m5ad";
2656
+ m5d: "m5d";
2657
+ m5dn: "m5dn";
2658
+ m5n: "m5n";
2659
+ m5zn: "m5zn";
2660
+ m6a: "m6a";
2661
+ m6g: "m6g";
2662
+ m6gd: "m6gd";
2663
+ m6i: "m6i";
2664
+ m6id: "m6id";
2665
+ m6idn: "m6idn";
2666
+ m6in: "m6in";
2667
+ m7a: "m7a";
2668
+ m7g: "m7g";
2669
+ m7gd: "m7gd";
2670
+ m7i: "m7i";
2671
+ "m7i-flex": "m7i-flex";
2672
+ m8g: "m8g";
2673
+ m8gd: "m8gd";
2674
+ n1: "n1";
2675
+ n2: "n2";
2676
+ n2d: "n2d";
2677
+ n4: "n4";
2678
+ p3dn: "p3dn";
2679
+ p4d: "p4d";
2680
+ p4de: "p4de";
2681
+ p5: "p5";
2682
+ p5e: "p5e";
2683
+ p5en: "p5en";
2684
+ "p6-b200": "p6-b200";
2685
+ r3: "r3";
2686
+ r4: "r4";
2687
+ r5: "r5";
2688
+ r5a: "r5a";
2689
+ r5ad: "r5ad";
2690
+ r5b: "r5b";
2691
+ r5d: "r5d";
2692
+ r5dn: "r5dn";
2693
+ r5n: "r5n";
2694
+ r6a: "r6a";
2695
+ r6g: "r6g";
2696
+ r6gd: "r6gd";
2697
+ r6i: "r6i";
2698
+ r6id: "r6id";
2699
+ r6idn: "r6idn";
2700
+ r6in: "r6in";
2701
+ r7a: "r7a";
2702
+ r7g: "r7g";
2703
+ r7gd: "r7gd";
2704
+ r7i: "r7i";
2705
+ r7iz: "r7iz";
2706
+ r8g: "r8g";
2707
+ r8gd: "r8gd";
2708
+ t2: "t2";
2709
+ t2a: "t2a";
2710
+ t2d: "t2d";
2711
+ t3: "t3";
2712
+ t3a: "t3a";
2713
+ t4g: "t4g";
2714
+ trn1: "trn1";
2715
+ trn1n: "trn1n";
2716
+ "u-3tb1": "u-3tb1";
2717
+ "u-6tb1": "u-6tb1";
2718
+ "u7i-12tb": "u7i-12tb";
2719
+ "u7i-6tb": "u7i-6tb";
2720
+ "u7i-8tb": "u7i-8tb";
2721
+ "u7in-16tb": "u7in-16tb";
2722
+ "u7in-24tb": "u7in-24tb";
2723
+ "u7in-32tb": "u7in-32tb";
2724
+ vt1: "vt1";
2725
+ x1: "x1";
2726
+ x1e: "x1e";
2727
+ x2gd: "x2gd";
2728
+ x2idn: "x2idn";
2729
+ x2iedn: "x2iedn";
2730
+ x2iezn: "x2iezn";
2731
+ x4: "x4";
2732
+ x8g: "x8g";
2733
+ z1d: "z1d";
2734
+ z3: "z3";
2735
+ }>>>;
2736
+ 'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
2737
+ "africa-south1": "africa-south1";
2738
+ "ap-northeast-1": "ap-northeast-1";
2739
+ "ap-northeast-2": "ap-northeast-2";
2740
+ "ap-northeast-3": "ap-northeast-3";
2741
+ "ap-south-1": "ap-south-1";
2742
+ "ap-southeast-1": "ap-southeast-1";
2743
+ "ap-southeast-2": "ap-southeast-2";
2744
+ ash: "ash";
2745
+ "asia-east1": "asia-east1";
2746
+ "asia-east2": "asia-east2";
2747
+ "asia-northeast1": "asia-northeast1";
2748
+ "asia-northeast2": "asia-northeast2";
2749
+ "asia-northeast3": "asia-northeast3";
2750
+ "asia-south1": "asia-south1";
2751
+ "asia-south2": "asia-south2";
2752
+ "asia-southeast1": "asia-southeast1";
2753
+ "asia-southeast2": "asia-southeast2";
2754
+ "australia-southeast1": "australia-southeast1";
2755
+ "australia-southeast2": "australia-southeast2";
2756
+ "ca-central-1": "ca-central-1";
2757
+ "eu-central-1": "eu-central-1";
2758
+ "eu-central-2": "eu-central-2";
2759
+ "eu-north-1": "eu-north-1";
2760
+ "eu-west-1": "eu-west-1";
2761
+ "eu-west-2": "eu-west-2";
2762
+ "eu-west-3": "eu-west-3";
2763
+ "europe-central2": "europe-central2";
2764
+ "europe-north1": "europe-north1";
2765
+ "europe-southwest1": "europe-southwest1";
2766
+ "europe-west1": "europe-west1";
2767
+ "europe-west10": "europe-west10";
2768
+ "europe-west12": "europe-west12";
2769
+ "europe-west2": "europe-west2";
2770
+ "europe-west3": "europe-west3";
2771
+ "europe-west4": "europe-west4";
2772
+ "europe-west6": "europe-west6";
2773
+ "europe-west8": "europe-west8";
2774
+ "europe-west9": "europe-west9";
2775
+ fsn1: "fsn1";
2776
+ hel1: "hel1";
2777
+ hil: "hil";
2778
+ "me-central1": "me-central1";
2779
+ "me-central2": "me-central2";
2780
+ "me-west1": "me-west1";
2781
+ nbg1: "nbg1";
2782
+ "northamerica-northeast1": "northamerica-northeast1";
2783
+ "northamerica-northeast2": "northamerica-northeast2";
2784
+ "sa-east-1": "sa-east-1";
2785
+ sin: "sin";
2786
+ "southamerica-east1": "southamerica-east1";
2787
+ "southamerica-west1": "southamerica-west1";
2788
+ "us-central1": "us-central1";
2789
+ "us-east-1": "us-east-1";
2790
+ "us-east-2": "us-east-2";
2791
+ "us-east1": "us-east1";
2792
+ "us-east4": "us-east4";
2793
+ "us-east5": "us-east5";
2794
+ "us-south1": "us-south1";
2795
+ "us-west-1": "us-west-1";
2796
+ "us-west-2": "us-west-2";
2797
+ "us-west1": "us-west1";
2798
+ "us-west2": "us-west2";
2799
+ "us-west3": "us-west3";
2800
+ "us-west4": "us-west4";
2801
+ }>>>;
1282
2802
  }, z.core.$strip>>;
2803
+ scalingProfile: z.ZodDefault<z.ZodEnum<{
2804
+ aggressive: "aggressive";
2805
+ conservative: "conservative";
2806
+ }>>;
1283
2807
  id: z.ZodString;
1284
2808
  }, z.core.$strip>;
1285
2809
  export declare const zUpdateFleetBody: z.ZodObject<{
1286
2810
  limits: z.ZodOptional<z.ZodObject<{
1287
- cpu: z.ZodNumber;
2811
+ cpu: z.ZodOptional<z.ZodInt>;
1288
2812
  }, z.core.$strip>>;
1289
2813
  gcp: z.ZodOptional<z.ZodObject<{
1290
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1291
- project: z.ZodString;
2814
+ enabled: z.ZodBoolean;
2815
+ project: z.ZodOptional<z.ZodString>;
1292
2816
  }, z.core.$strip>>;
1293
2817
  hetzner: z.ZodOptional<z.ZodObject<{
1294
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1295
- apiKey: z.ZodString;
2818
+ enabled: z.ZodBoolean;
2819
+ apiKey: z.ZodOptional<z.ZodString>;
1296
2820
  }, z.core.$strip>>;
1297
2821
  aws: z.ZodOptional<z.ZodObject<{
1298
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1299
- controllerRoleArn: z.ZodString;
2822
+ enabled: z.ZodBoolean;
2823
+ controllerRoleArn: z.ZodOptional<z.ZodString>;
1300
2824
  }, z.core.$strip>>;
2825
+ constraints: z.ZodOptional<z.ZodObject<{
2826
+ 'karpenter.sh/capacity-type': z.ZodOptional<z.ZodArray<z.ZodEnum<{
2827
+ "on-demand": "on-demand";
2828
+ spot: "spot";
2829
+ }>>>;
2830
+ 'kubernetes.io/arch': z.ZodOptional<z.ZodArray<z.ZodEnum<{
2831
+ amd64: "amd64";
2832
+ arm64: "arm64";
2833
+ }>>>;
2834
+ 'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
2835
+ p3: "p3";
2836
+ cx: "cx";
2837
+ h1: "h1";
2838
+ h3: "h3";
2839
+ a1: "a1";
2840
+ a2: "a2";
2841
+ a3: "a3";
2842
+ a4: "a4";
2843
+ c1: "c1";
2844
+ c2: "c2";
2845
+ c2d: "c2d";
2846
+ c3: "c3";
2847
+ c3d: "c3d";
2848
+ c4: "c4";
2849
+ c4a: "c4a";
2850
+ c4d: "c4d";
2851
+ c5: "c5";
2852
+ c5a: "c5a";
2853
+ c5ad: "c5ad";
2854
+ c5d: "c5d";
2855
+ c5n: "c5n";
2856
+ c6a: "c6a";
2857
+ c6g: "c6g";
2858
+ c6gd: "c6gd";
2859
+ c6gn: "c6gn";
2860
+ c6i: "c6i";
2861
+ c6id: "c6id";
2862
+ c6in: "c6in";
2863
+ c7a: "c7a";
2864
+ c7g: "c7g";
2865
+ c7gd: "c7gd";
2866
+ c7gn: "c7gn";
2867
+ c7i: "c7i";
2868
+ "c7i-flex": "c7i-flex";
2869
+ c8g: "c8g";
2870
+ c8gd: "c8gd";
2871
+ cax: "cax";
2872
+ ccx: "ccx";
2873
+ cpx: "cpx";
2874
+ d2: "d2";
2875
+ d3: "d3";
2876
+ d3en: "d3en";
2877
+ dl1: "dl1";
2878
+ dl2q: "dl2q";
2879
+ e2: "e2";
2880
+ f1: "f1";
2881
+ f2: "f2";
2882
+ g1: "g1";
2883
+ g2: "g2";
2884
+ g4ad: "g4ad";
2885
+ g4dn: "g4dn";
2886
+ g5: "g5";
2887
+ g5g: "g5g";
2888
+ g6: "g6";
2889
+ g6e: "g6e";
2890
+ gr6: "gr6";
2891
+ hpc6a: "hpc6a";
2892
+ hpc6id: "hpc6id";
2893
+ hpc7a: "hpc7a";
2894
+ hpc7g: "hpc7g";
2895
+ i2: "i2";
2896
+ i3: "i3";
2897
+ i3en: "i3en";
2898
+ i4g: "i4g";
2899
+ i4i: "i4i";
2900
+ i7i: "i7i";
2901
+ i7ie: "i7ie";
2902
+ i8g: "i8g";
2903
+ im4gn: "im4gn";
2904
+ inf1: "inf1";
2905
+ inf2: "inf2";
2906
+ is4gen: "is4gen";
2907
+ m1: "m1";
2908
+ m2: "m2";
2909
+ m3: "m3";
2910
+ m4: "m4";
2911
+ m5: "m5";
2912
+ m5a: "m5a";
2913
+ m5ad: "m5ad";
2914
+ m5d: "m5d";
2915
+ m5dn: "m5dn";
2916
+ m5n: "m5n";
2917
+ m5zn: "m5zn";
2918
+ m6a: "m6a";
2919
+ m6g: "m6g";
2920
+ m6gd: "m6gd";
2921
+ m6i: "m6i";
2922
+ m6id: "m6id";
2923
+ m6idn: "m6idn";
2924
+ m6in: "m6in";
2925
+ m7a: "m7a";
2926
+ m7g: "m7g";
2927
+ m7gd: "m7gd";
2928
+ m7i: "m7i";
2929
+ "m7i-flex": "m7i-flex";
2930
+ m8g: "m8g";
2931
+ m8gd: "m8gd";
2932
+ n1: "n1";
2933
+ n2: "n2";
2934
+ n2d: "n2d";
2935
+ n4: "n4";
2936
+ p3dn: "p3dn";
2937
+ p4d: "p4d";
2938
+ p4de: "p4de";
2939
+ p5: "p5";
2940
+ p5e: "p5e";
2941
+ p5en: "p5en";
2942
+ "p6-b200": "p6-b200";
2943
+ r3: "r3";
2944
+ r4: "r4";
2945
+ r5: "r5";
2946
+ r5a: "r5a";
2947
+ r5ad: "r5ad";
2948
+ r5b: "r5b";
2949
+ r5d: "r5d";
2950
+ r5dn: "r5dn";
2951
+ r5n: "r5n";
2952
+ r6a: "r6a";
2953
+ r6g: "r6g";
2954
+ r6gd: "r6gd";
2955
+ r6i: "r6i";
2956
+ r6id: "r6id";
2957
+ r6idn: "r6idn";
2958
+ r6in: "r6in";
2959
+ r7a: "r7a";
2960
+ r7g: "r7g";
2961
+ r7gd: "r7gd";
2962
+ r7i: "r7i";
2963
+ r7iz: "r7iz";
2964
+ r8g: "r8g";
2965
+ r8gd: "r8gd";
2966
+ t2: "t2";
2967
+ t2a: "t2a";
2968
+ t2d: "t2d";
2969
+ t3: "t3";
2970
+ t3a: "t3a";
2971
+ t4g: "t4g";
2972
+ trn1: "trn1";
2973
+ trn1n: "trn1n";
2974
+ "u-3tb1": "u-3tb1";
2975
+ "u-6tb1": "u-6tb1";
2976
+ "u7i-12tb": "u7i-12tb";
2977
+ "u7i-6tb": "u7i-6tb";
2978
+ "u7i-8tb": "u7i-8tb";
2979
+ "u7in-16tb": "u7in-16tb";
2980
+ "u7in-24tb": "u7in-24tb";
2981
+ "u7in-32tb": "u7in-32tb";
2982
+ vt1: "vt1";
2983
+ x1: "x1";
2984
+ x1e: "x1e";
2985
+ x2gd: "x2gd";
2986
+ x2idn: "x2idn";
2987
+ x2iedn: "x2iedn";
2988
+ x2iezn: "x2iezn";
2989
+ x4: "x4";
2990
+ x8g: "x8g";
2991
+ z1d: "z1d";
2992
+ z3: "z3";
2993
+ }>>>;
2994
+ 'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
2995
+ "africa-south1": "africa-south1";
2996
+ "ap-northeast-1": "ap-northeast-1";
2997
+ "ap-northeast-2": "ap-northeast-2";
2998
+ "ap-northeast-3": "ap-northeast-3";
2999
+ "ap-south-1": "ap-south-1";
3000
+ "ap-southeast-1": "ap-southeast-1";
3001
+ "ap-southeast-2": "ap-southeast-2";
3002
+ ash: "ash";
3003
+ "asia-east1": "asia-east1";
3004
+ "asia-east2": "asia-east2";
3005
+ "asia-northeast1": "asia-northeast1";
3006
+ "asia-northeast2": "asia-northeast2";
3007
+ "asia-northeast3": "asia-northeast3";
3008
+ "asia-south1": "asia-south1";
3009
+ "asia-south2": "asia-south2";
3010
+ "asia-southeast1": "asia-southeast1";
3011
+ "asia-southeast2": "asia-southeast2";
3012
+ "australia-southeast1": "australia-southeast1";
3013
+ "australia-southeast2": "australia-southeast2";
3014
+ "ca-central-1": "ca-central-1";
3015
+ "eu-central-1": "eu-central-1";
3016
+ "eu-central-2": "eu-central-2";
3017
+ "eu-north-1": "eu-north-1";
3018
+ "eu-west-1": "eu-west-1";
3019
+ "eu-west-2": "eu-west-2";
3020
+ "eu-west-3": "eu-west-3";
3021
+ "europe-central2": "europe-central2";
3022
+ "europe-north1": "europe-north1";
3023
+ "europe-southwest1": "europe-southwest1";
3024
+ "europe-west1": "europe-west1";
3025
+ "europe-west10": "europe-west10";
3026
+ "europe-west12": "europe-west12";
3027
+ "europe-west2": "europe-west2";
3028
+ "europe-west3": "europe-west3";
3029
+ "europe-west4": "europe-west4";
3030
+ "europe-west6": "europe-west6";
3031
+ "europe-west8": "europe-west8";
3032
+ "europe-west9": "europe-west9";
3033
+ fsn1: "fsn1";
3034
+ hel1: "hel1";
3035
+ hil: "hil";
3036
+ "me-central1": "me-central1";
3037
+ "me-central2": "me-central2";
3038
+ "me-west1": "me-west1";
3039
+ nbg1: "nbg1";
3040
+ "northamerica-northeast1": "northamerica-northeast1";
3041
+ "northamerica-northeast2": "northamerica-northeast2";
3042
+ "sa-east-1": "sa-east-1";
3043
+ sin: "sin";
3044
+ "southamerica-east1": "southamerica-east1";
3045
+ "southamerica-west1": "southamerica-west1";
3046
+ "us-central1": "us-central1";
3047
+ "us-east-1": "us-east-1";
3048
+ "us-east-2": "us-east-2";
3049
+ "us-east1": "us-east1";
3050
+ "us-east4": "us-east4";
3051
+ "us-east5": "us-east5";
3052
+ "us-south1": "us-south1";
3053
+ "us-west-1": "us-west-1";
3054
+ "us-west-2": "us-west-2";
3055
+ "us-west1": "us-west1";
3056
+ "us-west2": "us-west2";
3057
+ "us-west3": "us-west3";
3058
+ "us-west4": "us-west4";
3059
+ }>>>;
3060
+ }, z.core.$strip>>;
3061
+ scalingProfile: z.ZodEnum<{
3062
+ aggressive: "aggressive";
3063
+ conservative: "conservative";
3064
+ }>;
1301
3065
  }, z.core.$strip>;
1302
3066
  export declare const zUpdateFleetPath: z.ZodObject<{
1303
3067
  cluster_id: z.ZodString;
@@ -1319,12 +3083,7 @@ export declare const zListClustersResponse: z.ZodArray<z.ZodObject<{
1319
3083
  basic: "basic";
1320
3084
  pro: "pro";
1321
3085
  }>;
1322
- region: z.ZodOptional<z.ZodEnum<{
1323
- "staging-1a": "staging-1a";
1324
- "northamerica-central-1": "northamerica-central-1";
1325
- "europe-central-1a": "europe-central-1a";
1326
- "northamerica-central-1a": "northamerica-central-1a";
1327
- }>>;
3086
+ region: z.ZodString;
1328
3087
  id: z.ZodUUID;
1329
3088
  status: z.ZodEnum<{
1330
3089
  deleted: "deleted";
@@ -1338,6 +3097,9 @@ export declare const zListClustersResponse: z.ZodArray<z.ZodObject<{
1338
3097
  endpoint: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
1339
3098
  "": "";
1340
3099
  }>]>>;
3100
+ endpoint_public: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
3101
+ "": "";
3102
+ }>]>>;
1341
3103
  certificate_ca: z.ZodOptional<z.ZodString>;
1342
3104
  version_current: z.ZodOptional<z.ZodString>;
1343
3105
  created_at: z.ZodOptional<z.ZodString>;
@@ -1351,18 +3113,8 @@ export declare const zCreateClusterBody: z.ZodObject<{
1351
3113
  basic: "basic";
1352
3114
  pro: "pro";
1353
3115
  }>;
1354
- region: z.ZodOptional<z.ZodEnum<{
1355
- "staging-1a": "staging-1a";
1356
- "northamerica-central-1": "northamerica-central-1";
1357
- "europe-central-1a": "europe-central-1a";
1358
- "northamerica-central-1a": "northamerica-central-1a";
1359
- }>>;
1360
- version_channel: z.ZodOptional<z.ZodEnum<{
1361
- "1.x.x-cfke.x": "1.x.x-cfke.x";
1362
- "1.31.x-cfke.x": "1.31.x-cfke.x";
1363
- "1.32.x-cfke.x": "1.32.x-cfke.x";
1364
- "1.33.x-cfke.x": "1.33.x-cfke.x";
1365
- }>>;
3116
+ region: z.ZodString;
3117
+ version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
1366
3118
  }, z.core.$strip>;
1367
3119
  /**
1368
3120
  * Successfully created. Returns created Cluster ID.
@@ -1372,7 +3124,7 @@ export declare const zDeleteClusterPath: z.ZodObject<{
1372
3124
  cluster_id: z.ZodString;
1373
3125
  }, z.core.$strip>;
1374
3126
  /**
1375
- * Successfully deleted.
3127
+ * Successfully deleted. The cluster has been torn down.
1376
3128
  */
1377
3129
  export declare const zDeleteClusterResponse: z.ZodString;
1378
3130
  export declare const zGetClusterPath: z.ZodObject<{
@@ -1387,12 +3139,7 @@ export declare const zGetClusterResponse: z.ZodObject<{
1387
3139
  basic: "basic";
1388
3140
  pro: "pro";
1389
3141
  }>;
1390
- region: z.ZodOptional<z.ZodEnum<{
1391
- "staging-1a": "staging-1a";
1392
- "northamerica-central-1": "northamerica-central-1";
1393
- "europe-central-1a": "europe-central-1a";
1394
- "northamerica-central-1a": "northamerica-central-1a";
1395
- }>>;
3142
+ region: z.ZodString;
1396
3143
  id: z.ZodUUID;
1397
3144
  status: z.ZodEnum<{
1398
3145
  deleted: "deleted";
@@ -1406,6 +3153,9 @@ export declare const zGetClusterResponse: z.ZodObject<{
1406
3153
  endpoint: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
1407
3154
  "": "";
1408
3155
  }>]>>;
3156
+ endpoint_public: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
3157
+ "": "";
3158
+ }>]>>;
1409
3159
  certificate_ca: z.ZodOptional<z.ZodString>;
1410
3160
  version_current: z.ZodOptional<z.ZodString>;
1411
3161
  created_at: z.ZodOptional<z.ZodString>;
@@ -1433,12 +3183,7 @@ export declare const zUpdateClusterResponse: z.ZodObject<{
1433
3183
  basic: "basic";
1434
3184
  pro: "pro";
1435
3185
  }>;
1436
- region: z.ZodOptional<z.ZodEnum<{
1437
- "staging-1a": "staging-1a";
1438
- "northamerica-central-1": "northamerica-central-1";
1439
- "europe-central-1a": "europe-central-1a";
1440
- "northamerica-central-1a": "northamerica-central-1a";
1441
- }>>;
3186
+ region: z.ZodString;
1442
3187
  id: z.ZodUUID;
1443
3188
  status: z.ZodEnum<{
1444
3189
  deleted: "deleted";
@@ -1452,6 +3197,9 @@ export declare const zUpdateClusterResponse: z.ZodObject<{
1452
3197
  endpoint: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
1453
3198
  "": "";
1454
3199
  }>]>>;
3200
+ endpoint_public: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
3201
+ "": "";
3202
+ }>]>>;
1455
3203
  certificate_ca: z.ZodOptional<z.ZodString>;
1456
3204
  version_current: z.ZodOptional<z.ZodString>;
1457
3205
  created_at: z.ZodOptional<z.ZodString>;
@@ -1469,6 +3217,7 @@ export declare const zGetJoinInformationResponse: z.ZodObject<{
1469
3217
  certificate_authority: z.ZodString;
1470
3218
  endpoint: z.ZodURL;
1471
3219
  cluster_dns: z.ZodString;
3220
+ pod_cidr: z.ZodString;
1472
3221
  auth_key: z.ZodString;
1473
3222
  bootstrap_token: z.ZodString;
1474
3223
  versions: z.ZodObject<{
@@ -1492,9 +3241,17 @@ export declare const zListInvitesResponse: z.ZodArray<z.ZodObject<{
1492
3241
  date_created: z.ZodISODateTime;
1493
3242
  email: z.ZodOptional<z.ZodEmail>;
1494
3243
  code: z.ZodOptional<z.ZodString>;
3244
+ role: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
3245
+ Administrator: "Administrator";
3246
+ User: "User";
3247
+ }>>>;
1495
3248
  }, z.core.$strip>>;
1496
3249
  export declare const zCreateInviteBody: z.ZodObject<{
1497
- email: z.ZodOptional<z.ZodString>;
3250
+ email: z.ZodEmail;
3251
+ role: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
3252
+ Administrator: "Administrator";
3253
+ User: "User";
3254
+ }>>>;
1498
3255
  }, z.core.$strip>;
1499
3256
  /**
1500
3257
  * Successfully created. Returns created invite details.
@@ -1505,22 +3262,23 @@ export declare const zCreateInviteResponse: z.ZodObject<{
1505
3262
  date_created: z.ZodISODateTime;
1506
3263
  email: z.ZodOptional<z.ZodEmail>;
1507
3264
  code: z.ZodOptional<z.ZodString>;
3265
+ role: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
3266
+ Administrator: "Administrator";
3267
+ User: "User";
3268
+ }>>>;
1508
3269
  }, z.core.$strip>;
1509
3270
  export declare const zGetInvitePath: z.ZodObject<{
1510
3271
  code: z.ZodString;
1511
3272
  }, z.core.$strip>;
1512
3273
  /**
1513
- * Returns a single object containing invite details.
3274
+ * The invitation code is valid. Returns the invited email and organization.
1514
3275
  */
1515
3276
  export declare const zGetInviteResponse: z.ZodObject<{
1516
- id: z.ZodOptional<z.ZodString>;
1517
- organization_id: z.ZodOptional<z.ZodUUID>;
1518
- date_created: z.ZodISODateTime;
1519
3277
  email: z.ZodOptional<z.ZodEmail>;
1520
- code: z.ZodOptional<z.ZodString>;
3278
+ organization_id: z.ZodOptional<z.ZodString>;
1521
3279
  }, z.core.$strip>;
1522
3280
  export declare const zDeleteInvitePath: z.ZodObject<{
1523
- email: z.ZodString;
3281
+ email: z.ZodEmail;
1524
3282
  }, z.core.$strip>;
1525
3283
  /**
1526
3284
  * An array of chart listings in the marketplace.
@@ -1585,6 +3343,10 @@ export declare const zPostMcpResponse: z.ZodObject<{
1585
3343
  export declare const zGetOrganizationResponse: z.ZodObject<{
1586
3344
  id: z.ZodUUID;
1587
3345
  name: z.ZodOptional<z.ZodString>;
3346
+ type: z.ZodEnum<{
3347
+ business: "business";
3348
+ personal: "personal";
3349
+ }>;
1588
3350
  date_created: z.ZodISODateTime;
1589
3351
  quota: z.ZodObject<{
1590
3352
  basic_clusters_max: z.ZodInt;
@@ -1598,8 +3360,6 @@ export declare const zGetOrganizationResponse: z.ZodObject<{
1598
3360
  id: z.ZodString;
1599
3361
  label: z.ZodString;
1600
3362
  }, z.core.$strip>>;
1601
- copilot_user_hourly_tokens: z.ZodInt;
1602
- copilot_organization_hourly_tokens: z.ZodInt;
1603
3363
  cfcr_storage_gb: z.ZodInt;
1604
3364
  }, z.core.$strip>;
1605
3365
  status: z.ZodEnum<{
@@ -1607,14 +3367,30 @@ export declare const zGetOrganizationResponse: z.ZodObject<{
1607
3367
  closed: "closed";
1608
3368
  suspended: "suspended";
1609
3369
  }>;
3370
+ verification: z.ZodEnum<{
3371
+ none: "none";
3372
+ submitted: "submitted";
3373
+ verified: "verified";
3374
+ }>;
1610
3375
  }, z.core.$strip>;
1611
3376
  export declare const zCreateOrganizationBody: z.ZodObject<{
3377
+ type: z.ZodEnum<{
3378
+ business: "business";
3379
+ personal: "personal";
3380
+ }>;
1612
3381
  email: z.ZodEmail;
1613
3382
  first_name: z.ZodString;
1614
3383
  last_name: z.ZodString;
1615
3384
  company_name: z.ZodString;
1616
3385
  password: z.ZodString;
1617
3386
  }, z.core.$strip>;
3387
+ /**
3388
+ * Organization signup accepted. Returns the generated organization id immediately; provisioning (billing, Keycloak realm, user) continues asynchronously in the background.
3389
+ *
3390
+ */
3391
+ export declare const zCreateOrganizationResponse: z.ZodObject<{
3392
+ id: z.ZodString;
3393
+ }, z.core.$strip>;
1618
3394
  /**
1619
3395
  * List of repositories
1620
3396
  */
@@ -1684,6 +3460,201 @@ export declare const zGetTagResponse: z.ZodObject<{
1684
3460
  repository: z.ZodString;
1685
3461
  uri: z.ZodString;
1686
3462
  }, z.core.$strip>;
3463
+ /**
3464
+ * Tickets for the organization.
3465
+ */
3466
+ export declare const zListTicketsResponse: z.ZodObject<{
3467
+ items: z.ZodArray<z.ZodObject<{
3468
+ id: z.ZodString;
3469
+ status: z.ZodEnum<{
3470
+ closed: "closed";
3471
+ waiting_on_us: "waiting_on_us";
3472
+ waiting_on_user: "waiting_on_user";
3473
+ }>;
3474
+ category: z.ZodEnum<{
3475
+ billing: "billing";
3476
+ technical: "technical";
3477
+ general: "general";
3478
+ }>;
3479
+ summary: z.ZodString;
3480
+ closed_at: z.ZodOptional<z.ZodISODateTime>;
3481
+ date_created: z.ZodISODateTime;
3482
+ date_updated: z.ZodISODateTime;
3483
+ messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
3484
+ id: z.ZodString;
3485
+ type: z.ZodEnum<{
3486
+ customer_reply: "customer_reply";
3487
+ agent_reply: "agent_reply";
3488
+ }>;
3489
+ body: z.ZodString;
3490
+ author_first_name: z.ZodOptional<z.ZodString>;
3491
+ author_last_name: z.ZodOptional<z.ZodString>;
3492
+ attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
3493
+ id: z.ZodString;
3494
+ filename: z.ZodString;
3495
+ content_type: z.ZodString;
3496
+ size: z.ZodInt;
3497
+ }, z.core.$strip>>>;
3498
+ date_created: z.ZodISODateTime;
3499
+ }, z.core.$strip>>>;
3500
+ }, z.core.$strip>>;
3501
+ }, z.core.$strip>;
3502
+ export declare const zCreateTicketBody: z.ZodObject<{
3503
+ payload: z.ZodOptional<z.ZodString>;
3504
+ attachments: z.ZodOptional<z.ZodArray<z.ZodString>>;
3505
+ }, z.core.$strip>;
3506
+ /**
3507
+ * Ticket created.
3508
+ */
3509
+ export declare const zCreateTicketResponse: z.ZodObject<{
3510
+ id: z.ZodString;
3511
+ status: z.ZodEnum<{
3512
+ closed: "closed";
3513
+ waiting_on_us: "waiting_on_us";
3514
+ waiting_on_user: "waiting_on_user";
3515
+ }>;
3516
+ category: z.ZodEnum<{
3517
+ billing: "billing";
3518
+ technical: "technical";
3519
+ general: "general";
3520
+ }>;
3521
+ summary: z.ZodString;
3522
+ closed_at: z.ZodOptional<z.ZodISODateTime>;
3523
+ date_created: z.ZodISODateTime;
3524
+ date_updated: z.ZodISODateTime;
3525
+ messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
3526
+ id: z.ZodString;
3527
+ type: z.ZodEnum<{
3528
+ customer_reply: "customer_reply";
3529
+ agent_reply: "agent_reply";
3530
+ }>;
3531
+ body: z.ZodString;
3532
+ author_first_name: z.ZodOptional<z.ZodString>;
3533
+ author_last_name: z.ZodOptional<z.ZodString>;
3534
+ attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
3535
+ id: z.ZodString;
3536
+ filename: z.ZodString;
3537
+ content_type: z.ZodString;
3538
+ size: z.ZodInt;
3539
+ }, z.core.$strip>>>;
3540
+ date_created: z.ZodISODateTime;
3541
+ }, z.core.$strip>>>;
3542
+ }, z.core.$strip>;
3543
+ export declare const zCloseTicketPath: z.ZodObject<{
3544
+ ticket_id: z.ZodString;
3545
+ }, z.core.$strip>;
3546
+ /**
3547
+ * Ticket closed.
3548
+ */
3549
+ export declare const zCloseTicketResponse: z.ZodObject<{
3550
+ id: z.ZodString;
3551
+ status: z.ZodEnum<{
3552
+ closed: "closed";
3553
+ waiting_on_us: "waiting_on_us";
3554
+ waiting_on_user: "waiting_on_user";
3555
+ }>;
3556
+ category: z.ZodEnum<{
3557
+ billing: "billing";
3558
+ technical: "technical";
3559
+ general: "general";
3560
+ }>;
3561
+ summary: z.ZodString;
3562
+ closed_at: z.ZodOptional<z.ZodISODateTime>;
3563
+ date_created: z.ZodISODateTime;
3564
+ date_updated: z.ZodISODateTime;
3565
+ messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
3566
+ id: z.ZodString;
3567
+ type: z.ZodEnum<{
3568
+ customer_reply: "customer_reply";
3569
+ agent_reply: "agent_reply";
3570
+ }>;
3571
+ body: z.ZodString;
3572
+ author_first_name: z.ZodOptional<z.ZodString>;
3573
+ author_last_name: z.ZodOptional<z.ZodString>;
3574
+ attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
3575
+ id: z.ZodString;
3576
+ filename: z.ZodString;
3577
+ content_type: z.ZodString;
3578
+ size: z.ZodInt;
3579
+ }, z.core.$strip>>>;
3580
+ date_created: z.ZodISODateTime;
3581
+ }, z.core.$strip>>>;
3582
+ }, z.core.$strip>;
3583
+ export declare const zGetTicketPath: z.ZodObject<{
3584
+ ticket_id: z.ZodString;
3585
+ }, z.core.$strip>;
3586
+ /**
3587
+ * Ticket with messages (internal notes excluded).
3588
+ */
3589
+ export declare const zGetTicketResponse: z.ZodObject<{
3590
+ id: z.ZodString;
3591
+ status: z.ZodEnum<{
3592
+ closed: "closed";
3593
+ waiting_on_us: "waiting_on_us";
3594
+ waiting_on_user: "waiting_on_user";
3595
+ }>;
3596
+ category: z.ZodEnum<{
3597
+ billing: "billing";
3598
+ technical: "technical";
3599
+ general: "general";
3600
+ }>;
3601
+ summary: z.ZodString;
3602
+ closed_at: z.ZodOptional<z.ZodISODateTime>;
3603
+ date_created: z.ZodISODateTime;
3604
+ date_updated: z.ZodISODateTime;
3605
+ messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
3606
+ id: z.ZodString;
3607
+ type: z.ZodEnum<{
3608
+ customer_reply: "customer_reply";
3609
+ agent_reply: "agent_reply";
3610
+ }>;
3611
+ body: z.ZodString;
3612
+ author_first_name: z.ZodOptional<z.ZodString>;
3613
+ author_last_name: z.ZodOptional<z.ZodString>;
3614
+ attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
3615
+ id: z.ZodString;
3616
+ filename: z.ZodString;
3617
+ content_type: z.ZodString;
3618
+ size: z.ZodInt;
3619
+ }, z.core.$strip>>>;
3620
+ date_created: z.ZodISODateTime;
3621
+ }, z.core.$strip>>>;
3622
+ }, z.core.$strip>;
3623
+ export declare const zReplyTicketBody: z.ZodObject<{
3624
+ payload: z.ZodOptional<z.ZodString>;
3625
+ attachments: z.ZodOptional<z.ZodArray<z.ZodString>>;
3626
+ }, z.core.$strip>;
3627
+ export declare const zReplyTicketPath: z.ZodObject<{
3628
+ ticket_id: z.ZodString;
3629
+ }, z.core.$strip>;
3630
+ /**
3631
+ * Reply appended.
3632
+ */
3633
+ export declare const zReplyTicketResponse: z.ZodObject<{
3634
+ id: z.ZodString;
3635
+ type: z.ZodEnum<{
3636
+ customer_reply: "customer_reply";
3637
+ agent_reply: "agent_reply";
3638
+ }>;
3639
+ body: z.ZodString;
3640
+ author_first_name: z.ZodOptional<z.ZodString>;
3641
+ author_last_name: z.ZodOptional<z.ZodString>;
3642
+ attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
3643
+ id: z.ZodString;
3644
+ filename: z.ZodString;
3645
+ content_type: z.ZodString;
3646
+ size: z.ZodInt;
3647
+ }, z.core.$strip>>>;
3648
+ date_created: z.ZodISODateTime;
3649
+ }, z.core.$strip>;
3650
+ export declare const zGetTicketAttachmentPath: z.ZodObject<{
3651
+ ticket_id: z.ZodString;
3652
+ attachment_id: z.ZodString;
3653
+ }, z.core.$strip>;
3654
+ /**
3655
+ * Attachment binary stream.
3656
+ */
3657
+ export declare const zGetTicketAttachmentResponse: z.ZodString;
1687
3658
  /**
1688
3659
  * Returns a list of access token details with masked secrets.
1689
3660
  */
@@ -1809,14 +3780,6 @@ export declare const zCreateUserBody: z.ZodObject<{
1809
3780
  last_name: z.ZodString;
1810
3781
  code: z.ZodString;
1811
3782
  password: z.ZodString;
1812
- status: z.ZodOptional<z.ZodEnum<{
1813
- active: "active";
1814
- inactive: "inactive";
1815
- }>>;
1816
- role: z.ZodOptional<z.ZodEnum<{
1817
- Administrator: "Administrator";
1818
- User: "User";
1819
- }>>;
1820
3783
  }, z.core.$strip>;
1821
3784
  /**
1822
3785
  * Successfully created. Returns created user details.