@cloudfleet/sdk 0.0.1-8116a0a → 0.0.1-825c2c1

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 +1156 -0
  2. package/dist/@tanstack/react-query.gen.d.ts.map +1 -0
  3. package/dist/@tanstack/react-query.gen.js +1148 -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 +1003 -478
  46. package/dist/schemas.gen.d.ts.map +1 -1
  47. package/dist/schemas.gen.js +1621 -582
  48. package/dist/schemas.gen.js.map +1 -1
  49. package/dist/sdk.gen.d.ts +137 -20
  50. package/dist/sdk.gen.d.ts.map +1 -1
  51. package/dist/sdk.gen.js +211 -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 +942 -322
  55. package/dist/types.gen.d.ts.map +1 -1
  56. package/dist/zod.gen.d.ts +1041 -1937
  57. package/dist/zod.gen.d.ts.map +1 -1
  58. package/dist/zod.gen.js +505 -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";
@@ -256,6 +260,7 @@ export declare const zCluster: z.ZodObject<{
256
260
  created_at: z.ZodOptional<z.ZodString>;
257
261
  updated_at: z.ZodOptional<z.ZodString>;
258
262
  ready: z.ZodOptional<z.ZodBoolean>;
263
+ version_channel: z.ZodOptional<z.ZodString>;
259
264
  }, z.core.$strip>;
260
265
  export declare const zClusterUpdateInput: z.ZodObject<{
261
266
  name: z.ZodOptional<z.ZodString>;
@@ -326,602 +331,40 @@ export declare const zInvite: z.ZodObject<{
326
331
  code: z.ZodOptional<z.ZodString>;
327
332
  }, z.core.$strip>;
328
333
  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>>>;
334
+ id: z.ZodOptional<z.ZodString>;
335
+ number: z.ZodOptional<z.ZodString>;
336
+ status: z.ZodOptional<z.ZodString>;
337
+ total: z.ZodOptional<z.ZodNumber>;
338
+ currency: z.ZodOptional<z.ZodString>;
339
+ created: z.ZodISODateTime;
340
+ period_start: z.ZodISODateTime;
341
+ period_end: z.ZodISODateTime;
342
+ invoice_pdf: z.ZodOptional<z.ZodString>;
343
+ }, z.core.$strip>;
344
+ export declare const zMarketplaceListingFiles: z.ZodObject<{
345
+ chartYaml: z.ZodOptional<z.ZodString>;
346
+ valuesYaml: z.ZodOptional<z.ZodString>;
347
+ valuesSchemaJson: z.ZodOptional<z.ZodString>;
911
348
  }, z.core.$strip>;
912
349
  export declare const zMarketplaceListing: z.ZodObject<{
913
- id: z.ZodString;
914
350
  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>;
351
+ versions: z.ZodArray<z.ZodString>;
920
352
  version_channels: z.ZodArray<z.ZodString>;
921
- value_schemas: z.ZodArray<z.ZodObject<{
353
+ latestVersion: z.ZodString;
354
+ metadata: z.ZodOptional<z.ZodObject<{
355
+ name: z.ZodString;
922
356
  version: z.ZodString;
923
- schema: z.ZodString;
924
- placeholder: z.ZodString;
357
+ description: z.ZodOptional<z.ZodString>;
358
+ appVersion: z.ZodOptional<z.ZodString>;
359
+ apiVersion: z.ZodOptional<z.ZodString>;
360
+ keywords: z.ZodOptional<z.ZodArray<z.ZodString>>;
361
+ home: z.ZodOptional<z.ZodString>;
362
+ icon: z.ZodOptional<z.ZodString>;
363
+ sources: z.ZodOptional<z.ZodArray<z.ZodString>>;
364
+ maintainers: z.ZodOptional<z.ZodArray<z.ZodObject<{
365
+ name: z.ZodString;
366
+ email: z.ZodOptional<z.ZodString>;
367
+ }, z.core.$strip>>>;
925
368
  }, z.core.$strip>>;
926
369
  }, z.core.$strip>;
927
370
  export declare const zOrganizationCreateInput: z.ZodObject<{
@@ -947,6 +390,7 @@ export declare const zOrganization: z.ZodObject<{
947
390
  id: z.ZodString;
948
391
  label: z.ZodString;
949
392
  }, z.core.$strip>>;
393
+ cfcr_storage_gb: z.ZodInt;
950
394
  }, z.core.$strip>;
951
395
  status: z.ZodEnum<{
952
396
  active: "active";
@@ -975,6 +419,171 @@ export declare const zPaymentMethod: z.ZodObject<{
975
419
  visa: "visa";
976
420
  }>;
977
421
  }, z.core.$strip>;
422
+ export declare const zPlatformQuota: z.ZodObject<{
423
+ basic_clusters_max: z.ZodInt;
424
+ basic_clusters_available: z.ZodInt;
425
+ pro_clusters_max: z.ZodInt;
426
+ pro_clusters_available: z.ZodInt;
427
+ fleets_max: z.ZodInt;
428
+ cluster_tiers: z.ZodArray<z.ZodString>;
429
+ regions: z.ZodArray<z.ZodString>;
430
+ versions: z.ZodArray<z.ZodObject<{
431
+ id: z.ZodString;
432
+ label: z.ZodString;
433
+ }, z.core.$strip>>;
434
+ cfcr_storage_gb: z.ZodInt;
435
+ }, z.core.$strip>;
436
+ export declare const zRegistryRepository: z.ZodObject<{
437
+ name: z.ZodString;
438
+ region: z.ZodString;
439
+ uri: z.ZodString;
440
+ }, z.core.$strip>;
441
+ export declare const zRegistryRepositoryWithTags: z.ZodObject<{
442
+ name: z.ZodString;
443
+ region: z.ZodString;
444
+ uri: z.ZodString;
445
+ tags: z.ZodArray<z.ZodObject<{
446
+ name: z.ZodString;
447
+ size: z.ZodNumber;
448
+ mediaType: z.ZodOptional<z.ZodString>;
449
+ platforms: z.ZodOptional<z.ZodArray<z.ZodString>>;
450
+ }, z.core.$strip>>;
451
+ totalSize: z.ZodNumber;
452
+ }, z.core.$strip>;
453
+ export declare const zRegistryTag: z.ZodObject<{
454
+ name: z.ZodString;
455
+ digest: z.ZodString;
456
+ mediaType: z.ZodOptional<z.ZodString>;
457
+ config: z.ZodOptional<z.ZodObject<{
458
+ size: z.ZodNumber;
459
+ }, z.core.$strip>>;
460
+ layers: z.ZodOptional<z.ZodArray<z.ZodObject<{
461
+ digest: z.ZodOptional<z.ZodString>;
462
+ size: z.ZodNumber;
463
+ }, z.core.$strip>>>;
464
+ manifests: z.ZodOptional<z.ZodArray<z.ZodObject<{
465
+ digest: z.ZodString;
466
+ platform: z.ZodOptional<z.ZodObject<{
467
+ architecture: z.ZodString;
468
+ os: z.ZodString;
469
+ variant: z.ZodOptional<z.ZodString>;
470
+ }, z.core.$strip>>;
471
+ layers: z.ZodOptional<z.ZodArray<z.ZodObject<{
472
+ digest: z.ZodOptional<z.ZodString>;
473
+ size: z.ZodNumber;
474
+ }, z.core.$strip>>>;
475
+ size: z.ZodOptional<z.ZodNumber>;
476
+ }, z.core.$strip>>>;
477
+ size: z.ZodNumber;
478
+ region: z.ZodString;
479
+ repository: z.ZodString;
480
+ uri: z.ZodString;
481
+ }, z.core.$strip>;
482
+ export declare const zTicketAttachment: z.ZodObject<{
483
+ id: z.ZodString;
484
+ filename: z.ZodString;
485
+ content_type: z.ZodString;
486
+ size: z.ZodInt;
487
+ }, z.core.$strip>;
488
+ export declare const zTicketCreateInput: z.ZodObject<{
489
+ category: z.ZodEnum<{
490
+ billing: "billing";
491
+ technical: "technical";
492
+ general: "general";
493
+ }>;
494
+ body: z.ZodString;
495
+ properties: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
496
+ }, z.core.$strip>;
497
+ export declare const zTicketListResponse: z.ZodObject<{
498
+ items: z.ZodArray<z.ZodObject<{
499
+ id: z.ZodString;
500
+ status: z.ZodEnum<{
501
+ closed: "closed";
502
+ waiting_on_us: "waiting_on_us";
503
+ waiting_on_user: "waiting_on_user";
504
+ }>;
505
+ category: z.ZodEnum<{
506
+ billing: "billing";
507
+ technical: "technical";
508
+ general: "general";
509
+ }>;
510
+ summary: z.ZodString;
511
+ closed_at: z.ZodOptional<z.ZodISODateTime>;
512
+ date_created: z.ZodISODateTime;
513
+ date_updated: z.ZodISODateTime;
514
+ messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
515
+ id: z.ZodString;
516
+ type: z.ZodEnum<{
517
+ customer_reply: "customer_reply";
518
+ agent_reply: "agent_reply";
519
+ }>;
520
+ body: z.ZodString;
521
+ author_first_name: z.ZodOptional<z.ZodString>;
522
+ author_last_name: z.ZodOptional<z.ZodString>;
523
+ attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
524
+ id: z.ZodString;
525
+ filename: z.ZodString;
526
+ content_type: z.ZodString;
527
+ size: z.ZodInt;
528
+ }, z.core.$strip>>>;
529
+ date_created: z.ZodISODateTime;
530
+ }, z.core.$strip>>>;
531
+ }, z.core.$strip>>;
532
+ }, z.core.$strip>;
533
+ export declare const zTicketMessageInput: z.ZodObject<{
534
+ body: z.ZodString;
535
+ }, z.core.$strip>;
536
+ export declare const zTicketMessage: z.ZodObject<{
537
+ id: z.ZodString;
538
+ type: z.ZodEnum<{
539
+ customer_reply: "customer_reply";
540
+ agent_reply: "agent_reply";
541
+ }>;
542
+ body: z.ZodString;
543
+ author_first_name: z.ZodOptional<z.ZodString>;
544
+ author_last_name: z.ZodOptional<z.ZodString>;
545
+ attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
546
+ id: z.ZodString;
547
+ filename: z.ZodString;
548
+ content_type: z.ZodString;
549
+ size: z.ZodInt;
550
+ }, z.core.$strip>>>;
551
+ date_created: z.ZodISODateTime;
552
+ }, z.core.$strip>;
553
+ export declare const zTicket: z.ZodObject<{
554
+ id: z.ZodString;
555
+ status: z.ZodEnum<{
556
+ closed: "closed";
557
+ waiting_on_us: "waiting_on_us";
558
+ waiting_on_user: "waiting_on_user";
559
+ }>;
560
+ category: z.ZodEnum<{
561
+ billing: "billing";
562
+ technical: "technical";
563
+ general: "general";
564
+ }>;
565
+ summary: z.ZodString;
566
+ closed_at: z.ZodOptional<z.ZodISODateTime>;
567
+ date_created: z.ZodISODateTime;
568
+ date_updated: z.ZodISODateTime;
569
+ messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
570
+ id: z.ZodString;
571
+ type: z.ZodEnum<{
572
+ customer_reply: "customer_reply";
573
+ agent_reply: "agent_reply";
574
+ }>;
575
+ body: z.ZodString;
576
+ author_first_name: z.ZodOptional<z.ZodString>;
577
+ author_last_name: z.ZodOptional<z.ZodString>;
578
+ attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
579
+ id: z.ZodString;
580
+ filename: z.ZodString;
581
+ content_type: z.ZodString;
582
+ size: z.ZodInt;
583
+ }, z.core.$strip>>>;
584
+ date_created: z.ZodISODateTime;
585
+ }, z.core.$strip>>>;
586
+ }, z.core.$strip>;
978
587
  export declare const zTokenCreateInput: z.ZodObject<{
979
588
  name: z.ZodString;
980
589
  role: z.ZodEnum<{
@@ -999,37 +608,31 @@ export declare const zTokenUpdateInput: z.ZodObject<{
999
608
  User: "User";
1000
609
  }>>;
1001
610
  }, z.core.$strip>;
611
+ export declare const zUsageFacets: z.ZodObject<{
612
+ cluster_id: z.ZodOptional<z.ZodArray<z.ZodString>>;
613
+ product: z.ZodOptional<z.ZodArray<z.ZodString>>;
614
+ }, z.core.$strip>;
615
+ export declare const zUsageResponse: z.ZodObject<{
616
+ data: z.ZodArray<z.ZodObject<{
617
+ hour: z.ZodString;
618
+ cluster_id: z.ZodString;
619
+ product: z.ZodString;
620
+ value: z.ZodNumber;
621
+ price: z.ZodNumber;
622
+ total: z.ZodNumber;
623
+ }, z.core.$strip>>;
624
+ facets: z.ZodObject<{
625
+ cluster_id: z.ZodOptional<z.ZodArray<z.ZodString>>;
626
+ product: z.ZodOptional<z.ZodArray<z.ZodString>>;
627
+ }, z.core.$strip>;
628
+ }, z.core.$strip>;
1002
629
  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
- }>]>;
630
+ hour: z.ZodString;
631
+ cluster_id: z.ZodString;
632
+ product: z.ZodString;
633
+ value: z.ZodNumber;
634
+ price: z.ZodNumber;
635
+ total: z.ZodNumber;
1033
636
  }, z.core.$strip>;
