@cloudfleet/sdk 0.0.1-a9ecdcd → 0.0.1-ac77333

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 +1125 -0
  2. package/dist/@tanstack/react-query.gen.d.ts.map +1 -0
  3. package/dist/@tanstack/react-query.gen.js +1129 -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 +1021 -485
  46. package/dist/schemas.gen.d.ts.map +1 -1
  47. package/dist/schemas.gen.js +1629 -574
  48. package/dist/schemas.gen.js.map +1 -1
  49. package/dist/sdk.gen.d.ts +130 -20
  50. package/dist/sdk.gen.d.ts.map +1 -1
  51. package/dist/sdk.gen.js +202 -149
  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 +921 -324
  55. package/dist/types.gen.d.ts.map +1 -1
  56. package/dist/zod.gen.d.ts +1045 -1936
  57. package/dist/zod.gen.d.ts.map +1 -1
  58. package/dist/zod.gen.js +502 -1075
  59. package/dist/zod.gen.js.map +1 -1
  60. package/package.json +29 -6
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>;
@@ -9,8 +9,7 @@ export declare const zBillingContact: z.ZodObject<{
9
9
  country: z.ZodOptional<z.ZodString>;
10
10
  phone: z.ZodOptional<z.ZodString>;
11
11
  email: z.ZodEmail;
12
- first_name: z.ZodString;
13
- last_name: z.ZodString;
12
+ individual_name: z.ZodString;
14
13
  tax_id: z.ZodOptional<z.ZodString>;
15
14
  tax_id_type: z.ZodOptional<z.ZodEnum<{
16
15
  "": "";
@@ -145,16 +144,15 @@ export declare const zBillingContact: z.ZodObject<{
145
144
  }, z.core.$strip>;
146
145
  export declare const zBillingCredits: z.ZodObject<{
147
146
  id: z.ZodOptional<z.ZodString>;
148
- date_created: z.ZodISODateTime;
149
- code: z.ZodString;
150
- description: z.ZodOptional<z.ZodString>;
151
- products: z.ZodOptional<z.ZodArray<z.ZodString>>;
152
147
  type: z.ZodEnum<{
153
148
  credit: "credit";
154
149
  discount: "discount";
155
150
  }>;
156
- value: z.ZodNumber;
157
- billing_period: z.ZodISODateTime;
151
+ date_start: z.ZodISODateTime;
152
+ date_end: z.ZodOptional<z.ZodISODateTime>;
153
+ code: z.ZodString;
154
+ description: z.ZodOptional<z.ZodString>;
155
+ value_total: z.ZodNumber;
158
156
  value_remaining: z.ZodOptional<z.ZodNumber>;
159
157
  }, z.core.$strip>;
160
158
  export declare const zChartCreateInput: z.ZodObject<{
@@ -201,17 +199,23 @@ export declare const zClusterCreateInput: z.ZodObject<{
201
199
  basic: "basic";
202
200
  pro: "pro";
203
201
  }>;
204
- region: z.ZodOptional<z.ZodEnum<{
205
- staging: "staging";
202
+ region: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
203
+ "staging-1a": "staging-1a";
206
204
  "northamerica-central-1": "northamerica-central-1";
207
205
  "europe-central-1a": "europe-central-1a";
208
206
  "northamerica-central-1a": "northamerica-central-1a";
209
- }>>;
210
- 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
+ }>>>;
211
214
  }, z.core.$strip>;
212
215
  export declare const zClusterJoinInformation: z.ZodObject<{
213
216
  certificate_authority: z.ZodString;
214
217
  endpoint: z.ZodURL;
218
+ cluster_dns: z.ZodString;
215
219
  auth_key: z.ZodString;
216
220
  bootstrap_token: z.ZodString;
217
221
  versions: z.ZodObject<{
@@ -232,18 +236,18 @@ export declare const zCluster: z.ZodObject<{
232
236
  basic: "basic";
233
237
  pro: "pro";
234
238
  }>;
235
- region: z.ZodOptional<z.ZodEnum<{
236
- staging: "staging";
239
+ region: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
240
+ "staging-1a": "staging-1a";
237
241
  "northamerica-central-1": "northamerica-central-1";
238
242
  "europe-central-1a": "europe-central-1a";
239
243
  "northamerica-central-1a": "northamerica-central-1a";
240
- }>>;
241
- version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
244
+ }>>>;
242
245
  id: z.ZodUUID;
243
246
  status: z.ZodEnum<{
244
247
  deleted: "deleted";
245
248
  failed: "failed";
246
249
  active: "active";
250
+ disabled: "disabled";
247
251
  creating: "creating";
248
252
  deployed: "deployed";
249
253
  updating: "updating";
@@ -251,11 +255,15 @@ export declare const zCluster: z.ZodObject<{
251
255
  endpoint: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
252
256
  "": "";
253
257
  }>]>>;
258
+ endpoint_public: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
259
+ "": "";
260
+ }>]>>;
254
261
  certificate_ca: z.ZodOptional<z.ZodString>;
255
262
  version_current: z.ZodOptional<z.ZodString>;
256
263
  created_at: z.ZodOptional<z.ZodString>;
257
264
  updated_at: z.ZodOptional<z.ZodString>;
258
265
  ready: z.ZodOptional<z.ZodBoolean>;
266
+ version_channel: z.ZodOptional<z.ZodString>;
259
267
  }, z.core.$strip>;
260
268
  export declare const zClusterUpdateInput: z.ZodObject<{
261
269
  name: z.ZodOptional<z.ZodString>;
@@ -326,602 +334,40 @@ export declare const zInvite: z.ZodObject<{
326
334
  code: z.ZodOptional<z.ZodString>;
327
335
  }, z.core.$strip>;
328
336
  export declare const zInvoice: z.ZodObject<{
329
- id: z.ZodOptional<z.ZodUUID>;
330
- organizationId: z.ZodOptional<z.ZodUUID>;
331
- status: z.ZodOptional<z.ZodEnum<{
332
- DRAFT: "DRAFT";
333
- COMMITTED: "COMMITTED";
334
- VOID: "VOID";
335
- }>>;
336
- amount: z.ZodOptional<z.ZodNumber>;
337
- currency: z.ZodOptional<z.ZodEnum<{
338
- AED: "AED";
339
- AFN: "AFN";
340
- ALL: "ALL";
341
- AMD: "AMD";
342
- ANG: "ANG";
343
- AOA: "AOA";
344
- ARS: "ARS";
345
- AUD: "AUD";
346
- AWG: "AWG";
347
- AZN: "AZN";
348
- BAM: "BAM";
349
- BBD: "BBD";
350
- BDT: "BDT";
351
- BGN: "BGN";
352
- BHD: "BHD";
353
- BIF: "BIF";
354
- BMD: "BMD";
355
- BND: "BND";
356
- BOB: "BOB";
357
- BRL: "BRL";
358
- BSD: "BSD";
359
- BTN: "BTN";
360
- BWP: "BWP";
361
- BYR: "BYR";
362
- BZD: "BZD";
363
- CAD: "CAD";
364
- CDF: "CDF";
365
- CHF: "CHF";
366
- CLP: "CLP";
367
- CNY: "CNY";
368
- COP: "COP";
369
- CRC: "CRC";
370
- CUC: "CUC";
371
- CUP: "CUP";
372
- CVE: "CVE";
373
- CZK: "CZK";
374
- DJF: "DJF";
375
- DKK: "DKK";
376
- DOP: "DOP";
377
- DZD: "DZD";
378
- EGP: "EGP";
379
- ERN: "ERN";
380
- ETB: "ETB";
381
- EUR: "EUR";
382
- FJD: "FJD";
383
- FKP: "FKP";
384
- GBP: "GBP";
385
- GEL: "GEL";
386
- GGP: "GGP";
387
- GHS: "GHS";
388
- GIP: "GIP";
389
- GMD: "GMD";
390
- GNF: "GNF";
391
- GTQ: "GTQ";
392
- GYD: "GYD";
393
- HKD: "HKD";
394
- HNL: "HNL";
395
- HRK: "HRK";
396
- HTG: "HTG";
397
- HUF: "HUF";
398
- IDR: "IDR";
399
- ILS: "ILS";
400
- IMP: "IMP";
401
- INR: "INR";
402
- IQD: "IQD";
403
- IRR: "IRR";
404
- ISK: "ISK";
405
- JEP: "JEP";
406
- JMD: "JMD";
407
- JOD: "JOD";
408
- JPY: "JPY";
409
- KES: "KES";
410
- KGS: "KGS";
411
- KHR: "KHR";
412
- KMF: "KMF";
413
- KPW: "KPW";
414
- KRW: "KRW";
415
- KWD: "KWD";
416
- KYD: "KYD";
417
- KZT: "KZT";
418
- LAK: "LAK";
419
- LBP: "LBP";
420
- LKR: "LKR";
421
- LRD: "LRD";
422
- LSL: "LSL";
423
- LTL: "LTL";
424
- LVL: "LVL";
425
- LYD: "LYD";
426
- MAD: "MAD";
427
- MDL: "MDL";
428
- MGA: "MGA";
429
- MKD: "MKD";
430
- MMK: "MMK";
431
- MNT: "MNT";
432
- MOP: "MOP";
433
- MRO: "MRO";
434
- MUR: "MUR";
435
- MVR: "MVR";
436
- MWK: "MWK";
437
- MXN: "MXN";
438
- MYR: "MYR";
439
- MZN: "MZN";
440
- NAD: "NAD";
441
- NGN: "NGN";
442
- NIO: "NIO";
443
- NOK: "NOK";
444
- NPR: "NPR";
445
- NZD: "NZD";
446
- OMR: "OMR";
447
- PAB: "PAB";
448
- PEN: "PEN";
449
- PGK: "PGK";
450
- PHP: "PHP";
451
- PKR: "PKR";
452
- PLN: "PLN";
453
- PYG: "PYG";
454
- QAR: "QAR";
455
- RON: "RON";
456
- RSD: "RSD";
457
- RUB: "RUB";
458
- RWF: "RWF";
459
- SAR: "SAR";
460
- SBD: "SBD";
461
- SCR: "SCR";
462
- SDG: "SDG";
463
- SEK: "SEK";
464
- SGD: "SGD";
465
- SHP: "SHP";
466
- SLL: "SLL";
467
- SOS: "SOS";
468
- SPL: "SPL";
469
- SRD: "SRD";
470
- STD: "STD";
471
- SVC: "SVC";
472
- SYP: "SYP";
473
- SZL: "SZL";
474
- THB: "THB";
475
- TJS: "TJS";
476
- TMT: "TMT";
477
- TND: "TND";
478
- TOP: "TOP";
479
- TRY: "TRY";
480
- TTD: "TTD";
481
- TVD: "TVD";
482
- TWD: "TWD";
483
- TZS: "TZS";
484
- UAH: "UAH";
485
- UGX: "UGX";
486
- USD: "USD";
487
- UYU: "UYU";
488
- UZS: "UZS";
489
- VEF: "VEF";
490
- VND: "VND";
491
- VUV: "VUV";
492
- WST: "WST";
493
- XAF: "XAF";
494
- XCD: "XCD";
495
- XDR: "XDR";
496
- XOF: "XOF";
497
- XPF: "XPF";
498
- YER: "YER";
499
- ZAR: "ZAR";
500
- ZMW: "ZMW";
501
- ZWD: "ZWD";
502
- BTC: "BTC";
503
- }>>;
504
- creditAdj: z.ZodOptional<z.ZodNumber>;
505
- refundAdj: z.ZodOptional<z.ZodNumber>;
506
- invoiceDate: z.ZodOptional<z.ZodString>;
507
- targetDate: z.ZodOptional<z.ZodString>;
508
- invoiceNumber: z.ZodOptional<z.ZodString>;
509
- balance: z.ZodOptional<z.ZodNumber>;
510
- bundleKeys: z.ZodOptional<z.ZodString>;
511
- credits: z.ZodOptional<z.ZodArray<z.ZodObject<{
512
- id: z.ZodOptional<z.ZodUUID>;
513
- linkedInvoiceItemId: z.ZodOptional<z.ZodUUID>;
514
- productName: z.ZodOptional<z.ZodString>;
515
- planName: z.ZodOptional<z.ZodString>;
516
- phaseName: z.ZodOptional<z.ZodString>;
517
- usageName: z.ZodOptional<z.ZodString>;
518
- prettyProductName: z.ZodOptional<z.ZodString>;
519
- prettyPlanName: z.ZodOptional<z.ZodString>;
520
- prettyPhaseName: z.ZodOptional<z.ZodString>;
521
- prettyUsageName: z.ZodOptional<z.ZodString>;
522
- itemType: z.ZodOptional<z.ZodEnum<{
523
- EXTERNAL_CHARGE: "EXTERNAL_CHARGE";
524
- FIXED: "FIXED";
525
- RECURRING: "RECURRING";
526
- REPAIR_ADJ: "REPAIR_ADJ";
527
- CBA_ADJ: "CBA_ADJ";
528
- CREDIT_ADJ: "CREDIT_ADJ";
529
- ITEM_ADJ: "ITEM_ADJ";
530
- USAGE: "USAGE";
531
- TAX: "TAX";
532
- PARENT_SUMMARY: "PARENT_SUMMARY";
533
- }>>;
534
- description: z.ZodOptional<z.ZodString>;
535
- startDate: z.ZodOptional<z.ZodString>;
536
- endDate: z.ZodOptional<z.ZodString>;
537
- amount: z.ZodOptional<z.ZodNumber>;
538
- rate: z.ZodOptional<z.ZodNumber>;
539
- currency: z.ZodOptional<z.ZodEnum<{
540
- AED: "AED";
541
- AFN: "AFN";
542
- ALL: "ALL";
543
- AMD: "AMD";
544
- ANG: "ANG";
545
- AOA: "AOA";
546
- ARS: "ARS";
547
- AUD: "AUD";
548
- AWG: "AWG";
549
- AZN: "AZN";
550
- BAM: "BAM";
551
- BBD: "BBD";
552
- BDT: "BDT";
553
- BGN: "BGN";
554
- BHD: "BHD";
555
- BIF: "BIF";
556
- BMD: "BMD";
557
- BND: "BND";
558
- BOB: "BOB";
559
- BRL: "BRL";
560
- BSD: "BSD";
561
- BTN: "BTN";
562
- BWP: "BWP";
563
- BYR: "BYR";
564
- BZD: "BZD";
565
- CAD: "CAD";
566
- CDF: "CDF";
567
- CHF: "CHF";
568
- CLP: "CLP";
569
- CNY: "CNY";
570
- COP: "COP";
571
- CRC: "CRC";
572
- CUC: "CUC";
573
- CUP: "CUP";
574
- CVE: "CVE";
575
- CZK: "CZK";
576
- DJF: "DJF";
577
- DKK: "DKK";
578
- DOP: "DOP";
579
- DZD: "DZD";
580
- EGP: "EGP";
581
- ERN: "ERN";
582
- ETB: "ETB";
583
- EUR: "EUR";
584
- FJD: "FJD";
585
- FKP: "FKP";
586
- GBP: "GBP";
587
- GEL: "GEL";
588
- GGP: "GGP";
589
- GHS: "GHS";
590
- GIP: "GIP";
591
- GMD: "GMD";
592
- GNF: "GNF";
593
- GTQ: "GTQ";
594
- GYD: "GYD";
595
- HKD: "HKD";
596
- HNL: "HNL";
597
- HRK: "HRK";
598
- HTG: "HTG";
599
- HUF: "HUF";
600
- IDR: "IDR";
601
- ILS: "ILS";
602
- IMP: "IMP";
603
- INR: "INR";
604
- IQD: "IQD";
605
- IRR: "IRR";
606
- ISK: "ISK";
607
- JEP: "JEP";
608
- JMD: "JMD";
609
- JOD: "JOD";
610
- JPY: "JPY";
611
- KES: "KES";
612
- KGS: "KGS";
613
- KHR: "KHR";
614
- KMF: "KMF";
615
- KPW: "KPW";
616
- KRW: "KRW";
617
- KWD: "KWD";
618
- KYD: "KYD";
619
- KZT: "KZT";
620
- LAK: "LAK";
621
- LBP: "LBP";
622
- LKR: "LKR";
623
- LRD: "LRD";
624
- LSL: "LSL";
625
- LTL: "LTL";
626
- LVL: "LVL";
627
- LYD: "LYD";
628
- MAD: "MAD";
629
- MDL: "MDL";
630
- MGA: "MGA";
631
- MKD: "MKD";
632
- MMK: "MMK";
633
- MNT: "MNT";
634
- MOP: "MOP";
635
- MRO: "MRO";
636
- MUR: "MUR";
637
- MVR: "MVR";
638
- MWK: "MWK";
639
- MXN: "MXN";
640
- MYR: "MYR";
641
- MZN: "MZN";
642
- NAD: "NAD";
643
- NGN: "NGN";
644
- NIO: "NIO";
645
- NOK: "NOK";
646
- NPR: "NPR";
647
- NZD: "NZD";
648
- OMR: "OMR";
649
- PAB: "PAB";
650
- PEN: "PEN";
651
- PGK: "PGK";
652
- PHP: "PHP";
653
- PKR: "PKR";
654
- PLN: "PLN";
655
- PYG: "PYG";
656
- QAR: "QAR";
657
- RON: "RON";
658
- RSD: "RSD";
659
- RUB: "RUB";
660
- RWF: "RWF";
661
- SAR: "SAR";
662
- SBD: "SBD";
663
- SCR: "SCR";
664
- SDG: "SDG";
665
- SEK: "SEK";
666
- SGD: "SGD";
667
- SHP: "SHP";
668
- SLL: "SLL";
669
- SOS: "SOS";
670
- SPL: "SPL";
671
- SRD: "SRD";
672
- STD: "STD";
673
- SVC: "SVC";
674
- SYP: "SYP";
675
- SZL: "SZL";
676
- THB: "THB";
677
- TJS: "TJS";
678
- TMT: "TMT";
679
- TND: "TND";
680
- TOP: "TOP";
681
- TRY: "TRY";
682
- TTD: "TTD";
683
- TVD: "TVD";
684
- TWD: "TWD";
685
- TZS: "TZS";
686
- UAH: "UAH";
687
- UGX: "UGX";
688
- USD: "USD";
689
- UYU: "UYU";
690
- UZS: "UZS";
691
- VEF: "VEF";
692
- VND: "VND";
693
- VUV: "VUV";
694
- WST: "WST";
695
- XAF: "XAF";
696
- XCD: "XCD";
697
- XDR: "XDR";
698
- XOF: "XOF";
699
- XPF: "XPF";
700
- YER: "YER";
701
- ZAR: "ZAR";
702
- ZMW: "ZMW";
703
- ZWD: "ZWD";
704
- BTC: "BTC";
705
- }>>;
706
- quantity: z.ZodOptional<z.ZodNumber>;
707
- itemDetails: z.ZodOptional<z.ZodString>;
708
- catalogEffectiveDate: z.ZodOptional<z.ZodString>;
709
- childItems: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodArray<z.ZodUnknown>, z.ZodBoolean, z.ZodNumber, z.ZodRecord<z.ZodString, z.ZodUnknown>, z.ZodString]>>>;
710
- }, z.core.$strip>>>;
711
- items: z.ZodOptional<z.ZodArray<z.ZodObject<{
712
- id: z.ZodOptional<z.ZodUUID>;
713
- linkedInvoiceItemId: z.ZodOptional<z.ZodUUID>;
714
- productName: z.ZodOptional<z.ZodString>;
715
- planName: z.ZodOptional<z.ZodString>;
716
- phaseName: z.ZodOptional<z.ZodString>;
717
- usageName: z.ZodOptional<z.ZodString>;
718
- prettyProductName: z.ZodOptional<z.ZodString>;
719
- prettyPlanName: z.ZodOptional<z.ZodString>;
720
- prettyPhaseName: z.ZodOptional<z.ZodString>;
721
- prettyUsageName: z.ZodOptional<z.ZodString>;
722
- itemType: z.ZodOptional<z.ZodEnum<{
723
- EXTERNAL_CHARGE: "EXTERNAL_CHARGE";
724
- FIXED: "FIXED";
725
- RECURRING: "RECURRING";
726
- REPAIR_ADJ: "REPAIR_ADJ";
727
- CBA_ADJ: "CBA_ADJ";
728
- CREDIT_ADJ: "CREDIT_ADJ";
729
- ITEM_ADJ: "ITEM_ADJ";
730
- USAGE: "USAGE";
731
- TAX: "TAX";
732
- PARENT_SUMMARY: "PARENT_SUMMARY";
733
- }>>;
734
- description: z.ZodOptional<z.ZodString>;
735
- startDate: z.ZodOptional<z.ZodString>;
736
- endDate: z.ZodOptional<z.ZodString>;
737
- amount: z.ZodOptional<z.ZodNumber>;
738
- rate: z.ZodOptional<z.ZodNumber>;
739
- currency: z.ZodOptional<z.ZodEnum<{
740
- AED: "AED";
741
- AFN: "AFN";
742
- ALL: "ALL";
743
- AMD: "AMD";
744
- ANG: "ANG";
745
- AOA: "AOA";
746
- ARS: "ARS";
747
- AUD: "AUD";
748
- AWG: "AWG";
749
- AZN: "AZN";
750
- BAM: "BAM";
751
- BBD: "BBD";
752
- BDT: "BDT";
753
- BGN: "BGN";
754
- BHD: "BHD";
755
- BIF: "BIF";
756
- BMD: "BMD";
757
- BND: "BND";
758
- BOB: "BOB";
759
- BRL: "BRL";
760
- BSD: "BSD";
761
- BTN: "BTN";
762
- BWP: "BWP";
763
- BYR: "BYR";
764
- BZD: "BZD";
765
- CAD: "CAD";
766
- CDF: "CDF";
767
- CHF: "CHF";
768
- CLP: "CLP";
769
- CNY: "CNY";
770
- COP: "COP";
771
- CRC: "CRC";
772
- CUC: "CUC";
773
- CUP: "CUP";
774
- CVE: "CVE";
775
- CZK: "CZK";
776
- DJF: "DJF";
777
- DKK: "DKK";
778
- DOP: "DOP";
779
- DZD: "DZD";
780
- EGP: "EGP";
781
- ERN: "ERN";
782
- ETB: "ETB";
783
- EUR: "EUR";
784
- FJD: "FJD";
785
- FKP: "FKP";
786
- GBP: "GBP";
787
- GEL: "GEL";
788
- GGP: "GGP";
789
- GHS: "GHS";
790
- GIP: "GIP";
791
- GMD: "GMD";
792
- GNF: "GNF";
793
- GTQ: "GTQ";
794
- GYD: "GYD";
795
- HKD: "HKD";
796
- HNL: "HNL";
797
- HRK: "HRK";
798
- HTG: "HTG";
799
- HUF: "HUF";
800
- IDR: "IDR";
801
- ILS: "ILS";
802
- IMP: "IMP";
803
- INR: "INR";
804
- IQD: "IQD";
805
- IRR: "IRR";
806
- ISK: "ISK";
807
- JEP: "JEP";
808
- JMD: "JMD";
809
- JOD: "JOD";
810
- JPY: "JPY";
811
- KES: "KES";
812
- KGS: "KGS";
813
- KHR: "KHR";
814
- KMF: "KMF";
815
- KPW: "KPW";
816
- KRW: "KRW";
817
- KWD: "KWD";
818
- KYD: "KYD";
819
- KZT: "KZT";
820
- LAK: "LAK";
821
- LBP: "LBP";
822
- LKR: "LKR";
823
- LRD: "LRD";
824
- LSL: "LSL";
825
- LTL: "LTL";
826
- LVL: "LVL";
827
- LYD: "LYD";
828
- MAD: "MAD";
829
- MDL: "MDL";
830
- MGA: "MGA";
831
- MKD: "MKD";
832
- MMK: "MMK";
833
- MNT: "MNT";
834
- MOP: "MOP";
835
- MRO: "MRO";
836
- MUR: "MUR";
837
- MVR: "MVR";
838
- MWK: "MWK";
839
- MXN: "MXN";
840
- MYR: "MYR";
841
- MZN: "MZN";
842
- NAD: "NAD";
843
- NGN: "NGN";
844
- NIO: "NIO";
845
- NOK: "NOK";
846
- NPR: "NPR";
847
- NZD: "NZD";
848
- OMR: "OMR";
849
- PAB: "PAB";
850
- PEN: "PEN";
851
- PGK: "PGK";
852
- PHP: "PHP";
853
- PKR: "PKR";
854
- PLN: "PLN";
855
- PYG: "PYG";
856
- QAR: "QAR";
857
- RON: "RON";
858
- RSD: "RSD";
859
- RUB: "RUB";
860
- RWF: "RWF";
861
- SAR: "SAR";
862
- SBD: "SBD";
863
- SCR: "SCR";
864
- SDG: "SDG";
865
- SEK: "SEK";
866
- SGD: "SGD";
867
- SHP: "SHP";
868
- SLL: "SLL";
869
- SOS: "SOS";
870
- SPL: "SPL";
871
- SRD: "SRD";
872
- STD: "STD";
873
- SVC: "SVC";
874
- SYP: "SYP";
875
- SZL: "SZL";
876
- THB: "THB";
877
- TJS: "TJS";
878
- TMT: "TMT";
879
- TND: "TND";
880
- TOP: "TOP";
881
- TRY: "TRY";
882
- TTD: "TTD";
883
- TVD: "TVD";
884
- TWD: "TWD";
885
- TZS: "TZS";
886
- UAH: "UAH";
887
- UGX: "UGX";
888
- USD: "USD";
889
- UYU: "UYU";
890
- UZS: "UZS";
891
- VEF: "VEF";
892
- VND: "VND";
893
- VUV: "VUV";
894
- WST: "WST";
895
- XAF: "XAF";
896
- XCD: "XCD";
897
- XDR: "XDR";
898
- XOF: "XOF";
899
- XPF: "XPF";
900
- YER: "YER";
901
- ZAR: "ZAR";
902
- ZMW: "ZMW";
903
- ZWD: "ZWD";
904
- BTC: "BTC";
905
- }>>;
906
- quantity: z.ZodOptional<z.ZodNumber>;
907
- itemDetails: z.ZodOptional<z.ZodString>;
908
- catalogEffectiveDate: z.ZodOptional<z.ZodString>;
909
- childItems: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodArray<z.ZodUnknown>, z.ZodBoolean, z.ZodNumber, z.ZodRecord<z.ZodString, z.ZodUnknown>, z.ZodString]>>>;
910
- }, z.core.$strip>>>;
337
+ id: z.ZodOptional<z.ZodString>;
338
+ number: z.ZodOptional<z.ZodString>;
339
+ status: z.ZodOptional<z.ZodString>;
340
+ total: z.ZodOptional<z.ZodNumber>;
341
+ currency: z.ZodOptional<z.ZodString>;
342
+ created: z.ZodISODateTime;
343
+ period_start: z.ZodISODateTime;
344
+ period_end: z.ZodISODateTime;
345
+ invoice_pdf: z.ZodOptional<z.ZodString>;
346
+ }, z.core.$strip>;
347
+ export declare const zMarketplaceListingFiles: z.ZodObject<{
348
+ chartYaml: z.ZodOptional<z.ZodString>;
349
+ valuesYaml: z.ZodOptional<z.ZodString>;
350
+ valuesSchemaJson: z.ZodOptional<z.ZodString>;
911
351
  }, z.core.$strip>;
