@cloudfleet/sdk 0.0.1-869c561 → 0.0.1-8a43c91
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.
- package/dist/client/client.d.ts +3 -0
- package/dist/client/client.d.ts.map +1 -0
- package/dist/client/client.js +146 -0
- package/dist/client/client.js.map +1 -0
- package/dist/client/index.d.ts +8 -0
- package/dist/client/index.d.ts.map +1 -0
- package/dist/client/index.js +5 -0
- package/dist/client/index.js.map +1 -0
- package/dist/client/types.d.ts +120 -0
- package/dist/client/types.d.ts.map +1 -0
- package/dist/client/types.js +2 -0
- package/dist/client/types.js.map +1 -0
- package/dist/client/utils.d.ts +46 -0
- package/dist/client/utils.d.ts.map +1 -0
- package/dist/client/utils.js +285 -0
- package/dist/client/utils.js.map +1 -0
- package/dist/client.gen.d.ts +2 -2
- package/dist/client.gen.d.ts.map +1 -1
- package/dist/client.gen.js +1 -1
- package/dist/client.gen.js.map +1 -1
- package/dist/core/auth.d.ts +19 -0
- package/dist/core/auth.d.ts.map +1 -0
- package/dist/core/auth.js +14 -0
- package/dist/core/auth.js.map +1 -0
- package/dist/core/bodySerializer.d.ts +18 -0
- package/dist/core/bodySerializer.d.ts.map +1 -0
- package/dist/core/bodySerializer.js +54 -0
- package/dist/core/bodySerializer.js.map +1 -0
- package/dist/core/params.d.ts +34 -0
- package/dist/core/params.d.ts.map +1 -0
- package/dist/core/params.js +88 -0
- package/dist/core/params.js.map +1 -0
- package/dist/core/pathSerializer.d.ts +34 -0
- package/dist/core/pathSerializer.d.ts.map +1 -0
- package/dist/core/pathSerializer.js +114 -0
- package/dist/core/pathSerializer.js.map +1 -0
- package/dist/core/types.d.ts +79 -0
- package/dist/core/types.d.ts.map +1 -0
- package/dist/core/types.js +2 -0
- package/dist/core/types.js.map +1 -0
- package/dist/schemas.gen.d.ts +27 -15
- package/dist/schemas.gen.d.ts.map +1 -1
- package/dist/schemas.gen.js +27 -15
- package/dist/schemas.gen.js.map +1 -1
- package/dist/sdk.gen.d.ts +48 -48
- package/dist/sdk.gen.d.ts.map +1 -1
- package/dist/types.gen.d.ts +17 -9
- package/dist/types.gen.d.ts.map +1 -1
- package/dist/zod.gen.d.ts +1538 -538
- package/dist/zod.gen.d.ts.map +1 -1
- package/dist/zod.gen.js +330 -167
- package/dist/zod.gen.js.map +1 -1
- package/package.json +5 -6
package/dist/zod.gen.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { z } from 'zod';
|
|
1
|
+
import { z } from 'zod/v3';
|
|
2
2
|
export declare const zBillingContact: z.ZodObject<{
|
|
3
3
|
company: z.ZodOptional<z.ZodString>;
|
|
4
4
|
address1: z.ZodOptional<z.ZodString>;
|
|
@@ -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<{
|
|
@@ -161,14 +161,17 @@ export declare const zClusterJoinInformation: z.ZodObject<{
|
|
|
161
161
|
kubernetes: z.ZodString;
|
|
162
162
|
tailscale: z.ZodString;
|
|
163
163
|
containerd: z.ZodString;
|
|
164
|
+
nvidia_driver: z.ZodString;
|
|
164
165
|
}, "strip", z.ZodTypeAny, {
|
|
165
166
|
kubernetes: string;
|
|
166
167
|
tailscale: string;
|
|
167
168
|
containerd: string;
|
|
169
|
+
nvidia_driver: string;
|
|
168
170
|
}, {
|
|
169
171
|
kubernetes: string;
|
|
170
172
|
tailscale: string;
|
|
171
173
|
containerd: string;
|
|
174
|
+
nvidia_driver: string;
|
|
172
175
|
}>;
|
|
173
176
|
third_party_api_access_config: z.ZodObject<{
|
|
174
177
|
metadata_url: z.ZodString;
|
|
@@ -192,6 +195,7 @@ export declare const zClusterJoinInformation: z.ZodObject<{
|
|
|
192
195
|
kubernetes: string;
|
|
193
196
|
tailscale: string;
|
|
194
197
|
containerd: string;
|
|
198
|
+
nvidia_driver: string;
|
|
195
199
|
};
|
|
196
200
|
third_party_api_access_config: {
|
|
197
201
|
metadata_url: string;
|
|
@@ -207,6 +211,7 @@ export declare const zClusterJoinInformation: z.ZodObject<{
|
|
|
207
211
|
kubernetes: string;
|
|
208
212
|
tailscale: string;
|
|
209
213
|
containerd: string;
|
|
214
|
+
nvidia_driver: string;
|
|
210
215
|
};
|
|
211
216
|
third_party_api_access_config: {
|
|
212
217
|
metadata_url: string;
|
|
@@ -216,8 +221,8 @@ export declare const zClusterJoinInformation: z.ZodObject<{
|
|
|
216
221
|
}>;
|
|
217
222
|
export declare const zCluster: z.ZodObject<{
|
|
218
223
|
name: z.ZodString;
|
|
219
|
-
region: z.ZodOptional<z.ZodEnum<["staging", "northamerica-central-1"]>>;
|
|
220
224
|
tier: z.ZodEnum<["basic", "pro"]>;
|
|
225
|
+
region: z.ZodOptional<z.ZodEnum<["staging", "northamerica-central-1", "europe-central-1a"]>>;
|
|
221
226
|
version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
222
227
|
id: z.ZodString;
|
|
223
228
|
status: z.ZodEnum<["active", "deleted", "creating", "deployed", "failed", "updating"]>;
|
|
@@ -230,11 +235,11 @@ export declare const zCluster: z.ZodObject<{
|
|
|
230
235
|
}, "strip", z.ZodTypeAny, {
|
|
231
236
|
name: string;
|
|
232
237
|
id: string;
|
|
233
|
-
status: "
|
|
238
|
+
status: "deleted" | "failed" | "active" | "creating" | "deployed" | "updating";
|
|
234
239
|
version_channel: string;
|
|
235
240
|
tier: "basic" | "pro";
|
|
236
241
|
ready?: boolean | undefined;
|
|
237
|
-
region?: "staging" | "northamerica-central-1" | undefined;
|
|
242
|
+
region?: "staging" | "northamerica-central-1" | "europe-central-1a" | undefined;
|
|
238
243
|
version_current?: string | undefined;
|
|
239
244
|
created_at?: string | undefined;
|
|
240
245
|
updated_at?: string | undefined;
|
|
@@ -243,10 +248,10 @@ export declare const zCluster: z.ZodObject<{
|
|
|
243
248
|
}, {
|
|
244
249
|
name: string;
|
|
245
250
|
id: string;
|
|
246
|
-
status: "
|
|
251
|
+
status: "deleted" | "failed" | "active" | "creating" | "deployed" | "updating";
|
|
247
252
|
tier: "basic" | "pro";
|
|
248
253
|
ready?: boolean | undefined;
|
|
249
|
-
region?: "staging" | "northamerica-central-1" | undefined;
|
|
254
|
+
region?: "staging" | "northamerica-central-1" | "europe-central-1a" | undefined;
|
|
250
255
|
version_channel?: string | undefined;
|
|
251
256
|
version_current?: string | undefined;
|
|
252
257
|
created_at?: string | undefined;
|
|
@@ -256,11 +261,14 @@ export declare const zCluster: z.ZodObject<{
|
|
|
256
261
|
}>;
|
|
257
262
|
export declare const zClusterUpdateInput: z.ZodObject<{
|
|
258
263
|
name: z.ZodOptional<z.ZodString>;
|
|
264
|
+
tier: z.ZodEnum<["basic", "pro"]>;
|
|
259
265
|
version_channel: z.ZodOptional<z.ZodString>;
|
|
260
266
|
}, "strip", z.ZodTypeAny, {
|
|
267
|
+
tier: "basic" | "pro";
|
|
261
268
|
name?: string | undefined;
|
|
262
269
|
version_channel?: string | undefined;
|
|
263
270
|
}, {
|
|
271
|
+
tier: "basic" | "pro";
|
|
264
272
|
name?: string | undefined;
|
|
265
273
|
version_channel?: string | undefined;
|
|
266
274
|
}>;
|
|
@@ -536,7 +544,7 @@ export declare const zInvoice: z.ZodObject<{
|
|
|
536
544
|
quantity: z.ZodOptional<z.ZodNumber>;
|
|
537
545
|
itemDetails: z.ZodOptional<z.ZodString>;
|
|
538
546
|
catalogEffectiveDate: z.ZodOptional<z.ZodString>;
|
|
539
|
-
childItems: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
|
|
547
|
+
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
548
|
}, "strip", z.ZodTypeAny, {
|
|
541
549
|
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
550
|
id?: string | undefined;
|
|
@@ -558,7 +566,7 @@ export declare const zInvoice: z.ZodObject<{
|
|
|
558
566
|
quantity?: number | undefined;
|
|
559
567
|
itemDetails?: string | undefined;
|
|
560
568
|
catalogEffectiveDate?: string | undefined;
|
|
561
|
-
childItems?: unknown[] | undefined;
|
|
569
|
+
childItems?: (string | number | boolean | unknown[] | {})[] | undefined;
|
|
562
570
|
}, {
|
|
563
571
|
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
572
|
id?: string | undefined;
|
|
@@ -580,7 +588,7 @@ export declare const zInvoice: z.ZodObject<{
|
|
|
580
588
|
quantity?: number | undefined;
|
|
581
589
|
itemDetails?: string | undefined;
|
|
582
590
|
catalogEffectiveDate?: string | undefined;
|
|
583
|
-
childItems?: unknown[] | undefined;
|
|
591
|
+
childItems?: (string | number | boolean | unknown[] | {})[] | undefined;
|
|
584
592
|
}>, "many">>;
|
|
585
593
|
items: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
586
594
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -603,7 +611,7 @@ export declare const zInvoice: z.ZodObject<{
|
|
|
603
611
|
quantity: z.ZodOptional<z.ZodNumber>;
|
|
604
612
|
itemDetails: z.ZodOptional<z.ZodString>;
|
|
605
613
|
catalogEffectiveDate: z.ZodOptional<z.ZodString>;
|
|
606
|
-
childItems: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
|
|
614
|
+
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
615
|
}, "strip", z.ZodTypeAny, {
|
|
608
616
|
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
617
|
id?: string | undefined;
|
|
@@ -625,7 +633,7 @@ export declare const zInvoice: z.ZodObject<{
|
|
|
625
633
|
quantity?: number | undefined;
|
|
626
634
|
itemDetails?: string | undefined;
|
|
627
635
|
catalogEffectiveDate?: string | undefined;
|
|
628
|
-
childItems?: unknown[] | undefined;
|
|
636
|
+
childItems?: (string | number | boolean | unknown[] | {})[] | undefined;
|
|
629
637
|
}, {
|
|
630
638
|
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
639
|
id?: string | undefined;
|
|
@@ -647,7 +655,7 @@ export declare const zInvoice: z.ZodObject<{
|
|
|
647
655
|
quantity?: number | undefined;
|
|
648
656
|
itemDetails?: string | undefined;
|
|
649
657
|
catalogEffectiveDate?: string | undefined;
|
|
650
|
-
childItems?: unknown[] | undefined;
|
|
658
|
+
childItems?: (string | number | boolean | unknown[] | {})[] | undefined;
|
|
651
659
|
}>, "many">>;
|
|
652
660
|
}, "strip", z.ZodTypeAny, {
|
|
653
661
|
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 +682,7 @@ export declare const zInvoice: z.ZodObject<{
|
|
|
674
682
|
quantity?: number | undefined;
|
|
675
683
|
itemDetails?: string | undefined;
|
|
676
684
|
catalogEffectiveDate?: string | undefined;
|
|
677
|
-
childItems?: unknown[] | undefined;
|
|
685
|
+
childItems?: (string | number | boolean | unknown[] | {})[] | undefined;
|
|
678
686
|
}[] | undefined;
|
|
679
687
|
organizationId?: string | undefined;
|
|
680
688
|
amount?: number | undefined;
|
|
@@ -706,7 +714,7 @@ export declare const zInvoice: z.ZodObject<{
|
|
|
706
714
|
quantity?: number | undefined;
|
|
707
715
|
itemDetails?: string | undefined;
|
|
708
716
|
catalogEffectiveDate?: string | undefined;
|
|
709
|
-
childItems?: unknown[] | undefined;
|
|
717
|
+
childItems?: (string | number | boolean | unknown[] | {})[] | undefined;
|
|
710
718
|
}[] | undefined;
|
|
711
719
|
}, {
|
|
712
720
|
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 +741,7 @@ export declare const zInvoice: z.ZodObject<{
|
|
|
733
741
|
quantity?: number | undefined;
|
|
734
742
|
itemDetails?: string | undefined;
|
|
735
743
|
catalogEffectiveDate?: string | undefined;
|
|
736
|
-
childItems?: unknown[] | undefined;
|
|
744
|
+
childItems?: (string | number | boolean | unknown[] | {})[] | undefined;
|
|
737
745
|
}[] | undefined;
|
|
738
746
|
organizationId?: string | undefined;
|
|
739
747
|
amount?: number | undefined;
|
|
@@ -765,7 +773,7 @@ export declare const zInvoice: z.ZodObject<{
|
|
|
765
773
|
quantity?: number | undefined;
|
|
766
774
|
itemDetails?: string | undefined;
|
|
767
775
|
catalogEffectiveDate?: string | undefined;
|
|
768
|
-
childItems?: unknown[] | undefined;
|
|
776
|
+
childItems?: (string | number | boolean | unknown[] | {})[] | undefined;
|
|
769
777
|
}[] | undefined;
|
|
770
778
|
}>;
|
|
771
779
|
export declare const zMarketplaceListing: z.ZodObject<{
|
|
@@ -1090,6 +1098,19 @@ export declare const zUserUpdateInput: z.ZodObject<{
|
|
|
1090
1098
|
first_name?: string | undefined;
|
|
1091
1099
|
last_name?: string | undefined;
|
|
1092
1100
|
}>;
|
|
1101
|
+
export declare const zGetUsageData: z.ZodObject<{
|
|
1102
|
+
body: z.ZodOptional<z.ZodNever>;
|
|
1103
|
+
path: z.ZodOptional<z.ZodNever>;
|
|
1104
|
+
query: z.ZodOptional<z.ZodNever>;
|
|
1105
|
+
}, "strip", z.ZodTypeAny, {
|
|
1106
|
+
body?: undefined;
|
|
1107
|
+
path?: undefined;
|
|
1108
|
+
query?: undefined;
|
|
1109
|
+
}, {
|
|
1110
|
+
body?: undefined;
|
|
1111
|
+
path?: undefined;
|
|
1112
|
+
query?: undefined;
|
|
1113
|
+
}>;
|
|
1093
1114
|
/**
|
|
1094
1115
|
* An array of usage records.
|
|
1095
1116
|
*/
|
|
@@ -1127,10 +1148,36 @@ export declare const zGetUsageResponse: z.ZodArray<z.ZodObject<{
|
|
|
1127
1148
|
price: number | "";
|
|
1128
1149
|
hour?: string | undefined;
|
|
1129
1150
|
}>, "many">;
|
|
1151
|
+
export declare const zGetBalanceData: z.ZodObject<{
|
|
1152
|
+
body: z.ZodOptional<z.ZodNever>;
|
|
1153
|
+
path: z.ZodOptional<z.ZodNever>;
|
|
1154
|
+
query: z.ZodOptional<z.ZodNever>;
|
|
1155
|
+
}, "strip", z.ZodTypeAny, {
|
|
1156
|
+
body?: undefined;
|
|
1157
|
+
path?: undefined;
|
|
1158
|
+
query?: undefined;
|
|
1159
|
+
}, {
|
|
1160
|
+
body?: undefined;
|
|
1161
|
+
path?: undefined;
|
|
1162
|
+
query?: undefined;
|
|
1163
|
+
}>;
|
|
1130
1164
|
/**
|
|
1131
1165
|
* Current balance of the organization in USD as a floating-point number.
|
|
1132
1166
|
*/
|
|
1133
1167
|
export declare const zGetBalanceResponse: z.ZodNumber;
|
|
1168
|
+
export declare const zGetPaymentMethodData: z.ZodObject<{
|
|
1169
|
+
body: z.ZodOptional<z.ZodNever>;
|
|
1170
|
+
path: z.ZodOptional<z.ZodNever>;
|
|
1171
|
+
query: z.ZodOptional<z.ZodNever>;
|
|
1172
|
+
}, "strip", z.ZodTypeAny, {
|
|
1173
|
+
body?: undefined;
|
|
1174
|
+
path?: undefined;
|
|
1175
|
+
query?: undefined;
|
|
1176
|
+
}, {
|
|
1177
|
+
body?: undefined;
|
|
1178
|
+
path?: undefined;
|
|
1179
|
+
query?: undefined;
|
|
1180
|
+
}>;
|
|
1134
1181
|
/**
|
|
1135
1182
|
* Redacted payment card information.
|
|
1136
1183
|
*/
|
|
@@ -1159,6 +1206,19 @@ export declare const zGetPaymentMethodResponse: z.ZodObject<{
|
|
|
1159
1206
|
exp_year: number;
|
|
1160
1207
|
brand: "unknown" | "amex" | "diners" | "discover" | "eftpos_au" | "jcb" | "mastercard" | "unionpay" | "visa";
|
|
1161
1208
|
}>;
|
|
1209
|
+
export declare const zGetPaymentMethodSecretData: z.ZodObject<{
|
|
1210
|
+
body: z.ZodOptional<z.ZodNever>;
|
|
1211
|
+
path: z.ZodOptional<z.ZodNever>;
|
|
1212
|
+
query: z.ZodOptional<z.ZodNever>;
|
|
1213
|
+
}, "strip", z.ZodTypeAny, {
|
|
1214
|
+
body?: undefined;
|
|
1215
|
+
path?: undefined;
|
|
1216
|
+
query?: undefined;
|
|
1217
|
+
}, {
|
|
1218
|
+
body?: undefined;
|
|
1219
|
+
path?: undefined;
|
|
1220
|
+
query?: undefined;
|
|
1221
|
+
}>;
|
|
1162
1222
|
/**
|
|
1163
1223
|
* 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
1224
|
*
|
|
@@ -1170,14 +1230,34 @@ export declare const zGetPaymentMethodSecretResponse: z.ZodObject<{
|
|
|
1170
1230
|
}, {
|
|
1171
1231
|
id?: string | undefined;
|
|
1172
1232
|
}>;
|
|
1173
|
-
|
|
1174
|
-
|
|
1175
|
-
|
|
1176
|
-
|
|
1177
|
-
|
|
1178
|
-
|
|
1179
|
-
|
|
1180
|
-
|
|
1233
|
+
export declare const zListInvoicesData: z.ZodObject<{
|
|
1234
|
+
body: z.ZodOptional<z.ZodNever>;
|
|
1235
|
+
path: z.ZodOptional<z.ZodNever>;
|
|
1236
|
+
query: z.ZodObject<{
|
|
1237
|
+
start_date: z.ZodString;
|
|
1238
|
+
end_date: z.ZodString;
|
|
1239
|
+
}, "strip", z.ZodTypeAny, {
|
|
1240
|
+
start_date: string;
|
|
1241
|
+
end_date: string;
|
|
1242
|
+
}, {
|
|
1243
|
+
start_date: string;
|
|
1244
|
+
end_date: string;
|
|
1245
|
+
}>;
|
|
1246
|
+
}, "strip", z.ZodTypeAny, {
|
|
1247
|
+
query: {
|
|
1248
|
+
start_date: string;
|
|
1249
|
+
end_date: string;
|
|
1250
|
+
};
|
|
1251
|
+
body?: undefined;
|
|
1252
|
+
path?: undefined;
|
|
1253
|
+
}, {
|
|
1254
|
+
query: {
|
|
1255
|
+
start_date: string;
|
|
1256
|
+
end_date: string;
|
|
1257
|
+
};
|
|
1258
|
+
body?: undefined;
|
|
1259
|
+
path?: undefined;
|
|
1260
|
+
}>;
|
|
1181
1261
|
/**
|
|
1182
1262
|
* An array of usage records.
|
|
1183
1263
|
*/
|
|
@@ -1215,7 +1295,7 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1215
1295
|
quantity: z.ZodOptional<z.ZodNumber>;
|
|
1216
1296
|
itemDetails: z.ZodOptional<z.ZodString>;
|
|
1217
1297
|
catalogEffectiveDate: z.ZodOptional<z.ZodString>;
|
|
1218
|
-
childItems: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
|
|
1298
|
+
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
1299
|
}, "strip", z.ZodTypeAny, {
|
|
1220
1300
|
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
1301
|
id?: string | undefined;
|
|
@@ -1237,7 +1317,7 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1237
1317
|
quantity?: number | undefined;
|
|
1238
1318
|
itemDetails?: string | undefined;
|
|
1239
1319
|
catalogEffectiveDate?: string | undefined;
|
|
1240
|
-
childItems?: unknown[] | undefined;
|
|
1320
|
+
childItems?: (string | number | boolean | unknown[] | {})[] | undefined;
|
|
1241
1321
|
}, {
|
|
1242
1322
|
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
1323
|
id?: string | undefined;
|
|
@@ -1259,7 +1339,7 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1259
1339
|
quantity?: number | undefined;
|
|
1260
1340
|
itemDetails?: string | undefined;
|
|
1261
1341
|
catalogEffectiveDate?: string | undefined;
|
|
1262
|
-
childItems?: unknown[] | undefined;
|
|
1342
|
+
childItems?: (string | number | boolean | unknown[] | {})[] | undefined;
|
|
1263
1343
|
}>, "many">>;
|
|
1264
1344
|
items: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1265
1345
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -1282,7 +1362,7 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1282
1362
|
quantity: z.ZodOptional<z.ZodNumber>;
|
|
1283
1363
|
itemDetails: z.ZodOptional<z.ZodString>;
|
|
1284
1364
|
catalogEffectiveDate: z.ZodOptional<z.ZodString>;
|
|
1285
|
-
childItems: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
|
|
1365
|
+
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
1366
|
}, "strip", z.ZodTypeAny, {
|
|
1287
1367
|
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
1368
|
id?: string | undefined;
|
|
@@ -1304,7 +1384,7 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1304
1384
|
quantity?: number | undefined;
|
|
1305
1385
|
itemDetails?: string | undefined;
|
|
1306
1386
|
catalogEffectiveDate?: string | undefined;
|
|
1307
|
-
childItems?: unknown[] | undefined;
|
|
1387
|
+
childItems?: (string | number | boolean | unknown[] | {})[] | undefined;
|
|
1308
1388
|
}, {
|
|
1309
1389
|
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
1390
|
id?: string | undefined;
|
|
@@ -1326,7 +1406,7 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1326
1406
|
quantity?: number | undefined;
|
|
1327
1407
|
itemDetails?: string | undefined;
|
|
1328
1408
|
catalogEffectiveDate?: string | undefined;
|
|
1329
|
-
childItems?: unknown[] | undefined;
|
|
1409
|
+
childItems?: (string | number | boolean | unknown[] | {})[] | undefined;
|
|
1330
1410
|
}>, "many">>;
|
|
1331
1411
|
}, "strip", z.ZodTypeAny, {
|
|
1332
1412
|
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 +1433,7 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1353
1433
|
quantity?: number | undefined;
|
|
1354
1434
|
itemDetails?: string | undefined;
|
|
1355
1435
|
catalogEffectiveDate?: string | undefined;
|
|
1356
|
-
childItems?: unknown[] | undefined;
|
|
1436
|
+
childItems?: (string | number | boolean | unknown[] | {})[] | undefined;
|
|
1357
1437
|
}[] | undefined;
|
|
1358
1438
|
organizationId?: string | undefined;
|
|
1359
1439
|
amount?: number | undefined;
|
|
@@ -1385,7 +1465,7 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1385
1465
|
quantity?: number | undefined;
|
|
1386
1466
|
itemDetails?: string | undefined;
|
|
1387
1467
|
catalogEffectiveDate?: string | undefined;
|
|
1388
|
-
childItems?: unknown[] | undefined;
|
|
1468
|
+
childItems?: (string | number | boolean | unknown[] | {})[] | undefined;
|
|
1389
1469
|
}[] | undefined;
|
|
1390
1470
|
}, {
|
|
1391
1471
|
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 +1492,7 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1412
1492
|
quantity?: number | undefined;
|
|
1413
1493
|
itemDetails?: string | undefined;
|
|
1414
1494
|
catalogEffectiveDate?: string | undefined;
|
|
1415
|
-
childItems?: unknown[] | undefined;
|
|
1495
|
+
childItems?: (string | number | boolean | unknown[] | {})[] | undefined;
|
|
1416
1496
|
}[] | undefined;
|
|
1417
1497
|
organizationId?: string | undefined;
|
|
1418
1498
|
amount?: number | undefined;
|
|
@@ -1444,13 +1524,32 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1444
1524
|
quantity?: number | undefined;
|
|
1445
1525
|
itemDetails?: string | undefined;
|
|
1446
1526
|
catalogEffectiveDate?: string | undefined;
|
|
1447
|
-
childItems?: unknown[] | undefined;
|
|
1527
|
+
childItems?: (string | number | boolean | unknown[] | {})[] | undefined;
|
|
1448
1528
|
}[] | undefined;
|
|
1449
1529
|
}>, "many">;
|
|
1450
|
-
|
|
1451
|
-
|
|
1452
|
-
|
|
1453
|
-
|
|
1530
|
+
export declare const zGetInvoiceData: z.ZodObject<{
|
|
1531
|
+
body: z.ZodOptional<z.ZodNever>;
|
|
1532
|
+
path: z.ZodObject<{
|
|
1533
|
+
id: z.ZodString;
|
|
1534
|
+
}, "strip", z.ZodTypeAny, {
|
|
1535
|
+
id: string;
|
|
1536
|
+
}, {
|
|
1537
|
+
id: string;
|
|
1538
|
+
}>;
|
|
1539
|
+
query: z.ZodOptional<z.ZodNever>;
|
|
1540
|
+
}, "strip", z.ZodTypeAny, {
|
|
1541
|
+
path: {
|
|
1542
|
+
id: string;
|
|
1543
|
+
};
|
|
1544
|
+
body?: undefined;
|
|
1545
|
+
query?: undefined;
|
|
1546
|
+
}, {
|
|
1547
|
+
path: {
|
|
1548
|
+
id: string;
|
|
1549
|
+
};
|
|
1550
|
+
body?: undefined;
|
|
1551
|
+
query?: undefined;
|
|
1552
|
+
}>;
|
|
1454
1553
|
/**
|
|
1455
1554
|
* Returns a single Invoice HTML representation under `html` property.
|
|
1456
1555
|
*/
|
|
@@ -1461,6 +1560,19 @@ export declare const zGetInvoiceResponse: z.ZodObject<{
|
|
|
1461
1560
|
}, {
|
|
1462
1561
|
html?: string | undefined;
|
|
1463
1562
|
}>;
|
|
1563
|
+
export declare const zGetContactData: z.ZodObject<{
|
|
1564
|
+
body: z.ZodOptional<z.ZodNever>;
|
|
1565
|
+
path: z.ZodOptional<z.ZodNever>;
|
|
1566
|
+
query: z.ZodOptional<z.ZodNever>;
|
|
1567
|
+
}, "strip", z.ZodTypeAny, {
|
|
1568
|
+
body?: undefined;
|
|
1569
|
+
path?: undefined;
|
|
1570
|
+
query?: undefined;
|
|
1571
|
+
}, {
|
|
1572
|
+
body?: undefined;
|
|
1573
|
+
path?: undefined;
|
|
1574
|
+
query?: undefined;
|
|
1575
|
+
}>;
|
|
1464
1576
|
/**
|
|
1465
1577
|
* Returns a single object containing organization contact and billing address details.
|
|
1466
1578
|
*/
|
|
@@ -1508,47 +1620,87 @@ export declare const zGetContactResponse: z.ZodObject<{
|
|
|
1508
1620
|
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
1621
|
}>;
|
|
1510
1622
|
export declare const zUpdateContactData: z.ZodObject<{
|
|
1511
|
-
|
|
1512
|
-
|
|
1513
|
-
|
|
1514
|
-
|
|
1515
|
-
|
|
1516
|
-
|
|
1517
|
-
|
|
1518
|
-
|
|
1519
|
-
|
|
1520
|
-
|
|
1521
|
-
|
|
1522
|
-
|
|
1523
|
-
|
|
1524
|
-
|
|
1525
|
-
|
|
1526
|
-
|
|
1527
|
-
|
|
1528
|
-
|
|
1529
|
-
|
|
1530
|
-
|
|
1531
|
-
|
|
1532
|
-
|
|
1533
|
-
|
|
1534
|
-
|
|
1535
|
-
|
|
1536
|
-
|
|
1537
|
-
|
|
1538
|
-
|
|
1539
|
-
|
|
1540
|
-
|
|
1541
|
-
|
|
1542
|
-
|
|
1543
|
-
|
|
1544
|
-
|
|
1545
|
-
|
|
1546
|
-
|
|
1547
|
-
|
|
1548
|
-
|
|
1549
|
-
|
|
1550
|
-
|
|
1551
|
-
|
|
1623
|
+
body: z.ZodObject<{
|
|
1624
|
+
company: z.ZodOptional<z.ZodString>;
|
|
1625
|
+
address1: z.ZodOptional<z.ZodString>;
|
|
1626
|
+
address2: z.ZodOptional<z.ZodString>;
|
|
1627
|
+
postalCode: z.ZodOptional<z.ZodString>;
|
|
1628
|
+
city: z.ZodOptional<z.ZodString>;
|
|
1629
|
+
state: z.ZodOptional<z.ZodString>;
|
|
1630
|
+
country: z.ZodOptional<z.ZodString>;
|
|
1631
|
+
phone: z.ZodOptional<z.ZodString>;
|
|
1632
|
+
email: z.ZodString;
|
|
1633
|
+
first_name: z.ZodString;
|
|
1634
|
+
last_name: z.ZodString;
|
|
1635
|
+
tax_id: z.ZodOptional<z.ZodString>;
|
|
1636
|
+
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", ""]>>;
|
|
1637
|
+
}, "strip", z.ZodTypeAny, {
|
|
1638
|
+
email: string;
|
|
1639
|
+
first_name: string;
|
|
1640
|
+
last_name: string;
|
|
1641
|
+
state?: string | undefined;
|
|
1642
|
+
country?: string | undefined;
|
|
1643
|
+
company?: string | undefined;
|
|
1644
|
+
address1?: string | undefined;
|
|
1645
|
+
address2?: string | undefined;
|
|
1646
|
+
postalCode?: string | undefined;
|
|
1647
|
+
city?: string | undefined;
|
|
1648
|
+
phone?: string | undefined;
|
|
1649
|
+
tax_id?: string | undefined;
|
|
1650
|
+
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;
|
|
1651
|
+
}, {
|
|
1652
|
+
email: string;
|
|
1653
|
+
first_name: string;
|
|
1654
|
+
last_name: string;
|
|
1655
|
+
state?: string | undefined;
|
|
1656
|
+
country?: string | undefined;
|
|
1657
|
+
company?: string | undefined;
|
|
1658
|
+
address1?: string | undefined;
|
|
1659
|
+
address2?: string | undefined;
|
|
1660
|
+
postalCode?: string | undefined;
|
|
1661
|
+
city?: string | undefined;
|
|
1662
|
+
phone?: string | undefined;
|
|
1663
|
+
tax_id?: string | undefined;
|
|
1664
|
+
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;
|
|
1665
|
+
}>;
|
|
1666
|
+
path: z.ZodOptional<z.ZodNever>;
|
|
1667
|
+
query: z.ZodOptional<z.ZodNever>;
|
|
1668
|
+
}, "strip", z.ZodTypeAny, {
|
|
1669
|
+
body: {
|
|
1670
|
+
email: string;
|
|
1671
|
+
first_name: string;
|
|
1672
|
+
last_name: string;
|
|
1673
|
+
state?: string | undefined;
|
|
1674
|
+
country?: string | undefined;
|
|
1675
|
+
company?: string | undefined;
|
|
1676
|
+
address1?: string | undefined;
|
|
1677
|
+
address2?: string | undefined;
|
|
1678
|
+
postalCode?: string | undefined;
|
|
1679
|
+
city?: string | undefined;
|
|
1680
|
+
phone?: string | undefined;
|
|
1681
|
+
tax_id?: string | undefined;
|
|
1682
|
+
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;
|
|
1683
|
+
};
|
|
1684
|
+
path?: undefined;
|
|
1685
|
+
query?: undefined;
|
|
1686
|
+
}, {
|
|
1687
|
+
body: {
|
|
1688
|
+
email: string;
|
|
1689
|
+
first_name: string;
|
|
1690
|
+
last_name: string;
|
|
1691
|
+
state?: string | undefined;
|
|
1692
|
+
country?: string | undefined;
|
|
1693
|
+
company?: string | undefined;
|
|
1694
|
+
address1?: string | undefined;
|
|
1695
|
+
address2?: string | undefined;
|
|
1696
|
+
postalCode?: string | undefined;
|
|
1697
|
+
city?: string | undefined;
|
|
1698
|
+
phone?: string | undefined;
|
|
1699
|
+
tax_id?: string | undefined;
|
|
1700
|
+
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;
|
|
1701
|
+
};
|
|
1702
|
+
path?: undefined;
|
|
1703
|
+
query?: undefined;
|
|
1552
1704
|
}>;
|
|
1553
1705
|
/**
|
|
1554
1706
|
* Successfully updated. Returns updated organization details.
|
|
@@ -1596,6 +1748,19 @@ export declare const zUpdateContactResponse: z.ZodObject<{
|
|
|
1596
1748
|
tax_id?: string | undefined;
|
|
1597
1749
|
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
1750
|
}>;
|
|
1751
|
+
export declare const zGetCreditsData: z.ZodObject<{
|
|
1752
|
+
body: z.ZodOptional<z.ZodNever>;
|
|
1753
|
+
path: z.ZodOptional<z.ZodNever>;
|
|
1754
|
+
query: z.ZodOptional<z.ZodNever>;
|
|
1755
|
+
}, "strip", z.ZodTypeAny, {
|
|
1756
|
+
body?: undefined;
|
|
1757
|
+
path?: undefined;
|
|
1758
|
+
query?: undefined;
|
|
1759
|
+
}, {
|
|
1760
|
+
body?: undefined;
|
|
1761
|
+
path?: undefined;
|
|
1762
|
+
query?: undefined;
|
|
1763
|
+
}>;
|
|
1599
1764
|
/**
|
|
1600
1765
|
* An array of the applied promotional credits records.
|
|
1601
1766
|
*/
|
|
@@ -1631,16 +1796,51 @@ export declare const zGetCreditsResponse: z.ZodArray<z.ZodObject<{
|
|
|
1631
1796
|
value_remaining?: number | undefined;
|
|
1632
1797
|
}>, "many">;
|
|
1633
1798
|
export declare const zRedeemCreditsData: z.ZodObject<{
|
|
1634
|
-
|
|
1799
|
+
body: z.ZodObject<{
|
|
1800
|
+
code: z.ZodOptional<z.ZodString>;
|
|
1801
|
+
}, "strip", z.ZodTypeAny, {
|
|
1802
|
+
code?: string | undefined;
|
|
1803
|
+
}, {
|
|
1804
|
+
code?: string | undefined;
|
|
1805
|
+
}>;
|
|
1806
|
+
path: z.ZodOptional<z.ZodNever>;
|
|
1807
|
+
query: z.ZodOptional<z.ZodNever>;
|
|
1635
1808
|
}, "strip", z.ZodTypeAny, {
|
|
1636
|
-
|
|
1809
|
+
body: {
|
|
1810
|
+
code?: string | undefined;
|
|
1811
|
+
};
|
|
1812
|
+
path?: undefined;
|
|
1813
|
+
query?: undefined;
|
|
1637
1814
|
}, {
|
|
1638
|
-
|
|
1815
|
+
body: {
|
|
1816
|
+
code?: string | undefined;
|
|
1817
|
+
};
|
|
1818
|
+
path?: undefined;
|
|
1819
|
+
query?: undefined;
|
|
1820
|
+
}>;
|
|
1821
|
+
export declare const zListChartsData: z.ZodObject<{
|
|
1822
|
+
body: z.ZodOptional<z.ZodNever>;
|
|
1823
|
+
path: z.ZodObject<{
|
|
1824
|
+
cluster_id: z.ZodString;
|
|
1825
|
+
}, "strip", z.ZodTypeAny, {
|
|
1826
|
+
cluster_id: string;
|
|
1827
|
+
}, {
|
|
1828
|
+
cluster_id: string;
|
|
1829
|
+
}>;
|
|
1830
|
+
query: z.ZodOptional<z.ZodNever>;
|
|
1831
|
+
}, "strip", z.ZodTypeAny, {
|
|
1832
|
+
path: {
|
|
1833
|
+
cluster_id: string;
|
|
1834
|
+
};
|
|
1835
|
+
body?: undefined;
|
|
1836
|
+
query?: undefined;
|
|
1837
|
+
}, {
|
|
1838
|
+
path: {
|
|
1839
|
+
cluster_id: string;
|
|
1840
|
+
};
|
|
1841
|
+
body?: undefined;
|
|
1842
|
+
query?: undefined;
|
|
1639
1843
|
}>;
|
|
1640
|
-
/**
|
|
1641
|
-
* Unique identifier of the cluster. UUID v4 string in canonical form
|
|
1642
|
-
*/
|
|
1643
|
-
export declare const zListChartsParameterClusterId: z.ZodString;
|
|
1644
1844
|
/**
|
|
1645
1845
|
* An array of charts
|
|
1646
1846
|
*/
|
|
@@ -1679,52 +1879,122 @@ export declare const zListChartsResponse: z.ZodArray<z.ZodObject<{
|
|
|
1679
1879
|
updated_at: string;
|
|
1680
1880
|
}>, "many">;
|
|
1681
1881
|
export declare const zCreateChartData: z.ZodObject<{
|
|
1682
|
-
|
|
1683
|
-
|
|
1684
|
-
|
|
1685
|
-
|
|
1686
|
-
|
|
1687
|
-
|
|
1688
|
-
|
|
1689
|
-
|
|
1690
|
-
|
|
1691
|
-
|
|
1692
|
-
|
|
1693
|
-
|
|
1694
|
-
|
|
1695
|
-
|
|
1696
|
-
|
|
1697
|
-
|
|
1698
|
-
|
|
1882
|
+
body: z.ZodObject<{
|
|
1883
|
+
values: z.ZodString;
|
|
1884
|
+
version_channel: z.ZodString;
|
|
1885
|
+
name: z.ZodString;
|
|
1886
|
+
namespace: z.ZodString;
|
|
1887
|
+
chart: z.ZodString;
|
|
1888
|
+
}, "strip", z.ZodTypeAny, {
|
|
1889
|
+
values: string;
|
|
1890
|
+
name: string;
|
|
1891
|
+
version_channel: string;
|
|
1892
|
+
namespace: string;
|
|
1893
|
+
chart: string;
|
|
1894
|
+
}, {
|
|
1895
|
+
values: string;
|
|
1896
|
+
name: string;
|
|
1897
|
+
version_channel: string;
|
|
1898
|
+
namespace: string;
|
|
1899
|
+
chart: string;
|
|
1900
|
+
}>;
|
|
1901
|
+
path: z.ZodObject<{
|
|
1902
|
+
cluster_id: z.ZodString;
|
|
1903
|
+
}, "strip", z.ZodTypeAny, {
|
|
1904
|
+
cluster_id: string;
|
|
1905
|
+
}, {
|
|
1906
|
+
cluster_id: string;
|
|
1907
|
+
}>;
|
|
1908
|
+
query: z.ZodOptional<z.ZodNever>;
|
|
1909
|
+
}, "strip", z.ZodTypeAny, {
|
|
1910
|
+
body: {
|
|
1911
|
+
values: string;
|
|
1912
|
+
name: string;
|
|
1913
|
+
version_channel: string;
|
|
1914
|
+
namespace: string;
|
|
1915
|
+
chart: string;
|
|
1916
|
+
};
|
|
1917
|
+
path: {
|
|
1918
|
+
cluster_id: string;
|
|
1919
|
+
};
|
|
1920
|
+
query?: undefined;
|
|
1921
|
+
}, {
|
|
1922
|
+
body: {
|
|
1923
|
+
values: string;
|
|
1924
|
+
name: string;
|
|
1925
|
+
version_channel: string;
|
|
1926
|
+
namespace: string;
|
|
1927
|
+
chart: string;
|
|
1928
|
+
};
|
|
1929
|
+
path: {
|
|
1930
|
+
cluster_id: string;
|
|
1931
|
+
};
|
|
1932
|
+
query?: undefined;
|
|
1699
1933
|
}>;
|
|
1700
|
-
/**
|
|
1701
|
-
* Unique identifier of the cluster. UUID v4 string in canonical form
|
|
1702
|
-
*/
|
|
1703
|
-
export declare const zCreateChartParameterClusterId: z.ZodString;
|
|
1704
1934
|
/**
|
|
1705
1935
|
* Successfully created. Returns created Chart ID.
|
|
1706
1936
|
*/
|
|
1707
1937
|
export declare const zCreateChartResponse: z.ZodString;
|
|
1708
|
-
|
|
1709
|
-
|
|
1710
|
-
|
|
1711
|
-
|
|
1712
|
-
|
|
1713
|
-
|
|
1714
|
-
|
|
1715
|
-
|
|
1938
|
+
export declare const zDeleteChartData: z.ZodObject<{
|
|
1939
|
+
body: z.ZodOptional<z.ZodNever>;
|
|
1940
|
+
path: z.ZodObject<{
|
|
1941
|
+
cluster_id: z.ZodString;
|
|
1942
|
+
chart_name: z.ZodString;
|
|
1943
|
+
}, "strip", z.ZodTypeAny, {
|
|
1944
|
+
cluster_id: string;
|
|
1945
|
+
chart_name: string;
|
|
1946
|
+
}, {
|
|
1947
|
+
cluster_id: string;
|
|
1948
|
+
chart_name: string;
|
|
1949
|
+
}>;
|
|
1950
|
+
query: z.ZodOptional<z.ZodNever>;
|
|
1951
|
+
}, "strip", z.ZodTypeAny, {
|
|
1952
|
+
path: {
|
|
1953
|
+
cluster_id: string;
|
|
1954
|
+
chart_name: string;
|
|
1955
|
+
};
|
|
1956
|
+
body?: undefined;
|
|
1957
|
+
query?: undefined;
|
|
1958
|
+
}, {
|
|
1959
|
+
path: {
|
|
1960
|
+
cluster_id: string;
|
|
1961
|
+
chart_name: string;
|
|
1962
|
+
};
|
|
1963
|
+
body?: undefined;
|
|
1964
|
+
query?: undefined;
|
|
1965
|
+
}>;
|
|
1716
1966
|
/**
|
|
1717
1967
|
* Successfully deleted.
|
|
1718
1968
|
*/
|
|
1719
1969
|
export declare const zDeleteChartResponse: z.ZodString;
|
|
1720
|
-
|
|
1721
|
-
|
|
1722
|
-
|
|
1723
|
-
|
|
1724
|
-
|
|
1725
|
-
|
|
1726
|
-
|
|
1727
|
-
|
|
1970
|
+
export declare const zGetChartData: z.ZodObject<{
|
|
1971
|
+
body: z.ZodOptional<z.ZodNever>;
|
|
1972
|
+
path: z.ZodObject<{
|
|
1973
|
+
cluster_id: z.ZodString;
|
|
1974
|
+
chart_name: z.ZodString;
|
|
1975
|
+
}, "strip", z.ZodTypeAny, {
|
|
1976
|
+
cluster_id: string;
|
|
1977
|
+
chart_name: string;
|
|
1978
|
+
}, {
|
|
1979
|
+
cluster_id: string;
|
|
1980
|
+
chart_name: string;
|
|
1981
|
+
}>;
|
|
1982
|
+
query: z.ZodOptional<z.ZodNever>;
|
|
1983
|
+
}, "strip", z.ZodTypeAny, {
|
|
1984
|
+
path: {
|
|
1985
|
+
cluster_id: string;
|
|
1986
|
+
chart_name: string;
|
|
1987
|
+
};
|
|
1988
|
+
body?: undefined;
|
|
1989
|
+
query?: undefined;
|
|
1990
|
+
}, {
|
|
1991
|
+
path: {
|
|
1992
|
+
cluster_id: string;
|
|
1993
|
+
chart_name: string;
|
|
1994
|
+
};
|
|
1995
|
+
body?: undefined;
|
|
1996
|
+
query?: undefined;
|
|
1997
|
+
}>;
|
|
1728
1998
|
/**
|
|
1729
1999
|
* Returns a single object containing chart details.
|
|
1730
2000
|
*/
|
|
@@ -1763,31 +2033,75 @@ export declare const zGetChartResponse: z.ZodObject<{
|
|
|
1763
2033
|
updated_at: string;
|
|
1764
2034
|
}>;
|
|
1765
2035
|
export declare const zUpdateChartData: z.ZodObject<{
|
|
1766
|
-
|
|
1767
|
-
|
|
2036
|
+
body: z.ZodObject<{
|
|
2037
|
+
values: z.ZodString;
|
|
2038
|
+
version_channel: z.ZodString;
|
|
2039
|
+
}, "strip", z.ZodTypeAny, {
|
|
2040
|
+
values: string;
|
|
2041
|
+
version_channel: string;
|
|
2042
|
+
}, {
|
|
2043
|
+
values: string;
|
|
2044
|
+
version_channel: string;
|
|
2045
|
+
}>;
|
|
2046
|
+
path: z.ZodObject<{
|
|
2047
|
+
cluster_id: z.ZodString;
|
|
2048
|
+
chart_name: z.ZodString;
|
|
2049
|
+
}, "strip", z.ZodTypeAny, {
|
|
2050
|
+
cluster_id: string;
|
|
2051
|
+
chart_name: string;
|
|
2052
|
+
}, {
|
|
2053
|
+
cluster_id: string;
|
|
2054
|
+
chart_name: string;
|
|
2055
|
+
}>;
|
|
2056
|
+
query: z.ZodOptional<z.ZodNever>;
|
|
1768
2057
|
}, "strip", z.ZodTypeAny, {
|
|
1769
|
-
|
|
1770
|
-
|
|
2058
|
+
body: {
|
|
2059
|
+
values: string;
|
|
2060
|
+
version_channel: string;
|
|
2061
|
+
};
|
|
2062
|
+
path: {
|
|
2063
|
+
cluster_id: string;
|
|
2064
|
+
chart_name: string;
|
|
2065
|
+
};
|
|
2066
|
+
query?: undefined;
|
|
1771
2067
|
}, {
|
|
1772
|
-
|
|
1773
|
-
|
|
2068
|
+
body: {
|
|
2069
|
+
values: string;
|
|
2070
|
+
version_channel: string;
|
|
2071
|
+
};
|
|
2072
|
+
path: {
|
|
2073
|
+
cluster_id: string;
|
|
2074
|
+
chart_name: string;
|
|
2075
|
+
};
|
|
2076
|
+
query?: undefined;
|
|
1774
2077
|
}>;
|
|
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
2078
|
/**
|
|
1784
2079
|
* Successfully updated.
|
|
1785
2080
|
*/
|
|
1786
2081
|
export declare const zUpdateChartResponse: z.ZodString;
|
|
1787
|
-
|
|
1788
|
-
|
|
1789
|
-
|
|
1790
|
-
|
|
2082
|
+
export declare const zListFleetsData: z.ZodObject<{
|
|
2083
|
+
body: z.ZodOptional<z.ZodNever>;
|
|
2084
|
+
path: z.ZodObject<{
|
|
2085
|
+
cluster_id: z.ZodString;
|
|
2086
|
+
}, "strip", z.ZodTypeAny, {
|
|
2087
|
+
cluster_id: string;
|
|
2088
|
+
}, {
|
|
2089
|
+
cluster_id: string;
|
|
2090
|
+
}>;
|
|
2091
|
+
query: z.ZodOptional<z.ZodNever>;
|
|
2092
|
+
}, "strip", z.ZodTypeAny, {
|
|
2093
|
+
path: {
|
|
2094
|
+
cluster_id: string;
|
|
2095
|
+
};
|
|
2096
|
+
body?: undefined;
|
|
2097
|
+
query?: undefined;
|
|
2098
|
+
}, {
|
|
2099
|
+
path: {
|
|
2100
|
+
cluster_id: string;
|
|
2101
|
+
};
|
|
2102
|
+
body?: undefined;
|
|
2103
|
+
query?: undefined;
|
|
2104
|
+
}>;
|
|
1791
2105
|
/**
|
|
1792
2106
|
* An array of fleets
|
|
1793
2107
|
*/
|
|
@@ -1866,6 +2180,203 @@ export declare const zListFleetsResponse: z.ZodArray<z.ZodObject<{
|
|
|
1866
2180
|
} | undefined;
|
|
1867
2181
|
}>, "many">;
|
|
1868
2182
|
export declare const zCreateFleetData: z.ZodObject<{
|
|
2183
|
+
body: z.ZodObject<{
|
|
2184
|
+
limits: z.ZodOptional<z.ZodObject<{
|
|
2185
|
+
cpu: z.ZodNumber;
|
|
2186
|
+
}, "strip", z.ZodTypeAny, {
|
|
2187
|
+
cpu: number;
|
|
2188
|
+
}, {
|
|
2189
|
+
cpu: number;
|
|
2190
|
+
}>>;
|
|
2191
|
+
gcp: z.ZodOptional<z.ZodObject<{
|
|
2192
|
+
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
2193
|
+
project: z.ZodString;
|
|
2194
|
+
}, "strip", z.ZodTypeAny, {
|
|
2195
|
+
project: string;
|
|
2196
|
+
enabled: boolean;
|
|
2197
|
+
}, {
|
|
2198
|
+
project: string;
|
|
2199
|
+
enabled?: boolean | undefined;
|
|
2200
|
+
}>>;
|
|
2201
|
+
hetzner: z.ZodOptional<z.ZodObject<{
|
|
2202
|
+
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
2203
|
+
apiKey: z.ZodString;
|
|
2204
|
+
}, "strip", z.ZodTypeAny, {
|
|
2205
|
+
apiKey: string;
|
|
2206
|
+
enabled: boolean;
|
|
2207
|
+
}, {
|
|
2208
|
+
apiKey: string;
|
|
2209
|
+
enabled?: boolean | undefined;
|
|
2210
|
+
}>>;
|
|
2211
|
+
aws: z.ZodOptional<z.ZodObject<{
|
|
2212
|
+
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
2213
|
+
controllerRoleArn: z.ZodString;
|
|
2214
|
+
}, "strip", z.ZodTypeAny, {
|
|
2215
|
+
controllerRoleArn: string;
|
|
2216
|
+
enabled: boolean;
|
|
2217
|
+
}, {
|
|
2218
|
+
controllerRoleArn: string;
|
|
2219
|
+
enabled?: boolean | undefined;
|
|
2220
|
+
}>>;
|
|
2221
|
+
id: z.ZodString;
|
|
2222
|
+
}, "strip", z.ZodTypeAny, {
|
|
2223
|
+
id: string;
|
|
2224
|
+
limits?: {
|
|
2225
|
+
cpu: number;
|
|
2226
|
+
} | undefined;
|
|
2227
|
+
gcp?: {
|
|
2228
|
+
project: string;
|
|
2229
|
+
enabled: boolean;
|
|
2230
|
+
} | undefined;
|
|
2231
|
+
hetzner?: {
|
|
2232
|
+
apiKey: string;
|
|
2233
|
+
enabled: boolean;
|
|
2234
|
+
} | undefined;
|
|
2235
|
+
aws?: {
|
|
2236
|
+
controllerRoleArn: string;
|
|
2237
|
+
enabled: boolean;
|
|
2238
|
+
} | undefined;
|
|
2239
|
+
}, {
|
|
2240
|
+
id: string;
|
|
2241
|
+
limits?: {
|
|
2242
|
+
cpu: number;
|
|
2243
|
+
} | undefined;
|
|
2244
|
+
gcp?: {
|
|
2245
|
+
project: string;
|
|
2246
|
+
enabled?: boolean | undefined;
|
|
2247
|
+
} | undefined;
|
|
2248
|
+
hetzner?: {
|
|
2249
|
+
apiKey: string;
|
|
2250
|
+
enabled?: boolean | undefined;
|
|
2251
|
+
} | undefined;
|
|
2252
|
+
aws?: {
|
|
2253
|
+
controllerRoleArn: string;
|
|
2254
|
+
enabled?: boolean | undefined;
|
|
2255
|
+
} | undefined;
|
|
2256
|
+
}>;
|
|
2257
|
+
path: z.ZodObject<{
|
|
2258
|
+
cluster_id: z.ZodString;
|
|
2259
|
+
}, "strip", z.ZodTypeAny, {
|
|
2260
|
+
cluster_id: string;
|
|
2261
|
+
}, {
|
|
2262
|
+
cluster_id: string;
|
|
2263
|
+
}>;
|
|
2264
|
+
query: z.ZodOptional<z.ZodNever>;
|
|
2265
|
+
}, "strip", z.ZodTypeAny, {
|
|
2266
|
+
body: {
|
|
2267
|
+
id: string;
|
|
2268
|
+
limits?: {
|
|
2269
|
+
cpu: number;
|
|
2270
|
+
} | undefined;
|
|
2271
|
+
gcp?: {
|
|
2272
|
+
project: string;
|
|
2273
|
+
enabled: boolean;
|
|
2274
|
+
} | undefined;
|
|
2275
|
+
hetzner?: {
|
|
2276
|
+
apiKey: string;
|
|
2277
|
+
enabled: boolean;
|
|
2278
|
+
} | undefined;
|
|
2279
|
+
aws?: {
|
|
2280
|
+
controllerRoleArn: string;
|
|
2281
|
+
enabled: boolean;
|
|
2282
|
+
} | undefined;
|
|
2283
|
+
};
|
|
2284
|
+
path: {
|
|
2285
|
+
cluster_id: string;
|
|
2286
|
+
};
|
|
2287
|
+
query?: undefined;
|
|
2288
|
+
}, {
|
|
2289
|
+
body: {
|
|
2290
|
+
id: string;
|
|
2291
|
+
limits?: {
|
|
2292
|
+
cpu: number;
|
|
2293
|
+
} | undefined;
|
|
2294
|
+
gcp?: {
|
|
2295
|
+
project: string;
|
|
2296
|
+
enabled?: boolean | undefined;
|
|
2297
|
+
} | undefined;
|
|
2298
|
+
hetzner?: {
|
|
2299
|
+
apiKey: string;
|
|
2300
|
+
enabled?: boolean | undefined;
|
|
2301
|
+
} | undefined;
|
|
2302
|
+
aws?: {
|
|
2303
|
+
controllerRoleArn: string;
|
|
2304
|
+
enabled?: boolean | undefined;
|
|
2305
|
+
} | undefined;
|
|
2306
|
+
};
|
|
2307
|
+
path: {
|
|
2308
|
+
cluster_id: string;
|
|
2309
|
+
};
|
|
2310
|
+
query?: undefined;
|
|
2311
|
+
}>;
|
|
2312
|
+
/**
|
|
2313
|
+
* Successfully created. Returns created Fleet ID.
|
|
2314
|
+
*/
|
|
2315
|
+
export declare const zCreateFleetResponse: z.ZodString;
|
|
2316
|
+
export declare const zDeleteFleetData: z.ZodObject<{
|
|
2317
|
+
body: z.ZodOptional<z.ZodNever>;
|
|
2318
|
+
path: z.ZodObject<{
|
|
2319
|
+
cluster_id: z.ZodString;
|
|
2320
|
+
fleet_name: z.ZodString;
|
|
2321
|
+
}, "strip", z.ZodTypeAny, {
|
|
2322
|
+
cluster_id: string;
|
|
2323
|
+
fleet_name: string;
|
|
2324
|
+
}, {
|
|
2325
|
+
cluster_id: string;
|
|
2326
|
+
fleet_name: string;
|
|
2327
|
+
}>;
|
|
2328
|
+
query: z.ZodOptional<z.ZodNever>;
|
|
2329
|
+
}, "strip", z.ZodTypeAny, {
|
|
2330
|
+
path: {
|
|
2331
|
+
cluster_id: string;
|
|
2332
|
+
fleet_name: string;
|
|
2333
|
+
};
|
|
2334
|
+
body?: undefined;
|
|
2335
|
+
query?: undefined;
|
|
2336
|
+
}, {
|
|
2337
|
+
path: {
|
|
2338
|
+
cluster_id: string;
|
|
2339
|
+
fleet_name: string;
|
|
2340
|
+
};
|
|
2341
|
+
body?: undefined;
|
|
2342
|
+
query?: undefined;
|
|
2343
|
+
}>;
|
|
2344
|
+
/**
|
|
2345
|
+
* Successfully deleted.
|
|
2346
|
+
*/
|
|
2347
|
+
export declare const zDeleteFleetResponse: z.ZodString;
|
|
2348
|
+
export declare const zGetFleetData: z.ZodObject<{
|
|
2349
|
+
body: z.ZodOptional<z.ZodNever>;
|
|
2350
|
+
path: z.ZodObject<{
|
|
2351
|
+
cluster_id: z.ZodString;
|
|
2352
|
+
fleet_name: z.ZodString;
|
|
2353
|
+
}, "strip", z.ZodTypeAny, {
|
|
2354
|
+
cluster_id: string;
|
|
2355
|
+
fleet_name: string;
|
|
2356
|
+
}, {
|
|
2357
|
+
cluster_id: string;
|
|
2358
|
+
fleet_name: string;
|
|
2359
|
+
}>;
|
|
2360
|
+
query: z.ZodOptional<z.ZodNever>;
|
|
2361
|
+
}, "strip", z.ZodTypeAny, {
|
|
2362
|
+
path: {
|
|
2363
|
+
cluster_id: string;
|
|
2364
|
+
fleet_name: string;
|
|
2365
|
+
};
|
|
2366
|
+
body?: undefined;
|
|
2367
|
+
query?: undefined;
|
|
2368
|
+
}, {
|
|
2369
|
+
path: {
|
|
2370
|
+
cluster_id: string;
|
|
2371
|
+
fleet_name: string;
|
|
2372
|
+
};
|
|
2373
|
+
body?: undefined;
|
|
2374
|
+
query?: undefined;
|
|
2375
|
+
}>;
|
|
2376
|
+
/**
|
|
2377
|
+
* Returns a single object containing fleet details.
|
|
2378
|
+
*/
|
|
2379
|
+
export declare const zGetFleetResponse: z.ZodObject<{
|
|
1869
2380
|
limits: z.ZodOptional<z.ZodObject<{
|
|
1870
2381
|
cpu: z.ZodNumber;
|
|
1871
2382
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1939,205 +2450,183 @@ export declare const zCreateFleetData: z.ZodObject<{
|
|
|
1939
2450
|
enabled?: boolean | undefined;
|
|
1940
2451
|
} | undefined;
|
|
1941
2452
|
}>;
|
|
2453
|
+
export declare const zUpdateFleetData: z.ZodObject<{
|
|
2454
|
+
body: z.ZodObject<{
|
|
2455
|
+
limits: z.ZodOptional<z.ZodObject<{
|
|
2456
|
+
cpu: z.ZodNumber;
|
|
2457
|
+
}, "strip", z.ZodTypeAny, {
|
|
2458
|
+
cpu: number;
|
|
2459
|
+
}, {
|
|
2460
|
+
cpu: number;
|
|
2461
|
+
}>>;
|
|
2462
|
+
gcp: z.ZodOptional<z.ZodObject<{
|
|
2463
|
+
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
2464
|
+
project: z.ZodString;
|
|
2465
|
+
}, "strip", z.ZodTypeAny, {
|
|
2466
|
+
project: string;
|
|
2467
|
+
enabled: boolean;
|
|
2468
|
+
}, {
|
|
2469
|
+
project: string;
|
|
2470
|
+
enabled?: boolean | undefined;
|
|
2471
|
+
}>>;
|
|
2472
|
+
hetzner: z.ZodOptional<z.ZodObject<{
|
|
2473
|
+
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
2474
|
+
apiKey: z.ZodString;
|
|
2475
|
+
}, "strip", z.ZodTypeAny, {
|
|
2476
|
+
apiKey: string;
|
|
2477
|
+
enabled: boolean;
|
|
2478
|
+
}, {
|
|
2479
|
+
apiKey: string;
|
|
2480
|
+
enabled?: boolean | undefined;
|
|
2481
|
+
}>>;
|
|
2482
|
+
aws: z.ZodOptional<z.ZodObject<{
|
|
2483
|
+
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
2484
|
+
controllerRoleArn: z.ZodString;
|
|
2485
|
+
}, "strip", z.ZodTypeAny, {
|
|
2486
|
+
controllerRoleArn: string;
|
|
2487
|
+
enabled: boolean;
|
|
2488
|
+
}, {
|
|
2489
|
+
controllerRoleArn: string;
|
|
2490
|
+
enabled?: boolean | undefined;
|
|
2491
|
+
}>>;
|
|
2492
|
+
}, "strip", z.ZodTypeAny, {
|
|
2493
|
+
limits?: {
|
|
2494
|
+
cpu: number;
|
|
2495
|
+
} | undefined;
|
|
2496
|
+
gcp?: {
|
|
2497
|
+
project: string;
|
|
2498
|
+
enabled: boolean;
|
|
2499
|
+
} | undefined;
|
|
2500
|
+
hetzner?: {
|
|
2501
|
+
apiKey: string;
|
|
2502
|
+
enabled: boolean;
|
|
2503
|
+
} | undefined;
|
|
2504
|
+
aws?: {
|
|
2505
|
+
controllerRoleArn: string;
|
|
2506
|
+
enabled: boolean;
|
|
2507
|
+
} | undefined;
|
|
2508
|
+
}, {
|
|
2509
|
+
limits?: {
|
|
2510
|
+
cpu: number;
|
|
2511
|
+
} | undefined;
|
|
2512
|
+
gcp?: {
|
|
2513
|
+
project: string;
|
|
2514
|
+
enabled?: boolean | undefined;
|
|
2515
|
+
} | undefined;
|
|
2516
|
+
hetzner?: {
|
|
2517
|
+
apiKey: string;
|
|
2518
|
+
enabled?: boolean | undefined;
|
|
2519
|
+
} | undefined;
|
|
2520
|
+
aws?: {
|
|
2521
|
+
controllerRoleArn: string;
|
|
2522
|
+
enabled?: boolean | undefined;
|
|
2523
|
+
} | undefined;
|
|
2524
|
+
}>;
|
|
2525
|
+
path: z.ZodObject<{
|
|
2526
|
+
cluster_id: z.ZodString;
|
|
2527
|
+
fleet_name: z.ZodString;
|
|
2528
|
+
}, "strip", z.ZodTypeAny, {
|
|
2529
|
+
cluster_id: string;
|
|
2530
|
+
fleet_name: string;
|
|
2531
|
+
}, {
|
|
2532
|
+
cluster_id: string;
|
|
2533
|
+
fleet_name: string;
|
|
2534
|
+
}>;
|
|
2535
|
+
query: z.ZodOptional<z.ZodNever>;
|
|
2536
|
+
}, "strip", z.ZodTypeAny, {
|
|
2537
|
+
body: {
|
|
2538
|
+
limits?: {
|
|
2539
|
+
cpu: number;
|
|
2540
|
+
} | undefined;
|
|
2541
|
+
gcp?: {
|
|
2542
|
+
project: string;
|
|
2543
|
+
enabled: boolean;
|
|
2544
|
+
} | undefined;
|
|
2545
|
+
hetzner?: {
|
|
2546
|
+
apiKey: string;
|
|
2547
|
+
enabled: boolean;
|
|
2548
|
+
} | undefined;
|
|
2549
|
+
aws?: {
|
|
2550
|
+
controllerRoleArn: string;
|
|
2551
|
+
enabled: boolean;
|
|
2552
|
+
} | undefined;
|
|
2553
|
+
};
|
|
2554
|
+
path: {
|
|
2555
|
+
cluster_id: string;
|
|
2556
|
+
fleet_name: string;
|
|
2557
|
+
};
|
|
2558
|
+
query?: undefined;
|
|
2559
|
+
}, {
|
|
2560
|
+
body: {
|
|
2561
|
+
limits?: {
|
|
2562
|
+
cpu: number;
|
|
2563
|
+
} | undefined;
|
|
2564
|
+
gcp?: {
|
|
2565
|
+
project: string;
|
|
2566
|
+
enabled?: boolean | undefined;
|
|
2567
|
+
} | undefined;
|
|
2568
|
+
hetzner?: {
|
|
2569
|
+
apiKey: string;
|
|
2570
|
+
enabled?: boolean | undefined;
|
|
2571
|
+
} | undefined;
|
|
2572
|
+
aws?: {
|
|
2573
|
+
controllerRoleArn: string;
|
|
2574
|
+
enabled?: boolean | undefined;
|
|
2575
|
+
} | undefined;
|
|
2576
|
+
};
|
|
2577
|
+
path: {
|
|
2578
|
+
cluster_id: string;
|
|
2579
|
+
fleet_name: string;
|
|
2580
|
+
};
|
|
2581
|
+
query?: undefined;
|
|
2582
|
+
}>;
|
|
1942
2583
|
/**
|
|
1943
|
-
*
|
|
2584
|
+
* Successfully updated.
|
|
1944
2585
|
*/
|
|
1945
|
-
export declare const
|
|
1946
|
-
|
|
1947
|
-
|
|
1948
|
-
|
|
1949
|
-
|
|
1950
|
-
|
|
1951
|
-
|
|
1952
|
-
|
|
1953
|
-
|
|
1954
|
-
|
|
1955
|
-
|
|
1956
|
-
|
|
1957
|
-
|
|
1958
|
-
|
|
1959
|
-
|
|
1960
|
-
|
|
1961
|
-
|
|
1962
|
-
|
|
1963
|
-
|
|
1964
|
-
|
|
1965
|
-
|
|
1966
|
-
|
|
1967
|
-
|
|
1968
|
-
|
|
1969
|
-
export declare const
|
|
1970
|
-
|
|
1971
|
-
|
|
1972
|
-
|
|
1973
|
-
|
|
1974
|
-
|
|
1975
|
-
|
|
1976
|
-
|
|
1977
|
-
|
|
1978
|
-
|
|
1979
|
-
|
|
1980
|
-
|
|
1981
|
-
|
|
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;
|
|
2586
|
+
export declare const zUpdateFleetResponse: z.ZodString;
|
|
2587
|
+
export declare const zQueryClusterData: z.ZodObject<{
|
|
2588
|
+
body: z.ZodOptional<z.ZodNever>;
|
|
2589
|
+
path: z.ZodObject<{
|
|
2590
|
+
cluster_id: z.ZodString;
|
|
2591
|
+
}, "strip", z.ZodTypeAny, {
|
|
2592
|
+
cluster_id: string;
|
|
2593
|
+
}, {
|
|
2594
|
+
cluster_id: string;
|
|
2595
|
+
}>;
|
|
2596
|
+
query: z.ZodOptional<z.ZodNever>;
|
|
2597
|
+
}, "strip", z.ZodTypeAny, {
|
|
2598
|
+
path: {
|
|
2599
|
+
cluster_id: string;
|
|
2600
|
+
};
|
|
2601
|
+
body?: undefined;
|
|
2602
|
+
query?: undefined;
|
|
2603
|
+
}, {
|
|
2604
|
+
path: {
|
|
2605
|
+
cluster_id: string;
|
|
2606
|
+
};
|
|
2607
|
+
body?: undefined;
|
|
2608
|
+
query?: undefined;
|
|
2609
|
+
}>;
|
|
2610
|
+
export declare const zListClustersData: z.ZodObject<{
|
|
2611
|
+
body: z.ZodOptional<z.ZodNever>;
|
|
2612
|
+
path: z.ZodOptional<z.ZodNever>;
|
|
2613
|
+
query: z.ZodOptional<z.ZodNever>;
|
|
2614
|
+
}, "strip", z.ZodTypeAny, {
|
|
2615
|
+
body?: undefined;
|
|
2616
|
+
path?: undefined;
|
|
2617
|
+
query?: undefined;
|
|
2618
|
+
}, {
|
|
2619
|
+
body?: undefined;
|
|
2620
|
+
path?: undefined;
|
|
2621
|
+
query?: undefined;
|
|
2622
|
+
}>;
|
|
2134
2623
|
/**
|
|
2135
2624
|
* An array of clusters
|
|
2136
2625
|
*/
|
|
2137
2626
|
export declare const zListClustersResponse: z.ZodArray<z.ZodObject<{
|
|
2138
2627
|
name: z.ZodString;
|
|
2139
|
-
region: z.ZodOptional<z.ZodEnum<["staging", "northamerica-central-1"]>>;
|
|
2140
2628
|
tier: z.ZodEnum<["basic", "pro"]>;
|
|
2629
|
+
region: z.ZodOptional<z.ZodEnum<["staging", "northamerica-central-1", "europe-central-1a"]>>;
|
|
2141
2630
|
version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
2142
2631
|
id: z.ZodString;
|
|
2143
2632
|
status: z.ZodEnum<["active", "deleted", "creating", "deployed", "failed", "updating"]>;
|
|
@@ -2150,11 +2639,11 @@ export declare const zListClustersResponse: z.ZodArray<z.ZodObject<{
|
|
|
2150
2639
|
}, "strip", z.ZodTypeAny, {
|
|
2151
2640
|
name: string;
|
|
2152
2641
|
id: string;
|
|
2153
|
-
status: "
|
|
2642
|
+
status: "deleted" | "failed" | "active" | "creating" | "deployed" | "updating";
|
|
2154
2643
|
version_channel: string;
|
|
2155
2644
|
tier: "basic" | "pro";
|
|
2156
2645
|
ready?: boolean | undefined;
|
|
2157
|
-
region?: "staging" | "northamerica-central-1" | undefined;
|
|
2646
|
+
region?: "staging" | "northamerica-central-1" | "europe-central-1a" | undefined;
|
|
2158
2647
|
version_current?: string | undefined;
|
|
2159
2648
|
created_at?: string | undefined;
|
|
2160
2649
|
updated_at?: string | undefined;
|
|
@@ -2163,10 +2652,10 @@ export declare const zListClustersResponse: z.ZodArray<z.ZodObject<{
|
|
|
2163
2652
|
}, {
|
|
2164
2653
|
name: string;
|
|
2165
2654
|
id: string;
|
|
2166
|
-
status: "
|
|
2655
|
+
status: "deleted" | "failed" | "active" | "creating" | "deployed" | "updating";
|
|
2167
2656
|
tier: "basic" | "pro";
|
|
2168
2657
|
ready?: boolean | undefined;
|
|
2169
|
-
region?: "staging" | "northamerica-central-1" | undefined;
|
|
2658
|
+
region?: "staging" | "northamerica-central-1" | "europe-central-1a" | undefined;
|
|
2170
2659
|
version_channel?: string | undefined;
|
|
2171
2660
|
version_current?: string | undefined;
|
|
2172
2661
|
created_at?: string | undefined;
|
|
@@ -2175,44 +2664,104 @@ export declare const zListClustersResponse: z.ZodArray<z.ZodObject<{
|
|
|
2175
2664
|
certificate_ca?: string | undefined;
|
|
2176
2665
|
}>, "many">;
|
|
2177
2666
|
export declare const zCreateClusterData: z.ZodObject<{
|
|
2178
|
-
|
|
2179
|
-
|
|
2180
|
-
|
|
2181
|
-
|
|
2182
|
-
|
|
2183
|
-
|
|
2184
|
-
|
|
2185
|
-
|
|
2186
|
-
|
|
2187
|
-
|
|
2188
|
-
|
|
2189
|
-
|
|
2190
|
-
|
|
2191
|
-
|
|
2667
|
+
body: z.ZodObject<{
|
|
2668
|
+
name: z.ZodString;
|
|
2669
|
+
tier: z.ZodEnum<["basic", "pro"]>;
|
|
2670
|
+
region: z.ZodOptional<z.ZodEnum<["staging", "northamerica-central-1", "europe-central-1a"]>>;
|
|
2671
|
+
version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
2672
|
+
}, "strip", z.ZodTypeAny, {
|
|
2673
|
+
name: string;
|
|
2674
|
+
version_channel: string;
|
|
2675
|
+
tier: "basic" | "pro";
|
|
2676
|
+
region?: "staging" | "northamerica-central-1" | "europe-central-1a" | undefined;
|
|
2677
|
+
}, {
|
|
2678
|
+
name: string;
|
|
2679
|
+
tier: "basic" | "pro";
|
|
2680
|
+
region?: "staging" | "northamerica-central-1" | "europe-central-1a" | undefined;
|
|
2681
|
+
version_channel?: string | undefined;
|
|
2682
|
+
}>;
|
|
2683
|
+
path: z.ZodOptional<z.ZodNever>;
|
|
2684
|
+
query: z.ZodOptional<z.ZodNever>;
|
|
2685
|
+
}, "strip", z.ZodTypeAny, {
|
|
2686
|
+
body: {
|
|
2687
|
+
name: string;
|
|
2688
|
+
version_channel: string;
|
|
2689
|
+
tier: "basic" | "pro";
|
|
2690
|
+
region?: "staging" | "northamerica-central-1" | "europe-central-1a" | undefined;
|
|
2691
|
+
};
|
|
2692
|
+
path?: undefined;
|
|
2693
|
+
query?: undefined;
|
|
2694
|
+
}, {
|
|
2695
|
+
body: {
|
|
2696
|
+
name: string;
|
|
2697
|
+
tier: "basic" | "pro";
|
|
2698
|
+
region?: "staging" | "northamerica-central-1" | "europe-central-1a" | undefined;
|
|
2699
|
+
version_channel?: string | undefined;
|
|
2700
|
+
};
|
|
2701
|
+
path?: undefined;
|
|
2702
|
+
query?: undefined;
|
|
2192
2703
|
}>;
|
|
2193
2704
|
/**
|
|
2194
2705
|
* Successfully created. Returns created Cluster ID.
|
|
2195
2706
|
*/
|
|
2196
2707
|
export declare const zCreateClusterResponse: z.ZodString;
|
|
2197
|
-
|
|
2198
|
-
|
|
2199
|
-
|
|
2200
|
-
|
|
2708
|
+
export declare const zDeleteClusterData: z.ZodObject<{
|
|
2709
|
+
body: z.ZodOptional<z.ZodNever>;
|
|
2710
|
+
path: z.ZodObject<{
|
|
2711
|
+
cluster_id: z.ZodString;
|
|
2712
|
+
}, "strip", z.ZodTypeAny, {
|
|
2713
|
+
cluster_id: string;
|
|
2714
|
+
}, {
|
|
2715
|
+
cluster_id: string;
|
|
2716
|
+
}>;
|
|
2717
|
+
query: z.ZodOptional<z.ZodNever>;
|
|
2718
|
+
}, "strip", z.ZodTypeAny, {
|
|
2719
|
+
path: {
|
|
2720
|
+
cluster_id: string;
|
|
2721
|
+
};
|
|
2722
|
+
body?: undefined;
|
|
2723
|
+
query?: undefined;
|
|
2724
|
+
}, {
|
|
2725
|
+
path: {
|
|
2726
|
+
cluster_id: string;
|
|
2727
|
+
};
|
|
2728
|
+
body?: undefined;
|
|
2729
|
+
query?: undefined;
|
|
2730
|
+
}>;
|
|
2201
2731
|
/**
|
|
2202
2732
|
* Successfully deleted.
|
|
2203
2733
|
*/
|
|
2204
2734
|
export declare const zDeleteClusterResponse: z.ZodString;
|
|
2205
|
-
|
|
2206
|
-
|
|
2207
|
-
|
|
2208
|
-
|
|
2735
|
+
export declare const zGetClusterData: z.ZodObject<{
|
|
2736
|
+
body: z.ZodOptional<z.ZodNever>;
|
|
2737
|
+
path: z.ZodObject<{
|
|
2738
|
+
cluster_id: z.ZodString;
|
|
2739
|
+
}, "strip", z.ZodTypeAny, {
|
|
2740
|
+
cluster_id: string;
|
|
2741
|
+
}, {
|
|
2742
|
+
cluster_id: string;
|
|
2743
|
+
}>;
|
|
2744
|
+
query: z.ZodOptional<z.ZodNever>;
|
|
2745
|
+
}, "strip", z.ZodTypeAny, {
|
|
2746
|
+
path: {
|
|
2747
|
+
cluster_id: string;
|
|
2748
|
+
};
|
|
2749
|
+
body?: undefined;
|
|
2750
|
+
query?: undefined;
|
|
2751
|
+
}, {
|
|
2752
|
+
path: {
|
|
2753
|
+
cluster_id: string;
|
|
2754
|
+
};
|
|
2755
|
+
body?: undefined;
|
|
2756
|
+
query?: undefined;
|
|
2757
|
+
}>;
|
|
2209
2758
|
/**
|
|
2210
2759
|
* Returns a single object containing cluster details.
|
|
2211
2760
|
*/
|
|
2212
2761
|
export declare const zGetClusterResponse: z.ZodObject<{
|
|
2213
2762
|
name: z.ZodString;
|
|
2214
|
-
region: z.ZodOptional<z.ZodEnum<["staging", "northamerica-central-1"]>>;
|
|
2215
2763
|
tier: z.ZodEnum<["basic", "pro"]>;
|
|
2764
|
+
region: z.ZodOptional<z.ZodEnum<["staging", "northamerica-central-1", "europe-central-1a"]>>;
|
|
2216
2765
|
version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
2217
2766
|
id: z.ZodString;
|
|
2218
2767
|
status: z.ZodEnum<["active", "deleted", "creating", "deployed", "failed", "updating"]>;
|
|
@@ -2225,11 +2774,11 @@ export declare const zGetClusterResponse: z.ZodObject<{
|
|
|
2225
2774
|
}, "strip", z.ZodTypeAny, {
|
|
2226
2775
|
name: string;
|
|
2227
2776
|
id: string;
|
|
2228
|
-
status: "
|
|
2777
|
+
status: "deleted" | "failed" | "active" | "creating" | "deployed" | "updating";
|
|
2229
2778
|
version_channel: string;
|
|
2230
2779
|
tier: "basic" | "pro";
|
|
2231
2780
|
ready?: boolean | undefined;
|
|
2232
|
-
region?: "staging" | "northamerica-central-1" | undefined;
|
|
2781
|
+
region?: "staging" | "northamerica-central-1" | "europe-central-1a" | undefined;
|
|
2233
2782
|
version_current?: string | undefined;
|
|
2234
2783
|
created_at?: string | undefined;
|
|
2235
2784
|
updated_at?: string | undefined;
|
|
@@ -2238,10 +2787,10 @@ export declare const zGetClusterResponse: z.ZodObject<{
|
|
|
2238
2787
|
}, {
|
|
2239
2788
|
name: string;
|
|
2240
2789
|
id: string;
|
|
2241
|
-
status: "
|
|
2790
|
+
status: "deleted" | "failed" | "active" | "creating" | "deployed" | "updating";
|
|
2242
2791
|
tier: "basic" | "pro";
|
|
2243
2792
|
ready?: boolean | undefined;
|
|
2244
|
-
region?: "staging" | "northamerica-central-1" | undefined;
|
|
2793
|
+
region?: "staging" | "northamerica-central-1" | "europe-central-1a" | undefined;
|
|
2245
2794
|
version_channel?: string | undefined;
|
|
2246
2795
|
version_current?: string | undefined;
|
|
2247
2796
|
created_at?: string | undefined;
|
|
@@ -2250,26 +2799,55 @@ export declare const zGetClusterResponse: z.ZodObject<{
|
|
|
2250
2799
|
certificate_ca?: string | undefined;
|
|
2251
2800
|
}>;
|
|
2252
2801
|
export declare const zUpdateClusterData: z.ZodObject<{
|
|
2253
|
-
|
|
2254
|
-
|
|
2802
|
+
body: z.ZodObject<{
|
|
2803
|
+
name: z.ZodOptional<z.ZodString>;
|
|
2804
|
+
tier: z.ZodEnum<["basic", "pro"]>;
|
|
2805
|
+
version_channel: z.ZodOptional<z.ZodString>;
|
|
2806
|
+
}, "strip", z.ZodTypeAny, {
|
|
2807
|
+
tier: "basic" | "pro";
|
|
2808
|
+
name?: string | undefined;
|
|
2809
|
+
version_channel?: string | undefined;
|
|
2810
|
+
}, {
|
|
2811
|
+
tier: "basic" | "pro";
|
|
2812
|
+
name?: string | undefined;
|
|
2813
|
+
version_channel?: string | undefined;
|
|
2814
|
+
}>;
|
|
2815
|
+
path: z.ZodObject<{
|
|
2816
|
+
cluster_id: z.ZodString;
|
|
2817
|
+
}, "strip", z.ZodTypeAny, {
|
|
2818
|
+
cluster_id: string;
|
|
2819
|
+
}, {
|
|
2820
|
+
cluster_id: string;
|
|
2821
|
+
}>;
|
|
2822
|
+
query: z.ZodOptional<z.ZodNever>;
|
|
2255
2823
|
}, "strip", z.ZodTypeAny, {
|
|
2256
|
-
|
|
2257
|
-
|
|
2824
|
+
body: {
|
|
2825
|
+
tier: "basic" | "pro";
|
|
2826
|
+
name?: string | undefined;
|
|
2827
|
+
version_channel?: string | undefined;
|
|
2828
|
+
};
|
|
2829
|
+
path: {
|
|
2830
|
+
cluster_id: string;
|
|
2831
|
+
};
|
|
2832
|
+
query?: undefined;
|
|
2258
2833
|
}, {
|
|
2259
|
-
|
|
2260
|
-
|
|
2834
|
+
body: {
|
|
2835
|
+
tier: "basic" | "pro";
|
|
2836
|
+
name?: string | undefined;
|
|
2837
|
+
version_channel?: string | undefined;
|
|
2838
|
+
};
|
|
2839
|
+
path: {
|
|
2840
|
+
cluster_id: string;
|
|
2841
|
+
};
|
|
2842
|
+
query?: undefined;
|
|
2261
2843
|
}>;
|
|
2262
|
-
/**
|
|
2263
|
-
* Unique identifier of the cluster. UUID v4 string in canonical form
|
|
2264
|
-
*/
|
|
2265
|
-
export declare const zUpdateClusterParameterClusterId: z.ZodString;
|
|
2266
2844
|
/**
|
|
2267
2845
|
* Successfully updated. Returns updated cluster details.
|
|
2268
2846
|
*/
|
|
2269
2847
|
export declare const zUpdateClusterResponse: z.ZodObject<{
|
|
2270
2848
|
name: z.ZodString;
|
|
2271
|
-
region: z.ZodOptional<z.ZodEnum<["staging", "northamerica-central-1"]>>;
|
|
2272
2849
|
tier: z.ZodEnum<["basic", "pro"]>;
|
|
2850
|
+
region: z.ZodOptional<z.ZodEnum<["staging", "northamerica-central-1", "europe-central-1a"]>>;
|
|
2273
2851
|
version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
2274
2852
|
id: z.ZodString;
|
|
2275
2853
|
status: z.ZodEnum<["active", "deleted", "creating", "deployed", "failed", "updating"]>;
|
|
@@ -2282,11 +2860,11 @@ export declare const zUpdateClusterResponse: z.ZodObject<{
|
|
|
2282
2860
|
}, "strip", z.ZodTypeAny, {
|
|
2283
2861
|
name: string;
|
|
2284
2862
|
id: string;
|
|
2285
|
-
status: "
|
|
2863
|
+
status: "deleted" | "failed" | "active" | "creating" | "deployed" | "updating";
|
|
2286
2864
|
version_channel: string;
|
|
2287
2865
|
tier: "basic" | "pro";
|
|
2288
2866
|
ready?: boolean | undefined;
|
|
2289
|
-
region?: "staging" | "northamerica-central-1" | undefined;
|
|
2867
|
+
region?: "staging" | "northamerica-central-1" | "europe-central-1a" | undefined;
|
|
2290
2868
|
version_current?: string | undefined;
|
|
2291
2869
|
created_at?: string | undefined;
|
|
2292
2870
|
updated_at?: string | undefined;
|
|
@@ -2295,10 +2873,10 @@ export declare const zUpdateClusterResponse: z.ZodObject<{
|
|
|
2295
2873
|
}, {
|
|
2296
2874
|
name: string;
|
|
2297
2875
|
id: string;
|
|
2298
|
-
status: "
|
|
2876
|
+
status: "deleted" | "failed" | "active" | "creating" | "deployed" | "updating";
|
|
2299
2877
|
tier: "basic" | "pro";
|
|
2300
2878
|
ready?: boolean | undefined;
|
|
2301
|
-
region?: "staging" | "northamerica-central-1" | undefined;
|
|
2879
|
+
region?: "staging" | "northamerica-central-1" | "europe-central-1a" | undefined;
|
|
2302
2880
|
version_channel?: string | undefined;
|
|
2303
2881
|
version_current?: string | undefined;
|
|
2304
2882
|
created_at?: string | undefined;
|
|
@@ -2306,52 +2884,111 @@ export declare const zUpdateClusterResponse: z.ZodObject<{
|
|
|
2306
2884
|
endpoint?: string | undefined;
|
|
2307
2885
|
certificate_ca?: string | undefined;
|
|
2308
2886
|
}>;
|
|
2309
|
-
|
|
2310
|
-
|
|
2311
|
-
|
|
2312
|
-
|
|
2887
|
+
export declare const zGetJoinInformationData: z.ZodObject<{
|
|
2888
|
+
body: z.ZodOptional<z.ZodNever>;
|
|
2889
|
+
path: z.ZodObject<{
|
|
2890
|
+
cluster_id: z.ZodString;
|
|
2891
|
+
}, "strip", z.ZodTypeAny, {
|
|
2892
|
+
cluster_id: string;
|
|
2893
|
+
}, {
|
|
2894
|
+
cluster_id: string;
|
|
2895
|
+
}>;
|
|
2896
|
+
query: z.ZodOptional<z.ZodNever>;
|
|
2897
|
+
}, "strip", z.ZodTypeAny, {
|
|
2898
|
+
path: {
|
|
2899
|
+
cluster_id: string;
|
|
2900
|
+
};
|
|
2901
|
+
body?: undefined;
|
|
2902
|
+
query?: undefined;
|
|
2903
|
+
}, {
|
|
2904
|
+
path: {
|
|
2905
|
+
cluster_id: string;
|
|
2906
|
+
};
|
|
2907
|
+
body?: undefined;
|
|
2908
|
+
query?: undefined;
|
|
2909
|
+
}>;
|
|
2313
2910
|
/**
|
|
2314
2911
|
* An object of cluster join information
|
|
2315
2912
|
*/
|
|
2316
2913
|
export declare const zGetJoinInformationResponse: z.ZodObject<{
|
|
2317
|
-
|
|
2318
|
-
|
|
2319
|
-
|
|
2320
|
-
|
|
2321
|
-
|
|
2322
|
-
|
|
2323
|
-
|
|
2324
|
-
|
|
2325
|
-
|
|
2326
|
-
|
|
2327
|
-
|
|
2328
|
-
|
|
2329
|
-
|
|
2330
|
-
|
|
2331
|
-
|
|
2332
|
-
|
|
2333
|
-
|
|
2334
|
-
|
|
2335
|
-
|
|
2336
|
-
|
|
2337
|
-
|
|
2338
|
-
|
|
2339
|
-
|
|
2340
|
-
|
|
2341
|
-
|
|
2914
|
+
certificate_authority: z.ZodString;
|
|
2915
|
+
endpoint: z.ZodString;
|
|
2916
|
+
auth_key: z.ZodString;
|
|
2917
|
+
bootstrap_token: z.ZodString;
|
|
2918
|
+
versions: z.ZodObject<{
|
|
2919
|
+
kubernetes: z.ZodString;
|
|
2920
|
+
tailscale: z.ZodString;
|
|
2921
|
+
containerd: z.ZodString;
|
|
2922
|
+
nvidia_driver: z.ZodString;
|
|
2923
|
+
}, "strip", z.ZodTypeAny, {
|
|
2924
|
+
kubernetes: string;
|
|
2925
|
+
tailscale: string;
|
|
2926
|
+
containerd: string;
|
|
2927
|
+
nvidia_driver: string;
|
|
2928
|
+
}, {
|
|
2929
|
+
kubernetes: string;
|
|
2930
|
+
tailscale: string;
|
|
2931
|
+
containerd: string;
|
|
2932
|
+
nvidia_driver: string;
|
|
2933
|
+
}>;
|
|
2934
|
+
third_party_api_access_config: z.ZodObject<{
|
|
2935
|
+
metadata_url: z.ZodString;
|
|
2936
|
+
aws_role_arn: z.ZodString;
|
|
2937
|
+
gcp_workload_identity_provider: z.ZodString;
|
|
2938
|
+
}, "strip", z.ZodTypeAny, {
|
|
2939
|
+
metadata_url: string;
|
|
2940
|
+
aws_role_arn: string;
|
|
2941
|
+
gcp_workload_identity_provider: string;
|
|
2942
|
+
}, {
|
|
2943
|
+
metadata_url: string;
|
|
2944
|
+
aws_role_arn: string;
|
|
2945
|
+
gcp_workload_identity_provider: string;
|
|
2946
|
+
}>;
|
|
2947
|
+
}, "strip", z.ZodTypeAny, {
|
|
2948
|
+
certificate_authority: string;
|
|
2949
|
+
endpoint: string;
|
|
2950
|
+
auth_key: string;
|
|
2951
|
+
bootstrap_token: string;
|
|
2952
|
+
versions: {
|
|
2953
|
+
kubernetes: string;
|
|
2954
|
+
tailscale: string;
|
|
2955
|
+
containerd: string;
|
|
2956
|
+
nvidia_driver: string;
|
|
2957
|
+
};
|
|
2958
|
+
third_party_api_access_config: {
|
|
2959
|
+
metadata_url: string;
|
|
2960
|
+
aws_role_arn: string;
|
|
2961
|
+
gcp_workload_identity_provider: string;
|
|
2962
|
+
};
|
|
2342
2963
|
}, {
|
|
2343
|
-
|
|
2344
|
-
|
|
2345
|
-
|
|
2346
|
-
|
|
2347
|
-
|
|
2348
|
-
|
|
2349
|
-
|
|
2350
|
-
|
|
2351
|
-
|
|
2352
|
-
|
|
2353
|
-
|
|
2354
|
-
|
|
2964
|
+
certificate_authority: string;
|
|
2965
|
+
endpoint: string;
|
|
2966
|
+
auth_key: string;
|
|
2967
|
+
bootstrap_token: string;
|
|
2968
|
+
versions: {
|
|
2969
|
+
kubernetes: string;
|
|
2970
|
+
tailscale: string;
|
|
2971
|
+
containerd: string;
|
|
2972
|
+
nvidia_driver: string;
|
|
2973
|
+
};
|
|
2974
|
+
third_party_api_access_config: {
|
|
2975
|
+
metadata_url: string;
|
|
2976
|
+
aws_role_arn: string;
|
|
2977
|
+
gcp_workload_identity_provider: string;
|
|
2978
|
+
};
|
|
2979
|
+
}>;
|
|
2980
|
+
export declare const zListInvitesData: z.ZodObject<{
|
|
2981
|
+
body: z.ZodOptional<z.ZodNever>;
|
|
2982
|
+
path: z.ZodOptional<z.ZodNever>;
|
|
2983
|
+
query: z.ZodOptional<z.ZodNever>;
|
|
2984
|
+
}, "strip", z.ZodTypeAny, {
|
|
2985
|
+
body?: undefined;
|
|
2986
|
+
path?: undefined;
|
|
2987
|
+
query?: undefined;
|
|
2988
|
+
}, {
|
|
2989
|
+
body?: undefined;
|
|
2990
|
+
path?: undefined;
|
|
2991
|
+
query?: undefined;
|
|
2355
2992
|
}>;
|
|
2356
2993
|
/**
|
|
2357
2994
|
* An array of invites
|
|
@@ -2376,11 +3013,27 @@ export declare const zListInvitesResponse: z.ZodArray<z.ZodObject<{
|
|
|
2376
3013
|
organization_id?: string | undefined;
|
|
2377
3014
|
}>, "many">;
|
|
2378
3015
|
export declare const zCreateInviteData: z.ZodObject<{
|
|
2379
|
-
|
|
3016
|
+
body: z.ZodObject<{
|
|
3017
|
+
email: z.ZodOptional<z.ZodString>;
|
|
3018
|
+
}, "strip", z.ZodTypeAny, {
|
|
3019
|
+
email?: string | undefined;
|
|
3020
|
+
}, {
|
|
3021
|
+
email?: string | undefined;
|
|
3022
|
+
}>;
|
|
3023
|
+
path: z.ZodOptional<z.ZodNever>;
|
|
3024
|
+
query: z.ZodOptional<z.ZodNever>;
|
|
2380
3025
|
}, "strip", z.ZodTypeAny, {
|
|
2381
|
-
|
|
3026
|
+
body: {
|
|
3027
|
+
email?: string | undefined;
|
|
3028
|
+
};
|
|
3029
|
+
path?: undefined;
|
|
3030
|
+
query?: undefined;
|
|
2382
3031
|
}, {
|
|
2383
|
-
|
|
3032
|
+
body: {
|
|
3033
|
+
email?: string | undefined;
|
|
3034
|
+
};
|
|
3035
|
+
path?: undefined;
|
|
3036
|
+
query?: undefined;
|
|
2384
3037
|
}>;
|
|
2385
3038
|
/**
|
|
2386
3039
|
* Successfully created. Returns created invite details.
|
|
@@ -2404,10 +3057,29 @@ export declare const zCreateInviteResponse: z.ZodObject<{
|
|
|
2404
3057
|
email?: string | undefined;
|
|
2405
3058
|
organization_id?: string | undefined;
|
|
2406
3059
|
}>;
|
|
2407
|
-
|
|
2408
|
-
|
|
2409
|
-
|
|
2410
|
-
|
|
3060
|
+
export declare const zGetInviteData: z.ZodObject<{
|
|
3061
|
+
body: z.ZodOptional<z.ZodNever>;
|
|
3062
|
+
path: z.ZodObject<{
|
|
3063
|
+
code: z.ZodString;
|
|
3064
|
+
}, "strip", z.ZodTypeAny, {
|
|
3065
|
+
code: string;
|
|
3066
|
+
}, {
|
|
3067
|
+
code: string;
|
|
3068
|
+
}>;
|
|
3069
|
+
query: z.ZodOptional<z.ZodNever>;
|
|
3070
|
+
}, "strip", z.ZodTypeAny, {
|
|
3071
|
+
path: {
|
|
3072
|
+
code: string;
|
|
3073
|
+
};
|
|
3074
|
+
body?: undefined;
|
|
3075
|
+
query?: undefined;
|
|
3076
|
+
}, {
|
|
3077
|
+
path: {
|
|
3078
|
+
code: string;
|
|
3079
|
+
};
|
|
3080
|
+
body?: undefined;
|
|
3081
|
+
query?: undefined;
|
|
3082
|
+
}>;
|
|
2411
3083
|
/**
|
|
2412
3084
|
* Returns a single object containing invite details.
|
|
2413
3085
|
*/
|
|
@@ -2430,10 +3102,42 @@ export declare const zGetInviteResponse: z.ZodObject<{
|
|
|
2430
3102
|
email?: string | undefined;
|
|
2431
3103
|
organization_id?: string | undefined;
|
|
2432
3104
|
}>;
|
|
2433
|
-
|
|
2434
|
-
|
|
2435
|
-
|
|
2436
|
-
|
|
3105
|
+
export declare const zDeleteInviteData: z.ZodObject<{
|
|
3106
|
+
body: z.ZodOptional<z.ZodNever>;
|
|
3107
|
+
path: z.ZodObject<{
|
|
3108
|
+
email: z.ZodString;
|
|
3109
|
+
}, "strip", z.ZodTypeAny, {
|
|
3110
|
+
email: string;
|
|
3111
|
+
}, {
|
|
3112
|
+
email: string;
|
|
3113
|
+
}>;
|
|
3114
|
+
query: z.ZodOptional<z.ZodNever>;
|
|
3115
|
+
}, "strip", z.ZodTypeAny, {
|
|
3116
|
+
path: {
|
|
3117
|
+
email: string;
|
|
3118
|
+
};
|
|
3119
|
+
body?: undefined;
|
|
3120
|
+
query?: undefined;
|
|
3121
|
+
}, {
|
|
3122
|
+
path: {
|
|
3123
|
+
email: string;
|
|
3124
|
+
};
|
|
3125
|
+
body?: undefined;
|
|
3126
|
+
query?: undefined;
|
|
3127
|
+
}>;
|
|
3128
|
+
export declare const zListMarketplaceChartsData: z.ZodObject<{
|
|
3129
|
+
body: z.ZodOptional<z.ZodNever>;
|
|
3130
|
+
path: z.ZodOptional<z.ZodNever>;
|
|
3131
|
+
query: z.ZodOptional<z.ZodNever>;
|
|
3132
|
+
}, "strip", z.ZodTypeAny, {
|
|
3133
|
+
body?: undefined;
|
|
3134
|
+
path?: undefined;
|
|
3135
|
+
query?: undefined;
|
|
3136
|
+
}, {
|
|
3137
|
+
body?: undefined;
|
|
3138
|
+
path?: undefined;
|
|
3139
|
+
query?: undefined;
|
|
3140
|
+
}>;
|
|
2437
3141
|
/**
|
|
2438
3142
|
* An array of chart listings in the marketplace.
|
|
2439
3143
|
*/
|
|
@@ -2488,10 +3192,29 @@ export declare const zListMarketplaceChartsResponse: z.ZodArray<z.ZodObject<{
|
|
|
2488
3192
|
placeholder: string;
|
|
2489
3193
|
}[];
|
|
2490
3194
|
}>, "many">;
|
|
2491
|
-
|
|
2492
|
-
|
|
2493
|
-
|
|
2494
|
-
|
|
3195
|
+
export declare const zGetMarketplaceChartData: z.ZodObject<{
|
|
3196
|
+
body: z.ZodOptional<z.ZodNever>;
|
|
3197
|
+
path: z.ZodObject<{
|
|
3198
|
+
listing_id: z.ZodString;
|
|
3199
|
+
}, "strip", z.ZodTypeAny, {
|
|
3200
|
+
listing_id: string;
|
|
3201
|
+
}, {
|
|
3202
|
+
listing_id: string;
|
|
3203
|
+
}>;
|
|
3204
|
+
query: z.ZodOptional<z.ZodNever>;
|
|
3205
|
+
}, "strip", z.ZodTypeAny, {
|
|
3206
|
+
path: {
|
|
3207
|
+
listing_id: string;
|
|
3208
|
+
};
|
|
3209
|
+
body?: undefined;
|
|
3210
|
+
query?: undefined;
|
|
3211
|
+
}, {
|
|
3212
|
+
path: {
|
|
3213
|
+
listing_id: string;
|
|
3214
|
+
};
|
|
3215
|
+
body?: undefined;
|
|
3216
|
+
query?: undefined;
|
|
3217
|
+
}>;
|
|
2495
3218
|
/**
|
|
2496
3219
|
* Returns an object containing the chart listing details.
|
|
2497
3220
|
*/
|
|
@@ -2546,6 +3269,19 @@ export declare const zGetMarketplaceChartResponse: z.ZodObject<{
|
|
|
2546
3269
|
placeholder: string;
|
|
2547
3270
|
}[];
|
|
2548
3271
|
}>;
|
|
3272
|
+
export declare const zGetOrganizationData: z.ZodObject<{
|
|
3273
|
+
body: z.ZodOptional<z.ZodNever>;
|
|
3274
|
+
path: z.ZodOptional<z.ZodNever>;
|
|
3275
|
+
query: z.ZodOptional<z.ZodNever>;
|
|
3276
|
+
}, "strip", z.ZodTypeAny, {
|
|
3277
|
+
body?: undefined;
|
|
3278
|
+
path?: undefined;
|
|
3279
|
+
query?: undefined;
|
|
3280
|
+
}, {
|
|
3281
|
+
body?: undefined;
|
|
3282
|
+
path?: undefined;
|
|
3283
|
+
query?: undefined;
|
|
3284
|
+
}>;
|
|
2549
3285
|
/**
|
|
2550
3286
|
* Returns a single object containing organization details.
|
|
2551
3287
|
*/
|
|
@@ -2635,23 +3371,60 @@ export declare const zGetOrganizationResponse: z.ZodObject<{
|
|
|
2635
3371
|
name?: string | undefined;
|
|
2636
3372
|
}>;
|
|
2637
3373
|
export declare const zCreateOrganizationData: z.ZodObject<{
|
|
2638
|
-
|
|
2639
|
-
|
|
2640
|
-
|
|
2641
|
-
|
|
2642
|
-
|
|
2643
|
-
|
|
2644
|
-
|
|
2645
|
-
|
|
2646
|
-
|
|
2647
|
-
|
|
2648
|
-
|
|
2649
|
-
|
|
2650
|
-
|
|
2651
|
-
|
|
2652
|
-
|
|
2653
|
-
|
|
2654
|
-
|
|
3374
|
+
body: z.ZodObject<{
|
|
3375
|
+
email: z.ZodString;
|
|
3376
|
+
first_name: z.ZodString;
|
|
3377
|
+
last_name: z.ZodString;
|
|
3378
|
+
company_name: z.ZodString;
|
|
3379
|
+
password: z.ZodString;
|
|
3380
|
+
}, "strip", z.ZodTypeAny, {
|
|
3381
|
+
email: string;
|
|
3382
|
+
first_name: string;
|
|
3383
|
+
last_name: string;
|
|
3384
|
+
company_name: string;
|
|
3385
|
+
password: string;
|
|
3386
|
+
}, {
|
|
3387
|
+
email: string;
|
|
3388
|
+
first_name: string;
|
|
3389
|
+
last_name: string;
|
|
3390
|
+
company_name: string;
|
|
3391
|
+
password: string;
|
|
3392
|
+
}>;
|
|
3393
|
+
path: z.ZodOptional<z.ZodNever>;
|
|
3394
|
+
query: z.ZodOptional<z.ZodNever>;
|
|
3395
|
+
}, "strip", z.ZodTypeAny, {
|
|
3396
|
+
body: {
|
|
3397
|
+
email: string;
|
|
3398
|
+
first_name: string;
|
|
3399
|
+
last_name: string;
|
|
3400
|
+
company_name: string;
|
|
3401
|
+
password: string;
|
|
3402
|
+
};
|
|
3403
|
+
path?: undefined;
|
|
3404
|
+
query?: undefined;
|
|
3405
|
+
}, {
|
|
3406
|
+
body: {
|
|
3407
|
+
email: string;
|
|
3408
|
+
first_name: string;
|
|
3409
|
+
last_name: string;
|
|
3410
|
+
company_name: string;
|
|
3411
|
+
password: string;
|
|
3412
|
+
};
|
|
3413
|
+
path?: undefined;
|
|
3414
|
+
query?: undefined;
|
|
3415
|
+
}>;
|
|
3416
|
+
export declare const zListTokensData: z.ZodObject<{
|
|
3417
|
+
body: z.ZodOptional<z.ZodNever>;
|
|
3418
|
+
path: z.ZodOptional<z.ZodNever>;
|
|
3419
|
+
query: z.ZodOptional<z.ZodNever>;
|
|
3420
|
+
}, "strip", z.ZodTypeAny, {
|
|
3421
|
+
body?: undefined;
|
|
3422
|
+
path?: undefined;
|
|
3423
|
+
query?: undefined;
|
|
3424
|
+
}, {
|
|
3425
|
+
body?: undefined;
|
|
3426
|
+
path?: undefined;
|
|
3427
|
+
query?: undefined;
|
|
2655
3428
|
}>;
|
|
2656
3429
|
/**
|
|
2657
3430
|
* Returns a list of access token details with masked secrets.
|
|
@@ -2676,14 +3449,32 @@ export declare const zListTokensResponse: z.ZodArray<z.ZodObject<{
|
|
|
2676
3449
|
secret?: string | undefined;
|
|
2677
3450
|
}>, "many">;
|
|
2678
3451
|
export declare const zCreateTokenData: z.ZodObject<{
|
|
2679
|
-
|
|
2680
|
-
|
|
3452
|
+
body: z.ZodObject<{
|
|
3453
|
+
name: z.ZodString;
|
|
3454
|
+
role: z.ZodEnum<["Administrator", "User"]>;
|
|
3455
|
+
}, "strip", z.ZodTypeAny, {
|
|
3456
|
+
name: string;
|
|
3457
|
+
role: "Administrator" | "User";
|
|
3458
|
+
}, {
|
|
3459
|
+
name: string;
|
|
3460
|
+
role: "Administrator" | "User";
|
|
3461
|
+
}>;
|
|
3462
|
+
path: z.ZodOptional<z.ZodNever>;
|
|
3463
|
+
query: z.ZodOptional<z.ZodNever>;
|
|
2681
3464
|
}, "strip", z.ZodTypeAny, {
|
|
2682
|
-
|
|
2683
|
-
|
|
3465
|
+
body: {
|
|
3466
|
+
name: string;
|
|
3467
|
+
role: "Administrator" | "User";
|
|
3468
|
+
};
|
|
3469
|
+
path?: undefined;
|
|
3470
|
+
query?: undefined;
|
|
2684
3471
|
}, {
|
|
2685
|
-
|
|
2686
|
-
|
|
3472
|
+
body: {
|
|
3473
|
+
name: string;
|
|
3474
|
+
role: "Administrator" | "User";
|
|
3475
|
+
};
|
|
3476
|
+
path?: undefined;
|
|
3477
|
+
query?: undefined;
|
|
2687
3478
|
}>;
|
|
2688
3479
|
/**
|
|
2689
3480
|
* Successfully created. Returns created token details with unmasked/raw secret.
|
|
@@ -2707,14 +3498,52 @@ export declare const zCreateTokenResponse: z.ZodObject<{
|
|
|
2707
3498
|
id?: string | undefined;
|
|
2708
3499
|
secret?: string | undefined;
|
|
2709
3500
|
}>;
|
|
2710
|
-
|
|
2711
|
-
|
|
2712
|
-
|
|
2713
|
-
|
|
2714
|
-
|
|
2715
|
-
|
|
2716
|
-
|
|
2717
|
-
|
|
3501
|
+
export declare const zDeleteTokenData: z.ZodObject<{
|
|
3502
|
+
body: z.ZodOptional<z.ZodNever>;
|
|
3503
|
+
path: z.ZodObject<{
|
|
3504
|
+
token_id: z.ZodString;
|
|
3505
|
+
}, "strip", z.ZodTypeAny, {
|
|
3506
|
+
token_id: string;
|
|
3507
|
+
}, {
|
|
3508
|
+
token_id: string;
|
|
3509
|
+
}>;
|
|
3510
|
+
query: z.ZodOptional<z.ZodNever>;
|
|
3511
|
+
}, "strip", z.ZodTypeAny, {
|
|
3512
|
+
path: {
|
|
3513
|
+
token_id: string;
|
|
3514
|
+
};
|
|
3515
|
+
body?: undefined;
|
|
3516
|
+
query?: undefined;
|
|
3517
|
+
}, {
|
|
3518
|
+
path: {
|
|
3519
|
+
token_id: string;
|
|
3520
|
+
};
|
|
3521
|
+
body?: undefined;
|
|
3522
|
+
query?: undefined;
|
|
3523
|
+
}>;
|
|
3524
|
+
export declare const zGetTokenData: z.ZodObject<{
|
|
3525
|
+
body: z.ZodOptional<z.ZodNever>;
|
|
3526
|
+
path: z.ZodObject<{
|
|
3527
|
+
token_id: z.ZodString;
|
|
3528
|
+
}, "strip", z.ZodTypeAny, {
|
|
3529
|
+
token_id: string;
|
|
3530
|
+
}, {
|
|
3531
|
+
token_id: string;
|
|
3532
|
+
}>;
|
|
3533
|
+
query: z.ZodOptional<z.ZodNever>;
|
|
3534
|
+
}, "strip", z.ZodTypeAny, {
|
|
3535
|
+
path: {
|
|
3536
|
+
token_id: string;
|
|
3537
|
+
};
|
|
3538
|
+
body?: undefined;
|
|
3539
|
+
query?: undefined;
|
|
3540
|
+
}, {
|
|
3541
|
+
path: {
|
|
3542
|
+
token_id: string;
|
|
3543
|
+
};
|
|
3544
|
+
body?: undefined;
|
|
3545
|
+
query?: undefined;
|
|
3546
|
+
}>;
|
|
2718
3547
|
/**
|
|
2719
3548
|
* Returns access token details with masked secret.
|
|
2720
3549
|
*/
|
|
@@ -2738,19 +3567,43 @@ export declare const zGetTokenResponse: z.ZodObject<{
|
|
|
2738
3567
|
secret?: string | undefined;
|
|
2739
3568
|
}>;
|
|
2740
3569
|
export declare const zUpdateTokenData: z.ZodObject<{
|
|
2741
|
-
|
|
2742
|
-
|
|
3570
|
+
body: z.ZodObject<{
|
|
3571
|
+
name: z.ZodOptional<z.ZodString>;
|
|
3572
|
+
role: z.ZodOptional<z.ZodEnum<["Administrator", "User"]>>;
|
|
3573
|
+
}, "strip", z.ZodTypeAny, {
|
|
3574
|
+
name?: string | undefined;
|
|
3575
|
+
role?: "Administrator" | "User" | undefined;
|
|
3576
|
+
}, {
|
|
3577
|
+
name?: string | undefined;
|
|
3578
|
+
role?: "Administrator" | "User" | undefined;
|
|
3579
|
+
}>;
|
|
3580
|
+
path: z.ZodObject<{
|
|
3581
|
+
token_id: z.ZodString;
|
|
3582
|
+
}, "strip", z.ZodTypeAny, {
|
|
3583
|
+
token_id: string;
|
|
3584
|
+
}, {
|
|
3585
|
+
token_id: string;
|
|
3586
|
+
}>;
|
|
3587
|
+
query: z.ZodOptional<z.ZodNever>;
|
|
2743
3588
|
}, "strip", z.ZodTypeAny, {
|
|
2744
|
-
|
|
2745
|
-
|
|
3589
|
+
body: {
|
|
3590
|
+
name?: string | undefined;
|
|
3591
|
+
role?: "Administrator" | "User" | undefined;
|
|
3592
|
+
};
|
|
3593
|
+
path: {
|
|
3594
|
+
token_id: string;
|
|
3595
|
+
};
|
|
3596
|
+
query?: undefined;
|
|
2746
3597
|
}, {
|
|
2747
|
-
|
|
2748
|
-
|
|
3598
|
+
body: {
|
|
3599
|
+
name?: string | undefined;
|
|
3600
|
+
role?: "Administrator" | "User" | undefined;
|
|
3601
|
+
};
|
|
3602
|
+
path: {
|
|
3603
|
+
token_id: string;
|
|
3604
|
+
};
|
|
3605
|
+
query?: undefined;
|
|
2749
3606
|
}>;
|
|
2750
|
-
/**
|
|
2751
|
-
* Generated unique identifier of the access token.
|
|
2752
|
-
*/
|
|
2753
|
-
export declare const zUpdateTokenParameterTokenId: z.ZodString;
|
|
2754
3607
|
/**
|
|
2755
3608
|
* Successfully updated. Returns updated token details with masked secret.
|
|
2756
3609
|
*/
|
|
@@ -2773,10 +3626,29 @@ export declare const zUpdateTokenResponse: z.ZodObject<{
|
|
|
2773
3626
|
id?: string | undefined;
|
|
2774
3627
|
secret?: string | undefined;
|
|
2775
3628
|
}>;
|
|
2776
|
-
|
|
2777
|
-
|
|
2778
|
-
|
|
2779
|
-
|
|
3629
|
+
export declare const zRegenerateTokenData: z.ZodObject<{
|
|
3630
|
+
body: z.ZodOptional<z.ZodNever>;
|
|
3631
|
+
path: z.ZodObject<{
|
|
3632
|
+
token_id: z.ZodString;
|
|
3633
|
+
}, "strip", z.ZodTypeAny, {
|
|
3634
|
+
token_id: string;
|
|
3635
|
+
}, {
|
|
3636
|
+
token_id: string;
|
|
3637
|
+
}>;
|
|
3638
|
+
query: z.ZodOptional<z.ZodNever>;
|
|
3639
|
+
}, "strip", z.ZodTypeAny, {
|
|
3640
|
+
path: {
|
|
3641
|
+
token_id: string;
|
|
3642
|
+
};
|
|
3643
|
+
body?: undefined;
|
|
3644
|
+
query?: undefined;
|
|
3645
|
+
}, {
|
|
3646
|
+
path: {
|
|
3647
|
+
token_id: string;
|
|
3648
|
+
};
|
|
3649
|
+
body?: undefined;
|
|
3650
|
+
query?: undefined;
|
|
3651
|
+
}>;
|
|
2780
3652
|
/**
|
|
2781
3653
|
* Successfully updated. Returns updated token details with unmasked / raw secret.
|
|
2782
3654
|
*/
|
|
@@ -2799,10 +3671,29 @@ export declare const zRegenerateTokenResponse: z.ZodObject<{
|
|
|
2799
3671
|
id?: string | undefined;
|
|
2800
3672
|
secret?: string | undefined;
|
|
2801
3673
|
}>;
|
|
2802
|
-
|
|
2803
|
-
|
|
2804
|
-
|
|
2805
|
-
|
|
3674
|
+
export declare const zListUserOrganizationsData: z.ZodObject<{
|
|
3675
|
+
body: z.ZodOptional<z.ZodNever>;
|
|
3676
|
+
path: z.ZodObject<{
|
|
3677
|
+
email: z.ZodString;
|
|
3678
|
+
}, "strip", z.ZodTypeAny, {
|
|
3679
|
+
email: string;
|
|
3680
|
+
}, {
|
|
3681
|
+
email: string;
|
|
3682
|
+
}>;
|
|
3683
|
+
query: z.ZodOptional<z.ZodNever>;
|
|
3684
|
+
}, "strip", z.ZodTypeAny, {
|
|
3685
|
+
path: {
|
|
3686
|
+
email: string;
|
|
3687
|
+
};
|
|
3688
|
+
body?: undefined;
|
|
3689
|
+
query?: undefined;
|
|
3690
|
+
}, {
|
|
3691
|
+
path: {
|
|
3692
|
+
email: string;
|
|
3693
|
+
};
|
|
3694
|
+
body?: undefined;
|
|
3695
|
+
query?: undefined;
|
|
3696
|
+
}>;
|
|
2806
3697
|
/**
|
|
2807
3698
|
* An array of organizations the user belongs to.
|
|
2808
3699
|
*/
|
|
@@ -2816,6 +3707,19 @@ export declare const zListUserOrganizationsResponse: z.ZodArray<z.ZodObject<{
|
|
|
2816
3707
|
realm?: string | undefined;
|
|
2817
3708
|
displayName?: string | undefined;
|
|
2818
3709
|
}>, "many">;
|
|
3710
|
+
export declare const zListUsersData: z.ZodObject<{
|
|
3711
|
+
body: z.ZodOptional<z.ZodNever>;
|
|
3712
|
+
path: z.ZodOptional<z.ZodNever>;
|
|
3713
|
+
query: z.ZodOptional<z.ZodNever>;
|
|
3714
|
+
}, "strip", z.ZodTypeAny, {
|
|
3715
|
+
body?: undefined;
|
|
3716
|
+
path?: undefined;
|
|
3717
|
+
query?: undefined;
|
|
3718
|
+
}, {
|
|
3719
|
+
body?: undefined;
|
|
3720
|
+
path?: undefined;
|
|
3721
|
+
query?: undefined;
|
|
3722
|
+
}>;
|
|
2819
3723
|
/**
|
|
2820
3724
|
* An array of users
|
|
2821
3725
|
*/
|
|
@@ -2845,29 +3749,57 @@ export declare const zListUsersResponse: z.ZodArray<z.ZodObject<{
|
|
|
2845
3749
|
date_created: string;
|
|
2846
3750
|
}>, "many">;
|
|
2847
3751
|
export declare const zCreateUserData: z.ZodObject<{
|
|
2848
|
-
|
|
2849
|
-
|
|
2850
|
-
|
|
2851
|
-
|
|
2852
|
-
|
|
2853
|
-
|
|
2854
|
-
|
|
2855
|
-
|
|
2856
|
-
|
|
2857
|
-
|
|
2858
|
-
|
|
2859
|
-
|
|
2860
|
-
|
|
2861
|
-
|
|
2862
|
-
|
|
2863
|
-
|
|
2864
|
-
|
|
2865
|
-
|
|
2866
|
-
|
|
2867
|
-
|
|
2868
|
-
|
|
2869
|
-
|
|
2870
|
-
|
|
3752
|
+
body: z.ZodObject<{
|
|
3753
|
+
email: z.ZodString;
|
|
3754
|
+
first_name: z.ZodString;
|
|
3755
|
+
last_name: z.ZodString;
|
|
3756
|
+
code: z.ZodString;
|
|
3757
|
+
password: z.ZodString;
|
|
3758
|
+
status: z.ZodOptional<z.ZodEnum<["active", "inactive"]>>;
|
|
3759
|
+
role: z.ZodOptional<z.ZodEnum<["Administrator", "User"]>>;
|
|
3760
|
+
}, "strip", z.ZodTypeAny, {
|
|
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
|
+
code: string;
|
|
3770
|
+
email: string;
|
|
3771
|
+
first_name: string;
|
|
3772
|
+
last_name: string;
|
|
3773
|
+
password: string;
|
|
3774
|
+
role?: "Administrator" | "User" | undefined;
|
|
3775
|
+
status?: "active" | "inactive" | undefined;
|
|
3776
|
+
}>;
|
|
3777
|
+
path: z.ZodOptional<z.ZodNever>;
|
|
3778
|
+
query: z.ZodOptional<z.ZodNever>;
|
|
3779
|
+
}, "strip", z.ZodTypeAny, {
|
|
3780
|
+
body: {
|
|
3781
|
+
code: string;
|
|
3782
|
+
email: string;
|
|
3783
|
+
first_name: string;
|
|
3784
|
+
last_name: string;
|
|
3785
|
+
password: string;
|
|
3786
|
+
role?: "Administrator" | "User" | undefined;
|
|
3787
|
+
status?: "active" | "inactive" | undefined;
|
|
3788
|
+
};
|
|
3789
|
+
path?: undefined;
|
|
3790
|
+
query?: undefined;
|
|
3791
|
+
}, {
|
|
3792
|
+
body: {
|
|
3793
|
+
code: string;
|
|
3794
|
+
email: string;
|
|
3795
|
+
first_name: string;
|
|
3796
|
+
last_name: string;
|
|
3797
|
+
password: string;
|
|
3798
|
+
role?: "Administrator" | "User" | undefined;
|
|
3799
|
+
status?: "active" | "inactive" | undefined;
|
|
3800
|
+
};
|
|
3801
|
+
path?: undefined;
|
|
3802
|
+
query?: undefined;
|
|
2871
3803
|
}>;
|
|
2872
3804
|
/**
|
|
2873
3805
|
* Successfully created. Returns created user details.
|
|
@@ -2897,10 +3829,29 @@ export declare const zCreateUserResponse: z.ZodObject<{
|
|
|
2897
3829
|
last_name: string;
|
|
2898
3830
|
date_created: string;
|
|
2899
3831
|
}>;
|
|
2900
|
-
|
|
2901
|
-
|
|
2902
|
-
|
|
2903
|
-
|
|
3832
|
+
export declare const zDeleteUserData: z.ZodObject<{
|
|
3833
|
+
body: z.ZodOptional<z.ZodNever>;
|
|
3834
|
+
path: z.ZodObject<{
|
|
3835
|
+
user_id: z.ZodString;
|
|
3836
|
+
}, "strip", z.ZodTypeAny, {
|
|
3837
|
+
user_id: string;
|
|
3838
|
+
}, {
|
|
3839
|
+
user_id: string;
|
|
3840
|
+
}>;
|
|
3841
|
+
query: z.ZodOptional<z.ZodNever>;
|
|
3842
|
+
}, "strip", z.ZodTypeAny, {
|
|
3843
|
+
path: {
|
|
3844
|
+
user_id: string;
|
|
3845
|
+
};
|
|
3846
|
+
body?: undefined;
|
|
3847
|
+
query?: undefined;
|
|
3848
|
+
}, {
|
|
3849
|
+
path: {
|
|
3850
|
+
user_id: string;
|
|
3851
|
+
};
|
|
3852
|
+
body?: undefined;
|
|
3853
|
+
query?: undefined;
|
|
3854
|
+
}>;
|
|
2904
3855
|
/**
|
|
2905
3856
|
* User profile information
|
|
2906
3857
|
*/
|
|
@@ -2929,10 +3880,29 @@ export declare const zDeleteUserResponse: z.ZodObject<{
|
|
|
2929
3880
|
last_name: string;
|
|
2930
3881
|
date_created: string;
|
|
2931
3882
|
}>;
|
|
2932
|
-
|
|
2933
|
-
|
|
2934
|
-
|
|
2935
|
-
|
|
3883
|
+
export declare const zGetUserData: z.ZodObject<{
|
|
3884
|
+
body: z.ZodOptional<z.ZodNever>;
|
|
3885
|
+
path: z.ZodObject<{
|
|
3886
|
+
user_id: z.ZodString;
|
|
3887
|
+
}, "strip", z.ZodTypeAny, {
|
|
3888
|
+
user_id: string;
|
|
3889
|
+
}, {
|
|
3890
|
+
user_id: string;
|
|
3891
|
+
}>;
|
|
3892
|
+
query: z.ZodOptional<z.ZodNever>;
|
|
3893
|
+
}, "strip", z.ZodTypeAny, {
|
|
3894
|
+
path: {
|
|
3895
|
+
user_id: string;
|
|
3896
|
+
};
|
|
3897
|
+
body?: undefined;
|
|
3898
|
+
query?: undefined;
|
|
3899
|
+
}, {
|
|
3900
|
+
path: {
|
|
3901
|
+
user_id: string;
|
|
3902
|
+
};
|
|
3903
|
+
body?: undefined;
|
|
3904
|
+
query?: undefined;
|
|
3905
|
+
}>;
|
|
2936
3906
|
/**
|
|
2937
3907
|
* User profile information
|
|
2938
3908
|
*/
|
|
@@ -2962,28 +3932,58 @@ export declare const zGetUserResponse: z.ZodObject<{
|
|
|
2962
3932
|
date_created: string;
|
|
2963
3933
|
}>;
|
|
2964
3934
|
export declare const zUpdateUserData: z.ZodObject<{
|
|
2965
|
-
|
|
2966
|
-
|
|
2967
|
-
|
|
2968
|
-
|
|
2969
|
-
|
|
2970
|
-
|
|
2971
|
-
|
|
2972
|
-
|
|
2973
|
-
|
|
2974
|
-
|
|
2975
|
-
|
|
2976
|
-
|
|
2977
|
-
|
|
2978
|
-
|
|
2979
|
-
|
|
2980
|
-
|
|
2981
|
-
|
|
3935
|
+
body: z.ZodObject<{
|
|
3936
|
+
email: z.ZodOptional<z.ZodString>;
|
|
3937
|
+
first_name: z.ZodOptional<z.ZodString>;
|
|
3938
|
+
last_name: z.ZodOptional<z.ZodString>;
|
|
3939
|
+
role: z.ZodOptional<z.ZodEnum<["Administrator", "User"]>>;
|
|
3940
|
+
status: z.ZodOptional<z.ZodEnum<["active", "inactive"]>>;
|
|
3941
|
+
}, "strip", z.ZodTypeAny, {
|
|
3942
|
+
role?: "Administrator" | "User" | undefined;
|
|
3943
|
+
email?: string | undefined;
|
|
3944
|
+
status?: "active" | "inactive" | undefined;
|
|
3945
|
+
first_name?: string | undefined;
|
|
3946
|
+
last_name?: string | undefined;
|
|
3947
|
+
}, {
|
|
3948
|
+
role?: "Administrator" | "User" | undefined;
|
|
3949
|
+
email?: string | undefined;
|
|
3950
|
+
status?: "active" | "inactive" | undefined;
|
|
3951
|
+
first_name?: string | undefined;
|
|
3952
|
+
last_name?: string | undefined;
|
|
3953
|
+
}>;
|
|
3954
|
+
path: z.ZodObject<{
|
|
3955
|
+
user_id: z.ZodString;
|
|
3956
|
+
}, "strip", z.ZodTypeAny, {
|
|
3957
|
+
user_id: string;
|
|
3958
|
+
}, {
|
|
3959
|
+
user_id: string;
|
|
3960
|
+
}>;
|
|
3961
|
+
query: z.ZodOptional<z.ZodNever>;
|
|
3962
|
+
}, "strip", z.ZodTypeAny, {
|
|
3963
|
+
body: {
|
|
3964
|
+
role?: "Administrator" | "User" | undefined;
|
|
3965
|
+
email?: string | undefined;
|
|
3966
|
+
status?: "active" | "inactive" | undefined;
|
|
3967
|
+
first_name?: string | undefined;
|
|
3968
|
+
last_name?: string | undefined;
|
|
3969
|
+
};
|
|
3970
|
+
path: {
|
|
3971
|
+
user_id: string;
|
|
3972
|
+
};
|
|
3973
|
+
query?: undefined;
|
|
3974
|
+
}, {
|
|
3975
|
+
body: {
|
|
3976
|
+
role?: "Administrator" | "User" | undefined;
|
|
3977
|
+
email?: string | undefined;
|
|
3978
|
+
status?: "active" | "inactive" | undefined;
|
|
3979
|
+
first_name?: string | undefined;
|
|
3980
|
+
last_name?: string | undefined;
|
|
3981
|
+
};
|
|
3982
|
+
path: {
|
|
3983
|
+
user_id: string;
|
|
3984
|
+
};
|
|
3985
|
+
query?: undefined;
|
|
2982
3986
|
}>;
|
|
2983
|
-
/**
|
|
2984
|
-
* Unique user identifier. UUID v4 string in canonical form
|
|
2985
|
-
*/
|
|
2986
|
-
export declare const zUpdateUserParameterUserId: z.ZodString;
|
|
2987
3987
|
/**
|
|
2988
3988
|
* Successfully created. Returns created user details.
|
|
2989
3989
|
*/
|