@cloudfleet/sdk 0.0.1-cb34d78 → 0.0.1-cd7e06c

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 +629 -481
  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 +579 -324
  49. package/dist/types.gen.d.ts.map +1 -1
  50. package/dist/zod.gen.d.ts +616 -1813
  51. package/dist/zod.gen.d.ts.map +1 -1
  52. package/dist/zod.gen.js +361 -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,9 @@ export declare const zOrganization: z.ZodObject<{
947
390
  id: z.ZodString;
948
391
  label: z.ZodString;
949
392
  }, z.core.$strip>>;
393
+ copilot_user_hourly_tokens: z.ZodInt;
394
+ copilot_organization_hourly_tokens: z.ZodInt;
395
+ cfcr_storage_gb: z.ZodInt;
950
396
  }, z.core.$strip>;
951
397
  status: z.ZodEnum<{
952
398
  active: "active";
@@ -975,6 +421,68 @@ export declare const zPaymentMethod: z.ZodObject<{
975
421
  visa: "visa";
976
422
  }>;
977
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>;
978
486
  export declare const zTokenCreateInput: z.ZodObject<{
979
487
  name: z.ZodString;
980
488
  role: z.ZodEnum<{
@@ -999,37 +507,31 @@ export declare const zTokenUpdateInput: z.ZodObject<{
999
507
  User: "User";
1000
508
  }>>;
1001
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>;
1002
528
  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
- }>]>;
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;
1033
535
  }, z.core.$strip>;
1034
536
  export declare const zUserCreateInput: z.ZodObject<{
1035
537
  email: z.ZodEmail;
@@ -1074,59 +576,29 @@ export declare const zUserUpdateInput: z.ZodObject<{
1074
576
  inactive: "inactive";
1075
577
  }>>;
1076
578
  }, 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>;
579
+ export declare const zGetUsageQuery: z.ZodObject<{
580
+ granularity: z.ZodOptional<z.ZodEnum<{
581
+ hourly: "hourly";
582
+ daily: "daily";
583
+ monthly: "monthly";
584
+ }>>;
1121
585
  }, z.core.$strip>;
1122
586
  /**
1123
- * Current balance of the organization in USD as a floating-point number.
587
+ * Usage data with facets for filtering
1124
588
  */
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>;
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>;
1130
602
  }, z.core.$strip>;
1131
603
  /**
1132
604
  * Redacted payment card information.
@@ -1152,11 +624,6 @@ export declare const zGetPaymentMethodResponse: z.ZodObject<{
1152
624
  visa: "visa";
1153
625
  }>;
1154
626
  }, 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
627
  /**
1161
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.
1162
629
  *
@@ -1164,619 +631,20 @@ export declare const zGetPaymentMethodSecretData: z.ZodObject<{
1164
631
  export declare const zGetPaymentMethodSecretResponse: z.ZodObject<{
1165
632
  id: z.ZodOptional<z.ZodString>;
1166
633
  }, 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
634
  /**
1176
635
  * An array of usage records.
1177
636
  */
1178
637
  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>>>;
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>;
1761
647
  }, 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
648
  /**
1781
649
  * Returns a single object containing organization contact and billing address details.
1782
650
  */
@@ -1790,8 +658,7 @@ export declare const zGetContactResponse: z.ZodObject<{
1790
658
  country: z.ZodOptional<z.ZodString>;
1791
659
  phone: z.ZodOptional<z.ZodString>;
1792
660
  email: z.ZodEmail;
1793
- first_name: z.ZodString;
1794
- last_name: z.ZodString;
661
+ individual_name: z.ZodString;
1795
662
  tax_id: z.ZodOptional<z.ZodString>;
1796
663
  tax_id_type: z.ZodOptional<z.ZodEnum<{
1797
664
  "": "";
@@ -1924,153 +791,148 @@ export declare const zGetContactResponse: z.ZodObject<{
1924
791
  zw_tin: "zw_tin";
1925
792
  }>>;
1926
793
  }, 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>;
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
+ }>>;
2074
936
  }, z.core.$strip>;
