@cloudfleet/sdk 0.0.1-869c561 → 0.0.1-964486e

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 (53) hide show
  1. package/dist/client/client.d.ts +3 -0
  2. package/dist/client/client.d.ts.map +1 -0
  3. package/dist/client/client.js +144 -0
  4. package/dist/client/client.js.map +1 -0
  5. package/dist/client/index.d.ts +8 -0
  6. package/dist/client/index.d.ts.map +1 -0
  7. package/dist/client/index.js +5 -0
  8. package/dist/client/index.js.map +1 -0
  9. package/dist/client/types.d.ts +120 -0
  10. package/dist/client/types.d.ts.map +1 -0
  11. package/dist/client/types.js +2 -0
  12. package/dist/client/types.js.map +1 -0
  13. package/dist/client/utils.d.ts +46 -0
  14. package/dist/client/utils.d.ts.map +1 -0
  15. package/dist/client/utils.js +285 -0
  16. package/dist/client/utils.js.map +1 -0
  17. package/dist/client.gen.d.ts +2 -2
  18. package/dist/client.gen.d.ts.map +1 -1
  19. package/dist/client.gen.js +1 -1
  20. package/dist/client.gen.js.map +1 -1
  21. package/dist/core/auth.d.ts +19 -0
  22. package/dist/core/auth.d.ts.map +1 -0
  23. package/dist/core/auth.js +14 -0
  24. package/dist/core/auth.js.map +1 -0
  25. package/dist/core/bodySerializer.d.ts +18 -0
  26. package/dist/core/bodySerializer.d.ts.map +1 -0
  27. package/dist/core/bodySerializer.js +54 -0
  28. package/dist/core/bodySerializer.js.map +1 -0
  29. package/dist/core/params.d.ts +24 -0
  30. package/dist/core/params.d.ts.map +1 -0
  31. package/dist/core/params.js +88 -0
  32. package/dist/core/params.js.map +1 -0
  33. package/dist/core/pathSerializer.d.ts +34 -0
  34. package/dist/core/pathSerializer.d.ts.map +1 -0
  35. package/dist/core/pathSerializer.js +114 -0
  36. package/dist/core/pathSerializer.js.map +1 -0
  37. package/dist/core/types.d.ts +74 -0
  38. package/dist/core/types.d.ts.map +1 -0
  39. package/dist/core/types.js +2 -0
  40. package/dist/core/types.js.map +1 -0
  41. package/dist/schemas.gen.d.ts +21 -14
  42. package/dist/schemas.gen.d.ts.map +1 -1
  43. package/dist/schemas.gen.js +21 -14
  44. package/dist/schemas.gen.js.map +1 -1
  45. package/dist/sdk.gen.d.ts +48 -48
  46. package/dist/sdk.gen.d.ts.map +1 -1
  47. package/dist/types.gen.d.ts +12 -8
  48. package/dist/types.gen.d.ts.map +1 -1
  49. package/dist/zod.gen.d.ts +1463 -495
  50. package/dist/zod.gen.d.ts.map +1 -1
  51. package/dist/zod.gen.js +326 -164
  52. package/dist/zod.gen.js.map +1 -1
  53. package/package.json +4 -5
package/dist/zod.gen.d.ts CHANGED
@@ -138,18 +138,18 @@ export declare const zChartUpdateInput: z.ZodObject<{
138
138
  }>;
139
139
  export declare const zClusterCreateInput: z.ZodObject<{
140
140
  name: z.ZodString;
141
- region: z.ZodOptional<z.ZodEnum<["staging", "northamerica-central-1"]>>;
142
141
  tier: z.ZodEnum<["basic", "pro"]>;
142
+ region: z.ZodOptional<z.ZodEnum<["staging", "northamerica-central-1", "europe-central-1a"]>>;
143
143
  version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
144
144
  }, "strip", z.ZodTypeAny, {
145
145
  name: string;
146
146
  version_channel: string;
147
147
  tier: "basic" | "pro";
148
- region?: "staging" | "northamerica-central-1" | undefined;
148
+ region?: "staging" | "northamerica-central-1" | "europe-central-1a" | undefined;
149
149
  }, {
150
150
  name: string;
151
151
  tier: "basic" | "pro";
152
- region?: "staging" | "northamerica-central-1" | undefined;
152
+ region?: "staging" | "northamerica-central-1" | "europe-central-1a" | undefined;
153
153
  version_channel?: string | undefined;
154
154
  }>;
155
155
  export declare const zClusterJoinInformation: z.ZodObject<{
@@ -216,8 +216,8 @@ export declare const zClusterJoinInformation: z.ZodObject<{
216
216
  }>;
217
217
  export declare const zCluster: z.ZodObject<{
218
218
  name: z.ZodString;
219
- region: z.ZodOptional<z.ZodEnum<["staging", "northamerica-central-1"]>>;
220
219
  tier: z.ZodEnum<["basic", "pro"]>;
220
+ region: z.ZodOptional<z.ZodEnum<["staging", "northamerica-central-1", "europe-central-1a"]>>;
221
221
  version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
222
222
  id: z.ZodString;
223
223
  status: z.ZodEnum<["active", "deleted", "creating", "deployed", "failed", "updating"]>;
@@ -234,7 +234,7 @@ export declare const zCluster: z.ZodObject<{
234
234
  version_channel: string;
235
235
  tier: "basic" | "pro";
236
236
  ready?: boolean | undefined;
237
- region?: "staging" | "northamerica-central-1" | undefined;
237
+ region?: "staging" | "northamerica-central-1" | "europe-central-1a" | undefined;
238
238
  version_current?: string | undefined;
239
239
  created_at?: string | undefined;
240
240
  updated_at?: string | undefined;
@@ -246,7 +246,7 @@ export declare const zCluster: z.ZodObject<{
246
246
  status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
247
247
  tier: "basic" | "pro";
248
248
  ready?: boolean | undefined;
249
- region?: "staging" | "northamerica-central-1" | undefined;
249
+ region?: "staging" | "northamerica-central-1" | "europe-central-1a" | undefined;
250
250
  version_channel?: string | undefined;
251
251
  version_current?: string | undefined;
252
252
  created_at?: string | undefined;
@@ -256,11 +256,14 @@ export declare const zCluster: z.ZodObject<{
256
256
  }>;
257
257
  export declare const zClusterUpdateInput: z.ZodObject<{
258
258
  name: z.ZodOptional<z.ZodString>;
259
+ tier: z.ZodEnum<["basic", "pro"]>;
259
260
  version_channel: z.ZodOptional<z.ZodString>;
260
261
  }, "strip", z.ZodTypeAny, {
262
+ tier: "basic" | "pro";
261
263
  name?: string | undefined;
262
264
  version_channel?: string | undefined;
263
265
  }, {
266
+ tier: "basic" | "pro";
264
267
  name?: string | undefined;
265
268
  version_channel?: string | undefined;
266
269
  }>;
@@ -536,7 +539,7 @@ export declare const zInvoice: z.ZodObject<{
536
539
  quantity: z.ZodOptional<z.ZodNumber>;
537
540
  itemDetails: z.ZodOptional<z.ZodString>;
538
541
  catalogEffectiveDate: z.ZodOptional<z.ZodString>;
539
- childItems: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
542
+ childItems: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodArray<z.ZodUnknown, "many">, z.ZodBoolean, z.ZodNumber, z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>, z.ZodString]>, "many">>;
540
543
  }, "strip", z.ZodTypeAny, {
541
544
  currency?: "AED" | "AFN" | "ALL" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BRL" | "BSD" | "BTN" | "BWP" | "BYR" | "BZD" | "CAD" | "CDF" | "CHF" | "CLP" | "CNY" | "COP" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GGP" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "IMP" | "INR" | "IQD" | "IRR" | "ISK" | "JEP" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LTL" | "LVL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRO" | "MUR" | "MVR" | "MWK" | "MXN" | "MYR" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SPL" | "SRD" | "STD" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TVD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "UYU" | "UZS" | "VEF" | "VND" | "VUV" | "WST" | "XAF" | "XCD" | "XDR" | "XOF" | "XPF" | "YER" | "ZAR" | "ZMW" | "ZWD" | "BTC" | undefined;
542
545
  id?: string | undefined;
@@ -558,7 +561,7 @@ export declare const zInvoice: z.ZodObject<{
558
561
  quantity?: number | undefined;
559
562
  itemDetails?: string | undefined;
560
563
  catalogEffectiveDate?: string | undefined;
561
- childItems?: unknown[] | undefined;
564
+ childItems?: (string | number | boolean | unknown[] | {})[] | undefined;
562
565
  }, {
563
566
  currency?: "AED" | "AFN" | "ALL" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BRL" | "BSD" | "BTN" | "BWP" | "BYR" | "BZD" | "CAD" | "CDF" | "CHF" | "CLP" | "CNY" | "COP" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GGP" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "IMP" | "INR" | "IQD" | "IRR" | "ISK" | "JEP" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LTL" | "LVL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRO" | "MUR" | "MVR" | "MWK" | "MXN" | "MYR" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SPL" | "SRD" | "STD" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TVD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "UYU" | "UZS" | "VEF" | "VND" | "VUV" | "WST" | "XAF" | "XCD" | "XDR" | "XOF" | "XPF" | "YER" | "ZAR" | "ZMW" | "ZWD" | "BTC" | undefined;
564
567
  id?: string | undefined;
@@ -580,7 +583,7 @@ export declare const zInvoice: z.ZodObject<{
580
583
  quantity?: number | undefined;
581
584
  itemDetails?: string | undefined;
582
585
  catalogEffectiveDate?: string | undefined;
583
- childItems?: unknown[] | undefined;
586
+ childItems?: (string | number | boolean | unknown[] | {})[] | undefined;
584
587
  }>, "many">>;
585
588
  items: z.ZodOptional<z.ZodArray<z.ZodObject<{
586
589
  id: z.ZodOptional<z.ZodString>;
@@ -603,7 +606,7 @@ export declare const zInvoice: z.ZodObject<{
603
606
  quantity: z.ZodOptional<z.ZodNumber>;
604
607
  itemDetails: z.ZodOptional<z.ZodString>;
605
608
  catalogEffectiveDate: z.ZodOptional<z.ZodString>;
606
- childItems: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
609
+ childItems: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodArray<z.ZodUnknown, "many">, z.ZodBoolean, z.ZodNumber, z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>, z.ZodString]>, "many">>;
607
610
  }, "strip", z.ZodTypeAny, {
608
611
  currency?: "AED" | "AFN" | "ALL" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BRL" | "BSD" | "BTN" | "BWP" | "BYR" | "BZD" | "CAD" | "CDF" | "CHF" | "CLP" | "CNY" | "COP" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GGP" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "IMP" | "INR" | "IQD" | "IRR" | "ISK" | "JEP" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LTL" | "LVL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRO" | "MUR" | "MVR" | "MWK" | "MXN" | "MYR" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SPL" | "SRD" | "STD" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TVD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "UYU" | "UZS" | "VEF" | "VND" | "VUV" | "WST" | "XAF" | "XCD" | "XDR" | "XOF" | "XPF" | "YER" | "ZAR" | "ZMW" | "ZWD" | "BTC" | undefined;
609
612
  id?: string | undefined;
@@ -625,7 +628,7 @@ export declare const zInvoice: z.ZodObject<{
625
628
  quantity?: number | undefined;
626
629
  itemDetails?: string | undefined;
627
630
  catalogEffectiveDate?: string | undefined;
628
- childItems?: unknown[] | undefined;
631
+ childItems?: (string | number | boolean | unknown[] | {})[] | undefined;
629
632
  }, {
630
633
  currency?: "AED" | "AFN" | "ALL" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BRL" | "BSD" | "BTN" | "BWP" | "BYR" | "BZD" | "CAD" | "CDF" | "CHF" | "CLP" | "CNY" | "COP" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GGP" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "IMP" | "INR" | "IQD" | "IRR" | "ISK" | "JEP" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LTL" | "LVL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRO" | "MUR" | "MVR" | "MWK" | "MXN" | "MYR" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SPL" | "SRD" | "STD" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TVD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "UYU" | "UZS" | "VEF" | "VND" | "VUV" | "WST" | "XAF" | "XCD" | "XDR" | "XOF" | "XPF" | "YER" | "ZAR" | "ZMW" | "ZWD" | "BTC" | undefined;
631
634
  id?: string | undefined;
@@ -647,7 +650,7 @@ export declare const zInvoice: z.ZodObject<{
647
650
  quantity?: number | undefined;
648
651
  itemDetails?: string | undefined;
649
652
  catalogEffectiveDate?: string | undefined;
650
- childItems?: unknown[] | undefined;
653
+ childItems?: (string | number | boolean | unknown[] | {})[] | undefined;
651
654
  }>, "many">>;
652
655
  }, "strip", z.ZodTypeAny, {
653
656
  currency?: "AED" | "AFN" | "ALL" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BRL" | "BSD" | "BTN" | "BWP" | "BYR" | "BZD" | "CAD" | "CDF" | "CHF" | "CLP" | "CNY" | "COP" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GGP" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "IMP" | "INR" | "IQD" | "IRR" | "ISK" | "JEP" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LTL" | "LVL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRO" | "MUR" | "MVR" | "MWK" | "MXN" | "MYR" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SPL" | "SRD" | "STD" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TVD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "UYU" | "UZS" | "VEF" | "VND" | "VUV" | "WST" | "XAF" | "XCD" | "XDR" | "XOF" | "XPF" | "YER" | "ZAR" | "ZMW" | "ZWD" | "BTC" | undefined;
@@ -674,7 +677,7 @@ export declare const zInvoice: z.ZodObject<{
674
677
  quantity?: number | undefined;
675
678
  itemDetails?: string | undefined;
676
679
  catalogEffectiveDate?: string | undefined;
677
- childItems?: unknown[] | undefined;
680
+ childItems?: (string | number | boolean | unknown[] | {})[] | undefined;
678
681
  }[] | undefined;
679
682
  organizationId?: string | undefined;
680
683
  amount?: number | undefined;
@@ -706,7 +709,7 @@ export declare const zInvoice: z.ZodObject<{
706
709
  quantity?: number | undefined;
707
710
  itemDetails?: string | undefined;
708
711
  catalogEffectiveDate?: string | undefined;
709
- childItems?: unknown[] | undefined;
712
+ childItems?: (string | number | boolean | unknown[] | {})[] | undefined;
710
713
  }[] | undefined;
711
714
  }, {
712
715
  currency?: "AED" | "AFN" | "ALL" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BRL" | "BSD" | "BTN" | "BWP" | "BYR" | "BZD" | "CAD" | "CDF" | "CHF" | "CLP" | "CNY" | "COP" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GGP" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "IMP" | "INR" | "IQD" | "IRR" | "ISK" | "JEP" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LTL" | "LVL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRO" | "MUR" | "MVR" | "MWK" | "MXN" | "MYR" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SPL" | "SRD" | "STD" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TVD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "UYU" | "UZS" | "VEF" | "VND" | "VUV" | "WST" | "XAF" | "XCD" | "XDR" | "XOF" | "XPF" | "YER" | "ZAR" | "ZMW" | "ZWD" | "BTC" | undefined;
@@ -733,7 +736,7 @@ export declare const zInvoice: z.ZodObject<{
733
736
  quantity?: number | undefined;
734
737
  itemDetails?: string | undefined;
735
738
  catalogEffectiveDate?: string | undefined;
736
- childItems?: unknown[] | undefined;
739
+ childItems?: (string | number | boolean | unknown[] | {})[] | undefined;
737
740
  }[] | undefined;
738
741
  organizationId?: string | undefined;
739
742
  amount?: number | undefined;
@@ -765,7 +768,7 @@ export declare const zInvoice: z.ZodObject<{
765
768
  quantity?: number | undefined;
766
769
  itemDetails?: string | undefined;
767
770
  catalogEffectiveDate?: string | undefined;
768
- childItems?: unknown[] | undefined;
771
+ childItems?: (string | number | boolean | unknown[] | {})[] | undefined;
769
772
  }[] | undefined;
770
773
  }>;
771
774
  export declare const zMarketplaceListing: z.ZodObject<{
@@ -1090,6 +1093,19 @@ export declare const zUserUpdateInput: z.ZodObject<{
1090
1093
  first_name?: string | undefined;
1091
1094
  last_name?: string | undefined;
1092
1095
  }>;
1096
+ export declare const zGetUsageData: z.ZodObject<{
1097
+ body: z.ZodOptional<z.ZodNever>;
1098
+ path: z.ZodOptional<z.ZodNever>;
1099
+ query: z.ZodOptional<z.ZodNever>;
1100
+ }, "strip", z.ZodTypeAny, {
1101
+ body?: undefined;
1102
+ path?: undefined;
1103
+ query?: undefined;
1104
+ }, {
1105
+ body?: undefined;
1106
+ path?: undefined;
1107
+ query?: undefined;
1108
+ }>;
1093
1109
  /**
1094
1110
  * An array of usage records.
1095
1111
  */
@@ -1127,10 +1143,36 @@ export declare const zGetUsageResponse: z.ZodArray<z.ZodObject<{
1127
1143
  price: number | "";
1128
1144
  hour?: string | undefined;
1129
1145
  }>, "many">;
1146
+ export declare const zGetBalanceData: z.ZodObject<{
1147
+ body: z.ZodOptional<z.ZodNever>;
1148
+ path: z.ZodOptional<z.ZodNever>;
1149
+ query: z.ZodOptional<z.ZodNever>;
1150
+ }, "strip", z.ZodTypeAny, {
1151
+ body?: undefined;
1152
+ path?: undefined;
1153
+ query?: undefined;
1154
+ }, {
1155
+ body?: undefined;
1156
+ path?: undefined;
1157
+ query?: undefined;
1158
+ }>;
1130
1159
  /**
1131
1160
  * Current balance of the organization in USD as a floating-point number.
1132
1161
  */
1133
1162
  export declare const zGetBalanceResponse: z.ZodNumber;
1163
+ export declare const zGetPaymentMethodData: z.ZodObject<{
1164
+ body: z.ZodOptional<z.ZodNever>;
1165
+ path: z.ZodOptional<z.ZodNever>;
1166
+ query: z.ZodOptional<z.ZodNever>;
1167
+ }, "strip", z.ZodTypeAny, {
1168
+ body?: undefined;
1169
+ path?: undefined;
1170
+ query?: undefined;
1171
+ }, {
1172
+ body?: undefined;
1173
+ path?: undefined;
1174
+ query?: undefined;
1175
+ }>;
1134
1176
  /**
1135
1177
  * Redacted payment card information.
1136
1178
  */
@@ -1159,6 +1201,19 @@ export declare const zGetPaymentMethodResponse: z.ZodObject<{
1159
1201
  exp_year: number;
1160
1202
  brand: "unknown" | "amex" | "diners" | "discover" | "eftpos_au" | "jcb" | "mastercard" | "unionpay" | "visa";
1161
1203
  }>;
1204
+ export declare const zGetPaymentMethodSecretData: z.ZodObject<{
1205
+ body: z.ZodOptional<z.ZodNever>;
1206
+ path: z.ZodOptional<z.ZodNever>;
1207
+ query: z.ZodOptional<z.ZodNever>;
1208
+ }, "strip", z.ZodTypeAny, {
1209
+ body?: undefined;
1210
+ path?: undefined;
1211
+ query?: undefined;
1212
+ }, {
1213
+ body?: undefined;
1214
+ path?: undefined;
1215
+ query?: undefined;
1216
+ }>;
1162
1217
  /**
1163
1218
  * 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.
1164
1219
  *
@@ -1170,14 +1225,34 @@ export declare const zGetPaymentMethodSecretResponse: z.ZodObject<{
1170
1225
  }, {
1171
1226
  id?: string | undefined;
1172
1227
  }>;
1173
- /**
1174
- * Start date for the usage. Date of oldest data point to retrieve.
1175
- */
1176
- export declare const zListInvoicesParameterStartDate: z.ZodString;
1177
- /**
1178
- * End date for the usage. Date of newest data point to retrieve.
1179
- */
1180
- export declare const zListInvoicesParameterEndDate: z.ZodString;
1228
+ export declare const zListInvoicesData: z.ZodObject<{
1229
+ body: z.ZodOptional<z.ZodNever>;
1230
+ path: z.ZodOptional<z.ZodNever>;
1231
+ query: z.ZodObject<{
1232
+ start_date: z.ZodString;
1233
+ end_date: z.ZodString;
1234
+ }, "strip", z.ZodTypeAny, {
1235
+ start_date: string;
1236
+ end_date: string;
1237
+ }, {
1238
+ start_date: string;
1239
+ end_date: string;
1240
+ }>;
1241
+ }, "strip", z.ZodTypeAny, {
1242
+ query: {
1243
+ start_date: string;
1244
+ end_date: string;
1245
+ };
1246
+ body?: undefined;
1247
+ path?: undefined;
1248
+ }, {
1249
+ query: {
1250
+ start_date: string;
1251
+ end_date: string;
1252
+ };
1253
+ body?: undefined;
1254
+ path?: undefined;
1255
+ }>;
1181
1256
  /**
1182
1257
  * An array of usage records.
1183
1258
  */
@@ -1215,7 +1290,7 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
1215
1290
  quantity: z.ZodOptional<z.ZodNumber>;
1216
1291
  itemDetails: z.ZodOptional<z.ZodString>;
1217
1292
  catalogEffectiveDate: z.ZodOptional<z.ZodString>;
1218
- childItems: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
1293
+ childItems: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodArray<z.ZodUnknown, "many">, z.ZodBoolean, z.ZodNumber, z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>, z.ZodString]>, "many">>;
1219
1294
  }, "strip", z.ZodTypeAny, {
1220
1295
  currency?: "AED" | "AFN" | "ALL" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BRL" | "BSD" | "BTN" | "BWP" | "BYR" | "BZD" | "CAD" | "CDF" | "CHF" | "CLP" | "CNY" | "COP" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GGP" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "IMP" | "INR" | "IQD" | "IRR" | "ISK" | "JEP" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LTL" | "LVL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRO" | "MUR" | "MVR" | "MWK" | "MXN" | "MYR" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SPL" | "SRD" | "STD" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TVD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "UYU" | "UZS" | "VEF" | "VND" | "VUV" | "WST" | "XAF" | "XCD" | "XDR" | "XOF" | "XPF" | "YER" | "ZAR" | "ZMW" | "ZWD" | "BTC" | undefined;
1221
1296
  id?: string | undefined;
@@ -1237,7 +1312,7 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
1237
1312
  quantity?: number | undefined;
1238
1313
  itemDetails?: string | undefined;
1239
1314
  catalogEffectiveDate?: string | undefined;
1240
- childItems?: unknown[] | undefined;
1315
+ childItems?: (string | number | boolean | unknown[] | {})[] | undefined;
1241
1316
  }, {
1242
1317
  currency?: "AED" | "AFN" | "ALL" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BRL" | "BSD" | "BTN" | "BWP" | "BYR" | "BZD" | "CAD" | "CDF" | "CHF" | "CLP" | "CNY" | "COP" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GGP" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "IMP" | "INR" | "IQD" | "IRR" | "ISK" | "JEP" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LTL" | "LVL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRO" | "MUR" | "MVR" | "MWK" | "MXN" | "MYR" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SPL" | "SRD" | "STD" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TVD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "UYU" | "UZS" | "VEF" | "VND" | "VUV" | "WST" | "XAF" | "XCD" | "XDR" | "XOF" | "XPF" | "YER" | "ZAR" | "ZMW" | "ZWD" | "BTC" | undefined;
1243
1318
  id?: string | undefined;
@@ -1259,7 +1334,7 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
1259
1334
  quantity?: number | undefined;
1260
1335
  itemDetails?: string | undefined;
1261
1336
  catalogEffectiveDate?: string | undefined;
1262
- childItems?: unknown[] | undefined;
1337
+ childItems?: (string | number | boolean | unknown[] | {})[] | undefined;
1263
1338
  }>, "many">>;
1264
1339
  items: z.ZodOptional<z.ZodArray<z.ZodObject<{
1265
1340
  id: z.ZodOptional<z.ZodString>;
@@ -1282,7 +1357,7 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
1282
1357
  quantity: z.ZodOptional<z.ZodNumber>;
1283
1358
  itemDetails: z.ZodOptional<z.ZodString>;
1284
1359
  catalogEffectiveDate: z.ZodOptional<z.ZodString>;
1285
- childItems: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
1360
+ childItems: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodArray<z.ZodUnknown, "many">, z.ZodBoolean, z.ZodNumber, z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>, z.ZodString]>, "many">>;
1286
1361
  }, "strip", z.ZodTypeAny, {
1287
1362
  currency?: "AED" | "AFN" | "ALL" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BRL" | "BSD" | "BTN" | "BWP" | "BYR" | "BZD" | "CAD" | "CDF" | "CHF" | "CLP" | "CNY" | "COP" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GGP" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "IMP" | "INR" | "IQD" | "IRR" | "ISK" | "JEP" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LTL" | "LVL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRO" | "MUR" | "MVR" | "MWK" | "MXN" | "MYR" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SPL" | "SRD" | "STD" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TVD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "UYU" | "UZS" | "VEF" | "VND" | "VUV" | "WST" | "XAF" | "XCD" | "XDR" | "XOF" | "XPF" | "YER" | "ZAR" | "ZMW" | "ZWD" | "BTC" | undefined;
1288
1363
  id?: string | undefined;
@@ -1304,7 +1379,7 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
1304
1379
  quantity?: number | undefined;
1305
1380
  itemDetails?: string | undefined;
1306
1381
  catalogEffectiveDate?: string | undefined;
1307
- childItems?: unknown[] | undefined;
1382
+ childItems?: (string | number | boolean | unknown[] | {})[] | undefined;
1308
1383
  }, {
1309
1384
  currency?: "AED" | "AFN" | "ALL" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BRL" | "BSD" | "BTN" | "BWP" | "BYR" | "BZD" | "CAD" | "CDF" | "CHF" | "CLP" | "CNY" | "COP" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GGP" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "IMP" | "INR" | "IQD" | "IRR" | "ISK" | "JEP" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LTL" | "LVL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRO" | "MUR" | "MVR" | "MWK" | "MXN" | "MYR" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SPL" | "SRD" | "STD" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TVD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "UYU" | "UZS" | "VEF" | "VND" | "VUV" | "WST" | "XAF" | "XCD" | "XDR" | "XOF" | "XPF" | "YER" | "ZAR" | "ZMW" | "ZWD" | "BTC" | undefined;
1310
1385
  id?: string | undefined;
@@ -1326,7 +1401,7 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
1326
1401
  quantity?: number | undefined;
1327
1402
  itemDetails?: string | undefined;
1328
1403
  catalogEffectiveDate?: string | undefined;
1329
- childItems?: unknown[] | undefined;
1404
+ childItems?: (string | number | boolean | unknown[] | {})[] | undefined;
1330
1405
  }>, "many">>;
1331
1406
  }, "strip", z.ZodTypeAny, {
1332
1407
  currency?: "AED" | "AFN" | "ALL" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BRL" | "BSD" | "BTN" | "BWP" | "BYR" | "BZD" | "CAD" | "CDF" | "CHF" | "CLP" | "CNY" | "COP" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GGP" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "IMP" | "INR" | "IQD" | "IRR" | "ISK" | "JEP" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LTL" | "LVL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRO" | "MUR" | "MVR" | "MWK" | "MXN" | "MYR" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SPL" | "SRD" | "STD" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TVD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "UYU" | "UZS" | "VEF" | "VND" | "VUV" | "WST" | "XAF" | "XCD" | "XDR" | "XOF" | "XPF" | "YER" | "ZAR" | "ZMW" | "ZWD" | "BTC" | undefined;
@@ -1353,7 +1428,7 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
1353
1428
  quantity?: number | undefined;
1354
1429
  itemDetails?: string | undefined;
1355
1430
  catalogEffectiveDate?: string | undefined;
1356
- childItems?: unknown[] | undefined;
1431
+ childItems?: (string | number | boolean | unknown[] | {})[] | undefined;
1357
1432
  }[] | undefined;
1358
1433
  organizationId?: string | undefined;
1359
1434
  amount?: number | undefined;
@@ -1385,7 +1460,7 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
1385
1460
  quantity?: number | undefined;
1386
1461
  itemDetails?: string | undefined;
1387
1462
  catalogEffectiveDate?: string | undefined;
1388
- childItems?: unknown[] | undefined;
1463
+ childItems?: (string | number | boolean | unknown[] | {})[] | undefined;
1389
1464
  }[] | undefined;
1390
1465
  }, {
1391
1466
  currency?: "AED" | "AFN" | "ALL" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BRL" | "BSD" | "BTN" | "BWP" | "BYR" | "BZD" | "CAD" | "CDF" | "CHF" | "CLP" | "CNY" | "COP" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GGP" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "IMP" | "INR" | "IQD" | "IRR" | "ISK" | "JEP" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LTL" | "LVL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRO" | "MUR" | "MVR" | "MWK" | "MXN" | "MYR" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SPL" | "SRD" | "STD" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TVD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "UYU" | "UZS" | "VEF" | "VND" | "VUV" | "WST" | "XAF" | "XCD" | "XDR" | "XOF" | "XPF" | "YER" | "ZAR" | "ZMW" | "ZWD" | "BTC" | undefined;
@@ -1412,7 +1487,7 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
1412
1487
  quantity?: number | undefined;
1413
1488
  itemDetails?: string | undefined;
1414
1489
  catalogEffectiveDate?: string | undefined;
1415
- childItems?: unknown[] | undefined;
1490
+ childItems?: (string | number | boolean | unknown[] | {})[] | undefined;
1416
1491
  }[] | undefined;
1417
1492
  organizationId?: string | undefined;
1418
1493
  amount?: number | undefined;
@@ -1444,13 +1519,32 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
1444
1519
  quantity?: number | undefined;
1445
1520
  itemDetails?: string | undefined;
1446
1521
  catalogEffectiveDate?: string | undefined;
1447
- childItems?: unknown[] | undefined;
1522
+ childItems?: (string | number | boolean | unknown[] | {})[] | undefined;
1448
1523
  }[] | undefined;
