@cloudfleet/sdk 0.0.1-0ac9bf0 → 0.0.1-0bc765b

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