@cloudfleet/sdk 0.0.1-523e444 → 0.0.1-56c3d31

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (60) hide show
  1. package/dist/@tanstack/react-query.gen.d.ts +1048 -0
  2. package/dist/@tanstack/react-query.gen.d.ts.map +1 -0
  3. package/dist/@tanstack/react-query.gen.js +1040 -0
  4. package/dist/@tanstack/react-query.gen.js.map +1 -0
  5. package/dist/client/client.gen.d.ts.map +1 -1
  6. package/dist/client/client.gen.js +113 -98
  7. package/dist/client/client.gen.js.map +1 -1
  8. package/dist/client/index.d.ts +1 -1
  9. package/dist/client/index.d.ts.map +1 -1
  10. package/dist/client/index.js.map +1 -1
  11. package/dist/client/types.gen.d.ts +9 -13
  12. package/dist/client/types.gen.d.ts.map +1 -1
  13. package/dist/client/utils.gen.d.ts +6 -2
  14. package/dist/client/utils.gen.d.ts.map +1 -1
  15. package/dist/client/utils.gen.js +10 -12
  16. package/dist/client/utils.gen.js.map +1 -1
  17. package/dist/client.gen.d.ts.map +1 -1
  18. package/dist/client.gen.js +1 -3
  19. package/dist/client.gen.js.map +1 -1
  20. package/dist/core/auth.gen.d.ts.map +1 -1
  21. package/dist/core/auth.gen.js.map +1 -1
  22. package/dist/core/bodySerializer.gen.d.ts +16 -8
  23. package/dist/core/bodySerializer.gen.d.ts.map +1 -1
  24. package/dist/core/bodySerializer.gen.js +1 -1
  25. package/dist/core/bodySerializer.gen.js.map +1 -1
  26. package/dist/core/params.gen.d.ts +10 -0
  27. package/dist/core/params.gen.d.ts.map +1 -1
  28. package/dist/core/params.gen.js +18 -6
  29. package/dist/core/params.gen.js.map +1 -1
  30. package/dist/core/pathSerializer.gen.d.ts.map +1 -1
  31. package/dist/core/pathSerializer.gen.js +3 -11
  32. package/dist/core/pathSerializer.gen.js.map +1 -1
  33. package/dist/core/queryKeySerializer.gen.d.ts.map +1 -1
  34. package/dist/core/queryKeySerializer.gen.js +4 -11
  35. package/dist/core/queryKeySerializer.gen.js.map +1 -1
  36. package/dist/core/serverSentEvents.gen.d.ts +1 -1
  37. package/dist/core/serverSentEvents.gen.d.ts.map +1 -1
  38. package/dist/core/serverSentEvents.gen.js +6 -9
  39. package/dist/core/serverSentEvents.gen.js.map +1 -1
  40. package/dist/core/types.gen.d.ts +1 -1
  41. package/dist/core/types.gen.d.ts.map +1 -1
  42. package/dist/core/utils.gen.d.ts.map +1 -1
  43. package/dist/core/utils.gen.js +1 -1
  44. package/dist/core/utils.gen.js.map +1 -1
  45. package/dist/schemas.gen.d.ts +559 -131
  46. package/dist/schemas.gen.d.ts.map +1 -1
  47. package/dist/schemas.gen.js +1084 -215
  48. package/dist/schemas.gen.js.map +1 -1
  49. package/dist/sdk.gen.d.ts +53 -6
  50. package/dist/sdk.gen.d.ts.map +1 -1
  51. package/dist/sdk.gen.js +100 -127
  52. package/dist/sdk.gen.js.map +1 -1
  53. package/dist/services/kubernetes/api.d.ts +8 -8
  54. package/dist/types.gen.d.ts +570 -57
  55. package/dist/types.gen.d.ts.map +1 -1
  56. package/dist/zod.gen.d.ts +594 -617
  57. package/dist/zod.gen.d.ts.map +1 -1
  58. package/dist/zod.gen.js +357 -457
  59. package/dist/zod.gen.js.map +1 -1
  60. package/package.json +28 -5
package/dist/zod.gen.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { z } from 'zod';
1
+ import * as z from 'zod';
2
2
  export declare const zBillingContact: z.ZodObject<{
3
3
  company: z.ZodOptional<z.ZodString>;
4
4
  address1: z.ZodOptional<z.ZodString>;
@@ -199,17 +199,23 @@ export declare const zClusterCreateInput: z.ZodObject<{
199
199
  basic: "basic";
200
200
  pro: "pro";
201
201
  }>;
202
- region: z.ZodOptional<z.ZodEnum<{
203
- staging: "staging";
202
+ region: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
203
+ "staging-1a": "staging-1a";
204
204
  "northamerica-central-1": "northamerica-central-1";
205
205
  "europe-central-1a": "europe-central-1a";
206
206
  "northamerica-central-1a": "northamerica-central-1a";
207
- }>>;
208
- version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
207
+ }>>>;
208
+ version_channel: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
209
+ "1.x.x-cfke.x": "1.x.x-cfke.x";
210
+ "1.31.x-cfke.x": "1.31.x-cfke.x";
211
+ "1.32.x-cfke.x": "1.32.x-cfke.x";
212
+ "1.33.x-cfke.x": "1.33.x-cfke.x";
213
+ }>>>;
209
214
  }, z.core.$strip>;