1449
1524
  }>, "many">;
1450
- /**
1451
- * Unique invoice identifier. UUID v4 string in canonical form
1452
- */
1453
- export declare const zGetInvoiceParameterId: z.ZodString;
1525
+ export declare const zGetInvoiceData: z.ZodObject<{
1526
+ body: z.ZodOptional<z.ZodNever>;
1527
+ path: z.ZodObject<{
1528
+ id: z.ZodString;
1529
+ }, "strip", z.ZodTypeAny, {
1530
+ id: string;
1531
+ }, {
1532
+ id: string;
1533
+ }>;
1534
+ query: z.ZodOptional<z.ZodNever>;
1535
+ }, "strip", z.ZodTypeAny, {
1536
+ path: {
1537
+ id: string;
1538
+ };
1539
+ body?: undefined;
1540
+ query?: undefined;
1541
+ }, {
1542
+ path: {
1543
+ id: string;
1544
+ };
1545
+ body?: undefined;
1546
+ query?: undefined;
1547
+ }>;
1454
1548
  /**
1455
1549
  * Returns a single Invoice HTML representation under `html` property.
1456
1550
  */
@@ -1461,6 +1555,19 @@ export declare const zGetInvoiceResponse: z.ZodObject<{
1461
1555
  }, {
1462
1556
  html?: string | undefined;
1463
1557
  }>;
1558
+ export declare const zGetContactData: z.ZodObject<{
1559
+ body: z.ZodOptional<z.ZodNever>;
1560
+ path: z.ZodOptional<z.ZodNever>;
1561
+ query: z.ZodOptional<z.ZodNever>;
1562
+ }, "strip", z.ZodTypeAny, {
1563
+ body?: undefined;
1564
+ path?: undefined;
1565
+ query?: undefined;
1566
+ }, {
1567
+ body?: undefined;
1568
+ path?: undefined;
1569
+ query?: undefined;
1570
+ }>;
1464
1571
  /**
1465
1572
  * Returns a single object containing organization contact and billing address details.
1466
1573
  */
@@ -1508,47 +1615,87 @@ export declare const zGetContactResponse: z.ZodObject<{
1508
1615
  tax_id_type?: "" | "ad_nrt" | "ae_trn" | "al_tin" | "am_tin" | "ao_tin" | "ar_cuit" | "at_vat" | "au_abn" | "au_arn" | "ba_tin" | "bb_tin" | "be_vat" | "bg_uic" | "bg_vat" | "bh_vat" | "bo_tin" | "br_cnpj" | "br_cpf" | "bs_tin" | "by_tin" | "ca_bn" | "ca_gst_hst" | "ca_pst_bc" | "ca_pst_mb" | "ca_pst_sk" | "ca_qst" | "cd_nif" | "ch_uid" | "ch_vat" | "cl_tin" | "cn_tin" | "co_nit" | "cr_tin" | "cy_vat" | "cz_vat" | "de_stn" | "de_vat" | "dk_vat" | "do_rcn" | "ec_ruc" | "ee_vat" | "eg_tin" | "es_cif" | "es_vat" | "eu_oss_vat" | "fi_vat" | "fr_vat" | "gb_vat" | "ge_vat" | "gn_nif" | "gr_vat" | "hk_br" | "hr_oib" | "hr_vat" | "hu_tin" | "hu_vat" | "id_npwp" | "ie_vat" | "il_vat" | "in_gst" | "is_vat" | "it_vat" | "jp_cn" | "jp_rn" | "jp_trn" | "ke_pin" | "kh_tin" | "kr_brn" | "kz_bin" | "li_uid" | "li_vat" | "lt_vat" | "lu_vat" | "lv_vat" | "ma_vat" | "md_vat" | "me_pib" | "mk_vat" | "mr_nif" | "mt_vat" | "mx_rfc" | "my_frp" | "my_itn" | "my_sst" | "ng_tin" | "nl_vat" | "no_vat" | "no_voec" | "np_pan" | "nz_gst" | "om_vat" | "pe_ruc" | "ph_tin" | "pl_vat" | "pt_vat" | "ro_tin" | "ro_vat" | "rs_pib" | "ru_inn" | "ru_kpp" | "sa_vat" | "se_vat" | "sg_gst" | "sg_uen" | "si_tin" | "si_vat" | "sk_vat" | "sn_ninea" | "sr_fin" | "sv_nit" | "th_vat" | "tj_tin" | "tr_tin" | "tw_vat" | "tz_vat" | "ua_vat" | "ug_tin" | "us_ein" | "uy_ruc" | "uz_tin" | "uz_vat" | "ve_rif" | "vn_tin" | "xi_vat" | "za_vat" | "zm_tin" | "zw_tin" | undefined;
1509
1616
  }>;