2075
937
  /**
2076
938
  * Successfully updated. Returns updated organization details.
@@ -2085,8 +947,7 @@ export declare const zUpdateContactResponse: z.ZodObject<{
2085
947
  country: z.ZodOptional<z.ZodString>;
2086
948
  phone: z.ZodOptional<z.ZodString>;
2087
949
  email: z.ZodEmail;
2088
- first_name: z.ZodString;
2089
- last_name: z.ZodString;
950
+ individual_name: z.ZodString;
2090
951
  tax_id: z.ZodOptional<z.ZodString>;
2091
952
  tax_id_type: z.ZodOptional<z.ZodEnum<{
2092
953
  "": "";
@@ -2219,41 +1080,27 @@ export declare const zUpdateContactResponse: z.ZodObject<{
2219
1080
  zw_tin: "zw_tin";
2220
1081
  }>>;
2221
1082
  }, 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
1083
  /**
2228
1084
  * An array of the applied promotional credits records.
2229
1085
  */
2230
1086
  export declare const zGetCreditsResponse: z.ZodArray<z.ZodObject<{
2231
1087
  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
1088
  type: z.ZodEnum<{
2237
1089
  credit: "credit";
2238
1090
  discount: "discount";
2239
1091
  }>;
2240
- value: z.ZodNumber;
2241
- 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;
2242
1097
  value_remaining: z.ZodOptional<z.ZodNumber>;
2243
1098
  }, 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>;
1099
+ export declare const zRedeemCreditsBody: z.ZodObject<{
1100
+ code: z.ZodOptional<z.ZodString>;
2250
1101
  }, 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>;
1102
+ export declare const zListChartsPath: z.ZodObject<{
1103
+ cluster_id: z.ZodString;
2257
1104
  }, z.core.$strip>;
2258
1105
  /**
2259
1106
  * An array of charts
@@ -2285,42 +1132,31 @@ export declare const zListChartsResponse: z.ZodArray<z.ZodObject<{
2285
1132
  updated_at: z.ZodString;
2286
1133
  ready: z.ZodBoolean;
2287
1134
  }, 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>;
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;
2300
1144
  }, z.core.$strip>;
2301
1145
  /**
2302
1146
  * Successfully created. Returns created Chart ID.
2303
1147
  */
2304
1148
  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>;
1149
+ export declare const zDeleteChartPath: z.ZodObject<{
1150
+ cluster_id: z.ZodString;
1151
+ chart_name: z.ZodString;
2312
1152
  }, z.core.$strip>;
2313
1153
  /**
2314
1154
  * Successfully deleted.
2315
1155
  */
2316
1156
  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>;
1157
+ export declare const zGetChartPath: z.ZodObject<{
1158
+ cluster_id: z.ZodString;
1159
+ chart_name: z.ZodString;
2324
1160
  }, z.core.$strip>;
2325
1161
  /**
2326
1162
  * Returns a single object containing chart details.
@@ -2352,27 +1188,20 @@ export declare const zGetChartResponse: z.ZodObject<{
2352
1188
  updated_at: z.ZodString;
2353
1189
  ready: z.ZodBoolean;
2354
1190
  }, 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>;
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;
2365
1198
  }, z.core.$strip>;
2366
1199
  /**
2367
1200
  * Successfully updated.
2368
1201
  */
2369
1202
  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>;
1203
+ export declare const zListFleetsPath: z.ZodObject<{
1204
+ cluster_id: z.ZodString;
2376
1205
  }, z.core.$strip>;
2377
1206
  /**
2378
1207
  * An array of fleets
@@ -2395,53 +1224,42 @@ export declare const zListFleetsResponse: z.ZodArray<z.ZodObject<{
2395
1224
  }, z.core.$strip>>;
2396
1225
  id: z.ZodString;
2397
1226
  }, 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>;
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;
2421
1247
  }, z.core.$strip>;
2422
1248
  /**
2423
1249
  * Successfully created. Returns created Fleet ID.
2424
1250
  */
2425
1251
  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>;
