@cloudfleet/sdk 0.0.1-a9ecdcd → 0.0.1-aa1359b

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 +603 -479
  41. package/dist/schemas.gen.d.ts.map +1 -1
  42. package/dist/schemas.gen.js +1138 -585
  43. package/dist/schemas.gen.js.map +1 -1
  44. package/dist/sdk.gen.d.ts +98 -19
  45. package/dist/sdk.gen.d.ts.map +1 -1
  46. package/dist/sdk.gen.js +144 -149
  47. package/dist/sdk.gen.js.map +1 -1
  48. package/dist/types.gen.d.ts +587 -324
  49. package/dist/types.gen.d.ts.map +1 -1
  50. package/dist/zod.gen.d.ts +617 -1813
  51. package/dist/zod.gen.d.ts.map +1 -1
  52. package/dist/zod.gen.js +364 -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,17 +237,17 @@ 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";
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,66 @@ 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>;
978
482
  export declare const zTokenCreateInput: z.ZodObject<{
979
483
  name: z.ZodString;
980
484
  role: z.ZodEnum<{
@@ -999,37 +503,31 @@ export declare const zTokenUpdateInput: z.ZodObject<{
999
503
  User: "User";
1000
504
  }>>;
1001
505
  }, z.core.$strip>;
506
+ export declare const zUsageFacets: z.ZodObject<{
507
+ cluster_id: z.ZodOptional<z.ZodArray<z.ZodString>>;
508
+ product: z.ZodOptional<z.ZodArray<z.ZodString>>;
509
+ }, z.core.$strip>;
510
+ export declare const zUsageResponse: z.ZodObject<{
511
+ data: z.ZodArray<z.ZodObject<{
512
+ hour: z.ZodString;
513
+ cluster_id: z.ZodString;
514
+ product: z.ZodString;
515
+ value: z.ZodNumber;
516
+ price: z.ZodNumber;
517
+ total: z.ZodNumber;
518
+ }, z.core.$strip>>;
519
+ facets: z.ZodObject<{
520
+ cluster_id: z.ZodOptional<z.ZodArray<z.ZodString>>;
521
+ product: z.ZodOptional<z.ZodArray<z.ZodString>>;
522
+ }, z.core.$strip>;
523
+ }, z.core.$strip>;
1002
524
  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
- }>]>;
525
+ hour: z.ZodString;
526
+ cluster_id: z.ZodString;
527
+ product: z.ZodString;
528
+ value: z.ZodNumber;
529
+ price: z.ZodNumber;
530
+ total: z.ZodNumber;
1033
531
  }, z.core.$strip>;
1034
532
  export declare const zUserCreateInput: z.ZodObject<{
1035
533
  email: z.ZodEmail;
@@ -1074,59 +572,29 @@ export declare const zUserUpdateInput: z.ZodObject<{
1074
572
  inactive: "inactive";
1075
573
  }>>;
1076
574
  }, z.core.$strip>;
1077
- export declare const zGetUsageData: z.ZodObject<{
1078
- body: z.ZodOptional<z.ZodNever>;
1079
- path: z.ZodOptional<z.ZodNever>;
1080
- query: z.ZodOptional<z.ZodNever>;
1081
- }, z.core.$strip>;
1082
- /**
1083
- * An array of usage records.
1084
- */
1085
- export declare const zGetUsageResponse: z.ZodArray<z.ZodObject<{
1086
- hour: z.ZodOptional<z.ZodString>;
1087
- cluster_id: z.ZodUUID;
1088
- cluster_tier: z.ZodEnum<{
1089
- "": "";
1090
- basic: "basic";
1091
- pro: "pro";
1092
- }>;
1093
- product: z.ZodEnum<{
1094
- cfke_controlplane: "cfke_controlplane";
1095
- cfke_connected_nodes: "cfke_connected_nodes";
1096
- infra_compute: "infra_compute";
1097
- infra_storage: "infra_storage";
1098
- infra_loadbalancing: "infra_loadbalancing";
1099
- infra_traffic: "infra_traffic";
1100
- cfcr_storage: "cfcr_storage";
1101
- }>;
1102
- node_name: z.ZodString;
1103
- sku: z.ZodString;
1104
- cpu: z.ZodUnion<readonly [z.ZodNumber, z.ZodEnum<{
1105
- "": "";
1106
- }>]>;
1107
- price: z.ZodUnion<readonly [z.ZodNumber, z.ZodEnum<{
1108
- "": "";
1109
- }>]>;
1110
- value: z.ZodUnion<readonly [z.ZodNumber, z.ZodEnum<{
1111
- "": "";
1112
- }>]>;
1113
- total: z.ZodUnion<readonly [z.ZodNumber, z.ZodEnum<{
1114
- "": "";
1115
- }>]>;
1116
- }, z.core.$strip>>;
1117
- export declare const zGetBalanceData: z.ZodObject<{
1118
- body: z.ZodOptional<z.ZodNever>;
1119
- path: z.ZodOptional<z.ZodNever>;
1120
- query: z.ZodOptional<z.ZodNever>;
575
+ export declare const zGetUsageQuery: z.ZodObject<{
576
+ granularity: z.ZodOptional<z.ZodEnum<{
577
+ hourly: "hourly";
578
+ daily: "daily";
579
+ monthly: "monthly";
580
+ }>>;
1121
581
  }, z.core.$strip>;
1122
582
  /**
1123
- * Current balance of the organization in USD as a floating-point number.
583
+ * Usage data with facets for filtering
1124
584
  */
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>;
585
+ export declare const zGetUsageResponse: z.ZodObject<{
586
+ data: z.ZodArray<z.ZodObject<{
587
+ hour: z.ZodString;
588
+ cluster_id: z.ZodString;
589
+ product: z.ZodString;
590
+ value: z.ZodNumber;
591
+ price: z.ZodNumber;
592
+ total: z.ZodNumber;
593
+ }, z.core.$strip>>;
594
+ facets: z.ZodObject<{
595
+ cluster_id: z.ZodOptional<z.ZodArray<z.ZodString>>;
596
+ product: z.ZodOptional<z.ZodArray<z.ZodString>>;
597
+ }, z.core.$strip>;
1130
598
  }, z.core.$strip>;
1131
599
  /**
1132
600
  * Redacted payment card information.
@@ -1152,11 +620,6 @@ export declare const zGetPaymentMethodResponse: z.ZodObject<{
1152
620
  visa: "visa";
1153
621
  }>;
1154
622
  }, 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
623
  /**
1161
624
  * The client secret. Used for client-side retrieval using a publishable key. The client secret can be used to complete a payment from your frontend. It should not be stored, logged, or exposed to anyone other than the customer. Make sure that you have TLS enabled on any page that includes the client secret.
1162
625
  *
@@ -1164,619 +627,20 @@ export declare const zGetPaymentMethodSecretData: z.ZodObject<{
1164
627
  export declare const zGetPaymentMethodSecretResponse: z.ZodObject<{
1165
628
  id: z.ZodOptional<z.ZodString>;
1166
629
  }, 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
630
  /**
1176
631
  * An array of usage records.
1177
632
  */
1178
633
  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>>>;
634
+ id: z.ZodOptional<z.ZodString>;
635
+ number: z.ZodOptional<z.ZodString>;
636
+ status: z.ZodOptional<z.ZodString>;
637
+ total: z.ZodOptional<z.ZodNumber>;
638
+ currency: z.ZodOptional<z.ZodString>;
639
+ created: z.ZodISODateTime;
640
+ period_start: z.ZodISODateTime;
641
+ period_end: z.ZodISODateTime;
642
+ invoice_pdf: z.ZodOptional<z.ZodString>;
1761
643
  }, 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
