@cloudfleet/sdk 0.0.1-d4c7bbc → 0.0.1-d5822b9

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