@cloudfleet/sdk 0.0.1-4943b4e → 0.0.1-4adea55

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