1510
1617
  export declare const zUpdateContactData: z.ZodObject<{
1511
- company: z.ZodOptional<z.ZodString>;
1512
- address1: z.ZodOptional<z.ZodString>;
1513
- address2: z.ZodOptional<z.ZodString>;
1514
- postalCode: z.ZodOptional<z.ZodString>;
1515
- city: z.ZodOptional<z.ZodString>;
1516
- state: z.ZodOptional<z.ZodString>;
1517
- country: z.ZodOptional<z.ZodString>;
1518
- phone: z.ZodOptional<z.ZodString>;
1519
- email: z.ZodString;
1520
- first_name: z.ZodString;
1521
- last_name: z.ZodString;
1522
- tax_id: z.ZodOptional<z.ZodString>;
1523
- tax_id_type: z.ZodOptional<z.ZodEnum<["ad_nrt", "ae_trn", "al_tin", "am_tin", "ao_tin", "ar_cuit", "at_vat", "au_abn", "au_arn", "ba_tin", "bb_tin", "be_vat", "bg_uic", "bg_vat", "bh_vat", "bo_tin", "br_cnpj", "br_cpf", "bs_tin", "by_tin", "ca_bn", "ca_gst_hst", "ca_pst_bc", "ca_pst_mb", "ca_pst_sk", "ca_qst", "cd_nif", "ch_uid", "ch_vat", "cl_tin", "cn_tin", "co_nit", "cr_tin", "cy_vat", "cz_vat", "de_stn", "de_vat", "dk_vat", "do_rcn", "ec_ruc", "ee_vat", "eg_tin", "es_cif", "es_vat", "eu_oss_vat", "fi_vat", "fr_vat", "gb_vat", "ge_vat", "gn_nif", "gr_vat", "hk_br", "hr_oib", "hr_vat", "hu_tin", "hu_vat", "id_npwp", "ie_vat", "il_vat", "in_gst", "is_vat", "it_vat", "jp_cn", "jp_rn", "jp_trn", "ke_pin", "kh_tin", "kr_brn", "kz_bin", "li_uid", "li_vat", "lt_vat", "lu_vat", "lv_vat", "ma_vat", "md_vat", "me_pib", "mk_vat", "mr_nif", "mt_vat", "mx_rfc", "my_frp", "my_itn", "my_sst", "ng_tin", "nl_vat", "no_vat", "no_voec", "np_pan", "nz_gst", "om_vat", "pe_ruc", "ph_tin", "pl_vat", "pt_vat", "ro_tin", "ro_vat", "rs_pib", "ru_inn", "ru_kpp", "sa_vat", "se_vat", "sg_gst", "sg_uen", "si_tin", "si_vat", "sk_vat", "sn_ninea", "sr_fin", "sv_nit", "th_vat", "tj_tin", "tr_tin", "tw_vat", "tz_vat", "ua_vat", "ug_tin", "us_ein", "uy_ruc", "uz_tin", "uz_vat", "ve_rif", "vn_tin", "xi_vat", "za_vat", "zm_tin", "zw_tin", ""]>>;
1524
- }, "strip", z.ZodTypeAny, {
1525
- email: string;
1526
- first_name: string;
1527
- last_name: string;
1528
- state?: string | undefined;
1529
- country?: string | undefined;
1530
- company?: string | undefined;
1531
- address1?: string | undefined;
1532
- address2?: string | undefined;
1533
- postalCode?: string | undefined;
1534
- city?: string | undefined;
1535
- phone?: string | undefined;
1536
- tax_id?: string | undefined;
1537
- tax_id_type?: "" | "ad_nrt" | "ae_trn" | "al_tin" | "am_tin" | "ao_tin" | "ar_cuit" | "at_vat" | "au_abn" | "au_arn" | "ba_tin" | "bb_tin" | "be_vat" | "bg_uic" | "bg_vat" | "bh_vat" | "bo_tin" | "br_cnpj" | "br_cpf" | "bs_tin" | "by_tin" | "ca_bn" | "ca_gst_hst" | "ca_pst_bc" | "ca_pst_mb" | "ca_pst_sk" | "ca_qst" | "cd_nif" | "ch_uid" | "ch_vat" | "cl_tin" | "cn_tin" | "co_nit" | "cr_tin" | "cy_vat" | "cz_vat" | "de_stn" | "de_vat" | "dk_vat" | "do_rcn" | "ec_ruc" | "ee_vat" | "eg_tin" | "es_cif" | "es_vat" | "eu_oss_vat" | "fi_vat" | "fr_vat" | "gb_vat" | "ge_vat" | "gn_nif" | "gr_vat" | "hk_br" | "hr_oib" | "hr_vat" | "hu_tin" | "hu_vat" | "id_npwp" | "ie_vat" | "il_vat" | "in_gst" | "is_vat" | "it_vat" | "jp_cn" | "jp_rn" | "jp_trn" | "ke_pin" | "kh_tin" | "kr_brn" | "kz_bin" | "li_uid" | "li_vat" | "lt_vat" | "lu_vat" | "lv_vat" | "ma_vat" | "md_vat" | "me_pib" | "mk_vat" | "mr_nif" | "mt_vat" | "mx_rfc" | "my_frp" | "my_itn" | "my_sst" | "ng_tin" | "nl_vat" | "no_vat" | "no_voec" | "np_pan" | "nz_gst" | "om_vat" | "pe_ruc" | "ph_tin" | "pl_vat" | "pt_vat" | "ro_tin" | "ro_vat" | "rs_pib" | "ru_inn" | "ru_kpp" | "sa_vat" | "se_vat" | "sg_gst" | "sg_uen" | "si_tin" | "si_vat" | "sk_vat" | "sn_ninea" | "sr_fin" | "sv_nit" | "th_vat" | "tj_tin" | "tr_tin" | "tw_vat" | "tz_vat" | "ua_vat" | "ug_tin" | "us_ein" | "uy_ruc" | "uz_tin" | "uz_vat" | "ve_rif" | "vn_tin" | "xi_vat" | "za_vat" | "zm_tin" | "zw_tin" | undefined;
1538
- }, {
1539
- email: string;
1540
- first_name: string;
1541
- last_name: string;
1542
- state?: string | undefined;
1543
- country?: string | undefined;
1544
- company?: string | undefined;
1545
- address1?: string | undefined;
1546
- address2?: string | undefined;
1547
- postalCode?: string | undefined;
1548
- city?: string | undefined;
1549
- phone?: string | undefined;
1550
- tax_id?: string | undefined;
1551
- tax_id_type?: "" | "ad_nrt" | "ae_trn" | "al_tin" | "am_tin" | "ao_tin" | "ar_cuit" | "at_vat" | "au_abn" | "au_arn" | "ba_tin" | "bb_tin" | "be_vat" | "bg_uic" | "bg_vat" | "bh_vat" | "bo_tin" | "br_cnpj" | "br_cpf" | "bs_tin" | "by_tin" | "ca_bn" | "ca_gst_hst" | "ca_pst_bc" | "ca_pst_mb" | "ca_pst_sk" | "ca_qst" | "cd_nif" | "ch_uid" | "ch_vat" | "cl_tin" | "cn_tin" | "co_nit" | "cr_tin" | "cy_vat" | "cz_vat" | "de_stn" | "de_vat" | "dk_vat" | "do_rcn" | "ec_ruc" | "ee_vat" | "eg_tin" | "es_cif" | "es_vat" | "eu_oss_vat" | "fi_vat" | "fr_vat" | "gb_vat" | "ge_vat" | "gn_nif" | "gr_vat" | "hk_br" | "hr_oib" | "hr_vat" | "hu_tin" | "hu_vat" | "id_npwp" | "ie_vat" | "il_vat" | "in_gst" | "is_vat" | "it_vat" | "jp_cn" | "jp_rn" | "jp_trn" | "ke_pin" | "kh_tin" | "kr_brn" | "kz_bin" | "li_uid" | "li_vat" | "lt_vat" | "lu_vat" | "lv_vat" | "ma_vat" | "md_vat" | "me_pib" | "mk_vat" | "mr_nif" | "mt_vat" | "mx_rfc" | "my_frp" | "my_itn" | "my_sst" | "ng_tin" | "nl_vat" | "no_vat" | "no_voec" | "np_pan" | "nz_gst" | "om_vat" | "pe_ruc" | "ph_tin" | "pl_vat" | "pt_vat" | "ro_tin" | "ro_vat" | "rs_pib" | "ru_inn" | "ru_kpp" | "sa_vat" | "se_vat" | "sg_gst" | "sg_uen" | "si_tin" | "si_vat" | "sk_vat" | "sn_ninea" | "sr_fin" | "sv_nit" | "th_vat" | "tj_tin" | "tr_tin" | "tw_vat" | "tz_vat" | "ua_vat" | "ug_tin" | "us_ein" | "uy_ruc" | "uz_tin" | "uz_vat" | "ve_rif" | "vn_tin" | "xi_vat" | "za_vat" | "zm_tin" | "zw_tin" | undefined;
1618
+ body: z.ZodObject<{
1619
+ company: z.ZodOptional<z.ZodString>;
1620
+ address1: z.ZodOptional<z.ZodString>;
1621
+ address2: z.ZodOptional<z.ZodString>;
1622
+ postalCode: z.ZodOptional<z.ZodString>;
1623
+ city: z.ZodOptional<z.ZodString>;
1624
+ state: z.ZodOptional<z.ZodString>;
1625
+ country: z.ZodOptional<z.ZodString>;
1626
+ phone: z.ZodOptional<z.ZodString>;
1627
+ email: z.ZodString;
1628
+ first_name: z.ZodString;
1629
+ last_name: z.ZodString;
1630
+ tax_id: z.ZodOptional<z.ZodString>;
1631
+ tax_id_type: z.ZodOptional<z.ZodEnum<["ad_nrt", "ae_trn", "al_tin", "am_tin", "ao_tin", "ar_cuit", "at_vat", "au_abn", "au_arn", "ba_tin", "bb_tin", "be_vat", "bg_uic", "bg_vat", "bh_vat", "bo_tin", "br_cnpj", "br_cpf", "bs_tin", "by_tin", "ca_bn", "ca_gst_hst", "ca_pst_bc", "ca_pst_mb", "ca_pst_sk", "ca_qst", "cd_nif", "ch_uid", "ch_vat", "cl_tin", "cn_tin", "co_nit", "cr_tin", "cy_vat", "cz_vat", "de_stn", "de_vat", "dk_vat", "do_rcn", "ec_ruc", "ee_vat", "eg_tin", "es_cif", "es_vat", "eu_oss_vat", "fi_vat", "fr_vat", "gb_vat", "ge_vat", "gn_nif", "gr_vat", "hk_br", "hr_oib", "hr_vat", "hu_tin", "hu_vat", "id_npwp", "ie_vat", "il_vat", "in_gst", "is_vat", "it_vat", "jp_cn", "jp_rn", "jp_trn", "ke_pin", "kh_tin", "kr_brn", "kz_bin", "li_uid", "li_vat", "lt_vat", "lu_vat", "lv_vat", "ma_vat", "md_vat", "me_pib", "mk_vat", "mr_nif", "mt_vat", "mx_rfc", "my_frp", "my_itn", "my_sst", "ng_tin", "nl_vat", "no_vat", "no_voec", "np_pan", "nz_gst", "om_vat", "pe_ruc", "ph_tin", "pl_vat", "pt_vat", "ro_tin", "ro_vat", "rs_pib", "ru_inn", "ru_kpp", "sa_vat", "se_vat", "sg_gst", "sg_uen", "si_tin", "si_vat", "sk_vat", "sn_ninea", "sr_fin", "sv_nit", "th_vat", "tj_tin", "tr_tin", "tw_vat", "tz_vat", "ua_vat", "ug_tin", "us_ein", "uy_ruc", "uz_tin", "uz_vat", "ve_rif", "vn_tin", "xi_vat", "za_vat", "zm_tin", "zw_tin", ""]>>;
1632
+ }, "strip", z.ZodTypeAny, {
1633
+ email: string;
1634
+ first_name: string;
1635
+ last_name: string;
1636
+ state?: string | undefined;
1637
+ country?: string | undefined;
1638
+ company?: string | undefined;
1639
+ address1?: string | undefined;
1640
+ address2?: string | undefined;
1641
+ postalCode?: string | undefined;
1642
+ city?: string | undefined;
1643
+ phone?: string | undefined;
1644
+ tax_id?: string | undefined;
1645
+ tax_id_type?: "" | "ad_nrt" | "ae_trn" | "al_tin" | "am_tin" | "ao_tin" | "ar_cuit" | "at_vat" | "au_abn" | "au_arn" | "ba_tin" | "bb_tin" | "be_vat" | "bg_uic" | "bg_vat" | "bh_vat" | "bo_tin" | "br_cnpj" | "br_cpf" | "bs_tin" | "by_tin" | "ca_bn" | "ca_gst_hst" | "ca_pst_bc" | "ca_pst_mb" | "ca_pst_sk" | "ca_qst" | "cd_nif" | "ch_uid" | "ch_vat" | "cl_tin" | "cn_tin" | "co_nit" | "cr_tin" | "cy_vat" | "cz_vat" | "de_stn" | "de_vat" | "dk_vat" | "do_rcn" | "ec_ruc" | "ee_vat" | "eg_tin" | "es_cif" | "es_vat" | "eu_oss_vat" | "fi_vat" | "fr_vat" | "gb_vat" | "ge_vat" | "gn_nif" | "gr_vat" | "hk_br" | "hr_oib" | "hr_vat" | "hu_tin" | "hu_vat" | "id_npwp" | "ie_vat" | "il_vat" | "in_gst" | "is_vat" | "it_vat" | "jp_cn" | "jp_rn" | "jp_trn" | "ke_pin" | "kh_tin" | "kr_brn" | "kz_bin" | "li_uid" | "li_vat" | "lt_vat" | "lu_vat" | "lv_vat" | "ma_vat" | "md_vat" | "me_pib" | "mk_vat" | "mr_nif" | "mt_vat" | "mx_rfc" | "my_frp" | "my_itn" | "my_sst" | "ng_tin" | "nl_vat" | "no_vat" | "no_voec" | "np_pan" | "nz_gst" | "om_vat" | "pe_ruc" | "ph_tin" | "pl_vat" | "pt_vat" | "ro_tin" | "ro_vat" | "rs_pib" | "ru_inn" | "ru_kpp" | "sa_vat" | "se_vat" | "sg_gst" | "sg_uen" | "si_tin" | "si_vat" | "sk_vat" | "sn_ninea" | "sr_fin" | "sv_nit" | "th_vat" | "tj_tin" | "tr_tin" | "tw_vat" | "tz_vat" | "ua_vat" | "ug_tin" | "us_ein" | "uy_ruc" | "uz_tin" | "uz_vat" | "ve_rif" | "vn_tin" | "xi_vat" | "za_vat" | "zm_tin" | "zw_tin" | undefined;
1646
+ }, {
1647
+ email: string;
1648
+ first_name: string;
1649
+ last_name: string;
1650
+ state?: string | undefined;
1651
+ country?: string | undefined;
1652
+ company?: string | undefined;
1653
+ address1?: string | undefined;
1654
+ address2?: string | undefined;
1655
+ postalCode?: string | undefined;
1656
+ city?: string | undefined;
1657
+ phone?: string | undefined;
1658
+ tax_id?: string | undefined;
1659
+ tax_id_type?: "" | "ad_nrt" | "ae_trn" | "al_tin" | "am_tin" | "ao_tin" | "ar_cuit" | "at_vat" | "au_abn" | "au_arn" | "ba_tin" | "bb_tin" | "be_vat" | "bg_uic" | "bg_vat" | "bh_vat" | "bo_tin" | "br_cnpj" | "br_cpf" | "bs_tin" | "by_tin" | "ca_bn" | "ca_gst_hst" | "ca_pst_bc" | "ca_pst_mb" | "ca_pst_sk" | "ca_qst" | "cd_nif" | "ch_uid" | "ch_vat" | "cl_tin" | "cn_tin" | "co_nit" | "cr_tin" | "cy_vat" | "cz_vat" | "de_stn" | "de_vat" | "dk_vat" | "do_rcn" | "ec_ruc" | "ee_vat" | "eg_tin" | "es_cif" | "es_vat" | "eu_oss_vat" | "fi_vat" | "fr_vat" | "gb_vat" | "ge_vat" | "gn_nif" | "gr_vat" | "hk_br" | "hr_oib" | "hr_vat" | "hu_tin" | "hu_vat" | "id_npwp" | "ie_vat" | "il_vat" | "in_gst" | "is_vat" | "it_vat" | "jp_cn" | "jp_rn" | "jp_trn" | "ke_pin" | "kh_tin" | "kr_brn" | "kz_bin" | "li_uid" | "li_vat" | "lt_vat" | "lu_vat" | "lv_vat" | "ma_vat" | "md_vat" | "me_pib" | "mk_vat" | "mr_nif" | "mt_vat" | "mx_rfc" | "my_frp" | "my_itn" | "my_sst" | "ng_tin" | "nl_vat" | "no_vat" | "no_voec" | "np_pan" | "nz_gst" | "om_vat" | "pe_ruc" | "ph_tin" | "pl_vat" | "pt_vat" | "ro_tin" | "ro_vat" | "rs_pib" | "ru_inn" | "ru_kpp" | "sa_vat" | "se_vat" | "sg_gst" | "sg_uen" | "si_tin" | "si_vat" | "sk_vat" | "sn_ninea" | "sr_fin" | "sv_nit" | "th_vat" | "tj_tin" | "tr_tin" | "tw_vat" | "tz_vat" | "ua_vat" | "ug_tin" | "us_ein" | "uy_ruc" | "uz_tin" | "uz_vat" | "ve_rif" | "vn_tin" | "xi_vat" | "za_vat" | "zm_tin" | "zw_tin" | undefined;
1660
+ }>;
1661
+ path: z.ZodOptional<z.ZodNever>;
1662
+ query: z.ZodOptional<z.ZodNever>;
1663
+ }, "strip", z.ZodTypeAny, {
1664
+ body: {
1665
+ email: string;
1666
+ first_name: string;
1667
+ last_name: string;
1668
+ state?: string | undefined;
1669
+ country?: string | undefined;
1670
+ company?: string | undefined;
1671
+ address1?: string | undefined;
1672
+ address2?: string | undefined;
1673
+ postalCode?: string | undefined;
1674
+ city?: string | undefined;
1675
+ phone?: string | undefined;
1676
+ tax_id?: string | undefined;
1677
+ tax_id_type?: "" | "ad_nrt" | "ae_trn" | "al_tin" | "am_tin" | "ao_tin" | "ar_cuit" | "at_vat" | "au_abn" | "au_arn" | "ba_tin" | "bb_tin" | "be_vat" | "bg_uic" | "bg_vat" | "bh_vat" | "bo_tin" | "br_cnpj" | "br_cpf" | "bs_tin" | "by_tin" | "ca_bn" | "ca_gst_hst" | "ca_pst_bc" | "ca_pst_mb" | "ca_pst_sk" | "ca_qst" | "cd_nif" | "ch_uid" | "ch_vat" | "cl_tin" | "cn_tin" | "co_nit" | "cr_tin" | "cy_vat" | "cz_vat" | "de_stn" | "de_vat" | "dk_vat" | "do_rcn" | "ec_ruc" | "ee_vat" | "eg_tin" | "es_cif" | "es_vat" | "eu_oss_vat" | "fi_vat" | "fr_vat" | "gb_vat" | "ge_vat" | "gn_nif" | "gr_vat" | "hk_br" | "hr_oib" | "hr_vat" | "hu_tin" | "hu_vat" | "id_npwp" | "ie_vat" | "il_vat" | "in_gst" | "is_vat" | "it_vat" | "jp_cn" | "jp_rn" | "jp_trn" | "ke_pin" | "kh_tin" | "kr_brn" | "kz_bin" | "li_uid" | "li_vat" | "lt_vat" | "lu_vat" | "lv_vat" | "ma_vat" | "md_vat" | "me_pib" | "mk_vat" | "mr_nif" | "mt_vat" | "mx_rfc" | "my_frp" | "my_itn" | "my_sst" | "ng_tin" | "nl_vat" | "no_vat" | "no_voec" | "np_pan" | "nz_gst" | "om_vat" | "pe_ruc" | "ph_tin" | "pl_vat" | "pt_vat" | "ro_tin" | "ro_vat" | "rs_pib" | "ru_inn" | "ru_kpp" | "sa_vat" | "se_vat" | "sg_gst" | "sg_uen" | "si_tin" | "si_vat" | "sk_vat" | "sn_ninea" | "sr_fin" | "sv_nit" | "th_vat" | "tj_tin" | "tr_tin" | "tw_vat" | "tz_vat" | "ua_vat" | "ug_tin" | "us_ein" | "uy_ruc" | "uz_tin" | "uz_vat" | "ve_rif" | "vn_tin" | "xi_vat" | "za_vat" | "zm_tin" | "zw_tin" | undefined;
1678
+ };
1679
+ path?: undefined;
1680
+ query?: undefined;
1681
+ }, {
1682
+ body: {
1683
+ email: string;
1684
+ first_name: string;
1685
+ last_name: string;
1686
+ state?: string | undefined;
1687
+ country?: string | undefined;
1688
+ company?: string | undefined;
1689
+ address1?: string | undefined;
1690
+ address2?: string | undefined;
1691
+ postalCode?: string | undefined;
1692
+ city?: string | undefined;
1693
+ phone?: string | undefined;
1694
+ tax_id?: string | undefined;
1695
+ tax_id_type?: "" | "ad_nrt" | "ae_trn" | "al_tin" | "am_tin" | "ao_tin" | "ar_cuit" | "at_vat" | "au_abn" | "au_arn" | "ba_tin" | "bb_tin" | "be_vat" | "bg_uic" | "bg_vat" | "bh_vat" | "bo_tin" | "br_cnpj" | "br_cpf" | "bs_tin" | "by_tin" | "ca_bn" | "ca_gst_hst" | "ca_pst_bc" | "ca_pst_mb" | "ca_pst_sk" | "ca_qst" | "cd_nif" | "ch_uid" | "ch_vat" | "cl_tin" | "cn_tin" | "co_nit" | "cr_tin" | "cy_vat" | "cz_vat" | "de_stn" | "de_vat" | "dk_vat" | "do_rcn" | "ec_ruc" | "ee_vat" | "eg_tin" | "es_cif" | "es_vat" | "eu_oss_vat" | "fi_vat" | "fr_vat" | "gb_vat" | "ge_vat" | "gn_nif" | "gr_vat" | "hk_br" | "hr_oib" | "hr_vat" | "hu_tin" | "hu_vat" | "id_npwp" | "ie_vat" | "il_vat" | "in_gst" | "is_vat" | "it_vat" | "jp_cn" | "jp_rn" | "jp_trn" | "ke_pin" | "kh_tin" | "kr_brn" | "kz_bin" | "li_uid" | "li_vat" | "lt_vat" | "lu_vat" | "lv_vat" | "ma_vat" | "md_vat" | "me_pib" | "mk_vat" | "mr_nif" | "mt_vat" | "mx_rfc" | "my_frp" | "my_itn" | "my_sst" | "ng_tin" | "nl_vat" | "no_vat" | "no_voec" | "np_pan" | "nz_gst" | "om_vat" | "pe_ruc" | "ph_tin" | "pl_vat" | "pt_vat" | "ro_tin" | "ro_vat" | "rs_pib" | "ru_inn" | "ru_kpp" | "sa_vat" | "se_vat" | "sg_gst" | "sg_uen" | "si_tin" | "si_vat" | "sk_vat" | "sn_ninea" | "sr_fin" | "sv_nit" | "th_vat" | "tj_tin" | "tr_tin" | "tw_vat" | "tz_vat" | "ua_vat" | "ug_tin" | "us_ein" | "uy_ruc" | "uz_tin" | "uz_vat" | "ve_rif" | "vn_tin" | "xi_vat" | "za_vat" | "zm_tin" | "zw_tin" | undefined;
1696
+ };
1697
+ path?: undefined;
1698
+ query?: undefined;
1552
1699
  }>;