1252
+ export declare const zDeleteFleetPath: z.ZodObject<{
1253
+ cluster_id: z.ZodString;
1254
+ fleet_name: z.ZodString;
2433
1255
  }, z.core.$strip>;
2434
1256
  /**
2435
1257
  * Successfully deleted.
2436
1258
  */
2437
1259
  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>;
1260
+ export declare const zGetFleetPath: z.ZodObject<{
1261
+ cluster_id: z.ZodString;
1262
+ fleet_name: z.ZodString;
2445
1263
  }, z.core.$strip>;
2446
1264
  /**
2447
1265
  * Returns a single object containing fleet details.
@@ -2464,45 +1282,33 @@ export declare const zGetFleetResponse: z.ZodObject<{
2464
1282
  }, z.core.$strip>>;
2465
1283
  id: z.ZodString;
2466
1284
  }, 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>;
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;
2490
1305
  }, z.core.$strip>;
2491
1306
  /**
2492
1307
  * Successfully updated.
2493
1308
  */
2494
1309
  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>;
1310
+ export declare const zQueryClusterPath: z.ZodObject<{
1311
+ cluster_id: z.ZodString;
2506
1312
  }, z.core.$strip>;
2507
1313
  /**
2508
1314
  * An array of clusters
@@ -2514,17 +1320,17 @@ export declare const zListClustersResponse: z.ZodArray<z.ZodObject<{
2514
1320
  pro: "pro";
2515
1321
  }>;
2516
1322
  region: z.ZodOptional<z.ZodEnum<{
2517
- staging: "staging";
1323
+ "staging-1a": "staging-1a";
2518
1324
  "northamerica-central-1": "northamerica-central-1";
2519
1325
  "europe-central-1a": "europe-central-1a";
2520
1326
  "northamerica-central-1a": "northamerica-central-1a";
2521
1327
  }>>;
2522
- version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
2523
1328
  id: z.ZodUUID;
2524
1329
  status: z.ZodEnum<{
2525
1330
  deleted: "deleted";
2526
1331
  failed: "failed";
2527
1332
  active: "active";
1333
+ disabled: "disabled";
2528
1334
  creating: "creating";
2529
1335
  deployed: "deployed";
2530
1336
  updating: "updating";
@@ -2537,46 +1343,40 @@ export declare const zListClustersResponse: z.ZodArray<z.ZodObject<{
2537
1343
  created_at: z.ZodOptional<z.ZodString>;
2538
1344
  updated_at: z.ZodOptional<z.ZodString>;
2539
1345
  ready: z.ZodOptional<z.ZodBoolean>;
1346
+ version_channel: z.ZodOptional<z.ZodString>;
2540
1347
  }, 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>;
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
+ }>>;
2558
1366
  }, z.core.$strip>;
2559
1367
  /**
2560
1368
  * Successfully created. Returns created Cluster ID.
2561
1369
  */
2562
1370
  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>;
1371
+ export declare const zDeleteClusterPath: z.ZodObject<{
1372
+ cluster_id: z.ZodString;
2569
1373
  }, z.core.$strip>;
2570
1374
  /**
2571
1375
  * Successfully deleted.
2572
1376
  */
2573
1377
  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>;
1378
+ export declare const zGetClusterPath: z.ZodObject<{
1379
+ cluster_id: z.ZodString;
2580
1380
  }, z.core.$strip>;