1034
637
  export declare const zUserCreateInput: z.ZodObject<{
1035
638
  email: z.ZodEmail;
@@ -1074,59 +677,29 @@ export declare const zUserUpdateInput: z.ZodObject<{
1074
677
  inactive: "inactive";
1075
678
  }>>;
1076
679
  }, 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>;
680
+ export declare const zGetUsageQuery: z.ZodObject<{
681
+ granularity: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
682
+ hourly: "hourly";
683
+ daily: "daily";
684
+ monthly: "monthly";
685
+ }>>>;
1081
686
  }, z.core.$strip>;
1082
687
  /**
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>;
1121
- }, z.core.$strip>;
1122
- /**
1123
- * Current balance of the organization in USD as a floating-point number.
688
+ * Usage data with facets for filtering
1124
689
  */
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>;
690
+ export declare const zGetUsageResponse: z.ZodObject<{
691
+ data: z.ZodArray<z.ZodObject<{
692
+ hour: z.ZodString;
693
+ cluster_id: z.ZodString;
694
+ product: z.ZodString;
695
+ value: z.ZodNumber;
696
+ price: z.ZodNumber;
697
+ total: z.ZodNumber;
698
+ }, z.core.$strip>>;
699
+ facets: z.ZodObject<{
700
+ cluster_id: z.ZodOptional<z.ZodArray<z.ZodString>>;
701
+ product: z.ZodOptional<z.ZodArray<z.ZodString>>;
702
+ }, z.core.$strip>;
1130
703
  }, z.core.$strip>;
1131
704
  /**
1132
705
  * Redacted payment card information.
@@ -1152,11 +725,6 @@ export declare const zGetPaymentMethodResponse: z.ZodObject<{
1152
725
  visa: "visa";
1153
726
  }>;
1154
727
  }, 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
728
  /**
1161
729
  * 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
730
  *
@@ -1164,619 +732,20 @@ export declare const zGetPaymentMethodSecretData: z.ZodObject<{
1164
732
  export declare const zGetPaymentMethodSecretResponse: z.ZodObject<{
1165
733
  id: z.ZodOptional<z.ZodString>;
1166
734
  }, 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
735
  /**
1176
736
  * An array of usage records.
1177
737
  */
1178
738
  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>>>;
739
+ id: z.ZodOptional<z.ZodString>;
740
+ number: z.ZodOptional<z.ZodString>;
741
+ status: z.ZodOptional<z.ZodString>;
742
+ total: z.ZodOptional<z.ZodNumber>;
743
+ currency: z.ZodOptional<z.ZodString>;
744
+ created: z.ZodISODateTime;
745
+ period_start: z.ZodISODateTime;
746
+ period_end: z.ZodISODateTime;
747
+ invoice_pdf: z.ZodOptional<z.ZodString>;
1761
748
  }, 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
749
  /**
1781
750
  * Returns a single object containing organization contact and billing address details.
1782
751
  */