1553
1700
  /**
1554
1701
  * Successfully updated. Returns updated organization details.
@@ -1596,6 +1743,19 @@ export declare const zUpdateContactResponse: z.ZodObject<{
1596
1743
  tax_id?: string | undefined;
1597
1744
  tax_id_type?: "" | "ad_nrt" | "ae_trn" | "al_tin" | "am_tin" | "ao_tin" | "ar_cuit" | "at_vat" | "au_abn" | "au_arn" | "ba_tin" | "bb_tin" | "be_vat" | "bg_uic" | "bg_vat" | "bh_vat" | "bo_tin" | "br_cnpj" | "br_cpf" | "bs_tin" | "by_tin" | "ca_bn" | "ca_gst_hst" | "ca_pst_bc" | "ca_pst_mb" | "ca_pst_sk" | "ca_qst" | "cd_nif" | "ch_uid" | "ch_vat" | "cl_tin" | "cn_tin" | "co_nit" | "cr_tin" | "cy_vat" | "cz_vat" | "de_stn" | "de_vat" | "dk_vat" | "do_rcn" | "ec_ruc" | "ee_vat" | "eg_tin" | "es_cif" | "es_vat" | "eu_oss_vat" | "fi_vat" | "fr_vat" | "gb_vat" | "ge_vat" | "gn_nif" | "gr_vat" | "hk_br" | "hr_oib" | "hr_vat" | "hu_tin" | "hu_vat" | "id_npwp" | "ie_vat" | "il_vat" | "in_gst" | "is_vat" | "it_vat" | "jp_cn" | "jp_rn" | "jp_trn" | "ke_pin" | "kh_tin" | "kr_brn" | "kz_bin" | "li_uid" | "li_vat" | "lt_vat" | "lu_vat" | "lv_vat" | "ma_vat" | "md_vat" | "me_pib" | "mk_vat" | "mr_nif" | "mt_vat" | "mx_rfc" | "my_frp" | "my_itn" | "my_sst" | "ng_tin" | "nl_vat" | "no_vat" | "no_voec" | "np_pan" | "nz_gst" | "om_vat" | "pe_ruc" | "ph_tin" | "pl_vat" | "pt_vat" | "ro_tin" | "ro_vat" | "rs_pib" | "ru_inn" | "ru_kpp" | "sa_vat" | "se_vat" | "sg_gst" | "sg_uen" | "si_tin" | "si_vat" | "sk_vat" | "sn_ninea" | "sr_fin" | "sv_nit" | "th_vat" | "tj_tin" | "tr_tin" | "tw_vat" | "tz_vat" | "ua_vat" | "ug_tin" | "us_ein" | "uy_ruc" | "uz_tin" | "uz_vat" | "ve_rif" | "vn_tin" | "xi_vat" | "za_vat" | "zm_tin" | "zw_tin" | undefined;
1598
1745
  }>;
1746
+ export declare const zGetCreditsData: z.ZodObject<{
1747
+ body: z.ZodOptional<z.ZodNever>;
1748
+ path: z.ZodOptional<z.ZodNever>;
1749
+ query: z.ZodOptional<z.ZodNever>;
1750
+ }, "strip", z.ZodTypeAny, {
1751
+ body?: undefined;
1752
+ path?: undefined;
1753
+ query?: undefined;
1754
+ }, {
1755
+ body?: undefined;
1756
+ path?: undefined;
1757
+ query?: undefined;
1758
+ }>;
1599
1759
  /**
1600
1760
  * An array of the applied promotional credits records.
1601
1761
  */
@@ -1631,16 +1791,51 @@ export declare const zGetCreditsResponse: z.ZodArray<z.ZodObject<{
1631
1791
  value_remaining?: number | undefined;
1632
1792
  }>, "many">;
1633
1793
  export declare const zRedeemCreditsData: z.ZodObject<{
1634
- code: z.ZodOptional<z.ZodString>;
1794
+ body: z.ZodObject<{
1795
+ code: z.ZodOptional<z.ZodString>;
1796
+ }, "strip", z.ZodTypeAny, {
1797
+ code?: string | undefined;
1798
+ }, {
1799
+ code?: string | undefined;
1800
+ }>;
1801
+ path: z.ZodOptional<z.ZodNever>;
1802
+ query: z.ZodOptional<z.ZodNever>;
1635
1803
  }, "strip", z.ZodTypeAny, {
1636
- code?: string | undefined;
1804
+ body: {
1805
+ code?: string | undefined;
1806
+ };
1807
+ path?: undefined;
1808
+ query?: undefined;
1637
1809
  }, {
1638
- code?: string | undefined;
1810
+ body: {
1811
+ code?: string | undefined;
1812
+ };
1813
+ path?: undefined;
1814
+ query?: undefined;
1815
+ }>;
1816
+ export declare const zListChartsData: z.ZodObject<{
1817
+ body: z.ZodOptional<z.ZodNever>;
1818
+ path: z.ZodObject<{
1819
+ cluster_id: z.ZodString;
1820
+ }, "strip", z.ZodTypeAny, {
1821
+ cluster_id: string;
1822
+ }, {
1823
+ cluster_id: string;
1824
+ }>;
1825
+ query: z.ZodOptional<z.ZodNever>;
1826
+ }, "strip", z.ZodTypeAny, {
1827
+ path: {
1828
+ cluster_id: string;
1829
+ };
1830
+ body?: undefined;
1831
+ query?: undefined;
1832
+ }, {
1833
+ path: {
1834
+ cluster_id: string;
1835
+ };
1836
+ body?: undefined;
1837
+ query?: undefined;
1639
1838
  }>;
1640
- /**
1641
- * Unique identifier of the cluster. UUID v4 string in canonical form
1642
- */
1643
- export declare const zListChartsParameterClusterId: z.ZodString;
1644
1839
  /**
1645
1840
  * An array of charts
1646
1841
  */
@@ -1679,52 +1874,122 @@ export declare const zListChartsResponse: z.ZodArray<z.ZodObject<{
1679
1874
  updated_at: string;
1680
1875
  }>, "many">;
1681
1876
  export declare const zCreateChartData: z.ZodObject<{
1682
- values: z.ZodString;
1683
- version_channel: z.ZodString;
1684
- name: z.ZodString;
1685
- namespace: z.ZodString;
1686
- chart: z.ZodString;
1687
- }, "strip", z.ZodTypeAny, {
1688
- values: string;
1689
- name: string;
1690
- version_channel: string;
1691
- namespace: string;
1692
- chart: string;
1693
- }, {
1694
- values: string;
1695
- name: string;
1696
- version_channel: string;
1697
- namespace: string;
1698
- chart: string;
1877
+ body: z.ZodObject<{
1878
+ values: z.ZodString;
1879
+ version_channel: z.ZodString;
1880
+ name: z.ZodString;
1881
+ namespace: z.ZodString;
1882
+ chart: z.ZodString;
1883
+ }, "strip", z.ZodTypeAny, {
1884
+ values: string;
1885
+ name: string;
1886
+ version_channel: string;
1887
+ namespace: string;
1888
+ chart: string;
1889
+ }, {
1890
+ values: string;
1891
+ name: string;
1892
+ version_channel: string;
1893
+ namespace: string;
1894
+ chart: string;
1895
+ }>;
1896
+ path: z.ZodObject<{
1897
+ cluster_id: z.ZodString;
1898
+ }, "strip", z.ZodTypeAny, {
1899
+ cluster_id: string;
1900
+ }, {
1901
+ cluster_id: string;
1902
+ }>;
1903
+ query: z.ZodOptional<z.ZodNever>;
1904
+ }, "strip", z.ZodTypeAny, {
1905
+ body: {
1906
+ values: string;
1907
+ name: string;
1908
+ version_channel: string;
1909
+ namespace: string;
1910
+ chart: string;
1911
+ };
1912
+ path: {
1913
+ cluster_id: string;
1914
+ };
1915
+ query?: undefined;
1916
+ }, {
1917
+ body: {
1918
+ values: string;
1919
+ name: string;
1920
+ version_channel: string;
1921
+ namespace: string;
1922
+ chart: string;
1923
+ };
1924
+ path: {
1925
+ cluster_id: string;
1926
+ };
1927
+ query?: undefined;
1699
1928
  }>;
1700
- /**
1701
- * Unique identifier of the cluster. UUID v4 string in canonical form
1702
- */
1703
- export declare const zCreateChartParameterClusterId: z.ZodString;
1704
1929
  /**
1705
1930
  * Successfully created. Returns created Chart ID.
1706
1931
  */
1707
1932
  export declare const zCreateChartResponse: z.ZodString;
1708
- /**
1709
- * Unique identifier of the cluster. UUID v4 string in canonical form
1710
- */
1711
- export declare const zDeleteChartParameterClusterId: z.ZodString;
1712
- /**
1713
- * Chart deployment name as the unique identifier of the chart.
1714
- */
1715
- export declare const zDeleteChartParameterChartName: z.ZodString;
1933
+ export declare const zDeleteChartData: z.ZodObject<{
1934
+ body: z.ZodOptional<z.ZodNever>;
1935
+ path: z.ZodObject<{
1936
+ cluster_id: z.ZodString;
1937
+ chart_name: z.ZodString;
1938
+ }, "strip", z.ZodTypeAny, {
1939
+ cluster_id: string;
1940
+ chart_name: string;
1941
+ }, {
1942
+ cluster_id: string;
1943
+ chart_name: string;
1944
+ }>;
1945
+ query: z.ZodOptional<z.ZodNever>;
1946
+ }, "strip", z.ZodTypeAny, {
1947
+ path: {
1948
+ cluster_id: string;
1949
+ chart_name: string;
1950
+ };
1951
+ body?: undefined;
1952
+ query?: undefined;
1953
+ }, {
1954
+ path: {
1955
+ cluster_id: string;
1956
+ chart_name: string;
1957
+ };
1958
+ body?: undefined;
1959
+ query?: undefined;
1960
+ }>;
1716
1961
  /**
1717
1962
  * Successfully deleted.
1718
1963
  */
1719
1964
  export declare const zDeleteChartResponse: z.ZodString;