644
  /**
1781
645
  * Returns a single object containing organization contact and billing address details.
1782
646
  */
@@ -1790,8 +654,7 @@ export declare const zGetContactResponse: z.ZodObject<{
1790
654
  country: z.ZodOptional<z.ZodString>;
1791
655
  phone: z.ZodOptional<z.ZodString>;
1792
656
  email: z.ZodEmail;
1793
- first_name: z.ZodString;
1794
- last_name: z.ZodString;
657
+ individual_name: z.ZodString;
1795
658
  tax_id: z.ZodOptional<z.ZodString>;
1796
659
  tax_id_type: z.ZodOptional<z.ZodEnum<{
1797
660
  "": "";
@@ -1924,153 +787,148 @@ export declare const zGetContactResponse: z.ZodObject<{
1924
787
  zw_tin: "zw_tin";
1925
788
  }>>;
1926
789
  }, 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>;
790
+ export declare const zUpdateContactBody: z.ZodObject<{
791
+ company: z.ZodOptional<z.ZodString>;
792
+ address1: z.ZodOptional<z.ZodString>;
793
+ address2: z.ZodOptional<z.ZodString>;
794
+ postalCode: z.ZodOptional<z.ZodString>;
795
+ city: z.ZodOptional<z.ZodString>;
796
+ state: z.ZodOptional<z.ZodString>;
797
+ country: z.ZodOptional<z.ZodString>;
798
+ phone: z.ZodOptional<z.ZodString>;
799
+ email: z.ZodEmail;
800
+ individual_name: z.ZodString;
801
+ tax_id: z.ZodOptional<z.ZodString>;
802
+ tax_id_type: z.ZodOptional<z.ZodEnum<{
803
+ "": "";
804
+ ad_nrt: "ad_nrt";
805
+ ae_trn: "ae_trn";
806
+ al_tin: "al_tin";
807
+ am_tin: "am_tin";
808
+ ao_tin: "ao_tin";
809
+ ar_cuit: "ar_cuit";
810
+ at_vat: "at_vat";
811
+ au_abn: "au_abn";
812
+ au_arn: "au_arn";
813
+ ba_tin: "ba_tin";
814
+ bb_tin: "bb_tin";
815
+ be_vat: "be_vat";
816
+ bg_uic: "bg_uic";
817
+ bg_vat: "bg_vat";
818
+ bh_vat: "bh_vat";
819
+ bo_tin: "bo_tin";
820
+ br_cnpj: "br_cnpj";
821
+ br_cpf: "br_cpf";
822
+ bs_tin: "bs_tin";
823
+ by_tin: "by_tin";
824
+ ca_bn: "ca_bn";
825
+ ca_gst_hst: "ca_gst_hst";
826
+ ca_pst_bc: "ca_pst_bc";
827
+ ca_pst_mb: "ca_pst_mb";
828
+ ca_pst_sk: "ca_pst_sk";
829
+ ca_qst: "ca_qst";
830
+ cd_nif: "cd_nif";
831
+ ch_uid: "ch_uid";
832
+ ch_vat: "ch_vat";
833
+ cl_tin: "cl_tin";
834
+ cn_tin: "cn_tin";
835
+ co_nit: "co_nit";
836
+ cr_tin: "cr_tin";
837
+ cy_vat: "cy_vat";
838
+ cz_vat: "cz_vat";
839
+ de_stn: "de_stn";
840
+ de_vat: "de_vat";
841
+ dk_vat: "dk_vat";
842
+ do_rcn: "do_rcn";
843
+ ec_ruc: "ec_ruc";
844
+ ee_vat: "ee_vat";
845
+ eg_tin: "eg_tin";
846
+ es_cif: "es_cif";
847
+ es_vat: "es_vat";
848
+ eu_oss_vat: "eu_oss_vat";
849
+ fi_vat: "fi_vat";
850
+ fr_vat: "fr_vat";
851
+ gb_vat: "gb_vat";
852
+ ge_vat: "ge_vat";
853
+ gn_nif: "gn_nif";
854
+ gr_vat: "gr_vat";
855
+ hk_br: "hk_br";
856
+ hr_oib: "hr_oib";
857
+ hr_vat: "hr_vat";
858
+ hu_tin: "hu_tin";
859
+ hu_vat: "hu_vat";
860
+ id_npwp: "id_npwp";
861
+ ie_vat: "ie_vat";
862
+ il_vat: "il_vat";
863
+ in_gst: "in_gst";
864
+ is_vat: "is_vat";
865
+ it_vat: "it_vat";
866
+ jp_cn: "jp_cn";
867
+ jp_rn: "jp_rn";
868
+ jp_trn: "jp_trn";
869
+ ke_pin: "ke_pin";
870
+ kh_tin: "kh_tin";
871
+ kr_brn: "kr_brn";
872
+ kz_bin: "kz_bin";
873
+ li_uid: "li_uid";
874
+ li_vat: "li_vat";
875
+ lt_vat: "lt_vat";
876
+ lu_vat: "lu_vat";
877
+ lv_vat: "lv_vat";
878
+ ma_vat: "ma_vat";
879
+ md_vat: "md_vat";
880
+ me_pib: "me_pib";
881
+ mk_vat: "mk_vat";
882
+ mr_nif: "mr_nif";
883
+ mt_vat: "mt_vat";
884
+ mx_rfc: "mx_rfc";
885
+ my_frp: "my_frp";
886
+ my_itn: "my_itn";
887
+ my_sst: "my_sst";
888
+ ng_tin: "ng_tin";
889
+ nl_vat: "nl_vat";
890
+ no_vat: "no_vat";
891
+ no_voec: "no_voec";
892
+ np_pan: "np_pan";
893
+ nz_gst: "nz_gst";
894
+ om_vat: "om_vat";
895
+ pe_ruc: "pe_ruc";
896
+ ph_tin: "ph_tin";
897
+ pl_vat: "pl_vat";
898
+ pt_vat: "pt_vat";
899
+ ro_tin: "ro_tin";
900
+ ro_vat: "ro_vat";
901
+ rs_pib: "rs_pib";
902
+ ru_inn: "ru_inn";
903
+ ru_kpp: "ru_kpp";
904
+ sa_vat: "sa_vat";
905
+ se_vat: "se_vat";
906
+ sg_gst: "sg_gst";
907
+ sg_uen: "sg_uen";
908
+ si_tin: "si_tin";
909
+ si_vat: "si_vat";
910
+ sk_vat: "sk_vat";
911
+ sn_ninea: "sn_ninea";
912
+ sr_fin: "sr_fin";
913
+ sv_nit: "sv_nit";
914
+ th_vat: "th_vat";
915
+ tj_tin: "tj_tin";
916
+ tr_tin: "tr_tin";
917
+ tw_vat: "tw_vat";
918
+ tz_vat: "tz_vat";
919
+ ua_vat: "ua_vat";
920
+ ug_tin: "ug_tin";
921
+ us_ein: "us_ein";
922
+ uy_ruc: "uy_ruc";
923
+ uz_tin: "uz_tin";
924
+ uz_vat: "uz_vat";
925
+ ve_rif: "ve_rif";
926
+ vn_tin: "vn_tin";
927
+ xi_vat: "xi_vat";
928
+ za_vat: "za_vat";
929
+ zm_tin: "zm_tin";
930
+ zw_tin: "zw_tin";
931
+ }>>;
2074
932
  }, z.core.$strip>;
2075
933
  /**
2076
934
  * Successfully updated. Returns updated organization details.
@@ -2085,8 +943,7 @@ export declare const zUpdateContactResponse: z.ZodObject<{
2085
943
  country: z.ZodOptional<z.ZodString>;
2086
944
  phone: z.ZodOptional<z.ZodString>;
2087
945
  email: z.ZodEmail;
2088
- first_name: z.ZodString;
2089
- last_name: z.ZodString;
946
+ individual_name: z.ZodString;
2090
947
  tax_id: z.ZodOptional<z.ZodString>;
2091
948
  tax_id_type: z.ZodOptional<z.ZodEnum<{
2092
949
  "": "";
@@ -2219,41 +1076,27 @@ export declare const zUpdateContactResponse: z.ZodObject<{
2219
1076
  zw_tin: "zw_tin";
2220
1077
  }>>;
2221
1078
  }, 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
1079
  /**
2228
1080
  * An array of the applied promotional credits records.
2229
1081
  */
2230
1082
  export declare const zGetCreditsResponse: z.ZodArray<z.ZodObject<{
2231
1083
  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
1084
  type: z.ZodEnum<{
2237
1085
  credit: "credit";
2238
1086
  discount: "discount";
2239
1087
  }>;
2240
- value: z.ZodNumber;
2241
- billing_period: z.ZodISODateTime;
1088
+ date_start: z.ZodISODateTime;
1089
+ date_end: z.ZodOptional<z.ZodISODateTime>;
1090
+ code: z.ZodString;
1091
+ description: z.ZodOptional<z.ZodString>;
1092
+ value_total: z.ZodNumber;
2242
1093
  value_remaining: z.ZodOptional<z.ZodNumber>;
2243
1094
  }, 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>;
1095
+ export declare const zRedeemCreditsBody: z.ZodObject<{
1096
+ code: z.ZodOptional<z.ZodString>;
2250
1097
  }, 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>;
1098
+ export declare const zListChartsPath: z.ZodObject<{
1099
+ cluster_id: z.ZodString;
2257
1100
  }, z.core.$strip>;
2258
1101
  /**
2259
1102
  * An array of charts
@@ -2285,42 +1128,31 @@ export declare const zListChartsResponse: z.ZodArray<z.ZodObject<{
2285
1128
  updated_at: z.ZodString;
2286
1129
  ready: z.ZodBoolean;
2287
1130
  }, 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>;
1131
+ export declare const zCreateChartBody: z.ZodObject<{
1132
+ values: z.ZodString;
1133
+ version_channel: z.ZodString;
1134
+ name: z.ZodString;
1135
+ namespace: z.ZodString;
1136
+ chart: z.ZodString;
1137
+ }, z.core.$strip>;
1138
+ export declare const zCreateChartPath: z.ZodObject<{
1139
+ cluster_id: z.ZodString;
2300
1140
  }, z.core.$strip>;
2301
1141
  /**
2302
1142
  * Successfully created. Returns created Chart ID.
2303
1143
  */
2304
1144
  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>;
1145
+ export declare const zDeleteChartPath: z.ZodObject<{
1146
+ cluster_id: z.ZodString;
1147
+ chart_name: z.ZodString;
2312
1148
  }, z.core.$strip>;
2313
1149
  /**
2314
1150
  * Successfully deleted.
2315
1151
  */
2316
1152
  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>;
1153
+ export declare const zGetChartPath: z.ZodObject<{
1154
+ cluster_id: z.ZodString;
1155
+ chart_name: z.ZodString;
2324
1156
  }, z.core.$strip>;
2325
1157
  /**
2326
1158
  * Returns a single object containing chart details.
@@ -2352,27 +1184,20 @@ export declare const zGetChartResponse: z.ZodObject<{
2352
1184
  updated_at: z.ZodString;
2353
1185
  ready: z.ZodBoolean;
2354
1186
  }, 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>;
1187
+ export declare const zUpdateChartBody: z.ZodObject<{
1188
+ values: z.ZodString;
1189
+ version_channel: z.ZodString;
1190
+ }, z.core.$strip>;
1191
+ export declare const zUpdateChartPath: z.ZodObject<{
1192
+ cluster_id: z.ZodString;
1193
+ chart_name: z.ZodString;
2365
1194
  }, z.core.$strip>;
2366
1195
  /**
2367
1196
  * Successfully updated.
2368
1197
  */
2369
1198
  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>;
1199
+ export declare const zListFleetsPath: z.ZodObject<{
1200
+ cluster_id: z.ZodString;
2376
1201
  }, z.core.$strip>;
2377
1202
  /**
2378
1203
  * An array of fleets
@@ -2395,53 +1220,42 @@ export declare const zListFleetsResponse: z.ZodArray<z.ZodObject<{
2395
1220
  }, z.core.$strip>>;
2396
1221
  id: z.ZodString;
2397
1222
  }, 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>;
1223
+ export declare const zCreateFleetBody: z.ZodObject<{
1224
+ limits: z.ZodOptional<z.ZodObject<{
1225
+ cpu: z.ZodNumber;
1226
+ }, z.core.$strip>>;
1227
+ gcp: z.ZodOptional<z.ZodObject<{
1228
+ enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1229
+ project: z.ZodString;
1230
+ }, z.core.$strip>>;
1231
+ hetzner: z.ZodOptional<z.ZodObject<{
1232
+ enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1233
+ apiKey: z.ZodString;
1234
+ }, z.core.$strip>>;
1235
+ aws: z.ZodOptional<z.ZodObject<{
1236
+ enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1237
+ controllerRoleArn: z.ZodString;
1238
+ }, z.core.$strip>>;
1239
+ id: z.ZodString;
1240
+ }, z.core.$strip>;
1241
+ export declare const zCreateFleetPath: z.ZodObject<{
1242
+ cluster_id: z.ZodString;
2421
1243
  }, z.core.$strip>;
2422
1244
  /**
2423
1245
  * Successfully created. Returns created Fleet ID.
2424
1246
  */
2425
1247
  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>;
1248
+ export declare const zDeleteFleetPath: z.ZodObject<{
1249
+ cluster_id: z.ZodString;
1250
+ fleet_name: z.ZodString;
2433
1251
  }, z.core.$strip>;
2434
1252
  /**
2435
1253
  * Successfully deleted.
2436
1254
  */
2437
1255
  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>;
1256
+ export declare const zGetFleetPath: z.ZodObject<{
1257
+ cluster_id: z.ZodString;
1258
+ fleet_name: z.ZodString;
2445
1259
  }, z.core.$strip>;
2446
1260
  /**
2447
1261
  * Returns a single object containing fleet details.
@@ -2464,45 +1278,33 @@ export declare const zGetFleetResponse: z.ZodObject<{
2464
1278
  }, z.core.$strip>>;
2465
1279
  id: z.ZodString;
2466
1280
  }, 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>;
1281
+ export declare const zUpdateFleetBody: z.ZodObject<{
1282
+ limits: z.ZodOptional<z.ZodObject<{
1283
+ cpu: z.ZodNumber;
1284
+ }, z.core.$strip>>;
1285
+ gcp: z.ZodOptional<z.ZodObject<{
1286
+ enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1287
+ project: z.ZodString;
1288
+ }, z.core.$strip>>;
1289
+ hetzner: z.ZodOptional<z.ZodObject<{
1290
+ enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1291
+ apiKey: z.ZodString;
1292
+ }, z.core.$strip>>;
1293
+ aws: z.ZodOptional<z.ZodObject<{
1294
+ enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1295
+ controllerRoleArn: z.ZodString;
1296
+ }, z.core.$strip>>;
1297
+ }, z.core.$strip>;
1298
+ export declare const zUpdateFleetPath: z.ZodObject<{
1299
+ cluster_id: z.ZodString;
1300
+ fleet_name: z.ZodString;
2490
1301
  }, z.core.$strip>;
2491
1302
  /**
2492
1303
  * Successfully updated.
2493
1304
  */
2494
1305
  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>;
1306
+ export declare const zQueryClusterPath: z.ZodObject<{
1307
+ cluster_id: z.ZodString;
2506
1308
  }, z.core.$strip>;
2507
1309
  /**
2508
1310
  * An array of clusters
@@ -2514,17 +1316,17 @@ export declare const zListClustersResponse: z.ZodArray<z.ZodObject<{
2514
1316
  pro: "pro";
2515
1317
  }>;
2516
1318
  region: z.ZodOptional<z.ZodEnum<{
2517
- staging: "staging";
1319
+ "staging-1a": "staging-1a";
2518
1320
  "northamerica-central-1": "northamerica-central-1";
2519
1321
  "europe-central-1a": "europe-central-1a";
2520
1322
  "northamerica-central-1a": "northamerica-central-1a";
2521
1323
  }>>;
2522
- version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
2523
1324
  id: z.ZodUUID;
2524
1325
  status: z.ZodEnum<{
2525
1326
  deleted: "deleted";
2526
1327
  failed: "failed";
2527
1328
  active: "active";
1329
+ disabled: "disabled";
2528
1330
  creating: "creating";
2529
1331
  deployed: "deployed";
2530
1332
  updating: "updating";
@@ -2537,46 +1339,40 @@ export declare const zListClustersResponse: z.ZodArray<z.ZodObject<{
2537
1339
  created_at: z.ZodOptional<z.ZodString>;
2538
1340
  updated_at: z.ZodOptional<z.ZodString>;
2539
1341
  ready: z.ZodOptional<z.ZodBoolean>;
1342
+ version_channel: z.ZodOptional<z.ZodString>;
2540
1343
  }, 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>;
1344
+ export declare const zCreateClusterBody: z.ZodObject<{
1345
+ name: z.ZodString;
1346
+ tier: z.ZodEnum<{
1347
+ basic: "basic";
1348
+ pro: "pro";
1349
+ }>;
1350
+ region: z.ZodOptional<z.ZodEnum<{
1351
+ "staging-1a": "staging-1a";
1352
+ "northamerica-central-1": "northamerica-central-1";
1353
+ "europe-central-1a": "europe-central-1a";
1354
+ "northamerica-central-1a": "northamerica-central-1a";
1355
+ }>>;
1356
+ version_channel: z.ZodOptional<z.ZodEnum<{
1357
+ "1.x.x-cfke.x": "1.x.x-cfke.x";
1358
+ "1.31.x-cfke.x": "1.31.x-cfke.x";
1359
+ "1.32.x-cfke.x": "1.32.x-cfke.x";
1360
+ "1.33.x-cfke.x": "1.33.x-cfke.x";
1361
+ }>>;
2558
1362
  }, z.core.$strip>;
2559
1363
  /**
2560
1364
  * Successfully created. Returns created Cluster ID.
2561
1365
  */
2562
1366
  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>;
1367
+ export declare const zDeleteClusterPath: z.ZodObject<{
1368
+ cluster_id: z.ZodString;
2569
1369
  }, z.core.$strip>;
2570
1370
  /**
2571
1371
  * Successfully deleted.
2572
1372
  */
2573
1373
  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>;
1374
+ export declare const zGetClusterPath: z.ZodObject<{
1375
+ cluster_id: z.ZodString;
2580
1376
  }, z.core.$strip>;
2581
1377
  /**
2582
1378
  * Returns a single object containing cluster details.
@@ -2588,17 +1384,17 @@ export declare const zGetClusterResponse: z.ZodObject<{
2588
1384
  pro: "pro";
2589
1385
  }>;
2590
1386
  region: z.ZodOptional<z.ZodEnum<{
2591
- staging: "staging";
1387
+ "staging-1a": "staging-1a";
2592
1388
  "northamerica-central-1": "northamerica-central-1";
2593
1389
  "europe-central-1a": "europe-central-1a";
2594
1390
  "northamerica-central-1a": "northamerica-central-1a";
2595
1391
  }>>;
2596
- version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
2597
1392
  id: z.ZodUUID;
2598
1393
  status: z.ZodEnum<{
2599
1394
  deleted: "deleted";
2600
1395
  failed: "failed";
2601
1396
  active: "active";
1397
+ disabled: "disabled";
2602
1398
  creating: "creating";
2603
1399
  deployed: "deployed";
2604
1400
  updating: "updating";
@@ -2611,20 +1407,18 @@ export declare const zGetClusterResponse: z.ZodObject<{
2611
1407
  created_at: z.ZodOptional<z.ZodString>;
2612
1408
  updated_at: z.ZodOptional<z.ZodString>;
2613
1409
  ready: z.ZodOptional<z.ZodBoolean>;
1410
+ version_channel: z.ZodOptional<z.ZodString>;
2614
1411
  }, 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>;
1412
+ export declare const zUpdateClusterBody: z.ZodObject<{
1413
+ name: z.ZodOptional<z.ZodString>;
1414
+ tier: z.ZodEnum<{
1415
+ basic: "basic";
1416
+ pro: "pro";
1417
+ }>;
1418
+ version_channel: z.ZodOptional<z.ZodString>;
1419
+ }, z.core.$strip>;
1420
+ export declare const zUpdateClusterPath: z.ZodObject<{
1421
+ cluster_id: z.ZodString;
2628
1422
  }, z.core.$strip>;
2629
1423
  /**
2630
1424
  * Successfully updated. Returns updated cluster details.
@@ -2636,17 +1430,17 @@ export declare const zUpdateClusterResponse: z.ZodObject<{
2636
1430
  pro: "pro";
2637
1431
  }>;
2638
1432
  region: z.ZodOptional<z.ZodEnum<{
2639
- staging: "staging";
1433
+ "staging-1a": "staging-1a";
2640
1434
  "northamerica-central-1": "northamerica-central-1";
2641
1435
  "europe-central-1a": "europe-central-1a";
2642
1436
  "northamerica-central-1a": "northamerica-central-1a";
2643
1437
  }>>;
2644
- version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
2645
1438
  id: z.ZodUUID;
2646
1439
  status: z.ZodEnum<{
2647
1440
  deleted: "deleted";
2648
1441
  failed: "failed";
2649
1442
  active: "active";
1443
+ disabled: "disabled";
2650
1444
  creating: "creating";
2651
1445
  deployed: "deployed";
2652
1446
  updating: "updating";
@@ -2659,13 +1453,17 @@ export declare const zUpdateClusterResponse: z.ZodObject<{
2659
1453
  created_at: z.ZodOptional<z.ZodString>;
2660
1454
  updated_at: z.ZodOptional<z.ZodString>;
2661
1455
  ready: z.ZodOptional<z.ZodBoolean>;
1456
+ version_channel: z.ZodOptional<z.ZodString>;
2662
1457
  }, 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>;
1458
+ export declare const zGetClusterCaPath: z.ZodObject<{
1459
+ cluster_id: z.ZodString;
1460
+ }, z.core.$strip>;
1461
+ /**
1462
+ * PEM-encoded certificate authority of the cluster.
1463
+ */
1464
+ export declare const zGetClusterCaResponse: z.ZodString;
1465
+ export declare const zGetJoinInformationPath: z.ZodObject<{
1466
+ cluster_id: z.ZodString;
2669
1467
  }, z.core.$strip>;
2670
1468
  /**
2671
1469
  * An object of cluster join information
@@ -2673,6 +1471,7 @@ export declare const zGetJoinInformationData: z.ZodObject<{
2673
1471
  export declare const zGetJoinInformationResponse: z.ZodObject<{
2674
1472
  certificate_authority: z.ZodString;
2675
1473
  endpoint: z.ZodURL;
1474
+ cluster_dns: z.ZodString;
2676
1475
  auth_key: z.ZodString;
2677
1476
  bootstrap_token: z.ZodString;
2678
1477
  versions: z.ZodObject<{
@@ -2687,11 +1486,6 @@ export declare const zGetJoinInformationResponse: z.ZodObject<{
2687
1486
  gcp_workload_identity_provider: z.ZodString;
2688
1487
  }, z.core.$strip>;
2689
1488
  }, 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
1489
  /**
2696
1490
  * An array of invites
2697
1491
  */
@@ -2702,12 +1496,8 @@ export declare const zListInvitesResponse: z.ZodArray<z.ZodObject<{
2702
1496
  email: z.ZodOptional<z.ZodEmail>;
2703
1497
  code: z.ZodOptional<z.ZodString>;
2704
1498
  }, 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>;
1499
+ export declare const zCreateInviteBody: z.ZodObject<{
1500
+ email: z.ZodOptional<z.ZodString>;
2711
1501
  }, z.core.$strip>;
2712
1502
  /**
2713
1503
  * Successfully created. Returns created invite details.
@@ -2719,12 +1509,8 @@ export declare const zCreateInviteResponse: z.ZodObject<{
2719
1509
  email: z.ZodOptional<z.ZodEmail>;
2720
1510
  code: z.ZodOptional<z.ZodString>;
2721
1511
  }, 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>;
1512
+ export declare const zGetInvitePath: z.ZodObject<{
1513
+ code: z.ZodString;
2728
1514
  }, z.core.$strip>;
2729
1515
  /**
2730
1516
  * Returns a single object containing invite details.
@@ -2736,65 +1522,65 @@ export declare const zGetInviteResponse: z.ZodObject<{
2736
1522
  email: z.ZodOptional<z.ZodEmail>;
2737
1523
  code: z.ZodOptional<z.ZodString>;
2738
1524
  }, 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>;
1525
+ export declare const zDeleteInvitePath: z.ZodObject<{
1526
+ email: z.ZodString;
2750
1527
  }, z.core.$strip>;
2751
1528
  /**
2752
1529
  * An array of chart listings in the marketplace.
2753
1530
  */
2754
1531
  export declare const zListMarketplaceChartsResponse: z.ZodArray<z.ZodObject<{
2755
- id: z.ZodString;
2756
1532
  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>;
1533
+ versions: z.ZodArray<z.ZodString>;
2762
1534
  version_channels: z.ZodArray<z.ZodString>;
2763
- value_schemas: z.ZodArray<z.ZodObject<{
1535
+ latestVersion: z.ZodString;
1536
+ metadata: z.ZodOptional<z.ZodObject<{
1537
+ name: z.ZodString;
2764
1538
  version: z.ZodString;
2765
- schema: z.ZodString;
2766
- placeholder: z.ZodString;
1539
+ description: z.ZodOptional<z.ZodString>;
1540
+ appVersion: z.ZodOptional<z.ZodString>;
1541
+ apiVersion: z.ZodOptional<z.ZodString>;
1542
+ keywords: z.ZodOptional<z.ZodArray<z.ZodString>>;
1543
+ home: z.ZodOptional<z.ZodString>;
1544
+ icon: z.ZodOptional<z.ZodString>;
1545
+ sources: z.ZodOptional<z.ZodArray<z.ZodString>>;
1546
+ maintainers: z.ZodOptional<z.ZodArray<z.ZodObject<{
1547
+ name: z.ZodString;
1548
+ email: z.ZodOptional<z.ZodString>;
1549
+ }, z.core.$strip>>>;
2767
1550
  }, z.core.$strip>>;
2768
1551
  }, 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>;
1552
+ export declare const zGetMarketplaceChartFilesPath: z.ZodObject<{
1553
+ chart_name: z.ZodString;
1554
+ version_channel: z.ZodString;
2775
1555
  }, z.core.$strip>;
2776
1556
  /**
2777
- * Returns an object containing the chart listing details.
1557
+ * Returns an object containing the chart files for the latest matching version.
2778
1558
  */
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>>;
1559
+ export declare const zGetMarketplaceChartFilesResponse: z.ZodObject<{
1560
+ chartYaml: z.ZodOptional<z.ZodString>;
1561
+ valuesYaml: z.ZodOptional<z.ZodString>;
1562
+ valuesSchemaJson: z.ZodOptional<z.ZodString>;
2793
1563
  }, 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>;
1564
+ /**
1565
+ * JSON-RPC 2.0 request payload
1566
+ */
1567
+ export declare const zPostMcpBody: z.ZodObject<{
1568
+ jsonrpc: z.ZodOptional<z.ZodString>;
1569
+ method: z.ZodOptional<z.ZodString>;
1570
+ id: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>;
1571
+ params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1572
+ }, z.core.$strip>;
1573
+ /**
1574
+ * JSON-RPC 2.0 success or error response
1575
+ */
1576
+ export declare const zPostMcpResponse: z.ZodObject<{
1577
+ jsonrpc: z.ZodOptional<z.ZodString>;
1578
+ id: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>;
1579
+ result: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1580
+ error: z.ZodOptional<z.ZodObject<{
1581
+ code: z.ZodOptional<z.ZodInt>;
1582
+ message: z.ZodOptional<z.ZodString>;
1583
+ }, z.core.$strip>>;
2798
1584
  }, z.core.$strip>;
2799
1585
  /**
2800
1586
  * Returns a single object containing organization details.
@@ -2815,6 +1601,7 @@ export declare const zGetOrganizationResponse: z.ZodObject<{
2815
1601
  id: z.ZodString;
2816
1602
  label: z.ZodString;
2817
1603
  }, z.core.$strip>>;
1604
+ cfcr_storage_gb: z.ZodInt;
2818
1605
  }, z.core.$strip>;
2819
1606
  status: z.ZodEnum<{
2820
1607
  active: "active";
@@ -2822,21 +1609,81 @@ export declare const zGetOrganizationResponse: z.ZodObject<{
2822
1609
  suspended: "suspended";
2823
1610
  }>;
2824
1611
  }, 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>;
1612
+ export declare const zCreateOrganizationBody: z.ZodObject<{
1613
+ email: z.ZodEmail;
1614
+ first_name: z.ZodString;
1615
+ last_name: z.ZodString;
1616
+ company_name: z.ZodString;
1617
+ password: z.ZodString;
2835
1618
  }, 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>;
1619
+ /**
1620
+ * List of repositories
1621
+ */
1622
+ export declare const zListRepositoriesResponse: z.ZodArray<z.ZodObject<{
1623
+ name: z.ZodString;
1624
+ region: z.ZodString;
1625
+ uri: z.ZodString;
1626
+ }, z.core.$strip>>;
1627
+ export declare const zListTagsPath: z.ZodObject<{
1628
+ region: z.ZodString;
1629
+ repository: z.ZodString;
1630
+ }, z.core.$strip>;
1631
+ /**
1632
+ * Repository with tags
1633
+ */
1634
+ export declare const zListTagsResponse: z.ZodObject<{
1635
+ name: z.ZodString;
1636
+ region: z.ZodString;
1637
+ uri: z.ZodString;
1638
+ tags: z.ZodArray<z.ZodObject<{
1639
+ name: z.ZodString;
1640
+ size: z.ZodNumber;
1641
+ mediaType: z.ZodOptional<z.ZodString>;
1642
+ platforms: z.ZodOptional<z.ZodArray<z.ZodString>>;
1643
+ }, z.core.$strip>>;
1644
+ totalSize: z.ZodNumber;
1645
+ }, z.core.$strip>;
1646
+ export declare const zDeleteTagPath: z.ZodObject<{
1647
+ region: z.ZodString;
1648
+ repository: z.ZodString;
1649
+ tag: z.ZodString;
1650
+ }, z.core.$strip>;
1651
+ export declare const zGetTagPath: z.ZodObject<{
1652
+ region: z.ZodString;
1653
+ repository: z.ZodString;
1654
+ tag: z.ZodString;
1655
+ }, z.core.$strip>;
1656
+ /**
1657
+ * Tag details
1658
+ */
1659
+ export declare const zGetTagResponse: z.ZodObject<{
1660
+ name: z.ZodString;
1661
+ digest: z.ZodString;
1662
+ mediaType: z.ZodOptional<z.ZodString>;
1663
+ config: z.ZodOptional<z.ZodObject<{
1664
+ size: z.ZodNumber;
1665
+ }, z.core.$strip>>;
1666
+ layers: z.ZodOptional<z.ZodArray<z.ZodObject<{
1667
+ digest: z.ZodOptional<z.ZodString>;
1668
+ size: z.ZodNumber;
1669
+ }, z.core.$strip>>>;
1670
+ manifests: z.ZodOptional<z.ZodArray<z.ZodObject<{
1671
+ digest: z.ZodString;
1672
+ platform: z.ZodOptional<z.ZodObject<{
1673
+ architecture: z.ZodString;
1674
+ os: z.ZodString;
1675
+ variant: z.ZodOptional<z.ZodString>;
1676
+ }, z.core.$strip>>;
1677
+ layers: z.ZodOptional<z.ZodArray<z.ZodObject<{
1678
+ digest: z.ZodOptional<z.ZodString>;
1679
+ size: z.ZodNumber;
1680
+ }, z.core.$strip>>>;
1681
+ size: z.ZodOptional<z.ZodNumber>;
1682
+ }, z.core.$strip>>>;
1683
+ size: z.ZodNumber;
1684
+ region: z.ZodString;
1685
+ repository: z.ZodString;
1686
+ uri: z.ZodString;
2840
1687
  }, z.core.$strip>;
2841
1688
  /**
2842
1689
  * Returns a list of access token details with masked secrets.
@@ -2851,16 +1698,12 @@ export declare const zListTokensResponse: z.ZodArray<z.ZodObject<{
2851
1698
  secret: z.ZodOptional<z.ZodString>;
2852
1699
  date_created: z.ZodISODateTime;
2853
1700
  }, 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>;
1701
+ export declare const zCreateTokenBody: z.ZodObject<{
1702
+ name: z.ZodString;
1703
+ role: z.ZodEnum<{
1704
+ Administrator: "Administrator";
1705
+ User: "User";
1706
+ }>;
2864
1707
  }, z.core.$strip>;
2865
1708
  /**
2866
1709
  * Successfully created. Returns created token details with unmasked/raw secret.
@@ -2875,19 +1718,11 @@ export declare const zCreateTokenResponse: z.ZodObject<{
2875
1718
  secret: z.ZodOptional<z.ZodString>;
2876
1719
  date_created: z.ZodISODateTime;
2877
1720
  }, 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>;
1721
+ export declare const zDeleteTokenPath: z.ZodObject<{
1722
+ token_id: z.ZodString;
2884
1723
  }, 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>;
1724
+ export declare const zGetTokenPath: z.ZodObject<{
1725
+ token_id: z.ZodString;
2891
1726
  }, z.core.$strip>;
2892
1727
  /**
2893
1728
  * Returns access token details with masked secret.
@@ -2902,18 +1737,15 @@ export declare const zGetTokenResponse: z.ZodObject<{
2902
1737
  secret: z.ZodOptional<z.ZodString>;
2903
1738
  date_created: z.ZodISODateTime;
2904
1739
  }, 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>;
1740
+ export declare const zUpdateTokenBody: z.ZodObject<{
1741
+ name: z.ZodOptional<z.ZodString>;
1742
+ role: z.ZodOptional<z.ZodEnum<{
1743
+ Administrator: "Administrator";
1744
+ User: "User";
1745
+ }>>;
1746
+ }, z.core.$strip>;
1747
+ export declare const zUpdateTokenPath: z.ZodObject<{
1748
+ token_id: z.ZodString;
2917
1749
  }, z.core.$strip>;
2918
1750
  /**
2919
1751
  * Successfully updated. Returns updated token details with masked secret.
@@ -2928,12 +1760,8 @@ export declare const zUpdateTokenResponse: z.ZodObject<{
2928
1760
  secret: z.ZodOptional<z.ZodString>;
2929
1761
  date_created: z.ZodISODateTime;
2930
1762
  }, 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>;
1763
+ export declare const zRegenerateTokenPath: z.ZodObject<{
1764
+ token_id: z.ZodString;
2937
1765
  }, z.core.$strip>;
2938
1766
  /**
2939
1767
  * Successfully updated. Returns updated token details with unmasked / raw secret.
@@ -2948,12 +1776,8 @@ export declare const zRegenerateTokenResponse: z.ZodObject<{
2948
1776
  secret: z.ZodOptional<z.ZodString>;
2949
1777
  date_created: z.ZodISODateTime;
2950
1778
  }, 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>;
1779
+ export declare const zListUserOrganizationsPath: z.ZodObject<{
1780
+ email: z.ZodString;
2957
1781
  }, z.core.$strip>;
2958
1782
  /**
2959
1783
  * An array of organizations the user belongs to.
@@ -2962,11 +1786,6 @@ export declare const zListUserOrganizationsResponse: z.ZodArray<z.ZodObject<{
2962
1786
  realm: z.ZodOptional<z.ZodString>;
2963
1787
  displayName: z.ZodOptional<z.ZodString>;
2964
1788
  }, 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
1789
  /**
2971
1790
  * An array of users
2972
1791
  */
@@ -2985,24 +1804,20 @@ export declare const zListUsersResponse: z.ZodArray<z.ZodObject<{
2985
1804
  id: z.ZodUUID;
2986
1805
  date_created: z.ZodISODateTime;
2987
1806
  }, 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>;
1807
+ export declare const zCreateUserBody: z.ZodObject<{
1808
+ email: z.ZodEmail;
1809
+ first_name: z.ZodString;
1810
+ last_name: z.ZodString;
1811
+ code: z.ZodString;
1812
+ password: z.ZodString;
1813
+ status: z.ZodOptional<z.ZodEnum<{
1814
+ active: "active";
1815
+ inactive: "inactive";
1816
+ }>>;
1817
+ role: z.ZodOptional<z.ZodEnum<{
1818
+ Administrator: "Administrator";
1819
+ User: "User";
1820
+ }>>;
3006
1821
  }, z.core.$strip>;
3007
1822
  /**
3008
1823
  * Successfully created. Returns created user details.
@@ -3022,12 +1837,8 @@ export declare const zCreateUserResponse: z.ZodObject<{
3022
1837
  id: z.ZodUUID;
3023
1838
  date_created: z.ZodISODateTime;
3024
1839
  }, 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>;
1840
+ export declare const zDeleteUserPath: z.ZodObject<{
1841
+ user_id: z.ZodString;
3031
1842
  }, z.core.$strip>;
3032
1843
  /**
3033
1844
  * User profile information
@@ -3047,12 +1858,8 @@ export declare const zDeleteUserResponse: z.ZodObject<{
3047
1858
  id: z.ZodUUID;
3048
1859
  date_created: z.ZodISODateTime;
3049
1860
  }, 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>;
1861
+ export declare const zGetUserPath: z.ZodObject<{
1862
+ user_id: z.ZodString;
3056
1863
  }, z.core.$strip>;
3057
1864
  /**
3058
1865
  * User profile information
@@ -3072,24 +1879,21 @@ export declare const zGetUserResponse: z.ZodObject<{
3072
1879
  id: z.ZodUUID;
3073
1880
  date_created: z.ZodISODateTime;
3074
1881
  }, 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>;
1882
+ export declare const zUpdateUserBody: z.ZodObject<{
1883
+ email: z.ZodOptional<z.ZodEmail>;
1884
+ first_name: z.ZodOptional<z.ZodString>;
1885
+ last_name: z.ZodOptional<z.ZodString>;
1886
+ role: z.ZodOptional<z.ZodEnum<{
1887
+ Administrator: "Administrator";
1888
+ User: "User";
1889
+ }>>;
1890
+ status: z.ZodOptional<z.ZodEnum<{
1891
+ active: "active";
1892
+ inactive: "inactive";
1893
+ }>>;
1894
+ }, z.core.$strip>;
1895
+ export declare const zUpdateUserPath: z.ZodObject<{
1896
+ user_id: z.ZodString;
3093
1897
  }, z.core.$strip>;
3094
1898
  /**
3095
1899
  * Successfully created. Returns created user details.