@cloudfleet/sdk 0.0.1-e9ffb68 → 0.0.1-eb7ee45

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