@@ -1790,8 +759,7 @@ export declare const zGetContactResponse: z.ZodObject<{
1790
759
  country: z.ZodOptional<z.ZodString>;
1791
760
  phone: z.ZodOptional<z.ZodString>;
1792
761
  email: z.ZodEmail;
1793
- first_name: z.ZodString;
1794
- last_name: z.ZodString;
762
+ individual_name: z.ZodString;
1795
763
  tax_id: z.ZodOptional<z.ZodString>;
1796
764
  tax_id_type: z.ZodOptional<z.ZodEnum<{
1797
765
  "": "";
@@ -1924,158 +892,7 @@ export declare const zGetContactResponse: z.ZodObject<{
1924
892
  zw_tin: "zw_tin";
1925
893
  }>>;
1926
894
  }, 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<{
895
+ export declare const zUpdateContactBody: z.ZodObject<{
2079
896
  company: z.ZodOptional<z.ZodString>;
2080
897
  address1: z.ZodOptional<z.ZodString>;
2081
898
  address2: z.ZodOptional<z.ZodString>;
@@ -2085,8 +902,7 @@ export declare const zUpdateContactResponse: z.ZodObject<{
2085
902
  country: z.ZodOptional<z.ZodString>;
2086
903
  phone: z.ZodOptional<z.ZodString>;
2087
904
  email: z.ZodEmail;
2088
- first_name: z.ZodString;
2089
- last_name: z.ZodString;
905
+ individual_name: z.ZodString;
2090
906
  tax_id: z.ZodOptional<z.ZodString>;
2091
907
  tax_id_type: z.ZodOptional<z.ZodEnum<{
2092
908
  "": "";
@@ -2219,229 +1035,332 @@ export declare const zUpdateContactResponse: z.ZodObject<{
2219
1035
  zw_tin: "zw_tin";
2220
1036
  }>>;
2221
1037
  }, 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
- /**
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
1038
  /**
2378
- * An array of fleets
1039
+ * Successfully updated. Returns updated organization details.
2379
1040
  */
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>>;
2396
- 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>;
1041
+ export declare const zUpdateContactResponse: z.ZodObject<{
1042
+ company: z.ZodOptional<z.ZodString>;
1043
+ address1: z.ZodOptional<z.ZodString>;
1044
+ address2: z.ZodOptional<z.ZodString>;
1045
+ postalCode: z.ZodOptional<z.ZodString>;
1046
+ city: z.ZodOptional<z.ZodString>;
1047
+ state: z.ZodOptional<z.ZodString>;
1048
+ country: z.ZodOptional<z.ZodString>;
1049
+ phone: z.ZodOptional<z.ZodString>;
1050
+ email: z.ZodEmail;
1051
+ individual_name: z.ZodString;
1052
+ tax_id: z.ZodOptional<z.ZodString>;
1053
+ tax_id_type: z.ZodOptional<z.ZodEnum<{
1054
+ "": "";
1055
+ ad_nrt: "ad_nrt";
1056
+ ae_trn: "ae_trn";
1057
+ al_tin: "al_tin";
1058
+ am_tin: "am_tin";
1059
+ ao_tin: "ao_tin";
1060
+ ar_cuit: "ar_cuit";
1061
+ at_vat: "at_vat";
1062
+ au_abn: "au_abn";
1063
+ au_arn: "au_arn";
1064
+ ba_tin: "ba_tin";
1065
+ bb_tin: "bb_tin";
1066
+ be_vat: "be_vat";
1067
+ bg_uic: "bg_uic";
1068
+ bg_vat: "bg_vat";
1069
+ bh_vat: "bh_vat";
1070
+ bo_tin: "bo_tin";
1071
+ br_cnpj: "br_cnpj";
1072
+ br_cpf: "br_cpf";
1073
+ bs_tin: "bs_tin";
1074
+ by_tin: "by_tin";
1075
+ ca_bn: "ca_bn";
1076
+ ca_gst_hst: "ca_gst_hst";
1077
+ ca_pst_bc: "ca_pst_bc";
1078
+ ca_pst_mb: "ca_pst_mb";
1079
+ ca_pst_sk: "ca_pst_sk";
1080
+ ca_qst: "ca_qst";
1081
+ cd_nif: "cd_nif";
1082
+ ch_uid: "ch_uid";
1083
+ ch_vat: "ch_vat";
1084
+ cl_tin: "cl_tin";
1085
+ cn_tin: "cn_tin";
1086
+ co_nit: "co_nit";
1087
+ cr_tin: "cr_tin";
1088
+ cy_vat: "cy_vat";
1089
+ cz_vat: "cz_vat";
1090
+ de_stn: "de_stn";
1091
+ de_vat: "de_vat";
1092
+ dk_vat: "dk_vat";
1093
+ do_rcn: "do_rcn";
1094
+ ec_ruc: "ec_ruc";
1095
+ ee_vat: "ee_vat";
1096
+ eg_tin: "eg_tin";
1097
+ es_cif: "es_cif";
1098
+ es_vat: "es_vat";
1099
+ eu_oss_vat: "eu_oss_vat";
1100
+ fi_vat: "fi_vat";
1101
+ fr_vat: "fr_vat";
1102
+ gb_vat: "gb_vat";
1103
+ ge_vat: "ge_vat";
1104
+ gn_nif: "gn_nif";
1105
+ gr_vat: "gr_vat";
1106
+ hk_br: "hk_br";
1107
+ hr_oib: "hr_oib";
1108
+ hr_vat: "hr_vat";
1109
+ hu_tin: "hu_tin";
1110
+ hu_vat: "hu_vat";
1111
+ id_npwp: "id_npwp";
1112
+ ie_vat: "ie_vat";
1113
+ il_vat: "il_vat";
1114
+ in_gst: "in_gst";
1115
+ is_vat: "is_vat";
1116
+ it_vat: "it_vat";
1117
+ jp_cn: "jp_cn";
1118
+ jp_rn: "jp_rn";
1119
+ jp_trn: "jp_trn";
1120
+ ke_pin: "ke_pin";
1121
+ kh_tin: "kh_tin";
1122
+ kr_brn: "kr_brn";
1123
+ kz_bin: "kz_bin";
1124
+ li_uid: "li_uid";
1125
+ li_vat: "li_vat";
1126
+ lt_vat: "lt_vat";
1127
+ lu_vat: "lu_vat";
1128
+ lv_vat: "lv_vat";
1129
+ ma_vat: "ma_vat";
1130
+ md_vat: "md_vat";
1131
+ me_pib: "me_pib";
1132
+ mk_vat: "mk_vat";
1133
+ mr_nif: "mr_nif";
1134
+ mt_vat: "mt_vat";
1135
+ mx_rfc: "mx_rfc";
1136
+ my_frp: "my_frp";
1137
+ my_itn: "my_itn";
1138
+ my_sst: "my_sst";
1139
+ ng_tin: "ng_tin";
1140
+ nl_vat: "nl_vat";
1141
+ no_vat: "no_vat";
1142
+ no_voec: "no_voec";
1143
+ np_pan: "np_pan";
1144
+ nz_gst: "nz_gst";
1145
+ om_vat: "om_vat";
1146
+ pe_ruc: "pe_ruc";
1147
+ ph_tin: "ph_tin";
1148
+ pl_vat: "pl_vat";
1149
+ pt_vat: "pt_vat";
1150
+ ro_tin: "ro_tin";
1151
+ ro_vat: "ro_vat";
1152
+ rs_pib: "rs_pib";
1153
+ ru_inn: "ru_inn";
1154
+ ru_kpp: "ru_kpp";
1155
+ sa_vat: "sa_vat";
1156
+ se_vat: "se_vat";
1157
+ sg_gst: "sg_gst";
1158
+ sg_uen: "sg_uen";
1159
+ si_tin: "si_tin";
1160
+ si_vat: "si_vat";
1161
+ sk_vat: "sk_vat";
1162
+ sn_ninea: "sn_ninea";
1163
+ sr_fin: "sr_fin";
1164
+ sv_nit: "sv_nit";
1165
+ th_vat: "th_vat";
1166
+ tj_tin: "tj_tin";
1167
+ tr_tin: "tr_tin";
1168
+ tw_vat: "tw_vat";
1169
+ tz_vat: "tz_vat";
1170
+ ua_vat: "ua_vat";
1171
+ ug_tin: "ug_tin";
1172
+ us_ein: "us_ein";
1173
+ uy_ruc: "uy_ruc";
1174
+ uz_tin: "uz_tin";
1175
+ uz_vat: "uz_vat";
1176
+ ve_rif: "ve_rif";
1177
+ vn_tin: "vn_tin";
1178
+ xi_vat: "xi_vat";
1179
+ za_vat: "za_vat";
1180
+ zm_tin: "zm_tin";
1181
+ zw_tin: "zw_tin";
1182
+ }>>;
1183
+ }, z.core.$strip>;
1184
+ /**
1185
+ * An array of the applied promotional credits records.
1186
+ */
1187
+ export declare const zGetCreditsResponse: z.ZodArray<z.ZodObject<{
1188
+ id: z.ZodOptional<z.ZodString>;
1189
+ type: z.ZodEnum<{
1190
+ credit: "credit";
1191
+ discount: "discount";
1192
+ }>;
1193
+ date_start: z.ZodISODateTime;
1194
+ date_end: z.ZodOptional<z.ZodISODateTime>;
1195
+ code: z.ZodString;
1196
+ description: z.ZodOptional<z.ZodString>;
1197
+ value_total: z.ZodNumber;
1198
+ value_remaining: z.ZodOptional<z.ZodNumber>;
1199
+ }, z.core.$strip>>;
1200
+ export declare const zRedeemCreditsBody: z.ZodObject<{
1201
+ code: z.ZodOptional<z.ZodString>;
1202
+ }, z.core.$strip>;
1203
+ export declare const zListChartsPath: z.ZodObject<{
1204
+ cluster_id: z.ZodString;
1205
+ }, z.core.$strip>;
1206
+ /**
1207
+ * An array of charts
1208
+ */
1209
+ export declare const zListChartsResponse: z.ZodArray<z.ZodObject<{
1210
+ values: z.ZodString;
1211
+ version_channel: z.ZodString;
1212
+ name: z.ZodString;
1213
+ namespace: z.ZodString;
1214
+ chart: z.ZodString;
1215
+ status: z.ZodEnum<{
1216
+ InstallSucceeded: "InstallSucceeded";
1217
+ InstallFailed: "InstallFailed";
1218
+ UpgradeSucceeded: "UpgradeSucceeded";
1219
+ UpgradeFailed: "UpgradeFailed";
1220
+ TestSucceeded: "TestSucceeded";
1221
+ TestFailed: "TestFailed";
1222
+ RollbackSucceeded: "RollbackSucceeded";
1223
+ RollbackFailed: "RollbackFailed";
1224
+ UninstallSucceeded: "UninstallSucceeded";
1225
+ UninstallFailed: "UninstallFailed";
1226
+ ArtifactFailed: "ArtifactFailed";
1227
+ DependencyNotReady: "DependencyNotReady";
1228
+ Progressing: "Progressing";
1229
+ SourceNotReady: "SourceNotReady";
1230
+ }>;
1231
+ version_current: z.ZodString;
1232
+ created_at: z.ZodString;
1233
+ updated_at: z.ZodString;
1234
+ ready: z.ZodBoolean;
1235
+ }, z.core.$strip>>;
1236
+ export declare const zCreateChartBody: z.ZodObject<{
1237
+ values: z.ZodString;
1238
+ version_channel: z.ZodString;
1239
+ name: z.ZodString;
1240
+ namespace: z.ZodString;
1241
+ chart: z.ZodString;
1242
+ }, z.core.$strip>;
1243
+ export declare const zCreateChartPath: z.ZodObject<{
1244
+ cluster_id: z.ZodString;
1245
+ }, z.core.$strip>;
1246
+ /**
1247
+ * Successfully created. Returns created Chart ID.
1248
+ */
1249
+ export declare const zCreateChartResponse: z.ZodString;
1250
+ export declare const zDeleteChartPath: z.ZodObject<{
1251
+ cluster_id: z.ZodString;
1252
+ chart_name: z.ZodString;
1253
+ }, z.core.$strip>;
1254
+ /**
1255
+ * Successfully deleted.
1256
+ */
1257
+ export declare const zDeleteChartResponse: z.ZodString;
1258
+ export declare const zGetChartPath: z.ZodObject<{
1259
+ cluster_id: z.ZodString;
1260
+ chart_name: z.ZodString;
1261
+ }, z.core.$strip>;
1262
+ /**
1263
+ * Returns a single object containing chart details.
1264
+ */
1265
+ export declare const zGetChartResponse: z.ZodObject<{
1266
+ values: z.ZodString;
1267
+ version_channel: z.ZodString;
1268
+ name: z.ZodString;
1269
+ namespace: z.ZodString;
1270
+ chart: z.ZodString;
1271
+ status: z.ZodEnum<{
1272
+ InstallSucceeded: "InstallSucceeded";
1273
+ InstallFailed: "InstallFailed";
1274
+ UpgradeSucceeded: "UpgradeSucceeded";
1275
+ UpgradeFailed: "UpgradeFailed";
1276
+ TestSucceeded: "TestSucceeded";
1277
+ TestFailed: "TestFailed";
1278
+ RollbackSucceeded: "RollbackSucceeded";
1279
+ RollbackFailed: "RollbackFailed";
1280
+ UninstallSucceeded: "UninstallSucceeded";
1281
+ UninstallFailed: "UninstallFailed";
1282
+ ArtifactFailed: "ArtifactFailed";
1283
+ DependencyNotReady: "DependencyNotReady";
1284
+ Progressing: "Progressing";
1285
+ SourceNotReady: "SourceNotReady";
1286
+ }>;
1287
+ version_current: z.ZodString;
1288
+ created_at: z.ZodString;
1289
+ updated_at: z.ZodString;
1290
+ ready: z.ZodBoolean;
1291
+ }, z.core.$strip>;
1292
+ export declare const zUpdateChartBody: z.ZodObject<{
1293
+ values: z.ZodString;
1294
+ version_channel: z.ZodString;
1295
+ }, z.core.$strip>;
1296
+ export declare const zUpdateChartPath: z.ZodObject<{
1297
+ cluster_id: z.ZodString;
1298
+ chart_name: z.ZodString;
1299
+ }, z.core.$strip>;
1300
+ /**
1301
+ * Successfully updated.
1302
+ */
1303
+ export declare const zUpdateChartResponse: z.ZodString;
1304
+ export declare const zListFleetsPath: z.ZodObject<{
1305
+ cluster_id: z.ZodString;
1306
+ }, z.core.$strip>;
1307
+ /**
1308
+ * An array of fleets
1309
+ */
1310
+ export declare const zListFleetsResponse: z.ZodArray<z.ZodObject<{
1311
+ limits: z.ZodOptional<z.ZodObject<{
1312
+ cpu: z.ZodNumber;
1313
+ }, z.core.$strip>>;
1314
+ gcp: z.ZodOptional<z.ZodObject<{
1315
+ enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1316
+ project: z.ZodString;
1317
+ }, z.core.$strip>>;
1318
+ hetzner: z.ZodOptional<z.ZodObject<{
1319
+ enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1320
+ apiKey: z.ZodString;
1321
+ }, z.core.$strip>>;
1322
+ aws: z.ZodOptional<z.ZodObject<{
1323
+ enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1324
+ controllerRoleArn: z.ZodString;
1325
+ }, z.core.$strip>>;
1326
+ id: z.ZodString;
1327
+ }, z.core.$strip>>;
1328
+ export declare const zCreateFleetBody: z.ZodObject<{
1329
+ limits: z.ZodOptional<z.ZodObject<{
1330
+ cpu: z.ZodNumber;
1331
+ }, z.core.$strip>>;
1332
+ gcp: z.ZodOptional<z.ZodObject<{
1333
+ enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1334
+ project: z.ZodString;
1335
+ }, z.core.$strip>>;
1336
+ hetzner: z.ZodOptional<z.ZodObject<{
1337
+ enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1338
+ apiKey: z.ZodString;
1339
+ }, z.core.$strip>>;
1340
+ aws: z.ZodOptional<z.ZodObject<{
1341
+ enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1342
+ controllerRoleArn: z.ZodString;
1343
+ }, z.core.$strip>>;
1344
+ id: z.ZodString;
1345
+ }, z.core.$strip>;
1346
+ export declare const zCreateFleetPath: z.ZodObject<{
1347
+ cluster_id: z.ZodString;
2421
1348
  }, z.core.$strip>;
2422
1349
  /**
2423
1350
  * Successfully created. Returns created Fleet ID.
2424
1351
  */
2425
1352
  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>;
1353
+ export declare const zDeleteFleetPath: z.ZodObject<{
1354
+ cluster_id: z.ZodString;
1355
+ fleet_name: z.ZodString;
2433
1356
  }, z.core.$strip>;
2434
1357
  /**
2435
1358
  * Successfully deleted.
2436
1359
  */
2437
1360
  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>;
1361
+ export declare const zGetFleetPath: z.ZodObject<{
1362
+ cluster_id: z.ZodString;
1363
+ fleet_name: z.ZodString;
2445
1364
  }, z.core.$strip>;
2446
1365
  /**
2447
1366
  * Returns a single object containing fleet details.
@@ -2464,45 +1383,33 @@ export declare const zGetFleetResponse: z.ZodObject<{
2464
1383
  }, z.core.$strip>>;
2465
1384
  id: z.ZodString;
2466
1385
  }, 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>;
1386
+ export declare const zUpdateFleetBody: z.ZodObject<{
1387
+ limits: z.ZodOptional<z.ZodObject<{
1388
+ cpu: z.ZodNumber;
1389
+ }, z.core.$strip>>;
1390
+ gcp: z.ZodOptional<z.ZodObject<{
1391
+ enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1392
+ project: z.ZodString;
1393
+ }, z.core.$strip>>;
1394
+ hetzner: z.ZodOptional<z.ZodObject<{
1395
+ enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1396
+ apiKey: z.ZodString;
1397
+ }, z.core.$strip>>;
1398
+ aws: z.ZodOptional<z.ZodObject<{
1399
+ enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1400
+ controllerRoleArn: z.ZodString;
1401
+ }, z.core.$strip>>;
1402
+ }, z.core.$strip>;
1403
+ export declare const zUpdateFleetPath: z.ZodObject<{
1404
+ cluster_id: z.ZodString;
1405
+ fleet_name: z.ZodString;
2490
1406
  }, z.core.$strip>;
2491
1407
  /**
2492
1408
  * Successfully updated.
2493
1409
  */
2494
1410
  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>;
1411
+ export declare const zQueryClusterPath: z.ZodObject<{
1412
+ cluster_id: z.ZodString;
2506
1413
  }, z.core.$strip>;
2507
1414
  /**
2508
1415
  * An array of clusters
@@ -2513,18 +1420,18 @@ export declare const zListClustersResponse: z.ZodArray<z.ZodObject<{
2513
1420
  basic: "basic";
2514
1421
  pro: "pro";
2515
1422
  }>;
2516
- region: z.ZodOptional<z.ZodEnum<{
2517
- staging: "staging";
1423
+ region: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
1424
+ "staging-1a": "staging-1a";
2518
1425
  "northamerica-central-1": "northamerica-central-1";
2519
1426
  "europe-central-1a": "europe-central-1a";
2520
1427
  "northamerica-central-1a": "northamerica-central-1a";
2521
- }>>;
2522
- version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
1428
+ }>>>;
2523
1429
  id: z.ZodUUID;
2524
1430
  status: z.ZodEnum<{
2525
1431
  deleted: "deleted";
2526
1432
  failed: "failed";
2527
1433
  active: "active";
1434
+ disabled: "disabled";
2528
1435
  creating: "creating";
2529
1436
  deployed: "deployed";
2530
1437
  updating: "updating";
@@ -2537,46 +1444,40 @@ export declare const zListClustersResponse: z.ZodArray<z.ZodObject<{
2537
1444
  created_at: z.ZodOptional<z.ZodString>;
2538
1445
  updated_at: z.ZodOptional<z.ZodString>;
2539
1446
  ready: z.ZodOptional<z.ZodBoolean>;
1447
+ version_channel: z.ZodOptional<z.ZodString>;
2540
1448
  }, 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>;
1449
+ export declare const zCreateClusterBody: z.ZodObject<{
1450
+ name: z.ZodString;
1451
+ tier: z.ZodEnum<{
1452
+ basic: "basic";
1453
+ pro: "pro";
1454
+ }>;
1455
+ region: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
1456
+ "staging-1a": "staging-1a";
1457
+ "northamerica-central-1": "northamerica-central-1";
1458
+ "europe-central-1a": "europe-central-1a";
1459
+ "northamerica-central-1a": "northamerica-central-1a";
1460
+ }>>>;
1461
+ version_channel: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
1462
+ "1.x.x-cfke.x": "1.x.x-cfke.x";
1463
+ "1.31.x-cfke.x": "1.31.x-cfke.x";
1464
+ "1.32.x-cfke.x": "1.32.x-cfke.x";
1465
+ "1.33.x-cfke.x": "1.33.x-cfke.x";
1466
+ }>>>;
2558
1467
  }, z.core.$strip>;
2559
1468
  /**
2560
1469
  * Successfully created. Returns created Cluster ID.
2561
1470
  */
2562
1471
  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>;
1472
+ export declare const zDeleteClusterPath: z.ZodObject<{
1473
+ cluster_id: z.ZodString;
2569
1474
  }, z.core.$strip>;
2570
1475
  /**
2571
1476
  * Successfully deleted.
2572
1477
  */
2573
1478
  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>;
1479
+ export declare const zGetClusterPath: z.ZodObject<{
1480
+ cluster_id: z.ZodString;
2580
1481
  }, z.core.$strip>;
2581
1482
  /**
2582
1483
  * Returns a single object containing cluster details.
@@ -2587,18 +1488,18 @@ export declare const zGetClusterResponse: z.ZodObject<{
2587
1488
  basic: "basic";
2588
1489
  pro: "pro";
2589
1490
  }>;
2590
- region: z.ZodOptional<z.ZodEnum<{
2591
- staging: "staging";
1491
+ region: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
1492
+ "staging-1a": "staging-1a";
2592
1493
  "northamerica-central-1": "northamerica-central-1";
2593
1494
  "europe-central-1a": "europe-central-1a";
2594
1495
  "northamerica-central-1a": "northamerica-central-1a";
2595
- }>>;
2596
- version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
1496
+ }>>>;
2597
1497
  id: z.ZodUUID;
2598
1498
  status: z.ZodEnum<{
2599
1499
  deleted: "deleted";
2600
1500
  failed: "failed";
2601
1501
  active: "active";
1502
+ disabled: "disabled";
2602
1503
  creating: "creating";
2603
1504
  deployed: "deployed";
2604
1505
  updating: "updating";
@@ -2611,20 +1512,18 @@ export declare const zGetClusterResponse: z.ZodObject<{
2611
1512
  created_at: z.ZodOptional<z.ZodString>;
2612
1513
  updated_at: z.ZodOptional<z.ZodString>;
2613
1514
  ready: z.ZodOptional<z.ZodBoolean>;
1515
+ version_channel: z.ZodOptional<z.ZodString>;
2614
1516
  }, 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>;
1517
+ export declare const zUpdateClusterBody: z.ZodObject<{
1518
+ name: z.ZodOptional<z.ZodString>;
1519
+ tier: z.ZodEnum<{
1520
+ basic: "basic";
1521
+ pro: "pro";
1522
+ }>;
1523
+ version_channel: z.ZodOptional<z.ZodString>;
1524
+ }, z.core.$strip>;
1525
+ export declare const zUpdateClusterPath: z.ZodObject<{
1526
+ cluster_id: z.ZodString;
2628
1527
  }, z.core.$strip>;
2629
1528
  /**
2630
1529
  * Successfully updated. Returns updated cluster details.
@@ -2635,18 +1534,18 @@ export declare const zUpdateClusterResponse: z.ZodObject<{
2635
1534
  basic: "basic";
2636
1535
  pro: "pro";
2637
1536
  }>;
2638
- region: z.ZodOptional<z.ZodEnum<{
2639
- staging: "staging";
1537
+ region: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
1538
+ "staging-1a": "staging-1a";
2640
1539
  "northamerica-central-1": "northamerica-central-1";
2641
1540
  "europe-central-1a": "europe-central-1a";
2642
1541
  "northamerica-central-1a": "northamerica-central-1a";
2643
- }>>;
2644
- version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
1542
+ }>>>;
2645
1543
  id: z.ZodUUID;
2646
1544
  status: z.ZodEnum<{
2647
1545
  deleted: "deleted";
2648
1546
  failed: "failed";
2649
1547
  active: "active";
1548
+ disabled: "disabled";
2650
1549
  creating: "creating";
2651
1550
  deployed: "deployed";
2652
1551
  updating: "updating";
@@ -2659,13 +1558,17 @@ export declare const zUpdateClusterResponse: z.ZodObject<{
2659
1558
  created_at: z.ZodOptional<z.ZodString>;
2660
1559
  updated_at: z.ZodOptional<z.ZodString>;
2661
1560
  ready: z.ZodOptional<z.ZodBoolean>;
1561
+ version_channel: z.ZodOptional<z.ZodString>;
2662
1562
  }, 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>;
1563
+ export declare const zGetClusterCaPath: z.ZodObject<{
1564
+ cluster_id: z.ZodString;
1565
+ }, z.core.$strip>;
1566
+ /**
1567
+ * PEM-encoded certificate authority of the cluster.
1568
+ */
1569
+ export declare const zGetClusterCaResponse: z.ZodString;
1570
+ export declare const zGetJoinInformationPath: z.ZodObject<{
1571
+ cluster_id: z.ZodString;
2669
1572
  }, z.core.$strip>;
2670
1573
  /**
2671
1574
  * An object of cluster join information
@@ -2673,6 +1576,7 @@ export declare const zGetJoinInformationData: z.ZodObject<{
2673
1576
  export declare const zGetJoinInformationResponse: z.ZodObject<{
2674
1577
  certificate_authority: z.ZodString;
2675
1578
  endpoint: z.ZodURL;
1579
+ cluster_dns: z.ZodString;
2676
1580
  auth_key: z.ZodString;
2677
1581
  bootstrap_token: z.ZodString;
2678
1582
  versions: z.ZodObject<{
@@ -2687,11 +1591,6 @@ export declare const zGetJoinInformationResponse: z.ZodObject<{
2687
1591
  gcp_workload_identity_provider: z.ZodString;
2688
1592
  }, z.core.$strip>;
2689
1593
  }, 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
1594
  /**
2696
1595
  * An array of invites
2697
1596
  */
@@ -2702,12 +1601,8 @@ export declare const zListInvitesResponse: z.ZodArray<z.ZodObject<{
2702
1601
  email: z.ZodOptional<z.ZodEmail>;
2703
1602
  code: z.ZodOptional<z.ZodString>;
2704
1603
  }, 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>;
1604
+ export declare const zCreateInviteBody: z.ZodObject<{
1605
+ email: z.ZodOptional<z.ZodString>;
2711
1606
  }, z.core.$strip>;
2712
1607
  /**
2713
1608
  * Successfully created. Returns created invite details.
@@ -2719,12 +1614,8 @@ export declare const zCreateInviteResponse: z.ZodObject<{
2719
1614
  email: z.ZodOptional<z.ZodEmail>;
2720
1615
  code: z.ZodOptional<z.ZodString>;
2721
1616
  }, 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>;
1617
+ export declare const zGetInvitePath: z.ZodObject<{
1618
+ code: z.ZodString;
2728
1619
  }, z.core.$strip>;
2729
1620
  /**
2730
1621
  * Returns a single object containing invite details.
@@ -2736,65 +1627,65 @@ export declare const zGetInviteResponse: z.ZodObject<{
2736
1627
  email: z.ZodOptional<z.ZodEmail>;
2737
1628
  code: z.ZodOptional<z.ZodString>;
2738
1629
  }, 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>;
1630
+ export declare const zDeleteInvitePath: z.ZodObject<{
1631
+ email: z.ZodString;
2750
1632
  }, z.core.$strip>;
2751
1633
  /**
2752
1634
  * An array of chart listings in the marketplace.
2753
1635
  */
2754
1636
  export declare const zListMarketplaceChartsResponse: z.ZodArray<z.ZodObject<{
2755
- id: z.ZodString;
2756
1637
  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>;
1638
+ versions: z.ZodArray<z.ZodString>;
2762
1639
  version_channels: z.ZodArray<z.ZodString>;
2763
- value_schemas: z.ZodArray<z.ZodObject<{
1640
+ latestVersion: z.ZodString;
1641
+ metadata: z.ZodOptional<z.ZodObject<{
1642
+ name: z.ZodString;
2764
1643
  version: z.ZodString;
2765
- schema: z.ZodString;
2766
- placeholder: z.ZodString;
1644
+ description: z.ZodOptional<z.ZodString>;
1645
+ appVersion: z.ZodOptional<z.ZodString>;
1646
+ apiVersion: z.ZodOptional<z.ZodString>;
1647
+ keywords: z.ZodOptional<z.ZodArray<z.ZodString>>;
1648
+ home: z.ZodOptional<z.ZodString>;
1649
+ icon: z.ZodOptional<z.ZodString>;
1650
+ sources: z.ZodOptional<z.ZodArray<z.ZodString>>;
1651
+ maintainers: z.ZodOptional<z.ZodArray<z.ZodObject<{
1652
+ name: z.ZodString;
1653
+ email: z.ZodOptional<z.ZodString>;
1654
+ }, z.core.$strip>>>;
2767
1655
  }, z.core.$strip>>;
2768
1656
  }, 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>;
1657
+ export declare const zGetMarketplaceChartFilesPath: z.ZodObject<{
1658
+ chart_name: z.ZodString;
1659
+ version_channel: z.ZodString;
2775
1660
  }, z.core.$strip>;
2776
1661
  /**
2777
- * Returns an object containing the chart listing details.
1662
+ * Returns an object containing the chart files for the latest matching version.
2778
1663
  */
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>>;
1664
+ export declare const zGetMarketplaceChartFilesResponse: z.ZodObject<{
1665
+ chartYaml: z.ZodOptional<z.ZodString>;
1666
+ valuesYaml: z.ZodOptional<z.ZodString>;
1667
+ valuesSchemaJson: z.ZodOptional<z.ZodString>;
1668
+ }, z.core.$strip>;
1669
+ /**
1670
+ * JSON-RPC 2.0 request payload
1671
+ */
1672
+ export declare const zPostMcpBody: z.ZodObject<{
1673
+ jsonrpc: z.ZodOptional<z.ZodString>;
1674
+ method: z.ZodOptional<z.ZodString>;
1675
+ id: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>;
1676
+ params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
2793
1677
  }, 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>;
1678
+ /**
1679
+ * JSON-RPC 2.0 success or error response
1680
+ */
1681
+ export declare const zPostMcpResponse: z.ZodObject<{
1682
+ jsonrpc: z.ZodOptional<z.ZodString>;
1683
+ id: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>;
1684
+ result: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1685
+ error: z.ZodOptional<z.ZodObject<{
1686
+ code: z.ZodOptional<z.ZodInt>;
1687
+ message: z.ZodOptional<z.ZodString>;
1688
+ }, z.core.$strip>>;
2798
1689
  }, z.core.$strip>;
2799
1690
  /**
2800
1691
  * Returns a single object containing organization details.
@@ -2815,6 +1706,7 @@ export declare const zGetOrganizationResponse: z.ZodObject<{
2815
1706
  id: z.ZodString;
2816
1707
  label: z.ZodString;
2817
1708
  }, z.core.$strip>>;
1709
+ cfcr_storage_gb: z.ZodInt;
2818
1710
  }, z.core.$strip>;
2819
1711
  status: z.ZodEnum<{
2820
1712
  active: "active";
@@ -2822,22 +1714,277 @@ export declare const zGetOrganizationResponse: z.ZodObject<{
2822
1714
  suspended: "suspended";
2823
1715
  }>;
2824
1716
  }, 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>;
1717
+ export declare const zCreateOrganizationBody: z.ZodObject<{
1718
+ email: z.ZodEmail;
1719
+ first_name: z.ZodString;
1720
+ last_name: z.ZodString;
1721
+ company_name: z.ZodString;
1722
+ password: z.ZodString;
1723
+ }, z.core.$strip>;
1724
+ /**
1725
+ * List of repositories
1726
+ */
1727
+ export declare const zListRepositoriesResponse: z.ZodArray<z.ZodObject<{
1728
+ name: z.ZodString;
1729
+ region: z.ZodString;
1730
+ uri: z.ZodString;
1731
+ }, z.core.$strip>>;
1732
+ export declare const zListTagsPath: z.ZodObject<{
1733
+ region: z.ZodString;
1734
+ repository: z.ZodString;
1735
+ }, z.core.$strip>;
1736
+ /**
1737
+ * Repository with tags
1738
+ */
1739
+ export declare const zListTagsResponse: z.ZodObject<{
1740
+ name: z.ZodString;
1741
+ region: z.ZodString;
1742
+ uri: z.ZodString;
1743
+ tags: z.ZodArray<z.ZodObject<{
1744
+ name: z.ZodString;
1745
+ size: z.ZodNumber;
1746
+ mediaType: z.ZodOptional<z.ZodString>;
1747
+ platforms: z.ZodOptional<z.ZodArray<z.ZodString>>;
1748
+ }, z.core.$strip>>;
1749
+ totalSize: z.ZodNumber;
1750
+ }, z.core.$strip>;
1751
+ export declare const zDeleteTagPath: z.ZodObject<{
1752
+ region: z.ZodString;
1753
+ repository: z.ZodString;
1754
+ tag: z.ZodString;
1755
+ }, z.core.$strip>;
1756
+ export declare const zGetTagPath: z.ZodObject<{
1757
+ region: z.ZodString;
1758
+ repository: z.ZodString;
1759
+ tag: z.ZodString;
1760
+ }, z.core.$strip>;
1761
+ /**
1762
+ * Tag details
1763
+ */
1764
+ export declare const zGetTagResponse: z.ZodObject<{
1765
+ name: z.ZodString;
1766
+ digest: z.ZodString;
1767
+ mediaType: z.ZodOptional<z.ZodString>;
1768
+ config: z.ZodOptional<z.ZodObject<{
1769
+ size: z.ZodNumber;
1770
+ }, z.core.$strip>>;
1771
+ layers: z.ZodOptional<z.ZodArray<z.ZodObject<{
1772
+ digest: z.ZodOptional<z.ZodString>;
1773
+ size: z.ZodNumber;
1774
+ }, z.core.$strip>>>;
1775
+ manifests: z.ZodOptional<z.ZodArray<z.ZodObject<{
1776
+ digest: z.ZodString;
1777
+ platform: z.ZodOptional<z.ZodObject<{
1778
+ architecture: z.ZodString;
1779
+ os: z.ZodString;
1780
+ variant: z.ZodOptional<z.ZodString>;
1781
+ }, z.core.$strip>>;
1782
+ layers: z.ZodOptional<z.ZodArray<z.ZodObject<{
1783
+ digest: z.ZodOptional<z.ZodString>;
1784
+ size: z.ZodNumber;
1785
+ }, z.core.$strip>>>;
1786
+ size: z.ZodOptional<z.ZodNumber>;
1787
+ }, z.core.$strip>>>;
1788
+ size: z.ZodNumber;
1789
+ region: z.ZodString;
1790
+ repository: z.ZodString;
1791
+ uri: z.ZodString;
1792
+ }, z.core.$strip>;
1793
+ /**
1794
+ * Tickets for the organization.
1795
+ */
1796
+ export declare const zListTicketsResponse: z.ZodObject<{
1797
+ items: z.ZodArray<z.ZodObject<{
1798
+ id: z.ZodString;
1799
+ status: z.ZodEnum<{
1800
+ closed: "closed";
1801
+ waiting_on_us: "waiting_on_us";
1802
+ waiting_on_user: "waiting_on_user";
1803
+ }>;
1804
+ category: z.ZodEnum<{
1805
+ billing: "billing";
1806
+ technical: "technical";
1807
+ general: "general";
1808
+ }>;
1809
+ summary: z.ZodString;
1810
+ closed_at: z.ZodOptional<z.ZodISODateTime>;
1811
+ date_created: z.ZodISODateTime;
1812
+ date_updated: z.ZodISODateTime;
1813
+ messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
1814
+ id: z.ZodString;
1815
+ type: z.ZodEnum<{
1816
+ customer_reply: "customer_reply";
1817
+ agent_reply: "agent_reply";
1818
+ }>;
1819
+ body: z.ZodString;
1820
+ author_first_name: z.ZodOptional<z.ZodString>;
1821
+ author_last_name: z.ZodOptional<z.ZodString>;
1822
+ attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
1823
+ id: z.ZodString;
1824
+ filename: z.ZodString;
1825
+ content_type: z.ZodString;
1826
+ size: z.ZodInt;
1827
+ }, z.core.$strip>>>;
1828
+ date_created: z.ZodISODateTime;
1829
+ }, z.core.$strip>>>;
1830
+ }, z.core.$strip>>;
1831
+ }, z.core.$strip>;
1832
+ export declare const zCreateTicketBody: z.ZodObject<{
1833
+ payload: z.ZodOptional<z.ZodString>;
1834
+ attachments: z.ZodOptional<z.ZodArray<z.ZodString>>;
1835
+ }, z.core.$strip>;
1836
+ /**
1837
+ * Ticket created.
1838
+ */
1839
+ export declare const zCreateTicketResponse: z.ZodObject<{
1840
+ id: z.ZodString;
1841
+ status: z.ZodEnum<{
1842
+ closed: "closed";
1843
+ waiting_on_us: "waiting_on_us";
1844
+ waiting_on_user: "waiting_on_user";
1845
+ }>;
1846
+ category: z.ZodEnum<{
1847
+ billing: "billing";
1848
+ technical: "technical";
1849
+ general: "general";
1850
+ }>;
1851
+ summary: z.ZodString;
1852
+ closed_at: z.ZodOptional<z.ZodISODateTime>;
1853
+ date_created: z.ZodISODateTime;
1854
+ date_updated: z.ZodISODateTime;
1855
+ messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
1856
+ id: z.ZodString;
1857
+ type: z.ZodEnum<{
1858
+ customer_reply: "customer_reply";
1859
+ agent_reply: "agent_reply";
1860
+ }>;
1861
+ body: z.ZodString;
1862
+ author_first_name: z.ZodOptional<z.ZodString>;
1863
+ author_last_name: z.ZodOptional<z.ZodString>;
1864
+ attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
1865
+ id: z.ZodString;
1866
+ filename: z.ZodString;
1867
+ content_type: z.ZodString;
1868
+ size: z.ZodInt;
1869
+ }, z.core.$strip>>>;
1870
+ date_created: z.ZodISODateTime;
1871
+ }, z.core.$strip>>>;
1872
+ }, z.core.$strip>;
1873
+ export declare const zCloseTicketPath: z.ZodObject<{
1874
+ ticket_id: z.ZodString;
1875
+ }, z.core.$strip>;
1876
+ /**
1877
+ * Ticket closed.
1878
+ */
1879
+ export declare const zCloseTicketResponse: z.ZodObject<{
1880
+ id: z.ZodString;
1881
+ status: z.ZodEnum<{
1882
+ closed: "closed";
1883
+ waiting_on_us: "waiting_on_us";
1884
+ waiting_on_user: "waiting_on_user";
1885
+ }>;
1886
+ category: z.ZodEnum<{
1887
+ billing: "billing";
1888
+ technical: "technical";
1889
+ general: "general";
1890
+ }>;
1891
+ summary: z.ZodString;
1892
+ closed_at: z.ZodOptional<z.ZodISODateTime>;
1893
+ date_created: z.ZodISODateTime;
1894
+ date_updated: z.ZodISODateTime;
1895
+ messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
1896
+ id: z.ZodString;
1897
+ type: z.ZodEnum<{
1898
+ customer_reply: "customer_reply";
1899
+ agent_reply: "agent_reply";
1900
+ }>;
1901
+ body: z.ZodString;
1902
+ author_first_name: z.ZodOptional<z.ZodString>;
1903
+ author_last_name: z.ZodOptional<z.ZodString>;
1904
+ attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
1905
+ id: z.ZodString;
1906
+ filename: z.ZodString;
1907
+ content_type: z.ZodString;
1908
+ size: z.ZodInt;
1909
+ }, z.core.$strip>>>;
1910
+ date_created: z.ZodISODateTime;
1911
+ }, z.core.$strip>>>;
1912
+ }, z.core.$strip>;
1913
+ export declare const zGetTicketPath: z.ZodObject<{
1914
+ ticket_id: z.ZodString;
1915
+ }, z.core.$strip>;
1916
+ /**
1917
+ * Ticket with messages (internal notes excluded).
1918
+ */
1919
+ export declare const zGetTicketResponse: z.ZodObject<{
1920
+ id: z.ZodString;
1921
+ status: z.ZodEnum<{
1922
+ closed: "closed";
1923
+ waiting_on_us: "waiting_on_us";
1924
+ waiting_on_user: "waiting_on_user";
1925
+ }>;
1926
+ category: z.ZodEnum<{
1927
+ billing: "billing";
1928
+ technical: "technical";
1929
+ general: "general";
1930
+ }>;
1931
+ summary: z.ZodString;
1932
+ closed_at: z.ZodOptional<z.ZodISODateTime>;
1933
+ date_created: z.ZodISODateTime;
1934
+ date_updated: z.ZodISODateTime;
1935
+ messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
1936
+ id: z.ZodString;
1937
+ type: z.ZodEnum<{
1938
+ customer_reply: "customer_reply";
1939
+ agent_reply: "agent_reply";
1940
+ }>;
1941
+ body: z.ZodString;
1942
+ author_first_name: z.ZodOptional<z.ZodString>;
1943
+ author_last_name: z.ZodOptional<z.ZodString>;
1944
+ attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
1945
+ id: z.ZodString;
1946
+ filename: z.ZodString;
1947
+ content_type: z.ZodString;
1948
+ size: z.ZodInt;
1949
+ }, z.core.$strip>>>;
1950
+ date_created: z.ZodISODateTime;
1951
+ }, z.core.$strip>>>;
2835
1952
  }, 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>;
