@cloudfleet/sdk 0.0.1-674f1a2 → 0.0.1-69278d7

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