1720
- /**
1721
- * Unique identifier of the cluster. UUID v4 string in canonical form
1722
- */
1723
- export declare const zGetChartParameterClusterId: z.ZodString;
1724
- /**
1725
- * Chart deployment name as the unique identifier of the chart.
1726
- */
1727
- export declare const zGetChartParameterChartName: z.ZodString;
1965
+ export declare const zGetChartData: z.ZodObject<{
1966
+ body: z.ZodOptional<z.ZodNever>;
1967
+ path: z.ZodObject<{
1968
+ cluster_id: z.ZodString;
1969
+ chart_name: z.ZodString;
1970
+ }, "strip", z.ZodTypeAny, {
1971
+ cluster_id: string;
1972
+ chart_name: string;
1973
+ }, {
1974
+ cluster_id: string;
1975
+ chart_name: string;
1976
+ }>;
1977
+ query: z.ZodOptional<z.ZodNever>;
1978
+ }, "strip", z.ZodTypeAny, {
1979
+ path: {
1980
+ cluster_id: string;
1981
+ chart_name: string;
1982
+ };
1983
+ body?: undefined;
1984
+ query?: undefined;
1985
+ }, {
1986
+ path: {
1987
+ cluster_id: string;
1988
+ chart_name: string;
1989
+ };
1990
+ body?: undefined;
1991
+ query?: undefined;
1992
+ }>;
1728
1993
  /**
1729
1994
  * Returns a single object containing chart details.
1730
1995
  */
@@ -1763,31 +2028,75 @@ export declare const zGetChartResponse: z.ZodObject<{
1763
2028
  updated_at: string;
1764
2029
  }>;
1765
2030
  export declare const zUpdateChartData: z.ZodObject<{
1766
- values: z.ZodString;
1767
- version_channel: z.ZodString;
2031
+ body: z.ZodObject<{
2032
+ values: z.ZodString;
2033
+ version_channel: z.ZodString;
2034
+ }, "strip", z.ZodTypeAny, {
2035
+ values: string;
2036
+ version_channel: string;
2037
+ }, {
2038
+ values: string;
2039
+ version_channel: string;
2040
+ }>;
2041
+ path: z.ZodObject<{
2042
+ cluster_id: z.ZodString;
2043
+ chart_name: z.ZodString;
2044
+ }, "strip", z.ZodTypeAny, {
2045
+ cluster_id: string;
2046
+ chart_name: string;
2047
+ }, {
2048
+ cluster_id: string;
2049
+ chart_name: string;
2050
+ }>;
2051
+ query: z.ZodOptional<z.ZodNever>;
1768
2052
  }, "strip", z.ZodTypeAny, {
1769
- values: string;
1770
- version_channel: string;
2053
+ body: {
2054
+ values: string;
2055
+ version_channel: string;
2056
+ };
2057
+ path: {
2058
+ cluster_id: string;
2059
+ chart_name: string;
2060
+ };
2061
+ query?: undefined;
1771
2062
  }, {
1772
- values: string;
1773
- version_channel: string;
2063
+ body: {
2064
+ values: string;
2065
+ version_channel: string;
2066
+ };
2067
+ path: {
2068
+ cluster_id: string;
2069
+ chart_name: string;
2070
+ };
2071
+ query?: undefined;
1774
2072
  }>;
1775
- /**
1776
- * Unique identifier of the cluster. UUID v4 string in canonical form
1777
- */
1778
- export declare const zUpdateChartParameterClusterId: z.ZodString;
1779
- /**
1780
- * Chart deployment name as the unique identifier of the chart.
1781
- */
1782
- export declare const zUpdateChartParameterChartName: z.ZodString;
1783
2073
  /**
1784
2074
  * Successfully updated.
1785
2075
  */
1786
2076
  export declare const zUpdateChartResponse: z.ZodString;
1787
- /**
1788
- * Unique identifier of the cluster. UUID v4 string in canonical form
1789
- */
1790
- export declare const zListFleetsParameterClusterId: z.ZodString;
2077
+ export declare const zListFleetsData: z.ZodObject<{
2078
+ body: z.ZodOptional<z.ZodNever>;
2079
+ path: z.ZodObject<{
2080
+ cluster_id: z.ZodString;
2081
+ }, "strip", z.ZodTypeAny, {
2082
+ cluster_id: string;
2083
+ }, {
2084
+ cluster_id: string;
2085
+ }>;
2086
+ query: z.ZodOptional<z.ZodNever>;
2087
+ }, "strip", z.ZodTypeAny, {
2088
+ path: {
2089
+ cluster_id: string;
2090
+ };
2091
+ body?: undefined;
2092
+ query?: undefined;
2093
+ }, {
2094
+ path: {
2095
+ cluster_id: string;
2096
+ };
2097
+ body?: undefined;
2098
+ query?: undefined;
2099
+ }>;
1791
2100
  /**
1792
2101
  * An array of fleets
1793
2102
  */
@@ -1866,6 +2175,203 @@ export declare const zListFleetsResponse: z.ZodArray<z.ZodObject<{
1866
2175
  } | undefined;
1867
2176
  }>, "many">;