912
352
  export declare const zMarketplaceListing: z.ZodObject<{
913
- id: z.ZodString;
914
353
  name: z.ZodString;
915
- developer: z.ZodString;
916
- description: z.ZodString;
917
- logoUrl: z.ZodString;
918
- longDescription: z.ZodString;
919
- categories: z.ZodArray<z.ZodString>;
354
+ versions: z.ZodArray<z.ZodString>;
920
355
  version_channels: z.ZodArray<z.ZodString>;
921
- value_schemas: z.ZodArray<z.ZodObject<{
356
+ latestVersion: z.ZodString;
357
+ metadata: z.ZodOptional<z.ZodObject<{
358
+ name: z.ZodString;
922
359
  version: z.ZodString;
923
- schema: z.ZodString;
924
- placeholder: z.ZodString;
360
+ description: z.ZodOptional<z.ZodString>;
361
+ appVersion: z.ZodOptional<z.ZodString>;
362
+ apiVersion: z.ZodOptional<z.ZodString>;
363
+ keywords: z.ZodOptional<z.ZodArray<z.ZodString>>;
364
+ home: z.ZodOptional<z.ZodString>;
365
+ icon: z.ZodOptional<z.ZodString>;
366
+ sources: z.ZodOptional<z.ZodArray<z.ZodString>>;
367
+ maintainers: z.ZodOptional<z.ZodArray<z.ZodObject<{
368
+ name: z.ZodString;
369
+ email: z.ZodOptional<z.ZodString>;
370
+ }, z.core.$strip>>>;
925
371
  }, z.core.$strip>>;
926
372
  }, z.core.$strip>;
927
373
  export declare const zOrganizationCreateInput: z.ZodObject<{
@@ -947,6 +393,7 @@ export declare const zOrganization: z.ZodObject<{
947
393
  id: z.ZodString;
948
394
  label: z.ZodString;
949
395
  }, z.core.$strip>>;
396
+ cfcr_storage_gb: z.ZodInt;
950
397
  }, z.core.$strip>;
951
398
  status: z.ZodEnum<{
952
399
  active: "active";
@@ -975,6 +422,171 @@ export declare const zPaymentMethod: z.ZodObject<{
975
422
  visa: "visa";
976
423
  }>;
977
424
  }, z.core.$strip>;
425
+ export declare const zPlatformQuota: z.ZodObject<{
426
+ basic_clusters_max: z.ZodInt;
427
+ basic_clusters_available: z.ZodInt;
428
+ pro_clusters_max: z.ZodInt;
429
+ pro_clusters_available: z.ZodInt;
430
+ fleets_max: z.ZodInt;
431
+ cluster_tiers: z.ZodArray<z.ZodString>;
432
+ regions: z.ZodArray<z.ZodString>;
433
+ versions: z.ZodArray<z.ZodObject<{
434
+ id: z.ZodString;
435
+ label: z.ZodString;
436
+ }, z.core.$strip>>;
437
+ cfcr_storage_gb: z.ZodInt;
438
+ }, z.core.$strip>;
439
+ export declare const zRegistryRepository: z.ZodObject<{
440
+ name: z.ZodString;
441
+ region: z.ZodString;
442
+ uri: z.ZodString;
443
+ }, z.core.$strip>;
444
+ export declare const zRegistryRepositoryWithTags: z.ZodObject<{
445
+ name: z.ZodString;
446
+ region: z.ZodString;
447
+ uri: z.ZodString;
448
+ tags: z.ZodArray<z.ZodObject<{
449
+ name: z.ZodString;
450
+ size: z.ZodNumber;
451
+ mediaType: z.ZodOptional<z.ZodString>;
452
+ platforms: z.ZodOptional<z.ZodArray<z.ZodString>>;
453
+ }, z.core.$strip>>;
454
+ totalSize: z.ZodNumber;
455
+ }, z.core.$strip>;
456
+ export declare const zRegistryTag: z.ZodObject<{
457
+ name: z.ZodString;
458
+ digest: z.ZodString;
459
+ mediaType: z.ZodOptional<z.ZodString>;
460
+ config: z.ZodOptional<z.ZodObject<{
461
+ size: z.ZodNumber;
462
+ }, z.core.$strip>>;
463
+ layers: z.ZodOptional<z.ZodArray<z.ZodObject<{
464
+ digest: z.ZodOptional<z.ZodString>;
465
+ size: z.ZodNumber;
466
+ }, z.core.$strip>>>;
467
+ manifests: z.ZodOptional<z.ZodArray<z.ZodObject<{
468
+ digest: z.ZodString;
469
+ platform: z.ZodOptional<z.ZodObject<{
470
+ architecture: z.ZodString;
471
+ os: z.ZodString;
472
+ variant: z.ZodOptional<z.ZodString>;
473
+ }, z.core.$strip>>;
474
+ layers: z.ZodOptional<z.ZodArray<z.ZodObject<{
475
+ digest: z.ZodOptional<z.ZodString>;
476
+ size: z.ZodNumber;
477
+ }, z.core.$strip>>>;
478
+ size: z.ZodOptional<z.ZodNumber>;
479
+ }, z.core.$strip>>>;
480
+ size: z.ZodNumber;
481
+ region: z.ZodString;
482
+ repository: z.ZodString;
483
+ uri: z.ZodString;
484
+ }, z.core.$strip>;
485
+ export declare const zTicketAttachment: z.ZodObject<{
486
+ id: z.ZodString;
487
+ filename: z.ZodString;
488
+ content_type: z.ZodString;
489
+ size: z.ZodInt;
490
+ }, z.core.$strip>;
491
+ export declare const zTicketCreateInput: z.ZodObject<{
492
+ category: z.ZodEnum<{
493
+ billing: "billing";
494
+ technical: "technical";
495
+ general: "general";
496
+ }>;
497
+ body: z.ZodString;
498
+ properties: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
499
+ }, z.core.$strip>;
500
+ export declare const zTicketListResponse: z.ZodObject<{
501
+ items: z.ZodArray<z.ZodObject<{
502
+ id: z.ZodString;
503
+ status: z.ZodEnum<{
504
+ closed: "closed";
505
+ waiting_on_us: "waiting_on_us";
506
+ waiting_on_user: "waiting_on_user";
507
+ }>;
508
+ category: z.ZodEnum<{
509
+ billing: "billing";
510
+ technical: "technical";
511
+ general: "general";
512
+ }>;
513
+ summary: z.ZodString;
514
+ closed_at: z.ZodOptional<z.ZodISODateTime>;
515
+ date_created: z.ZodISODateTime;
516
+ date_updated: z.ZodISODateTime;
517
+ messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
518
+ id: z.ZodString;
519
+ type: z.ZodEnum<{
520
+ customer_reply: "customer_reply";
521
+ agent_reply: "agent_reply";
522
+ }>;
523
+ body: z.ZodString;
524
+ author_first_name: z.ZodOptional<z.ZodString>;
525
+ author_last_name: z.ZodOptional<z.ZodString>;
526
+ attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
527
+ id: z.ZodString;
528
+ filename: z.ZodString;
529
+ content_type: z.ZodString;
530
+ size: z.ZodInt;
531
+ }, z.core.$strip>>>;
532
+ date_created: z.ZodISODateTime;
533
+ }, z.core.$strip>>>;
534
+ }, z.core.$strip>>;
535
+ }, z.core.$strip>;
536
+ export declare const zTicketMessageInput: z.ZodObject<{
537
+ body: z.ZodString;
538
+ }, z.core.$strip>;
539
+ export declare const zTicketMessage: z.ZodObject<{
540
+ id: z.ZodString;
541
+ type: z.ZodEnum<{
542
+ customer_reply: "customer_reply";
543
+ agent_reply: "agent_reply";
544
+ }>;
545
+ body: z.ZodString;
546
+ author_first_name: z.ZodOptional<z.ZodString>;
547
+ author_last_name: z.ZodOptional<z.ZodString>;
548
+ attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
549
+ id: z.ZodString;
550
+ filename: z.ZodString;
551
+ content_type: z.ZodString;
552
+ size: z.ZodInt;
553
+ }, z.core.$strip>>>;
554
+ date_created: z.ZodISODateTime;
555
+ }, z.core.$strip>;
556
+ export declare const zTicket: z.ZodObject<{
557
+ id: z.ZodString;
558
+ status: z.ZodEnum<{
559
+ closed: "closed";
560
+ waiting_on_us: "waiting_on_us";
561
+ waiting_on_user: "waiting_on_user";
562
+ }>;
563
+ category: z.ZodEnum<{
564
+ billing: "billing";
565
+ technical: "technical";
566
+ general: "general";
567
+ }>;
568
+ summary: z.ZodString;
569
+ closed_at: z.ZodOptional<z.ZodISODateTime>;
570
+ date_created: z.ZodISODateTime;
571
+ date_updated: z.ZodISODateTime;
572
+ messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
573
+ id: z.ZodString;
574
+ type: z.ZodEnum<{
575
+ customer_reply: "customer_reply";
576
+ agent_reply: "agent_reply";
577
+ }>;
578
+ body: z.ZodString;
579
+ author_first_name: z.ZodOptional<z.ZodString>;
580
+ author_last_name: z.ZodOptional<z.ZodString>;
581
+ attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
582
+ id: z.ZodString;
583
+ filename: z.ZodString;
584
+ content_type: z.ZodString;
585
+ size: z.ZodInt;
586
+ }, z.core.$strip>>>;
587
+ date_created: z.ZodISODateTime;
588
+ }, z.core.$strip>>>;
589
+ }, z.core.$strip>;
978
590
  export declare const zTokenCreateInput: z.ZodObject<{
979
591
  name: z.ZodString;
980
592
  role: z.ZodEnum<{
@@ -999,37 +611,31 @@ export declare const zTokenUpdateInput: z.ZodObject<{
999
611
  User: "User";
1000
612
  }>>;
1001
613
  }, z.core.$strip>;
614
+ export declare const zUsageFacets: z.ZodObject<{
615
+ cluster_id: z.ZodOptional<z.ZodArray<z.ZodString>>;
616
+ product: z.ZodOptional<z.ZodArray<z.ZodString>>;
617
+ }, z.core.$strip>;
618
+ export declare const zUsageResponse: z.ZodObject<{
619
+ data: z.ZodArray<z.ZodObject<{
620
+ hour: z.ZodString;
621
+ cluster_id: z.ZodString;
622
+ product: z.ZodString;
623
+ value: z.ZodNumber;
624
+ price: z.ZodNumber;
625
+ total: z.ZodNumber;
626
+ }, z.core.$strip>>;
627
+ facets: z.ZodObject<{
628
+ cluster_id: z.ZodOptional<z.ZodArray<z.ZodString>>;
629
+ product: z.ZodOptional<z.ZodArray<z.ZodString>>;
630
+ }, z.core.$strip>;
631
+ }, z.core.$strip>;
1002
632
  export declare const zUsage: z.ZodObject<{
1003
- hour: z.ZodOptional<z.ZodString>;
1004
- cluster_id: z.ZodUUID;
1005
- cluster_tier: z.ZodEnum<{
1006
- "": "";
1007
- basic: "basic";
1008
- pro: "pro";
1009
- }>;
1010
- product: z.ZodEnum<{
1011
- cfke_controlplane: "cfke_controlplane";
1012
- cfke_connected_nodes: "cfke_connected_nodes";
1013
- infra_compute: "infra_compute";
1014
- infra_storage: "infra_storage";
1015
- infra_loadbalancing: "infra_loadbalancing";
1016
- infra_traffic: "infra_traffic";
1017
- cfcr_storage: "cfcr_storage";
1018
- }>;
1019
- node_name: z.ZodString;
1020
- sku: z.ZodString;
1021
- cpu: z.ZodUnion<readonly [z.ZodNumber, z.ZodEnum<{
1022
- "": "";
1023
- }>]>;
1024
- price: z.ZodUnion<readonly [z.ZodNumber, z.ZodEnum<{
1025
- "": "";
1026
- }>]>;
1027
- value: z.ZodUnion<readonly [z.ZodNumber, z.ZodEnum<{
1028
- "": "";
1029
- }>]>;
1030
- total: z.ZodUnion<readonly [z.ZodNumber, z.ZodEnum<{
1031
- "": "";
1032
- }>]>;
633
+ hour: z.ZodString;
634
+ cluster_id: z.ZodString;
635
+ product: z.ZodString;
636
+ value: z.ZodNumber;
637
+ price: z.ZodNumber;
638
+ total: z.ZodNumber;
1033
639
  }, z.core.$strip>;
1034
640
  export declare const zUserCreateInput: z.ZodObject<{
1035
641
  email: z.ZodEmail;
@@ -1074,59 +680,29 @@ export declare const zUserUpdateInput: z.ZodObject<{
1074
680
  inactive: "inactive";
1075
681
  }>>;
1076
682
  }, z.core.$strip>;
1077
- export declare const zGetUsageData: z.ZodObject<{
1078
- body: z.ZodOptional<z.ZodNever>;
1079
- path: z.ZodOptional<z.ZodNever>;
1080
- query: z.ZodOptional<z.ZodNever>;
1081
- }, z.core.$strip>;
1082
- /**
1083
- * An array of usage records.
1084
- */
1085
- export declare const zGetUsageResponse: z.ZodArray<z.ZodObject<{
1086
- hour: z.ZodOptional<z.ZodString>;
1087
- cluster_id: z.ZodUUID;
1088
- cluster_tier: z.ZodEnum<{
1089
- "": "";
1090
- basic: "basic";
1091
- pro: "pro";
1092
- }>;
1093
- product: z.ZodEnum<{
1094
- cfke_controlplane: "cfke_controlplane";
1095
- cfke_connected_nodes: "cfke_connected_nodes";
1096
- infra_compute: "infra_compute";
1097
- infra_storage: "infra_storage";
1098
- infra_loadbalancing: "infra_loadbalancing";
1099
- infra_traffic: "infra_traffic";
1100
- cfcr_storage: "cfcr_storage";
1101
- }>;
1102
- node_name: z.ZodString;
1103
- sku: z.ZodString;
1104
- cpu: z.ZodUnion<readonly [z.ZodNumber, z.ZodEnum<{
1105
- "": "";
1106
- }>]>;
1107
- price: z.ZodUnion<readonly [z.ZodNumber, z.ZodEnum<{
1108
- "": "";
1109
- }>]>;
1110
- value: z.ZodUnion<readonly [z.ZodNumber, z.ZodEnum<{
1111
- "": "";
1112
- }>]>;
1113
- total: z.ZodUnion<readonly [z.ZodNumber, z.ZodEnum<{
1114
- "": "";
1115
- }>]>;
1116
- }, z.core.$strip>>;
1117
- export declare const zGetBalanceData: z.ZodObject<{
1118
- body: z.ZodOptional<z.ZodNever>;
1119
- path: z.ZodOptional<z.ZodNever>;
1120
- query: z.ZodOptional<z.ZodNever>;
683
+ export declare const zGetUsageQuery: z.ZodObject<{
684
+ granularity: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
685
+ hourly: "hourly";
686
+ daily: "daily";
687
+ monthly: "monthly";
688
+ }>>>;
1121
689
  }, z.core.$strip>;
1122
690
  /**
1123
- * Current balance of the organization in USD as a floating-point number.
691
+ * Usage data with facets for filtering
1124
692
  */
1125
- export declare const zGetBalanceResponse: z.ZodNumber;
1126
- export declare const zGetPaymentMethodData: z.ZodObject<{
1127
- body: z.ZodOptional<z.ZodNever>;
1128
- path: z.ZodOptional<z.ZodNever>;
1129
- query: z.ZodOptional<z.ZodNever>;
693
+ export declare const zGetUsageResponse: z.ZodObject<{
694
+ data: z.ZodArray<z.ZodObject<{
695
+ hour: z.ZodString;
696
+ cluster_id: z.ZodString;
697
+ product: z.ZodString;
698
+ value: z.ZodNumber;
699
+ price: z.ZodNumber;
700
+ total: z.ZodNumber;
701
+ }, z.core.$strip>>;
702
+ facets: z.ZodObject<{
703
+ cluster_id: z.ZodOptional<z.ZodArray<z.ZodString>>;
704
+ product: z.ZodOptional<z.ZodArray<z.ZodString>>;
705
+ }, z.core.$strip>;
1130
706
  }, z.core.$strip>;
1131
707
  /**
1132
708
  * Redacted payment card information.
@@ -1152,11 +728,6 @@ export declare const zGetPaymentMethodResponse: z.ZodObject<{
1152
728
  visa: "visa";
1153
729
  }>;
1154
730
  }, z.core.$strip>;
1155
- export declare const zGetPaymentMethodSecretData: z.ZodObject<{
1156
- body: z.ZodOptional<z.ZodNever>;
1157
- path: z.ZodOptional<z.ZodNever>;
1158
- query: z.ZodOptional<z.ZodNever>;
1159
- }, z.core.$strip>;
1160
731
  /**
1161
732
  * 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.
1162
733
  *
@@ -1164,619 +735,20 @@ export declare const zGetPaymentMethodSecretData: z.ZodObject<{
1164
735
  export declare const zGetPaymentMethodSecretResponse: z.ZodObject<{
1165
736
  id: z.ZodOptional<z.ZodString>;
1166
737
  }, z.core.$strip>;
1167
- export declare const zListInvoicesData: z.ZodObject<{
1168
- body: z.ZodOptional<z.ZodNever>;
1169
- path: z.ZodOptional<z.ZodNever>;
1170
- query: z.ZodObject<{
1171
- start_date: z.ZodString;
1172
- end_date: z.ZodString;
1173
- }, z.core.$strip>;
1174
- }, z.core.$strip>;
1175
738
  /**
1176
739
  * An array of usage records.
1177
740
  */
1178
741
  export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
1179
- id: z.ZodOptional<z.ZodUUID>;
1180
- organizationId: z.ZodOptional<z.ZodUUID>;
1181
- status: z.ZodOptional<z.ZodEnum<{
1182
- DRAFT: "DRAFT";
1183
- COMMITTED: "COMMITTED";
1184
- VOID: "VOID";
1185
- }>>;
1186
- amount: z.ZodOptional<z.ZodNumber>;
1187
- currency: z.ZodOptional<z.ZodEnum<{
1188
- AED: "AED";
1189
- AFN: "AFN";
1190
- ALL: "ALL";
1191
- AMD: "AMD";
1192
- ANG: "ANG";
1193
- AOA: "AOA";
1194
- ARS: "ARS";
1195
- AUD: "AUD";
1196
- AWG: "AWG";
1197
- AZN: "AZN";
1198
- BAM: "BAM";
1199
- BBD: "BBD";
1200
- BDT: "BDT";
1201
- BGN: "BGN";
1202
- BHD: "BHD";
1203
- BIF: "BIF";
1204
- BMD: "BMD";
1205
- BND: "BND";
1206
- BOB: "BOB";
1207
- BRL: "BRL";
1208
- BSD: "BSD";
1209
- BTN: "BTN";
1210
- BWP: "BWP";
1211
- BYR: "BYR";
1212
- BZD: "BZD";
1213
- CAD: "CAD";
1214
- CDF: "CDF";
1215
- CHF: "CHF";
1216
- CLP: "CLP";
1217
- CNY: "CNY";
1218
- COP: "COP";
1219
- CRC: "CRC";
1220
- CUC: "CUC";
1221
- CUP: "CUP";
1222
- CVE: "CVE";
1223
- CZK: "CZK";
1224
- DJF: "DJF";
1225
- DKK: "DKK";
1226
- DOP: "DOP";
1227
- DZD: "DZD";
1228
- EGP: "EGP";
1229
- ERN: "ERN";
1230
- ETB: "ETB";
1231
- EUR: "EUR";
1232
- FJD: "FJD";
1233
- FKP: "FKP";
1234
- GBP: "GBP";
1235
- GEL: "GEL";
1236
- GGP: "GGP";
1237
- GHS: "GHS";
1238
- GIP: "GIP";
1239
- GMD: "GMD";
1240
- GNF: "GNF";
1241
- GTQ: "GTQ";
1242
- GYD: "GYD";
1243
- HKD: "HKD";
1244
- HNL: "HNL";
1245
- HRK: "HRK";
1246
- HTG: "HTG";
1247
- HUF: "HUF";
1248
- IDR: "IDR";
1249
- ILS: "ILS";
1250
- IMP: "IMP";
1251
- INR: "INR";
1252
- IQD: "IQD";
1253
- IRR: "IRR";
1254
- ISK: "ISK";
1255
- JEP: "JEP";
1256
- JMD: "JMD";
1257
- JOD: "JOD";
1258
- JPY: "JPY";
1259
- KES: "KES";
1260
- KGS: "KGS";
1261
- KHR: "KHR";
1262
- KMF: "KMF";
1263
- KPW: "KPW";
1264
- KRW: "KRW";
1265
- KWD: "KWD";
1266
- KYD: "KYD";
1267
- KZT: "KZT";
1268
- LAK: "LAK";
1269
- LBP: "LBP";
1270
- LKR: "LKR";
1271
- LRD: "LRD";
1272
- LSL: "LSL";
1273
- LTL: "LTL";
1274
- LVL: "LVL";
1275
- LYD: "LYD";
1276
- MAD: "MAD";
1277
- MDL: "MDL";
1278
- MGA: "MGA";
1279
- MKD: "MKD";
1280
- MMK: "MMK";
1281
- MNT: "MNT";
1282
- MOP: "MOP";
1283
- MRO: "MRO";
1284
- MUR: "MUR";
1285
- MVR: "MVR";
1286
- MWK: "MWK";
1287
- MXN: "MXN";
1288
- MYR: "MYR";
1289
- MZN: "MZN";
1290
- NAD: "NAD";
1291
- NGN: "NGN";
1292
- NIO: "NIO";
1293
- NOK: "NOK";
1294
- NPR: "NPR";
1295
- NZD: "NZD";
1296
- OMR: "OMR";
1297
- PAB: "PAB";
1298
- PEN: "PEN";
1299
- PGK: "PGK";
1300
- PHP: "PHP";
1301
- PKR: "PKR";
1302
- PLN: "PLN";
1303
- PYG: "PYG";
1304
- QAR: "QAR";
1305
- RON: "RON";
1306
- RSD: "RSD";
1307
- RUB: "RUB";
1308
- RWF: "RWF";
1309
- SAR: "SAR";
1310
- SBD: "SBD";
1311
- SCR: "SCR";
1312
- SDG: "SDG";
1313
- SEK: "SEK";
1314
- SGD: "SGD";
1315
- SHP: "SHP";
1316
- SLL: "SLL";
1317
- SOS: "SOS";
1318
- SPL: "SPL";
1319
- SRD: "SRD";
1320
- STD: "STD";
1321
- SVC: "SVC";
1322
- SYP: "SYP";
1323
- SZL: "SZL";
1324
- THB: "THB";
1325
- TJS: "TJS";
1326
- TMT: "TMT";
1327
- TND: "TND";
1328
- TOP: "TOP";
1329
- TRY: "TRY";
1330
- TTD: "TTD";
1331
- TVD: "TVD";
1332
- TWD: "TWD";
1333
- TZS: "TZS";
1334
- UAH: "UAH";
1335
- UGX: "UGX";
1336
- USD: "USD";
1337
- UYU: "UYU";
1338
- UZS: "UZS";
1339
- VEF: "VEF";
1340
- VND: "VND";
1341
- VUV: "VUV";
1342
- WST: "WST";
1343
- XAF: "XAF";
1344
- XCD: "XCD";
1345
- XDR: "XDR";
1346
- XOF: "XOF";
1347
- XPF: "XPF";
1348
- YER: "YER";
1349
- ZAR: "ZAR";
1350
- ZMW: "ZMW";
1351
- ZWD: "ZWD";
1352
- BTC: "BTC";
1353
- }>>;
1354
- creditAdj: z.ZodOptional<z.ZodNumber>;
1355
- refundAdj: z.ZodOptional<z.ZodNumber>;
1356
- invoiceDate: z.ZodOptional<z.ZodString>;
1357
- targetDate: z.ZodOptional<z.ZodString>;
1358
- invoiceNumber: z.ZodOptional<z.ZodString>;
1359
- balance: z.ZodOptional<z.ZodNumber>;
1360
- bundleKeys: z.ZodOptional<z.ZodString>;
1361
- credits: z.ZodOptional<z.ZodArray<z.ZodObject<{
1362
- id: z.ZodOptional<z.ZodUUID>;
1363
- linkedInvoiceItemId: z.ZodOptional<z.ZodUUID>;
1364
- productName: z.ZodOptional<z.ZodString>;
1365
- planName: z.ZodOptional<z.ZodString>;
1366
- phaseName: z.ZodOptional<z.ZodString>;
1367
- usageName: z.ZodOptional<z.ZodString>;
1368
- prettyProductName: z.ZodOptional<z.ZodString>;
1369
- prettyPlanName: z.ZodOptional<z.ZodString>;
1370
- prettyPhaseName: z.ZodOptional<z.ZodString>;
1371
- prettyUsageName: z.ZodOptional<z.ZodString>;
1372
- itemType: z.ZodOptional<z.ZodEnum<{
1373
- EXTERNAL_CHARGE: "EXTERNAL_CHARGE";
1374
- FIXED: "FIXED";
1375
- RECURRING: "RECURRING";
1376
- REPAIR_ADJ: "REPAIR_ADJ";
1377
- CBA_ADJ: "CBA_ADJ";
1378
- CREDIT_ADJ: "CREDIT_ADJ";
1379
- ITEM_ADJ: "ITEM_ADJ";
1380
- USAGE: "USAGE";
1381
- TAX: "TAX";
1382
- PARENT_SUMMARY: "PARENT_SUMMARY";
1383
- }>>;
1384
- description: z.ZodOptional<z.ZodString>;
1385
- startDate: z.ZodOptional<z.ZodString>;
1386
- endDate: z.ZodOptional<z.ZodString>;
1387
- amount: z.ZodOptional<z.ZodNumber>;
1388
- rate: z.ZodOptional<z.ZodNumber>;
1389
- currency: z.ZodOptional<z.ZodEnum<{
1390
- AED: "AED";
1391
- AFN: "AFN";
1392
- ALL: "ALL";
1393
- AMD: "AMD";
1394
- ANG: "ANG";
1395
- AOA: "AOA";
1396
- ARS: "ARS";
1397
- AUD: "AUD";
1398
- AWG: "AWG";
1399
- AZN: "AZN";
1400
- BAM: "BAM";
1401
- BBD: "BBD";
1402
- BDT: "BDT";
1403
- BGN: "BGN";
1404
- BHD: "BHD";
1405
- BIF: "BIF";
1406
- BMD: "BMD";
1407
- BND: "BND";
1408
- BOB: "BOB";
1409
- BRL: "BRL";
1410
- BSD: "BSD";
1411
- BTN: "BTN";
1412
- BWP: "BWP";
1413
- BYR: "BYR";
1414
- BZD: "BZD";
1415
- CAD: "CAD";
1416
- CDF: "CDF";
1417
- CHF: "CHF";
1418
- CLP: "CLP";
1419
- CNY: "CNY";
1420
- COP: "COP";
1421
- CRC: "CRC";
1422
- CUC: "CUC";
1423
- CUP: "CUP";
1424
- CVE: "CVE";
1425
- CZK: "CZK";
1426
- DJF: "DJF";
1427
- DKK: "DKK";
1428
- DOP: "DOP";
1429
- DZD: "DZD";
1430
- EGP: "EGP";
1431
- ERN: "ERN";
1432
- ETB: "ETB";
1433
- EUR: "EUR";
1434
- FJD: "FJD";
1435
- FKP: "FKP";
1436
- GBP: "GBP";
1437
- GEL: "GEL";
1438
- GGP: "GGP";
1439
- GHS: "GHS";
1440
- GIP: "GIP";
1441
- GMD: "GMD";
1442
- GNF: "GNF";
1443
- GTQ: "GTQ";
1444
- GYD: "GYD";
1445
- HKD: "HKD";
1446
- HNL: "HNL";
1447
- HRK: "HRK";
1448
- HTG: "HTG";
1449
- HUF: "HUF";
1450
- IDR: "IDR";
1451
- ILS: "ILS";
1452
- IMP: "IMP";
1453
- INR: "INR";
1454
- IQD: "IQD";
1455
- IRR: "IRR";
1456
- ISK: "ISK";
1457
- JEP: "JEP";
1458
- JMD: "JMD";
1459
- JOD: "JOD";
1460
- JPY: "JPY";
1461
- KES: "KES";
1462
- KGS: "KGS";
1463
- KHR: "KHR";
1464
- KMF: "KMF";
1465
- KPW: "KPW";
1466
- KRW: "KRW";
1467
- KWD: "KWD";
1468
- KYD: "KYD";
1469
- KZT: "KZT";
1470
- LAK: "LAK";
1471
- LBP: "LBP";
1472
- LKR: "LKR";
1473
- LRD: "LRD";
1474
- LSL: "LSL";
1475
- LTL: "LTL";
1476
- LVL: "LVL";
1477
- LYD: "LYD";
1478
- MAD: "MAD";
1479
- MDL: "MDL";
1480
- MGA: "MGA";
1481
- MKD: "MKD";
1482
- MMK: "MMK";
1483
- MNT: "MNT";
1484
- MOP: "MOP";
1485
- MRO: "MRO";
1486
- MUR: "MUR";
1487
- MVR: "MVR";
1488
- MWK: "MWK";
1489
- MXN: "MXN";
1490
- MYR: "MYR";
1491
- MZN: "MZN";
1492
- NAD: "NAD";
1493
- NGN: "NGN";
1494
- NIO: "NIO";
1495
- NOK: "NOK";
1496
- NPR: "NPR";
1497
- NZD: "NZD";
1498
- OMR: "OMR";
1499
- PAB: "PAB";
1500
- PEN: "PEN";
1501
- PGK: "PGK";
1502
- PHP: "PHP";
1503
- PKR: "PKR";
1504
- PLN: "PLN";
1505
- PYG: "PYG";
1506
- QAR: "QAR";
1507
- RON: "RON";
1508
- RSD: "RSD";
1509
- RUB: "RUB";
1510
- RWF: "RWF";
1511
- SAR: "SAR";
1512
- SBD: "SBD";
1513
- SCR: "SCR";
1514
- SDG: "SDG";
1515
- SEK: "SEK";
1516
- SGD: "SGD";
1517
- SHP: "SHP";
1518
- SLL: "SLL";
1519
- SOS: "SOS";
1520
- SPL: "SPL";
1521
- SRD: "SRD";
1522
- STD: "STD";
1523
- SVC: "SVC";
1524
- SYP: "SYP";
1525
- SZL: "SZL";
1526
- THB: "THB";
1527
- TJS: "TJS";
1528
- TMT: "TMT";
1529
- TND: "TND";
1530
- TOP: "TOP";
1531
- TRY: "TRY";
1532
- TTD: "TTD";
1533
- TVD: "TVD";
1534
- TWD: "TWD";
1535
- TZS: "TZS";
1536
- UAH: "UAH";
1537
- UGX: "UGX";
1538
- USD: "USD";
1539
- UYU: "UYU";
1540
- UZS: "UZS";
1541
- VEF: "VEF";
1542
- VND: "VND";
1543
- VUV: "VUV";
1544
- WST: "WST";
1545
- XAF: "XAF";
1546
- XCD: "XCD";
1547
- XDR: "XDR";
1548
- XOF: "XOF";
1549
- XPF: "XPF";
1550
- YER: "YER";
1551
- ZAR: "ZAR";
1552
- ZMW: "ZMW";
1553
- ZWD: "ZWD";
1554
- BTC: "BTC";
1555
- }>>;
1556
- quantity: z.ZodOptional<z.ZodNumber>;
1557
- itemDetails: z.ZodOptional<z.ZodString>;
1558
- catalogEffectiveDate: z.ZodOptional<z.ZodString>;
1559
- childItems: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodArray<z.ZodUnknown>, z.ZodBoolean, z.ZodNumber, z.ZodRecord<z.ZodString, z.ZodUnknown>, z.ZodString]>>>;
1560
- }, z.core.$strip>>>;
1561
- items: z.ZodOptional<z.ZodArray<z.ZodObject<{
1562
- id: z.ZodOptional<z.ZodUUID>;
1563
- linkedInvoiceItemId: z.ZodOptional<z.ZodUUID>;
1564
- productName: z.ZodOptional<z.ZodString>;
1565
- planName: z.ZodOptional<z.ZodString>;
1566
- phaseName: z.ZodOptional<z.ZodString>;
1567
- usageName: z.ZodOptional<z.ZodString>;
1568
- prettyProductName: z.ZodOptional<z.ZodString>;
1569
- prettyPlanName: z.ZodOptional<z.ZodString>;
1570
- prettyPhaseName: z.ZodOptional<z.ZodString>;
1571
- prettyUsageName: z.ZodOptional<z.ZodString>;
1572
- itemType: z.ZodOptional<z.ZodEnum<{
1573
- EXTERNAL_CHARGE: "EXTERNAL_CHARGE";
1574
- FIXED: "FIXED";
1575
- RECURRING: "RECURRING";
1576
- REPAIR_ADJ: "REPAIR_ADJ";
1577
- CBA_ADJ: "CBA_ADJ";
1578
- CREDIT_ADJ: "CREDIT_ADJ";
1579
- ITEM_ADJ: "ITEM_ADJ";
1580
- USAGE: "USAGE";
1581
- TAX: "TAX";
1582
- PARENT_SUMMARY: "PARENT_SUMMARY";
1583
- }>>;
1584
- description: z.ZodOptional<z.ZodString>;
1585
- startDate: z.ZodOptional<z.ZodString>;
1586
- endDate: z.ZodOptional<z.ZodString>;
1587
- amount: z.ZodOptional<z.ZodNumber>;
1588
- rate: z.ZodOptional<z.ZodNumber>;
1589
- currency: z.ZodOptional<z.ZodEnum<{
1590
- AED: "AED";
1591
- AFN: "AFN";
1592
- ALL: "ALL";
1593
- AMD: "AMD";
1594
- ANG: "ANG";
1595
- AOA: "AOA";
1596
- ARS: "ARS";
1597
- AUD: "AUD";
1598
- AWG: "AWG";
1599
- AZN: "AZN";
1600
- BAM: "BAM";
1601
- BBD: "BBD";
1602
- BDT: "BDT";
1603
- BGN: "BGN";
1604
- BHD: "BHD";
1605
- BIF: "BIF";
1606
- BMD: "BMD";
1607
- BND: "BND";
1608
- BOB: "BOB";
1609
- BRL: "BRL";
1610
- BSD: "BSD";
1611
- BTN: "BTN";
1612
- BWP: "BWP";
1613
- BYR: "BYR";
1614
- BZD: "BZD";
1615
- CAD: "CAD";
1616
- CDF: "CDF";
1617
- CHF: "CHF";
1618
- CLP: "CLP";
1619
- CNY: "CNY";
1620
- COP: "COP";
1621
- CRC: "CRC";
1622
- CUC: "CUC";
1623
- CUP: "CUP";
1624
- CVE: "CVE";
1625
- CZK: "CZK";
1626
- DJF: "DJF";
1627
- DKK: "DKK";
1628
- DOP: "DOP";
1629
- DZD: "DZD";
1630
- EGP: "EGP";
1631
- ERN: "ERN";
1632
- ETB: "ETB";
1633
- EUR: "EUR";
1634
- FJD: "FJD";
1635
- FKP: "FKP";
1636
- GBP: "GBP";
1637
- GEL: "GEL";
1638
- GGP: "GGP";
1639
- GHS: "GHS";
1640
- GIP: "GIP";
1641
- GMD: "GMD";
1642
- GNF: "GNF";
1643
- GTQ: "GTQ";
1644
- GYD: "GYD";
1645
- HKD: "HKD";
1646
- HNL: "HNL";
1647
- HRK: "HRK";
1648
- HTG: "HTG";
1649
- HUF: "HUF";
1650
- IDR: "IDR";
1651
- ILS: "ILS";
1652
- IMP: "IMP";
1653
- INR: "INR";
1654
- IQD: "IQD";
1655
- IRR: "IRR";
1656
- ISK: "ISK";
1657
- JEP: "JEP";
1658
- JMD: "JMD";
1659
- JOD: "JOD";
1660
- JPY: "JPY";
1661
- KES: "KES";
1662
- KGS: "KGS";
1663
- KHR: "KHR";
1664
- KMF: "KMF";
1665
- KPW: "KPW";
1666
- KRW: "KRW";
1667
- KWD: "KWD";
1668
- KYD: "KYD";
1669
- KZT: "KZT";
1670
- LAK: "LAK";
1671
- LBP: "LBP";
1672
- LKR: "LKR";
1673
- LRD: "LRD";
1674
- LSL: "LSL";
1675
- LTL: "LTL";
1676
- LVL: "LVL";
1677
- LYD: "LYD";
1678
- MAD: "MAD";
1679
- MDL: "MDL";
1680
- MGA: "MGA";
1681
- MKD: "MKD";
1682
- MMK: "MMK";
1683
- MNT: "MNT";
1684
- MOP: "MOP";
1685
- MRO: "MRO";
1686
- MUR: "MUR";
1687
- MVR: "MVR";
1688
- MWK: "MWK";
1689
- MXN: "MXN";
1690
- MYR: "MYR";
1691
- MZN: "MZN";
1692
- NAD: "NAD";
1693
- NGN: "NGN";
1694
- NIO: "NIO";
1695
- NOK: "NOK";
1696
- NPR: "NPR";
1697
- NZD: "NZD";
1698
- OMR: "OMR";
1699
- PAB: "PAB";
1700
- PEN: "PEN";
1701
- PGK: "PGK";
1702
- PHP: "PHP";
1703
- PKR: "PKR";
1704
- PLN: "PLN";
1705
- PYG: "PYG";
1706
- QAR: "QAR";
1707
- RON: "RON";
1708
- RSD: "RSD";
1709
- RUB: "RUB";
1710
- RWF: "RWF";
1711
- SAR: "SAR";
1712
- SBD: "SBD";
1713
- SCR: "SCR";
1714
- SDG: "SDG";
1715
- SEK: "SEK";
1716
- SGD: "SGD";
1717
- SHP: "SHP";
1718
- SLL: "SLL";
1719
- SOS: "SOS";
1720
- SPL: "SPL";
1721
- SRD: "SRD";
1722
- STD: "STD";
1723
- SVC: "SVC";
1724
- SYP: "SYP";
1725
- SZL: "SZL";
1726
- THB: "THB";
1727
- TJS: "TJS";
1728
- TMT: "TMT";
1729
- TND: "TND";
1730
- TOP: "TOP";
1731
- TRY: "TRY";
1732
- TTD: "TTD";
1733
- TVD: "TVD";
1734
- TWD: "TWD";
1735
- TZS: "TZS";
1736
- UAH: "UAH";
1737
- UGX: "UGX";
1738
- USD: "USD";
1739
- UYU: "UYU";
1740
- UZS: "UZS";
1741
- VEF: "VEF";
1742
- VND: "VND";
1743
- VUV: "VUV";
1744
- WST: "WST";
1745
- XAF: "XAF";
1746
- XCD: "XCD";
1747
- XDR: "XDR";
1748
- XOF: "XOF";
1749
- XPF: "XPF";
1750
- YER: "YER";
1751
- ZAR: "ZAR";
1752
- ZMW: "ZMW";
1753
- ZWD: "ZWD";
1754
- BTC: "BTC";
1755
- }>>;
1756
- quantity: z.ZodOptional<z.ZodNumber>;
1757
- itemDetails: z.ZodOptional<z.ZodString>;
1758
- catalogEffectiveDate: z.ZodOptional<z.ZodString>;
1759
- childItems: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodArray<z.ZodUnknown>, z.ZodBoolean, z.ZodNumber, z.ZodRecord<z.ZodString, z.ZodUnknown>, z.ZodString]>>>;
1760
- }, z.core.$strip>>>;
742
+ id: z.ZodOptional<z.ZodString>;
743
+ number: z.ZodOptional<z.ZodString>;
744
+ status: z.ZodOptional<z.ZodString>;
745
+ total: z.ZodOptional<z.ZodNumber>;
746
+ currency: z.ZodOptional<z.ZodString>;
747
+ created: z.ZodISODateTime;
748
+ period_start: z.ZodISODateTime;
749
+ period_end: z.ZodISODateTime;
750
+ invoice_pdf: z.ZodOptional<z.ZodString>;
1761
751
  }, z.core.$strip>>;