1953
+ export declare const zReplyTicketBody: z.ZodObject<{
1954
+ payload: z.ZodOptional<z.ZodString>;
1955
+ attachments: z.ZodOptional<z.ZodArray<z.ZodString>>;
2840
1956
  }, z.core.$strip>;
1957
+ export declare const zReplyTicketPath: z.ZodObject<{
1958
+ ticket_id: z.ZodString;
1959
+ }, z.core.$strip>;
1960
+ /**
1961
+ * Reply appended.
1962
+ */
1963
+ export declare const zReplyTicketResponse: z.ZodObject<{
1964
+ id: z.ZodString;
1965
+ type: z.ZodEnum<{
1966
+ customer_reply: "customer_reply";
1967
+ agent_reply: "agent_reply";
1968
+ }>;
1969
+ body: z.ZodString;
1970
+ author_first_name: z.ZodOptional<z.ZodString>;
1971
+ author_last_name: z.ZodOptional<z.ZodString>;
1972
+ attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
1973
+ id: z.ZodString;
1974
+ filename: z.ZodString;
1975
+ content_type: z.ZodString;
1976
+ size: z.ZodInt;
1977
+ }, z.core.$strip>>>;
1978
+ date_created: z.ZodISODateTime;
1979
+ }, z.core.$strip>;
1980
+ export declare const zGetTicketAttachmentPath: z.ZodObject<{
1981
+ ticket_id: z.ZodString;
1982
+ attachment_id: z.ZodString;
1983
+ }, z.core.$strip>;
1984
+ /**
1985
+ * Attachment binary stream.
1986
+ */
1987
+ export declare const zGetTicketAttachmentResponse: z.ZodString;
2841
1988
  /**
2842
1989
  * Returns a list of access token details with masked secrets.
2843
1990
  */