2581
1381
  /**
2582
1382
  * Returns a single object containing cluster details.
@@ -2588,17 +1388,17 @@ export declare const zGetClusterResponse: z.ZodObject<{
2588
1388
  pro: "pro";
2589
1389
  }>;
2590
1390
  region: z.ZodOptional<z.ZodEnum<{
2591
- staging: "staging";
1391
+ "staging-1a": "staging-1a";
2592
1392
  "northamerica-central-1": "northamerica-central-1";
2593
1393
  "europe-central-1a": "europe-central-1a";
2594
1394
  "northamerica-central-1a": "northamerica-central-1a";
2595
1395
  }>>;
2596
- version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
2597
1396
  id: z.ZodUUID;
2598
1397
  status: z.ZodEnum<{
2599
1398
  deleted: "deleted";
2600
1399
  failed: "failed";
2601
1400
  active: "active";
1401
+ disabled: "disabled";
2602
1402
  creating: "creating";
2603
1403
  deployed: "deployed";
2604
1404
  updating: "updating";
@@ -2611,20 +1411,18 @@ export declare const zGetClusterResponse: z.ZodObject<{
2611
1411
  created_at: z.ZodOptional<z.ZodString>;
2612
1412
  updated_at: z.ZodOptional<z.ZodString>;
2613
1413
  ready: z.ZodOptional<z.ZodBoolean>;
1414
+ version_channel: z.ZodOptional<z.ZodString>;
2614
1415
  }, 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>;
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;
2628
1426
  }, z.core.$strip>;
2629
1427
  /**
2630
1428
  * Successfully updated. Returns updated cluster details.
@@ -2636,17 +1434,17 @@ export declare const zUpdateClusterResponse: z.ZodObject<{
2636
1434
  pro: "pro";
2637
1435
  }>;
2638
1436
  region: z.ZodOptional<z.ZodEnum<{
2639
- staging: "staging";
1437
+ "staging-1a": "staging-1a";
2640
1438
  "northamerica-central-1": "northamerica-central-1";
2641
1439
  "europe-central-1a": "europe-central-1a";
2642
1440
  "northamerica-central-1a": "northamerica-central-1a";
2643
1441
  }>>;
2644
- version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
2645
1442
  id: z.ZodUUID;
2646
1443
  status: z.ZodEnum<{
2647
1444
  deleted: "deleted";
2648
1445
  failed: "failed";
2649
1446
  active: "active";
1447
+ disabled: "disabled";
2650
1448
  creating: "creating";
2651
1449
  deployed: "deployed";
2652
1450
  updating: "updating";
@@ -2659,13 +1457,10 @@ export declare const zUpdateClusterResponse: z.ZodObject<{
2659
1457
  created_at: z.ZodOptional<z.ZodString>;
2660
1458
  updated_at: z.ZodOptional<z.ZodString>;
2661
1459
  ready: z.ZodOptional<z.ZodBoolean>;
1460
+ version_channel: z.ZodOptional<z.ZodString>;
2662
1461
  }, 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>;
1462
+ export declare const zGetJoinInformationPath: z.ZodObject<{
1463
+ cluster_id: z.ZodString;
2669
1464
  }, z.core.$strip>;
2670
1465
  /**
2671
1466
  * An object of cluster join information
@@ -2673,6 +1468,7 @@ export declare const zGetJoinInformationData: z.ZodObject<{
2673
1468
  export declare const zGetJoinInformationResponse: z.ZodObject<{
2674
1469
  certificate_authority: z.ZodString;
2675
1470
  endpoint: z.ZodURL;
1471
+ cluster_dns: z.ZodString;
2676
1472
  auth_key: z.ZodString;
2677
1473
  bootstrap_token: z.ZodString;
2678
1474
  versions: z.ZodObject<{
@@ -2687,11 +1483,6 @@ export declare const zGetJoinInformationResponse: z.ZodObject<{
2687
1483
  gcp_workload_identity_provider: z.ZodString;
2688
1484
  }, z.core.$strip>;
2689
1485
  }, 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
1486
  /**
2696
1487
  * An array of invites
2697
1488
  */
@@ -2702,12 +1493,8 @@ export declare const zListInvitesResponse: z.ZodArray<z.ZodObject<{
2702
1493
  email: z.ZodOptional<z.ZodEmail>;
2703
1494
  code: z.ZodOptional<z.ZodString>;
2704
1495
  }, 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>;
1496
+ export declare const zCreateInviteBody: z.ZodObject<{
1497
+ email: z.ZodOptional<z.ZodString>;
2711
1498
  }, z.core.$strip>;