210
215
  export declare const zClusterJoinInformation: z.ZodObject<{
211
216
  certificate_authority: z.ZodString;
212
217
  endpoint: z.ZodURL;
218
+ cluster_dns: z.ZodString;
213
219
  auth_key: z.ZodString;
214
220
  bootstrap_token: z.ZodString;
215
221
  versions: z.ZodObject<{
@@ -230,13 +236,12 @@ export declare const zCluster: z.ZodObject<{
230
236
  basic: "basic";
231
237
  pro: "pro";
232
238
  }>;
233
- region: z.ZodOptional<z.ZodEnum<{
234
- staging: "staging";
239
+ region: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
240
+ "staging-1a": "staging-1a";
235
241
  "northamerica-central-1": "northamerica-central-1";
236
242
  "europe-central-1a": "europe-central-1a";
237
243
  "northamerica-central-1a": "northamerica-central-1a";
238
- }>>;
239
- version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
244
+ }>>>;
240
245
  id: z.ZodUUID;
241
246
  status: z.ZodEnum<{
242
247
  deleted: "deleted";
@@ -255,6 +260,7 @@ export declare const zCluster: z.ZodObject<{
255
260
  created_at: z.ZodOptional<z.ZodString>;
256
261
  updated_at: z.ZodOptional<z.ZodString>;
257
262
  ready: z.ZodOptional<z.ZodBoolean>;
263
+ version_channel: z.ZodOptional<z.ZodString>;
258
264
  }, z.core.$strip>;
259
265
  export declare const zClusterUpdateInput: z.ZodObject<{
260
266
  name: z.ZodOptional<z.ZodString>;
@@ -325,7 +331,7 @@ export declare const zInvite: z.ZodObject<{
325
331
  code: z.ZodOptional<z.ZodString>;
326
332
  }, z.core.$strip>;
327
333
  export declare const zInvoice: z.ZodObject<{
328
- id: z.ZodOptional<z.ZodUUID>;
334
+ id: z.ZodOptional<z.ZodString>;
329
335
  number: z.ZodOptional<z.ZodString>;
330
336
  status: z.ZodOptional<z.ZodString>;
331
337
  total: z.ZodOptional<z.ZodNumber>;
@@ -335,19 +341,30 @@ export declare const zInvoice: z.ZodObject<{
335
341
  period_end: z.ZodISODateTime;
336
342
  invoice_pdf: z.ZodOptional<z.ZodString>;
337
343
  }, z.core.$strip>;
344
+ export declare const zMarketplaceListingFiles: z.ZodObject<{
345
+ chartYaml: z.ZodOptional<z.ZodString>;
346
+ valuesYaml: z.ZodOptional<z.ZodString>;
347
+ valuesSchemaJson: z.ZodOptional<z.ZodString>;
348
+ }, z.core.$strip>;
338
349
  export declare const zMarketplaceListing: z.ZodObject<{
339
- id: z.ZodString;
340
350
  name: z.ZodString;
341
- developer: z.ZodString;
342
- description: z.ZodString;
343
- logoUrl: z.ZodString;
344
- longDescription: z.ZodString;
345
- categories: z.ZodArray<z.ZodString>;
351
+ versions: z.ZodArray<z.ZodString>;
346
352
  version_channels: z.ZodArray<z.ZodString>;
347
- value_schemas: z.ZodArray<z.ZodObject<{
353
+ latestVersion: z.ZodString;
354
+ metadata: z.ZodOptional<z.ZodObject<{
355
+ name: z.ZodString;
348
356
  version: z.ZodString;
349
- schema: z.ZodString;
350
- placeholder: z.ZodString;
357
+ description: z.ZodOptional<z.ZodString>;
358
+ appVersion: z.ZodOptional<z.ZodString>;
359
+ apiVersion: z.ZodOptional<z.ZodString>;
360
+ keywords: z.ZodOptional<z.ZodArray<z.ZodString>>;
361
+ home: z.ZodOptional<z.ZodString>;
362
+ icon: z.ZodOptional<z.ZodString>;
363
+ sources: z.ZodOptional<z.ZodArray<z.ZodString>>;
364
+ maintainers: z.ZodOptional<z.ZodArray<z.ZodObject<{
365
+ name: z.ZodString;
366
+ email: z.ZodOptional<z.ZodString>;
367
+ }, z.core.$strip>>>;
351
368
  }, z.core.$strip>>;
352
369
  }, z.core.$strip>;
353
370
  export declare const zOrganizationCreateInput: z.ZodObject<{
@@ -373,6 +390,7 @@ export declare const zOrganization: z.ZodObject<{
373
390
  id: z.ZodString;
374
391
  label: z.ZodString;
375
392
  }, z.core.$strip>>;
393
+ cfcr_storage_gb: z.ZodInt;
376
394
  }, z.core.$strip>;
377
395
  status: z.ZodEnum<{
378
396
  active: "active";
@@ -401,6 +419,66 @@ export declare const zPaymentMethod: z.ZodObject<{
401
419
  visa: "visa";
402
420
  }>;
403
421
  }, z.core.$strip>;
422
+ export declare const zPlatformQuota: z.ZodObject<{
423
+ basic_clusters_max: z.ZodInt;
424
+ basic_clusters_available: z.ZodInt;
425
+ pro_clusters_max: z.ZodInt;
426
+ pro_clusters_available: z.ZodInt;
427
+ fleets_max: z.ZodInt;
428
+ cluster_tiers: z.ZodArray<z.ZodString>;
429
+ regions: z.ZodArray<z.ZodString>;
430
+ versions: z.ZodArray<z.ZodObject<{
431
+ id: z.ZodString;
432
+ label: z.ZodString;
433
+ }, z.core.$strip>>;
434
+ cfcr_storage_gb: z.ZodInt;
435
+ }, z.core.$strip>;
436
+ export declare const zRegistryRepository: z.ZodObject<{
437
+ name: z.ZodString;
438
+ region: z.ZodString;
439
+ uri: z.ZodString;
440
+ }, z.core.$strip>;
441
+ export declare const zRegistryRepositoryWithTags: z.ZodObject<{
442
+ name: z.ZodString;
443
+ region: z.ZodString;
444
+ uri: z.ZodString;
445
+ tags: z.ZodArray<z.ZodObject<{
446
+ name: z.ZodString;
447
+ size: z.ZodNumber;
448
+ mediaType: z.ZodOptional<z.ZodString>;
449
+ platforms: z.ZodOptional<z.ZodArray<z.ZodString>>;
450
+ }, z.core.$strip>>;
451
+ totalSize: z.ZodNumber;
452
+ }, z.core.$strip>;
453
+ export declare const zRegistryTag: z.ZodObject<{
454
+ name: z.ZodString;
455
+ digest: z.ZodString;
456
+ mediaType: z.ZodOptional<z.ZodString>;
457
+ config: z.ZodOptional<z.ZodObject<{
458
+ size: z.ZodNumber;
459
+ }, z.core.$strip>>;
460
+ layers: z.ZodOptional<z.ZodArray<z.ZodObject<{
461
+ digest: z.ZodOptional<z.ZodString>;
462
+ size: z.ZodNumber;
463
+ }, z.core.$strip>>>;
464
+ manifests: z.ZodOptional<z.ZodArray<z.ZodObject<{
465
+ digest: z.ZodString;
466
+ platform: z.ZodOptional<z.ZodObject<{
467
+ architecture: z.ZodString;
468
+ os: z.ZodString;
469
+ variant: z.ZodOptional<z.ZodString>;
470
+ }, z.core.$strip>>;
471
+ layers: z.ZodOptional<z.ZodArray<z.ZodObject<{
472
+ digest: z.ZodOptional<z.ZodString>;
473
+ size: z.ZodNumber;
474
+ }, z.core.$strip>>>;
475
+ size: z.ZodOptional<z.ZodNumber>;
476
+ }, z.core.$strip>>>;
477
+ size: z.ZodNumber;
478
+ region: z.ZodString;
479
+ repository: z.ZodString;
480
+ uri: z.ZodString;
481
+ }, z.core.$strip>;
404
482
  export declare const zTokenCreateInput: z.ZodObject<{
405
483
  name: z.ZodString;
406
484
  role: z.ZodEnum<{
@@ -425,37 +503,31 @@ export declare const zTokenUpdateInput: z.ZodObject<{
425
503
  User: "User";
426
504
  }>>;
427
505
  }, z.core.$strip>;
506
+ export declare const zUsageFacets: z.ZodObject<{
507
+ cluster_id: z.ZodOptional<z.ZodArray<z.ZodString>>;
508
+ product: z.ZodOptional<z.ZodArray<z.ZodString>>;
509
+ }, z.core.$strip>;
510
+ export declare const zUsageResponse: z.ZodObject<{
511
+ data: z.ZodArray<z.ZodObject<{
512
+ hour: z.ZodString;
513
+ cluster_id: z.ZodString;
514
+ product: z.ZodString;
515
+ value: z.ZodNumber;
516
+ price: z.ZodNumber;
517
+ total: z.ZodNumber;
518
+ }, z.core.$strip>>;
519
+ facets: z.ZodObject<{
520
+ cluster_id: z.ZodOptional<z.ZodArray<z.ZodString>>;
521
+ product: z.ZodOptional<z.ZodArray<z.ZodString>>;
522
+ }, z.core.$strip>;
523
+ }, z.core.$strip>;
428
524
  export declare const zUsage: z.ZodObject<{
429
- hour: z.ZodOptional<z.ZodString>;
430
- cluster_id: z.ZodUUID;
431
- cluster_tier: z.ZodEnum<{
432
- "": "";
433
- basic: "basic";
434
- pro: "pro";
435
- }>;
436
- product: z.ZodEnum<{
437
- cfke_controlplane: "cfke_controlplane";
438
- cfke_connected_nodes: "cfke_connected_nodes";
439
- infra_compute: "infra_compute";
440
- infra_storage: "infra_storage";
441
- infra_loadbalancing: "infra_loadbalancing";
442
- infra_traffic: "infra_traffic";
443
- cfcr_storage: "cfcr_storage";
444
- }>;
445
- node_name: z.ZodString;
446
- sku: z.ZodString;
447
- cpu: z.ZodUnion<readonly [z.ZodNumber, z.ZodEnum<{
448
- "": "";
449
- }>]>;
450
- price: z.ZodUnion<readonly [z.ZodNumber, z.ZodEnum<{
451
- "": "";
452
- }>]>;
453
- value: z.ZodUnion<readonly [z.ZodNumber, z.ZodEnum<{
454
- "": "";
455
- }>]>;
456
- total: z.ZodUnion<readonly [z.ZodNumber, z.ZodEnum<{
457
- "": "";
458
- }>]>;
525
+ hour: z.ZodString;
526
+ cluster_id: z.ZodString;
527
+ product: z.ZodString;
528
+ value: z.ZodNumber;
529
+ price: z.ZodNumber;
530
+ total: z.ZodNumber;
459
531
  }, z.core.$strip>;
460
532
  export declare const zUserCreateInput: z.ZodObject<{
461
533
  email: z.ZodEmail;
@@ -500,50 +572,29 @@ export declare const zUserUpdateInput: z.ZodObject<{
500
572
  inactive: "inactive";
501
573
  }>>;
502
574
  }, z.core.$strip>;
503
- export declare const zGetUsageData: z.ZodObject<{
504
- body: z.ZodOptional<z.ZodNever>;
505
- path: z.ZodOptional<z.ZodNever>;
506
- query: z.ZodOptional<z.ZodNever>;
575
+ export declare const zGetUsageQuery: z.ZodObject<{
576
+ granularity: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
577
+ hourly: "hourly";
578
+ daily: "daily";
579
+ monthly: "monthly";
580
+ }>>>;
507
581
  }, z.core.$strip>;
508
582
  /**
509
- * An array of usage records.
583
+ * Usage data with facets for filtering
510
584
  */
511
- export declare const zGetUsageResponse: z.ZodArray<z.ZodObject<{
512
- hour: z.ZodOptional<z.ZodString>;
513
- cluster_id: z.ZodUUID;
514
- cluster_tier: z.ZodEnum<{
515
- "": "";
516
- basic: "basic";
517
- pro: "pro";
518
- }>;
519
- product: z.ZodEnum<{
520
- cfke_controlplane: "cfke_controlplane";
521
- cfke_connected_nodes: "cfke_connected_nodes";
522
- infra_compute: "infra_compute";
523
- infra_storage: "infra_storage";
524
- infra_loadbalancing: "infra_loadbalancing";
525
- infra_traffic: "infra_traffic";
526
- cfcr_storage: "cfcr_storage";
527
- }>;
528
- node_name: z.ZodString;
529
- sku: z.ZodString;
530
- cpu: z.ZodUnion<readonly [z.ZodNumber, z.ZodEnum<{
531
- "": "";
532
- }>]>;
533
- price: z.ZodUnion<readonly [z.ZodNumber, z.ZodEnum<{
534
- "": "";
535
- }>]>;
536
- value: z.ZodUnion<readonly [z.ZodNumber, z.ZodEnum<{
537
- "": "";
538
- }>]>;
539
- total: z.ZodUnion<readonly [z.ZodNumber, z.ZodEnum<{
540
- "": "";
541
- }>]>;
542
- }, z.core.$strip>>;
543
- export declare const zGetPaymentMethodData: z.ZodObject<{
544
- body: z.ZodOptional<z.ZodNever>;
545
- path: z.ZodOptional<z.ZodNever>;
546
- query: z.ZodOptional<z.ZodNever>;
585
+ export declare const zGetUsageResponse: z.ZodObject<{
586
+ data: z.ZodArray<z.ZodObject<{
587
+ hour: z.ZodString;
588
+ cluster_id: z.ZodString;
589
+ product: z.ZodString;
590
+ value: z.ZodNumber;
591
+ price: z.ZodNumber;
592
+ total: z.ZodNumber;
593
+ }, z.core.$strip>>;
594
+ facets: z.ZodObject<{
595
+ cluster_id: z.ZodOptional<z.ZodArray<z.ZodString>>;
596
+ product: z.ZodOptional<z.ZodArray<z.ZodString>>;
597
+ }, z.core.$strip>;
547
598
  }, z.core.$strip>;
548
599
  /**
549
600
  * Redacted payment card information.
@@ -569,11 +620,6 @@ export declare const zGetPaymentMethodResponse: z.ZodObject<{
569
620
  visa: "visa";
570
621
  }>;
571
622
  }, z.core.$strip>;
572
- export declare const zGetPaymentMethodSecretData: z.ZodObject<{
573
- body: z.ZodOptional<z.ZodNever>;
574
- path: z.ZodOptional<z.ZodNever>;
575
- query: z.ZodOptional<z.ZodNever>;
576
- }, z.core.$strip>;
577
623
  /**
578
624
  * The client secret. Used for client-side retrieval using a publishable key. The client secret can be used to complete a payment from your frontend. It should not be stored, logged, or exposed to anyone other than the customer. Make sure that you have TLS enabled on any page that includes the client secret.
579
625
  *
@@ -581,16 +627,11 @@ export declare const zGetPaymentMethodSecretData: z.ZodObject<{
581
627
  export declare const zGetPaymentMethodSecretResponse: z.ZodObject<{
582
628
  id: z.ZodOptional<z.ZodString>;
583
629
  }, z.core.$strip>;
584
- export declare const zListInvoicesData: z.ZodObject<{
585
- body: z.ZodOptional<z.ZodNever>;
586
- path: z.ZodOptional<z.ZodNever>;
587
- query: z.ZodOptional<z.ZodNever>;
588
- }, z.core.$strip>;
589
630
  /**
590
631
  * An array of usage records.
591
632
  */
592
633
  export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
593
- id: z.ZodOptional<z.ZodUUID>;
634
+ id: z.ZodOptional<z.ZodString>;
594
635
  number: z.ZodOptional<z.ZodString>;
595
636
  status: z.ZodOptional<z.ZodString>;
596
637
  total: z.ZodOptional<z.ZodNumber>;
@@ -600,11 +641,6 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
600
641
  period_end: z.ZodISODateTime;
601
642
  invoice_pdf: z.ZodOptional<z.ZodString>;
602
643
  }, z.core.$strip>>;
603
- export declare const zGetContactData: z.ZodObject<{
604
- body: z.ZodOptional<z.ZodNever>;
605
- path: z.ZodOptional<z.ZodNever>;
606
- query: z.ZodOptional<z.ZodNever>;
607
- }, z.core.$strip>;
608
644
  /**
609
645
  * Returns a single object containing organization contact and billing address details.
610
646
  */
@@ -751,152 +787,148 @@ export declare const zGetContactResponse: z.ZodObject<{
751
787
  zw_tin: "zw_tin";
752
788
  }>>;
753
789
  }, z.core.$strip>;
754
- export declare const zUpdateContactData: z.ZodObject<{
755
- body: z.ZodObject<{
756
- company: z.ZodOptional<z.ZodString>;
757
- address1: z.ZodOptional<z.ZodString>;
758
- address2: z.ZodOptional<z.ZodString>;
759
- postalCode: z.ZodOptional<z.ZodString>;
760
- city: z.ZodOptional<z.ZodString>;
761
- state: z.ZodOptional<z.ZodString>;
762
- country: z.ZodOptional<z.ZodString>;
763
- phone: z.ZodOptional<z.ZodString>;
764
- email: z.ZodEmail;
765
- individual_name: z.ZodString;
766
- tax_id: z.ZodOptional<z.ZodString>;
767
- tax_id_type: z.ZodOptional<z.ZodEnum<{
768
- "": "";
769
- ad_nrt: "ad_nrt";
770
- ae_trn: "ae_trn";
771
- al_tin: "al_tin";
772
- am_tin: "am_tin";
773
- ao_tin: "ao_tin";
774
- ar_cuit: "ar_cuit";
775
- at_vat: "at_vat";
776
- au_abn: "au_abn";
777
- au_arn: "au_arn";
778
- ba_tin: "ba_tin";
779
- bb_tin: "bb_tin";
780
- be_vat: "be_vat";
781
- bg_uic: "bg_uic";
782
- bg_vat: "bg_vat";
783
- bh_vat: "bh_vat";
784
- bo_tin: "bo_tin";
785
- br_cnpj: "br_cnpj";
786
- br_cpf: "br_cpf";
787
- bs_tin: "bs_tin";
788
- by_tin: "by_tin";
789
- ca_bn: "ca_bn";
790
- ca_gst_hst: "ca_gst_hst";
791
- ca_pst_bc: "ca_pst_bc";
792
- ca_pst_mb: "ca_pst_mb";
793
- ca_pst_sk: "ca_pst_sk";
794
- ca_qst: "ca_qst";
795
- cd_nif: "cd_nif";
796
- ch_uid: "ch_uid";
797
- ch_vat: "ch_vat";
798
- cl_tin: "cl_tin";
799
- cn_tin: "cn_tin";
800
- co_nit: "co_nit";
801
- cr_tin: "cr_tin";
802
- cy_vat: "cy_vat";
803
- cz_vat: "cz_vat";
804
- de_stn: "de_stn";
805
- de_vat: "de_vat";
806
- dk_vat: "dk_vat";
807
- do_rcn: "do_rcn";
808
- ec_ruc: "ec_ruc";
809
- ee_vat: "ee_vat";
810
- eg_tin: "eg_tin";
811
- es_cif: "es_cif";
812
- es_vat: "es_vat";
813
- eu_oss_vat: "eu_oss_vat";
814
- fi_vat: "fi_vat";
815
- fr_vat: "fr_vat";
816
- gb_vat: "gb_vat";
817
- ge_vat: "ge_vat";
818
- gn_nif: "gn_nif";
819
- gr_vat: "gr_vat";
820
- hk_br: "hk_br";
821
- hr_oib: "hr_oib";
822
- hr_vat: "hr_vat";
823
- hu_tin: "hu_tin";
824
- hu_vat: "hu_vat";
825
- id_npwp: "id_npwp";
826
- ie_vat: "ie_vat";
827
- il_vat: "il_vat";
828
- in_gst: "in_gst";
829
- is_vat: "is_vat";
830
- it_vat: "it_vat";
831
- jp_cn: "jp_cn";
832
- jp_rn: "jp_rn";
833
- jp_trn: "jp_trn";
834
- ke_pin: "ke_pin";
835
- kh_tin: "kh_tin";
836
- kr_brn: "kr_brn";
837
- kz_bin: "kz_bin";
838
- li_uid: "li_uid";
839
- li_vat: "li_vat";
840
- lt_vat: "lt_vat";
841
- lu_vat: "lu_vat";
842
- lv_vat: "lv_vat";
843
- ma_vat: "ma_vat";
844
- md_vat: "md_vat";
845
- me_pib: "me_pib";
846
- mk_vat: "mk_vat";
847
- mr_nif: "mr_nif";
848
- mt_vat: "mt_vat";
849
- mx_rfc: "mx_rfc";
850
- my_frp: "my_frp";
851
- my_itn: "my_itn";
852
- my_sst: "my_sst";
853
- ng_tin: "ng_tin";
854
- nl_vat: "nl_vat";
855
- no_vat: "no_vat";
856
- no_voec: "no_voec";
857
- np_pan: "np_pan";
858
- nz_gst: "nz_gst";
859
- om_vat: "om_vat";
860
- pe_ruc: "pe_ruc";
861
- ph_tin: "ph_tin";
862
- pl_vat: "pl_vat";
863
- pt_vat: "pt_vat";
864
- ro_tin: "ro_tin";
865
- ro_vat: "ro_vat";
866
- rs_pib: "rs_pib";
867
- ru_inn: "ru_inn";
868
- ru_kpp: "ru_kpp";
869
- sa_vat: "sa_vat";
870
- se_vat: "se_vat";
871
- sg_gst: "sg_gst";
872
- sg_uen: "sg_uen";
873
- si_tin: "si_tin";
874
- si_vat: "si_vat";
875
- sk_vat: "sk_vat";
876
- sn_ninea: "sn_ninea";
877
- sr_fin: "sr_fin";
878
- sv_nit: "sv_nit";
879
- th_vat: "th_vat";
880
- tj_tin: "tj_tin";
881
- tr_tin: "tr_tin";
882
- tw_vat: "tw_vat";
883
- tz_vat: "tz_vat";
884
- ua_vat: "ua_vat";
885
- ug_tin: "ug_tin";
886
- us_ein: "us_ein";
887
- uy_ruc: "uy_ruc";
888
- uz_tin: "uz_tin";
889
- uz_vat: "uz_vat";
890
- ve_rif: "ve_rif";
891
- vn_tin: "vn_tin";
892
- xi_vat: "xi_vat";
893
- za_vat: "za_vat";
894
- zm_tin: "zm_tin";
895
- zw_tin: "zw_tin";
896
- }>>;
897
- }, z.core.$strip>;
898
- path: z.ZodOptional<z.ZodNever>;
899
- query: z.ZodOptional<z.ZodNever>;
790
+ export declare const zUpdateContactBody: z.ZodObject<{
791
+ company: z.ZodOptional<z.ZodString>;
792
+ address1: z.ZodOptional<z.ZodString>;
793
+ address2: z.ZodOptional<z.ZodString>;
794
+ postalCode: z.ZodOptional<z.ZodString>;
795
+ city: z.ZodOptional<z.ZodString>;
796
+ state: z.ZodOptional<z.ZodString>;
797
+ country: z.ZodOptional<z.ZodString>;
798
+ phone: z.ZodOptional<z.ZodString>;
799
+ email: z.ZodEmail;
800
+ individual_name: z.ZodString;
801
+ tax_id: z.ZodOptional<z.ZodString>;
802
+ tax_id_type: z.ZodOptional<z.ZodEnum<{
803
+ "": "";
804
+ ad_nrt: "ad_nrt";
805
+ ae_trn: "ae_trn";
806
+ al_tin: "al_tin";
807
+ am_tin: "am_tin";
808
+ ao_tin: "ao_tin";
809
+ ar_cuit: "ar_cuit";
810
+ at_vat: "at_vat";
811
+ au_abn: "au_abn";
812
+ au_arn: "au_arn";
813
+ ba_tin: "ba_tin";
814
+ bb_tin: "bb_tin";
815
+ be_vat: "be_vat";
816
+ bg_uic: "bg_uic";
817
+ bg_vat: "bg_vat";
818
+ bh_vat: "bh_vat";
819
+ bo_tin: "bo_tin";
820
+ br_cnpj: "br_cnpj";
821
+ br_cpf: "br_cpf";
822
+ bs_tin: "bs_tin";
823
+ by_tin: "by_tin";
824
+ ca_bn: "ca_bn";
825
+ ca_gst_hst: "ca_gst_hst";
826
+ ca_pst_bc: "ca_pst_bc";
827
+ ca_pst_mb: "ca_pst_mb";
828
+ ca_pst_sk: "ca_pst_sk";
829
+ ca_qst: "ca_qst";
830
+ cd_nif: "cd_nif";
831
+ ch_uid: "ch_uid";
832
+ ch_vat: "ch_vat";
833
+ cl_tin: "cl_tin";
834
+ cn_tin: "cn_tin";
835
+ co_nit: "co_nit";
836
+ cr_tin: "cr_tin";
837
+ cy_vat: "cy_vat";
838
+ cz_vat: "cz_vat";
839
+ de_stn: "de_stn";
840
+ de_vat: "de_vat";
841
+ dk_vat: "dk_vat";
842
+ do_rcn: "do_rcn";
843
+ ec_ruc: "ec_ruc";
844
+ ee_vat: "ee_vat";
845
+ eg_tin: "eg_tin";
846
+ es_cif: "es_cif";
847
+ es_vat: "es_vat";
848
+ eu_oss_vat: "eu_oss_vat";
849
+ fi_vat: "fi_vat";
850
+ fr_vat: "fr_vat";
851
+ gb_vat: "gb_vat";
852
+ ge_vat: "ge_vat";
853
+ gn_nif: "gn_nif";
854
+ gr_vat: "gr_vat";
855
+ hk_br: "hk_br";
856
+ hr_oib: "hr_oib";
857
+ hr_vat: "hr_vat";
858
+ hu_tin: "hu_tin";
859
+ hu_vat: "hu_vat";
860
+ id_npwp: "id_npwp";
861
+ ie_vat: "ie_vat";
862
+ il_vat: "il_vat";
863
+ in_gst: "in_gst";
864
+ is_vat: "is_vat";
865
+ it_vat: "it_vat";
866
+ jp_cn: "jp_cn";
867
+ jp_rn: "jp_rn";
868
+ jp_trn: "jp_trn";
869
+ ke_pin: "ke_pin";
870
+ kh_tin: "kh_tin";
871
+ kr_brn: "kr_brn";
872
+ kz_bin: "kz_bin";
873
+ li_uid: "li_uid";
874
+ li_vat: "li_vat";
875
+ lt_vat: "lt_vat";
876
+ lu_vat: "lu_vat";
877
+ lv_vat: "lv_vat";
878
+ ma_vat: "ma_vat";
879
+ md_vat: "md_vat";
880
+ me_pib: "me_pib";
881
+ mk_vat: "mk_vat";
882
+ mr_nif: "mr_nif";
883
+ mt_vat: "mt_vat";
884
+ mx_rfc: "mx_rfc";
885
+ my_frp: "my_frp";
886
+ my_itn: "my_itn";
887
+ my_sst: "my_sst";
888
+ ng_tin: "ng_tin";
889
+ nl_vat: "nl_vat";
890
+ no_vat: "no_vat";
891
+ no_voec: "no_voec";
892
+ np_pan: "np_pan";
893
+ nz_gst: "nz_gst";
894
+ om_vat: "om_vat";
895
+ pe_ruc: "pe_ruc";
896
+ ph_tin: "ph_tin";
897
+ pl_vat: "pl_vat";
898
+ pt_vat: "pt_vat";
899
+ ro_tin: "ro_tin";
900
+ ro_vat: "ro_vat";
901
+ rs_pib: "rs_pib";
902
+ ru_inn: "ru_inn";
903
+ ru_kpp: "ru_kpp";
904
+ sa_vat: "sa_vat";
905
+ se_vat: "se_vat";
906
+ sg_gst: "sg_gst";
907
+ sg_uen: "sg_uen";
908
+ si_tin: "si_tin";
909
+ si_vat: "si_vat";
910
+ sk_vat: "sk_vat";
911
+ sn_ninea: "sn_ninea";
912
+ sr_fin: "sr_fin";
913
+ sv_nit: "sv_nit";
914
+ th_vat: "th_vat";
915
+ tj_tin: "tj_tin";
916
+ tr_tin: "tr_tin";
917
+ tw_vat: "tw_vat";
918
+ tz_vat: "tz_vat";
919
+ ua_vat: "ua_vat";
920
+ ug_tin: "ug_tin";
921
+ us_ein: "us_ein";
922
+ uy_ruc: "uy_ruc";
923
+ uz_tin: "uz_tin";
924
+ uz_vat: "uz_vat";
925
+ ve_rif: "ve_rif";
926
+ vn_tin: "vn_tin";
927
+ xi_vat: "xi_vat";
928
+ za_vat: "za_vat";
929
+ zm_tin: "zm_tin";
930
+ zw_tin: "zw_tin";
931
+ }>>;
900
932
  }, z.core.$strip>;
901
933
  /**
902
934
  * Successfully updated. Returns updated organization details.
@@ -1044,11 +1076,6 @@ export declare const zUpdateContactResponse: z.ZodObject<{
1044
1076
  zw_tin: "zw_tin";
1045
1077
  }>>;
1046
1078
  }, z.core.$strip>;
1047
- export declare const zGetCreditsData: z.ZodObject<{
1048
- body: z.ZodOptional<z.ZodNever>;
1049
- path: z.ZodOptional<z.ZodNever>;
1050
- query: z.ZodOptional<z.ZodNever>;
1051
- }, z.core.$strip>;
1052
1079
  /**
1053
1080
  * An array of the applied promotional credits records.
1054
1081
  */
@@ -1065,19 +1092,11 @@ export declare const zGetCreditsResponse: z.ZodArray<z.ZodObject<{
1065
1092
  value_total: z.ZodNumber;
1066
1093
  value_remaining: z.ZodOptional<z.ZodNumber>;
1067
1094
  }, z.core.$strip>>;
1068
- export declare const zRedeemCreditsData: z.ZodObject<{
1069
- body: z.ZodObject<{
1070
- code: z.ZodOptional<z.ZodString>;
1071
- }, z.core.$strip>;
1072
- path: z.ZodOptional<z.ZodNever>;
1073
- query: z.ZodOptional<z.ZodNever>;
1095
+ export declare const zRedeemCreditsBody: z.ZodObject<{
1096
+ code: z.ZodOptional<z.ZodString>;
1074
1097
  }, z.core.$strip>;
1075
- export declare const zListChartsData: z.ZodObject<{
1076
- body: z.ZodOptional<z.ZodNever>;
1077
- path: z.ZodObject<{
1078
- cluster_id: z.ZodString;
1079
- }, z.core.$strip>;
1080
- query: z.ZodOptional<z.ZodNever>;
1098
+ export declare const zListChartsPath: z.ZodObject<{
1099
+ cluster_id: z.ZodString;
1081
1100
  }, z.core.$strip>;
1082
1101
  /**
1083
1102
  * An array of charts
@@ -1109,42 +1128,31 @@ export declare const zListChartsResponse: z.ZodArray<z.ZodObject<{
1109
1128
  updated_at: z.ZodString;
1110
1129
  ready: z.ZodBoolean;
1111
1130
  }, z.core.$strip>>;
1112
- export declare const zCreateChartData: z.ZodObject<{
1113
- body: z.ZodObject<{
1114
- values: z.ZodString;
1115
- version_channel: z.ZodString;
1116
- name: z.ZodString;
1117
- namespace: z.ZodString;
1118
- chart: z.ZodString;
1119
- }, z.core.$strip>;
1120
- path: z.ZodObject<{
1121
- cluster_id: z.ZodString;
1122
- }, z.core.$strip>;
1123
- query: z.ZodOptional<z.ZodNever>;
1131
+ export declare const zCreateChartBody: z.ZodObject<{
1132
+ values: z.ZodString;
1133
+ version_channel: z.ZodString;
1134
+ name: z.ZodString;
1135
+ namespace: z.ZodString;
1136
+ chart: z.ZodString;
1137
+ }, z.core.$strip>;
1138
+ export declare const zCreateChartPath: z.ZodObject<{
1139
+ cluster_id: z.ZodString;
1124
1140
  }, z.core.$strip>;
1125
1141
  /**
1126
1142
  * Successfully created. Returns created Chart ID.
1127
1143
  */
1128
1144
  export declare const zCreateChartResponse: z.ZodString;
1129
- export declare const zDeleteChartData: z.ZodObject<{
1130
- body: z.ZodOptional<z.ZodNever>;
1131
- path: z.ZodObject<{
1132
- cluster_id: z.ZodString;
1133
- chart_name: z.ZodString;
1134
- }, z.core.$strip>;
1135
- query: z.ZodOptional<z.ZodNever>;
1145
+ export declare const zDeleteChartPath: z.ZodObject<{
1146
+ cluster_id: z.ZodString;
1147
+ chart_name: z.ZodString;
1136
1148
  }, z.core.$strip>;
1137
1149
  /**
1138
1150
  * Successfully deleted.
1139
1151
  */
1140
1152
  export declare const zDeleteChartResponse: z.ZodString;
1141
- export declare const zGetChartData: z.ZodObject<{
1142
- body: z.ZodOptional<z.ZodNever>;
1143
- path: z.ZodObject<{
1144
- cluster_id: z.ZodString;
1145
- chart_name: z.ZodString;
1146
- }, z.core.$strip>;
1147
- query: z.ZodOptional<z.ZodNever>;
1153
+ export declare const zGetChartPath: z.ZodObject<{
1154
+ cluster_id: z.ZodString;
1155
+ chart_name: z.ZodString;
1148
1156
  }, z.core.$strip>;
1149
1157
  /**
1150
1158
  * Returns a single object containing chart details.
@@ -1176,27 +1184,20 @@ export declare const zGetChartResponse: z.ZodObject<{
1176
1184
  updated_at: z.ZodString;
1177
1185
  ready: z.ZodBoolean;
1178
1186
  }, z.core.$strip>;
1179
- export declare const zUpdateChartData: z.ZodObject<{
1180
- body: z.ZodObject<{
1181
- values: z.ZodString;
1182
- version_channel: z.ZodString;
1183
- }, z.core.$strip>;
1184
- path: z.ZodObject<{
1185
- cluster_id: z.ZodString;
1186
- chart_name: z.ZodString;
1187
- }, z.core.$strip>;
1188
- query: z.ZodOptional<z.ZodNever>;
1187
+ export declare const zUpdateChartBody: z.ZodObject<{
1188
+ values: z.ZodString;
1189
+ version_channel: z.ZodString;
1190
+ }, z.core.$strip>;
1191
+ export declare const zUpdateChartPath: z.ZodObject<{
1192
+ cluster_id: z.ZodString;
1193
+ chart_name: z.ZodString;
1189
1194
  }, z.core.$strip>;
1190
1195
  /**
1191
1196
  * Successfully updated.
1192
1197
  */
1193
1198
  export declare const zUpdateChartResponse: z.ZodString;
1194
- export declare const zListFleetsData: z.ZodObject<{
1195
- body: z.ZodOptional<z.ZodNever>;
1196
- path: z.ZodObject<{
1197
- cluster_id: z.ZodString;
1198
- }, z.core.$strip>;
1199
- query: z.ZodOptional<z.ZodNever>;
1199
+ export declare const zListFleetsPath: z.ZodObject<{
1200
+ cluster_id: z.ZodString;
1200
1201
  }, z.core.$strip>;
1201
1202
  /**
1202
1203
  * An array of fleets
@@ -1219,53 +1220,42 @@ export declare const zListFleetsResponse: z.ZodArray<z.ZodObject<{
1219
1220
  }, z.core.$strip>>;
1220
1221
  id: z.ZodString;
1221
1222
  }, z.core.$strip>>;
1222
- export declare const zCreateFleetData: z.ZodObject<{
1223
- body: z.ZodObject<{
1224
- limits: z.ZodOptional<z.ZodObject<{
1225
- cpu: z.ZodNumber;
1226
- }, z.core.$strip>>;
1227
- gcp: z.ZodOptional<z.ZodObject<{
1228
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1229
- project: z.ZodString;
1230
- }, z.core.$strip>>;
1231
- hetzner: z.ZodOptional<z.ZodObject<{
1232
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1233
- apiKey: z.ZodString;
1234
- }, z.core.$strip>>;
1235
- aws: z.ZodOptional<z.ZodObject<{
1236
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1237
- controllerRoleArn: z.ZodString;
1238
- }, z.core.$strip>>;
1239
- id: z.ZodString;
1240
- }, z.core.$strip>;
1241
- path: z.ZodObject<{
1242
- cluster_id: z.ZodString;
1243
- }, z.core.$strip>;
1244
- query: z.ZodOptional<z.ZodNever>;
1223
+ export declare const zCreateFleetBody: z.ZodObject<{
1224
+ limits: z.ZodOptional<z.ZodObject<{
1225
+ cpu: z.ZodNumber;
1226
+ }, z.core.$strip>>;
1227
+ gcp: z.ZodOptional<z.ZodObject<{
1228
+ enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1229
+ project: z.ZodString;
1230
+ }, z.core.$strip>>;
1231
+ hetzner: z.ZodOptional<z.ZodObject<{
1232
+ enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1233
+ apiKey: z.ZodString;
1234
+ }, z.core.$strip>>;
1235
+ aws: z.ZodOptional<z.ZodObject<{
1236
+ enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1237
+ controllerRoleArn: z.ZodString;
1238
+ }, z.core.$strip>>;
1239
+ id: z.ZodString;
1240
+ }, z.core.$strip>;
1241
+ export declare const zCreateFleetPath: z.ZodObject<{
1242
+ cluster_id: z.ZodString;
1245
1243
  }, z.core.$strip>;
1246
1244
  /**
1247
1245
  * Successfully created. Returns created Fleet ID.
1248
1246
  */
1249
1247
  export declare const zCreateFleetResponse: z.ZodString;
1250
- export declare const zDeleteFleetData: z.ZodObject<{
1251
- body: z.ZodOptional<z.ZodNever>;
1252
- path: z.ZodObject<{
1253
- cluster_id: z.ZodString;
1254
- fleet_name: z.ZodString;
1255
- }, z.core.$strip>;
1256
- query: z.ZodOptional<z.ZodNever>;
1248
+ export declare const zDeleteFleetPath: z.ZodObject<{
1249
+ cluster_id: z.ZodString;
1250
+ fleet_name: z.ZodString;
1257
1251
  }, z.core.$strip>;
1258
1252
  /**
1259
1253
  * Successfully deleted.
1260
1254
  */
1261
1255
  export declare const zDeleteFleetResponse: z.ZodString;
1262
- export declare const zGetFleetData: z.ZodObject<{
1263
- body: z.ZodOptional<z.ZodNever>;
1264
- path: z.ZodObject<{
1265
- cluster_id: z.ZodString;
1266
- fleet_name: z.ZodString;
1267
- }, z.core.$strip>;
1268
- query: z.ZodOptional<z.ZodNever>;
1256
+ export declare const zGetFleetPath: z.ZodObject<{
1257
+ cluster_id: z.ZodString;
1258
+ fleet_name: z.ZodString;
1269
1259
  }, z.core.$strip>;
1270
1260
  /**
1271
1261
  * Returns a single object containing fleet details.
@@ -1288,45 +1278,33 @@ export declare const zGetFleetResponse: z.ZodObject<{
1288
1278
  }, z.core.$strip>>;
1289
1279
  id: z.ZodString;
1290
1280
  }, z.core.$strip>;
1291
- export declare const zUpdateFleetData: z.ZodObject<{
1292
- body: z.ZodObject<{
1293
- limits: z.ZodOptional<z.ZodObject<{
1294
- cpu: z.ZodNumber;
1295
- }, z.core.$strip>>;
1296
- gcp: z.ZodOptional<z.ZodObject<{
1297
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1298
- project: z.ZodString;
1299
- }, z.core.$strip>>;
1300
- hetzner: z.ZodOptional<z.ZodObject<{
1301
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1302
- apiKey: z.ZodString;
1303
- }, z.core.$strip>>;
1304
- aws: z.ZodOptional<z.ZodObject<{
1305
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1306
- controllerRoleArn: z.ZodString;
1307
- }, z.core.$strip>>;
1308
- }, z.core.$strip>;
1309
- path: z.ZodObject<{
1310
- cluster_id: z.ZodString;
1311
- fleet_name: z.ZodString;
1312
- }, z.core.$strip>;
1313
- query: z.ZodOptional<z.ZodNever>;
1281
+ export declare const zUpdateFleetBody: z.ZodObject<{
1282
+ limits: z.ZodOptional<z.ZodObject<{
1283
+ cpu: z.ZodNumber;
1284
+ }, z.core.$strip>>;
1285
+ gcp: z.ZodOptional<z.ZodObject<{
1286
+ enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1287
+ project: z.ZodString;
1288
+ }, z.core.$strip>>;
1289
+ hetzner: z.ZodOptional<z.ZodObject<{
1290
+ enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1291
+ apiKey: z.ZodString;
1292
+ }, z.core.$strip>>;
1293
+ aws: z.ZodOptional<z.ZodObject<{
1294
+ enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1295
+ controllerRoleArn: z.ZodString;
1296
+ }, z.core.$strip>>;
1297
+ }, z.core.$strip>;
1298
+ export declare const zUpdateFleetPath: z.ZodObject<{
1299
+ cluster_id: z.ZodString;
1300
+ fleet_name: z.ZodString;
1314
1301
  }, z.core.$strip>;
1315
1302
  /**
1316
1303
  * Successfully updated.
1317
1304
  */
1318
1305
  export declare const zUpdateFleetResponse: z.ZodString;
1319
- export declare const zQueryClusterData: z.ZodObject<{
1320
- body: z.ZodOptional<z.ZodNever>;
1321
- path: z.ZodObject<{
1322
- cluster_id: z.ZodString;
1323
- }, z.core.$strip>;
1324
- query: z.ZodOptional<z.ZodNever>;
1325
- }, z.core.$strip>;
1326
- export declare const zListClustersData: z.ZodObject<{
1327
- body: z.ZodOptional<z.ZodNever>;
1328
- path: z.ZodOptional<z.ZodNever>;
1329
- query: z.ZodOptional<z.ZodNever>;
1306
+ export declare const zQueryClusterPath: z.ZodObject<{
1307
+ cluster_id: z.ZodString;
1330
1308
  }, z.core.$strip>;
1331
1309
  /**
1332
1310
  * An array of clusters
@@ -1337,13 +1315,12 @@ export declare const zListClustersResponse: z.ZodArray<z.ZodObject<{
1337
1315
  basic: "basic";
1338
1316
  pro: "pro";
1339
1317
  }>;
1340
- region: z.ZodOptional<z.ZodEnum<{
1341
- staging: "staging";
1318
+ region: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
1319
+ "staging-1a": "staging-1a";
1342
1320
  "northamerica-central-1": "northamerica-central-1";
1343
1321
  "europe-central-1a": "europe-central-1a";
1344
1322
  "northamerica-central-1a": "northamerica-central-1a";
1345
- }>>;
1346
- version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
1323
+ }>>>;
1347
1324
  id: z.ZodUUID;
1348
1325
  status: z.ZodEnum<{
1349
1326
  deleted: "deleted";
@@ -1362,46 +1339,40 @@ export declare const zListClustersResponse: z.ZodArray<z.ZodObject<{
1362
1339
  created_at: z.ZodOptional<z.ZodString>;
1363
1340
  updated_at: z.ZodOptional<z.ZodString>;
1364
1341
  ready: z.ZodOptional<z.ZodBoolean>;
1342
+ version_channel: z.ZodOptional<z.ZodString>;
1365
1343
  }, z.core.$strip>>;
1366
- export declare const zCreateClusterData: z.ZodObject<{
1367
- body: z.ZodObject<{
1368
- name: z.ZodString;
1369
- tier: z.ZodEnum<{
1370
- basic: "basic";
1371
- pro: "pro";
1372
- }>;
1373
- region: z.ZodOptional<z.ZodEnum<{
1374
- staging: "staging";
1375
- "northamerica-central-1": "northamerica-central-1";
1376
- "europe-central-1a": "europe-central-1a";
1377
- "northamerica-central-1a": "northamerica-central-1a";
1378
- }>>;
1379
- version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
1380
- }, z.core.$strip>;
1381
- path: z.ZodOptional<z.ZodNever>;
1382
- query: z.ZodOptional<z.ZodNever>;
1344
+ export declare const zCreateClusterBody: z.ZodObject<{
1345
+ name: z.ZodString;
1346
+ tier: z.ZodEnum<{
1347
+ basic: "basic";
1348
+ pro: "pro";
1349
+ }>;
1350
+ region: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
1351
+ "staging-1a": "staging-1a";
1352
+ "northamerica-central-1": "northamerica-central-1";
1353
+ "europe-central-1a": "europe-central-1a";
1354
+ "northamerica-central-1a": "northamerica-central-1a";
1355
+ }>>>;
1356
+ version_channel: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
1357
+ "1.x.x-cfke.x": "1.x.x-cfke.x";
1358
+ "1.31.x-cfke.x": "1.31.x-cfke.x";
1359
+ "1.32.x-cfke.x": "1.32.x-cfke.x";
1360
+ "1.33.x-cfke.x": "1.33.x-cfke.x";
1361
+ }>>>;
1383
1362
  }, z.core.$strip>;
1384
1363
  /**
1385
1364
  * Successfully created. Returns created Cluster ID.
1386
1365
  */
1387
1366
  export declare const zCreateClusterResponse: z.ZodString;
1388
- export declare const zDeleteClusterData: z.ZodObject<{
1389
- body: z.ZodOptional<z.ZodNever>;
1390
- path: z.ZodObject<{
1391
- cluster_id: z.ZodString;
1392
- }, z.core.$strip>;
1393
- query: z.ZodOptional<z.ZodNever>;
1367
+ export declare const zDeleteClusterPath: z.ZodObject<{
1368
+ cluster_id: z.ZodString;
1394
1369
  }, z.core.$strip>;
1395
1370
  /**
1396
1371
  * Successfully deleted.
1397
1372
  */
1398
1373
  export declare const zDeleteClusterResponse: z.ZodString;
1399
- export declare const zGetClusterData: z.ZodObject<{
1400
- body: z.ZodOptional<z.ZodNever>;
1401
- path: z.ZodObject<{
1402
- cluster_id: z.ZodString;
1403
- }, z.core.$strip>;
1404
- query: z.ZodOptional<z.ZodNever>;
1374
+ export declare const zGetClusterPath: z.ZodObject<{
1375
+ cluster_id: z.ZodString;
1405
1376
  }, z.core.$strip>;
1406
1377
  /**
1407
1378
  * Returns a single object containing cluster details.
@@ -1412,13 +1383,12 @@ export declare const zGetClusterResponse: z.ZodObject<{
1412
1383
  basic: "basic";
1413
1384
  pro: "pro";
1414
1385
  }>;
1415
- region: z.ZodOptional<z.ZodEnum<{
1416
- staging: "staging";
1386
+ region: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
1387
+ "staging-1a": "staging-1a";
1417
1388
  "northamerica-central-1": "northamerica-central-1";
1418
1389
  "europe-central-1a": "europe-central-1a";
1419
1390
  "northamerica-central-1a": "northamerica-central-1a";
1420
- }>>;
1421
- version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
1391
+ }>>>;
1422
1392
  id: z.ZodUUID;
1423
1393
  status: z.ZodEnum<{
1424
1394
  deleted: "deleted";
@@ -1437,20 +1407,18 @@ export declare const zGetClusterResponse: z.ZodObject<{
1437
1407
  created_at: z.ZodOptional<z.ZodString>;
1438
1408
  updated_at: z.ZodOptional<z.ZodString>;
1439
1409
  ready: z.ZodOptional<z.ZodBoolean>;
1410
+ version_channel: z.ZodOptional<z.ZodString>;
1440
1411
  }, z.core.$strip>;
1441
- export declare const zUpdateClusterData: z.ZodObject<{
1442
- body: z.ZodObject<{
1443
- name: z.ZodOptional<z.ZodString>;
1444
- tier: z.ZodEnum<{
1445
- basic: "basic";
1446
- pro: "pro";
1447
- }>;
1448
- version_channel: z.ZodOptional<z.ZodString>;
1449
- }, z.core.$strip>;
1450
- path: z.ZodObject<{
1451
- cluster_id: z.ZodString;
1452
- }, z.core.$strip>;
1453
- query: z.ZodOptional<z.ZodNever>;
1412
+ export declare const zUpdateClusterBody: z.ZodObject<{
1413
+ name: z.ZodOptional<z.ZodString>;
1414
+ tier: z.ZodEnum<{
1415
+ basic: "basic";
1416
+ pro: "pro";
1417
+ }>;
1418
+ version_channel: z.ZodOptional<z.ZodString>;
1419
+ }, z.core.$strip>;
1420
+ export declare const zUpdateClusterPath: z.ZodObject<{
1421
+ cluster_id: z.ZodString;
1454
1422
  }, z.core.$strip>;
1455
1423
  /**
1456
1424
  * Successfully updated. Returns updated cluster details.
@@ -1461,13 +1429,12 @@ export declare const zUpdateClusterResponse: z.ZodObject<{
1461
1429
  basic: "basic";
1462
1430
  pro: "pro";
1463
1431
  }>;
1464
- region: z.ZodOptional<z.ZodEnum<{
1465
- staging: "staging";
1432
+ region: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
1433
+ "staging-1a": "staging-1a";
1466
1434
  "northamerica-central-1": "northamerica-central-1";
1467
1435
  "europe-central-1a": "europe-central-1a";
1468
1436
  "northamerica-central-1a": "northamerica-central-1a";
1469
- }>>;
1470
- version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
1437
+ }>>>;
1471
1438
  id: z.ZodUUID;
1472
1439
  status: z.ZodEnum<{
1473
1440
  deleted: "deleted";
@@ -1486,13 +1453,17 @@ export declare const zUpdateClusterResponse: z.ZodObject<{
1486
1453
  created_at: z.ZodOptional<z.ZodString>;
1487
1454
  updated_at: z.ZodOptional<z.ZodString>;
1488
1455
  ready: z.ZodOptional<z.ZodBoolean>;
1456
+ version_channel: z.ZodOptional<z.ZodString>;
1489
1457
  }, z.core.$strip>;
1490
- export declare const zGetJoinInformationData: z.ZodObject<{
1491
- body: z.ZodOptional<z.ZodNever>;
1492
- path: z.ZodObject<{
1493
- cluster_id: z.ZodString;
1494
- }, z.core.$strip>;
1495
- query: z.ZodOptional<z.ZodNever>;
1458
+ export declare const zGetClusterCaPath: z.ZodObject<{
1459
+ cluster_id: z.ZodString;
1460
+ }, z.core.$strip>;
1461
+ /**
1462
+ * PEM-encoded certificate authority of the cluster.
1463
+ */
1464
+ export declare const zGetClusterCaResponse: z.ZodString;
1465
+ export declare const zGetJoinInformationPath: z.ZodObject<{
1466
+ cluster_id: z.ZodString;
1496
1467
  }, z.core.$strip>;
1497
1468
  /**
1498
1469
  * An object of cluster join information
@@ -1500,6 +1471,7 @@ export declare const zGetJoinInformationData: z.ZodObject<{
1500
1471
  export declare const zGetJoinInformationResponse: z.ZodObject<{
1501
1472
  certificate_authority: z.ZodString;
1502
1473
  endpoint: z.ZodURL;
1474
+ cluster_dns: z.ZodString;
1503
1475
  auth_key: z.ZodString;
1504
1476
  bootstrap_token: z.ZodString;
1505
1477
  versions: z.ZodObject<{
@@ -1514,11 +1486,6 @@ export declare const zGetJoinInformationResponse: z.ZodObject<{
1514
1486
  gcp_workload_identity_provider: z.ZodString;
1515
1487
  }, z.core.$strip>;
1516
1488
  }, z.core.$strip>;
1517
- export declare const zListInvitesData: z.ZodObject<{
1518
- body: z.ZodOptional<z.ZodNever>;
1519
- path: z.ZodOptional<z.ZodNever>;
1520
- query: z.ZodOptional<z.ZodNever>;
1521
- }, z.core.$strip>;
1522
1489
  /**
1523
1490
  * An array of invites
1524
1491
  */
@@ -1529,12 +1496,8 @@ export declare const zListInvitesResponse: z.ZodArray<z.ZodObject<{
1529
1496
  email: z.ZodOptional<z.ZodEmail>;
1530
1497
  code: z.ZodOptional<z.ZodString>;
1531
1498
  }, z.core.$strip>>;
1532
- export declare const zCreateInviteData: z.ZodObject<{
1533
- body: z.ZodObject<{
1534
- email: z.ZodOptional<z.ZodString>;
1535
- }, z.core.$strip>;
1536
- path: z.ZodOptional<z.ZodNever>;
1537
- query: z.ZodOptional<z.ZodNever>;
1499
+ export declare const zCreateInviteBody: z.ZodObject<{
1500
+ email: z.ZodOptional<z.ZodString>;
1538
1501
  }, z.core.$strip>;
1539
1502
  /**
1540
1503
  * Successfully created. Returns created invite details.
@@ -1546,12 +1509,8 @@ export declare const zCreateInviteResponse: z.ZodObject<{
1546
1509
  email: z.ZodOptional<z.ZodEmail>;
1547
1510
  code: z.ZodOptional<z.ZodString>;
1548
1511
  }, z.core.$strip>;
1549
- export declare const zGetInviteData: z.ZodObject<{
1550
- body: z.ZodOptional<z.ZodNever>;
1551
- path: z.ZodObject<{
1552
- code: z.ZodString;
1553
- }, z.core.$strip>;
1554
- query: z.ZodOptional<z.ZodNever>;
1512
+ export declare const zGetInvitePath: z.ZodObject<{
1513
+ code: z.ZodString;
1555
1514
  }, z.core.$strip>;
1556
1515
  /**
1557
1516
  * Returns a single object containing invite details.
@@ -1563,65 +1522,65 @@ export declare const zGetInviteResponse: z.ZodObject<{
1563
1522
  email: z.ZodOptional<z.ZodEmail>;
1564
1523
  code: z.ZodOptional<z.ZodString>;
1565
1524
  }, z.core.$strip>;
1566
- export declare const zDeleteInviteData: z.ZodObject<{
1567
- body: z.ZodOptional<z.ZodNever>;
1568
- path: z.ZodObject<{
1569
- email: z.ZodString;
1570
- }, z.core.$strip>;
1571
- query: z.ZodOptional<z.ZodNever>;
1572
- }, z.core.$strip>;
1573
- export declare const zListMarketplaceChartsData: z.ZodObject<{
1574
- body: z.ZodOptional<z.ZodNever>;
1575
- path: z.ZodOptional<z.ZodNever>;
1576
- query: z.ZodOptional<z.ZodNever>;
1525
+ export declare const zDeleteInvitePath: z.ZodObject<{
1526
+ email: z.ZodString;
1577
1527
  }, z.core.$strip>;
1578
1528
  /**
1579
1529
  * An array of chart listings in the marketplace.
1580
1530
  */
1581
1531
  export declare const zListMarketplaceChartsResponse: z.ZodArray<z.ZodObject<{
1582
- id: z.ZodString;
1583
1532
  name: z.ZodString;
1584
- developer: z.ZodString;
1585
- description: z.ZodString;
1586
- logoUrl: z.ZodString;
1587
- longDescription: z.ZodString;
1588
- categories: z.ZodArray<z.ZodString>;
1533
+ versions: z.ZodArray<z.ZodString>;
1589
1534
  version_channels: z.ZodArray<z.ZodString>;
1590
- value_schemas: z.ZodArray<z.ZodObject<{
1535
+ latestVersion: z.ZodString;
1536
+ metadata: z.ZodOptional<z.ZodObject<{
1537
+ name: z.ZodString;
1591
1538
  version: z.ZodString;
1592
- schema: z.ZodString;
1593
- placeholder: z.ZodString;
1539
+ description: z.ZodOptional<z.ZodString>;
1540
+ appVersion: z.ZodOptional<z.ZodString>;
1541
+ apiVersion: z.ZodOptional<z.ZodString>;
1542
+ keywords: z.ZodOptional<z.ZodArray<z.ZodString>>;
1543
+ home: z.ZodOptional<z.ZodString>;
1544
+ icon: z.ZodOptional<z.ZodString>;
1545
+ sources: z.ZodOptional<z.ZodArray<z.ZodString>>;
1546
+ maintainers: z.ZodOptional<z.ZodArray<z.ZodObject<{
1547
+ name: z.ZodString;
1548
+ email: z.ZodOptional<z.ZodString>;
1549
+ }, z.core.$strip>>>;
1594
1550
  }, z.core.$strip>>;
1595
1551
  }, z.core.$strip>>;
1596
- export declare const zGetMarketplaceChartData: z.ZodObject<{
1597
- body: z.ZodOptional<z.ZodNever>;
1598
- path: z.ZodObject<{
1599
- listing_id: z.ZodString;
1600
- }, z.core.$strip>;
1601
- query: z.ZodOptional<z.ZodNever>;
1552
+ export declare const zGetMarketplaceChartFilesPath: z.ZodObject<{
1553
+ chart_name: z.ZodString;
1554
+ version_channel: z.ZodString;
1602
1555
  }, z.core.$strip>;
1603
1556
  /**
1604
- * Returns an object containing the chart listing details.
1557
+ * Returns an object containing the chart files for the latest matching version.
1605
1558
  */
1606
- export declare const zGetMarketplaceChartResponse: z.ZodObject<{
1607
- id: z.ZodString;
1608
- name: z.ZodString;
1609
- developer: z.ZodString;
1610
- description: z.ZodString;
1611
- logoUrl: z.ZodString;
1612
- longDescription: z.ZodString;
1613
- categories: z.ZodArray<z.ZodString>;
1614
- version_channels: z.ZodArray<z.ZodString>;
1615
- value_schemas: z.ZodArray<z.ZodObject<{
1616
- version: z.ZodString;
1617
- schema: z.ZodString;
1618
- placeholder: z.ZodString;
1619
- }, z.core.$strip>>;
1559
+ export declare const zGetMarketplaceChartFilesResponse: z.ZodObject<{
1560
+ chartYaml: z.ZodOptional<z.ZodString>;
1561
+ valuesYaml: z.ZodOptional<z.ZodString>;
1562
+ valuesSchemaJson: z.ZodOptional<z.ZodString>;
1620
1563
  }, z.core.$strip>;
1621
- export declare const zGetOrganizationData: z.ZodObject<{
1622
- body: z.ZodOptional<z.ZodNever>;
1623
- path: z.ZodOptional<z.ZodNever>;
1624
- query: z.ZodOptional<z.ZodNever>;
1564
+ /**
1565
+ * JSON-RPC 2.0 request payload
1566
+ */
1567
+ export declare const zPostMcpBody: z.ZodObject<{
1568
+ jsonrpc: z.ZodOptional<z.ZodString>;
1569
+ method: z.ZodOptional<z.ZodString>;
1570
+ id: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>;
1571
+ params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1572
+ }, z.core.$strip>;
1573
+ /**
1574
+ * JSON-RPC 2.0 success or error response
1575
+ */
1576
+ export declare const zPostMcpResponse: z.ZodObject<{
1577
+ jsonrpc: z.ZodOptional<z.ZodString>;
1578
+ id: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>;
1579
+ result: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1580
+ error: z.ZodOptional<z.ZodObject<{
1581
+ code: z.ZodOptional<z.ZodInt>;
1582
+ message: z.ZodOptional<z.ZodString>;
1583
+ }, z.core.$strip>>;
1625
1584
  }, z.core.$strip>;
1626
1585
  /**
1627
1586
  * Returns a single object containing organization details.
@@ -1642,6 +1601,7 @@ export declare const zGetOrganizationResponse: z.ZodObject<{
1642
1601
  id: z.ZodString;
1643
1602
  label: z.ZodString;
1644
1603
  }, z.core.$strip>>;
1604
+ cfcr_storage_gb: z.ZodInt;
1645
1605
  }, z.core.$strip>;
1646
1606
  status: z.ZodEnum<{
1647
1607
  active: "active";
@@ -1649,21 +1609,81 @@ export declare const zGetOrganizationResponse: z.ZodObject<{
1649
1609
  suspended: "suspended";
1650
1610
  }>;
1651
1611
  }, z.core.$strip>;
1652
- export declare const zCreateOrganizationData: z.ZodObject<{
1653
- body: z.ZodObject<{
1654
- email: z.ZodEmail;
1655
- first_name: z.ZodString;
1656
- last_name: z.ZodString;
1657
- company_name: z.ZodString;
1658
- password: z.ZodString;
1659
- }, z.core.$strip>;
1660
- path: z.ZodOptional<z.ZodNever>;
1661
- query: z.ZodOptional<z.ZodNever>;
1612
+ export declare const zCreateOrganizationBody: z.ZodObject<{
1613
+ email: z.ZodEmail;
1614
+ first_name: z.ZodString;
1615
+ last_name: z.ZodString;
1616
+ company_name: z.ZodString;
1617
+ password: z.ZodString;
1662
1618
  }, z.core.$strip>;
1663
- export declare const zListTokensData: z.ZodObject<{
1664
- body: z.ZodOptional<z.ZodNever>;
1665
- path: z.ZodOptional<z.ZodNever>;
1666
- query: z.ZodOptional<z.ZodNever>;
1619
+ /**
1620
+ * List of repositories
1621
+ */
1622
+ export declare const zListRepositoriesResponse: z.ZodArray<z.ZodObject<{
1623
+ name: z.ZodString;
1624
+ region: z.ZodString;
1625
+ uri: z.ZodString;
1626
+ }, z.core.$strip>>;
1627
+ export declare const zListTagsPath: z.ZodObject<{
1628
+ region: z.ZodString;
1629
+ repository: z.ZodString;
1630
+ }, z.core.$strip>;
1631
+ /**
1632
+ * Repository with tags
1633
+ */
1634
+ export declare const zListTagsResponse: z.ZodObject<{
1635
+ name: z.ZodString;
1636
+ region: z.ZodString;
1637
+ uri: z.ZodString;
1638
+ tags: z.ZodArray<z.ZodObject<{
1639
+ name: z.ZodString;
1640
+ size: z.ZodNumber;
1641
+ mediaType: z.ZodOptional<z.ZodString>;
1642
+ platforms: z.ZodOptional<z.ZodArray<z.ZodString>>;
1643
+ }, z.core.$strip>>;
1644
+ totalSize: z.ZodNumber;
1645
+ }, z.core.$strip>;
1646
+ export declare const zDeleteTagPath: z.ZodObject<{
1647
+ region: z.ZodString;
1648
+ repository: z.ZodString;
1649
+ tag: z.ZodString;
1650
+ }, z.core.$strip>;
1651
+ export declare const zGetTagPath: z.ZodObject<{
1652
+ region: z.ZodString;
1653
+ repository: z.ZodString;
1654
+ tag: z.ZodString;
1655
+ }, z.core.$strip>;
1656
+ /**
1657
+ * Tag details
1658
+ */
1659
+ export declare const zGetTagResponse: z.ZodObject<{
1660
+ name: z.ZodString;
1661
+ digest: z.ZodString;
1662
+ mediaType: z.ZodOptional<z.ZodString>;
1663
+ config: z.ZodOptional<z.ZodObject<{
1664
+ size: z.ZodNumber;
1665
+ }, z.core.$strip>>;
1666
+ layers: z.ZodOptional<z.ZodArray<z.ZodObject<{
1667
+ digest: z.ZodOptional<z.ZodString>;
1668
+ size: z.ZodNumber;
1669
+ }, z.core.$strip>>>;
1670
+ manifests: z.ZodOptional<z.ZodArray<z.ZodObject<{
1671
+ digest: z.ZodString;
1672
+ platform: z.ZodOptional<z.ZodObject<{
1673
+ architecture: z.ZodString;
1674
+ os: z.ZodString;
1675
+ variant: z.ZodOptional<z.ZodString>;
1676
+ }, z.core.$strip>>;
1677
+ layers: z.ZodOptional<z.ZodArray<z.ZodObject<{
1678
+ digest: z.ZodOptional<z.ZodString>;
1679
+ size: z.ZodNumber;
1680
+ }, z.core.$strip>>>;
1681
+ size: z.ZodOptional<z.ZodNumber>;
1682
+ }, z.core.$strip>>>;
1683
+ size: z.ZodNumber;
1684
+ region: z.ZodString;
1685
+ repository: z.ZodString;
1686
+ uri: z.ZodString;
1667
1687
  }, z.core.$strip>;
1668
1688
  /**
1669
1689
  * Returns a list of access token details with masked secrets.
@@ -1678,16 +1698,12 @@ export declare const zListTokensResponse: z.ZodArray<z.ZodObject<{
1678
1698
  secret: z.ZodOptional<z.ZodString>;
1679
1699
  date_created: z.ZodISODateTime;
1680
1700
  }, z.core.$strip>>;
1681
- export declare const zCreateTokenData: z.ZodObject<{
1682
- body: z.ZodObject<{
1683
- name: z.ZodString;
1684
- role: z.ZodEnum<{
1685
- Administrator: "Administrator";
1686
- User: "User";
1687
- }>;
1688
- }, z.core.$strip>;
1689
- path: z.ZodOptional<z.ZodNever>;
1690
- query: z.ZodOptional<z.ZodNever>;
1701
+ export declare const zCreateTokenBody: z.ZodObject<{
1702
+ name: z.ZodString;
1703
+ role: z.ZodEnum<{
1704
+ Administrator: "Administrator";
1705
+ User: "User";
1706
+ }>;
1691
1707
  }, z.core.$strip>;
1692
1708
  /**
1693
1709
  * Successfully created. Returns created token details with unmasked/raw secret.
@@ -1702,19 +1718,11 @@ export declare const zCreateTokenResponse: z.ZodObject<{
1702
1718
  secret: z.ZodOptional<z.ZodString>;
1703
1719
  date_created: z.ZodISODateTime;
1704
1720
  }, z.core.$strip>;
1705
- export declare const zDeleteTokenData: z.ZodObject<{
1706
- body: z.ZodOptional<z.ZodNever>;
1707
- path: z.ZodObject<{
1708
- token_id: z.ZodString;
1709
- }, z.core.$strip>;
1710
- query: z.ZodOptional<z.ZodNever>;
1721
+ export declare const zDeleteTokenPath: z.ZodObject<{
1722
+ token_id: z.ZodString;
1711
1723
  }, z.core.$strip>;
1712
- export declare const zGetTokenData: z.ZodObject<{
1713
- body: z.ZodOptional<z.ZodNever>;
1714
- path: z.ZodObject<{
1715
- token_id: z.ZodString;
1716
- }, z.core.$strip>;
1717
- query: z.ZodOptional<z.ZodNever>;
1724
+ export declare const zGetTokenPath: z.ZodObject<{
1725
+ token_id: z.ZodString;
1718
1726
  }, z.core.$strip>;
1719
1727
  /**
1720
1728
  * Returns access token details with masked secret.
@@ -1729,18 +1737,15 @@ export declare const zGetTokenResponse: z.ZodObject<{
1729
1737
  secret: z.ZodOptional<z.ZodString>;
1730
1738
  date_created: z.ZodISODateTime;
1731
1739
  }, z.core.$strip>;
1732
- export declare const zUpdateTokenData: z.ZodObject<{
1733
- body: z.ZodObject<{
1734
- name: z.ZodOptional<z.ZodString>;
1735
- role: z.ZodOptional<z.ZodEnum<{
1736
- Administrator: "Administrator";
1737
- User: "User";
1738
- }>>;
1739
- }, z.core.$strip>;
1740
- path: z.ZodObject<{
1741
- token_id: z.ZodString;
1742
- }, z.core.$strip>;
1743
- query: z.ZodOptional<z.ZodNever>;
1740
+ export declare const zUpdateTokenBody: z.ZodObject<{
1741
+ name: z.ZodOptional<z.ZodString>;
1742
+ role: z.ZodOptional<z.ZodEnum<{
1743
+ Administrator: "Administrator";
1744
+ User: "User";
1745
+ }>>;
1746
+ }, z.core.$strip>;
1747
+ export declare const zUpdateTokenPath: z.ZodObject<{
1748
+ token_id: z.ZodString;
1744
1749
  }, z.core.$strip>;
1745
1750
  /**
1746
1751
  * Successfully updated. Returns updated token details with masked secret.
@@ -1755,12 +1760,8 @@ export declare const zUpdateTokenResponse: z.ZodObject<{
1755
1760
  secret: z.ZodOptional<z.ZodString>;
1756
1761
  date_created: z.ZodISODateTime;
1757
1762
  }, z.core.$strip>;
1758
- export declare const zRegenerateTokenData: z.ZodObject<{
1759
- body: z.ZodOptional<z.ZodNever>;
1760
- path: z.ZodObject<{
1761
- token_id: z.ZodString;
1762
- }, z.core.$strip>;
1763
- query: z.ZodOptional<z.ZodNever>;
1763
+ export declare const zRegenerateTokenPath: z.ZodObject<{
1764
+ token_id: z.ZodString;
1764
1765
  }, z.core.$strip>;
1765
1766
  /**
1766
1767
  * Successfully updated. Returns updated token details with unmasked / raw secret.
@@ -1775,12 +1776,8 @@ export declare const zRegenerateTokenResponse: z.ZodObject<{
1775
1776
  secret: z.ZodOptional<z.ZodString>;
1776
1777
  date_created: z.ZodISODateTime;
1777
1778
  }, z.core.$strip>;
1778
- export declare const zListUserOrganizationsData: z.ZodObject<{
1779
- body: z.ZodOptional<z.ZodNever>;
1780
- path: z.ZodObject<{
1781
- email: z.ZodString;
1782
- }, z.core.$strip>;
1783
- query: z.ZodOptional<z.ZodNever>;
1779
+ export declare const zListUserOrganizationsPath: z.ZodObject<{
1780
+ email: z.ZodString;
1784
1781
  }, z.core.$strip>;
1785
1782
  /**
1786
1783
  * An array of organizations the user belongs to.
@@ -1789,11 +1786,6 @@ export declare const zListUserOrganizationsResponse: z.ZodArray<z.ZodObject<{
1789
1786
  realm: z.ZodOptional<z.ZodString>;
1790
1787
  displayName: z.ZodOptional<z.ZodString>;
1791
1788
  }, z.core.$strip>>;
1792
- export declare const zListUsersData: z.ZodObject<{
1793
- body: z.ZodOptional<z.ZodNever>;
1794
- path: z.ZodOptional<z.ZodNever>;
1795
- query: z.ZodOptional<z.ZodNever>;
1796
- }, z.core.$strip>;
1797
1789
  /**
1798
1790
  * An array of users
1799
1791
  */
@@ -1812,24 +1804,20 @@ export declare const zListUsersResponse: z.ZodArray<z.ZodObject<{
1812
1804
  id: z.ZodUUID;
1813
1805
  date_created: z.ZodISODateTime;
1814
1806
  }, z.core.$strip>>;
1815
- export declare const zCreateUserData: z.ZodObject<{
1816
- body: z.ZodObject<{
1817
- email: z.ZodEmail;
1818
- first_name: z.ZodString;
1819
- last_name: z.ZodString;
1820
- code: z.ZodString;
1821
- password: z.ZodString;
1822
- status: z.ZodOptional<z.ZodEnum<{
1823
- active: "active";
1824
- inactive: "inactive";
1825
- }>>;
1826
- role: z.ZodOptional<z.ZodEnum<{
1827
- Administrator: "Administrator";
1828
- User: "User";
1829
- }>>;
1830
- }, z.core.$strip>;
1831
- path: z.ZodOptional<z.ZodNever>;
1832
- query: z.ZodOptional<z.ZodNever>;
1807
+ export declare const zCreateUserBody: z.ZodObject<{
1808
+ email: z.ZodEmail;
1809
+ first_name: z.ZodString;
1810
+ last_name: z.ZodString;
1811
+ code: z.ZodString;
1812
+ password: z.ZodString;
1813
+ status: z.ZodOptional<z.ZodEnum<{
1814
+ active: "active";
1815
+ inactive: "inactive";
1816
+ }>>;
1817
+ role: z.ZodOptional<z.ZodEnum<{
1818
+ Administrator: "Administrator";
1819
+ User: "User";
1820
+ }>>;
1833
1821
  }, z.core.$strip>;
1834
1822
  /**
1835
1823
  * Successfully created. Returns created user details.
@@ -1849,12 +1837,8 @@ export declare const zCreateUserResponse: z.ZodObject<{
1849
1837
  id: z.ZodUUID;
1850
1838
  date_created: z.ZodISODateTime;
1851
1839
  }, z.core.$strip>;
1852
- export declare const zDeleteUserData: z.ZodObject<{
1853
- body: z.ZodOptional<z.ZodNever>;
1854
- path: z.ZodObject<{
1855
- user_id: z.ZodString;
1856
- }, z.core.$strip>;
1857
- query: z.ZodOptional<z.ZodNever>;
1840
+ export declare const zDeleteUserPath: z.ZodObject<{
1841
+ user_id: z.ZodString;
1858
1842
  }, z.core.$strip>;
1859
1843
  /**
1860
1844
  * User profile information
@@ -1874,12 +1858,8 @@ export declare const zDeleteUserResponse: z.ZodObject<{
1874
1858
  id: z.ZodUUID;
1875
1859
  date_created: z.ZodISODateTime;
1876
1860
  }, z.core.$strip>;
1877
- export declare const zGetUserData: z.ZodObject<{
1878
- body: z.ZodOptional<z.ZodNever>;
1879
- path: z.ZodObject<{
1880
- user_id: z.ZodString;
1881
- }, z.core.$strip>;
1882
- query: z.ZodOptional<z.ZodNever>;
1861
+ export declare const zGetUserPath: z.ZodObject<{
1862
+ user_id: z.ZodString;
1883
1863
  }, z.core.$strip>;
1884
1864
  /**
1885
1865
  * User profile information
@@ -1899,24 +1879,21 @@ export declare const zGetUserResponse: z.ZodObject<{
1899
1879
  id: z.ZodUUID;
1900
1880
  date_created: z.ZodISODateTime;
1901
1881
  }, z.core.$strip>;
1902
- export declare const zUpdateUserData: z.ZodObject<{
1903
- body: z.ZodObject<{
1904
- email: z.ZodOptional<z.ZodEmail>;
1905
- first_name: z.ZodOptional<z.ZodString>;
1906
- last_name: z.ZodOptional<z.ZodString>;
1907
- role: z.ZodOptional<z.ZodEnum<{
1908
- Administrator: "Administrator";
1909
- User: "User";
1910
- }>>;
1911
- status: z.ZodOptional<z.ZodEnum<{
1912
- active: "active";
1913
- inactive: "inactive";
1914
- }>>;
1915
- }, z.core.$strip>;
1916
- path: z.ZodObject<{
1917
- user_id: z.ZodString;
1918
- }, z.core.$strip>;
1919
- query: z.ZodOptional<z.ZodNever>;
1882
+ export declare const zUpdateUserBody: z.ZodObject<{
1883
+ email: z.ZodOptional<z.ZodEmail>;
1884
+ first_name: z.ZodOptional<z.ZodString>;
1885
+ last_name: z.ZodOptional<z.ZodString>;
1886
+ role: z.ZodOptional<z.ZodEnum<{
1887
+ Administrator: "Administrator";
1888
+ User: "User";
1889
+ }>>;
1890
+ status: z.ZodOptional<z.ZodEnum<{
1891
+ active: "active";
1892
+ inactive: "inactive";
1893
+ }>>;
1894
+ }, z.core.$strip>;
1895
+ export declare const zUpdateUserPath: z.ZodObject<{
1896
+ user_id: z.ZodString;
1920
1897
  }, z.core.$strip>;
1921
1898
  /**
1922
1899
  * Successfully created. Returns created user details.