@@ -2851,16 +1998,12 @@ export declare const zListTokensResponse: z.ZodArray<z.ZodObject<{
2851
1998
  secret: z.ZodOptional<z.ZodString>;
2852
1999
  date_created: z.ZodISODateTime;
2853
2000
  }, 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>;
2001
+ export declare const zCreateTokenBody: z.ZodObject<{
2002
+ name: z.ZodString;
2003
+ role: z.ZodEnum<{
2004
+ Administrator: "Administrator";
2005
+ User: "User";
2006
+ }>;
2864
2007
  }, z.core.$strip>;
2865
2008
  /**
2866
2009
  * Successfully created. Returns created token details with unmasked/raw secret.
@@ -2875,19 +2018,11 @@ export declare const zCreateTokenResponse: z.ZodObject<{
2875
2018
  secret: z.ZodOptional<z.ZodString>;
2876
2019
  date_created: z.ZodISODateTime;
2877
2020
  }, 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>;
2021
+ export declare const zDeleteTokenPath: z.ZodObject<{
2022
+ token_id: z.ZodString;
2884
2023
  }, 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>;
2024
+ export declare const zGetTokenPath: z.ZodObject<{
2025
+ token_id: z.ZodString;
2891
2026
  }, z.core.$strip>;
2892
2027
  /**
2893
2028
  * Returns access token details with masked secret.
@@ -2902,18 +2037,15 @@ export declare const zGetTokenResponse: z.ZodObject<{
2902
2037
  secret: z.ZodOptional<z.ZodString>;
2903
2038
  date_created: z.ZodISODateTime;
2904
2039
  }, 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>;
2040
+ export declare const zUpdateTokenBody: z.ZodObject<{
2041
+ name: z.ZodOptional<z.ZodString>;
2042
+ role: z.ZodOptional<z.ZodEnum<{
2043
+ Administrator: "Administrator";
2044
+ User: "User";
2045
+ }>>;
2046
+ }, z.core.$strip>;
2047
+ export declare const zUpdateTokenPath: z.ZodObject<{
2048
+ token_id: z.ZodString;
2917
2049
  }, z.core.$strip>;
2918
2050
  /**
2919
2051
  * Successfully updated. Returns updated token details with masked secret.
@@ -2928,12 +2060,8 @@ export declare const zUpdateTokenResponse: z.ZodObject<{
2928
2060
  secret: z.ZodOptional<z.ZodString>;
2929
2061
  date_created: z.ZodISODateTime;
2930
2062
  }, 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>;
2063
+ export declare const zRegenerateTokenPath: z.ZodObject<{
2064
+ token_id: z.ZodString;
2937
2065
  }, z.core.$strip>;
2938
2066
  /**
2939
2067
  * Successfully updated. Returns updated token details with unmasked / raw secret.
@@ -2948,12 +2076,8 @@ export declare const zRegenerateTokenResponse: z.ZodObject<{
2948
2076
  secret: z.ZodOptional<z.ZodString>;
2949
2077
  date_created: z.ZodISODateTime;
2950
2078
  }, 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>;
2079
+ export declare const zListUserOrganizationsPath: z.ZodObject<{
2080
+ email: z.ZodString;
2957
2081
  }, z.core.$strip>;
2958
2082
  /**
2959
2083
  * An array of organizations the user belongs to.
@@ -2962,11 +2086,6 @@ export declare const zListUserOrganizationsResponse: z.ZodArray<z.ZodObject<{
2962
2086
  realm: z.ZodOptional<z.ZodString>;
2963
2087
  displayName: z.ZodOptional<z.ZodString>;
2964
2088
  }, 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
2089
  /**
2971
2090
  * An array of users
2972
2091
  */
