@cloudfleet/sdk 0.0.1-081916a → 0.0.1-0880dd0

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