1762
- export declare const zGetInvoiceData: z.ZodObject<{
1763
- body: z.ZodOptional<z.ZodNever>;
1764
- path: z.ZodObject<{
1765
- id: z.ZodString;
1766
- }, z.core.$strip>;
1767
- query: z.ZodOptional<z.ZodNever>;
1768
- }, z.core.$strip>;
1769
- /**
1770
- * Returns a single Invoice HTML representation under `html` property.
1771
- */
1772
- export declare const zGetInvoiceResponse: z.ZodObject<{
1773
- html: z.ZodOptional<z.ZodString>;
1774
- }, z.core.$strip>;
1775
- export declare const zGetContactData: z.ZodObject<{
1776
- body: z.ZodOptional<z.ZodNever>;
1777
- path: z.ZodOptional<z.ZodNever>;
1778
- query: z.ZodOptional<z.ZodNever>;
1779
- }, z.core.$strip>;
1780
752
  /**
1781
753
  * Returns a single object containing organization contact and billing address details.
1782
754
  */
@@ -1790,8 +762,7 @@ export declare const zGetContactResponse: z.ZodObject<{
1790
762
  country: z.ZodOptional<z.ZodString>;
1791
763
  phone: z.ZodOptional<z.ZodString>;
1792
764
  email: z.ZodEmail;
1793
- first_name: z.ZodString;
1794
- last_name: z.ZodString;
765
+ individual_name: z.ZodString;
1795
766
  tax_id: z.ZodOptional<z.ZodString>;
1796
767
  tax_id_type: z.ZodOptional<z.ZodEnum<{
1797
768
  "": "";
@@ -1924,158 +895,7 @@ export declare const zGetContactResponse: z.ZodObject<{
1924
895
  zw_tin: "zw_tin";
1925
896
  }>>;
1926
897
  }, z.core.$strip>;
1927
- export declare const zUpdateContactData: z.ZodObject<{
1928
- body: z.ZodObject<{
1929
- company: z.ZodOptional<z.ZodString>;
1930
- address1: z.ZodOptional<z.ZodString>;
1931
- address2: z.ZodOptional<z.ZodString>;
1932
- postalCode: z.ZodOptional<z.ZodString>;
1933
- city: z.ZodOptional<z.ZodString>;
1934
- state: z.ZodOptional<z.ZodString>;
1935
- country: z.ZodOptional<z.ZodString>;
1936
- phone: z.ZodOptional<z.ZodString>;
1937
- email: z.ZodEmail;
1938
- first_name: z.ZodString;
1939
- last_name: z.ZodString;
1940
- tax_id: z.ZodOptional<z.ZodString>;
1941
- tax_id_type: z.ZodOptional<z.ZodEnum<{
1942
- "": "";
1943
- ad_nrt: "ad_nrt";
1944
- ae_trn: "ae_trn";
1945
- al_tin: "al_tin";
1946
- am_tin: "am_tin";
1947
- ao_tin: "ao_tin";
1948
- ar_cuit: "ar_cuit";
1949
- at_vat: "at_vat";
1950
- au_abn: "au_abn";
1951
- au_arn: "au_arn";
1952
- ba_tin: "ba_tin";
1953
- bb_tin: "bb_tin";
1954
- be_vat: "be_vat";
1955
- bg_uic: "bg_uic";
1956
- bg_vat: "bg_vat";
1957
- bh_vat: "bh_vat";
1958
- bo_tin: "bo_tin";
1959
- br_cnpj: "br_cnpj";
1960
- br_cpf: "br_cpf";
1961
- bs_tin: "bs_tin";
1962
- by_tin: "by_tin";
1963
- ca_bn: "ca_bn";
1964
- ca_gst_hst: "ca_gst_hst";
1965
- ca_pst_bc: "ca_pst_bc";
1966
- ca_pst_mb: "ca_pst_mb";
1967
- ca_pst_sk: "ca_pst_sk";
1968
- ca_qst: "ca_qst";
1969
- cd_nif: "cd_nif";
1970
- ch_uid: "ch_uid";
1971
- ch_vat: "ch_vat";
1972
- cl_tin: "cl_tin";
1973
- cn_tin: "cn_tin";
1974
- co_nit: "co_nit";
1975
- cr_tin: "cr_tin";
1976
- cy_vat: "cy_vat";
1977
- cz_vat: "cz_vat";
1978
- de_stn: "de_stn";
1979
- de_vat: "de_vat";
1980
- dk_vat: "dk_vat";
1981
- do_rcn: "do_rcn";
1982
- ec_ruc: "ec_ruc";
1983
- ee_vat: "ee_vat";
1984
- eg_tin: "eg_tin";
1985
- es_cif: "es_cif";
1986
- es_vat: "es_vat";
1987
- eu_oss_vat: "eu_oss_vat";
1988
- fi_vat: "fi_vat";
1989
- fr_vat: "fr_vat";
1990
- gb_vat: "gb_vat";
1991
- ge_vat: "ge_vat";
1992
- gn_nif: "gn_nif";
1993
- gr_vat: "gr_vat";
1994
- hk_br: "hk_br";
1995
- hr_oib: "hr_oib";
1996
- hr_vat: "hr_vat";
1997
- hu_tin: "hu_tin";
1998
- hu_vat: "hu_vat";
1999
- id_npwp: "id_npwp";
2000
- ie_vat: "ie_vat";
2001
- il_vat: "il_vat";
2002
- in_gst: "in_gst";
2003
- is_vat: "is_vat";
2004
- it_vat: "it_vat";
2005
- jp_cn: "jp_cn";
2006
- jp_rn: "jp_rn";
2007
- jp_trn: "jp_trn";
2008
- ke_pin: "ke_pin";
2009
- kh_tin: "kh_tin";
2010
- kr_brn: "kr_brn";
2011
- kz_bin: "kz_bin";
2012
- li_uid: "li_uid";
2013
- li_vat: "li_vat";
2014
- lt_vat: "lt_vat";
2015
- lu_vat: "lu_vat";
2016
- lv_vat: "lv_vat";
2017
- ma_vat: "ma_vat";
2018
- md_vat: "md_vat";
2019
- me_pib: "me_pib";
2020
- mk_vat: "mk_vat";
2021
- mr_nif: "mr_nif";
2022
- mt_vat: "mt_vat";
2023
- mx_rfc: "mx_rfc";
2024
- my_frp: "my_frp";
2025
- my_itn: "my_itn";
2026
- my_sst: "my_sst";
2027
- ng_tin: "ng_tin";
2028
- nl_vat: "nl_vat";
2029
- no_vat: "no_vat";
2030
- no_voec: "no_voec";
2031
- np_pan: "np_pan";
2032
- nz_gst: "nz_gst";
2033
- om_vat: "om_vat";
2034
- pe_ruc: "pe_ruc";
2035
- ph_tin: "ph_tin";
2036
- pl_vat: "pl_vat";
2037
- pt_vat: "pt_vat";
2038
- ro_tin: "ro_tin";
2039
- ro_vat: "ro_vat";
2040
- rs_pib: "rs_pib";
2041
- ru_inn: "ru_inn";
2042
- ru_kpp: "ru_kpp";
2043
- sa_vat: "sa_vat";
2044
- se_vat: "se_vat";
2045
- sg_gst: "sg_gst";
2046
- sg_uen: "sg_uen";
2047
- si_tin: "si_tin";
2048
- si_vat: "si_vat";
2049
- sk_vat: "sk_vat";
2050
- sn_ninea: "sn_ninea";
2051
- sr_fin: "sr_fin";
2052
- sv_nit: "sv_nit";
2053
- th_vat: "th_vat";
2054
- tj_tin: "tj_tin";
2055
- tr_tin: "tr_tin";
2056
- tw_vat: "tw_vat";
2057
- tz_vat: "tz_vat";
2058
- ua_vat: "ua_vat";
2059
- ug_tin: "ug_tin";
2060
- us_ein: "us_ein";
2061
- uy_ruc: "uy_ruc";
2062
- uz_tin: "uz_tin";
2063
- uz_vat: "uz_vat";
2064
- ve_rif: "ve_rif";
2065
- vn_tin: "vn_tin";
2066
- xi_vat: "xi_vat";
2067
- za_vat: "za_vat";
2068
- zm_tin: "zm_tin";
2069
- zw_tin: "zw_tin";
2070
- }>>;
2071
- }, z.core.$strip>;
2072
- path: z.ZodOptional<z.ZodNever>;
2073
- query: z.ZodOptional<z.ZodNever>;
2074
- }, z.core.$strip>;
2075
- /**
2076
- * Successfully updated. Returns updated organization details.
2077
- */
2078
- export declare const zUpdateContactResponse: z.ZodObject<{
898
+ export declare const zUpdateContactBody: z.ZodObject<{
2079
899
  company: z.ZodOptional<z.ZodString>;
2080
900
  address1: z.ZodOptional<z.ZodString>;
2081
901
  address2: z.ZodOptional<z.ZodString>;
@@ -2085,8 +905,7 @@ export declare const zUpdateContactResponse: z.ZodObject<{
2085
905
  country: z.ZodOptional<z.ZodString>;
2086
906
  phone: z.ZodOptional<z.ZodString>;
2087
907
  email: z.ZodEmail;
2088
- first_name: z.ZodString;
2089
- last_name: z.ZodString;
908
+ individual_name: z.ZodString;
2090
909
  tax_id: z.ZodOptional<z.ZodString>;
2091
910
  tax_id_type: z.ZodOptional<z.ZodEnum<{
2092
911
  "": "";
@@ -2219,229 +1038,332 @@ export declare const zUpdateContactResponse: z.ZodObject<{
2219
1038
  zw_tin: "zw_tin";
2220
1039
  }>>;
2221
1040
  }, z.core.$strip>;
2222
- export declare const zGetCreditsData: z.ZodObject<{
2223
- body: z.ZodOptional<z.ZodNever>;
2224
- path: z.ZodOptional<z.ZodNever>;
2225
- query: z.ZodOptional<z.ZodNever>;
2226
- }, z.core.$strip>;
2227
1041
  /**
2228
- * An array of the applied promotional credits records.
2229
- */
2230
- export declare const zGetCreditsResponse: z.ZodArray<z.ZodObject<{
2231
- id: z.ZodOptional<z.ZodString>;
2232
- date_created: z.ZodISODateTime;
2233
- code: z.ZodString;
2234
- description: z.ZodOptional<z.ZodString>;
2235
- products: z.ZodOptional<z.ZodArray<z.ZodString>>;
2236
- type: z.ZodEnum<{
2237
- credit: "credit";
2238
- discount: "discount";
2239
- }>;
2240
- value: z.ZodNumber;
2241
- billing_period: z.ZodISODateTime;
2242
- value_remaining: z.ZodOptional<z.ZodNumber>;
2243
- }, z.core.$strip>>;
2244
- export declare const zRedeemCreditsData: z.ZodObject<{
2245
- body: z.ZodObject<{
2246
- code: z.ZodOptional<z.ZodString>;
2247
- }, z.core.$strip>;
2248
- path: z.ZodOptional<z.ZodNever>;
2249
- query: z.ZodOptional<z.ZodNever>;
2250
- }, z.core.$strip>;
2251
- export declare const zListChartsData: z.ZodObject<{
2252
- body: z.ZodOptional<z.ZodNever>;
2253
- path: z.ZodObject<{
2254
- cluster_id: z.ZodString;
2255
- }, z.core.$strip>;
2256
- query: z.ZodOptional<z.ZodNever>;
2257
- }, z.core.$strip>;
2258
- /**
2259
- * An array of charts
2260
- */
2261
- export declare const zListChartsResponse: z.ZodArray<z.ZodObject<{
2262
- values: z.ZodString;
2263
- version_channel: z.ZodString;
2264
- name: z.ZodString;
2265
- namespace: z.ZodString;
2266
- chart: z.ZodString;
2267
- status: z.ZodEnum<{
2268
- InstallSucceeded: "InstallSucceeded";
2269
- InstallFailed: "InstallFailed";
2270
- UpgradeSucceeded: "UpgradeSucceeded";
2271
- UpgradeFailed: "UpgradeFailed";
2272
- TestSucceeded: "TestSucceeded";
2273
- TestFailed: "TestFailed";
2274
- RollbackSucceeded: "RollbackSucceeded";
2275
- RollbackFailed: "RollbackFailed";
2276
- UninstallSucceeded: "UninstallSucceeded";
2277
- UninstallFailed: "UninstallFailed";
2278
- ArtifactFailed: "ArtifactFailed";
2279
- DependencyNotReady: "DependencyNotReady";
2280
- Progressing: "Progressing";
2281
- SourceNotReady: "SourceNotReady";
2282
- }>;
2283
- version_current: z.ZodString;
2284
- created_at: z.ZodString;
2285
- updated_at: z.ZodString;
2286
- ready: z.ZodBoolean;
2287
- }, z.core.$strip>>;
2288
- export declare const zCreateChartData: z.ZodObject<{
2289
- body: z.ZodObject<{
2290
- values: z.ZodString;
2291
- version_channel: z.ZodString;
2292
- name: z.ZodString;
2293
- namespace: z.ZodString;
2294
- chart: z.ZodString;
2295
- }, z.core.$strip>;
2296
- path: z.ZodObject<{
2297
- cluster_id: z.ZodString;
2298
- }, z.core.$strip>;
2299
- query: z.ZodOptional<z.ZodNever>;
2300
- }, z.core.$strip>;
2301
- /**
2302
- * Successfully created. Returns created Chart ID.
2303
- */
2304
- export declare const zCreateChartResponse: z.ZodString;
2305
- export declare const zDeleteChartData: z.ZodObject<{
2306
- body: z.ZodOptional<z.ZodNever>;
2307
- path: z.ZodObject<{
2308
- cluster_id: z.ZodString;
2309
- chart_name: z.ZodString;
2310
- }, z.core.$strip>;
2311
- query: z.ZodOptional<z.ZodNever>;
2312
- }, z.core.$strip>;
2313
- /**
2314
- * Successfully deleted.
2315
- */
2316
- export declare const zDeleteChartResponse: z.ZodString;
2317
- export declare const zGetChartData: z.ZodObject<{
2318
- body: z.ZodOptional<z.ZodNever>;
2319
- path: z.ZodObject<{
2320
- cluster_id: z.ZodString;
2321
- chart_name: z.ZodString;
2322
- }, z.core.$strip>;
2323
- query: z.ZodOptional<z.ZodNever>;
2324
- }, z.core.$strip>;
2325
- /**
2326
- * Returns a single object containing chart details.
2327
- */
2328
- export declare const zGetChartResponse: z.ZodObject<{
2329
- values: z.ZodString;
2330
- version_channel: z.ZodString;
2331
- name: z.ZodString;
2332
- namespace: z.ZodString;
2333
- chart: z.ZodString;
2334
- status: z.ZodEnum<{
2335
- InstallSucceeded: "InstallSucceeded";
2336
- InstallFailed: "InstallFailed";
2337
- UpgradeSucceeded: "UpgradeSucceeded";
2338
- UpgradeFailed: "UpgradeFailed";
2339
- TestSucceeded: "TestSucceeded";
2340
- TestFailed: "TestFailed";
2341
- RollbackSucceeded: "RollbackSucceeded";
2342
- RollbackFailed: "RollbackFailed";
2343
- UninstallSucceeded: "UninstallSucceeded";
2344
- UninstallFailed: "UninstallFailed";
2345
- ArtifactFailed: "ArtifactFailed";
2346
- DependencyNotReady: "DependencyNotReady";
2347
- Progressing: "Progressing";
2348
- SourceNotReady: "SourceNotReady";
2349
- }>;
2350
- version_current: z.ZodString;
2351
- created_at: z.ZodString;
2352
- updated_at: z.ZodString;
2353
- ready: z.ZodBoolean;
2354
- }, z.core.$strip>;
2355
- export declare const zUpdateChartData: z.ZodObject<{
2356
- body: z.ZodObject<{
2357
- values: z.ZodString;
2358
- version_channel: z.ZodString;
2359
- }, z.core.$strip>;
2360
- path: z.ZodObject<{
2361
- cluster_id: z.ZodString;
2362
- chart_name: z.ZodString;
2363
- }, z.core.$strip>;
2364
- query: z.ZodOptional<z.ZodNever>;
2365
- }, z.core.$strip>;
2366
- /**
2367
- * Successfully updated.
2368
- */
2369
- export declare const zUpdateChartResponse: z.ZodString;
2370
- export declare const zListFleetsData: z.ZodObject<{
2371
- body: z.ZodOptional<z.ZodNever>;
2372
- path: z.ZodObject<{
2373
- cluster_id: z.ZodString;
2374
- }, z.core.$strip>;
2375
- query: z.ZodOptional<z.ZodNever>;
2376
- }, z.core.$strip>;
2377
- /**
2378
- * An array of fleets
1042
+ * Successfully updated. Returns updated organization details.
2379
1043
  */
2380
- export declare const zListFleetsResponse: z.ZodArray<z.ZodObject<{
2381
- limits: z.ZodOptional<z.ZodObject<{
2382
- cpu: z.ZodNumber;
2383
- }, z.core.$strip>>;
2384
- gcp: z.ZodOptional<z.ZodObject<{
2385
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
2386
- project: z.ZodString;
2387
- }, z.core.$strip>>;
2388
- hetzner: z.ZodOptional<z.ZodObject<{
2389
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
2390
- apiKey: z.ZodString;
2391
- }, z.core.$strip>>;
2392
- aws: z.ZodOptional<z.ZodObject<{
2393
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
2394
- controllerRoleArn: z.ZodString;
2395
- }, z.core.$strip>>;
1044
+ export declare const zUpdateContactResponse: z.ZodObject<{
1045
+ company: z.ZodOptional<z.ZodString>;
1046
+ address1: z.ZodOptional<z.ZodString>;
1047
+ address2: z.ZodOptional<z.ZodString>;
1048
+ postalCode: z.ZodOptional<z.ZodString>;
1049
+ city: z.ZodOptional<z.ZodString>;
1050
+ state: z.ZodOptional<z.ZodString>;
1051
+ country: z.ZodOptional<z.ZodString>;
1052
+ phone: z.ZodOptional<z.ZodString>;
1053
+ email: z.ZodEmail;
1054
+ individual_name: z.ZodString;
1055
+ tax_id: z.ZodOptional<z.ZodString>;
1056
+ tax_id_type: z.ZodOptional<z.ZodEnum<{
1057
+ "": "";
1058
+ ad_nrt: "ad_nrt";
1059
+ ae_trn: "ae_trn";
1060
+ al_tin: "al_tin";
1061
+ am_tin: "am_tin";
1062
+ ao_tin: "ao_tin";
1063
+ ar_cuit: "ar_cuit";
1064
+ at_vat: "at_vat";
1065
+ au_abn: "au_abn";
1066
+ au_arn: "au_arn";
1067
+ ba_tin: "ba_tin";
1068
+ bb_tin: "bb_tin";
1069
+ be_vat: "be_vat";
1070
+ bg_uic: "bg_uic";
1071
+ bg_vat: "bg_vat";
1072
+ bh_vat: "bh_vat";
1073
+ bo_tin: "bo_tin";
1074
+ br_cnpj: "br_cnpj";
1075
+ br_cpf: "br_cpf";
1076
+ bs_tin: "bs_tin";
1077
+ by_tin: "by_tin";
1078
+ ca_bn: "ca_bn";
1079
+ ca_gst_hst: "ca_gst_hst";
1080
+ ca_pst_bc: "ca_pst_bc";
1081
+ ca_pst_mb: "ca_pst_mb";
1082
+ ca_pst_sk: "ca_pst_sk";
1083
+ ca_qst: "ca_qst";
1084
+ cd_nif: "cd_nif";
1085
+ ch_uid: "ch_uid";
1086
+ ch_vat: "ch_vat";
1087
+ cl_tin: "cl_tin";
1088
+ cn_tin: "cn_tin";
1089
+ co_nit: "co_nit";
1090
+ cr_tin: "cr_tin";
1091
+ cy_vat: "cy_vat";
1092
+ cz_vat: "cz_vat";
1093
+ de_stn: "de_stn";
1094
+ de_vat: "de_vat";
1095
+ dk_vat: "dk_vat";
1096
+ do_rcn: "do_rcn";
1097
+ ec_ruc: "ec_ruc";
1098
+ ee_vat: "ee_vat";
1099
+ eg_tin: "eg_tin";
1100
+ es_cif: "es_cif";
1101
+ es_vat: "es_vat";
1102
+ eu_oss_vat: "eu_oss_vat";
1103
+ fi_vat: "fi_vat";
1104
+ fr_vat: "fr_vat";
1105
+ gb_vat: "gb_vat";
1106
+ ge_vat: "ge_vat";
1107
+ gn_nif: "gn_nif";
1108
+ gr_vat: "gr_vat";
1109
+ hk_br: "hk_br";
1110
+ hr_oib: "hr_oib";
1111
+ hr_vat: "hr_vat";
1112
+ hu_tin: "hu_tin";
1113
+ hu_vat: "hu_vat";
1114
+ id_npwp: "id_npwp";
1115
+ ie_vat: "ie_vat";
1116
+ il_vat: "il_vat";
1117
+ in_gst: "in_gst";
1118
+ is_vat: "is_vat";
1119
+ it_vat: "it_vat";
1120
+ jp_cn: "jp_cn";
1121
+ jp_rn: "jp_rn";
1122
+ jp_trn: "jp_trn";
1123
+ ke_pin: "ke_pin";
1124
+ kh_tin: "kh_tin";
1125
+ kr_brn: "kr_brn";
1126
+ kz_bin: "kz_bin";
1127
+ li_uid: "li_uid";
1128
+ li_vat: "li_vat";
1129
+ lt_vat: "lt_vat";
1130
+ lu_vat: "lu_vat";
1131
+ lv_vat: "lv_vat";
1132
+ ma_vat: "ma_vat";
1133
+ md_vat: "md_vat";
1134
+ me_pib: "me_pib";
1135
+ mk_vat: "mk_vat";
1136
+ mr_nif: "mr_nif";
1137
+ mt_vat: "mt_vat";
1138
+ mx_rfc: "mx_rfc";
1139
+ my_frp: "my_frp";
1140
+ my_itn: "my_itn";
1141
+ my_sst: "my_sst";
1142
+ ng_tin: "ng_tin";
1143
+ nl_vat: "nl_vat";
1144
+ no_vat: "no_vat";
1145
+ no_voec: "no_voec";
1146
+ np_pan: "np_pan";
1147
+ nz_gst: "nz_gst";
1148
+ om_vat: "om_vat";
1149
+ pe_ruc: "pe_ruc";
1150
+ ph_tin: "ph_tin";
1151
+ pl_vat: "pl_vat";
1152
+ pt_vat: "pt_vat";
1153
+ ro_tin: "ro_tin";
1154
+ ro_vat: "ro_vat";
1155
+ rs_pib: "rs_pib";
1156
+ ru_inn: "ru_inn";
1157
+ ru_kpp: "ru_kpp";
1158
+ sa_vat: "sa_vat";
1159
+ se_vat: "se_vat";
1160
+ sg_gst: "sg_gst";
1161
+ sg_uen: "sg_uen";
1162
+ si_tin: "si_tin";
1163
+ si_vat: "si_vat";
1164
+ sk_vat: "sk_vat";
1165
+ sn_ninea: "sn_ninea";
1166
+ sr_fin: "sr_fin";
1167
+ sv_nit: "sv_nit";
1168
+ th_vat: "th_vat";
1169
+ tj_tin: "tj_tin";
1170
+ tr_tin: "tr_tin";
1171
+ tw_vat: "tw_vat";
1172
+ tz_vat: "tz_vat";
1173
+ ua_vat: "ua_vat";
1174
+ ug_tin: "ug_tin";
1175
+ us_ein: "us_ein";
1176
+ uy_ruc: "uy_ruc";
1177
+ uz_tin: "uz_tin";
1178
+ uz_vat: "uz_vat";
1179
+ ve_rif: "ve_rif";
1180
+ vn_tin: "vn_tin";
1181
+ xi_vat: "xi_vat";
1182
+ za_vat: "za_vat";
1183
+ zm_tin: "zm_tin";
1184
+ zw_tin: "zw_tin";
1185
+ }>>;
1186
+ }, z.core.$strip>;
1187
+ /**
1188
+ * An array of the applied promotional credits records.
1189
+ */
1190
+ export declare const zGetCreditsResponse: z.ZodArray<z.ZodObject<{
1191
+ id: z.ZodOptional<z.ZodString>;
1192
+ type: z.ZodEnum<{
1193
+ credit: "credit";
1194
+ discount: "discount";
1195
+ }>;
1196
+ date_start: z.ZodISODateTime;
1197
+ date_end: z.ZodOptional<z.ZodISODateTime>;
1198
+ code: z.ZodString;
1199
+ description: z.ZodOptional<z.ZodString>;
1200
+ value_total: z.ZodNumber;
1201
+ value_remaining: z.ZodOptional<z.ZodNumber>;
1202
+ }, z.core.$strip>>;
1203
+ export declare const zRedeemCreditsBody: z.ZodObject<{
1204
+ code: z.ZodOptional<z.ZodString>;
1205
+ }, z.core.$strip>;
1206
+ export declare const zListChartsPath: z.ZodObject<{
1207
+ cluster_id: z.ZodString;
1208
+ }, z.core.$strip>;
1209
+ /**
1210
+ * An array of charts
1211
+ */
1212
+ export declare const zListChartsResponse: z.ZodArray<z.ZodObject<{
1213
+ values: z.ZodString;
1214
+ version_channel: z.ZodString;
1215
+ name: z.ZodString;
1216
+ namespace: z.ZodString;
1217
+ chart: z.ZodString;
1218
+ status: z.ZodEnum<{
1219
+ InstallSucceeded: "InstallSucceeded";
1220
+ InstallFailed: "InstallFailed";
1221
+ UpgradeSucceeded: "UpgradeSucceeded";
1222
+ UpgradeFailed: "UpgradeFailed";
1223
+ TestSucceeded: "TestSucceeded";
1224
+ TestFailed: "TestFailed";
1225
+ RollbackSucceeded: "RollbackSucceeded";
1226
+ RollbackFailed: "RollbackFailed";
1227
+ UninstallSucceeded: "UninstallSucceeded";
1228
+ UninstallFailed: "UninstallFailed";
1229
+ ArtifactFailed: "ArtifactFailed";
1230
+ DependencyNotReady: "DependencyNotReady";
1231
+ Progressing: "Progressing";
1232
+ SourceNotReady: "SourceNotReady";
1233
+ }>;
1234
+ version_current: z.ZodString;
1235
+ created_at: z.ZodString;
1236
+ updated_at: z.ZodString;
1237
+ ready: z.ZodBoolean;
1238
+ }, z.core.$strip>>;
1239
+ export declare const zCreateChartBody: z.ZodObject<{
1240
+ values: z.ZodString;
1241
+ version_channel: z.ZodString;
1242
+ name: z.ZodString;
1243
+ namespace: z.ZodString;
1244
+ chart: z.ZodString;
1245
+ }, z.core.$strip>;
1246
+ export declare const zCreateChartPath: z.ZodObject<{
1247
+ cluster_id: z.ZodString;
1248
+ }, z.core.$strip>;
1249
+ /**
1250
+ * Successfully created. Returns created Chart ID.
1251
+ */
1252
+ export declare const zCreateChartResponse: z.ZodString;
1253
+ export declare const zDeleteChartPath: z.ZodObject<{
1254
+ cluster_id: z.ZodString;
1255
+ chart_name: z.ZodString;
1256
+ }, z.core.$strip>;
1257
+ /**
1258
+ * Successfully deleted.
1259
+ */
1260
+ export declare const zDeleteChartResponse: z.ZodString;
1261
+ export declare const zGetChartPath: z.ZodObject<{
1262
+ cluster_id: z.ZodString;
1263
+ chart_name: z.ZodString;
1264
+ }, z.core.$strip>;
1265
+ /**
1266
+ * Returns a single object containing chart details.
1267
+ */
1268
+ export declare const zGetChartResponse: z.ZodObject<{
1269
+ values: z.ZodString;
1270
+ version_channel: z.ZodString;
1271
+ name: z.ZodString;
1272
+ namespace: z.ZodString;
1273
+ chart: z.ZodString;
1274
+ status: z.ZodEnum<{
1275
+ InstallSucceeded: "InstallSucceeded";
1276
+ InstallFailed: "InstallFailed";
1277
+ UpgradeSucceeded: "UpgradeSucceeded";
1278
+ UpgradeFailed: "UpgradeFailed";
1279
+ TestSucceeded: "TestSucceeded";
1280
+ TestFailed: "TestFailed";
1281
+ RollbackSucceeded: "RollbackSucceeded";
1282
+ RollbackFailed: "RollbackFailed";
1283
+ UninstallSucceeded: "UninstallSucceeded";
1284
+ UninstallFailed: "UninstallFailed";
1285
+ ArtifactFailed: "ArtifactFailed";
1286
+ DependencyNotReady: "DependencyNotReady";
1287
+ Progressing: "Progressing";
1288
+ SourceNotReady: "SourceNotReady";
1289
+ }>;
1290
+ version_current: z.ZodString;
1291
+ created_at: z.ZodString;
1292
+ updated_at: z.ZodString;
1293
+ ready: z.ZodBoolean;
1294
+ }, z.core.$strip>;
1295
+ export declare const zUpdateChartBody: z.ZodObject<{
1296
+ values: z.ZodString;
1297
+ version_channel: z.ZodString;
1298
+ }, z.core.$strip>;
1299
+ export declare const zUpdateChartPath: z.ZodObject<{
1300
+ cluster_id: z.ZodString;
1301
+ chart_name: z.ZodString;
1302
+ }, z.core.$strip>;
1303
+ /**
1304
+ * Successfully updated.
1305
+ */
1306
+ export declare const zUpdateChartResponse: z.ZodString;
1307
+ export declare const zListFleetsPath: z.ZodObject<{
1308
+ cluster_id: z.ZodString;
1309
+ }, z.core.$strip>;
1310
+ /**
1311
+ * An array of fleets
1312
+ */
1313
+ export declare const zListFleetsResponse: z.ZodArray<z.ZodObject<{
1314
+ limits: z.ZodOptional<z.ZodObject<{
1315
+ cpu: z.ZodNumber;
1316
+ }, z.core.$strip>>;
1317
+ gcp: z.ZodOptional<z.ZodObject<{
1318
+ enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1319
+ project: z.ZodString;
1320
+ }, z.core.$strip>>;
1321
+ hetzner: z.ZodOptional<z.ZodObject<{
1322
+ enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1323
+ apiKey: z.ZodString;
1324
+ }, z.core.$strip>>;
1325
+ aws: z.ZodOptional<z.ZodObject<{
1326
+ enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1327
+ controllerRoleArn: z.ZodString;
1328
+ }, z.core.$strip>>;
1329
+ id: z.ZodString;
1330
+ }, z.core.$strip>>;
1331
+ export declare const zCreateFleetBody: z.ZodObject<{
1332
+ limits: z.ZodOptional<z.ZodObject<{
1333
+ cpu: z.ZodNumber;
1334
+ }, z.core.$strip>>;
1335
+ gcp: z.ZodOptional<z.ZodObject<{
1336
+ enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1337
+ project: z.ZodString;
1338
+ }, z.core.$strip>>;
1339
+ hetzner: z.ZodOptional<z.ZodObject<{
1340
+ enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1341
+ apiKey: z.ZodString;
1342
+ }, z.core.$strip>>;
1343
+ aws: z.ZodOptional<z.ZodObject<{
1344
+ enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1345
+ controllerRoleArn: z.ZodString;
1346
+ }, z.core.$strip>>;
2396
1347
  id: z.ZodString;
2397
- }, z.core.$strip>>;
2398
- export declare const zCreateFleetData: z.ZodObject<{
2399
- body: z.ZodObject<{
2400
- limits: z.ZodOptional<z.ZodObject<{
2401
- cpu: z.ZodNumber;
2402
- }, z.core.$strip>>;
2403
- gcp: z.ZodOptional<z.ZodObject<{
2404
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
2405
- project: z.ZodString;
2406
- }, z.core.$strip>>;
2407
- hetzner: z.ZodOptional<z.ZodObject<{
2408
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
2409
- apiKey: z.ZodString;
2410
- }, z.core.$strip>>;
2411
- aws: z.ZodOptional<z.ZodObject<{
2412
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
2413
- controllerRoleArn: z.ZodString;
2414
- }, z.core.$strip>>;
2415
- id: z.ZodString;
2416
- }, z.core.$strip>;
2417
- path: z.ZodObject<{
2418
- cluster_id: z.ZodString;
2419
- }, z.core.$strip>;
2420
- query: z.ZodOptional<z.ZodNever>;
1348
+ }, z.core.$strip>;
1349
+ export declare const zCreateFleetPath: z.ZodObject<{
1350
+ cluster_id: z.ZodString;
2421
1351
  }, z.core.$strip>;
2422
1352
  /**
2423
1353
  * Successfully created. Returns created Fleet ID.
2424
1354
  */
2425
1355
  export declare const zCreateFleetResponse: z.ZodString;
2426
- export declare const zDeleteFleetData: z.ZodObject<{
2427
- body: z.ZodOptional<z.ZodNever>;
2428
- path: z.ZodObject<{
2429
- cluster_id: z.ZodString;
2430
- fleet_name: z.ZodString;
2431
- }, z.core.$strip>;
2432
- query: z.ZodOptional<z.ZodNever>;
1356
+ export declare const zDeleteFleetPath: z.ZodObject<{
1357
+ cluster_id: z.ZodString;
1358
+ fleet_name: z.ZodString;
2433
1359
  }, z.core.$strip>;
2434
1360
  /**
2435
1361
  * Successfully deleted.
2436
1362
  */
2437
1363
  export declare const zDeleteFleetResponse: z.ZodString;
2438
- export declare const zGetFleetData: z.ZodObject<{
2439
- body: z.ZodOptional<z.ZodNever>;
2440
- path: z.ZodObject<{
2441
- cluster_id: z.ZodString;
2442
- fleet_name: z.ZodString;
2443
- }, z.core.$strip>;
2444
- query: z.ZodOptional<z.ZodNever>;
1364
+ export declare const zGetFleetPath: z.ZodObject<{
1365
+ cluster_id: z.ZodString;
1366
+ fleet_name: z.ZodString;
2445
1367
  }, z.core.$strip>;
2446
1368
  /**
2447
1369
  * Returns a single object containing fleet details.
@@ -2464,45 +1386,33 @@ export declare const zGetFleetResponse: z.ZodObject<{
2464
1386
  }, z.core.$strip>>;
2465
1387
  id: z.ZodString;
2466
1388
  }, z.core.$strip>;
2467
- export declare const zUpdateFleetData: z.ZodObject<{
2468
- body: z.ZodObject<{
2469
- limits: z.ZodOptional<z.ZodObject<{
2470
- cpu: z.ZodNumber;
2471
- }, z.core.$strip>>;
2472
- gcp: z.ZodOptional<z.ZodObject<{
2473
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
2474
- project: z.ZodString;
2475
- }, z.core.$strip>>;
2476
- hetzner: z.ZodOptional<z.ZodObject<{
2477
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
2478
- apiKey: z.ZodString;
2479
- }, z.core.$strip>>;
2480
- aws: z.ZodOptional<z.ZodObject<{
2481
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
2482
- controllerRoleArn: z.ZodString;
2483
- }, z.core.$strip>>;
2484
- }, z.core.$strip>;
2485
- path: z.ZodObject<{
2486
- cluster_id: z.ZodString;
2487
- fleet_name: z.ZodString;
2488
- }, z.core.$strip>;
2489
- query: z.ZodOptional<z.ZodNever>;
1389
+ export declare const zUpdateFleetBody: z.ZodObject<{
1390
+ limits: z.ZodOptional<z.ZodObject<{
1391
+ cpu: z.ZodNumber;
1392
+ }, z.core.$strip>>;
1393
+ gcp: z.ZodOptional<z.ZodObject<{
1394
+ enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1395
+ project: z.ZodString;
1396
+ }, z.core.$strip>>;
1397
+ hetzner: z.ZodOptional<z.ZodObject<{
1398
+ enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1399
+ apiKey: z.ZodString;
1400
+ }, z.core.$strip>>;
1401
+ aws: z.ZodOptional<z.ZodObject<{
1402
+ enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1403
+ controllerRoleArn: z.ZodString;
1404
+ }, z.core.$strip>>;
1405
+ }, z.core.$strip>;
1406
+ export declare const zUpdateFleetPath: z.ZodObject<{
1407
+ cluster_id: z.ZodString;
1408
+ fleet_name: z.ZodString;
2490
1409
  }, z.core.$strip>;
2491
1410
  /**
2492
1411
  * Successfully updated.
2493
1412
  */
2494
1413
  export declare const zUpdateFleetResponse: z.ZodString;
2495
- export declare const zQueryClusterData: z.ZodObject<{
2496
- body: z.ZodOptional<z.ZodNever>;
2497
- path: z.ZodObject<{
2498
- cluster_id: z.ZodString;
2499
- }, z.core.$strip>;
2500
- query: z.ZodOptional<z.ZodNever>;
2501
- }, z.core.$strip>;
2502
- export declare const zListClustersData: z.ZodObject<{
2503
- body: z.ZodOptional<z.ZodNever>;
2504
- path: z.ZodOptional<z.ZodNever>;
2505
- query: z.ZodOptional<z.ZodNever>;
1414
+ export declare const zQueryClusterPath: z.ZodObject<{
1415
+ cluster_id: z.ZodString;
2506
1416
  }, z.core.$strip>;
2507
1417
  /**
2508
1418
  * An array of clusters
@@ -2513,18 +1423,18 @@ export declare const zListClustersResponse: z.ZodArray<z.ZodObject<{
2513
1423
  basic: "basic";
2514
1424
  pro: "pro";
2515
1425
  }>;
2516
- region: z.ZodOptional<z.ZodEnum<{
2517
- staging: "staging";
1426
+ region: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
1427
+ "staging-1a": "staging-1a";
2518
1428
  "northamerica-central-1": "northamerica-central-1";
2519
1429
  "europe-central-1a": "europe-central-1a";
2520
1430
  "northamerica-central-1a": "northamerica-central-1a";
2521
- }>>;
2522
- version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
1431
+ }>>>;
2523
1432
  id: z.ZodUUID;
2524
1433
  status: z.ZodEnum<{
2525
1434
  deleted: "deleted";
2526
1435
  failed: "failed";
2527
1436
  active: "active";
1437
+ disabled: "disabled";
2528
1438
  creating: "creating";
2529
1439
  deployed: "deployed";
2530
1440
  updating: "updating";
@@ -2532,51 +1442,48 @@ export declare const zListClustersResponse: z.ZodArray<z.ZodObject<{
2532
1442
  endpoint: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
2533
1443
  "": "";
2534
1444
  }>]>>;
1445
+ endpoint_public: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
1446
+ "": "";
1447
+ }>]>>;
2535
1448
  certificate_ca: z.ZodOptional<z.ZodString>;
2536
1449
  version_current: z.ZodOptional<z.ZodString>;
2537
1450
  created_at: z.ZodOptional<z.ZodString>;
2538
1451
  updated_at: z.ZodOptional<z.ZodString>;
2539
1452
  ready: z.ZodOptional<z.ZodBoolean>;
1453
+ version_channel: z.ZodOptional<z.ZodString>;
2540
1454
  }, z.core.$strip>>;
2541
- export declare const zCreateClusterData: z.ZodObject<{
2542
- body: z.ZodObject<{
2543
- name: z.ZodString;
2544
- tier: z.ZodEnum<{
2545
- basic: "basic";
2546
- pro: "pro";
2547
- }>;
2548
- region: z.ZodOptional<z.ZodEnum<{
2549
- staging: "staging";
2550
- "northamerica-central-1": "northamerica-central-1";
2551
- "europe-central-1a": "europe-central-1a";
2552
- "northamerica-central-1a": "northamerica-central-1a";
2553
- }>>;
2554
- version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
2555
- }, z.core.$strip>;
2556
- path: z.ZodOptional<z.ZodNever>;
2557
- query: z.ZodOptional<z.ZodNever>;
1455
+ export declare const zCreateClusterBody: z.ZodObject<{
1456
+ name: z.ZodString;
1457
+ tier: z.ZodEnum<{
1458
+ basic: "basic";
1459
+ pro: "pro";
1460
+ }>;
1461
+ region: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
1462
+ "staging-1a": "staging-1a";
1463
+ "northamerica-central-1": "northamerica-central-1";
1464
+ "europe-central-1a": "europe-central-1a";
1465
+ "northamerica-central-1a": "northamerica-central-1a";
1466
+ }>>>;
1467
+ version_channel: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
1468
+ "1.x.x-cfke.x": "1.x.x-cfke.x";
1469
+ "1.31.x-cfke.x": "1.31.x-cfke.x";
1470
+ "1.32.x-cfke.x": "1.32.x-cfke.x";
1471
+ "1.33.x-cfke.x": "1.33.x-cfke.x";
1472
+ }>>>;
2558
1473
  }, z.core.$strip>;
2559
1474
  /**
2560
1475
  * Successfully created. Returns created Cluster ID.
2561
1476
  */
2562
1477
  export declare const zCreateClusterResponse: z.ZodString;
2563
- export declare const zDeleteClusterData: z.ZodObject<{
2564
- body: z.ZodOptional<z.ZodNever>;
2565
- path: z.ZodObject<{
2566
- cluster_id: z.ZodString;
2567
- }, z.core.$strip>;
2568
- query: z.ZodOptional<z.ZodNever>;
1478
+ export declare const zDeleteClusterPath: z.ZodObject<{
1479
+ cluster_id: z.ZodString;
2569
1480
  }, z.core.$strip>;
2570
1481
  /**
2571
1482
  * Successfully deleted.
2572
1483
  */
2573
1484
  export declare const zDeleteClusterResponse: z.ZodString;
2574
- export declare const zGetClusterData: z.ZodObject<{
2575
- body: z.ZodOptional<z.ZodNever>;
2576
- path: z.ZodObject<{
2577
- cluster_id: z.ZodString;
2578
- }, z.core.$strip>;
2579
- query: z.ZodOptional<z.ZodNever>;
1485
+ export declare const zGetClusterPath: z.ZodObject<{
1486
+ cluster_id: z.ZodString;
2580
1487
  }, z.core.$strip>;
2581
1488
  /**
2582
1489
  * Returns a single object containing cluster details.
@@ -2587,18 +1494,18 @@ export declare const zGetClusterResponse: z.ZodObject<{
2587
1494
  basic: "basic";
2588
1495
  pro: "pro";
2589
1496
  }>;
2590
- region: z.ZodOptional<z.ZodEnum<{
2591
- staging: "staging";
1497
+ region: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
1498
+ "staging-1a": "staging-1a";
2592
1499
  "northamerica-central-1": "northamerica-central-1";
2593
1500
  "europe-central-1a": "europe-central-1a";
2594
1501
  "northamerica-central-1a": "northamerica-central-1a";
2595
- }>>;
2596
- version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
1502
+ }>>>;
2597
1503
  id: z.ZodUUID;
2598
1504
  status: z.ZodEnum<{
2599
1505
  deleted: "deleted";
2600
1506
  failed: "failed";
2601
1507
  active: "active";
1508
+ disabled: "disabled";
2602
1509
  creating: "creating";
2603
1510
  deployed: "deployed";
2604
1511
  updating: "updating";
@@ -2606,25 +1513,26 @@ export declare const zGetClusterResponse: z.ZodObject<{
2606
1513
  endpoint: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
2607
1514
  "": "";
2608
1515
  }>]>>;
1516
+ endpoint_public: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
1517
+ "": "";
1518
+ }>]>>;
2609
1519
  certificate_ca: z.ZodOptional<z.ZodString>;
2610
1520
  version_current: z.ZodOptional<z.ZodString>;
2611
1521
  created_at: z.ZodOptional<z.ZodString>;
2612
1522
  updated_at: z.ZodOptional<z.ZodString>;
2613
1523
  ready: z.ZodOptional<z.ZodBoolean>;
1524
+ version_channel: z.ZodOptional<z.ZodString>;
2614
1525
  }, z.core.$strip>;
2615
- export declare const zUpdateClusterData: z.ZodObject<{
2616
- body: z.ZodObject<{
2617
- name: z.ZodOptional<z.ZodString>;
2618
- tier: z.ZodEnum<{
2619
- basic: "basic";
2620
- pro: "pro";
2621
- }>;
2622
- version_channel: z.ZodOptional<z.ZodString>;
2623
- }, z.core.$strip>;
2624
- path: z.ZodObject<{
2625
- cluster_id: z.ZodString;
2626
- }, z.core.$strip>;
2627
- query: z.ZodOptional<z.ZodNever>;
1526
+ export declare const zUpdateClusterBody: z.ZodObject<{
1527
+ name: z.ZodOptional<z.ZodString>;
1528
+ tier: z.ZodEnum<{
1529
+ basic: "basic";
1530
+ pro: "pro";
1531
+ }>;
1532
+ version_channel: z.ZodOptional<z.ZodString>;
1533
+ }, z.core.$strip>;
1534
+ export declare const zUpdateClusterPath: z.ZodObject<{
1535
+ cluster_id: z.ZodString;
2628
1536
  }, z.core.$strip>;
2629
1537
  /**
2630
1538
  * Successfully updated. Returns updated cluster details.
@@ -2635,18 +1543,18 @@ export declare const zUpdateClusterResponse: z.ZodObject<{
2635
1543
  basic: "basic";
2636
1544
  pro: "pro";
2637
1545
  }>;
2638
- region: z.ZodOptional<z.ZodEnum<{
2639
- staging: "staging";
1546
+ region: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
1547
+ "staging-1a": "staging-1a";
2640
1548
  "northamerica-central-1": "northamerica-central-1";
2641
1549
  "europe-central-1a": "europe-central-1a";
2642
1550
  "northamerica-central-1a": "northamerica-central-1a";
2643
- }>>;
2644
- version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
1551
+ }>>>;
2645
1552
  id: z.ZodUUID;
2646
1553
  status: z.ZodEnum<{
2647
1554
  deleted: "deleted";
2648
1555
  failed: "failed";
2649
1556
  active: "active";
1557
+ disabled: "disabled";
2650
1558
  creating: "creating";
2651
1559
  deployed: "deployed";
2652
1560
  updating: "updating";
@@ -2654,18 +1562,18 @@ export declare const zUpdateClusterResponse: z.ZodObject<{
2654
1562
  endpoint: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
2655
1563
  "": "";
2656
1564
  }>]>>;
1565
+ endpoint_public: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
1566
+ "": "";
1567
+ }>]>>;
2657
1568
  certificate_ca: z.ZodOptional<z.ZodString>;
2658
1569
  version_current: z.ZodOptional<z.ZodString>;
2659
1570
  created_at: z.ZodOptional<z.ZodString>;
2660
1571
  updated_at: z.ZodOptional<z.ZodString>;
2661
1572
  ready: z.ZodOptional<z.ZodBoolean>;
1573
+ version_channel: z.ZodOptional<z.ZodString>;
2662
1574
  }, z.core.$strip>;
2663
- export declare const zGetJoinInformationData: z.ZodObject<{
2664
- body: z.ZodOptional<z.ZodNever>;
2665
- path: z.ZodObject<{
2666
- cluster_id: z.ZodString;
2667
- }, z.core.$strip>;
2668
- query: z.ZodOptional<z.ZodNever>;
1575
+ export declare const zGetJoinInformationPath: z.ZodObject<{
1576
+ cluster_id: z.ZodString;
2669
1577
  }, z.core.$strip>;
2670
1578
  /**
2671
1579
  * An object of cluster join information
@@ -2673,6 +1581,7 @@ export declare const zGetJoinInformationData: z.ZodObject<{
2673
1581
  export declare const zGetJoinInformationResponse: z.ZodObject<{
2674
1582
  certificate_authority: z.ZodString;
2675
1583
  endpoint: z.ZodURL;
1584
+ cluster_dns: z.ZodString;
2676
1585
  auth_key: z.ZodString;
2677
1586
  bootstrap_token: z.ZodString;
2678
1587
  versions: z.ZodObject<{
@@ -2687,11 +1596,6 @@ export declare const zGetJoinInformationResponse: z.ZodObject<{
2687
1596
  gcp_workload_identity_provider: z.ZodString;
2688
1597
  }, z.core.$strip>;
2689
1598
  }, z.core.$strip>;
2690
- export declare const zListInvitesData: z.ZodObject<{
2691
- body: z.ZodOptional<z.ZodNever>;
2692
- path: z.ZodOptional<z.ZodNever>;
2693
- query: z.ZodOptional<z.ZodNever>;
2694
- }, z.core.$strip>;
2695
1599
  /**
2696
1600
  * An array of invites
2697
1601
  */
@@ -2702,12 +1606,8 @@ export declare const zListInvitesResponse: z.ZodArray<z.ZodObject<{
2702
1606
  email: z.ZodOptional<z.ZodEmail>;
2703
1607
  code: z.ZodOptional<z.ZodString>;
2704
1608
  }, z.core.$strip>>;
2705
- export declare const zCreateInviteData: z.ZodObject<{
2706
- body: z.ZodObject<{
2707
- email: z.ZodOptional<z.ZodString>;
2708
- }, z.core.$strip>;
2709
- path: z.ZodOptional<z.ZodNever>;
2710
- query: z.ZodOptional<z.ZodNever>;
1609
+ export declare const zCreateInviteBody: z.ZodObject<{
1610
+ email: z.ZodOptional<z.ZodString>;
2711
1611
  }, z.core.$strip>;
2712
1612
  /**
2713
1613
  * Successfully created. Returns created invite details.
@@ -2719,12 +1619,8 @@ export declare const zCreateInviteResponse: z.ZodObject<{
2719
1619
  email: z.ZodOptional<z.ZodEmail>;
2720
1620
  code: z.ZodOptional<z.ZodString>;
2721
1621
  }, z.core.$strip>;
2722
- export declare const zGetInviteData: z.ZodObject<{
2723
- body: z.ZodOptional<z.ZodNever>;
2724
- path: z.ZodObject<{
2725
- code: z.ZodString;
2726
- }, z.core.$strip>;
2727
- query: z.ZodOptional<z.ZodNever>;
1622
+ export declare const zGetInvitePath: z.ZodObject<{
1623
+ code: z.ZodString;
2728
1624
  }, z.core.$strip>;
2729
1625
  /**
2730
1626
  * Returns a single object containing invite details.
@@ -2736,65 +1632,65 @@ export declare const zGetInviteResponse: z.ZodObject<{
2736
1632
  email: z.ZodOptional<z.ZodEmail>;
2737
1633
  code: z.ZodOptional<z.ZodString>;
2738
1634
  }, z.core.$strip>;
2739
- export declare const zDeleteInviteData: z.ZodObject<{
2740
- body: z.ZodOptional<z.ZodNever>;
2741
- path: z.ZodObject<{
2742
- email: z.ZodString;
2743
- }, z.core.$strip>;
2744
- query: z.ZodOptional<z.ZodNever>;
2745
- }, z.core.$strip>;
2746
- export declare const zListMarketplaceChartsData: z.ZodObject<{
2747
- body: z.ZodOptional<z.ZodNever>;
2748
- path: z.ZodOptional<z.ZodNever>;
2749
- query: z.ZodOptional<z.ZodNever>;
1635
+ export declare const zDeleteInvitePath: z.ZodObject<{
1636
+ email: z.ZodString;
2750
1637
  }, z.core.$strip>;
2751
1638
  /**
2752
1639
  * An array of chart listings in the marketplace.
2753
1640
  */
2754
1641
  export declare const zListMarketplaceChartsResponse: z.ZodArray<z.ZodObject<{
2755
- id: z.ZodString;
2756
1642
  name: z.ZodString;
2757
- developer: z.ZodString;
2758
- description: z.ZodString;
2759
- logoUrl: z.ZodString;
2760
- longDescription: z.ZodString;
2761
- categories: z.ZodArray<z.ZodString>;
1643
+ versions: z.ZodArray<z.ZodString>;
2762
1644
  version_channels: z.ZodArray<z.ZodString>;
2763
- value_schemas: z.ZodArray<z.ZodObject<{
1645
+ latestVersion: z.ZodString;
1646
+ metadata: z.ZodOptional<z.ZodObject<{
1647
+ name: z.ZodString;
2764
1648
  version: z.ZodString;
2765
- schema: z.ZodString;
2766
- placeholder: z.ZodString;
1649
+ description: z.ZodOptional<z.ZodString>;
1650
+ appVersion: z.ZodOptional<z.ZodString>;
1651
+ apiVersion: z.ZodOptional<z.ZodString>;
1652
+ keywords: z.ZodOptional<z.ZodArray<z.ZodString>>;
1653
+ home: z.ZodOptional<z.ZodString>;
1654
+ icon: z.ZodOptional<z.ZodString>;
1655
+ sources: z.ZodOptional<z.ZodArray<z.ZodString>>;
1656
+ maintainers: z.ZodOptional<z.ZodArray<z.ZodObject<{
1657
+ name: z.ZodString;
1658
+ email: z.ZodOptional<z.ZodString>;
1659
+ }, z.core.$strip>>>;
2767
1660
  }, z.core.$strip>>;
2768
1661
  }, z.core.$strip>>;
2769
- export declare const zGetMarketplaceChartData: z.ZodObject<{
2770
- body: z.ZodOptional<z.ZodNever>;
2771
- path: z.ZodObject<{
2772
- listing_id: z.ZodString;
2773
- }, z.core.$strip>;
2774
- query: z.ZodOptional<z.ZodNever>;
1662
+ export declare const zGetMarketplaceChartFilesPath: z.ZodObject<{
1663
+ chart_name: z.ZodString;
1664
+ version_channel: z.ZodString;
2775
1665
  }, z.core.$strip>;
2776
1666
  /**
2777
- * Returns an object containing the chart listing details.
1667
+ * Returns an object containing the chart files for the latest matching version.
2778
1668
  */
2779
- export declare const zGetMarketplaceChartResponse: z.ZodObject<{
2780
- id: z.ZodString;
2781
- name: z.ZodString;
2782
- developer: z.ZodString;
2783
- description: z.ZodString;
2784
- logoUrl: z.ZodString;
2785
- longDescription: z.ZodString;
2786
- categories: z.ZodArray<z.ZodString>;
2787
- version_channels: z.ZodArray<z.ZodString>;
2788
- value_schemas: z.ZodArray<z.ZodObject<{
2789
- version: z.ZodString;
2790
- schema: z.ZodString;
2791
- placeholder: z.ZodString;
2792
- }, z.core.$strip>>;
1669
+ export declare const zGetMarketplaceChartFilesResponse: z.ZodObject<{
1670
+ chartYaml: z.ZodOptional<z.ZodString>;
1671
+ valuesYaml: z.ZodOptional<z.ZodString>;
1672
+ valuesSchemaJson: z.ZodOptional<z.ZodString>;
1673
+ }, z.core.$strip>;
1674
+ /**
1675
+ * JSON-RPC 2.0 request payload
1676
+ */
1677
+ export declare const zPostMcpBody: z.ZodObject<{
1678
+ jsonrpc: z.ZodOptional<z.ZodString>;
1679
+ method: z.ZodOptional<z.ZodString>;
1680
+ id: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>;
1681
+ params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
2793
1682
  }, z.core.$strip>;
2794
- export declare const zGetOrganizationData: z.ZodObject<{
2795
- body: z.ZodOptional<z.ZodNever>;
2796
- path: z.ZodOptional<z.ZodNever>;
2797
- query: z.ZodOptional<z.ZodNever>;
1683
+ /**
1684
+ * JSON-RPC 2.0 success or error response
1685
+ */
1686
+ export declare const zPostMcpResponse: z.ZodObject<{
1687
+ jsonrpc: z.ZodOptional<z.ZodString>;
1688
+ id: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>;
1689
+ result: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1690
+ error: z.ZodOptional<z.ZodObject<{
1691
+ code: z.ZodOptional<z.ZodInt>;
1692
+ message: z.ZodOptional<z.ZodString>;
1693
+ }, z.core.$strip>>;
2798
1694
  }, z.core.$strip>;
2799
1695
  /**
2800
1696
  * Returns a single object containing organization details.
@@ -2815,6 +1711,7 @@ export declare const zGetOrganizationResponse: z.ZodObject<{
2815
1711
  id: z.ZodString;
2816
1712
  label: z.ZodString;
2817
1713
  }, z.core.$strip>>;
1714
+ cfcr_storage_gb: z.ZodInt;
2818
1715
  }, z.core.$strip>;
2819
1716
  status: z.ZodEnum<{
2820
1717
  active: "active";
@@ -2822,22 +1719,277 @@ export declare const zGetOrganizationResponse: z.ZodObject<{
2822
1719
  suspended: "suspended";
2823
1720
  }>;
2824
1721
  }, z.core.$strip>;
2825
- export declare const zCreateOrganizationData: z.ZodObject<{
2826
- body: z.ZodObject<{
2827
- email: z.ZodEmail;
2828
- first_name: z.ZodString;
2829
- last_name: z.ZodString;
2830
- company_name: z.ZodString;
2831
- password: z.ZodString;
2832
- }, z.core.$strip>;
2833
- path: z.ZodOptional<z.ZodNever>;
2834
- query: z.ZodOptional<z.ZodNever>;
1722
+ export declare const zCreateOrganizationBody: z.ZodObject<{
1723
+ email: z.ZodEmail;
1724
+ first_name: z.ZodString;
1725
+ last_name: z.ZodString;
1726
+ company_name: z.ZodString;
1727
+ password: z.ZodString;
1728
+ }, z.core.$strip>;
1729
+ /**
1730
+ * List of repositories
1731
+ */
1732
+ export declare const zListRepositoriesResponse: z.ZodArray<z.ZodObject<{
1733
+ name: z.ZodString;
1734
+ region: z.ZodString;
1735
+ uri: z.ZodString;
1736
+ }, z.core.$strip>>;
1737
+ export declare const zListTagsPath: z.ZodObject<{
1738
+ region: z.ZodString;
1739
+ repository: z.ZodString;
1740
+ }, z.core.$strip>;
1741
+ /**
1742
+ * Repository with tags
1743
+ */
1744
+ export declare const zListTagsResponse: z.ZodObject<{
1745
+ name: z.ZodString;
1746
+ region: z.ZodString;
1747
+ uri: z.ZodString;
1748
+ tags: z.ZodArray<z.ZodObject<{
1749
+ name: z.ZodString;
1750
+ size: z.ZodNumber;
1751
+ mediaType: z.ZodOptional<z.ZodString>;
1752
+ platforms: z.ZodOptional<z.ZodArray<z.ZodString>>;
1753
+ }, z.core.$strip>>;
1754
+ totalSize: z.ZodNumber;
1755
+ }, z.core.$strip>;
1756
+ export declare const zDeleteTagPath: z.ZodObject<{
1757
+ region: z.ZodString;
1758
+ repository: z.ZodString;
1759
+ tag: z.ZodString;
1760
+ }, z.core.$strip>;
1761
+ export declare const zGetTagPath: z.ZodObject<{
1762
+ region: z.ZodString;
1763
+ repository: z.ZodString;
1764
+ tag: z.ZodString;
1765
+ }, z.core.$strip>;
1766
+ /**
1767
+ * Tag details
1768
+ */
1769
+ export declare const zGetTagResponse: z.ZodObject<{
1770
+ name: z.ZodString;
1771
+ digest: z.ZodString;
1772
+ mediaType: z.ZodOptional<z.ZodString>;
1773
+ config: z.ZodOptional<z.ZodObject<{
1774
+ size: z.ZodNumber;
1775
+ }, z.core.$strip>>;
1776
+ layers: z.ZodOptional<z.ZodArray<z.ZodObject<{
1777
+ digest: z.ZodOptional<z.ZodString>;
1778
+ size: z.ZodNumber;
1779
+ }, z.core.$strip>>>;
1780
+ manifests: z.ZodOptional<z.ZodArray<z.ZodObject<{
1781
+ digest: z.ZodString;
1782
+ platform: z.ZodOptional<z.ZodObject<{
1783
+ architecture: z.ZodString;
1784
+ os: z.ZodString;
1785
+ variant: z.ZodOptional<z.ZodString>;
1786
+ }, z.core.$strip>>;
1787
+ layers: z.ZodOptional<z.ZodArray<z.ZodObject<{
1788
+ digest: z.ZodOptional<z.ZodString>;
1789
+ size: z.ZodNumber;
1790
+ }, z.core.$strip>>>;
1791
+ size: z.ZodOptional<z.ZodNumber>;
1792
+ }, z.core.$strip>>>;
1793
+ size: z.ZodNumber;
1794
+ region: z.ZodString;
1795
+ repository: z.ZodString;
1796
+ uri: z.ZodString;
1797
+ }, z.core.$strip>;
1798
+ /**
1799
+ * Tickets for the organization.
1800
+ */
1801
+ export declare const zListTicketsResponse: z.ZodObject<{
1802
+ items: z.ZodArray<z.ZodObject<{
1803
+ id: z.ZodString;
1804
+ status: z.ZodEnum<{
1805
+ closed: "closed";
1806
+ waiting_on_us: "waiting_on_us";
1807
+ waiting_on_user: "waiting_on_user";
1808
+ }>;
1809
+ category: z.ZodEnum<{
1810
+ billing: "billing";
1811
+ technical: "technical";
1812
+ general: "general";
1813
+ }>;
1814
+ summary: z.ZodString;
1815
+ closed_at: z.ZodOptional<z.ZodISODateTime>;
1816
+ date_created: z.ZodISODateTime;
1817
+ date_updated: z.ZodISODateTime;
1818
+ messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
1819
+ id: z.ZodString;
1820
+ type: z.ZodEnum<{
1821
+ customer_reply: "customer_reply";
1822
+ agent_reply: "agent_reply";
1823
+ }>;
1824
+ body: z.ZodString;
1825
+ author_first_name: z.ZodOptional<z.ZodString>;
1826
+ author_last_name: z.ZodOptional<z.ZodString>;
1827
+ attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
1828
+ id: z.ZodString;
1829
+ filename: z.ZodString;
1830
+ content_type: z.ZodString;
1831
+ size: z.ZodInt;
1832
+ }, z.core.$strip>>>;
1833
+ date_created: z.ZodISODateTime;
1834
+ }, z.core.$strip>>>;
1835
+ }, z.core.$strip>>;
1836
+ }, z.core.$strip>;
1837
+ export declare const zCreateTicketBody: z.ZodObject<{
1838
+ payload: z.ZodOptional<z.ZodString>;
1839
+ attachments: z.ZodOptional<z.ZodArray<z.ZodString>>;
1840
+ }, z.core.$strip>;
1841
+ /**
1842
+ * Ticket created.
1843
+ */
1844
+ export declare const zCreateTicketResponse: z.ZodObject<{
1845
+ id: z.ZodString;
1846
+ status: z.ZodEnum<{
1847
+ closed: "closed";
1848
+ waiting_on_us: "waiting_on_us";
1849
+ waiting_on_user: "waiting_on_user";
1850
+ }>;
1851
+ category: z.ZodEnum<{
1852
+ billing: "billing";
1853
+ technical: "technical";
1854
+ general: "general";
1855
+ }>;
1856
+ summary: z.ZodString;
1857
+ closed_at: z.ZodOptional<z.ZodISODateTime>;
1858
+ date_created: z.ZodISODateTime;
1859
+ date_updated: z.ZodISODateTime;
1860
+ messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
1861
+ id: z.ZodString;
1862
+ type: z.ZodEnum<{
1863
+ customer_reply: "customer_reply";
1864
+ agent_reply: "agent_reply";
1865
+ }>;
1866
+ body: z.ZodString;
1867
+ author_first_name: z.ZodOptional<z.ZodString>;
1868
+ author_last_name: z.ZodOptional<z.ZodString>;
1869
+ attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
1870
+ id: z.ZodString;
1871
+ filename: z.ZodString;
1872
+ content_type: z.ZodString;
1873
+ size: z.ZodInt;
1874
+ }, z.core.$strip>>>;
1875
+ date_created: z.ZodISODateTime;
1876
+ }, z.core.$strip>>>;
1877
+ }, z.core.$strip>;
1878
+ export declare const zCloseTicketPath: z.ZodObject<{
1879
+ ticket_id: z.ZodString;
1880
+ }, z.core.$strip>;
1881
+ /**
1882
+ * Ticket closed.
1883
+ */
1884
+ export declare const zCloseTicketResponse: z.ZodObject<{
1885
+ id: z.ZodString;
1886
+ status: z.ZodEnum<{
1887
+ closed: "closed";
1888
+ waiting_on_us: "waiting_on_us";
1889
+ waiting_on_user: "waiting_on_user";
1890
+ }>;
1891
+ category: z.ZodEnum<{
1892
+ billing: "billing";
1893
+ technical: "technical";
1894
+ general: "general";
1895
+ }>;
1896
+ summary: z.ZodString;
1897
+ closed_at: z.ZodOptional<z.ZodISODateTime>;
1898
+ date_created: z.ZodISODateTime;
1899
+ date_updated: z.ZodISODateTime;
1900
+ messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
1901
+ id: z.ZodString;
1902
+ type: z.ZodEnum<{
1903
+ customer_reply: "customer_reply";
1904
+ agent_reply: "agent_reply";
1905
+ }>;
1906
+ body: z.ZodString;
1907
+ author_first_name: z.ZodOptional<z.ZodString>;
1908
+ author_last_name: z.ZodOptional<z.ZodString>;
1909
+ attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
1910
+ id: z.ZodString;
1911
+ filename: z.ZodString;
1912
+ content_type: z.ZodString;
1913
+ size: z.ZodInt;
1914
+ }, z.core.$strip>>>;
1915
+ date_created: z.ZodISODateTime;
1916
+ }, z.core.$strip>>>;
1917
+ }, z.core.$strip>;
1918
+ export declare const zGetTicketPath: z.ZodObject<{
1919
+ ticket_id: z.ZodString;
1920
+ }, z.core.$strip>;
1921
+ /**
1922
+ * Ticket with messages (internal notes excluded).
1923
+ */
1924
+ export declare const zGetTicketResponse: z.ZodObject<{
1925
+ id: z.ZodString;
1926
+ status: z.ZodEnum<{
1927
+ closed: "closed";
1928
+ waiting_on_us: "waiting_on_us";
1929
+ waiting_on_user: "waiting_on_user";
1930
+ }>;
1931
+ category: z.ZodEnum<{
1932
+ billing: "billing";
1933
+ technical: "technical";
1934
+ general: "general";
1935
+ }>;
1936
+ summary: z.ZodString;
1937
+ closed_at: z.ZodOptional<z.ZodISODateTime>;
1938
+ date_created: z.ZodISODateTime;
1939
+ date_updated: z.ZodISODateTime;
1940
+ messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
1941
+ id: z.ZodString;
1942
+ type: z.ZodEnum<{
1943
+ customer_reply: "customer_reply";
1944
+ agent_reply: "agent_reply";
1945
+ }>;
1946
+ body: z.ZodString;
1947
+ author_first_name: z.ZodOptional<z.ZodString>;
1948
+ author_last_name: z.ZodOptional<z.ZodString>;
1949
+ attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
1950
+ id: z.ZodString;
1951
+ filename: z.ZodString;
1952
+ content_type: z.ZodString;
1953
+ size: z.ZodInt;
1954
+ }, z.core.$strip>>>;
1955
+ date_created: z.ZodISODateTime;
1956
+ }, z.core.$strip>>>;
2835
1957
  }, z.core.$strip>;
2836
- export declare const zListTokensData: z.ZodObject<{
2837
- body: z.ZodOptional<z.ZodNever>;
2838
- path: z.ZodOptional<z.ZodNever>;
2839
- query: z.ZodOptional<z.ZodNever>;
1958
+ export declare const zReplyTicketBody: z.ZodObject<{
1959
+ payload: z.ZodOptional<z.ZodString>;
1960
+ attachments: z.ZodOptional<z.ZodArray<z.ZodString>>;
2840
1961
  }, z.core.$strip>;
1962
+ export declare const zReplyTicketPath: z.ZodObject<{
1963
+ ticket_id: z.ZodString;
1964
+ }, z.core.$strip>;
1965
+ /**
1966
+ * Reply appended.
1967
+ */
1968
+ export declare const zReplyTicketResponse: z.ZodObject<{
1969
+ id: z.ZodString;
1970
+ type: z.ZodEnum<{
1971
+ customer_reply: "customer_reply";
1972
+ agent_reply: "agent_reply";
1973
+ }>;
1974
+ body: z.ZodString;
1975
+ author_first_name: z.ZodOptional<z.ZodString>;
1976
+ author_last_name: z.ZodOptional<z.ZodString>;
1977
+ attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
1978
+ id: z.ZodString;
1979
+ filename: z.ZodString;
1980
+ content_type: z.ZodString;
1981
+ size: z.ZodInt;
1982
+ }, z.core.$strip>>>;
1983
+ date_created: z.ZodISODateTime;
1984
+ }, z.core.$strip>;
1985
+ export declare const zGetTicketAttachmentPath: z.ZodObject<{
1986
+ ticket_id: z.ZodString;
1987
+ attachment_id: z.ZodString;
1988
+ }, z.core.$strip>;
1989
+ /**
1990
+ * Attachment binary stream.
1991
+ */
1992
+ export declare const zGetTicketAttachmentResponse: z.ZodString;
2841
1993
  /**
2842
1994
  * Returns a list of access token details with masked secrets.
2843
1995
  */
@@ -2851,16 +2003,12 @@ export declare const zListTokensResponse: z.ZodArray<z.ZodObject<{
2851
2003
  secret: z.ZodOptional<z.ZodString>;
2852
2004
  date_created: z.ZodISODateTime;
2853
2005
  }, z.core.$strip>>;
2854
- export declare const zCreateTokenData: z.ZodObject<{
2855
- body: z.ZodObject<{
2856
- name: z.ZodString;
2857
- role: z.ZodEnum<{
2858
- Administrator: "Administrator";
2859
- User: "User";
2860
- }>;
2861
- }, z.core.$strip>;
2862
- path: z.ZodOptional<z.ZodNever>;
2863
- query: z.ZodOptional<z.ZodNever>;
2006
+ export declare const zCreateTokenBody: z.ZodObject<{
2007
+ name: z.ZodString;
2008
+ role: z.ZodEnum<{
2009
+ Administrator: "Administrator";
2010
+ User: "User";
2011
+ }>;
2864
2012
  }, z.core.$strip>;
2865
2013
  /**
2866
2014
  * Successfully created. Returns created token details with unmasked/raw secret.
@@ -2875,19 +2023,11 @@ export declare const zCreateTokenResponse: z.ZodObject<{
2875
2023
  secret: z.ZodOptional<z.ZodString>;
2876
2024
  date_created: z.ZodISODateTime;
2877
2025
  }, z.core.$strip>;
2878
- export declare const zDeleteTokenData: z.ZodObject<{
2879
- body: z.ZodOptional<z.ZodNever>;
2880
- path: z.ZodObject<{
2881
- token_id: z.ZodString;
2882
- }, z.core.$strip>;
2883
- query: z.ZodOptional<z.ZodNever>;
2026
+ export declare const zDeleteTokenPath: z.ZodObject<{
2027
+ token_id: z.ZodString;
2884
2028
  }, z.core.$strip>;
2885
- export declare const zGetTokenData: z.ZodObject<{
2886
- body: z.ZodOptional<z.ZodNever>;
2887
- path: z.ZodObject<{
2888
- token_id: z.ZodString;
2889
- }, z.core.$strip>;
2890
- query: z.ZodOptional<z.ZodNever>;
2029
+ export declare const zGetTokenPath: z.ZodObject<{
2030
+ token_id: z.ZodString;
2891
2031
  }, z.core.$strip>;
2892
2032
  /**
2893
2033
  * Returns access token details with masked secret.
@@ -2902,18 +2042,15 @@ export declare const zGetTokenResponse: z.ZodObject<{
2902
2042
  secret: z.ZodOptional<z.ZodString>;
2903
2043
  date_created: z.ZodISODateTime;
2904
2044
  }, z.core.$strip>;
2905
- export declare const zUpdateTokenData: z.ZodObject<{
2906
- body: z.ZodObject<{
2907
- name: z.ZodOptional<z.ZodString>;
2908
- role: z.ZodOptional<z.ZodEnum<{
2909
- Administrator: "Administrator";
2910
- User: "User";
2911
- }>>;
2912
- }, z.core.$strip>;
2913
- path: z.ZodObject<{
2914
- token_id: z.ZodString;
2915
- }, z.core.$strip>;
2916
- query: z.ZodOptional<z.ZodNever>;
2045
+ export declare const zUpdateTokenBody: z.ZodObject<{
2046
+ name: z.ZodOptional<z.ZodString>;
2047
+ role: z.ZodOptional<z.ZodEnum<{
2048
+ Administrator: "Administrator";
2049
+ User: "User";
2050
+ }>>;
2051
+ }, z.core.$strip>;
2052
+ export declare const zUpdateTokenPath: z.ZodObject<{
2053
+ token_id: z.ZodString;
2917
2054
  }, z.core.$strip>;
2918
2055
  /**
2919
2056
  * Successfully updated. Returns updated token details with masked secret.
@@ -2928,12 +2065,8 @@ export declare const zUpdateTokenResponse: z.ZodObject<{
2928
2065
  secret: z.ZodOptional<z.ZodString>;
2929
2066
  date_created: z.ZodISODateTime;
2930
2067
  }, z.core.$strip>;
2931
- export declare const zRegenerateTokenData: z.ZodObject<{
2932
- body: z.ZodOptional<z.ZodNever>;
2933
- path: z.ZodObject<{
2934
- token_id: z.ZodString;
2935
- }, z.core.$strip>;
2936
- query: z.ZodOptional<z.ZodNever>;
2068
+ export declare const zRegenerateTokenPath: z.ZodObject<{
2069
+ token_id: z.ZodString;
2937
2070
  }, z.core.$strip>;
2938
2071
  /**
2939
2072
  * Successfully updated. Returns updated token details with unmasked / raw secret.
@@ -2948,12 +2081,8 @@ export declare const zRegenerateTokenResponse: z.ZodObject<{
2948
2081
  secret: z.ZodOptional<z.ZodString>;
2949
2082
  date_created: z.ZodISODateTime;
2950
2083
  }, z.core.$strip>;
2951
- export declare const zListUserOrganizationsData: z.ZodObject<{
2952
- body: z.ZodOptional<z.ZodNever>;
2953
- path: z.ZodObject<{
2954
- email: z.ZodString;
2955
- }, z.core.$strip>;
2956
- query: z.ZodOptional<z.ZodNever>;
2084
+ export declare const zListUserOrganizationsPath: z.ZodObject<{
2085
+ email: z.ZodString;
2957
2086
  }, z.core.$strip>;
2958
2087
  /**
2959
2088
  * An array of organizations the user belongs to.
@@ -2962,11 +2091,6 @@ export declare const zListUserOrganizationsResponse: z.ZodArray<z.ZodObject<{
2962
2091
  realm: z.ZodOptional<z.ZodString>;
2963
2092
  displayName: z.ZodOptional<z.ZodString>;
2964
2093
  }, z.core.$strip>>;
2965
- export declare const zListUsersData: z.ZodObject<{
2966
- body: z.ZodOptional<z.ZodNever>;
2967
- path: z.ZodOptional<z.ZodNever>;
2968
- query: z.ZodOptional<z.ZodNever>;
2969
- }, z.core.$strip>;
2970
2094
  /**
2971
2095
  * An array of users
2972
2096
  */
@@ -2985,24 +2109,20 @@ export declare const zListUsersResponse: z.ZodArray<z.ZodObject<{
2985
2109
  id: z.ZodUUID;
2986
2110
  date_created: z.ZodISODateTime;
2987
2111
  }, z.core.$strip>>;
2988
- export declare const zCreateUserData: z.ZodObject<{
2989
- body: z.ZodObject<{
2990
- email: z.ZodEmail;
2991
- first_name: z.ZodString;
2992
- last_name: z.ZodString;
2993
- code: z.ZodString;
2994
- password: z.ZodString;
2995
- status: z.ZodOptional<z.ZodEnum<{
2996
- active: "active";
2997
- inactive: "inactive";
2998
- }>>;
2999
- role: z.ZodOptional<z.ZodEnum<{
3000
- Administrator: "Administrator";
3001
- User: "User";
3002
- }>>;
3003
- }, z.core.$strip>;
3004
- path: z.ZodOptional<z.ZodNever>;
3005
- query: z.ZodOptional<z.ZodNever>;
2112
+ export declare const zCreateUserBody: z.ZodObject<{
2113
+ email: z.ZodEmail;
2114
+ first_name: z.ZodString;
2115
+ last_name: z.ZodString;
2116
+ code: z.ZodString;
2117
+ password: z.ZodString;
2118
+ status: z.ZodOptional<z.ZodEnum<{
2119
+ active: "active";
2120
+ inactive: "inactive";
2121
+ }>>;
2122
+ role: z.ZodOptional<z.ZodEnum<{
2123
+ Administrator: "Administrator";
2124
+ User: "User";
2125
+ }>>;
3006
2126
  }, z.core.$strip>;
3007
2127
  /**
3008
2128
  * Successfully created. Returns created user details.
@@ -3022,12 +2142,8 @@ export declare const zCreateUserResponse: z.ZodObject<{
3022
2142
  id: z.ZodUUID;
3023
2143
  date_created: z.ZodISODateTime;
3024
2144
  }, z.core.$strip>;
3025
- export declare const zDeleteUserData: z.ZodObject<{
3026
- body: z.ZodOptional<z.ZodNever>;
3027
- path: z.ZodObject<{
3028
- user_id: z.ZodString;
3029
- }, z.core.$strip>;
3030
- query: z.ZodOptional<z.ZodNever>;
2145
+ export declare const zDeleteUserPath: z.ZodObject<{
2146
+ user_id: z.ZodString;
3031
2147
  }, z.core.$strip>;
3032
2148
  /**
3033
2149
  * User profile information
@@ -3047,12 +2163,8 @@ export declare const zDeleteUserResponse: z.ZodObject<{
3047
2163
  id: z.ZodUUID;
3048
2164
  date_created: z.ZodISODateTime;
3049
2165
  }, z.core.$strip>;
3050
- export declare const zGetUserData: z.ZodObject<{
3051
- body: z.ZodOptional<z.ZodNever>;
3052
- path: z.ZodObject<{
3053
- user_id: z.ZodString;
3054
- }, z.core.$strip>;
3055
- query: z.ZodOptional<z.ZodNever>;
2166
+ export declare const zGetUserPath: z.ZodObject<{
2167
+ user_id: z.ZodString;
3056
2168
  }, z.core.$strip>;
3057
2169
  /**
3058
2170
  * User profile information
@@ -3072,24 +2184,21 @@ export declare const zGetUserResponse: z.ZodObject<{
3072
2184
  id: z.ZodUUID;
3073
2185
  date_created: z.ZodISODateTime;
3074
2186
  }, z.core.$strip>;
3075
- export declare const zUpdateUserData: z.ZodObject<{
3076
- body: z.ZodObject<{
3077
- email: z.ZodOptional<z.ZodEmail>;
3078
- first_name: z.ZodOptional<z.ZodString>;
3079
- last_name: z.ZodOptional<z.ZodString>;
3080
- role: z.ZodOptional<z.ZodEnum<{
3081
- Administrator: "Administrator";
3082
- User: "User";
3083
- }>>;
3084
- status: z.ZodOptional<z.ZodEnum<{
3085
- active: "active";
3086
- inactive: "inactive";
3087
- }>>;
3088
- }, z.core.$strip>;
3089
- path: z.ZodObject<{
3090
- user_id: z.ZodString;
3091
- }, z.core.$strip>;
3092
- query: z.ZodOptional<z.ZodNever>;
2187
+ export declare const zUpdateUserBody: z.ZodObject<{
2188
+ email: z.ZodOptional<z.ZodEmail>;
2189
+ first_name: z.ZodOptional<z.ZodString>;
2190
+ last_name: z.ZodOptional<z.ZodString>;
2191
+ role: z.ZodOptional<z.ZodEnum<{
2192
+ Administrator: "Administrator";
2193
+ User: "User";
2194
+ }>>;
2195
+ status: z.ZodOptional<z.ZodEnum<{
2196
+ active: "active";
2197
+ inactive: "inactive";
2198
+ }>>;
2199
+ }, z.core.$strip>;
2200
+ export declare const zUpdateUserPath: z.ZodObject<{
2201
+ user_id: z.ZodString;
3093
2202
  }, z.core.$strip>;
3094
2203
  /**
3095
2204
  * Successfully created. Returns created user details.