@@ -2985,24 +2104,20 @@ export declare const zListUsersResponse: z.ZodArray<z.ZodObject<{
2985
2104
  id: z.ZodUUID;
2986
2105
  date_created: z.ZodISODateTime;
2987
2106
  }, 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>;
2107
+ export declare const zCreateUserBody: z.ZodObject<{
2108
+ email: z.ZodEmail;
2109
+ first_name: z.ZodString;
2110
+ last_name: z.ZodString;
2111
+ code: z.ZodString;
2112
+ password: z.ZodString;
2113
+ status: z.ZodOptional<z.ZodEnum<{
2114
+ active: "active";
2115
+ inactive: "inactive";
2116
+ }>>;
2117
+ role: z.ZodOptional<z.ZodEnum<{
2118
+ Administrator: "Administrator";
2119
+ User: "User";
2120
+ }>>;
3006
2121
  }, z.core.$strip>;
3007
2122
  /**
3008
2123
  * Successfully created. Returns created user details.
@@ -3022,12 +2137,8 @@ export declare const zCreateUserResponse: z.ZodObject<{
3022
2137
  id: z.ZodUUID;
3023
2138
  date_created: z.ZodISODateTime;
3024
2139
  }, 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>;
2140
+ export declare const zDeleteUserPath: z.ZodObject<{
2141
+ user_id: z.ZodString;
3031
2142
  }, z.core.$strip>;
3032
2143
  /**
3033
2144
  * User profile information
@@ -3047,12 +2158,8 @@ export declare const zDeleteUserResponse: z.ZodObject<{
3047
2158
  id: z.ZodUUID;
3048
2159
  date_created: z.ZodISODateTime;
3049
2160
  }, 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>;
2161
+ export declare const zGetUserPath: z.ZodObject<{
2162
+ user_id: z.ZodString;
3056
2163
  }, z.core.$strip>;
3057
2164
  /**
3058
2165
  * User profile information
@@ -3072,24 +2179,21 @@ export declare const zGetUserResponse: z.ZodObject<{
3072
2179
  id: z.ZodUUID;
3073
2180
  date_created: z.ZodISODateTime;
3074
2181
  }, 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>;
2182
+ export declare const zUpdateUserBody: z.ZodObject<{
2183
+ email: z.ZodOptional<z.ZodEmail>;
2184
+ first_name: z.ZodOptional<z.ZodString>;
2185
+ last_name: z.ZodOptional<z.ZodString>;
2186
+ role: z.ZodOptional<z.ZodEnum<{
2187
+ Administrator: "Administrator";
2188
+ User: "User";
2189
+ }>>;
2190
+ status: z.ZodOptional<z.ZodEnum<{
2191
+ active: "active";
2192
+ inactive: "inactive";
2193
+ }>>;
2194
+ }, z.core.$strip>;
2195
+ export declare const zUpdateUserPath: z.ZodObject<{
2196
+ user_id: z.ZodString;
3093
2197
  }, z.core.$strip>;
3094
2198
  /**
3095
2199
  * Successfully created. Returns created user details.