1868
2177
  export declare const zCreateFleetData: z.ZodObject<{
2178
+ body: z.ZodObject<{
2179
+ limits: z.ZodOptional<z.ZodObject<{
2180
+ cpu: z.ZodNumber;
2181
+ }, "strip", z.ZodTypeAny, {
2182
+ cpu: number;
2183
+ }, {
2184
+ cpu: number;
2185
+ }>>;
2186
+ gcp: z.ZodOptional<z.ZodObject<{
2187
+ enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
2188
+ project: z.ZodString;
2189
+ }, "strip", z.ZodTypeAny, {
2190
+ project: string;
2191
+ enabled: boolean;
2192
+ }, {
2193
+ project: string;
2194
+ enabled?: boolean | undefined;
2195
+ }>>;
2196
+ hetzner: z.ZodOptional<z.ZodObject<{
2197
+ enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
2198
+ apiKey: z.ZodString;
2199
+ }, "strip", z.ZodTypeAny, {
2200
+ apiKey: string;
2201
+ enabled: boolean;
2202
+ }, {
2203
+ apiKey: string;
2204
+ enabled?: boolean | undefined;
2205
+ }>>;
2206
+ aws: z.ZodOptional<z.ZodObject<{
2207
+ enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
2208
+ controllerRoleArn: z.ZodString;
2209
+ }, "strip", z.ZodTypeAny, {
2210
+ controllerRoleArn: string;
2211
+ enabled: boolean;
2212
+ }, {
2213
+ controllerRoleArn: string;
2214
+ enabled?: boolean | undefined;
2215
+ }>>;
2216
+ id: z.ZodString;
2217
+ }, "strip", z.ZodTypeAny, {
2218
+ id: string;
2219
+ limits?: {
2220
+ cpu: number;
2221
+ } | undefined;
2222
+ gcp?: {
2223
+ project: string;
2224
+ enabled: boolean;
2225
+ } | undefined;
2226
+ hetzner?: {
2227
+ apiKey: string;
2228
+ enabled: boolean;
2229
+ } | undefined;
2230
+ aws?: {
2231
+ controllerRoleArn: string;
2232
+ enabled: boolean;
2233
+ } | undefined;
2234
+ }, {
2235
+ id: string;
2236
+ limits?: {
2237
+ cpu: number;
2238
+ } | undefined;
2239
+ gcp?: {
2240
+ project: string;
2241
+ enabled?: boolean | undefined;
2242
+ } | undefined;
2243
+ hetzner?: {
2244
+ apiKey: string;
2245
+ enabled?: boolean | undefined;
2246
+ } | undefined;
2247
+ aws?: {
2248
+ controllerRoleArn: string;
2249
+ enabled?: boolean | undefined;
2250
+ } | undefined;
2251
+ }>;
2252
+ path: z.ZodObject<{
2253
+ cluster_id: z.ZodString;
2254
+ }, "strip", z.ZodTypeAny, {
2255
+ cluster_id: string;
2256
+ }, {
2257
+ cluster_id: string;
2258
+ }>;
2259
+ query: z.ZodOptional<z.ZodNever>;
2260
+ }, "strip", z.ZodTypeAny, {
2261
+ body: {
2262
+ id: string;
2263
+ limits?: {
2264
+ cpu: number;
2265
+ } | undefined;
2266
+ gcp?: {
2267
+ project: string;
2268
+ enabled: boolean;
2269
+ } | undefined;
2270
+ hetzner?: {
2271
+ apiKey: string;
2272
+ enabled: boolean;
2273
+ } | undefined;
2274
+ aws?: {
2275
+ controllerRoleArn: string;
2276
+ enabled: boolean;
2277
+ } | undefined;
2278
+ };
2279
+ path: {
2280
+ cluster_id: string;
2281
+ };
2282
+ query?: undefined;
2283
+ }, {
2284
+ body: {
2285
+ id: string;
2286
+ limits?: {
2287
+ cpu: number;
2288
+ } | undefined;
2289
+ gcp?: {
2290
+ project: string;
2291
+ enabled?: boolean | undefined;
2292
+ } | undefined;
2293
+ hetzner?: {
2294
+ apiKey: string;
2295
+ enabled?: boolean | undefined;
2296
+ } | undefined;
2297
+ aws?: {
2298
+ controllerRoleArn: string;
2299
+ enabled?: boolean | undefined;
2300
+ } | undefined;
2301
+ };
2302
+ path: {
2303
+ cluster_id: string;
2304
+ };
2305
+ query?: undefined;
2306
+ }>;
2307
+ /**
2308
+ * Successfully created. Returns created Fleet ID.
2309
+ */
2310
+ export declare const zCreateFleetResponse: z.ZodString;
2311
+ export declare const zDeleteFleetData: z.ZodObject<{
2312
+ body: z.ZodOptional<z.ZodNever>;
2313
+ path: z.ZodObject<{
2314
+ cluster_id: z.ZodString;
2315
+ fleet_name: z.ZodString;
2316
+ }, "strip", z.ZodTypeAny, {
2317
+ cluster_id: string;
2318
+ fleet_name: string;
2319
+ }, {
2320
+ cluster_id: string;
2321
+ fleet_name: string;
2322
+ }>;
2323
+ query: z.ZodOptional<z.ZodNever>;
2324
+ }, "strip", z.ZodTypeAny, {
2325
+ path: {
2326
+ cluster_id: string;
2327
+ fleet_name: string;
2328
+ };
2329
+ body?: undefined;
2330
+ query?: undefined;
2331
+ }, {
2332
+ path: {
2333
+ cluster_id: string;
2334
+ fleet_name: string;
2335
+ };
2336
+ body?: undefined;
2337
+ query?: undefined;
2338
+ }>;
2339
+ /**
2340
+ * Successfully deleted.
2341
+ */
2342
+ export declare const zDeleteFleetResponse: z.ZodString;
2343
+ export declare const zGetFleetData: z.ZodObject<{
2344
+ body: z.ZodOptional<z.ZodNever>;
2345
+ path: z.ZodObject<{
2346
+ cluster_id: z.ZodString;
2347
+ fleet_name: z.ZodString;
2348
+ }, "strip", z.ZodTypeAny, {
2349
+ cluster_id: string;
2350
+ fleet_name: string;
2351
+ }, {
2352
+ cluster_id: string;
2353
+ fleet_name: string;
2354
+ }>;
2355
+ query: z.ZodOptional<z.ZodNever>;
2356
+ }, "strip", z.ZodTypeAny, {
2357
+ path: {
2358
+ cluster_id: string;
2359
+ fleet_name: string;
2360
+ };
2361
+ body?: undefined;
2362
+ query?: undefined;
2363
+ }, {
2364
+ path: {
2365
+ cluster_id: string;
2366
+ fleet_name: string;
2367
+ };
2368
+ body?: undefined;
2369
+ query?: undefined;
2370
+ }>;
2371
+ /**
2372
+ * Returns a single object containing fleet details.
2373
+ */
2374
+ export declare const zGetFleetResponse: z.ZodObject<{
1869
2375
  limits: z.ZodOptional<z.ZodObject<{
1870
2376
  cpu: z.ZodNumber;
1871
2377
  }, "strip", z.ZodTypeAny, {
@@ -1939,205 +2445,183 @@ export declare const zCreateFleetData: z.ZodObject<{
1939
2445
  enabled?: boolean | undefined;
1940
2446
  } | undefined;
1941
2447
  }>;
2448
+ export declare const zUpdateFleetData: z.ZodObject<{
2449
+ body: z.ZodObject<{
2450
+ limits: z.ZodOptional<z.ZodObject<{
2451
+ cpu: z.ZodNumber;
2452
+ }, "strip", z.ZodTypeAny, {
2453
+ cpu: number;
2454
+ }, {
2455
+ cpu: number;
2456
+ }>>;
2457
+ gcp: z.ZodOptional<z.ZodObject<{
2458
+ enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
2459
+ project: z.ZodString;
2460
+ }, "strip", z.ZodTypeAny, {
2461
+ project: string;
2462
+ enabled: boolean;
2463
+ }, {
2464
+ project: string;
2465
+ enabled?: boolean | undefined;
2466
+ }>>;
2467
+ hetzner: z.ZodOptional<z.ZodObject<{
2468
+ enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
2469
+ apiKey: z.ZodString;
2470
+ }, "strip", z.ZodTypeAny, {
2471
+ apiKey: string;
2472
+ enabled: boolean;
2473
+ }, {
2474
+ apiKey: string;
2475
+ enabled?: boolean | undefined;
2476
+ }>>;
2477
+ aws: z.ZodOptional<z.ZodObject<{
2478
+ enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
2479
+ controllerRoleArn: z.ZodString;
2480
+ }, "strip", z.ZodTypeAny, {
2481
+ controllerRoleArn: string;
2482
+ enabled: boolean;
2483
+ }, {
2484
+ controllerRoleArn: string;
2485
+ enabled?: boolean | undefined;
2486
+ }>>;
2487
+ }, "strip", z.ZodTypeAny, {
2488
+ limits?: {
2489
+ cpu: number;
2490
+ } | undefined;
2491
+ gcp?: {
2492
+ project: string;
2493
+ enabled: boolean;
2494
+ } | undefined;
2495
+ hetzner?: {
2496
+ apiKey: string;
2497
+ enabled: boolean;
2498
+ } | undefined;
2499
+ aws?: {
2500
+ controllerRoleArn: string;
2501
+ enabled: boolean;
2502
+ } | undefined;
2503
+ }, {
2504
+ limits?: {
2505
+ cpu: number;
2506
+ } | undefined;
2507
+ gcp?: {
2508
+ project: string;
2509
+ enabled?: boolean | undefined;
2510
+ } | undefined;
2511
+ hetzner?: {
2512
+ apiKey: string;
2513
+ enabled?: boolean | undefined;
2514
+ } | undefined;
2515
+ aws?: {
2516
+ controllerRoleArn: string;
2517
+ enabled?: boolean | undefined;
2518
+ } | undefined;
2519
+ }>;
2520
+ path: z.ZodObject<{
2521
+ cluster_id: z.ZodString;
2522
+ fleet_name: z.ZodString;
2523
+ }, "strip", z.ZodTypeAny, {
2524
+ cluster_id: string;
2525
+ fleet_name: string;
2526
+ }, {
2527
+ cluster_id: string;
2528
+ fleet_name: string;
2529
+ }>;
2530
+ query: z.ZodOptional<z.ZodNever>;
2531
+ }, "strip", z.ZodTypeAny, {
2532
+ body: {
2533
+ limits?: {
2534
+ cpu: number;
2535
+ } | undefined;
2536
+ gcp?: {
2537
+ project: string;
2538
+ enabled: boolean;
2539
+ } | undefined;
2540
+ hetzner?: {
2541
+ apiKey: string;
2542
+ enabled: boolean;
2543
+ } | undefined;
2544
+ aws?: {
2545
+ controllerRoleArn: string;
2546
+ enabled: boolean;
2547
+ } | undefined;
2548
+ };
2549
+ path: {
2550
+ cluster_id: string;
2551
+ fleet_name: string;
2552
+ };
2553
+ query?: undefined;
2554
+ }, {
2555
+ body: {
2556
+ limits?: {
2557
+ cpu: number;
2558
+ } | undefined;
2559
+ gcp?: {
2560
+ project: string;
2561
+ enabled?: boolean | undefined;
2562
+ } | undefined;
2563
+ hetzner?: {
2564
+ apiKey: string;
2565
+ enabled?: boolean | undefined;
2566
+ } | undefined;
2567
+ aws?: {
2568
+ controllerRoleArn: string;
2569
+ enabled?: boolean | undefined;
2570
+ } | undefined;
2571
+ };
2572
+ path: {
2573
+ cluster_id: string;
2574
+ fleet_name: string;
2575
+ };
2576
+ query?: undefined;
2577
+ }>;
1942
2578
  /**
1943
- * Unique identifier of the cluster. UUID v4 string in canonical form
2579
+ * Successfully updated.
1944
2580
  */
1945
- export declare const zCreateFleetParameterClusterId: z.ZodString;
1946
- /**
1947
- * Successfully created. Returns created Fleet ID.
1948
- */
1949
- export declare const zCreateFleetResponse: z.ZodString;
1950
- /**
1951
- * Unique identifier of the cluster. UUID v4 string in canonical form
1952
- */
1953
- export declare const zDeleteFleetParameterClusterId: z.ZodString;
1954
- /**
1955
- * Unique identifier of the fleet. UUID v4 string in canonical form
1956
- */
1957
- export declare const zDeleteFleetParameterFleetName: z.ZodString;
1958
- /**
1959
- * Successfully deleted.
1960
- */
1961
- export declare const zDeleteFleetResponse: z.ZodString;
1962
- /**
1963
- * Unique identifier of the cluster. UUID v4 string in canonical form
1964
- */
1965
- export declare const zGetFleetParameterClusterId: z.ZodString;
1966
- /**
1967
- * Unique identifier of the fleet. UUID v4 string in canonical form
1968
- */
1969
- export declare const zGetFleetParameterFleetName: z.ZodString;
1970
- /**
1971
- * Returns a single object containing fleet details.
1972
- */
1973
- export declare const zGetFleetResponse: z.ZodObject<{
1974
- limits: z.ZodOptional<z.ZodObject<{
1975
- cpu: z.ZodNumber;
1976
- }, "strip", z.ZodTypeAny, {
1977
- cpu: number;
1978
- }, {
1979
- cpu: number;
1980
- }>>;
1981
- gcp: z.ZodOptional<z.ZodObject<{
1982
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1983
- project: z.ZodString;
1984
- }, "strip", z.ZodTypeAny, {
1985
- project: string;
1986
- enabled: boolean;
1987
- }, {
1988
- project: string;
1989
- enabled?: boolean | undefined;
1990
- }>>;
1991
- hetzner: z.ZodOptional<z.ZodObject<{
1992
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1993
- apiKey: z.ZodString;
1994
- }, "strip", z.ZodTypeAny, {
1995
- apiKey: string;
1996
- enabled: boolean;
1997
- }, {
1998
- apiKey: string;
1999
- enabled?: boolean | undefined;
2000
- }>>;
2001
- aws: z.ZodOptional<z.ZodObject<{
2002
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
2003
- controllerRoleArn: z.ZodString;
2004
- }, "strip", z.ZodTypeAny, {
2005
- controllerRoleArn: string;
2006
- enabled: boolean;
2007
- }, {
2008
- controllerRoleArn: string;
2009
- enabled?: boolean | undefined;
2010
- }>>;
2011
- id: z.ZodString;
2012
- }, "strip", z.ZodTypeAny, {
2013
- id: string;
2014
- limits?: {
2015
- cpu: number;
2016
- } | undefined;
2017
- gcp?: {
2018
- project: string;
2019
- enabled: boolean;
2020
- } | undefined;
2021
- hetzner?: {
2022
- apiKey: string;
2023
- enabled: boolean;
2024
- } | undefined;
2025
- aws?: {
2026
- controllerRoleArn: string;
2027
- enabled: boolean;
2028
- } | undefined;
2029
- }, {
2030
- id: string;
2031
- limits?: {
2032
- cpu: number;
2033
- } | undefined;
2034
- gcp?: {
2035
- project: string;
2036
- enabled?: boolean | undefined;
2037
- } | undefined;
2038
- hetzner?: {
2039
- apiKey: string;
2040
- enabled?: boolean | undefined;
2041
- } | undefined;
2042
- aws?: {
2043
- controllerRoleArn: string;
2044
- enabled?: boolean | undefined;
2045
- } | undefined;
2046
- }>;
2047
- export declare const zUpdateFleetData: z.ZodObject<{
2048
- limits: z.ZodOptional<z.ZodObject<{
2049
- cpu: z.ZodNumber;
2050
- }, "strip", z.ZodTypeAny, {
2051
- cpu: number;
2052
- }, {
2053
- cpu: number;
2054
- }>>;
2055
- gcp: z.ZodOptional<z.ZodObject<{
2056
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
2057
- project: z.ZodString;
2058
- }, "strip", z.ZodTypeAny, {
2059
- project: string;
2060
- enabled: boolean;
2061
- }, {
2062
- project: string;
2063
- enabled?: boolean | undefined;
2064
- }>>;
2065
- hetzner: z.ZodOptional<z.ZodObject<{
2066
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
2067
- apiKey: z.ZodString;
2068
- }, "strip", z.ZodTypeAny, {
2069
- apiKey: string;
2070
- enabled: boolean;
2071
- }, {
2072
- apiKey: string;
2073
- enabled?: boolean | undefined;
2074
- }>>;
2075
- aws: z.ZodOptional<z.ZodObject<{
2076
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
2077
- controllerRoleArn: z.ZodString;
2078
- }, "strip", z.ZodTypeAny, {
2079
- controllerRoleArn: string;
2080
- enabled: boolean;
2081
- }, {
2082
- controllerRoleArn: string;
2083
- enabled?: boolean | undefined;
2084
- }>>;
2085
- }, "strip", z.ZodTypeAny, {
2086
- limits?: {
2087
- cpu: number;
2088
- } | undefined;
2089
- gcp?: {
2090
- project: string;
2091
- enabled: boolean;
2092
- } | undefined;
2093
- hetzner?: {
2094
- apiKey: string;
2095
- enabled: boolean;
2096
- } | undefined;
2097
- aws?: {
2098
- controllerRoleArn: string;
2099
- enabled: boolean;
2100
- } | undefined;
2101
- }, {
2102
- limits?: {
2103
- cpu: number;
2104
- } | undefined;
2105
- gcp?: {
2106
- project: string;
2107
- enabled?: boolean | undefined;
2108
- } | undefined;
2109
- hetzner?: {
2110
- apiKey: string;
2111
- enabled?: boolean | undefined;
2112
- } | undefined;
2113
- aws?: {
2114
- controllerRoleArn: string;
2115
- enabled?: boolean | undefined;
2116
- } | undefined;
2117
- }>;
2118
- /**
2119
- * Unique identifier of the cluster. UUID v4 string in canonical form
2120
- */
2121
- export declare const zUpdateFleetParameterClusterId: z.ZodString;
2122
- /**
2123
- * Unique identifier of the fleet. UUID v4 string in canonical form
2124
- */
2125
- export declare const zUpdateFleetParameterFleetName: z.ZodString;
2126
- /**
2127
- * Successfully updated.
2128
- */
2129
- export declare const zUpdateFleetResponse: z.ZodString;
2130
- /**
2131
- * Unique identifier of the cluster. UUID v4 string in canonical form
2132
- */
2133
- export declare const zQueryClusterParameterClusterId: z.ZodString;
2581
+ export declare const zUpdateFleetResponse: z.ZodString;
2582
+ export declare const zQueryClusterData: z.ZodObject<{
2583
+ body: z.ZodOptional<z.ZodNever>;
2584
+ path: z.ZodObject<{
2585
+ cluster_id: z.ZodString;
2586
+ }, "strip", z.ZodTypeAny, {
2587
+ cluster_id: string;
2588
+ }, {
2589
+ cluster_id: string;
2590
+ }>;
2591
+ query: z.ZodOptional<z.ZodNever>;
2592
+ }, "strip", z.ZodTypeAny, {
2593
+ path: {
2594
+ cluster_id: string;
2595
+ };
2596
+ body?: undefined;
2597
+ query?: undefined;
2598
+ }, {
2599
+ path: {
2600
+ cluster_id: string;
2601
+ };
2602
+ body?: undefined;
2603
+ query?: undefined;
2604
+ }>;
2605
+ export declare const zListClustersData: z.ZodObject<{
2606
+ body: z.ZodOptional<z.ZodNever>;
2607
+ path: z.ZodOptional<z.ZodNever>;
2608
+ query: z.ZodOptional<z.ZodNever>;
2609
+ }, "strip", z.ZodTypeAny, {
2610
+ body?: undefined;
2611
+ path?: undefined;
2612
+ query?: undefined;
2613
+ }, {
2614
+ body?: undefined;
2615
+ path?: undefined;
2616
+ query?: undefined;
2617
+ }>;
2134
2618
  /**
2135
2619
  * An array of clusters
2136
2620
  */
2137
2621
  export declare const zListClustersResponse: z.ZodArray<z.ZodObject<{
2138
2622
  name: z.ZodString;
2139
- region: z.ZodOptional<z.ZodEnum<["staging", "northamerica-central-1"]>>;
2140
2623
  tier: z.ZodEnum<["basic", "pro"]>;
2624
+ region: z.ZodOptional<z.ZodEnum<["staging", "northamerica-central-1", "europe-central-1a"]>>;
2141
2625
  version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
2142
2626
  id: z.ZodString;
2143
2627
  status: z.ZodEnum<["active", "deleted", "creating", "deployed", "failed", "updating"]>;
@@ -2154,7 +2638,7 @@ export declare const zListClustersResponse: z.ZodArray<z.ZodObject<{
2154
2638
  version_channel: string;
2155
2639
  tier: "basic" | "pro";
2156
2640
  ready?: boolean | undefined;
2157
- region?: "staging" | "northamerica-central-1" | undefined;
2641
+ region?: "staging" | "northamerica-central-1" | "europe-central-1a" | undefined;
2158
2642
  version_current?: string | undefined;
2159
2643
  created_at?: string | undefined;
2160
2644
  updated_at?: string | undefined;
@@ -2166,7 +2650,7 @@ export declare const zListClustersResponse: z.ZodArray<z.ZodObject<{
2166
2650
  status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
2167
2651
  tier: "basic" | "pro";
2168
2652
  ready?: boolean | undefined;
2169
- region?: "staging" | "northamerica-central-1" | undefined;
2653
+ region?: "staging" | "northamerica-central-1" | "europe-central-1a" | undefined;
2170
2654
  version_channel?: string | undefined;
2171
2655
  version_current?: string | undefined;
2172
2656
  created_at?: string | undefined;
@@ -2175,44 +2659,104 @@ export declare const zListClustersResponse: z.ZodArray<z.ZodObject<{
2175
2659
  certificate_ca?: string | undefined;
2176
2660
  }>, "many">;
2177
2661
  export declare const zCreateClusterData: z.ZodObject<{
2178
- name: z.ZodString;
2179
- region: z.ZodOptional<z.ZodEnum<["staging", "northamerica-central-1"]>>;
2180
- tier: z.ZodEnum<["basic", "pro"]>;
2181
- version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
2182
- }, "strip", z.ZodTypeAny, {
2183
- name: string;
2184
- version_channel: string;
2185
- tier: "basic" | "pro";
2186
- region?: "staging" | "northamerica-central-1" | undefined;
2187
- }, {
2188
- name: string;
2189
- tier: "basic" | "pro";
2190
- region?: "staging" | "northamerica-central-1" | undefined;
2191
- version_channel?: string | undefined;
2662
+ body: z.ZodObject<{
2663
+ name: z.ZodString;
2664
+ tier: z.ZodEnum<["basic", "pro"]>;
2665
+ region: z.ZodOptional<z.ZodEnum<["staging", "northamerica-central-1", "europe-central-1a"]>>;
2666
+ version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
2667
+ }, "strip", z.ZodTypeAny, {
2668
+ name: string;
2669
+ version_channel: string;
2670
+ tier: "basic" | "pro";
2671
+ region?: "staging" | "northamerica-central-1" | "europe-central-1a" | undefined;
2672
+ }, {
2673
+ name: string;
2674
+ tier: "basic" | "pro";
2675
+ region?: "staging" | "northamerica-central-1" | "europe-central-1a" | undefined;
2676
+ version_channel?: string | undefined;
2677
+ }>;
2678
+ path: z.ZodOptional<z.ZodNever>;
2679
+ query: z.ZodOptional<z.ZodNever>;
2680
+ }, "strip", z.ZodTypeAny, {
2681
+ body: {
2682
+ name: string;
2683
+ version_channel: string;
2684
+ tier: "basic" | "pro";
2685
+ region?: "staging" | "northamerica-central-1" | "europe-central-1a" | undefined;
2686
+ };
2687
+ path?: undefined;
2688
+ query?: undefined;
2689
+ }, {
2690
+ body: {
2691
+ name: string;
2692
+ tier: "basic" | "pro";
2693
+ region?: "staging" | "northamerica-central-1" | "europe-central-1a" | undefined;
2694
+ version_channel?: string | undefined;
2695
+ };
2696
+ path?: undefined;
2697
+ query?: undefined;
2192
2698
  }>;
2193
2699
  /**
2194
2700
  * Successfully created. Returns created Cluster ID.
2195
2701
  */
2196
2702
  export declare const zCreateClusterResponse: z.ZodString;
2197
- /**
2198
- * Unique identifier of the cluster. UUID v4 string in canonical form
2199
- */
2200
- export declare const zDeleteClusterParameterClusterId: z.ZodString;
2703
+ export declare const zDeleteClusterData: z.ZodObject<{
2704
+ body: z.ZodOptional<z.ZodNever>;
2705
+ path: z.ZodObject<{
2706
+ cluster_id: z.ZodString;
2707
+ }, "strip", z.ZodTypeAny, {
2708
+ cluster_id: string;
2709
+ }, {
2710
+ cluster_id: string;
2711
+ }>;
2712
+ query: z.ZodOptional<z.ZodNever>;
2713
+ }, "strip", z.ZodTypeAny, {
2714
+ path: {
2715
+ cluster_id: string;
2716
+ };
2717
+ body?: undefined;
2718
+ query?: undefined;
2719
+ }, {
2720
+ path: {
2721
+ cluster_id: string;
2722
+ };
2723
+ body?: undefined;
2724
+ query?: undefined;
2725
+ }>;
2201
2726
  /**
2202
2727
  * Successfully deleted.
2203
2728
  */
2204
2729
  export declare const zDeleteClusterResponse: z.ZodString;
2205
- /**
2206
- * Unique identifier of the cluster. UUID v4 string in canonical form
2207
- */
2208
- export declare const zGetClusterParameterClusterId: z.ZodString;
2730
+ export declare const zGetClusterData: z.ZodObject<{
2731
+ body: z.ZodOptional<z.ZodNever>;
2732
+ path: z.ZodObject<{
2733
+ cluster_id: z.ZodString;
2734
+ }, "strip", z.ZodTypeAny, {
2735
+ cluster_id: string;
2736
+ }, {
2737
+ cluster_id: string;
2738
+ }>;
2739
+ query: z.ZodOptional<z.ZodNever>;
2740
+ }, "strip", z.ZodTypeAny, {
2741
+ path: {
2742
+ cluster_id: string;
2743
+ };
2744
+ body?: undefined;
2745
+ query?: undefined;
2746
+ }, {
2747
+ path: {
2748
+ cluster_id: string;
2749
+ };
2750
+ body?: undefined;
2751
+ query?: undefined;
2752
+ }>;
2209
2753
  /**
2210
2754
  * Returns a single object containing cluster details.
2211
2755
  */
2212
2756
  export declare const zGetClusterResponse: z.ZodObject<{
2213
2757
  name: z.ZodString;
2214
- region: z.ZodOptional<z.ZodEnum<["staging", "northamerica-central-1"]>>;
2215
2758
  tier: z.ZodEnum<["basic", "pro"]>;
2759
+ region: z.ZodOptional<z.ZodEnum<["staging", "northamerica-central-1", "europe-central-1a"]>>;
2216
2760
  version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
2217
2761
  id: z.ZodString;
2218
2762
  status: z.ZodEnum<["active", "deleted", "creating", "deployed", "failed", "updating"]>;
@@ -2229,7 +2773,7 @@ export declare const zGetClusterResponse: z.ZodObject<{
2229
2773
  version_channel: string;
2230
2774
  tier: "basic" | "pro";
2231
2775
  ready?: boolean | undefined;
2232
- region?: "staging" | "northamerica-central-1" | undefined;
2776
+ region?: "staging" | "northamerica-central-1" | "europe-central-1a" | undefined;
2233
2777
  version_current?: string | undefined;
2234
2778
  created_at?: string | undefined;
2235
2779
  updated_at?: string | undefined;
@@ -2241,7 +2785,7 @@ export declare const zGetClusterResponse: z.ZodObject<{
2241
2785
  status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
2242
2786
  tier: "basic" | "pro";
2243
2787
  ready?: boolean | undefined;
2244
- region?: "staging" | "northamerica-central-1" | undefined;
2788
+ region?: "staging" | "northamerica-central-1" | "europe-central-1a" | undefined;
2245
2789
  version_channel?: string | undefined;
2246
2790
  version_current?: string | undefined;
2247
2791
  created_at?: string | undefined;
@@ -2250,26 +2794,55 @@ export declare const zGetClusterResponse: z.ZodObject<{
2250
2794
  certificate_ca?: string | undefined;
2251
2795
  }>;
2252
2796
  export declare const zUpdateClusterData: z.ZodObject<{
2253
- name: z.ZodOptional<z.ZodString>;
2254
- version_channel: z.ZodOptional<z.ZodString>;
2797
+ body: z.ZodObject<{
2798
+ name: z.ZodOptional<z.ZodString>;
2799
+ tier: z.ZodEnum<["basic", "pro"]>;
2800
+ version_channel: z.ZodOptional<z.ZodString>;
2801
+ }, "strip", z.ZodTypeAny, {
2802
+ tier: "basic" | "pro";
2803
+ name?: string | undefined;
2804
+ version_channel?: string | undefined;
2805
+ }, {
2806
+ tier: "basic" | "pro";
2807
+ name?: string | undefined;
2808
+ version_channel?: string | undefined;
2809
+ }>;
2810
+ path: z.ZodObject<{
2811
+ cluster_id: z.ZodString;
2812
+ }, "strip", z.ZodTypeAny, {
2813
+ cluster_id: string;
2814
+ }, {
2815
+ cluster_id: string;
2816
+ }>;
2817
+ query: z.ZodOptional<z.ZodNever>;
2255
2818
  }, "strip", z.ZodTypeAny, {
2256
- name?: string | undefined;
2257
- version_channel?: string | undefined;
2819
+ body: {
2820
+ tier: "basic" | "pro";
2821
+ name?: string | undefined;
2822
+ version_channel?: string | undefined;
2823
+ };
2824
+ path: {
2825
+ cluster_id: string;
2826
+ };
2827
+ query?: undefined;
2258
2828
  }, {
2259
- name?: string | undefined;
2260
- version_channel?: string | undefined;
2829
+ body: {
2830
+ tier: "basic" | "pro";
2831
+ name?: string | undefined;
2832
+ version_channel?: string | undefined;
2833
+ };
2834
+ path: {
2835
+ cluster_id: string;
2836
+ };
2837
+ query?: undefined;
2261
2838
  }>;
2262
- /**
2263
- * Unique identifier of the cluster. UUID v4 string in canonical form
2264
- */
2265
- export declare const zUpdateClusterParameterClusterId: z.ZodString;
2266
2839
  /**
2267
2840
  * Successfully updated. Returns updated cluster details.
2268
2841
  */
2269
2842
  export declare const zUpdateClusterResponse: z.ZodObject<{
2270
2843
  name: z.ZodString;
2271
- region: z.ZodOptional<z.ZodEnum<["staging", "northamerica-central-1"]>>;
2272
2844
  tier: z.ZodEnum<["basic", "pro"]>;
2845
+ region: z.ZodOptional<z.ZodEnum<["staging", "northamerica-central-1", "europe-central-1a"]>>;
2273
2846
  version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
2274
2847
  id: z.ZodString;
2275
2848
  status: z.ZodEnum<["active", "deleted", "creating", "deployed", "failed", "updating"]>;
@@ -2286,7 +2859,7 @@ export declare const zUpdateClusterResponse: z.ZodObject<{
2286
2859
  version_channel: string;
2287
2860
  tier: "basic" | "pro";
2288
2861
  ready?: boolean | undefined;
2289
- region?: "staging" | "northamerica-central-1" | undefined;
2862
+ region?: "staging" | "northamerica-central-1" | "europe-central-1a" | undefined;
2290
2863
  version_current?: string | undefined;
2291
2864
  created_at?: string | undefined;
2292
2865
  updated_at?: string | undefined;
@@ -2298,7 +2871,7 @@ export declare const zUpdateClusterResponse: z.ZodObject<{
2298
2871
  status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
2299
2872
  tier: "basic" | "pro";
2300
2873
  ready?: boolean | undefined;
2301
- region?: "staging" | "northamerica-central-1" | undefined;
2874
+ region?: "staging" | "northamerica-central-1" | "europe-central-1a" | undefined;
2302
2875
  version_channel?: string | undefined;
2303
2876
  version_current?: string | undefined;
2304
2877
  created_at?: string | undefined;
@@ -2306,17 +2879,36 @@ export declare const zUpdateClusterResponse: z.ZodObject<{
2306
2879
  endpoint?: string | undefined;
2307
2880
  certificate_ca?: string | undefined;
2308
2881
  }>;
2309
- /**
2310
- * Unique identifier of the cluster. UUID v4 string in canonical form
2311
- */
2312
- export declare const zGetJoinInformationParameterClusterId: z.ZodString;
2882
+ export declare const zGetJoinInformationData: z.ZodObject<{
2883
+ body: z.ZodOptional<z.ZodNever>;
2884
+ path: z.ZodObject<{
2885
+ cluster_id: z.ZodString;
2886
+ }, "strip", z.ZodTypeAny, {
2887
+ cluster_id: string;
2888
+ }, {
2889
+ cluster_id: string;
2890
+ }>;
2891
+ query: z.ZodOptional<z.ZodNever>;
2892
+ }, "strip", z.ZodTypeAny, {
2893
+ path: {
2894
+ cluster_id: string;
2895
+ };
2896
+ body?: undefined;
2897
+ query?: undefined;
2898
+ }, {
2899
+ path: {
2900
+ cluster_id: string;
2901
+ };
2902
+ body?: undefined;
2903
+ query?: undefined;
2904
+ }>;
2313
2905
  /**
2314
2906
  * An object of cluster join information
2315
2907
  */
2316
2908
  export declare const zGetJoinInformationResponse: z.ZodObject<{
2317
2909
  name: z.ZodString;
2318
- region: z.ZodOptional<z.ZodEnum<["staging", "northamerica-central-1"]>>;
2319
2910
  tier: z.ZodEnum<["basic", "pro"]>;
2911
+ region: z.ZodOptional<z.ZodEnum<["staging", "northamerica-central-1", "europe-central-1a"]>>;
2320
2912
  version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
2321
2913
  id: z.ZodString;
2322
2914
  status: z.ZodEnum<["active", "deleted", "creating", "deployed", "failed", "updating"]>;
@@ -2333,7 +2925,7 @@ export declare const zGetJoinInformationResponse: z.ZodObject<{
2333
2925
  version_channel: string;
2334
2926
  tier: "basic" | "pro";
2335
2927
  ready?: boolean | undefined;
2336
- region?: "staging" | "northamerica-central-1" | undefined;
2928
+ region?: "staging" | "northamerica-central-1" | "europe-central-1a" | undefined;
2337
2929
  version_current?: string | undefined;
2338
2930
  created_at?: string | undefined;
2339
2931
  updated_at?: string | undefined;
@@ -2345,7 +2937,7 @@ export declare const zGetJoinInformationResponse: z.ZodObject<{
2345
2937
  status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
2346
2938
  tier: "basic" | "pro";
2347
2939
  ready?: boolean | undefined;
2348
- region?: "staging" | "northamerica-central-1" | undefined;
2940
+ region?: "staging" | "northamerica-central-1" | "europe-central-1a" | undefined;
2349
2941
  version_channel?: string | undefined;
2350
2942
  version_current?: string | undefined;
2351
2943
  created_at?: string | undefined;
@@ -2353,6 +2945,19 @@ export declare const zGetJoinInformationResponse: z.ZodObject<{
2353
2945
  endpoint?: string | undefined;
2354
2946
  certificate_ca?: string | undefined;
2355
2947
  }>;
2948
+ export declare const zListInvitesData: z.ZodObject<{
2949
+ body: z.ZodOptional<z.ZodNever>;
2950
+ path: z.ZodOptional<z.ZodNever>;
2951
+ query: z.ZodOptional<z.ZodNever>;
2952
+ }, "strip", z.ZodTypeAny, {
2953
+ body?: undefined;
2954
+ path?: undefined;
2955
+ query?: undefined;
2956
+ }, {
2957
+ body?: undefined;
2958
+ path?: undefined;
2959
+ query?: undefined;
2960
+ }>;
2356
2961
  /**
2357
2962
  * An array of invites
2358
2963
  */
@@ -2376,11 +2981,27 @@ export declare const zListInvitesResponse: z.ZodArray<z.ZodObject<{
2376
2981
  organization_id?: string | undefined;
2377
2982
  }>, "many">;
2378
2983
  export declare const zCreateInviteData: z.ZodObject<{
2379
- email: z.ZodOptional<z.ZodString>;
2984
+ body: z.ZodObject<{
2985
+ email: z.ZodOptional<z.ZodString>;
2986
+ }, "strip", z.ZodTypeAny, {
2987
+ email?: string | undefined;
2988
+ }, {
2989
+ email?: string | undefined;
2990
+ }>;
2991
+ path: z.ZodOptional<z.ZodNever>;
2992
+ query: z.ZodOptional<z.ZodNever>;
2380
2993
  }, "strip", z.ZodTypeAny, {
2381
- email?: string | undefined;
2994
+ body: {
2995
+ email?: string | undefined;
2996
+ };
2997
+ path?: undefined;
2998
+ query?: undefined;
2382
2999
  }, {
2383
- email?: string | undefined;
3000
+ body: {
3001
+ email?: string | undefined;
3002
+ };
3003
+ path?: undefined;
3004
+ query?: undefined;
2384
3005
  }>;
2385
3006
  /**
2386
3007
  * Successfully created. Returns created invite details.
@@ -2404,10 +3025,29 @@ export declare const zCreateInviteResponse: z.ZodObject<{
2404
3025
  email?: string | undefined;
2405
3026
  organization_id?: string | undefined;
2406
3027
  }>;
2407
- /**
2408
- * Invitation code
2409
- */
2410
- export declare const zGetInviteParameterCode: z.ZodString;
3028
+ export declare const zGetInviteData: z.ZodObject<{
3029
+ body: z.ZodOptional<z.ZodNever>;
3030
+ path: z.ZodObject<{
3031
+ code: z.ZodString;
3032
+ }, "strip", z.ZodTypeAny, {
3033
+ code: string;
3034
+ }, {
3035
+ code: string;
3036
+ }>;
3037
+ query: z.ZodOptional<z.ZodNever>;
3038
+ }, "strip", z.ZodTypeAny, {
3039
+ path: {
3040
+ code: string;
3041
+ };
3042
+ body?: undefined;
3043
+ query?: undefined;
3044
+ }, {
3045
+ path: {
3046
+ code: string;
3047
+ };
3048
+ body?: undefined;
3049
+ query?: undefined;
3050
+ }>;
2411
3051
  /**
2412
3052
  * Returns a single object containing invite details.
2413
3053
  */
@@ -2430,10 +3070,42 @@ export declare const zGetInviteResponse: z.ZodObject<{
2430
3070
  email?: string | undefined;
2431
3071
  organization_id?: string | undefined;
2432
3072
  }>;
2433
- /**
2434
- * User email address
2435
- */
2436
- export declare const zDeleteInviteParameterEmail: z.ZodString;
3073
+ export declare const zDeleteInviteData: z.ZodObject<{
3074
+ body: z.ZodOptional<z.ZodNever>;
3075
+ path: z.ZodObject<{
3076
+ email: z.ZodString;
3077
+ }, "strip", z.ZodTypeAny, {
3078
+ email: string;
3079
+ }, {
3080
+ email: string;
3081
+ }>;
3082
+ query: z.ZodOptional<z.ZodNever>;
3083
+ }, "strip", z.ZodTypeAny, {
3084
+ path: {
3085
+ email: string;
3086
+ };
3087
+ body?: undefined;
3088
+ query?: undefined;
3089
+ }, {
3090
+ path: {
3091
+ email: string;
3092
+ };
3093
+ body?: undefined;
3094
+ query?: undefined;
3095
+ }>;
3096
+ export declare const zListMarketplaceChartsData: z.ZodObject<{
3097
+ body: z.ZodOptional<z.ZodNever>;
3098
+ path: z.ZodOptional<z.ZodNever>;
3099
+ query: z.ZodOptional<z.ZodNever>;
3100
+ }, "strip", z.ZodTypeAny, {
3101
+ body?: undefined;
3102
+ path?: undefined;
3103
+ query?: undefined;
3104
+ }, {
3105
+ body?: undefined;
3106
+ path?: undefined;
3107
+ query?: undefined;
3108
+ }>;
2437
3109
  /**
2438
3110
  * An array of chart listings in the marketplace.
2439
3111
  */
@@ -2488,10 +3160,29 @@ export declare const zListMarketplaceChartsResponse: z.ZodArray<z.ZodObject<{
2488
3160
  placeholder: string;
2489
3161
  }[];
2490
3162
  }>, "many">;
2491
- /**
2492
- * Unique identifier of the chart listing in the marketplace.
2493
- */
2494
- export declare const zGetMarketplaceChartParameterListingId: z.ZodString;
3163
+ export declare const zGetMarketplaceChartData: z.ZodObject<{
3164
+ body: z.ZodOptional<z.ZodNever>;
3165
+ path: z.ZodObject<{
3166
+ listing_id: z.ZodString;
3167
+ }, "strip", z.ZodTypeAny, {
3168
+ listing_id: string;
3169
+ }, {
3170
+ listing_id: string;
3171
+ }>;
3172
+ query: z.ZodOptional<z.ZodNever>;
3173
+ }, "strip", z.ZodTypeAny, {
3174
+ path: {
3175
+ listing_id: string;
3176
+ };
3177
+ body?: undefined;
3178
+ query?: undefined;
3179
+ }, {
3180
+ path: {
3181
+ listing_id: string;
3182
+ };
3183
+ body?: undefined;
3184
+ query?: undefined;
3185
+ }>;
2495
3186
  /**
2496
3187
  * Returns an object containing the chart listing details.
2497
3188
  */
@@ -2546,6 +3237,19 @@ export declare const zGetMarketplaceChartResponse: z.ZodObject<{
2546
3237
  placeholder: string;
2547
3238
  }[];
2548
3239
  }>;
3240
+ export declare const zGetOrganizationData: z.ZodObject<{
3241
+ body: z.ZodOptional<z.ZodNever>;
3242
+ path: z.ZodOptional<z.ZodNever>;
3243
+ query: z.ZodOptional<z.ZodNever>;
3244
+ }, "strip", z.ZodTypeAny, {
3245
+ body?: undefined;
3246
+ path?: undefined;
3247
+ query?: undefined;
3248
+ }, {
3249
+ body?: undefined;
3250
+ path?: undefined;
3251
+ query?: undefined;
3252
+ }>;
2549
3253
  /**
2550
3254
  * Returns a single object containing organization details.
2551
3255
  */
@@ -2635,23 +3339,60 @@ export declare const zGetOrganizationResponse: z.ZodObject<{
2635
3339
  name?: string | undefined;
2636
3340
  }>;
2637
3341
  export declare const zCreateOrganizationData: z.ZodObject<{
2638
- email: z.ZodString;
2639
- first_name: z.ZodString;
2640
- last_name: z.ZodString;
2641
- company_name: z.ZodString;
2642
- password: z.ZodString;
2643
- }, "strip", z.ZodTypeAny, {
2644
- email: string;
2645
- first_name: string;
2646
- last_name: string;
2647
- company_name: string;
2648
- password: string;
2649
- }, {
2650
- email: string;
2651
- first_name: string;
2652
- last_name: string;
2653
- company_name: string;
2654
- password: string;
3342
+ body: z.ZodObject<{
3343
+ email: z.ZodString;
3344
+ first_name: z.ZodString;
3345
+ last_name: z.ZodString;
3346
+ company_name: z.ZodString;
3347
+ password: z.ZodString;
3348
+ }, "strip", z.ZodTypeAny, {
3349
+ email: string;
3350
+ first_name: string;
3351
+ last_name: string;
3352
+ company_name: string;
3353
+ password: string;
3354
+ }, {
3355
+ email: string;
3356
+ first_name: string;
3357
+ last_name: string;
3358
+ company_name: string;
3359
+ password: string;
3360
+ }>;
3361
+ path: z.ZodOptional<z.ZodNever>;
3362
+ query: z.ZodOptional<z.ZodNever>;
3363
+ }, "strip", z.ZodTypeAny, {
3364
+ body: {
3365
+ email: string;
3366
+ first_name: string;
3367
+ last_name: string;
3368
+ company_name: string;
3369
+ password: string;
3370
+ };
3371
+ path?: undefined;
3372
+ query?: undefined;
3373
+ }, {
3374
+ body: {
3375
+ email: string;
3376
+ first_name: string;
3377
+ last_name: string;
3378
+ company_name: string;
3379
+ password: string;
3380
+ };
3381
+ path?: undefined;
3382
+ query?: undefined;
3383
+ }>;
3384
+ export declare const zListTokensData: z.ZodObject<{
3385
+ body: z.ZodOptional<z.ZodNever>;
3386
+ path: z.ZodOptional<z.ZodNever>;
3387
+ query: z.ZodOptional<z.ZodNever>;
3388
+ }, "strip", z.ZodTypeAny, {
3389
+ body?: undefined;
3390
+ path?: undefined;
3391
+ query?: undefined;
3392
+ }, {
3393
+ body?: undefined;
3394
+ path?: undefined;
3395
+ query?: undefined;
2655
3396
  }>;
2656
3397
  /**
2657
3398
  * Returns a list of access token details with masked secrets.
@@ -2676,14 +3417,32 @@ export declare const zListTokensResponse: z.ZodArray<z.ZodObject<{
2676
3417
  secret?: string | undefined;
2677
3418
  }>, "many">;
2678
3419
  export declare const zCreateTokenData: z.ZodObject<{
2679
- name: z.ZodString;
2680
- role: z.ZodEnum<["Administrator", "User"]>;
3420
+ body: z.ZodObject<{
3421
+ name: z.ZodString;
3422
+ role: z.ZodEnum<["Administrator", "User"]>;
3423
+ }, "strip", z.ZodTypeAny, {
3424
+ name: string;
3425
+ role: "Administrator" | "User";
3426
+ }, {
3427
+ name: string;
3428
+ role: "Administrator" | "User";
3429
+ }>;
3430
+ path: z.ZodOptional<z.ZodNever>;
3431
+ query: z.ZodOptional<z.ZodNever>;
2681
3432
  }, "strip", z.ZodTypeAny, {
2682
- name: string;
2683
- role: "Administrator" | "User";
3433
+ body: {
3434
+ name: string;
3435
+ role: "Administrator" | "User";
3436
+ };
3437
+ path?: undefined;
3438
+ query?: undefined;
2684
3439
  }, {
2685
- name: string;
2686
- role: "Administrator" | "User";
3440
+ body: {
3441
+ name: string;
3442
+ role: "Administrator" | "User";
3443
+ };
3444
+ path?: undefined;
3445
+ query?: undefined;
2687
3446
  }>;
2688
3447
  /**
2689
3448
  * Successfully created. Returns created token details with unmasked/raw secret.
@@ -2707,14 +3466,52 @@ export declare const zCreateTokenResponse: z.ZodObject<{
2707
3466
  id?: string | undefined;
2708
3467
  secret?: string | undefined;
2709
3468
  }>;
2710
- /**
2711
- * Generated unique identifier of the access token.
2712
- */
2713
- export declare const zDeleteTokenParameterTokenId: z.ZodString;
2714
- /**
2715
- * Generated unique identifier of the access token.
2716
- */
2717
- export declare const zGetTokenParameterTokenId: z.ZodString;
3469
+ export declare const zDeleteTokenData: z.ZodObject<{
3470
+ body: z.ZodOptional<z.ZodNever>;
3471
+ path: z.ZodObject<{
3472
+ token_id: z.ZodString;
3473
+ }, "strip", z.ZodTypeAny, {
3474
+ token_id: string;
3475
+ }, {
3476
+ token_id: string;
3477
+ }>;
3478
+ query: z.ZodOptional<z.ZodNever>;
3479
+ }, "strip", z.ZodTypeAny, {
3480
+ path: {
3481
+ token_id: string;
3482
+ };
3483
+ body?: undefined;
3484
+ query?: undefined;
3485
+ }, {
3486
+ path: {
3487
+ token_id: string;
3488
+ };
3489
+ body?: undefined;
3490
+ query?: undefined;
3491
+ }>;
3492
+ export declare const zGetTokenData: z.ZodObject<{
3493
+ body: z.ZodOptional<z.ZodNever>;
3494
+ path: z.ZodObject<{
3495
+ token_id: z.ZodString;
3496
+ }, "strip", z.ZodTypeAny, {
3497
+ token_id: string;
3498
+ }, {
3499
+ token_id: string;
3500
+ }>;
3501
+ query: z.ZodOptional<z.ZodNever>;
3502
+ }, "strip", z.ZodTypeAny, {
3503
+ path: {
3504
+ token_id: string;
3505
+ };
3506
+ body?: undefined;
3507
+ query?: undefined;
3508
+ }, {
3509
+ path: {
3510
+ token_id: string;
3511
+ };
3512
+ body?: undefined;
3513
+ query?: undefined;
3514
+ }>;
2718
3515
  /**
2719
3516
  * Returns access token details with masked secret.
2720
3517
  */
@@ -2738,19 +3535,43 @@ export declare const zGetTokenResponse: z.ZodObject<{
2738
3535
  secret?: string | undefined;
2739
3536
  }>;
2740
3537
  export declare const zUpdateTokenData: z.ZodObject<{
2741
- name: z.ZodOptional<z.ZodString>;
2742
- role: z.ZodOptional<z.ZodEnum<["Administrator", "User"]>>;
3538
+ body: z.ZodObject<{
3539
+ name: z.ZodOptional<z.ZodString>;
3540
+ role: z.ZodOptional<z.ZodEnum<["Administrator", "User"]>>;
3541
+ }, "strip", z.ZodTypeAny, {
3542
+ name?: string | undefined;
3543
+ role?: "Administrator" | "User" | undefined;
3544
+ }, {
3545
+ name?: string | undefined;
3546
+ role?: "Administrator" | "User" | undefined;
3547
+ }>;
3548
+ path: z.ZodObject<{
3549
+ token_id: z.ZodString;
3550
+ }, "strip", z.ZodTypeAny, {
3551
+ token_id: string;
3552
+ }, {
3553
+ token_id: string;
3554
+ }>;
3555
+ query: z.ZodOptional<z.ZodNever>;
2743
3556
  }, "strip", z.ZodTypeAny, {
2744
- name?: string | undefined;
2745
- role?: "Administrator" | "User" | undefined;
3557
+ body: {
3558
+ name?: string | undefined;
3559
+ role?: "Administrator" | "User" | undefined;
3560
+ };
3561
+ path: {
3562
+ token_id: string;
3563
+ };
3564
+ query?: undefined;
2746
3565
  }, {
2747
- name?: string | undefined;
2748
- role?: "Administrator" | "User" | undefined;
3566
+ body: {
3567
+ name?: string | undefined;
3568
+ role?: "Administrator" | "User" | undefined;
3569
+ };
3570
+ path: {
3571
+ token_id: string;
3572
+ };
3573
+ query?: undefined;
2749
3574
  }>;
2750
- /**
2751
- * Generated unique identifier of the access token.
2752
- */
2753
- export declare const zUpdateTokenParameterTokenId: z.ZodString;
2754
3575
  /**
2755
3576
  * Successfully updated. Returns updated token details with masked secret.
2756
3577
  */
@@ -2773,10 +3594,29 @@ export declare const zUpdateTokenResponse: z.ZodObject<{
2773
3594
  id?: string | undefined;
2774
3595
  secret?: string | undefined;
2775
3596
  }>;
2776
- /**
2777
- * Generated unique identifier of the access token.
2778
- */
2779
- export declare const zRegenerateTokenParameterTokenId: z.ZodString;
3597
+ export declare const zRegenerateTokenData: z.ZodObject<{
3598
+ body: z.ZodOptional<z.ZodNever>;
3599
+ path: z.ZodObject<{
3600
+ token_id: z.ZodString;
3601
+ }, "strip", z.ZodTypeAny, {
3602
+ token_id: string;
3603
+ }, {
3604
+ token_id: string;
3605
+ }>;
3606
+ query: z.ZodOptional<z.ZodNever>;
3607
+ }, "strip", z.ZodTypeAny, {
3608
+ path: {
3609
+ token_id: string;
3610
+ };
3611
+ body?: undefined;
3612
+ query?: undefined;
3613
+ }, {
3614
+ path: {
3615
+ token_id: string;
3616
+ };
3617
+ body?: undefined;
3618
+ query?: undefined;
3619
+ }>;
2780
3620
  /**
2781
3621
  * Successfully updated. Returns updated token details with unmasked / raw secret.
2782
3622
  */
@@ -2799,10 +3639,29 @@ export declare const zRegenerateTokenResponse: z.ZodObject<{
2799
3639
  id?: string | undefined;
2800
3640
  secret?: string | undefined;
2801
3641
  }>;
2802
- /**
2803
- * User email address.
2804
- */
2805
- export declare const zListUserOrganizationsParameterEmail: z.ZodString;
3642
+ export declare const zListUserOrganizationsData: z.ZodObject<{
3643
+ body: z.ZodOptional<z.ZodNever>;
3644
+ path: z.ZodObject<{
3645
+ email: z.ZodString;
3646
+ }, "strip", z.ZodTypeAny, {
3647
+ email: string;
3648
+ }, {
3649
+ email: string;
3650
+ }>;
3651
+ query: z.ZodOptional<z.ZodNever>;
3652
+ }, "strip", z.ZodTypeAny, {
3653
+ path: {
3654
+ email: string;
3655
+ };
3656
+ body?: undefined;
3657
+ query?: undefined;
3658
+ }, {
3659
+ path: {
3660
+ email: string;
3661
+ };
3662
+ body?: undefined;
3663
+ query?: undefined;
3664
+ }>;
2806
3665
  /**
2807
3666
  * An array of organizations the user belongs to.
2808
3667
  */
@@ -2816,6 +3675,19 @@ export declare const zListUserOrganizationsResponse: z.ZodArray<z.ZodObject<{
2816
3675
  realm?: string | undefined;
2817
3676
  displayName?: string | undefined;
2818
3677
  }>, "many">;
3678
+ export declare const zListUsersData: z.ZodObject<{
3679
+ body: z.ZodOptional<z.ZodNever>;
3680
+ path: z.ZodOptional<z.ZodNever>;
3681
+ query: z.ZodOptional<z.ZodNever>;
3682
+ }, "strip", z.ZodTypeAny, {
3683
+ body?: undefined;
3684
+ path?: undefined;
3685
+ query?: undefined;
3686
+ }, {
3687
+ body?: undefined;
3688
+ path?: undefined;
3689
+ query?: undefined;
3690
+ }>;
2819
3691
  /**
2820
3692
  * An array of users
2821
3693
  */
@@ -2845,29 +3717,57 @@ export declare const zListUsersResponse: z.ZodArray<z.ZodObject<{
2845
3717
  date_created: string;
2846
3718
  }>, "many">;
2847
3719
  export declare const zCreateUserData: z.ZodObject<{
2848
- email: z.ZodString;
2849
- first_name: z.ZodString;
2850
- last_name: z.ZodString;
2851
- code: z.ZodString;
2852
- password: z.ZodString;
2853
- status: z.ZodOptional<z.ZodEnum<["active", "inactive"]>>;
2854
- role: z.ZodOptional<z.ZodEnum<["Administrator", "User"]>>;
2855
- }, "strip", z.ZodTypeAny, {
2856
- code: string;
2857
- email: string;
2858
- first_name: string;
2859
- last_name: string;
2860
- password: string;
2861
- role?: "Administrator" | "User" | undefined;
2862
- status?: "active" | "inactive" | undefined;
2863
- }, {
2864
- code: string;
2865
- email: string;
2866
- first_name: string;
2867
- last_name: string;
2868
- password: string;
2869
- role?: "Administrator" | "User" | undefined;
2870
- status?: "active" | "inactive" | undefined;
3720
+ body: z.ZodObject<{
3721
+ email: z.ZodString;
3722
+ first_name: z.ZodString;
3723
+ last_name: z.ZodString;
3724
+ code: z.ZodString;
3725
+ password: z.ZodString;
3726
+ status: z.ZodOptional<z.ZodEnum<["active", "inactive"]>>;
3727
+ role: z.ZodOptional<z.ZodEnum<["Administrator", "User"]>>;
3728
+ }, "strip", z.ZodTypeAny, {
3729
+ code: string;
3730
+ email: string;
3731
+ first_name: string;
3732
+ last_name: string;
3733
+ password: string;
3734
+ role?: "Administrator" | "User" | undefined;
3735
+ status?: "active" | "inactive" | undefined;
3736
+ }, {
3737
+ code: string;
3738
+ email: string;
3739
+ first_name: string;
3740
+ last_name: string;
3741
+ password: string;
3742
+ role?: "Administrator" | "User" | undefined;
3743
+ status?: "active" | "inactive" | undefined;
3744
+ }>;
3745
+ path: z.ZodOptional<z.ZodNever>;
3746
+ query: z.ZodOptional<z.ZodNever>;
3747
+ }, "strip", z.ZodTypeAny, {
3748
+ body: {
3749
+ code: string;
3750
+ email: string;
3751
+ first_name: string;
3752
+ last_name: string;
3753
+ password: string;
3754
+ role?: "Administrator" | "User" | undefined;
3755
+ status?: "active" | "inactive" | undefined;
3756
+ };
3757
+ path?: undefined;
3758
+ query?: undefined;
3759
+ }, {
3760
+ body: {
3761
+ code: string;
3762
+ email: string;
3763
+ first_name: string;
3764
+ last_name: string;
3765
+ password: string;
3766
+ role?: "Administrator" | "User" | undefined;
3767
+ status?: "active" | "inactive" | undefined;
3768
+ };
3769
+ path?: undefined;
3770
+ query?: undefined;
2871
3771
  }>;
2872
3772
  /**
2873
3773
  * Successfully created. Returns created user details.
@@ -2897,10 +3797,29 @@ export declare const zCreateUserResponse: z.ZodObject<{
2897
3797
  last_name: string;
2898
3798
  date_created: string;
2899
3799
  }>;
2900
- /**
2901
- * Unique user identifier. UUID v4 string in canonical form
2902
- */
2903
- export declare const zDeleteUserParameterUserId: z.ZodString;
3800
+ export declare const zDeleteUserData: z.ZodObject<{
3801
+ body: z.ZodOptional<z.ZodNever>;
3802
+ path: z.ZodObject<{
3803
+ user_id: z.ZodString;
3804
+ }, "strip", z.ZodTypeAny, {
3805
+ user_id: string;
3806
+ }, {
3807
+ user_id: string;
3808
+ }>;
3809
+ query: z.ZodOptional<z.ZodNever>;
3810
+ }, "strip", z.ZodTypeAny, {
3811
+ path: {
3812
+ user_id: string;
3813
+ };
3814
+ body?: undefined;
3815
+ query?: undefined;
3816
+ }, {
3817
+ path: {
3818
+ user_id: string;
3819
+ };
3820
+ body?: undefined;
3821
+ query?: undefined;
3822
+ }>;
2904
3823
  /**
2905
3824
  * User profile information
2906
3825
  */
@@ -2929,10 +3848,29 @@ export declare const zDeleteUserResponse: z.ZodObject<{
2929
3848
  last_name: string;
2930
3849
  date_created: string;
2931
3850
  }>;
2932
- /**
2933
- * Unique user identifier. UUID v4 string in canonical form
2934
- */
2935
- export declare const zGetUserParameterUserId: z.ZodString;
3851
+ export declare const zGetUserData: z.ZodObject<{
3852
+ body: z.ZodOptional<z.ZodNever>;
3853
+ path: z.ZodObject<{
3854
+ user_id: z.ZodString;
3855
+ }, "strip", z.ZodTypeAny, {
3856
+ user_id: string;
3857
+ }, {
3858
+ user_id: string;
3859
+ }>;
3860
+ query: z.ZodOptional<z.ZodNever>;
3861
+ }, "strip", z.ZodTypeAny, {
3862
+ path: {
3863
+ user_id: string;
3864
+ };
3865
+ body?: undefined;
3866
+ query?: undefined;
3867
+ }, {
3868
+ path: {
3869
+ user_id: string;
3870
+ };
3871
+ body?: undefined;
3872
+ query?: undefined;
3873
+ }>;
2936
3874
  /**
2937
3875
  * User profile information
2938
3876
  */
@@ -2962,28 +3900,58 @@ export declare const zGetUserResponse: z.ZodObject<{
2962
3900
  date_created: string;
2963
3901
  }>;
2964
3902
  export declare const zUpdateUserData: z.ZodObject<{
2965
- email: z.ZodOptional<z.ZodString>;
2966
- first_name: z.ZodOptional<z.ZodString>;
2967
- last_name: z.ZodOptional<z.ZodString>;
2968
- role: z.ZodOptional<z.ZodEnum<["Administrator", "User"]>>;
2969
- status: z.ZodOptional<z.ZodEnum<["active", "inactive"]>>;
2970
- }, "strip", z.ZodTypeAny, {
2971
- role?: "Administrator" | "User" | undefined;
2972
- email?: string | undefined;
2973
- status?: "active" | "inactive" | undefined;
2974
- first_name?: string | undefined;
2975
- last_name?: string | undefined;
2976
- }, {
2977
- role?: "Administrator" | "User" | undefined;
2978
- email?: string | undefined;
2979
- status?: "active" | "inactive" | undefined;
2980
- first_name?: string | undefined;
2981
- last_name?: string | undefined;
3903
+ body: z.ZodObject<{
3904
+ email: z.ZodOptional<z.ZodString>;
3905
+ first_name: z.ZodOptional<z.ZodString>;
3906
+ last_name: z.ZodOptional<z.ZodString>;
3907
+ role: z.ZodOptional<z.ZodEnum<["Administrator", "User"]>>;
3908
+ status: z.ZodOptional<z.ZodEnum<["active", "inactive"]>>;
3909
+ }, "strip", z.ZodTypeAny, {
3910
+ role?: "Administrator" | "User" | undefined;
3911
+ email?: string | undefined;
3912
+ status?: "active" | "inactive" | undefined;
3913
+ first_name?: string | undefined;
3914
+ last_name?: string | undefined;
3915
+ }, {
3916
+ role?: "Administrator" | "User" | undefined;
3917
+ email?: string | undefined;
3918
+ status?: "active" | "inactive" | undefined;
3919
+ first_name?: string | undefined;
3920
+ last_name?: string | undefined;
3921
+ }>;
3922
+ path: z.ZodObject<{
3923
+ user_id: z.ZodString;
3924
+ }, "strip", z.ZodTypeAny, {
3925
+ user_id: string;
3926
+ }, {
3927
+ user_id: string;
3928
+ }>;
3929
+ query: z.ZodOptional<z.ZodNever>;
3930
+ }, "strip", z.ZodTypeAny, {
3931
+ body: {
3932
+ role?: "Administrator" | "User" | undefined;
3933
+ email?: string | undefined;
3934
+ status?: "active" | "inactive" | undefined;
3935
+ first_name?: string | undefined;
3936
+ last_name?: string | undefined;
3937
+ };
3938
+ path: {
3939
+ user_id: string;
3940
+ };
3941
+ query?: undefined;
3942
+ }, {
3943
+ body: {
3944
+ role?: "Administrator" | "User" | undefined;
3945
+ email?: string | undefined;
3946
+ status?: "active" | "inactive" | undefined;
3947
+ first_name?: string | undefined;
3948
+ last_name?: string | undefined;
3949
+ };
3950
+ path: {
3951
+ user_id: string;
3952
+ };
3953
+ query?: undefined;
2982
3954
  }>;
2983
- /**
2984
- * Unique user identifier. UUID v4 string in canonical form
2985
- */
2986
- export declare const zUpdateUserParameterUserId: z.ZodString;
2987
3955
  /**
2988
3956
  * Successfully created. Returns created user details.
2989
3957
  */