2712
1499
  /**
2713
1500
  * Successfully created. Returns created invite details.
@@ -2719,12 +1506,8 @@ export declare const zCreateInviteResponse: z.ZodObject<{
2719
1506
  email: z.ZodOptional<z.ZodEmail>;
2720
1507
  code: z.ZodOptional<z.ZodString>;
2721
1508
  }, 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>;
1509
+ export declare const zGetInvitePath: z.ZodObject<{
1510
+ code: z.ZodString;
2728
1511
  }, z.core.$strip>;
2729
1512
  /**
2730
1513
  * Returns a single object containing invite details.
@@ -2736,65 +1519,65 @@ export declare const zGetInviteResponse: z.ZodObject<{
2736
1519
  email: z.ZodOptional<z.ZodEmail>;
2737
1520
  code: z.ZodOptional<z.ZodString>;
2738
1521
  }, 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>;
1522
+ export declare const zDeleteInvitePath: z.ZodObject<{
1523
+ email: z.ZodString;
2750
1524
  }, z.core.$strip>;
2751
1525
  /**
2752
1526
  * An array of chart listings in the marketplace.
2753
1527
  */
2754
1528
  export declare const zListMarketplaceChartsResponse: z.ZodArray<z.ZodObject<{
2755
- id: z.ZodString;
2756
1529
  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>;
1530
+ versions: z.ZodArray<z.ZodString>;
2762
1531
  version_channels: z.ZodArray<z.ZodString>;
2763
- value_schemas: z.ZodArray<z.ZodObject<{
1532
+ latestVersion: z.ZodString;
1533
+ metadata: z.ZodOptional<z.ZodObject<{
1534
+ name: z.ZodString;
2764
1535
  version: z.ZodString;
2765
- schema: z.ZodString;
2766
- 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>>>;
2767
1547
  }, z.core.$strip>>;
2768
1548
  }, 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>;
1549
+ export declare const zGetMarketplaceChartFilesPath: z.ZodObject<{
1550
+ chart_name: z.ZodString;
1551
+ version_channel: z.ZodString;
2775
1552
  }, z.core.$strip>;
2776
1553
  /**
2777
- * Returns an object containing the chart listing details.
1554
+ * Returns an object containing the chart files for the latest matching version.
2778
1555
  */
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>>;
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>;
2793
1560
  }, 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>;
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>>;
2798
1581
  }, z.core.$strip>;
