@cloudfleet/sdk 0.0.1-d4c7bbc → 0.0.1-d53b3d0

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