2799
1582
  /**
2800
1583
  * Returns a single object containing organization details.
@@ -2815,6 +1598,9 @@ export declare const zGetOrganizationResponse: z.ZodObject<{
2815
1598
  id: z.ZodString;
2816
1599
  label: z.ZodString;
2817
1600
  }, z.core.$strip>>;
1601
+ copilot_user_hourly_tokens: z.ZodInt;
1602
+ copilot_organization_hourly_tokens: z.ZodInt;
1603
+ cfcr_storage_gb: z.ZodInt;
2818
1604
  }, z.core.$strip>;
2819
1605
  status: z.ZodEnum<{
2820
1606
  active: "active";
@@ -2822,21 +1608,81 @@ export declare const zGetOrganizationResponse: z.ZodObject<{
2822
1608
  suspended: "suspended";
2823
1609
  }>;
2824
1610
  }, 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>;
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;
2835
1617
  }, 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>;
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;
2840
1686
  }, z.core.$strip>;
2841
1687
  /**
2842
1688
  * Returns a list of access token details with masked secrets.
@@ -2851,16 +1697,12 @@ export declare const zListTokensResponse: z.ZodArray<z.ZodObject<{
2851
1697
  secret: z.ZodOptional<z.ZodString>;
2852
1698
  date_created: z.ZodISODateTime;
2853
1699
  }, 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>;
1700
+ export declare const zCreateTokenBody: z.ZodObject<{
1701
+ name: z.ZodString;
1702
+ role: z.ZodEnum<{
1703
+ Administrator: "Administrator";
1704
+ User: "User";
1705
+ }>;
2864
1706
  }, z.core.$strip>;
2865
1707
  /**
2866
1708
  * Successfully created. Returns created token details with unmasked/raw secret.
@@ -2875,19 +1717,11 @@ export declare const zCreateTokenResponse: z.ZodObject<{
2875
1717
  secret: z.ZodOptional<z.ZodString>;
2876
1718
  date_created: z.ZodISODateTime;
2877
1719
  }, 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>;
1720
+ export declare const zDeleteTokenPath: z.ZodObject<{
1721
+ token_id: z.ZodString;
2884
1722
  }, 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>;
1723
+ export declare const zGetTokenPath: z.ZodObject<{
1724
+ token_id: z.ZodString;
2891
1725
  }, z.core.$strip>;
2892
1726
  /**
2893
1727
  * Returns access token details with masked secret.
@@ -2902,18 +1736,15 @@ export declare const zGetTokenResponse: z.ZodObject<{
2902
1736
  secret: z.ZodOptional<z.ZodString>;
2903
1737
  date_created: z.ZodISODateTime;
2904
1738
  }, 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>;
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;
2917
1748
  }, z.core.$strip>;
2918
1749
  /**
2919
1750
  * Successfully updated. Returns updated token details with masked secret.
@@ -2928,12 +1759,8 @@ export declare const zUpdateTokenResponse: z.ZodObject<{
2928
1759
  secret: z.ZodOptional<z.ZodString>;
2929
1760
  date_created: z.ZodISODateTime;
2930
1761
  }, 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>;
1762
+ export declare const zRegenerateTokenPath: z.ZodObject<{
1763
+ token_id: z.ZodString;
2937
1764
  }, z.core.$strip>;
2938
1765
  /**
2939
1766
  * Successfully updated. Returns updated token details with unmasked / raw secret.
@@ -2948,12 +1775,8 @@ export declare const zRegenerateTokenResponse: z.ZodObject<{
2948
1775
  secret: z.ZodOptional<z.ZodString>;
2949
1776
  date_created: z.ZodISODateTime;
2950
1777
  }, 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>;
1778
+ export declare const zListUserOrganizationsPath: z.ZodObject<{
1779
+ email: z.ZodString;
2957
1780
  }, z.core.$strip>;
2958
1781
  /**
2959
1782
  * An array of organizations the user belongs to.
@@ -2962,11 +1785,6 @@ export declare const zListUserOrganizationsResponse: z.ZodArray<z.ZodObject<{
2962
1785
  realm: z.ZodOptional<z.ZodString>;
2963
1786
  displayName: z.ZodOptional<z.ZodString>;
2964
1787
  }, 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
1788
  /**
2971
1789
  * An array of users
2972
1790
  */
@@ -2985,24 +1803,20 @@ export declare const zListUsersResponse: z.ZodArray<z.ZodObject<{
2985
1803
  id: z.ZodUUID;
2986
1804
  date_created: z.ZodISODateTime;
2987
1805
  }, 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>;
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
+ }>>;
3006
1820
  }, z.core.$strip>;
3007
1821
  /**
3008
1822
  * Successfully created. Returns created user details.
@@ -3022,12 +1836,8 @@ export declare const zCreateUserResponse: z.ZodObject<{
3022
1836
  id: z.ZodUUID;
3023
1837
  date_created: z.ZodISODateTime;
3024
1838
  }, 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>;
1839
+ export declare const zDeleteUserPath: z.ZodObject<{
1840
+ user_id: z.ZodString;
3031
1841
  }, z.core.$strip>;
3032
1842
  /**
3033
1843
  * User profile information
@@ -3047,12 +1857,8 @@ export declare const zDeleteUserResponse: z.ZodObject<{
3047
1857
  id: z.ZodUUID;
3048
1858
  date_created: z.ZodISODateTime;
3049
1859
  }, 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>;
1860
+ export declare const zGetUserPath: z.ZodObject<{
1861
+ user_id: z.ZodString;
3056
1862
  }, z.core.$strip>;
3057
1863
  /**
3058
1864
  * User profile information
@@ -3072,24 +1878,21 @@ export declare const zGetUserResponse: z.ZodObject<{
3072
1878
  id: z.ZodUUID;
3073
1879
  date_created: z.ZodISODateTime;
3074
1880
  }, 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>;
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;
3093
1896
  }, z.core.$strip>;
3094
1897
  /**
3095
1898
  * Successfully created. Returns created user details.