@cloudfleet/sdk 0.0.1-e2d1408 → 0.0.1-e80cef7
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.gen.d.ts +13 -0
- package/dist/client.gen.d.ts.map +1 -0
- package/dist/client.gen.js +6 -0
- package/dist/client.gen.js.map +1 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +3 -0
- package/dist/index.js.map +1 -1
- package/dist/schemas.gen.d.ts +436 -678
- package/dist/schemas.gen.d.ts.map +1 -1
- package/dist/schemas.gen.js +436 -686
- package/dist/schemas.gen.js.map +1 -1
- package/dist/sdk.gen.d.ts +110 -97
- package/dist/sdk.gen.d.ts.map +1 -1
- package/dist/sdk.gen.js +202 -136
- package/dist/sdk.gen.js.map +1 -1
- package/dist/services/kubernetes/api.d.ts +196 -0
- package/dist/services/kubernetes/api.d.ts.map +1 -0
- package/dist/services/kubernetes/api.js +140 -0
- package/dist/services/kubernetes/api.js.map +1 -0
- package/dist/services/kubernetes/index.d.ts +44 -0
- package/dist/services/kubernetes/index.d.ts.map +1 -0
- package/dist/services/kubernetes/index.js +68 -0
- package/dist/services/kubernetes/index.js.map +1 -0
- package/dist/services/kubernetes/types.d.ts +1335 -0
- package/dist/services/kubernetes/types.d.ts.map +1 -0
- package/dist/services/kubernetes/types.js +2 -0
- package/dist/services/kubernetes/types.js.map +1 -0
- package/dist/types.gen.d.ts +472 -723
- package/dist/types.gen.d.ts.map +1 -1
- package/dist/zod.gen.d.ts +674 -1364
- package/dist/zod.gen.d.ts.map +1 -1
- package/dist/zod.gen.js +256 -201
- package/dist/zod.gen.js.map +1 -1
- package/package.json +9 -5
package/dist/zod.gen.d.ts
CHANGED
|
@@ -1,4 +1,141 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
+
export declare const zBillingContact: z.ZodObject<{
|
|
3
|
+
company: z.ZodOptional<z.ZodString>;
|
|
4
|
+
address1: z.ZodOptional<z.ZodString>;
|
|
5
|
+
address2: z.ZodOptional<z.ZodString>;
|
|
6
|
+
postalCode: z.ZodOptional<z.ZodString>;
|
|
7
|
+
city: z.ZodOptional<z.ZodString>;
|
|
8
|
+
state: z.ZodOptional<z.ZodString>;
|
|
9
|
+
country: z.ZodOptional<z.ZodString>;
|
|
10
|
+
phone: z.ZodOptional<z.ZodString>;
|
|
11
|
+
email: z.ZodString;
|
|
12
|
+
first_name: z.ZodString;
|
|
13
|
+
last_name: z.ZodString;
|
|
14
|
+
tax_id: z.ZodOptional<z.ZodString>;
|
|
15
|
+
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", ""]>>;
|
|
16
|
+
}, "strip", z.ZodTypeAny, {
|
|
17
|
+
email: string;
|
|
18
|
+
first_name: string;
|
|
19
|
+
last_name: string;
|
|
20
|
+
state?: string | undefined;
|
|
21
|
+
country?: string | undefined;
|
|
22
|
+
company?: string | undefined;
|
|
23
|
+
address1?: string | undefined;
|
|
24
|
+
address2?: string | undefined;
|
|
25
|
+
postalCode?: string | undefined;
|
|
26
|
+
city?: string | undefined;
|
|
27
|
+
phone?: string | undefined;
|
|
28
|
+
tax_id?: string | undefined;
|
|
29
|
+
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;
|
|
30
|
+
}, {
|
|
31
|
+
email: string;
|
|
32
|
+
first_name: string;
|
|
33
|
+
last_name: string;
|
|
34
|
+
state?: string | undefined;
|
|
35
|
+
country?: string | undefined;
|
|
36
|
+
company?: string | undefined;
|
|
37
|
+
address1?: string | undefined;
|
|
38
|
+
address2?: string | undefined;
|
|
39
|
+
postalCode?: string | undefined;
|
|
40
|
+
city?: string | undefined;
|
|
41
|
+
phone?: string | undefined;
|
|
42
|
+
tax_id?: string | undefined;
|
|
43
|
+
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;
|
|
44
|
+
}>;
|
|
45
|
+
export declare const zBillingCredits: z.ZodObject<{
|
|
46
|
+
id: z.ZodOptional<z.ZodString>;
|
|
47
|
+
date_created: z.ZodString;
|
|
48
|
+
code: z.ZodString;
|
|
49
|
+
description: z.ZodOptional<z.ZodString>;
|
|
50
|
+
products: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
51
|
+
type: z.ZodEnum<["credit", "discount"]>;
|
|
52
|
+
value: z.ZodNumber;
|
|
53
|
+
billing_period: z.ZodString;
|
|
54
|
+
value_remaining: z.ZodOptional<z.ZodNumber>;
|
|
55
|
+
}, "strip", z.ZodTypeAny, {
|
|
56
|
+
code: string;
|
|
57
|
+
type: "credit" | "discount";
|
|
58
|
+
value: number;
|
|
59
|
+
date_created: string;
|
|
60
|
+
billing_period: string;
|
|
61
|
+
id?: string | undefined;
|
|
62
|
+
description?: string | undefined;
|
|
63
|
+
products?: string[] | undefined;
|
|
64
|
+
value_remaining?: number | undefined;
|
|
65
|
+
}, {
|
|
66
|
+
code: string;
|
|
67
|
+
type: "credit" | "discount";
|
|
68
|
+
value: number;
|
|
69
|
+
date_created: string;
|
|
70
|
+
billing_period: string;
|
|
71
|
+
id?: string | undefined;
|
|
72
|
+
description?: string | undefined;
|
|
73
|
+
products?: string[] | undefined;
|
|
74
|
+
value_remaining?: number | undefined;
|
|
75
|
+
}>;
|
|
76
|
+
export declare const zChartCreateInput: z.ZodObject<{
|
|
77
|
+
values: z.ZodString;
|
|
78
|
+
version_channel: z.ZodString;
|
|
79
|
+
name: z.ZodString;
|
|
80
|
+
namespace: z.ZodString;
|
|
81
|
+
chart: z.ZodString;
|
|
82
|
+
}, "strip", z.ZodTypeAny, {
|
|
83
|
+
values: string;
|
|
84
|
+
name: string;
|
|
85
|
+
version_channel: string;
|
|
86
|
+
namespace: string;
|
|
87
|
+
chart: string;
|
|
88
|
+
}, {
|
|
89
|
+
values: string;
|
|
90
|
+
name: string;
|
|
91
|
+
version_channel: string;
|
|
92
|
+
namespace: string;
|
|
93
|
+
chart: string;
|
|
94
|
+
}>;
|
|
95
|
+
export declare const zChart: z.ZodObject<{
|
|
96
|
+
values: z.ZodString;
|
|
97
|
+
version_channel: z.ZodString;
|
|
98
|
+
name: z.ZodString;
|
|
99
|
+
namespace: z.ZodString;
|
|
100
|
+
chart: z.ZodString;
|
|
101
|
+
status: z.ZodEnum<["InstallSucceeded", "InstallFailed", "UpgradeSucceeded", "UpgradeFailed", "TestSucceeded", "TestFailed", "RollbackSucceeded", "RollbackFailed", "UninstallSucceeded", "UninstallFailed", "ArtifactFailed", "DependencyNotReady", "Progressing", "SourceNotReady"]>;
|
|
102
|
+
version_current: z.ZodString;
|
|
103
|
+
created_at: z.ZodString;
|
|
104
|
+
updated_at: z.ZodString;
|
|
105
|
+
ready: z.ZodBoolean;
|
|
106
|
+
}, "strip", z.ZodTypeAny, {
|
|
107
|
+
values: string;
|
|
108
|
+
name: string;
|
|
109
|
+
ready: boolean;
|
|
110
|
+
status: "InstallSucceeded" | "InstallFailed" | "UpgradeSucceeded" | "UpgradeFailed" | "TestSucceeded" | "TestFailed" | "RollbackSucceeded" | "RollbackFailed" | "UninstallSucceeded" | "UninstallFailed" | "ArtifactFailed" | "DependencyNotReady" | "Progressing" | "SourceNotReady";
|
|
111
|
+
version_channel: string;
|
|
112
|
+
namespace: string;
|
|
113
|
+
chart: string;
|
|
114
|
+
version_current: string;
|
|
115
|
+
created_at: string;
|
|
116
|
+
updated_at: string;
|
|
117
|
+
}, {
|
|
118
|
+
values: string;
|
|
119
|
+
name: string;
|
|
120
|
+
ready: boolean;
|
|
121
|
+
status: "InstallSucceeded" | "InstallFailed" | "UpgradeSucceeded" | "UpgradeFailed" | "TestSucceeded" | "TestFailed" | "RollbackSucceeded" | "RollbackFailed" | "UninstallSucceeded" | "UninstallFailed" | "ArtifactFailed" | "DependencyNotReady" | "Progressing" | "SourceNotReady";
|
|
122
|
+
version_channel: string;
|
|
123
|
+
namespace: string;
|
|
124
|
+
chart: string;
|
|
125
|
+
version_current: string;
|
|
126
|
+
created_at: string;
|
|
127
|
+
updated_at: string;
|
|
128
|
+
}>;
|
|
129
|
+
export declare const zChartUpdateInput: z.ZodObject<{
|
|
130
|
+
values: z.ZodString;
|
|
131
|
+
version_channel: z.ZodString;
|
|
132
|
+
}, "strip", z.ZodTypeAny, {
|
|
133
|
+
values: string;
|
|
134
|
+
version_channel: string;
|
|
135
|
+
}, {
|
|
136
|
+
values: string;
|
|
137
|
+
version_channel: string;
|
|
138
|
+
}>;
|
|
2
139
|
export declare const zClusterCreateInput: z.ZodObject<{
|
|
3
140
|
name: z.ZodString;
|
|
4
141
|
region: z.ZodOptional<z.ZodEnum<["staging", "northamerica-central-1"]>>;
|
|
@@ -6,8 +143,8 @@ export declare const zClusterCreateInput: z.ZodObject<{
|
|
|
6
143
|
version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
7
144
|
}, "strip", z.ZodTypeAny, {
|
|
8
145
|
name: string;
|
|
9
|
-
tier: "basic" | "pro";
|
|
10
146
|
version_channel: string;
|
|
147
|
+
tier: "basic" | "pro";
|
|
11
148
|
region?: "staging" | "northamerica-central-1" | undefined;
|
|
12
149
|
}, {
|
|
13
150
|
name: string;
|
|
@@ -94,28 +231,28 @@ export declare const zCluster: z.ZodObject<{
|
|
|
94
231
|
name: string;
|
|
95
232
|
id: string;
|
|
96
233
|
status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
|
|
97
|
-
tier: "basic" | "pro";
|
|
98
234
|
version_channel: string;
|
|
235
|
+
tier: "basic" | "pro";
|
|
236
|
+
ready?: boolean | undefined;
|
|
99
237
|
region?: "staging" | "northamerica-central-1" | undefined;
|
|
100
|
-
endpoint?: string | undefined;
|
|
101
|
-
certificate_ca?: string | undefined;
|
|
102
238
|
version_current?: string | undefined;
|
|
103
239
|
created_at?: string | undefined;
|
|
104
240
|
updated_at?: string | undefined;
|
|
105
|
-
|
|
241
|
+
endpoint?: string | undefined;
|
|
242
|
+
certificate_ca?: string | undefined;
|
|
106
243
|
}, {
|
|
107
244
|
name: string;
|
|
108
245
|
id: string;
|
|
109
246
|
status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
|
|
110
247
|
tier: "basic" | "pro";
|
|
248
|
+
ready?: boolean | undefined;
|
|
111
249
|
region?: "staging" | "northamerica-central-1" | undefined;
|
|
112
|
-
endpoint?: string | undefined;
|
|
113
250
|
version_channel?: string | undefined;
|
|
114
|
-
certificate_ca?: string | undefined;
|
|
115
251
|
version_current?: string | undefined;
|
|
116
252
|
created_at?: string | undefined;
|
|
117
253
|
updated_at?: string | undefined;
|
|
118
|
-
|
|
254
|
+
endpoint?: string | undefined;
|
|
255
|
+
certificate_ca?: string | undefined;
|
|
119
256
|
}>;
|
|
120
257
|
export declare const zClusterUpdateInput: z.ZodObject<{
|
|
121
258
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -145,25 +282,16 @@ export declare const zFleetCreateInput: z.ZodObject<{
|
|
|
145
282
|
project: string;
|
|
146
283
|
enabled?: boolean | undefined;
|
|
147
284
|
}>>;
|
|
148
|
-
hetzner: z.ZodOptional<z.
|
|
149
|
-
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
150
|
-
apiKey: z.ZodOptional<z.ZodString>;
|
|
151
|
-
}, "strip", z.ZodTypeAny, {
|
|
152
|
-
enabled: boolean;
|
|
153
|
-
apiKey?: string | undefined;
|
|
154
|
-
}, {
|
|
155
|
-
apiKey?: string | undefined;
|
|
156
|
-
enabled?: boolean | undefined;
|
|
157
|
-
}>, z.ZodObject<{
|
|
158
|
-
apiKey: z.ZodOptional<z.ZodString>;
|
|
285
|
+
hetzner: z.ZodOptional<z.ZodObject<{
|
|
159
286
|
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
287
|
+
apiKey: z.ZodString;
|
|
160
288
|
}, "strip", z.ZodTypeAny, {
|
|
289
|
+
apiKey: string;
|
|
161
290
|
enabled: boolean;
|
|
162
|
-
apiKey?: string | undefined;
|
|
163
291
|
}, {
|
|
164
|
-
apiKey
|
|
292
|
+
apiKey: string;
|
|
165
293
|
enabled?: boolean | undefined;
|
|
166
|
-
}
|
|
294
|
+
}>>;
|
|
167
295
|
aws: z.ZodOptional<z.ZodObject<{
|
|
168
296
|
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
169
297
|
controllerRoleArn: z.ZodString;
|
|
@@ -175,9 +303,7 @@ export declare const zFleetCreateInput: z.ZodObject<{
|
|
|
175
303
|
enabled?: boolean | undefined;
|
|
176
304
|
}>>;
|
|
177
305
|
id: z.ZodString;
|
|
178
|
-
type: z.ZodEnum<["managed", "connected"]>;
|
|
179
306
|
}, "strip", z.ZodTypeAny, {
|
|
180
|
-
type: "connected" | "managed";
|
|
181
307
|
id: string;
|
|
182
308
|
limits?: {
|
|
183
309
|
cpu: number;
|
|
@@ -187,18 +313,14 @@ export declare const zFleetCreateInput: z.ZodObject<{
|
|
|
187
313
|
enabled: boolean;
|
|
188
314
|
} | undefined;
|
|
189
315
|
hetzner?: {
|
|
316
|
+
apiKey: string;
|
|
190
317
|
enabled: boolean;
|
|
191
|
-
apiKey?: string | undefined;
|
|
192
|
-
} | {
|
|
193
|
-
enabled: boolean;
|
|
194
|
-
apiKey?: string | undefined;
|
|
195
318
|
} | undefined;
|
|
196
319
|
aws?: {
|
|
197
320
|
controllerRoleArn: string;
|
|
198
321
|
enabled: boolean;
|
|
199
322
|
} | undefined;
|
|
200
323
|
}, {
|
|
201
|
-
type: "connected" | "managed";
|
|
202
324
|
id: string;
|
|
203
325
|
limits?: {
|
|
204
326
|
cpu: number;
|
|
@@ -208,10 +330,7 @@ export declare const zFleetCreateInput: z.ZodObject<{
|
|
|
208
330
|
enabled?: boolean | undefined;
|
|
209
331
|
} | undefined;
|
|
210
332
|
hetzner?: {
|
|
211
|
-
apiKey
|
|
212
|
-
enabled?: boolean | undefined;
|
|
213
|
-
} | {
|
|
214
|
-
apiKey?: string | undefined;
|
|
333
|
+
apiKey: string;
|
|
215
334
|
enabled?: boolean | undefined;
|
|
216
335
|
} | undefined;
|
|
217
336
|
aws?: {
|
|
@@ -237,25 +356,16 @@ export declare const zFleet: z.ZodObject<{
|
|
|
237
356
|
project: string;
|
|
238
357
|
enabled?: boolean | undefined;
|
|
239
358
|
}>>;
|
|
240
|
-
hetzner: z.ZodOptional<z.
|
|
241
|
-
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
242
|
-
apiKey: z.ZodOptional<z.ZodString>;
|
|
243
|
-
}, "strip", z.ZodTypeAny, {
|
|
244
|
-
enabled: boolean;
|
|
245
|
-
apiKey?: string | undefined;
|
|
246
|
-
}, {
|
|
247
|
-
apiKey?: string | undefined;
|
|
248
|
-
enabled?: boolean | undefined;
|
|
249
|
-
}>, z.ZodObject<{
|
|
250
|
-
apiKey: z.ZodOptional<z.ZodString>;
|
|
359
|
+
hetzner: z.ZodOptional<z.ZodObject<{
|
|
251
360
|
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
361
|
+
apiKey: z.ZodString;
|
|
252
362
|
}, "strip", z.ZodTypeAny, {
|
|
363
|
+
apiKey: string;
|
|
253
364
|
enabled: boolean;
|
|
254
|
-
apiKey?: string | undefined;
|
|
255
365
|
}, {
|
|
256
|
-
apiKey
|
|
366
|
+
apiKey: string;
|
|
257
367
|
enabled?: boolean | undefined;
|
|
258
|
-
}
|
|
368
|
+
}>>;
|
|
259
369
|
aws: z.ZodOptional<z.ZodObject<{
|
|
260
370
|
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
261
371
|
controllerRoleArn: z.ZodString;
|
|
@@ -267,9 +377,7 @@ export declare const zFleet: z.ZodObject<{
|
|
|
267
377
|
enabled?: boolean | undefined;
|
|
268
378
|
}>>;
|
|
269
379
|
id: z.ZodString;
|
|
270
|
-
type: z.ZodEnum<["managed", "connected"]>;
|
|
271
380
|
}, "strip", z.ZodTypeAny, {
|
|
272
|
-
type: "connected" | "managed";
|
|
273
381
|
id: string;
|
|
274
382
|
limits?: {
|
|
275
383
|
cpu: number;
|
|
@@ -279,18 +387,14 @@ export declare const zFleet: z.ZodObject<{
|
|
|
279
387
|
enabled: boolean;
|
|
280
388
|
} | undefined;
|
|
281
389
|
hetzner?: {
|
|
390
|
+
apiKey: string;
|
|
282
391
|
enabled: boolean;
|
|
283
|
-
apiKey?: string | undefined;
|
|
284
|
-
} | {
|
|
285
|
-
enabled: boolean;
|
|
286
|
-
apiKey?: string | undefined;
|
|
287
392
|
} | undefined;
|
|
288
393
|
aws?: {
|
|
289
394
|
controllerRoleArn: string;
|
|
290
395
|
enabled: boolean;
|
|
291
396
|
} | undefined;
|
|
292
397
|
}, {
|
|
293
|
-
type: "connected" | "managed";
|
|
294
398
|
id: string;
|
|
295
399
|
limits?: {
|
|
296
400
|
cpu: number;
|
|
@@ -300,10 +404,7 @@ export declare const zFleet: z.ZodObject<{
|
|
|
300
404
|
enabled?: boolean | undefined;
|
|
301
405
|
} | undefined;
|
|
302
406
|
hetzner?: {
|
|
303
|
-
apiKey
|
|
304
|
-
enabled?: boolean | undefined;
|
|
305
|
-
} | {
|
|
306
|
-
apiKey?: string | undefined;
|
|
407
|
+
apiKey: string;
|
|
307
408
|
enabled?: boolean | undefined;
|
|
308
409
|
} | undefined;
|
|
309
410
|
aws?: {
|
|
@@ -329,25 +430,16 @@ export declare const zFleetUpdateInput: z.ZodObject<{
|
|
|
329
430
|
project: string;
|
|
330
431
|
enabled?: boolean | undefined;
|
|
331
432
|
}>>;
|
|
332
|
-
hetzner: z.ZodOptional<z.
|
|
333
|
-
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
334
|
-
apiKey: z.ZodOptional<z.ZodString>;
|
|
335
|
-
}, "strip", z.ZodTypeAny, {
|
|
336
|
-
enabled: boolean;
|
|
337
|
-
apiKey?: string | undefined;
|
|
338
|
-
}, {
|
|
339
|
-
apiKey?: string | undefined;
|
|
340
|
-
enabled?: boolean | undefined;
|
|
341
|
-
}>, z.ZodObject<{
|
|
342
|
-
apiKey: z.ZodOptional<z.ZodString>;
|
|
433
|
+
hetzner: z.ZodOptional<z.ZodObject<{
|
|
343
434
|
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
435
|
+
apiKey: z.ZodString;
|
|
344
436
|
}, "strip", z.ZodTypeAny, {
|
|
437
|
+
apiKey: string;
|
|
345
438
|
enabled: boolean;
|
|
346
|
-
apiKey?: string | undefined;
|
|
347
439
|
}, {
|
|
348
|
-
apiKey
|
|
440
|
+
apiKey: string;
|
|
349
441
|
enabled?: boolean | undefined;
|
|
350
|
-
}
|
|
442
|
+
}>>;
|
|
351
443
|
aws: z.ZodOptional<z.ZodObject<{
|
|
352
444
|
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
353
445
|
controllerRoleArn: z.ZodString;
|
|
@@ -367,11 +459,8 @@ export declare const zFleetUpdateInput: z.ZodObject<{
|
|
|
367
459
|
enabled: boolean;
|
|
368
460
|
} | undefined;
|
|
369
461
|
hetzner?: {
|
|
462
|
+
apiKey: string;
|
|
370
463
|
enabled: boolean;
|
|
371
|
-
apiKey?: string | undefined;
|
|
372
|
-
} | {
|
|
373
|
-
enabled: boolean;
|
|
374
|
-
apiKey?: string | undefined;
|
|
375
464
|
} | undefined;
|
|
376
465
|
aws?: {
|
|
377
466
|
controllerRoleArn: string;
|
|
@@ -386,10 +475,7 @@ export declare const zFleetUpdateInput: z.ZodObject<{
|
|
|
386
475
|
enabled?: boolean | undefined;
|
|
387
476
|
} | undefined;
|
|
388
477
|
hetzner?: {
|
|
389
|
-
apiKey
|
|
390
|
-
enabled?: boolean | undefined;
|
|
391
|
-
} | {
|
|
392
|
-
apiKey?: string | undefined;
|
|
478
|
+
apiKey: string;
|
|
393
479
|
enabled?: boolean | undefined;
|
|
394
480
|
} | undefined;
|
|
395
481
|
aws?: {
|
|
@@ -397,140 +483,6 @@ export declare const zFleetUpdateInput: z.ZodObject<{
|
|
|
397
483
|
enabled?: boolean | undefined;
|
|
398
484
|
} | undefined;
|
|
399
485
|
}>;
|
|
400
|
-
export declare const zInfrastructureFilter: z.ZodObject<{
|
|
401
|
-
version: z.ZodOptional<z.ZodUnknown>;
|
|
402
|
-
provider: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
403
|
-
region: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
404
|
-
sub_region: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
405
|
-
csp_region: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
406
|
-
instance_type: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
407
|
-
accelerator_name: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
408
|
-
accelerator_manufacturer: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
409
|
-
accelerator_count_min: z.ZodOptional<z.ZodNumber>;
|
|
410
|
-
accelerator_count_max: z.ZodOptional<z.ZodNumber>;
|
|
411
|
-
accelerator_memory_min: z.ZodOptional<z.ZodNumber>;
|
|
412
|
-
accelerator_memory_max: z.ZodOptional<z.ZodNumber>;
|
|
413
|
-
memory_min: z.ZodOptional<z.ZodNumber>;
|
|
414
|
-
memory_max: z.ZodOptional<z.ZodNumber>;
|
|
415
|
-
vcpu_min: z.ZodOptional<z.ZodNumber>;
|
|
416
|
-
vcpu_max: z.ZodOptional<z.ZodNumber>;
|
|
417
|
-
storage_total_min: z.ZodOptional<z.ZodNumber>;
|
|
418
|
-
storage_total_max: z.ZodOptional<z.ZodNumber>;
|
|
419
|
-
storage_local_min: z.ZodOptional<z.ZodNumber>;
|
|
420
|
-
storage_local_max: z.ZodOptional<z.ZodNumber>;
|
|
421
|
-
price_min: z.ZodOptional<z.ZodNumber>;
|
|
422
|
-
price_max: z.ZodOptional<z.ZodNumber>;
|
|
423
|
-
}, "strip", z.ZodTypeAny, {
|
|
424
|
-
region?: string[] | undefined;
|
|
425
|
-
provider?: string[] | undefined;
|
|
426
|
-
sub_region?: string[] | undefined;
|
|
427
|
-
csp_region?: string[] | undefined;
|
|
428
|
-
instance_type?: string[] | undefined;
|
|
429
|
-
version?: unknown;
|
|
430
|
-
accelerator_name?: string[] | undefined;
|
|
431
|
-
accelerator_manufacturer?: string[] | undefined;
|
|
432
|
-
accelerator_count_min?: number | undefined;
|
|
433
|
-
accelerator_count_max?: number | undefined;
|
|
434
|
-
accelerator_memory_min?: number | undefined;
|
|
435
|
-
accelerator_memory_max?: number | undefined;
|
|
436
|
-
memory_min?: number | undefined;
|
|
437
|
-
memory_max?: number | undefined;
|
|
438
|
-
vcpu_min?: number | undefined;
|
|
439
|
-
vcpu_max?: number | undefined;
|
|
440
|
-
storage_total_min?: number | undefined;
|
|
441
|
-
storage_total_max?: number | undefined;
|
|
442
|
-
storage_local_min?: number | undefined;
|
|
443
|
-
storage_local_max?: number | undefined;
|
|
444
|
-
price_min?: number | undefined;
|
|
445
|
-
price_max?: number | undefined;
|
|
446
|
-
}, {
|
|
447
|
-
region?: string[] | undefined;
|
|
448
|
-
provider?: string[] | undefined;
|
|
449
|
-
sub_region?: string[] | undefined;
|
|
450
|
-
csp_region?: string[] | undefined;
|
|
451
|
-
instance_type?: string[] | undefined;
|
|
452
|
-
version?: unknown;
|
|
453
|
-
accelerator_name?: string[] | undefined;
|
|
454
|
-
accelerator_manufacturer?: string[] | undefined;
|
|
455
|
-
accelerator_count_min?: number | undefined;
|
|
456
|
-
accelerator_count_max?: number | undefined;
|
|
457
|
-
accelerator_memory_min?: number | undefined;
|
|
458
|
-
accelerator_memory_max?: number | undefined;
|
|
459
|
-
memory_min?: number | undefined;
|
|
460
|
-
memory_max?: number | undefined;
|
|
461
|
-
vcpu_min?: number | undefined;
|
|
462
|
-
vcpu_max?: number | undefined;
|
|
463
|
-
storage_total_min?: number | undefined;
|
|
464
|
-
storage_total_max?: number | undefined;
|
|
465
|
-
storage_local_min?: number | undefined;
|
|
466
|
-
storage_local_max?: number | undefined;
|
|
467
|
-
price_min?: number | undefined;
|
|
468
|
-
price_max?: number | undefined;
|
|
469
|
-
}>;
|
|
470
|
-
export declare const zInfrastructureInstance: z.ZodObject<{
|
|
471
|
-
sku: z.ZodString;
|
|
472
|
-
provider: z.ZodString;
|
|
473
|
-
region: z.ZodString;
|
|
474
|
-
sub_region: z.ZodString;
|
|
475
|
-
csp_region: z.ZodString;
|
|
476
|
-
csp_zone: z.ZodString;
|
|
477
|
-
instance_type: z.ZodString;
|
|
478
|
-
architecture: z.ZodString;
|
|
479
|
-
os: z.ZodString;
|
|
480
|
-
vcpu: z.ZodNumber;
|
|
481
|
-
memory: z.ZodNumber;
|
|
482
|
-
local_storage: z.ZodNumber;
|
|
483
|
-
accelerator_name: z.ZodOptional<z.ZodString>;
|
|
484
|
-
accelerator_manufacturer: z.ZodOptional<z.ZodString>;
|
|
485
|
-
accelerator_count: z.ZodOptional<z.ZodNumber>;
|
|
486
|
-
accelerator_memory: z.ZodOptional<z.ZodNumber>;
|
|
487
|
-
pods_capacity: z.ZodOptional<z.ZodNumber>;
|
|
488
|
-
capacity_type: z.ZodOptional<z.ZodString>;
|
|
489
|
-
price: z.ZodNumber;
|
|
490
|
-
available: z.ZodOptional<z.ZodBoolean>;
|
|
491
|
-
}, "strip", z.ZodTypeAny, {
|
|
492
|
-
memory: number;
|
|
493
|
-
region: string;
|
|
494
|
-
sku: string;
|
|
495
|
-
provider: string;
|
|
496
|
-
sub_region: string;
|
|
497
|
-
csp_region: string;
|
|
498
|
-
csp_zone: string;
|
|
499
|
-
instance_type: string;
|
|
500
|
-
architecture: string;
|
|
501
|
-
os: string;
|
|
502
|
-
vcpu: number;
|
|
503
|
-
local_storage: number;
|
|
504
|
-
price: number;
|
|
505
|
-
accelerator_name?: string | undefined;
|
|
506
|
-
accelerator_manufacturer?: string | undefined;
|
|
507
|
-
accelerator_count?: number | undefined;
|
|
508
|
-
accelerator_memory?: number | undefined;
|
|
509
|
-
pods_capacity?: number | undefined;
|
|
510
|
-
capacity_type?: string | undefined;
|
|
511
|
-
available?: boolean | undefined;
|
|
512
|
-
}, {
|
|
513
|
-
memory: number;
|
|
514
|
-
region: string;
|
|
515
|
-
sku: string;
|
|
516
|
-
provider: string;
|
|
517
|
-
sub_region: string;
|
|
518
|
-
csp_region: string;
|
|
519
|
-
csp_zone: string;
|
|
520
|
-
instance_type: string;
|
|
521
|
-
architecture: string;
|
|
522
|
-
os: string;
|
|
523
|
-
vcpu: number;
|
|
524
|
-
local_storage: number;
|
|
525
|
-
price: number;
|
|
526
|
-
accelerator_name?: string | undefined;
|
|
527
|
-
accelerator_manufacturer?: string | undefined;
|
|
528
|
-
accelerator_count?: number | undefined;
|
|
529
|
-
accelerator_memory?: number | undefined;
|
|
530
|
-
pods_capacity?: number | undefined;
|
|
531
|
-
capacity_type?: string | undefined;
|
|
532
|
-
available?: boolean | undefined;
|
|
533
|
-
}>;
|
|
534
486
|
export declare const zInvite: z.ZodObject<{
|
|
535
487
|
id: z.ZodOptional<z.ZodString>;
|
|
536
488
|
organization_id: z.ZodOptional<z.ZodString>;
|
|
@@ -586,7 +538,7 @@ export declare const zInvoice: z.ZodObject<{
|
|
|
586
538
|
catalogEffectiveDate: z.ZodOptional<z.ZodString>;
|
|
587
539
|
childItems: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
|
|
588
540
|
}, "strip", z.ZodTypeAny, {
|
|
589
|
-
currency?: "
|
|
541
|
+
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;
|
|
590
542
|
id?: string | undefined;
|
|
591
543
|
description?: string | undefined;
|
|
592
544
|
amount?: number | undefined;
|
|
@@ -608,7 +560,7 @@ export declare const zInvoice: z.ZodObject<{
|
|
|
608
560
|
catalogEffectiveDate?: string | undefined;
|
|
609
561
|
childItems?: unknown[] | undefined;
|
|
610
562
|
}, {
|
|
611
|
-
currency?: "
|
|
563
|
+
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;
|
|
612
564
|
id?: string | undefined;
|
|
613
565
|
description?: string | undefined;
|
|
614
566
|
amount?: number | undefined;
|
|
@@ -653,7 +605,7 @@ export declare const zInvoice: z.ZodObject<{
|
|
|
653
605
|
catalogEffectiveDate: z.ZodOptional<z.ZodString>;
|
|
654
606
|
childItems: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
|
|
655
607
|
}, "strip", z.ZodTypeAny, {
|
|
656
|
-
currency?: "
|
|
608
|
+
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;
|
|
657
609
|
id?: string | undefined;
|
|
658
610
|
description?: string | undefined;
|
|
659
611
|
amount?: number | undefined;
|
|
@@ -675,7 +627,7 @@ export declare const zInvoice: z.ZodObject<{
|
|
|
675
627
|
catalogEffectiveDate?: string | undefined;
|
|
676
628
|
childItems?: unknown[] | undefined;
|
|
677
629
|
}, {
|
|
678
|
-
currency?: "
|
|
630
|
+
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;
|
|
679
631
|
id?: string | undefined;
|
|
680
632
|
description?: string | undefined;
|
|
681
633
|
amount?: number | undefined;
|
|
@@ -698,11 +650,11 @@ export declare const zInvoice: z.ZodObject<{
|
|
|
698
650
|
childItems?: unknown[] | undefined;
|
|
699
651
|
}>, "many">>;
|
|
700
652
|
}, "strip", z.ZodTypeAny, {
|
|
701
|
-
currency?: "
|
|
653
|
+
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;
|
|
702
654
|
id?: string | undefined;
|
|
703
655
|
status?: "DRAFT" | "COMMITTED" | "VOID" | undefined;
|
|
704
656
|
items?: {
|
|
705
|
-
currency?: "
|
|
657
|
+
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;
|
|
706
658
|
id?: string | undefined;
|
|
707
659
|
description?: string | undefined;
|
|
708
660
|
amount?: number | undefined;
|
|
@@ -734,7 +686,7 @@ export declare const zInvoice: z.ZodObject<{
|
|
|
734
686
|
balance?: number | undefined;
|
|
735
687
|
bundleKeys?: string | undefined;
|
|
736
688
|
credits?: {
|
|
737
|
-
currency?: "
|
|
689
|
+
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;
|
|
738
690
|
id?: string | undefined;
|
|
739
691
|
description?: string | undefined;
|
|
740
692
|
amount?: number | undefined;
|
|
@@ -757,11 +709,11 @@ export declare const zInvoice: z.ZodObject<{
|
|
|
757
709
|
childItems?: unknown[] | undefined;
|
|
758
710
|
}[] | undefined;
|
|
759
711
|
}, {
|
|
760
|
-
currency?: "
|
|
712
|
+
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;
|
|
761
713
|
id?: string | undefined;
|
|
762
714
|
status?: "DRAFT" | "COMMITTED" | "VOID" | undefined;
|
|
763
715
|
items?: {
|
|
764
|
-
currency?: "
|
|
716
|
+
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;
|
|
765
717
|
id?: string | undefined;
|
|
766
718
|
description?: string | undefined;
|
|
767
719
|
amount?: number | undefined;
|
|
@@ -793,7 +745,7 @@ export declare const zInvoice: z.ZodObject<{
|
|
|
793
745
|
balance?: number | undefined;
|
|
794
746
|
bundleKeys?: string | undefined;
|
|
795
747
|
credits?: {
|
|
796
|
-
currency?: "
|
|
748
|
+
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;
|
|
797
749
|
id?: string | undefined;
|
|
798
750
|
description?: string | undefined;
|
|
799
751
|
amount?: number | undefined;
|
|
@@ -816,145 +768,79 @@ export declare const zInvoice: z.ZodObject<{
|
|
|
816
768
|
childItems?: unknown[] | undefined;
|
|
817
769
|
}[] | undefined;
|
|
818
770
|
}>;
|
|
819
|
-
export declare const
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
|
|
771
|
+
export declare const zMarketplaceListing: z.ZodObject<{
|
|
772
|
+
id: z.ZodString;
|
|
773
|
+
name: z.ZodString;
|
|
774
|
+
developer: z.ZodString;
|
|
775
|
+
description: z.ZodString;
|
|
776
|
+
logoUrl: z.ZodString;
|
|
777
|
+
longDescription: z.ZodString;
|
|
778
|
+
categories: z.ZodArray<z.ZodString, "many">;
|
|
779
|
+
version_channels: z.ZodArray<z.ZodString, "many">;
|
|
780
|
+
value_schemas: z.ZodArray<z.ZodObject<{
|
|
781
|
+
version: z.ZodString;
|
|
782
|
+
schema: z.ZodString;
|
|
783
|
+
placeholder: z.ZodString;
|
|
784
|
+
}, "strip", z.ZodTypeAny, {
|
|
785
|
+
version: string;
|
|
786
|
+
schema: string;
|
|
787
|
+
placeholder: string;
|
|
788
|
+
}, {
|
|
789
|
+
version: string;
|
|
790
|
+
schema: string;
|
|
791
|
+
placeholder: string;
|
|
792
|
+
}>, "many">;
|
|
793
|
+
}, "strip", z.ZodTypeAny, {
|
|
794
|
+
name: string;
|
|
795
|
+
id: string;
|
|
796
|
+
description: string;
|
|
797
|
+
developer: string;
|
|
798
|
+
logoUrl: string;
|
|
799
|
+
longDescription: string;
|
|
800
|
+
categories: string[];
|
|
801
|
+
version_channels: string[];
|
|
802
|
+
value_schemas: {
|
|
803
|
+
version: string;
|
|
804
|
+
schema: string;
|
|
805
|
+
placeholder: string;
|
|
806
|
+
}[];
|
|
807
|
+
}, {
|
|
808
|
+
name: string;
|
|
809
|
+
id: string;
|
|
810
|
+
description: string;
|
|
811
|
+
developer: string;
|
|
812
|
+
logoUrl: string;
|
|
813
|
+
longDescription: string;
|
|
814
|
+
categories: string[];
|
|
815
|
+
version_channels: string[];
|
|
816
|
+
value_schemas: {
|
|
817
|
+
version: string;
|
|
818
|
+
schema: string;
|
|
819
|
+
placeholder: string;
|
|
820
|
+
}[];
|
|
821
|
+
}>;
|
|
822
|
+
export declare const zOrganizationCreateInput: z.ZodObject<{
|
|
827
823
|
email: z.ZodString;
|
|
828
824
|
first_name: z.ZodString;
|
|
829
825
|
last_name: z.ZodString;
|
|
826
|
+
company_name: z.ZodString;
|
|
827
|
+
password: z.ZodString;
|
|
830
828
|
}, "strip", z.ZodTypeAny, {
|
|
831
829
|
email: string;
|
|
832
830
|
first_name: string;
|
|
833
831
|
last_name: string;
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
address1?: string | undefined;
|
|
837
|
-
address2?: string | undefined;
|
|
838
|
-
postalCode?: string | undefined;
|
|
839
|
-
city?: string | undefined;
|
|
840
|
-
phone?: string | undefined;
|
|
832
|
+
company_name: string;
|
|
833
|
+
password: string;
|
|
841
834
|
}, {
|
|
842
835
|
email: string;
|
|
843
836
|
first_name: string;
|
|
844
837
|
last_name: string;
|
|
845
|
-
|
|
846
|
-
country?: string | undefined;
|
|
847
|
-
address1?: string | undefined;
|
|
848
|
-
address2?: string | undefined;
|
|
849
|
-
postalCode?: string | undefined;
|
|
850
|
-
city?: string | undefined;
|
|
851
|
-
phone?: string | undefined;
|
|
852
|
-
}>;
|
|
853
|
-
export declare const zOrganizationCreateInput: z.ZodObject<{
|
|
854
|
-
name: z.ZodString;
|
|
855
|
-
contactInfo: z.ZodObject<{
|
|
856
|
-
address1: z.ZodOptional<z.ZodString>;
|
|
857
|
-
address2: z.ZodOptional<z.ZodString>;
|
|
858
|
-
postalCode: z.ZodOptional<z.ZodString>;
|
|
859
|
-
city: z.ZodOptional<z.ZodString>;
|
|
860
|
-
state: z.ZodOptional<z.ZodString>;
|
|
861
|
-
country: z.ZodOptional<z.ZodString>;
|
|
862
|
-
phone: z.ZodOptional<z.ZodString>;
|
|
863
|
-
email: z.ZodString;
|
|
864
|
-
first_name: z.ZodString;
|
|
865
|
-
last_name: z.ZodString;
|
|
866
|
-
}, "strip", z.ZodTypeAny, {
|
|
867
|
-
email: string;
|
|
868
|
-
first_name: string;
|
|
869
|
-
last_name: string;
|
|
870
|
-
state?: string | undefined;
|
|
871
|
-
country?: string | undefined;
|
|
872
|
-
address1?: string | undefined;
|
|
873
|
-
address2?: string | undefined;
|
|
874
|
-
postalCode?: string | undefined;
|
|
875
|
-
city?: string | undefined;
|
|
876
|
-
phone?: string | undefined;
|
|
877
|
-
}, {
|
|
878
|
-
email: string;
|
|
879
|
-
first_name: string;
|
|
880
|
-
last_name: string;
|
|
881
|
-
state?: string | undefined;
|
|
882
|
-
country?: string | undefined;
|
|
883
|
-
address1?: string | undefined;
|
|
884
|
-
address2?: string | undefined;
|
|
885
|
-
postalCode?: string | undefined;
|
|
886
|
-
city?: string | undefined;
|
|
887
|
-
phone?: string | undefined;
|
|
888
|
-
}>;
|
|
889
|
-
password: z.ZodString;
|
|
890
|
-
}, "strip", z.ZodTypeAny, {
|
|
891
|
-
name: string;
|
|
892
|
-
contactInfo: {
|
|
893
|
-
email: string;
|
|
894
|
-
first_name: string;
|
|
895
|
-
last_name: string;
|
|
896
|
-
state?: string | undefined;
|
|
897
|
-
country?: string | undefined;
|
|
898
|
-
address1?: string | undefined;
|
|
899
|
-
address2?: string | undefined;
|
|
900
|
-
postalCode?: string | undefined;
|
|
901
|
-
city?: string | undefined;
|
|
902
|
-
phone?: string | undefined;
|
|
903
|
-
};
|
|
904
|
-
password: string;
|
|
905
|
-
}, {
|
|
906
|
-
name: string;
|
|
907
|
-
contactInfo: {
|
|
908
|
-
email: string;
|
|
909
|
-
first_name: string;
|
|
910
|
-
last_name: string;
|
|
911
|
-
state?: string | undefined;
|
|
912
|
-
country?: string | undefined;
|
|
913
|
-
address1?: string | undefined;
|
|
914
|
-
address2?: string | undefined;
|
|
915
|
-
postalCode?: string | undefined;
|
|
916
|
-
city?: string | undefined;
|
|
917
|
-
phone?: string | undefined;
|
|
918
|
-
};
|
|
838
|
+
company_name: string;
|
|
919
839
|
password: string;
|
|
920
840
|
}>;
|
|
921
841
|
export declare const zOrganization: z.ZodObject<{
|
|
922
|
-
name: z.ZodString;
|
|
923
|
-
contactInfo: z.ZodObject<{
|
|
924
|
-
address1: z.ZodOptional<z.ZodString>;
|
|
925
|
-
address2: z.ZodOptional<z.ZodString>;
|
|
926
|
-
postalCode: z.ZodOptional<z.ZodString>;
|
|
927
|
-
city: z.ZodOptional<z.ZodString>;
|
|
928
|
-
state: z.ZodOptional<z.ZodString>;
|
|
929
|
-
country: z.ZodOptional<z.ZodString>;
|
|
930
|
-
phone: z.ZodOptional<z.ZodString>;
|
|
931
|
-
email: z.ZodString;
|
|
932
|
-
first_name: z.ZodString;
|
|
933
|
-
last_name: z.ZodString;
|
|
934
|
-
}, "strip", z.ZodTypeAny, {
|
|
935
|
-
email: string;
|
|
936
|
-
first_name: string;
|
|
937
|
-
last_name: string;
|
|
938
|
-
state?: string | undefined;
|
|
939
|
-
country?: string | undefined;
|
|
940
|
-
address1?: string | undefined;
|
|
941
|
-
address2?: string | undefined;
|
|
942
|
-
postalCode?: string | undefined;
|
|
943
|
-
city?: string | undefined;
|
|
944
|
-
phone?: string | undefined;
|
|
945
|
-
}, {
|
|
946
|
-
email: string;
|
|
947
|
-
first_name: string;
|
|
948
|
-
last_name: string;
|
|
949
|
-
state?: string | undefined;
|
|
950
|
-
country?: string | undefined;
|
|
951
|
-
address1?: string | undefined;
|
|
952
|
-
address2?: string | undefined;
|
|
953
|
-
postalCode?: string | undefined;
|
|
954
|
-
city?: string | undefined;
|
|
955
|
-
phone?: string | undefined;
|
|
956
|
-
}>;
|
|
957
842
|
id: z.ZodString;
|
|
843
|
+
name: z.ZodOptional<z.ZodString>;
|
|
958
844
|
date_created: z.ZodString;
|
|
959
845
|
quota: z.ZodObject<{
|
|
960
846
|
basic_clusters_max: z.ZodNumber;
|
|
@@ -962,7 +848,6 @@ export declare const zOrganization: z.ZodObject<{
|
|
|
962
848
|
pro_clusters_max: z.ZodNumber;
|
|
963
849
|
pro_clusters_available: z.ZodNumber;
|
|
964
850
|
fleets_max: z.ZodNumber;
|
|
965
|
-
managed_fleets_cpu_max: z.ZodNumber;
|
|
966
851
|
cluster_tiers: z.ZodArray<z.ZodString, "many">;
|
|
967
852
|
regions: z.ZodArray<z.ZodString, "many">;
|
|
968
853
|
versions: z.ZodArray<z.ZodObject<{
|
|
@@ -985,7 +870,6 @@ export declare const zOrganization: z.ZodObject<{
|
|
|
985
870
|
pro_clusters_max: number;
|
|
986
871
|
pro_clusters_available: number;
|
|
987
872
|
fleets_max: number;
|
|
988
|
-
managed_fleets_cpu_max: number;
|
|
989
873
|
cluster_tiers: string[];
|
|
990
874
|
regions: string[];
|
|
991
875
|
}, {
|
|
@@ -998,29 +882,14 @@ export declare const zOrganization: z.ZodObject<{
|
|
|
998
882
|
pro_clusters_max: number;
|
|
999
883
|
pro_clusters_available: number;
|
|
1000
884
|
fleets_max: number;
|
|
1001
|
-
managed_fleets_cpu_max: number;
|
|
1002
885
|
cluster_tiers: string[];
|
|
1003
886
|
regions: string[];
|
|
1004
887
|
}>;
|
|
1005
|
-
pending_actions: z.ZodArray<z.ZodEnum<["signup-billing-address", "signup-payment-method", "signup-invite-team", "signup-create-cluster"]>, "many">;
|
|
1006
888
|
status: z.ZodEnum<["active", "closed", "suspended"]>;
|
|
1007
889
|
}, "strip", z.ZodTypeAny, {
|
|
1008
|
-
name: string;
|
|
1009
890
|
id: string;
|
|
1010
891
|
status: "active" | "closed" | "suspended";
|
|
1011
892
|
date_created: string;
|
|
1012
|
-
contactInfo: {
|
|
1013
|
-
email: string;
|
|
1014
|
-
first_name: string;
|
|
1015
|
-
last_name: string;
|
|
1016
|
-
state?: string | undefined;
|
|
1017
|
-
country?: string | undefined;
|
|
1018
|
-
address1?: string | undefined;
|
|
1019
|
-
address2?: string | undefined;
|
|
1020
|
-
postalCode?: string | undefined;
|
|
1021
|
-
city?: string | undefined;
|
|
1022
|
-
phone?: string | undefined;
|
|
1023
|
-
};
|
|
1024
893
|
quota: {
|
|
1025
894
|
versions: {
|
|
1026
895
|
id: string;
|
|
@@ -1031,28 +900,14 @@ export declare const zOrganization: z.ZodObject<{
|
|
|
1031
900
|
pro_clusters_max: number;
|
|
1032
901
|
pro_clusters_available: number;
|
|
1033
902
|
fleets_max: number;
|
|
1034
|
-
managed_fleets_cpu_max: number;
|
|
1035
903
|
cluster_tiers: string[];
|
|
1036
904
|
regions: string[];
|
|
1037
905
|
};
|
|
1038
|
-
|
|
906
|
+
name?: string | undefined;
|
|
1039
907
|
}, {
|
|
1040
|
-
name: string;
|
|
1041
908
|
id: string;
|
|
1042
909
|
status: "active" | "closed" | "suspended";
|
|
1043
910
|
date_created: string;
|
|
1044
|
-
contactInfo: {
|
|
1045
|
-
email: string;
|
|
1046
|
-
first_name: string;
|
|
1047
|
-
last_name: string;
|
|
1048
|
-
state?: string | undefined;
|
|
1049
|
-
country?: string | undefined;
|
|
1050
|
-
address1?: string | undefined;
|
|
1051
|
-
address2?: string | undefined;
|
|
1052
|
-
postalCode?: string | undefined;
|
|
1053
|
-
city?: string | undefined;
|
|
1054
|
-
phone?: string | undefined;
|
|
1055
|
-
};
|
|
1056
911
|
quota: {
|
|
1057
912
|
versions: {
|
|
1058
913
|
id: string;
|
|
@@ -1063,75 +918,9 @@ export declare const zOrganization: z.ZodObject<{
|
|
|
1063
918
|
pro_clusters_max: number;
|
|
1064
919
|
pro_clusters_available: number;
|
|
1065
920
|
fleets_max: number;
|
|
1066
|
-
managed_fleets_cpu_max: number;
|
|
1067
921
|
cluster_tiers: string[];
|
|
1068
922
|
regions: string[];
|
|
1069
923
|
};
|
|
1070
|
-
pending_actions: ("signup-payment-method" | "signup-billing-address" | "signup-invite-team" | "signup-create-cluster")[];
|
|
1071
|
-
}>;
|
|
1072
|
-
export declare const zOrganizationUpdateInput: z.ZodObject<{
|
|
1073
|
-
name: z.ZodOptional<z.ZodString>;
|
|
1074
|
-
contactInfo: z.ZodObject<{
|
|
1075
|
-
address1: z.ZodOptional<z.ZodString>;
|
|
1076
|
-
address2: z.ZodOptional<z.ZodString>;
|
|
1077
|
-
postalCode: z.ZodOptional<z.ZodString>;
|
|
1078
|
-
city: z.ZodOptional<z.ZodString>;
|
|
1079
|
-
state: z.ZodOptional<z.ZodString>;
|
|
1080
|
-
country: z.ZodOptional<z.ZodString>;
|
|
1081
|
-
phone: z.ZodOptional<z.ZodString>;
|
|
1082
|
-
email: z.ZodString;
|
|
1083
|
-
first_name: z.ZodString;
|
|
1084
|
-
last_name: z.ZodString;
|
|
1085
|
-
}, "strip", z.ZodTypeAny, {
|
|
1086
|
-
email: string;
|
|
1087
|
-
first_name: string;
|
|
1088
|
-
last_name: string;
|
|
1089
|
-
state?: string | undefined;
|
|
1090
|
-
country?: string | undefined;
|
|
1091
|
-
address1?: string | undefined;
|
|
1092
|
-
address2?: string | undefined;
|
|
1093
|
-
postalCode?: string | undefined;
|
|
1094
|
-
city?: string | undefined;
|
|
1095
|
-
phone?: string | undefined;
|
|
1096
|
-
}, {
|
|
1097
|
-
email: string;
|
|
1098
|
-
first_name: string;
|
|
1099
|
-
last_name: string;
|
|
1100
|
-
state?: string | undefined;
|
|
1101
|
-
country?: string | undefined;
|
|
1102
|
-
address1?: string | undefined;
|
|
1103
|
-
address2?: string | undefined;
|
|
1104
|
-
postalCode?: string | undefined;
|
|
1105
|
-
city?: string | undefined;
|
|
1106
|
-
phone?: string | undefined;
|
|
1107
|
-
}>;
|
|
1108
|
-
}, "strip", z.ZodTypeAny, {
|
|
1109
|
-
contactInfo: {
|
|
1110
|
-
email: string;
|
|
1111
|
-
first_name: string;
|
|
1112
|
-
last_name: string;
|
|
1113
|
-
state?: string | undefined;
|
|
1114
|
-
country?: string | undefined;
|
|
1115
|
-
address1?: string | undefined;
|
|
1116
|
-
address2?: string | undefined;
|
|
1117
|
-
postalCode?: string | undefined;
|
|
1118
|
-
city?: string | undefined;
|
|
1119
|
-
phone?: string | undefined;
|
|
1120
|
-
};
|
|
1121
|
-
name?: string | undefined;
|
|
1122
|
-
}, {
|
|
1123
|
-
contactInfo: {
|
|
1124
|
-
email: string;
|
|
1125
|
-
first_name: string;
|
|
1126
|
-
last_name: string;
|
|
1127
|
-
state?: string | undefined;
|
|
1128
|
-
country?: string | undefined;
|
|
1129
|
-
address1?: string | undefined;
|
|
1130
|
-
address2?: string | undefined;
|
|
1131
|
-
postalCode?: string | undefined;
|
|
1132
|
-
city?: string | undefined;
|
|
1133
|
-
phone?: string | undefined;
|
|
1134
|
-
};
|
|
1135
924
|
name?: string | undefined;
|
|
1136
925
|
}>;
|
|
1137
926
|
export declare const zPaymentMethod: z.ZodObject<{
|
|
@@ -1149,7 +938,7 @@ export declare const zPaymentMethod: z.ZodObject<{
|
|
|
1149
938
|
last4: string;
|
|
1150
939
|
exp_month: number;
|
|
1151
940
|
exp_year: number;
|
|
1152
|
-
brand: "unknown" | "
|
|
941
|
+
brand: "unknown" | "amex" | "diners" | "discover" | "eftpos_au" | "jcb" | "mastercard" | "unionpay" | "visa";
|
|
1153
942
|
}, {
|
|
1154
943
|
type: "card";
|
|
1155
944
|
id: string;
|
|
@@ -1157,17 +946,17 @@ export declare const zPaymentMethod: z.ZodObject<{
|
|
|
1157
946
|
last4: string;
|
|
1158
947
|
exp_month: number;
|
|
1159
948
|
exp_year: number;
|
|
1160
|
-
brand: "unknown" | "
|
|
949
|
+
brand: "unknown" | "amex" | "diners" | "discover" | "eftpos_au" | "jcb" | "mastercard" | "unionpay" | "visa";
|
|
1161
950
|
}>;
|
|
1162
951
|
export declare const zTokenCreateInput: z.ZodObject<{
|
|
1163
952
|
name: z.ZodString;
|
|
1164
953
|
role: z.ZodEnum<["Administrator", "User"]>;
|
|
1165
954
|
}, "strip", z.ZodTypeAny, {
|
|
1166
955
|
name: string;
|
|
1167
|
-
role: "
|
|
956
|
+
role: "Administrator" | "User";
|
|
1168
957
|
}, {
|
|
1169
958
|
name: string;
|
|
1170
|
-
role: "
|
|
959
|
+
role: "Administrator" | "User";
|
|
1171
960
|
}>;
|
|
1172
961
|
export declare const zToken: z.ZodObject<{
|
|
1173
962
|
name: z.ZodString;
|
|
@@ -1177,13 +966,13 @@ export declare const zToken: z.ZodObject<{
|
|
|
1177
966
|
date_created: z.ZodString;
|
|
1178
967
|
}, "strip", z.ZodTypeAny, {
|
|
1179
968
|
name: string;
|
|
1180
|
-
role: "
|
|
969
|
+
role: "Administrator" | "User";
|
|
1181
970
|
date_created: string;
|
|
1182
971
|
id?: string | undefined;
|
|
1183
972
|
secret?: string | undefined;
|
|
1184
973
|
}, {
|
|
1185
974
|
name: string;
|
|
1186
|
-
role: "
|
|
975
|
+
role: "Administrator" | "User";
|
|
1187
976
|
date_created: string;
|
|
1188
977
|
id?: string | undefined;
|
|
1189
978
|
secret?: string | undefined;
|
|
@@ -1193,43 +982,43 @@ export declare const zTokenUpdateInput: z.ZodObject<{
|
|
|
1193
982
|
role: z.ZodOptional<z.ZodEnum<["Administrator", "User"]>>;
|
|
1194
983
|
}, "strip", z.ZodTypeAny, {
|
|
1195
984
|
name?: string | undefined;
|
|
1196
|
-
role?: "
|
|
985
|
+
role?: "Administrator" | "User" | undefined;
|
|
1197
986
|
}, {
|
|
1198
987
|
name?: string | undefined;
|
|
1199
|
-
role?: "
|
|
988
|
+
role?: "Administrator" | "User" | undefined;
|
|
1200
989
|
}>;
|
|
1201
990
|
export declare const zUsage: z.ZodObject<{
|
|
1202
|
-
cluster_id: z.ZodString;
|
|
1203
991
|
hour: z.ZodOptional<z.ZodString>;
|
|
1204
|
-
|
|
992
|
+
cluster_id: z.ZodString;
|
|
993
|
+
cluster_tier: z.ZodEnum<["basic", "pro", ""]>;
|
|
994
|
+
product: z.ZodEnum<["cfke_controlplane", "cfke_connected_nodes", "infra_compute", "infra_storage", "infra_loadbalancing", "infra_traffic", "cfcr_storage"]>;
|
|
1205
995
|
node_name: z.ZodString;
|
|
1206
996
|
sku: z.ZodString;
|
|
1207
997
|
cpu: z.ZodUnion<[z.ZodNumber, z.ZodEnum<[""]>]>;
|
|
1208
998
|
price: z.ZodUnion<[z.ZodNumber, z.ZodEnum<[""]>]>;
|
|
1209
|
-
|
|
999
|
+
value: z.ZodUnion<[z.ZodNumber, z.ZodEnum<[""]>]>;
|
|
1210
1000
|
total: z.ZodUnion<[z.ZodNumber, z.ZodEnum<[""]>]>;
|
|
1211
|
-
usage_type: z.ZodEnum<["managed-compute", "control-plane-nodes", "control-plane"]>;
|
|
1212
1001
|
}, "strip", z.ZodTypeAny, {
|
|
1213
1002
|
total: number | "";
|
|
1214
1003
|
cpu: number | "";
|
|
1215
|
-
|
|
1216
|
-
|
|
1004
|
+
product: "cfke_controlplane" | "cfke_connected_nodes" | "infra_compute" | "infra_storage" | "infra_loadbalancing" | "infra_traffic" | "cfcr_storage";
|
|
1005
|
+
value: number | "";
|
|
1217
1006
|
cluster_id: string;
|
|
1218
|
-
cluster_tier: "";
|
|
1007
|
+
cluster_tier: "" | "basic" | "pro";
|
|
1219
1008
|
node_name: string;
|
|
1220
|
-
|
|
1221
|
-
|
|
1009
|
+
sku: string;
|
|
1010
|
+
price: number | "";
|
|
1222
1011
|
hour?: string | undefined;
|
|
1223
1012
|
}, {
|
|
1224
1013
|
total: number | "";
|
|
1225
1014
|
cpu: number | "";
|
|
1226
|
-
|
|
1227
|
-
|
|
1015
|
+
product: "cfke_controlplane" | "cfke_connected_nodes" | "infra_compute" | "infra_storage" | "infra_loadbalancing" | "infra_traffic" | "cfcr_storage";
|
|
1016
|
+
value: number | "";
|
|
1228
1017
|
cluster_id: string;
|
|
1229
|
-
cluster_tier: "";
|
|
1018
|
+
cluster_tier: "" | "basic" | "pro";
|
|
1230
1019
|
node_name: string;
|
|
1231
|
-
|
|
1232
|
-
|
|
1020
|
+
sku: string;
|
|
1021
|
+
price: number | "";
|
|
1233
1022
|
hour?: string | undefined;
|
|
1234
1023
|
}>;
|
|
1235
1024
|
export declare const zUserCreateInput: z.ZodObject<{
|
|
@@ -1246,7 +1035,7 @@ export declare const zUserCreateInput: z.ZodObject<{
|
|
|
1246
1035
|
first_name: string;
|
|
1247
1036
|
last_name: string;
|
|
1248
1037
|
password: string;
|
|
1249
|
-
role?: "
|
|
1038
|
+
role?: "Administrator" | "User" | undefined;
|
|
1250
1039
|
status?: "active" | "inactive" | undefined;
|
|
1251
1040
|
}, {
|
|
1252
1041
|
code: string;
|
|
@@ -1254,7 +1043,7 @@ export declare const zUserCreateInput: z.ZodObject<{
|
|
|
1254
1043
|
first_name: string;
|
|
1255
1044
|
last_name: string;
|
|
1256
1045
|
password: string;
|
|
1257
|
-
role?: "
|
|
1046
|
+
role?: "Administrator" | "User" | undefined;
|
|
1258
1047
|
status?: "active" | "inactive" | undefined;
|
|
1259
1048
|
}>;
|
|
1260
1049
|
export declare const zUser: z.ZodObject<{
|
|
@@ -1265,40 +1054,22 @@ export declare const zUser: z.ZodObject<{
|
|
|
1265
1054
|
status: z.ZodEnum<["active", "inactive"]>;
|
|
1266
1055
|
id: z.ZodString;
|
|
1267
1056
|
date_created: z.ZodString;
|
|
1268
|
-
cluster_permissions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1269
|
-
cluster_id: z.ZodString;
|
|
1270
|
-
permissions: z.ZodEnum<["readwrite", "readonly"]>;
|
|
1271
|
-
}, "strip", z.ZodTypeAny, {
|
|
1272
|
-
cluster_id: string;
|
|
1273
|
-
permissions: "readonly" | "readwrite";
|
|
1274
|
-
}, {
|
|
1275
|
-
cluster_id: string;
|
|
1276
|
-
permissions: "readonly" | "readwrite";
|
|
1277
|
-
}>, "many">>;
|
|
1278
1057
|
}, "strip", z.ZodTypeAny, {
|
|
1279
1058
|
id: string;
|
|
1280
|
-
role: "
|
|
1059
|
+
role: "Administrator" | "User";
|
|
1281
1060
|
email: string;
|
|
1282
1061
|
status: "active" | "inactive";
|
|
1283
|
-
date_created: string;
|
|
1284
1062
|
first_name: string;
|
|
1285
1063
|
last_name: string;
|
|
1286
|
-
|
|
1287
|
-
cluster_id: string;
|
|
1288
|
-
permissions: "readonly" | "readwrite";
|
|
1289
|
-
}[] | undefined;
|
|
1064
|
+
date_created: string;
|
|
1290
1065
|
}, {
|
|
1291
1066
|
id: string;
|
|
1292
|
-
role: "
|
|
1067
|
+
role: "Administrator" | "User";
|
|
1293
1068
|
email: string;
|
|
1294
1069
|
status: "active" | "inactive";
|
|
1295
|
-
date_created: string;
|
|
1296
1070
|
first_name: string;
|
|
1297
1071
|
last_name: string;
|
|
1298
|
-
|
|
1299
|
-
cluster_id: string;
|
|
1300
|
-
permissions: "readonly" | "readwrite";
|
|
1301
|
-
}[] | undefined;
|
|
1072
|
+
date_created: string;
|
|
1302
1073
|
}>;
|
|
1303
1074
|
export declare const zUserUpdateInput: z.ZodObject<{
|
|
1304
1075
|
email: z.ZodOptional<z.ZodString>;
|
|
@@ -1307,50 +1078,50 @@ export declare const zUserUpdateInput: z.ZodObject<{
|
|
|
1307
1078
|
role: z.ZodOptional<z.ZodEnum<["Administrator", "User"]>>;
|
|
1308
1079
|
status: z.ZodOptional<z.ZodEnum<["active", "inactive"]>>;
|
|
1309
1080
|
}, "strip", z.ZodTypeAny, {
|
|
1310
|
-
role?: "
|
|
1081
|
+
role?: "Administrator" | "User" | undefined;
|
|
1311
1082
|
email?: string | undefined;
|
|
1312
1083
|
status?: "active" | "inactive" | undefined;
|
|
1313
1084
|
first_name?: string | undefined;
|
|
1314
1085
|
last_name?: string | undefined;
|
|
1315
1086
|
}, {
|
|
1316
|
-
role?: "
|
|
1087
|
+
role?: "Administrator" | "User" | undefined;
|
|
1317
1088
|
email?: string | undefined;
|
|
1318
1089
|
status?: "active" | "inactive" | undefined;
|
|
1319
1090
|
first_name?: string | undefined;
|
|
1320
1091
|
last_name?: string | undefined;
|
|
1321
1092
|
}>;
|
|
1322
1093
|
export declare const zGetUsageResponse: z.ZodArray<z.ZodObject<{
|
|
1323
|
-
cluster_id: z.ZodString;
|
|
1324
1094
|
hour: z.ZodOptional<z.ZodString>;
|
|
1325
|
-
|
|
1095
|
+
cluster_id: z.ZodString;
|
|
1096
|
+
cluster_tier: z.ZodEnum<["basic", "pro", ""]>;
|
|
1097
|
+
product: z.ZodEnum<["cfke_controlplane", "cfke_connected_nodes", "infra_compute", "infra_storage", "infra_loadbalancing", "infra_traffic", "cfcr_storage"]>;
|
|
1326
1098
|
node_name: z.ZodString;
|
|
1327
1099
|
sku: z.ZodString;
|
|
1328
1100
|
cpu: z.ZodUnion<[z.ZodNumber, z.ZodEnum<[""]>]>;
|
|
1329
1101
|
price: z.ZodUnion<[z.ZodNumber, z.ZodEnum<[""]>]>;
|
|
1330
|
-
|
|
1102
|
+
value: z.ZodUnion<[z.ZodNumber, z.ZodEnum<[""]>]>;
|
|
1331
1103
|
total: z.ZodUnion<[z.ZodNumber, z.ZodEnum<[""]>]>;
|
|
1332
|
-
usage_type: z.ZodEnum<["managed-compute", "control-plane-nodes", "control-plane"]>;
|
|
1333
1104
|
}, "strip", z.ZodTypeAny, {
|
|
1334
1105
|
total: number | "";
|
|
1335
1106
|
cpu: number | "";
|
|
1336
|
-
|
|
1337
|
-
|
|
1107
|
+
product: "cfke_controlplane" | "cfke_connected_nodes" | "infra_compute" | "infra_storage" | "infra_loadbalancing" | "infra_traffic" | "cfcr_storage";
|
|
1108
|
+
value: number | "";
|
|
1338
1109
|
cluster_id: string;
|
|
1339
|
-
cluster_tier: "";
|
|
1110
|
+
cluster_tier: "" | "basic" | "pro";
|
|
1340
1111
|
node_name: string;
|
|
1341
|
-
|
|
1342
|
-
|
|
1112
|
+
sku: string;
|
|
1113
|
+
price: number | "";
|
|
1343
1114
|
hour?: string | undefined;
|
|
1344
1115
|
}, {
|
|
1345
1116
|
total: number | "";
|
|
1346
1117
|
cpu: number | "";
|
|
1347
|
-
|
|
1348
|
-
|
|
1118
|
+
product: "cfke_controlplane" | "cfke_connected_nodes" | "infra_compute" | "infra_storage" | "infra_loadbalancing" | "infra_traffic" | "cfcr_storage";
|
|
1119
|
+
value: number | "";
|
|
1349
1120
|
cluster_id: string;
|
|
1350
|
-
cluster_tier: "";
|
|
1121
|
+
cluster_tier: "" | "basic" | "pro";
|
|
1351
1122
|
node_name: string;
|
|
1352
|
-
|
|
1353
|
-
|
|
1123
|
+
sku: string;
|
|
1124
|
+
price: number | "";
|
|
1354
1125
|
hour?: string | undefined;
|
|
1355
1126
|
}>, "many">;
|
|
1356
1127
|
export declare const zGetBalanceResponse: z.ZodNumber;
|
|
@@ -1369,7 +1140,7 @@ export declare const zGetPaymentMethodResponse: z.ZodObject<{
|
|
|
1369
1140
|
last4: string;
|
|
1370
1141
|
exp_month: number;
|
|
1371
1142
|
exp_year: number;
|
|
1372
|
-
brand: "unknown" | "
|
|
1143
|
+
brand: "unknown" | "amex" | "diners" | "discover" | "eftpos_au" | "jcb" | "mastercard" | "unionpay" | "visa";
|
|
1373
1144
|
}, {
|
|
1374
1145
|
type: "card";
|
|
1375
1146
|
id: string;
|
|
@@ -1377,7 +1148,7 @@ export declare const zGetPaymentMethodResponse: z.ZodObject<{
|
|
|
1377
1148
|
last4: string;
|
|
1378
1149
|
exp_month: number;
|
|
1379
1150
|
exp_year: number;
|
|
1380
|
-
brand: "unknown" | "
|
|
1151
|
+
brand: "unknown" | "amex" | "diners" | "discover" | "eftpos_au" | "jcb" | "mastercard" | "unionpay" | "visa";
|
|
1381
1152
|
}>;
|
|
1382
1153
|
export declare const zGetPaymentMethodSecretResponse: z.ZodObject<{
|
|
1383
1154
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -1422,7 +1193,7 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1422
1193
|
catalogEffectiveDate: z.ZodOptional<z.ZodString>;
|
|
1423
1194
|
childItems: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
|
|
1424
1195
|
}, "strip", z.ZodTypeAny, {
|
|
1425
|
-
currency?: "
|
|
1196
|
+
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;
|
|
1426
1197
|
id?: string | undefined;
|
|
1427
1198
|
description?: string | undefined;
|
|
1428
1199
|
amount?: number | undefined;
|
|
@@ -1444,7 +1215,7 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1444
1215
|
catalogEffectiveDate?: string | undefined;
|
|
1445
1216
|
childItems?: unknown[] | undefined;
|
|
1446
1217
|
}, {
|
|
1447
|
-
currency?: "
|
|
1218
|
+
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;
|
|
1448
1219
|
id?: string | undefined;
|
|
1449
1220
|
description?: string | undefined;
|
|
1450
1221
|
amount?: number | undefined;
|
|
@@ -1489,7 +1260,7 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1489
1260
|
catalogEffectiveDate: z.ZodOptional<z.ZodString>;
|
|
1490
1261
|
childItems: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
|
|
1491
1262
|
}, "strip", z.ZodTypeAny, {
|
|
1492
|
-
currency?: "
|
|
1263
|
+
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;
|
|
1493
1264
|
id?: string | undefined;
|
|
1494
1265
|
description?: string | undefined;
|
|
1495
1266
|
amount?: number | undefined;
|
|
@@ -1511,7 +1282,7 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1511
1282
|
catalogEffectiveDate?: string | undefined;
|
|
1512
1283
|
childItems?: unknown[] | undefined;
|
|
1513
1284
|
}, {
|
|
1514
|
-
currency?: "
|
|
1285
|
+
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;
|
|
1515
1286
|
id?: string | undefined;
|
|
1516
1287
|
description?: string | undefined;
|
|
1517
1288
|
amount?: number | undefined;
|
|
@@ -1534,11 +1305,11 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1534
1305
|
childItems?: unknown[] | undefined;
|
|
1535
1306
|
}>, "many">>;
|
|
1536
1307
|
}, "strip", z.ZodTypeAny, {
|
|
1537
|
-
currency?: "
|
|
1308
|
+
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;
|
|
1538
1309
|
id?: string | undefined;
|
|
1539
1310
|
status?: "DRAFT" | "COMMITTED" | "VOID" | undefined;
|
|
1540
1311
|
items?: {
|
|
1541
|
-
currency?: "
|
|
1312
|
+
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;
|
|
1542
1313
|
id?: string | undefined;
|
|
1543
1314
|
description?: string | undefined;
|
|
1544
1315
|
amount?: number | undefined;
|
|
@@ -1570,7 +1341,7 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1570
1341
|
balance?: number | undefined;
|
|
1571
1342
|
bundleKeys?: string | undefined;
|
|
1572
1343
|
credits?: {
|
|
1573
|
-
currency?: "
|
|
1344
|
+
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;
|
|
1574
1345
|
id?: string | undefined;
|
|
1575
1346
|
description?: string | undefined;
|
|
1576
1347
|
amount?: number | undefined;
|
|
@@ -1593,11 +1364,11 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1593
1364
|
childItems?: unknown[] | undefined;
|
|
1594
1365
|
}[] | undefined;
|
|
1595
1366
|
}, {
|
|
1596
|
-
currency?: "
|
|
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;
|
|
1597
1368
|
id?: string | undefined;
|
|
1598
1369
|
status?: "DRAFT" | "COMMITTED" | "VOID" | undefined;
|
|
1599
1370
|
items?: {
|
|
1600
|
-
currency?: "
|
|
1371
|
+
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;
|
|
1601
1372
|
id?: string | undefined;
|
|
1602
1373
|
description?: string | undefined;
|
|
1603
1374
|
amount?: number | undefined;
|
|
@@ -1629,7 +1400,7 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1629
1400
|
balance?: number | undefined;
|
|
1630
1401
|
bundleKeys?: string | undefined;
|
|
1631
1402
|
credits?: {
|
|
1632
|
-
currency?: "
|
|
1403
|
+
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;
|
|
1633
1404
|
id?: string | undefined;
|
|
1634
1405
|
description?: string | undefined;
|
|
1635
1406
|
amount?: number | undefined;
|
|
@@ -1659,78 +1430,251 @@ export declare const zGetInvoiceResponse: z.ZodObject<{
|
|
|
1659
1430
|
}, {
|
|
1660
1431
|
html?: string | undefined;
|
|
1661
1432
|
}>;
|
|
1662
|
-
export declare const
|
|
1663
|
-
|
|
1664
|
-
|
|
1665
|
-
|
|
1666
|
-
|
|
1667
|
-
|
|
1668
|
-
|
|
1669
|
-
|
|
1670
|
-
|
|
1671
|
-
|
|
1672
|
-
|
|
1673
|
-
|
|
1674
|
-
|
|
1675
|
-
|
|
1676
|
-
|
|
1677
|
-
|
|
1678
|
-
|
|
1679
|
-
|
|
1680
|
-
|
|
1681
|
-
|
|
1682
|
-
|
|
1683
|
-
|
|
1684
|
-
|
|
1685
|
-
|
|
1686
|
-
|
|
1687
|
-
|
|
1688
|
-
|
|
1689
|
-
|
|
1690
|
-
|
|
1691
|
-
|
|
1692
|
-
|
|
1693
|
-
|
|
1694
|
-
|
|
1695
|
-
|
|
1696
|
-
|
|
1697
|
-
|
|
1698
|
-
|
|
1699
|
-
|
|
1700
|
-
|
|
1701
|
-
|
|
1702
|
-
|
|
1703
|
-
|
|
1704
|
-
|
|
1705
|
-
|
|
1706
|
-
|
|
1707
|
-
|
|
1708
|
-
|
|
1709
|
-
|
|
1710
|
-
|
|
1711
|
-
|
|
1712
|
-
|
|
1713
|
-
|
|
1714
|
-
|
|
1715
|
-
|
|
1433
|
+
export declare const zGetContactResponse: z.ZodObject<{
|
|
1434
|
+
company: z.ZodOptional<z.ZodString>;
|
|
1435
|
+
address1: z.ZodOptional<z.ZodString>;
|
|
1436
|
+
address2: z.ZodOptional<z.ZodString>;
|
|
1437
|
+
postalCode: z.ZodOptional<z.ZodString>;
|
|
1438
|
+
city: z.ZodOptional<z.ZodString>;
|
|
1439
|
+
state: z.ZodOptional<z.ZodString>;
|
|
1440
|
+
country: z.ZodOptional<z.ZodString>;
|
|
1441
|
+
phone: z.ZodOptional<z.ZodString>;
|
|
1442
|
+
email: z.ZodString;
|
|
1443
|
+
first_name: z.ZodString;
|
|
1444
|
+
last_name: z.ZodString;
|
|
1445
|
+
tax_id: z.ZodOptional<z.ZodString>;
|
|
1446
|
+
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", ""]>>;
|
|
1447
|
+
}, "strip", z.ZodTypeAny, {
|
|
1448
|
+
email: string;
|
|
1449
|
+
first_name: string;
|
|
1450
|
+
last_name: string;
|
|
1451
|
+
state?: string | undefined;
|
|
1452
|
+
country?: string | undefined;
|
|
1453
|
+
company?: string | undefined;
|
|
1454
|
+
address1?: string | undefined;
|
|
1455
|
+
address2?: string | undefined;
|
|
1456
|
+
postalCode?: string | undefined;
|
|
1457
|
+
city?: string | undefined;
|
|
1458
|
+
phone?: string | undefined;
|
|
1459
|
+
tax_id?: string | undefined;
|
|
1460
|
+
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;
|
|
1461
|
+
}, {
|
|
1462
|
+
email: string;
|
|
1463
|
+
first_name: string;
|
|
1464
|
+
last_name: string;
|
|
1465
|
+
state?: string | undefined;
|
|
1466
|
+
country?: string | undefined;
|
|
1467
|
+
company?: string | undefined;
|
|
1468
|
+
address1?: string | undefined;
|
|
1469
|
+
address2?: string | undefined;
|
|
1470
|
+
postalCode?: string | undefined;
|
|
1471
|
+
city?: string | undefined;
|
|
1472
|
+
phone?: string | undefined;
|
|
1473
|
+
tax_id?: string | undefined;
|
|
1474
|
+
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;
|
|
1475
|
+
}>;
|
|
1476
|
+
export declare const zUpdateContactResponse: z.ZodObject<{
|
|
1477
|
+
company: z.ZodOptional<z.ZodString>;
|
|
1478
|
+
address1: z.ZodOptional<z.ZodString>;
|
|
1479
|
+
address2: z.ZodOptional<z.ZodString>;
|
|
1480
|
+
postalCode: z.ZodOptional<z.ZodString>;
|
|
1481
|
+
city: z.ZodOptional<z.ZodString>;
|
|
1482
|
+
state: z.ZodOptional<z.ZodString>;
|
|
1483
|
+
country: z.ZodOptional<z.ZodString>;
|
|
1484
|
+
phone: z.ZodOptional<z.ZodString>;
|
|
1485
|
+
email: z.ZodString;
|
|
1486
|
+
first_name: z.ZodString;
|
|
1487
|
+
last_name: z.ZodString;
|
|
1488
|
+
tax_id: z.ZodOptional<z.ZodString>;
|
|
1489
|
+
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", ""]>>;
|
|
1490
|
+
}, "strip", z.ZodTypeAny, {
|
|
1491
|
+
email: string;
|
|
1492
|
+
first_name: string;
|
|
1493
|
+
last_name: string;
|
|
1494
|
+
state?: string | undefined;
|
|
1495
|
+
country?: string | undefined;
|
|
1496
|
+
company?: string | undefined;
|
|
1497
|
+
address1?: string | undefined;
|
|
1498
|
+
address2?: string | undefined;
|
|
1499
|
+
postalCode?: string | undefined;
|
|
1500
|
+
city?: string | undefined;
|
|
1501
|
+
phone?: string | undefined;
|
|
1502
|
+
tax_id?: string | undefined;
|
|
1503
|
+
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;
|
|
1504
|
+
}, {
|
|
1505
|
+
email: string;
|
|
1506
|
+
first_name: string;
|
|
1507
|
+
last_name: string;
|
|
1508
|
+
state?: string | undefined;
|
|
1509
|
+
country?: string | undefined;
|
|
1510
|
+
company?: string | undefined;
|
|
1511
|
+
address1?: string | undefined;
|
|
1512
|
+
address2?: string | undefined;
|
|
1513
|
+
postalCode?: string | undefined;
|
|
1514
|
+
city?: string | undefined;
|
|
1515
|
+
phone?: string | undefined;
|
|
1516
|
+
tax_id?: string | undefined;
|
|
1517
|
+
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;
|
|
1518
|
+
}>;
|
|
1519
|
+
export declare const zGetCreditsResponse: z.ZodArray<z.ZodObject<{
|
|
1520
|
+
id: z.ZodOptional<z.ZodString>;
|
|
1521
|
+
date_created: z.ZodString;
|
|
1522
|
+
code: z.ZodString;
|
|
1523
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1524
|
+
products: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1525
|
+
type: z.ZodEnum<["credit", "discount"]>;
|
|
1526
|
+
value: z.ZodNumber;
|
|
1527
|
+
billing_period: z.ZodString;
|
|
1528
|
+
value_remaining: z.ZodOptional<z.ZodNumber>;
|
|
1529
|
+
}, "strip", z.ZodTypeAny, {
|
|
1530
|
+
code: string;
|
|
1531
|
+
type: "credit" | "discount";
|
|
1532
|
+
value: number;
|
|
1533
|
+
date_created: string;
|
|
1534
|
+
billing_period: string;
|
|
1535
|
+
id?: string | undefined;
|
|
1536
|
+
description?: string | undefined;
|
|
1537
|
+
products?: string[] | undefined;
|
|
1538
|
+
value_remaining?: number | undefined;
|
|
1539
|
+
}, {
|
|
1540
|
+
code: string;
|
|
1541
|
+
type: "credit" | "discount";
|
|
1542
|
+
value: number;
|
|
1543
|
+
date_created: string;
|
|
1544
|
+
billing_period: string;
|
|
1545
|
+
id?: string | undefined;
|
|
1546
|
+
description?: string | undefined;
|
|
1547
|
+
products?: string[] | undefined;
|
|
1548
|
+
value_remaining?: number | undefined;
|
|
1549
|
+
}>, "many">;
|
|
1550
|
+
export declare const zListChartsResponse: z.ZodArray<z.ZodObject<{
|
|
1551
|
+
values: z.ZodString;
|
|
1552
|
+
version_channel: z.ZodString;
|
|
1553
|
+
name: z.ZodString;
|
|
1554
|
+
namespace: z.ZodString;
|
|
1555
|
+
chart: z.ZodString;
|
|
1556
|
+
status: z.ZodEnum<["InstallSucceeded", "InstallFailed", "UpgradeSucceeded", "UpgradeFailed", "TestSucceeded", "TestFailed", "RollbackSucceeded", "RollbackFailed", "UninstallSucceeded", "UninstallFailed", "ArtifactFailed", "DependencyNotReady", "Progressing", "SourceNotReady"]>;
|
|
1557
|
+
version_current: z.ZodString;
|
|
1558
|
+
created_at: z.ZodString;
|
|
1559
|
+
updated_at: z.ZodString;
|
|
1560
|
+
ready: z.ZodBoolean;
|
|
1561
|
+
}, "strip", z.ZodTypeAny, {
|
|
1562
|
+
values: string;
|
|
1563
|
+
name: string;
|
|
1564
|
+
ready: boolean;
|
|
1565
|
+
status: "InstallSucceeded" | "InstallFailed" | "UpgradeSucceeded" | "UpgradeFailed" | "TestSucceeded" | "TestFailed" | "RollbackSucceeded" | "RollbackFailed" | "UninstallSucceeded" | "UninstallFailed" | "ArtifactFailed" | "DependencyNotReady" | "Progressing" | "SourceNotReady";
|
|
1566
|
+
version_channel: string;
|
|
1567
|
+
namespace: string;
|
|
1568
|
+
chart: string;
|
|
1569
|
+
version_current: string;
|
|
1570
|
+
created_at: string;
|
|
1571
|
+
updated_at: string;
|
|
1572
|
+
}, {
|
|
1573
|
+
values: string;
|
|
1574
|
+
name: string;
|
|
1575
|
+
ready: boolean;
|
|
1576
|
+
status: "InstallSucceeded" | "InstallFailed" | "UpgradeSucceeded" | "UpgradeFailed" | "TestSucceeded" | "TestFailed" | "RollbackSucceeded" | "RollbackFailed" | "UninstallSucceeded" | "UninstallFailed" | "ArtifactFailed" | "DependencyNotReady" | "Progressing" | "SourceNotReady";
|
|
1577
|
+
version_channel: string;
|
|
1578
|
+
namespace: string;
|
|
1579
|
+
chart: string;
|
|
1580
|
+
version_current: string;
|
|
1581
|
+
created_at: string;
|
|
1582
|
+
updated_at: string;
|
|
1583
|
+
}>, "many">;
|
|
1584
|
+
export declare const zCreateChartResponse: z.ZodString;
|
|
1585
|
+
export declare const zDeleteChartResponse: z.ZodString;
|
|
1586
|
+
export declare const zGetChartResponse: z.ZodObject<{
|
|
1587
|
+
values: z.ZodString;
|
|
1588
|
+
version_channel: z.ZodString;
|
|
1589
|
+
name: z.ZodString;
|
|
1590
|
+
namespace: z.ZodString;
|
|
1591
|
+
chart: z.ZodString;
|
|
1592
|
+
status: z.ZodEnum<["InstallSucceeded", "InstallFailed", "UpgradeSucceeded", "UpgradeFailed", "TestSucceeded", "TestFailed", "RollbackSucceeded", "RollbackFailed", "UninstallSucceeded", "UninstallFailed", "ArtifactFailed", "DependencyNotReady", "Progressing", "SourceNotReady"]>;
|
|
1593
|
+
version_current: z.ZodString;
|
|
1594
|
+
created_at: z.ZodString;
|
|
1595
|
+
updated_at: z.ZodString;
|
|
1596
|
+
ready: z.ZodBoolean;
|
|
1597
|
+
}, "strip", z.ZodTypeAny, {
|
|
1598
|
+
values: string;
|
|
1599
|
+
name: string;
|
|
1600
|
+
ready: boolean;
|
|
1601
|
+
status: "InstallSucceeded" | "InstallFailed" | "UpgradeSucceeded" | "UpgradeFailed" | "TestSucceeded" | "TestFailed" | "RollbackSucceeded" | "RollbackFailed" | "UninstallSucceeded" | "UninstallFailed" | "ArtifactFailed" | "DependencyNotReady" | "Progressing" | "SourceNotReady";
|
|
1602
|
+
version_channel: string;
|
|
1603
|
+
namespace: string;
|
|
1604
|
+
chart: string;
|
|
1605
|
+
version_current: string;
|
|
1606
|
+
created_at: string;
|
|
1607
|
+
updated_at: string;
|
|
1608
|
+
}, {
|
|
1609
|
+
values: string;
|
|
1610
|
+
name: string;
|
|
1611
|
+
ready: boolean;
|
|
1612
|
+
status: "InstallSucceeded" | "InstallFailed" | "UpgradeSucceeded" | "UpgradeFailed" | "TestSucceeded" | "TestFailed" | "RollbackSucceeded" | "RollbackFailed" | "UninstallSucceeded" | "UninstallFailed" | "ArtifactFailed" | "DependencyNotReady" | "Progressing" | "SourceNotReady";
|
|
1613
|
+
version_channel: string;
|
|
1614
|
+
namespace: string;
|
|
1615
|
+
chart: string;
|
|
1616
|
+
version_current: string;
|
|
1617
|
+
created_at: string;
|
|
1618
|
+
updated_at: string;
|
|
1619
|
+
}>;
|
|
1620
|
+
export declare const zUpdateChartResponse: z.ZodString;
|
|
1621
|
+
export declare const zListFleetsResponse: z.ZodArray<z.ZodObject<{
|
|
1622
|
+
limits: z.ZodOptional<z.ZodObject<{
|
|
1623
|
+
cpu: z.ZodNumber;
|
|
1624
|
+
}, "strip", z.ZodTypeAny, {
|
|
1625
|
+
cpu: number;
|
|
1626
|
+
}, {
|
|
1627
|
+
cpu: number;
|
|
1628
|
+
}>>;
|
|
1629
|
+
gcp: z.ZodOptional<z.ZodObject<{
|
|
1630
|
+
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1631
|
+
project: z.ZodString;
|
|
1632
|
+
}, "strip", z.ZodTypeAny, {
|
|
1633
|
+
project: string;
|
|
1634
|
+
enabled: boolean;
|
|
1635
|
+
}, {
|
|
1636
|
+
project: string;
|
|
1637
|
+
enabled?: boolean | undefined;
|
|
1638
|
+
}>>;
|
|
1639
|
+
hetzner: z.ZodOptional<z.ZodObject<{
|
|
1640
|
+
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1641
|
+
apiKey: z.ZodString;
|
|
1642
|
+
}, "strip", z.ZodTypeAny, {
|
|
1643
|
+
apiKey: string;
|
|
1644
|
+
enabled: boolean;
|
|
1645
|
+
}, {
|
|
1646
|
+
apiKey: string;
|
|
1647
|
+
enabled?: boolean | undefined;
|
|
1648
|
+
}>>;
|
|
1649
|
+
aws: z.ZodOptional<z.ZodObject<{
|
|
1650
|
+
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1651
|
+
controllerRoleArn: z.ZodString;
|
|
1652
|
+
}, "strip", z.ZodTypeAny, {
|
|
1653
|
+
controllerRoleArn: string;
|
|
1654
|
+
enabled: boolean;
|
|
1655
|
+
}, {
|
|
1656
|
+
controllerRoleArn: string;
|
|
1657
|
+
enabled?: boolean | undefined;
|
|
1658
|
+
}>>;
|
|
1659
|
+
id: z.ZodString;
|
|
1660
|
+
}, "strip", z.ZodTypeAny, {
|
|
1661
|
+
id: string;
|
|
1662
|
+
limits?: {
|
|
1663
|
+
cpu: number;
|
|
1716
1664
|
} | undefined;
|
|
1717
1665
|
gcp?: {
|
|
1718
1666
|
project: string;
|
|
1719
1667
|
enabled: boolean;
|
|
1720
1668
|
} | undefined;
|
|
1721
1669
|
hetzner?: {
|
|
1670
|
+
apiKey: string;
|
|
1722
1671
|
enabled: boolean;
|
|
1723
|
-
apiKey?: string | undefined;
|
|
1724
|
-
} | {
|
|
1725
|
-
enabled: boolean;
|
|
1726
|
-
apiKey?: string | undefined;
|
|
1727
1672
|
} | undefined;
|
|
1728
1673
|
aws?: {
|
|
1729
1674
|
controllerRoleArn: string;
|
|
1730
1675
|
enabled: boolean;
|
|
1731
1676
|
} | undefined;
|
|
1732
1677
|
}, {
|
|
1733
|
-
type: "connected" | "managed";
|
|
1734
1678
|
id: string;
|
|
1735
1679
|
limits?: {
|
|
1736
1680
|
cpu: number;
|
|
@@ -1740,10 +1684,7 @@ export declare const zListFleetsResponse: z.ZodArray<z.ZodObject<{
|
|
|
1740
1684
|
enabled?: boolean | undefined;
|
|
1741
1685
|
} | undefined;
|
|
1742
1686
|
hetzner?: {
|
|
1743
|
-
apiKey
|
|
1744
|
-
enabled?: boolean | undefined;
|
|
1745
|
-
} | {
|
|
1746
|
-
apiKey?: string | undefined;
|
|
1687
|
+
apiKey: string;
|
|
1747
1688
|
enabled?: boolean | undefined;
|
|
1748
1689
|
} | undefined;
|
|
1749
1690
|
aws?: {
|
|
@@ -1771,25 +1712,16 @@ export declare const zGetFleetResponse: z.ZodObject<{
|
|
|
1771
1712
|
project: string;
|
|
1772
1713
|
enabled?: boolean | undefined;
|
|
1773
1714
|
}>>;
|
|
1774
|
-
hetzner: z.ZodOptional<z.
|
|
1715
|
+
hetzner: z.ZodOptional<z.ZodObject<{
|
|
1775
1716
|
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1776
|
-
apiKey: z.
|
|
1717
|
+
apiKey: z.ZodString;
|
|
1777
1718
|
}, "strip", z.ZodTypeAny, {
|
|
1719
|
+
apiKey: string;
|
|
1778
1720
|
enabled: boolean;
|
|
1779
|
-
apiKey?: string | undefined;
|
|
1780
1721
|
}, {
|
|
1781
|
-
apiKey
|
|
1722
|
+
apiKey: string;
|
|
1782
1723
|
enabled?: boolean | undefined;
|
|
1783
|
-
}
|
|
1784
|
-
apiKey: z.ZodOptional<z.ZodString>;
|
|
1785
|
-
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1786
|
-
}, "strip", z.ZodTypeAny, {
|
|
1787
|
-
enabled: boolean;
|
|
1788
|
-
apiKey?: string | undefined;
|
|
1789
|
-
}, {
|
|
1790
|
-
apiKey?: string | undefined;
|
|
1791
|
-
enabled?: boolean | undefined;
|
|
1792
|
-
}>]>>;
|
|
1724
|
+
}>>;
|
|
1793
1725
|
aws: z.ZodOptional<z.ZodObject<{
|
|
1794
1726
|
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1795
1727
|
controllerRoleArn: z.ZodString;
|
|
@@ -1801,9 +1733,7 @@ export declare const zGetFleetResponse: z.ZodObject<{
|
|
|
1801
1733
|
enabled?: boolean | undefined;
|
|
1802
1734
|
}>>;
|
|
1803
1735
|
id: z.ZodString;
|
|
1804
|
-
type: z.ZodEnum<["managed", "connected"]>;
|
|
1805
1736
|
}, "strip", z.ZodTypeAny, {
|
|
1806
|
-
type: "connected" | "managed";
|
|
1807
1737
|
id: string;
|
|
1808
1738
|
limits?: {
|
|
1809
1739
|
cpu: number;
|
|
@@ -1813,18 +1743,14 @@ export declare const zGetFleetResponse: z.ZodObject<{
|
|
|
1813
1743
|
enabled: boolean;
|
|
1814
1744
|
} | undefined;
|
|
1815
1745
|
hetzner?: {
|
|
1746
|
+
apiKey: string;
|
|
1816
1747
|
enabled: boolean;
|
|
1817
|
-
apiKey?: string | undefined;
|
|
1818
|
-
} | {
|
|
1819
|
-
enabled: boolean;
|
|
1820
|
-
apiKey?: string | undefined;
|
|
1821
1748
|
} | undefined;
|
|
1822
1749
|
aws?: {
|
|
1823
1750
|
controllerRoleArn: string;
|
|
1824
1751
|
enabled: boolean;
|
|
1825
1752
|
} | undefined;
|
|
1826
1753
|
}, {
|
|
1827
|
-
type: "connected" | "managed";
|
|
1828
1754
|
id: string;
|
|
1829
1755
|
limits?: {
|
|
1830
1756
|
cpu: number;
|
|
@@ -1834,10 +1760,7 @@ export declare const zGetFleetResponse: z.ZodObject<{
|
|
|
1834
1760
|
enabled?: boolean | undefined;
|
|
1835
1761
|
} | undefined;
|
|
1836
1762
|
hetzner?: {
|
|
1837
|
-
apiKey
|
|
1838
|
-
enabled?: boolean | undefined;
|
|
1839
|
-
} | {
|
|
1840
|
-
apiKey?: string | undefined;
|
|
1763
|
+
apiKey: string;
|
|
1841
1764
|
enabled?: boolean | undefined;
|
|
1842
1765
|
} | undefined;
|
|
1843
1766
|
aws?: {
|
|
@@ -1863,28 +1786,28 @@ export declare const zListClustersResponse: z.ZodArray<z.ZodObject<{
|
|
|
1863
1786
|
name: string;
|
|
1864
1787
|
id: string;
|
|
1865
1788
|
status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
|
|
1866
|
-
tier: "basic" | "pro";
|
|
1867
1789
|
version_channel: string;
|
|
1790
|
+
tier: "basic" | "pro";
|
|
1791
|
+
ready?: boolean | undefined;
|
|
1868
1792
|
region?: "staging" | "northamerica-central-1" | undefined;
|
|
1869
|
-
endpoint?: string | undefined;
|
|
1870
|
-
certificate_ca?: string | undefined;
|
|
1871
1793
|
version_current?: string | undefined;
|
|
1872
1794
|
created_at?: string | undefined;
|
|
1873
1795
|
updated_at?: string | undefined;
|
|
1874
|
-
|
|
1796
|
+
endpoint?: string | undefined;
|
|
1797
|
+
certificate_ca?: string | undefined;
|
|
1875
1798
|
}, {
|
|
1876
1799
|
name: string;
|
|
1877
1800
|
id: string;
|
|
1878
1801
|
status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
|
|
1879
1802
|
tier: "basic" | "pro";
|
|
1803
|
+
ready?: boolean | undefined;
|
|
1880
1804
|
region?: "staging" | "northamerica-central-1" | undefined;
|
|
1881
|
-
endpoint?: string | undefined;
|
|
1882
1805
|
version_channel?: string | undefined;
|
|
1883
|
-
certificate_ca?: string | undefined;
|
|
1884
1806
|
version_current?: string | undefined;
|
|
1885
1807
|
created_at?: string | undefined;
|
|
1886
1808
|
updated_at?: string | undefined;
|
|
1887
|
-
|
|
1809
|
+
endpoint?: string | undefined;
|
|
1810
|
+
certificate_ca?: string | undefined;
|
|
1888
1811
|
}>, "many">;
|
|
1889
1812
|
export declare const zCreateClusterResponse: z.ZodString;
|
|
1890
1813
|
export declare const zDeleteClusterResponse: z.ZodString;
|
|
@@ -1905,28 +1828,28 @@ export declare const zGetClusterResponse: z.ZodObject<{
|
|
|
1905
1828
|
name: string;
|
|
1906
1829
|
id: string;
|
|
1907
1830
|
status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
|
|
1908
|
-
tier: "basic" | "pro";
|
|
1909
1831
|
version_channel: string;
|
|
1832
|
+
tier: "basic" | "pro";
|
|
1833
|
+
ready?: boolean | undefined;
|
|
1910
1834
|
region?: "staging" | "northamerica-central-1" | undefined;
|
|
1911
|
-
endpoint?: string | undefined;
|
|
1912
|
-
certificate_ca?: string | undefined;
|
|
1913
1835
|
version_current?: string | undefined;
|
|
1914
1836
|
created_at?: string | undefined;
|
|
1915
1837
|
updated_at?: string | undefined;
|
|
1916
|
-
|
|
1838
|
+
endpoint?: string | undefined;
|
|
1839
|
+
certificate_ca?: string | undefined;
|
|
1917
1840
|
}, {
|
|
1918
1841
|
name: string;
|
|
1919
1842
|
id: string;
|
|
1920
1843
|
status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
|
|
1921
1844
|
tier: "basic" | "pro";
|
|
1845
|
+
ready?: boolean | undefined;
|
|
1922
1846
|
region?: "staging" | "northamerica-central-1" | undefined;
|
|
1923
|
-
endpoint?: string | undefined;
|
|
1924
1847
|
version_channel?: string | undefined;
|
|
1925
|
-
certificate_ca?: string | undefined;
|
|
1926
1848
|
version_current?: string | undefined;
|
|
1927
1849
|
created_at?: string | undefined;
|
|
1928
1850
|
updated_at?: string | undefined;
|
|
1929
|
-
|
|
1851
|
+
endpoint?: string | undefined;
|
|
1852
|
+
certificate_ca?: string | undefined;
|
|
1930
1853
|
}>;
|
|
1931
1854
|
export declare const zUpdateClusterResponse: z.ZodObject<{
|
|
1932
1855
|
name: z.ZodString;
|
|
@@ -1945,28 +1868,28 @@ export declare const zUpdateClusterResponse: z.ZodObject<{
|
|
|
1945
1868
|
name: string;
|
|
1946
1869
|
id: string;
|
|
1947
1870
|
status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
|
|
1948
|
-
tier: "basic" | "pro";
|
|
1949
1871
|
version_channel: string;
|
|
1872
|
+
tier: "basic" | "pro";
|
|
1873
|
+
ready?: boolean | undefined;
|
|
1950
1874
|
region?: "staging" | "northamerica-central-1" | undefined;
|
|
1951
|
-
endpoint?: string | undefined;
|
|
1952
|
-
certificate_ca?: string | undefined;
|
|
1953
1875
|
version_current?: string | undefined;
|
|
1954
1876
|
created_at?: string | undefined;
|
|
1955
1877
|
updated_at?: string | undefined;
|
|
1956
|
-
|
|
1878
|
+
endpoint?: string | undefined;
|
|
1879
|
+
certificate_ca?: string | undefined;
|
|
1957
1880
|
}, {
|
|
1958
1881
|
name: string;
|
|
1959
1882
|
id: string;
|
|
1960
1883
|
status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
|
|
1961
1884
|
tier: "basic" | "pro";
|
|
1885
|
+
ready?: boolean | undefined;
|
|
1962
1886
|
region?: "staging" | "northamerica-central-1" | undefined;
|
|
1963
|
-
endpoint?: string | undefined;
|
|
1964
1887
|
version_channel?: string | undefined;
|
|
1965
|
-
certificate_ca?: string | undefined;
|
|
1966
1888
|
version_current?: string | undefined;
|
|
1967
1889
|
created_at?: string | undefined;
|
|
1968
1890
|
updated_at?: string | undefined;
|
|
1969
|
-
|
|
1891
|
+
endpoint?: string | undefined;
|
|
1892
|
+
certificate_ca?: string | undefined;
|
|
1970
1893
|
}>;
|
|
1971
1894
|
export declare const zGetJoinInformationResponse: z.ZodObject<{
|
|
1972
1895
|
name: z.ZodString;
|
|
@@ -1985,200 +1908,29 @@ export declare const zGetJoinInformationResponse: z.ZodObject<{
|
|
|
1985
1908
|
name: string;
|
|
1986
1909
|
id: string;
|
|
1987
1910
|
status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
|
|
1988
|
-
tier: "basic" | "pro";
|
|
1989
1911
|
version_channel: string;
|
|
1912
|
+
tier: "basic" | "pro";
|
|
1913
|
+
ready?: boolean | undefined;
|
|
1990
1914
|
region?: "staging" | "northamerica-central-1" | undefined;
|
|
1991
|
-
endpoint?: string | undefined;
|
|
1992
|
-
certificate_ca?: string | undefined;
|
|
1993
1915
|
version_current?: string | undefined;
|
|
1994
1916
|
created_at?: string | undefined;
|
|
1995
1917
|
updated_at?: string | undefined;
|
|
1996
|
-
|
|
1918
|
+
endpoint?: string | undefined;
|
|
1919
|
+
certificate_ca?: string | undefined;
|
|
1997
1920
|
}, {
|
|
1998
1921
|
name: string;
|
|
1999
1922
|
id: string;
|
|
2000
1923
|
status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
|
|
2001
1924
|
tier: "basic" | "pro";
|
|
1925
|
+
ready?: boolean | undefined;
|
|
2002
1926
|
region?: "staging" | "northamerica-central-1" | undefined;
|
|
2003
|
-
endpoint?: string | undefined;
|
|
2004
1927
|
version_channel?: string | undefined;
|
|
2005
|
-
certificate_ca?: string | undefined;
|
|
2006
1928
|
version_current?: string | undefined;
|
|
2007
1929
|
created_at?: string | undefined;
|
|
2008
1930
|
updated_at?: string | undefined;
|
|
2009
|
-
|
|
1931
|
+
endpoint?: string | undefined;
|
|
1932
|
+
certificate_ca?: string | undefined;
|
|
2010
1933
|
}>;
|
|
2011
|
-
export declare const zGetInfrastructureResponse: z.ZodArray<z.ZodObject<{
|
|
2012
|
-
sku: z.ZodString;
|
|
2013
|
-
provider: z.ZodString;
|
|
2014
|
-
region: z.ZodString;
|
|
2015
|
-
sub_region: z.ZodString;
|
|
2016
|
-
csp_region: z.ZodString;
|
|
2017
|
-
csp_zone: z.ZodString;
|
|
2018
|
-
instance_type: z.ZodString;
|
|
2019
|
-
architecture: z.ZodString;
|
|
2020
|
-
os: z.ZodString;
|
|
2021
|
-
vcpu: z.ZodNumber;
|
|
2022
|
-
memory: z.ZodNumber;
|
|
2023
|
-
local_storage: z.ZodNumber;
|
|
2024
|
-
accelerator_name: z.ZodOptional<z.ZodString>;
|
|
2025
|
-
accelerator_manufacturer: z.ZodOptional<z.ZodString>;
|
|
2026
|
-
accelerator_count: z.ZodOptional<z.ZodNumber>;
|
|
2027
|
-
accelerator_memory: z.ZodOptional<z.ZodNumber>;
|
|
2028
|
-
pods_capacity: z.ZodOptional<z.ZodNumber>;
|
|
2029
|
-
capacity_type: z.ZodOptional<z.ZodString>;
|
|
2030
|
-
price: z.ZodNumber;
|
|
2031
|
-
available: z.ZodOptional<z.ZodBoolean>;
|
|
2032
|
-
}, "strip", z.ZodTypeAny, {
|
|
2033
|
-
memory: number;
|
|
2034
|
-
region: string;
|
|
2035
|
-
sku: string;
|
|
2036
|
-
provider: string;
|
|
2037
|
-
sub_region: string;
|
|
2038
|
-
csp_region: string;
|
|
2039
|
-
csp_zone: string;
|
|
2040
|
-
instance_type: string;
|
|
2041
|
-
architecture: string;
|
|
2042
|
-
os: string;
|
|
2043
|
-
vcpu: number;
|
|
2044
|
-
local_storage: number;
|
|
2045
|
-
price: number;
|
|
2046
|
-
accelerator_name?: string | undefined;
|
|
2047
|
-
accelerator_manufacturer?: string | undefined;
|
|
2048
|
-
accelerator_count?: number | undefined;
|
|
2049
|
-
accelerator_memory?: number | undefined;
|
|
2050
|
-
pods_capacity?: number | undefined;
|
|
2051
|
-
capacity_type?: string | undefined;
|
|
2052
|
-
available?: boolean | undefined;
|
|
2053
|
-
}, {
|
|
2054
|
-
memory: number;
|
|
2055
|
-
region: string;
|
|
2056
|
-
sku: string;
|
|
2057
|
-
provider: string;
|
|
2058
|
-
sub_region: string;
|
|
2059
|
-
csp_region: string;
|
|
2060
|
-
csp_zone: string;
|
|
2061
|
-
instance_type: string;
|
|
2062
|
-
architecture: string;
|
|
2063
|
-
os: string;
|
|
2064
|
-
vcpu: number;
|
|
2065
|
-
local_storage: number;
|
|
2066
|
-
price: number;
|
|
2067
|
-
accelerator_name?: string | undefined;
|
|
2068
|
-
accelerator_manufacturer?: string | undefined;
|
|
2069
|
-
accelerator_count?: number | undefined;
|
|
2070
|
-
accelerator_memory?: number | undefined;
|
|
2071
|
-
pods_capacity?: number | undefined;
|
|
2072
|
-
capacity_type?: string | undefined;
|
|
2073
|
-
available?: boolean | undefined;
|
|
2074
|
-
}>, "many">;
|
|
2075
|
-
export declare const zGetFacetsResponse: z.ZodArray<z.ZodObject<{
|
|
2076
|
-
provider: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2077
|
-
region: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2078
|
-
sub_region: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2079
|
-
csp_region: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2080
|
-
vcpu_min: z.ZodOptional<z.ZodNumber>;
|
|
2081
|
-
vcpu_max: z.ZodOptional<z.ZodNumber>;
|
|
2082
|
-
memory_min: z.ZodOptional<z.ZodNumber>;
|
|
2083
|
-
memory_max: z.ZodOptional<z.ZodNumber>;
|
|
2084
|
-
storage_local_min: z.ZodOptional<z.ZodNumber>;
|
|
2085
|
-
storage_local_max: z.ZodOptional<z.ZodNumber>;
|
|
2086
|
-
accelerator_name: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2087
|
-
accelerator_manufacturer: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2088
|
-
accelerator_count_min: z.ZodOptional<z.ZodNumber>;
|
|
2089
|
-
accelerator_count_max: z.ZodOptional<z.ZodNumber>;
|
|
2090
|
-
accelerator_memory_min: z.ZodOptional<z.ZodNumber>;
|
|
2091
|
-
accelerator_memory_max: z.ZodOptional<z.ZodNumber>;
|
|
2092
|
-
price_min: z.ZodOptional<z.ZodNumber>;
|
|
2093
|
-
price_max: z.ZodOptional<z.ZodNumber>;
|
|
2094
|
-
regions_struct: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2095
|
-
region: z.ZodOptional<z.ZodString>;
|
|
2096
|
-
sub_region: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2097
|
-
}, "strip", z.ZodTypeAny, {
|
|
2098
|
-
region?: string | undefined;
|
|
2099
|
-
sub_region?: string[] | undefined;
|
|
2100
|
-
}, {
|
|
2101
|
-
region?: string | undefined;
|
|
2102
|
-
sub_region?: string[] | undefined;
|
|
2103
|
-
}>, "many">>;
|
|
2104
|
-
accelerators_struct: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2105
|
-
accelerator_manufacturer: z.ZodOptional<z.ZodString>;
|
|
2106
|
-
accelerator_name: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2107
|
-
}, "strip", z.ZodTypeAny, {
|
|
2108
|
-
accelerator_name?: string[] | undefined;
|
|
2109
|
-
accelerator_manufacturer?: string | undefined;
|
|
2110
|
-
}, {
|
|
2111
|
-
accelerator_name?: string[] | undefined;
|
|
2112
|
-
accelerator_manufacturer?: string | undefined;
|
|
2113
|
-
}>, "many">>;
|
|
2114
|
-
count_total: z.ZodOptional<z.ZodNumber>;
|
|
2115
|
-
count_accelerators: z.ZodOptional<z.ZodNumber>;
|
|
2116
|
-
count_instance_types: z.ZodOptional<z.ZodNumber>;
|
|
2117
|
-
count_accelerators_instance_types: z.ZodOptional<z.ZodNumber>;
|
|
2118
|
-
}, "strip", z.ZodTypeAny, {
|
|
2119
|
-
region?: string[] | undefined;
|
|
2120
|
-
provider?: string[] | undefined;
|
|
2121
|
-
sub_region?: string[] | undefined;
|
|
2122
|
-
csp_region?: string[] | undefined;
|
|
2123
|
-
accelerator_name?: string[] | undefined;
|
|
2124
|
-
accelerator_manufacturer?: string[] | undefined;
|
|
2125
|
-
accelerator_count_min?: number | undefined;
|
|
2126
|
-
accelerator_count_max?: number | undefined;
|
|
2127
|
-
accelerator_memory_min?: number | undefined;
|
|
2128
|
-
accelerator_memory_max?: number | undefined;
|
|
2129
|
-
memory_min?: number | undefined;
|
|
2130
|
-
memory_max?: number | undefined;
|
|
2131
|
-
vcpu_min?: number | undefined;
|
|
2132
|
-
vcpu_max?: number | undefined;
|
|
2133
|
-
storage_local_min?: number | undefined;
|
|
2134
|
-
storage_local_max?: number | undefined;
|
|
2135
|
-
price_min?: number | undefined;
|
|
2136
|
-
price_max?: number | undefined;
|
|
2137
|
-
regions_struct?: {
|
|
2138
|
-
region?: string | undefined;
|
|
2139
|
-
sub_region?: string[] | undefined;
|
|
2140
|
-
}[] | undefined;
|
|
2141
|
-
accelerators_struct?: {
|
|
2142
|
-
accelerator_name?: string[] | undefined;
|
|
2143
|
-
accelerator_manufacturer?: string | undefined;
|
|
2144
|
-
}[] | undefined;
|
|
2145
|
-
count_total?: number | undefined;
|
|
2146
|
-
count_accelerators?: number | undefined;
|
|
2147
|
-
count_instance_types?: number | undefined;
|
|
2148
|
-
count_accelerators_instance_types?: number | undefined;
|
|
2149
|
-
}, {
|
|
2150
|
-
region?: string[] | undefined;
|
|
2151
|
-
provider?: string[] | undefined;
|
|
2152
|
-
sub_region?: string[] | undefined;
|
|
2153
|
-
csp_region?: string[] | undefined;
|
|
2154
|
-
accelerator_name?: string[] | undefined;
|
|
2155
|
-
accelerator_manufacturer?: string[] | undefined;
|
|
2156
|
-
accelerator_count_min?: number | undefined;
|
|
2157
|
-
accelerator_count_max?: number | undefined;
|
|
2158
|
-
accelerator_memory_min?: number | undefined;
|
|
2159
|
-
accelerator_memory_max?: number | undefined;
|
|
2160
|
-
memory_min?: number | undefined;
|
|
2161
|
-
memory_max?: number | undefined;
|
|
2162
|
-
vcpu_min?: number | undefined;
|
|
2163
|
-
vcpu_max?: number | undefined;
|
|
2164
|
-
storage_local_min?: number | undefined;
|
|
2165
|
-
storage_local_max?: number | undefined;
|
|
2166
|
-
price_min?: number | undefined;
|
|
2167
|
-
price_max?: number | undefined;
|
|
2168
|
-
regions_struct?: {
|
|
2169
|
-
region?: string | undefined;
|
|
2170
|
-
sub_region?: string[] | undefined;
|
|
2171
|
-
}[] | undefined;
|
|
2172
|
-
accelerators_struct?: {
|
|
2173
|
-
accelerator_name?: string[] | undefined;
|
|
2174
|
-
accelerator_manufacturer?: string | undefined;
|
|
2175
|
-
}[] | undefined;
|
|
2176
|
-
count_total?: number | undefined;
|
|
2177
|
-
count_accelerators?: number | undefined;
|
|
2178
|
-
count_instance_types?: number | undefined;
|
|
2179
|
-
count_accelerators_instance_types?: number | undefined;
|
|
2180
|
-
}>, "many">;
|
|
2181
|
-
export declare const zGetRegionsResponse: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
|
|
2182
1934
|
export declare const zListInvitesResponse: z.ZodArray<z.ZodObject<{
|
|
2183
1935
|
id: z.ZodOptional<z.ZodString>;
|
|
2184
1936
|
organization_id: z.ZodOptional<z.ZodString>;
|
|
@@ -2236,345 +1988,111 @@ export declare const zGetInviteResponse: z.ZodObject<{
|
|
|
2236
1988
|
email?: string | undefined;
|
|
2237
1989
|
organization_id?: string | undefined;
|
|
2238
1990
|
}>;
|
|
2239
|
-
export declare const
|
|
2240
|
-
name: z.ZodString;
|
|
2241
|
-
contactInfo: z.ZodObject<{
|
|
2242
|
-
address1: z.ZodOptional<z.ZodString>;
|
|
2243
|
-
address2: z.ZodOptional<z.ZodString>;
|
|
2244
|
-
postalCode: z.ZodOptional<z.ZodString>;
|
|
2245
|
-
city: z.ZodOptional<z.ZodString>;
|
|
2246
|
-
state: z.ZodOptional<z.ZodString>;
|
|
2247
|
-
country: z.ZodOptional<z.ZodString>;
|
|
2248
|
-
phone: z.ZodOptional<z.ZodString>;
|
|
2249
|
-
email: z.ZodString;
|
|
2250
|
-
first_name: z.ZodString;
|
|
2251
|
-
last_name: z.ZodString;
|
|
2252
|
-
}, "strip", z.ZodTypeAny, {
|
|
2253
|
-
email: string;
|
|
2254
|
-
first_name: string;
|
|
2255
|
-
last_name: string;
|
|
2256
|
-
state?: string | undefined;
|
|
2257
|
-
country?: string | undefined;
|
|
2258
|
-
address1?: string | undefined;
|
|
2259
|
-
address2?: string | undefined;
|
|
2260
|
-
postalCode?: string | undefined;
|
|
2261
|
-
city?: string | undefined;
|
|
2262
|
-
phone?: string | undefined;
|
|
2263
|
-
}, {
|
|
2264
|
-
email: string;
|
|
2265
|
-
first_name: string;
|
|
2266
|
-
last_name: string;
|
|
2267
|
-
state?: string | undefined;
|
|
2268
|
-
country?: string | undefined;
|
|
2269
|
-
address1?: string | undefined;
|
|
2270
|
-
address2?: string | undefined;
|
|
2271
|
-
postalCode?: string | undefined;
|
|
2272
|
-
city?: string | undefined;
|
|
2273
|
-
phone?: string | undefined;
|
|
2274
|
-
}>;
|
|
1991
|
+
export declare const zListMarketplaceChartsResponse: z.ZodArray<z.ZodObject<{
|
|
2275
1992
|
id: z.ZodString;
|
|
2276
|
-
|
|
2277
|
-
|
|
2278
|
-
|
|
2279
|
-
|
|
2280
|
-
|
|
2281
|
-
|
|
2282
|
-
|
|
2283
|
-
|
|
2284
|
-
|
|
2285
|
-
|
|
2286
|
-
|
|
2287
|
-
id: z.ZodString;
|
|
2288
|
-
label: z.ZodString;
|
|
2289
|
-
}, "strip", z.ZodTypeAny, {
|
|
2290
|
-
id: string;
|
|
2291
|
-
label: string;
|
|
2292
|
-
}, {
|
|
2293
|
-
id: string;
|
|
2294
|
-
label: string;
|
|
2295
|
-
}>, "many">;
|
|
1993
|
+
name: z.ZodString;
|
|
1994
|
+
developer: z.ZodString;
|
|
1995
|
+
description: z.ZodString;
|
|
1996
|
+
logoUrl: z.ZodString;
|
|
1997
|
+
longDescription: z.ZodString;
|
|
1998
|
+
categories: z.ZodArray<z.ZodString, "many">;
|
|
1999
|
+
version_channels: z.ZodArray<z.ZodString, "many">;
|
|
2000
|
+
value_schemas: z.ZodArray<z.ZodObject<{
|
|
2001
|
+
version: z.ZodString;
|
|
2002
|
+
schema: z.ZodString;
|
|
2003
|
+
placeholder: z.ZodString;
|
|
2296
2004
|
}, "strip", z.ZodTypeAny, {
|
|
2297
|
-
|
|
2298
|
-
|
|
2299
|
-
|
|
2300
|
-
}[];
|
|
2301
|
-
basic_clusters_max: number;
|
|
2302
|
-
basic_clusters_available: number;
|
|
2303
|
-
pro_clusters_max: number;
|
|
2304
|
-
pro_clusters_available: number;
|
|
2305
|
-
fleets_max: number;
|
|
2306
|
-
managed_fleets_cpu_max: number;
|
|
2307
|
-
cluster_tiers: string[];
|
|
2308
|
-
regions: string[];
|
|
2005
|
+
version: string;
|
|
2006
|
+
schema: string;
|
|
2007
|
+
placeholder: string;
|
|
2309
2008
|
}, {
|
|
2310
|
-
|
|
2311
|
-
|
|
2312
|
-
|
|
2313
|
-
|
|
2314
|
-
basic_clusters_max: number;
|
|
2315
|
-
basic_clusters_available: number;
|
|
2316
|
-
pro_clusters_max: number;
|
|
2317
|
-
pro_clusters_available: number;
|
|
2318
|
-
fleets_max: number;
|
|
2319
|
-
managed_fleets_cpu_max: number;
|
|
2320
|
-
cluster_tiers: string[];
|
|
2321
|
-
regions: string[];
|
|
2322
|
-
}>;
|
|
2323
|
-
pending_actions: z.ZodArray<z.ZodEnum<["signup-billing-address", "signup-payment-method", "signup-invite-team", "signup-create-cluster"]>, "many">;
|
|
2324
|
-
status: z.ZodEnum<["active", "closed", "suspended"]>;
|
|
2009
|
+
version: string;
|
|
2010
|
+
schema: string;
|
|
2011
|
+
placeholder: string;
|
|
2012
|
+
}>, "many">;
|
|
2325
2013
|
}, "strip", z.ZodTypeAny, {
|
|
2326
2014
|
name: string;
|
|
2327
2015
|
id: string;
|
|
2328
|
-
|
|
2329
|
-
|
|
2330
|
-
|
|
2331
|
-
|
|
2332
|
-
|
|
2333
|
-
|
|
2334
|
-
|
|
2335
|
-
|
|
2336
|
-
|
|
2337
|
-
|
|
2338
|
-
|
|
2339
|
-
city?: string | undefined;
|
|
2340
|
-
phone?: string | undefined;
|
|
2341
|
-
};
|
|
2342
|
-
quota: {
|
|
2343
|
-
versions: {
|
|
2344
|
-
id: string;
|
|
2345
|
-
label: string;
|
|
2346
|
-
}[];
|
|
2347
|
-
basic_clusters_max: number;
|
|
2348
|
-
basic_clusters_available: number;
|
|
2349
|
-
pro_clusters_max: number;
|
|
2350
|
-
pro_clusters_available: number;
|
|
2351
|
-
fleets_max: number;
|
|
2352
|
-
managed_fleets_cpu_max: number;
|
|
2353
|
-
cluster_tiers: string[];
|
|
2354
|
-
regions: string[];
|
|
2355
|
-
};
|
|
2356
|
-
pending_actions: ("signup-payment-method" | "signup-billing-address" | "signup-invite-team" | "signup-create-cluster")[];
|
|
2016
|
+
description: string;
|
|
2017
|
+
developer: string;
|
|
2018
|
+
logoUrl: string;
|
|
2019
|
+
longDescription: string;
|
|
2020
|
+
categories: string[];
|
|
2021
|
+
version_channels: string[];
|
|
2022
|
+
value_schemas: {
|
|
2023
|
+
version: string;
|
|
2024
|
+
schema: string;
|
|
2025
|
+
placeholder: string;
|
|
2026
|
+
}[];
|
|
2357
2027
|
}, {
|
|
2358
2028
|
name: string;
|
|
2359
2029
|
id: string;
|
|
2360
|
-
|
|
2361
|
-
|
|
2362
|
-
|
|
2363
|
-
|
|
2364
|
-
|
|
2365
|
-
|
|
2366
|
-
|
|
2367
|
-
|
|
2368
|
-
|
|
2369
|
-
|
|
2370
|
-
|
|
2371
|
-
|
|
2372
|
-
|
|
2373
|
-
};
|
|
2374
|
-
quota: {
|
|
2375
|
-
versions: {
|
|
2376
|
-
id: string;
|
|
2377
|
-
label: string;
|
|
2378
|
-
}[];
|
|
2379
|
-
basic_clusters_max: number;
|
|
2380
|
-
basic_clusters_available: number;
|
|
2381
|
-
pro_clusters_max: number;
|
|
2382
|
-
pro_clusters_available: number;
|
|
2383
|
-
fleets_max: number;
|
|
2384
|
-
managed_fleets_cpu_max: number;
|
|
2385
|
-
cluster_tiers: string[];
|
|
2386
|
-
regions: string[];
|
|
2387
|
-
};
|
|
2388
|
-
pending_actions: ("signup-payment-method" | "signup-billing-address" | "signup-invite-team" | "signup-create-cluster")[];
|
|
2389
|
-
}>;
|
|
2390
|
-
export declare const zCreateOrganizationResponse: z.ZodObject<{
|
|
2391
|
-
name: z.ZodString;
|
|
2392
|
-
contactInfo: z.ZodObject<{
|
|
2393
|
-
address1: z.ZodOptional<z.ZodString>;
|
|
2394
|
-
address2: z.ZodOptional<z.ZodString>;
|
|
2395
|
-
postalCode: z.ZodOptional<z.ZodString>;
|
|
2396
|
-
city: z.ZodOptional<z.ZodString>;
|
|
2397
|
-
state: z.ZodOptional<z.ZodString>;
|
|
2398
|
-
country: z.ZodOptional<z.ZodString>;
|
|
2399
|
-
phone: z.ZodOptional<z.ZodString>;
|
|
2400
|
-
email: z.ZodString;
|
|
2401
|
-
first_name: z.ZodString;
|
|
2402
|
-
last_name: z.ZodString;
|
|
2403
|
-
}, "strip", z.ZodTypeAny, {
|
|
2404
|
-
email: string;
|
|
2405
|
-
first_name: string;
|
|
2406
|
-
last_name: string;
|
|
2407
|
-
state?: string | undefined;
|
|
2408
|
-
country?: string | undefined;
|
|
2409
|
-
address1?: string | undefined;
|
|
2410
|
-
address2?: string | undefined;
|
|
2411
|
-
postalCode?: string | undefined;
|
|
2412
|
-
city?: string | undefined;
|
|
2413
|
-
phone?: string | undefined;
|
|
2414
|
-
}, {
|
|
2415
|
-
email: string;
|
|
2416
|
-
first_name: string;
|
|
2417
|
-
last_name: string;
|
|
2418
|
-
state?: string | undefined;
|
|
2419
|
-
country?: string | undefined;
|
|
2420
|
-
address1?: string | undefined;
|
|
2421
|
-
address2?: string | undefined;
|
|
2422
|
-
postalCode?: string | undefined;
|
|
2423
|
-
city?: string | undefined;
|
|
2424
|
-
phone?: string | undefined;
|
|
2425
|
-
}>;
|
|
2030
|
+
description: string;
|
|
2031
|
+
developer: string;
|
|
2032
|
+
logoUrl: string;
|
|
2033
|
+
longDescription: string;
|
|
2034
|
+
categories: string[];
|
|
2035
|
+
version_channels: string[];
|
|
2036
|
+
value_schemas: {
|
|
2037
|
+
version: string;
|
|
2038
|
+
schema: string;
|
|
2039
|
+
placeholder: string;
|
|
2040
|
+
}[];
|
|
2041
|
+
}>, "many">;
|
|
2042
|
+
export declare const zGetMarketplaceChartResponse: z.ZodObject<{
|
|
2426
2043
|
id: z.ZodString;
|
|
2427
|
-
|
|
2428
|
-
|
|
2429
|
-
|
|
2430
|
-
|
|
2431
|
-
|
|
2432
|
-
|
|
2433
|
-
|
|
2434
|
-
|
|
2435
|
-
|
|
2436
|
-
|
|
2437
|
-
|
|
2438
|
-
id: z.ZodString;
|
|
2439
|
-
label: z.ZodString;
|
|
2440
|
-
}, "strip", z.ZodTypeAny, {
|
|
2441
|
-
id: string;
|
|
2442
|
-
label: string;
|
|
2443
|
-
}, {
|
|
2444
|
-
id: string;
|
|
2445
|
-
label: string;
|
|
2446
|
-
}>, "many">;
|
|
2044
|
+
name: z.ZodString;
|
|
2045
|
+
developer: z.ZodString;
|
|
2046
|
+
description: z.ZodString;
|
|
2047
|
+
logoUrl: z.ZodString;
|
|
2048
|
+
longDescription: z.ZodString;
|
|
2049
|
+
categories: z.ZodArray<z.ZodString, "many">;
|
|
2050
|
+
version_channels: z.ZodArray<z.ZodString, "many">;
|
|
2051
|
+
value_schemas: z.ZodArray<z.ZodObject<{
|
|
2052
|
+
version: z.ZodString;
|
|
2053
|
+
schema: z.ZodString;
|
|
2054
|
+
placeholder: z.ZodString;
|
|
2447
2055
|
}, "strip", z.ZodTypeAny, {
|
|
2448
|
-
|
|
2449
|
-
|
|
2450
|
-
|
|
2451
|
-
}[];
|
|
2452
|
-
basic_clusters_max: number;
|
|
2453
|
-
basic_clusters_available: number;
|
|
2454
|
-
pro_clusters_max: number;
|
|
2455
|
-
pro_clusters_available: number;
|
|
2456
|
-
fleets_max: number;
|
|
2457
|
-
managed_fleets_cpu_max: number;
|
|
2458
|
-
cluster_tiers: string[];
|
|
2459
|
-
regions: string[];
|
|
2056
|
+
version: string;
|
|
2057
|
+
schema: string;
|
|
2058
|
+
placeholder: string;
|
|
2460
2059
|
}, {
|
|
2461
|
-
|
|
2462
|
-
|
|
2463
|
-
|
|
2464
|
-
|
|
2465
|
-
basic_clusters_max: number;
|
|
2466
|
-
basic_clusters_available: number;
|
|
2467
|
-
pro_clusters_max: number;
|
|
2468
|
-
pro_clusters_available: number;
|
|
2469
|
-
fleets_max: number;
|
|
2470
|
-
managed_fleets_cpu_max: number;
|
|
2471
|
-
cluster_tiers: string[];
|
|
2472
|
-
regions: string[];
|
|
2473
|
-
}>;
|
|
2474
|
-
pending_actions: z.ZodArray<z.ZodEnum<["signup-billing-address", "signup-payment-method", "signup-invite-team", "signup-create-cluster"]>, "many">;
|
|
2475
|
-
status: z.ZodEnum<["active", "closed", "suspended"]>;
|
|
2060
|
+
version: string;
|
|
2061
|
+
schema: string;
|
|
2062
|
+
placeholder: string;
|
|
2063
|
+
}>, "many">;
|
|
2476
2064
|
}, "strip", z.ZodTypeAny, {
|
|
2477
2065
|
name: string;
|
|
2478
2066
|
id: string;
|
|
2479
|
-
|
|
2480
|
-
|
|
2481
|
-
|
|
2482
|
-
|
|
2483
|
-
|
|
2484
|
-
|
|
2485
|
-
|
|
2486
|
-
|
|
2487
|
-
|
|
2488
|
-
|
|
2489
|
-
|
|
2490
|
-
city?: string | undefined;
|
|
2491
|
-
phone?: string | undefined;
|
|
2492
|
-
};
|
|
2493
|
-
quota: {
|
|
2494
|
-
versions: {
|
|
2495
|
-
id: string;
|
|
2496
|
-
label: string;
|
|
2497
|
-
}[];
|
|
2498
|
-
basic_clusters_max: number;
|
|
2499
|
-
basic_clusters_available: number;
|
|
2500
|
-
pro_clusters_max: number;
|
|
2501
|
-
pro_clusters_available: number;
|
|
2502
|
-
fleets_max: number;
|
|
2503
|
-
managed_fleets_cpu_max: number;
|
|
2504
|
-
cluster_tiers: string[];
|
|
2505
|
-
regions: string[];
|
|
2506
|
-
};
|
|
2507
|
-
pending_actions: ("signup-payment-method" | "signup-billing-address" | "signup-invite-team" | "signup-create-cluster")[];
|
|
2067
|
+
description: string;
|
|
2068
|
+
developer: string;
|
|
2069
|
+
logoUrl: string;
|
|
2070
|
+
longDescription: string;
|
|
2071
|
+
categories: string[];
|
|
2072
|
+
version_channels: string[];
|
|
2073
|
+
value_schemas: {
|
|
2074
|
+
version: string;
|
|
2075
|
+
schema: string;
|
|
2076
|
+
placeholder: string;
|
|
2077
|
+
}[];
|
|
2508
2078
|
}, {
|
|
2509
2079
|
name: string;
|
|
2510
2080
|
id: string;
|
|
2511
|
-
|
|
2512
|
-
|
|
2513
|
-
|
|
2514
|
-
|
|
2515
|
-
|
|
2516
|
-
|
|
2517
|
-
|
|
2518
|
-
|
|
2519
|
-
|
|
2520
|
-
|
|
2521
|
-
|
|
2522
|
-
city?: string | undefined;
|
|
2523
|
-
phone?: string | undefined;
|
|
2524
|
-
};
|
|
2525
|
-
quota: {
|
|
2526
|
-
versions: {
|
|
2527
|
-
id: string;
|
|
2528
|
-
label: string;
|
|
2529
|
-
}[];
|
|
2530
|
-
basic_clusters_max: number;
|
|
2531
|
-
basic_clusters_available: number;
|
|
2532
|
-
pro_clusters_max: number;
|
|
2533
|
-
pro_clusters_available: number;
|
|
2534
|
-
fleets_max: number;
|
|
2535
|
-
managed_fleets_cpu_max: number;
|
|
2536
|
-
cluster_tiers: string[];
|
|
2537
|
-
regions: string[];
|
|
2538
|
-
};
|
|
2539
|
-
pending_actions: ("signup-payment-method" | "signup-billing-address" | "signup-invite-team" | "signup-create-cluster")[];
|
|
2081
|
+
description: string;
|
|
2082
|
+
developer: string;
|
|
2083
|
+
logoUrl: string;
|
|
2084
|
+
longDescription: string;
|
|
2085
|
+
categories: string[];
|
|
2086
|
+
version_channels: string[];
|
|
2087
|
+
value_schemas: {
|
|
2088
|
+
version: string;
|
|
2089
|
+
schema: string;
|
|
2090
|
+
placeholder: string;
|
|
2091
|
+
}[];
|
|
2540
2092
|
}>;
|
|
2541
|
-
export declare const
|
|
2542
|
-
name: z.ZodString;
|
|
2543
|
-
contactInfo: z.ZodObject<{
|
|
2544
|
-
address1: z.ZodOptional<z.ZodString>;
|
|
2545
|
-
address2: z.ZodOptional<z.ZodString>;
|
|
2546
|
-
postalCode: z.ZodOptional<z.ZodString>;
|
|
2547
|
-
city: z.ZodOptional<z.ZodString>;
|
|
2548
|
-
state: z.ZodOptional<z.ZodString>;
|
|
2549
|
-
country: z.ZodOptional<z.ZodString>;
|
|
2550
|
-
phone: z.ZodOptional<z.ZodString>;
|
|
2551
|
-
email: z.ZodString;
|
|
2552
|
-
first_name: z.ZodString;
|
|
2553
|
-
last_name: z.ZodString;
|
|
2554
|
-
}, "strip", z.ZodTypeAny, {
|
|
2555
|
-
email: string;
|
|
2556
|
-
first_name: string;
|
|
2557
|
-
last_name: string;
|
|
2558
|
-
state?: string | undefined;
|
|
2559
|
-
country?: string | undefined;
|
|
2560
|
-
address1?: string | undefined;
|
|
2561
|
-
address2?: string | undefined;
|
|
2562
|
-
postalCode?: string | undefined;
|
|
2563
|
-
city?: string | undefined;
|
|
2564
|
-
phone?: string | undefined;
|
|
2565
|
-
}, {
|
|
2566
|
-
email: string;
|
|
2567
|
-
first_name: string;
|
|
2568
|
-
last_name: string;
|
|
2569
|
-
state?: string | undefined;
|
|
2570
|
-
country?: string | undefined;
|
|
2571
|
-
address1?: string | undefined;
|
|
2572
|
-
address2?: string | undefined;
|
|
2573
|
-
postalCode?: string | undefined;
|
|
2574
|
-
city?: string | undefined;
|
|
2575
|
-
phone?: string | undefined;
|
|
2576
|
-
}>;
|
|
2093
|
+
export declare const zGetOrganizationResponse: z.ZodObject<{
|
|
2577
2094
|
id: z.ZodString;
|
|
2095
|
+
name: z.ZodOptional<z.ZodString>;
|
|
2578
2096
|
date_created: z.ZodString;
|
|
2579
2097
|
quota: z.ZodObject<{
|
|
2580
2098
|
basic_clusters_max: z.ZodNumber;
|
|
@@ -2582,7 +2100,6 @@ export declare const zUpdateOrganizationResponse: z.ZodObject<{
|
|
|
2582
2100
|
pro_clusters_max: z.ZodNumber;
|
|
2583
2101
|
pro_clusters_available: z.ZodNumber;
|
|
2584
2102
|
fleets_max: z.ZodNumber;
|
|
2585
|
-
managed_fleets_cpu_max: z.ZodNumber;
|
|
2586
2103
|
cluster_tiers: z.ZodArray<z.ZodString, "many">;
|
|
2587
2104
|
regions: z.ZodArray<z.ZodString, "many">;
|
|
2588
2105
|
versions: z.ZodArray<z.ZodObject<{
|
|
@@ -2605,7 +2122,6 @@ export declare const zUpdateOrganizationResponse: z.ZodObject<{
|
|
|
2605
2122
|
pro_clusters_max: number;
|
|
2606
2123
|
pro_clusters_available: number;
|
|
2607
2124
|
fleets_max: number;
|
|
2608
|
-
managed_fleets_cpu_max: number;
|
|
2609
2125
|
cluster_tiers: string[];
|
|
2610
2126
|
regions: string[];
|
|
2611
2127
|
}, {
|
|
@@ -2618,29 +2134,14 @@ export declare const zUpdateOrganizationResponse: z.ZodObject<{
|
|
|
2618
2134
|
pro_clusters_max: number;
|
|
2619
2135
|
pro_clusters_available: number;
|
|
2620
2136
|
fleets_max: number;
|
|
2621
|
-
managed_fleets_cpu_max: number;
|
|
2622
2137
|
cluster_tiers: string[];
|
|
2623
2138
|
regions: string[];
|
|
2624
2139
|
}>;
|
|
2625
|
-
pending_actions: z.ZodArray<z.ZodEnum<["signup-billing-address", "signup-payment-method", "signup-invite-team", "signup-create-cluster"]>, "many">;
|
|
2626
2140
|
status: z.ZodEnum<["active", "closed", "suspended"]>;
|
|
2627
2141
|
}, "strip", z.ZodTypeAny, {
|
|
2628
|
-
name: string;
|
|
2629
2142
|
id: string;
|
|
2630
2143
|
status: "active" | "closed" | "suspended";
|
|
2631
2144
|
date_created: string;
|
|
2632
|
-
contactInfo: {
|
|
2633
|
-
email: string;
|
|
2634
|
-
first_name: string;
|
|
2635
|
-
last_name: string;
|
|
2636
|
-
state?: string | undefined;
|
|
2637
|
-
country?: string | undefined;
|
|
2638
|
-
address1?: string | undefined;
|
|
2639
|
-
address2?: string | undefined;
|
|
2640
|
-
postalCode?: string | undefined;
|
|
2641
|
-
city?: string | undefined;
|
|
2642
|
-
phone?: string | undefined;
|
|
2643
|
-
};
|
|
2644
2145
|
quota: {
|
|
2645
2146
|
versions: {
|
|
2646
2147
|
id: string;
|
|
@@ -2651,28 +2152,14 @@ export declare const zUpdateOrganizationResponse: z.ZodObject<{
|
|
|
2651
2152
|
pro_clusters_max: number;
|
|
2652
2153
|
pro_clusters_available: number;
|
|
2653
2154
|
fleets_max: number;
|
|
2654
|
-
managed_fleets_cpu_max: number;
|
|
2655
2155
|
cluster_tiers: string[];
|
|
2656
2156
|
regions: string[];
|
|
2657
2157
|
};
|
|
2658
|
-
|
|
2158
|
+
name?: string | undefined;
|
|
2659
2159
|
}, {
|
|
2660
|
-
name: string;
|
|
2661
2160
|
id: string;
|
|
2662
2161
|
status: "active" | "closed" | "suspended";
|
|
2663
2162
|
date_created: string;
|
|
2664
|
-
contactInfo: {
|
|
2665
|
-
email: string;
|
|
2666
|
-
first_name: string;
|
|
2667
|
-
last_name: string;
|
|
2668
|
-
state?: string | undefined;
|
|
2669
|
-
country?: string | undefined;
|
|
2670
|
-
address1?: string | undefined;
|
|
2671
|
-
address2?: string | undefined;
|
|
2672
|
-
postalCode?: string | undefined;
|
|
2673
|
-
city?: string | undefined;
|
|
2674
|
-
phone?: string | undefined;
|
|
2675
|
-
};
|
|
2676
2163
|
quota: {
|
|
2677
2164
|
versions: {
|
|
2678
2165
|
id: string;
|
|
@@ -2683,11 +2170,10 @@ export declare const zUpdateOrganizationResponse: z.ZodObject<{
|
|
|
2683
2170
|
pro_clusters_max: number;
|
|
2684
2171
|
pro_clusters_available: number;
|
|
2685
2172
|
fleets_max: number;
|
|
2686
|
-
managed_fleets_cpu_max: number;
|
|
2687
2173
|
cluster_tiers: string[];
|
|
2688
2174
|
regions: string[];
|
|
2689
2175
|
};
|
|
2690
|
-
|
|
2176
|
+
name?: string | undefined;
|
|
2691
2177
|
}>;
|
|
2692
2178
|
export declare const zListTokensResponse: z.ZodArray<z.ZodObject<{
|
|
2693
2179
|
name: z.ZodString;
|
|
@@ -2697,13 +2183,13 @@ export declare const zListTokensResponse: z.ZodArray<z.ZodObject<{
|
|
|
2697
2183
|
date_created: z.ZodString;
|
|
2698
2184
|
}, "strip", z.ZodTypeAny, {
|
|
2699
2185
|
name: string;
|
|
2700
|
-
role: "
|
|
2186
|
+
role: "Administrator" | "User";
|
|
2701
2187
|
date_created: string;
|
|
2702
2188
|
id?: string | undefined;
|
|
2703
2189
|
secret?: string | undefined;
|
|
2704
2190
|
}, {
|
|
2705
2191
|
name: string;
|
|
2706
|
-
role: "
|
|
2192
|
+
role: "Administrator" | "User";
|
|
2707
2193
|
date_created: string;
|
|
2708
2194
|
id?: string | undefined;
|
|
2709
2195
|
secret?: string | undefined;
|
|
@@ -2716,13 +2202,13 @@ export declare const zCreateTokenResponse: z.ZodObject<{
|
|
|
2716
2202
|
date_created: z.ZodString;
|
|
2717
2203
|
}, "strip", z.ZodTypeAny, {
|
|
2718
2204
|
name: string;
|
|
2719
|
-
role: "
|
|
2205
|
+
role: "Administrator" | "User";
|
|
2720
2206
|
date_created: string;
|
|
2721
2207
|
id?: string | undefined;
|
|
2722
2208
|
secret?: string | undefined;
|
|
2723
2209
|
}, {
|
|
2724
2210
|
name: string;
|
|
2725
|
-
role: "
|
|
2211
|
+
role: "Administrator" | "User";
|
|
2726
2212
|
date_created: string;
|
|
2727
2213
|
id?: string | undefined;
|
|
2728
2214
|
secret?: string | undefined;
|
|
@@ -2735,13 +2221,13 @@ export declare const zGetTokenResponse: z.ZodObject<{
|
|
|
2735
2221
|
date_created: z.ZodString;
|
|
2736
2222
|
}, "strip", z.ZodTypeAny, {
|
|
2737
2223
|
name: string;
|
|
2738
|
-
role: "
|
|
2224
|
+
role: "Administrator" | "User";
|
|
2739
2225
|
date_created: string;
|
|
2740
2226
|
id?: string | undefined;
|
|
2741
2227
|
secret?: string | undefined;
|
|
2742
2228
|
}, {
|
|
2743
2229
|
name: string;
|
|
2744
|
-
role: "
|
|
2230
|
+
role: "Administrator" | "User";
|
|
2745
2231
|
date_created: string;
|
|
2746
2232
|
id?: string | undefined;
|
|
2747
2233
|
secret?: string | undefined;
|
|
@@ -2754,13 +2240,13 @@ export declare const zUpdateTokenResponse: z.ZodObject<{
|
|
|
2754
2240
|
date_created: z.ZodString;
|
|
2755
2241
|
}, "strip", z.ZodTypeAny, {
|
|
2756
2242
|
name: string;
|
|
2757
|
-
role: "
|
|
2243
|
+
role: "Administrator" | "User";
|
|
2758
2244
|
date_created: string;
|
|
2759
2245
|
id?: string | undefined;
|
|
2760
2246
|
secret?: string | undefined;
|
|
2761
2247
|
}, {
|
|
2762
2248
|
name: string;
|
|
2763
|
-
role: "
|
|
2249
|
+
role: "Administrator" | "User";
|
|
2764
2250
|
date_created: string;
|
|
2765
2251
|
id?: string | undefined;
|
|
2766
2252
|
secret?: string | undefined;
|
|
@@ -2773,13 +2259,13 @@ export declare const zRegenerateTokenResponse: z.ZodObject<{
|
|
|
2773
2259
|
date_created: z.ZodString;
|
|
2774
2260
|
}, "strip", z.ZodTypeAny, {
|
|
2775
2261
|
name: string;
|
|
2776
|
-
role: "
|
|
2262
|
+
role: "Administrator" | "User";
|
|
2777
2263
|
date_created: string;
|
|
2778
2264
|
id?: string | undefined;
|
|
2779
2265
|
secret?: string | undefined;
|
|
2780
2266
|
}, {
|
|
2781
2267
|
name: string;
|
|
2782
|
-
role: "
|
|
2268
|
+
role: "Administrator" | "User";
|
|
2783
2269
|
date_created: string;
|
|
2784
2270
|
id?: string | undefined;
|
|
2785
2271
|
secret?: string | undefined;
|
|
@@ -2802,40 +2288,22 @@ export declare const zListUsersResponse: z.ZodArray<z.ZodObject<{
|
|
|
2802
2288
|
status: z.ZodEnum<["active", "inactive"]>;
|
|
2803
2289
|
id: z.ZodString;
|
|
2804
2290
|
date_created: z.ZodString;
|
|
2805
|
-
cluster_permissions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2806
|
-
cluster_id: z.ZodString;
|
|
2807
|
-
permissions: z.ZodEnum<["readwrite", "readonly"]>;
|
|
2808
|
-
}, "strip", z.ZodTypeAny, {
|
|
2809
|
-
cluster_id: string;
|
|
2810
|
-
permissions: "readonly" | "readwrite";
|
|
2811
|
-
}, {
|
|
2812
|
-
cluster_id: string;
|
|
2813
|
-
permissions: "readonly" | "readwrite";
|
|
2814
|
-
}>, "many">>;
|
|
2815
2291
|
}, "strip", z.ZodTypeAny, {
|
|
2816
2292
|
id: string;
|
|
2817
|
-
role: "
|
|
2293
|
+
role: "Administrator" | "User";
|
|
2818
2294
|
email: string;
|
|
2819
2295
|
status: "active" | "inactive";
|
|
2820
|
-
date_created: string;
|
|
2821
2296
|
first_name: string;
|
|
2822
2297
|
last_name: string;
|
|
2823
|
-
|
|
2824
|
-
cluster_id: string;
|
|
2825
|
-
permissions: "readonly" | "readwrite";
|
|
2826
|
-
}[] | undefined;
|
|
2298
|
+
date_created: string;
|
|
2827
2299
|
}, {
|
|
2828
2300
|
id: string;
|
|
2829
|
-
role: "
|
|
2301
|
+
role: "Administrator" | "User";
|
|
2830
2302
|
email: string;
|
|
2831
2303
|
status: "active" | "inactive";
|
|
2832
|
-
date_created: string;
|
|
2833
2304
|
first_name: string;
|
|
2834
2305
|
last_name: string;
|
|
2835
|
-
|
|
2836
|
-
cluster_id: string;
|
|
2837
|
-
permissions: "readonly" | "readwrite";
|
|
2838
|
-
}[] | undefined;
|
|
2306
|
+
date_created: string;
|
|
2839
2307
|
}>, "many">;
|
|
2840
2308
|
export declare const zCreateUserResponse: z.ZodObject<{
|
|
2841
2309
|
email: z.ZodString;
|
|
@@ -2845,40 +2313,22 @@ export declare const zCreateUserResponse: z.ZodObject<{
|
|
|
2845
2313
|
status: z.ZodEnum<["active", "inactive"]>;
|
|
2846
2314
|
id: z.ZodString;
|
|
2847
2315
|
date_created: z.ZodString;
|
|
2848
|
-
cluster_permissions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2849
|
-
cluster_id: z.ZodString;
|
|
2850
|
-
permissions: z.ZodEnum<["readwrite", "readonly"]>;
|
|
2851
|
-
}, "strip", z.ZodTypeAny, {
|
|
2852
|
-
cluster_id: string;
|
|
2853
|
-
permissions: "readonly" | "readwrite";
|
|
2854
|
-
}, {
|
|
2855
|
-
cluster_id: string;
|
|
2856
|
-
permissions: "readonly" | "readwrite";
|
|
2857
|
-
}>, "many">>;
|
|
2858
2316
|
}, "strip", z.ZodTypeAny, {
|
|
2859
2317
|
id: string;
|
|
2860
|
-
role: "
|
|
2318
|
+
role: "Administrator" | "User";
|
|
2861
2319
|
email: string;
|
|
2862
2320
|
status: "active" | "inactive";
|
|
2863
|
-
date_created: string;
|
|
2864
2321
|
first_name: string;
|
|
2865
2322
|
last_name: string;
|
|
2866
|
-
|
|
2867
|
-
cluster_id: string;
|
|
2868
|
-
permissions: "readonly" | "readwrite";
|
|
2869
|
-
}[] | undefined;
|
|
2323
|
+
date_created: string;
|
|
2870
2324
|
}, {
|
|
2871
2325
|
id: string;
|
|
2872
|
-
role: "
|
|
2326
|
+
role: "Administrator" | "User";
|
|
2873
2327
|
email: string;
|
|
2874
2328
|
status: "active" | "inactive";
|
|
2875
|
-
date_created: string;
|
|
2876
2329
|
first_name: string;
|
|
2877
2330
|
last_name: string;
|
|
2878
|
-
|
|
2879
|
-
cluster_id: string;
|
|
2880
|
-
permissions: "readonly" | "readwrite";
|
|
2881
|
-
}[] | undefined;
|
|
2331
|
+
date_created: string;
|
|
2882
2332
|
}>;
|
|
2883
2333
|
export declare const zDeleteUserResponse: z.ZodObject<{
|
|
2884
2334
|
email: z.ZodString;
|
|
@@ -2888,40 +2338,22 @@ export declare const zDeleteUserResponse: z.ZodObject<{
|
|
|
2888
2338
|
status: z.ZodEnum<["active", "inactive"]>;
|
|
2889
2339
|
id: z.ZodString;
|
|
2890
2340
|
date_created: z.ZodString;
|
|
2891
|
-
cluster_permissions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2892
|
-
cluster_id: z.ZodString;
|
|
2893
|
-
permissions: z.ZodEnum<["readwrite", "readonly"]>;
|
|
2894
|
-
}, "strip", z.ZodTypeAny, {
|
|
2895
|
-
cluster_id: string;
|
|
2896
|
-
permissions: "readonly" | "readwrite";
|
|
2897
|
-
}, {
|
|
2898
|
-
cluster_id: string;
|
|
2899
|
-
permissions: "readonly" | "readwrite";
|
|
2900
|
-
}>, "many">>;
|
|
2901
2341
|
}, "strip", z.ZodTypeAny, {
|
|
2902
2342
|
id: string;
|
|
2903
|
-
role: "
|
|
2343
|
+
role: "Administrator" | "User";
|
|
2904
2344
|
email: string;
|
|
2905
2345
|
status: "active" | "inactive";
|
|
2906
|
-
date_created: string;
|
|
2907
2346
|
first_name: string;
|
|
2908
2347
|
last_name: string;
|
|
2909
|
-
|
|
2910
|
-
cluster_id: string;
|
|
2911
|
-
permissions: "readonly" | "readwrite";
|
|
2912
|
-
}[] | undefined;
|
|
2348
|
+
date_created: string;
|
|
2913
2349
|
}, {
|
|
2914
2350
|
id: string;
|
|
2915
|
-
role: "
|
|
2351
|
+
role: "Administrator" | "User";
|
|
2916
2352
|
email: string;
|
|
2917
2353
|
status: "active" | "inactive";
|
|
2918
|
-
date_created: string;
|
|
2919
2354
|
first_name: string;
|
|
2920
2355
|
last_name: string;
|
|
2921
|
-
|
|
2922
|
-
cluster_id: string;
|
|
2923
|
-
permissions: "readonly" | "readwrite";
|
|
2924
|
-
}[] | undefined;
|
|
2356
|
+
date_created: string;
|
|
2925
2357
|
}>;
|
|
2926
2358
|
export declare const zGetUserResponse: z.ZodObject<{
|
|
2927
2359
|
email: z.ZodString;
|
|
@@ -2931,40 +2363,22 @@ export declare const zGetUserResponse: z.ZodObject<{
|
|
|
2931
2363
|
status: z.ZodEnum<["active", "inactive"]>;
|
|
2932
2364
|
id: z.ZodString;
|
|
2933
2365
|
date_created: z.ZodString;
|
|
2934
|
-
cluster_permissions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2935
|
-
cluster_id: z.ZodString;
|
|
2936
|
-
permissions: z.ZodEnum<["readwrite", "readonly"]>;
|
|
2937
|
-
}, "strip", z.ZodTypeAny, {
|
|
2938
|
-
cluster_id: string;
|
|
2939
|
-
permissions: "readonly" | "readwrite";
|
|
2940
|
-
}, {
|
|
2941
|
-
cluster_id: string;
|
|
2942
|
-
permissions: "readonly" | "readwrite";
|
|
2943
|
-
}>, "many">>;
|
|
2944
2366
|
}, "strip", z.ZodTypeAny, {
|
|
2945
2367
|
id: string;
|
|
2946
|
-
role: "
|
|
2368
|
+
role: "Administrator" | "User";
|
|
2947
2369
|
email: string;
|
|
2948
2370
|
status: "active" | "inactive";
|
|
2949
|
-
date_created: string;
|
|
2950
2371
|
first_name: string;
|
|
2951
2372
|
last_name: string;
|
|
2952
|
-
|
|
2953
|
-
cluster_id: string;
|
|
2954
|
-
permissions: "readonly" | "readwrite";
|
|
2955
|
-
}[] | undefined;
|
|
2373
|
+
date_created: string;
|
|
2956
2374
|
}, {
|
|
2957
2375
|
id: string;
|
|
2958
|
-
role: "
|
|
2376
|
+
role: "Administrator" | "User";
|
|
2959
2377
|
email: string;
|
|
2960
2378
|
status: "active" | "inactive";
|
|
2961
|
-
date_created: string;
|
|
2962
2379
|
first_name: string;
|
|
2963
2380
|
last_name: string;
|
|
2964
|
-
|
|
2965
|
-
cluster_id: string;
|
|
2966
|
-
permissions: "readonly" | "readwrite";
|
|
2967
|
-
}[] | undefined;
|
|
2381
|
+
date_created: string;
|
|
2968
2382
|
}>;
|
|
2969
2383
|
export declare const zUpdateUserResponse: z.ZodObject<{
|
|
2970
2384
|
email: z.ZodString;
|
|
@@ -2974,125 +2388,21 @@ export declare const zUpdateUserResponse: z.ZodObject<{
|
|
|
2974
2388
|
status: z.ZodEnum<["active", "inactive"]>;
|
|
2975
2389
|
id: z.ZodString;
|
|
2976
2390
|
date_created: z.ZodString;
|
|
2977
|
-
cluster_permissions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2978
|
-
cluster_id: z.ZodString;
|
|
2979
|
-
permissions: z.ZodEnum<["readwrite", "readonly"]>;
|
|
2980
|
-
}, "strip", z.ZodTypeAny, {
|
|
2981
|
-
cluster_id: string;
|
|
2982
|
-
permissions: "readonly" | "readwrite";
|
|
2983
|
-
}, {
|
|
2984
|
-
cluster_id: string;
|
|
2985
|
-
permissions: "readonly" | "readwrite";
|
|
2986
|
-
}>, "many">>;
|
|
2987
2391
|
}, "strip", z.ZodTypeAny, {
|
|
2988
2392
|
id: string;
|
|
2989
|
-
role: "
|
|
2393
|
+
role: "Administrator" | "User";
|
|
2990
2394
|
email: string;
|
|
2991
2395
|
status: "active" | "inactive";
|
|
2992
|
-
date_created: string;
|
|
2993
2396
|
first_name: string;
|
|
2994
2397
|
last_name: string;
|
|
2995
|
-
cluster_permissions?: {
|
|
2996
|
-
cluster_id: string;
|
|
2997
|
-
permissions: "readonly" | "readwrite";
|
|
2998
|
-
}[] | undefined;
|
|
2999
|
-
}, {
|
|
3000
|
-
id: string;
|
|
3001
|
-
role: "User" | "Administrator";
|
|
3002
|
-
email: string;
|
|
3003
|
-
status: "active" | "inactive";
|
|
3004
2398
|
date_created: string;
|
|
3005
|
-
first_name: string;
|
|
3006
|
-
last_name: string;
|
|
3007
|
-
cluster_permissions?: {
|
|
3008
|
-
cluster_id: string;
|
|
3009
|
-
permissions: "readonly" | "readwrite";
|
|
3010
|
-
}[] | undefined;
|
|
3011
|
-
}>;
|
|
3012
|
-
export declare const zDeleteClusterPermissionsResponse: z.ZodObject<{
|
|
3013
|
-
email: z.ZodString;
|
|
3014
|
-
first_name: z.ZodString;
|
|
3015
|
-
last_name: z.ZodString;
|
|
3016
|
-
role: z.ZodEnum<["Administrator", "User"]>;
|
|
3017
|
-
status: z.ZodEnum<["active", "inactive"]>;
|
|
3018
|
-
id: z.ZodString;
|
|
3019
|
-
date_created: z.ZodString;
|
|
3020
|
-
cluster_permissions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3021
|
-
cluster_id: z.ZodString;
|
|
3022
|
-
permissions: z.ZodEnum<["readwrite", "readonly"]>;
|
|
3023
|
-
}, "strip", z.ZodTypeAny, {
|
|
3024
|
-
cluster_id: string;
|
|
3025
|
-
permissions: "readonly" | "readwrite";
|
|
3026
|
-
}, {
|
|
3027
|
-
cluster_id: string;
|
|
3028
|
-
permissions: "readonly" | "readwrite";
|
|
3029
|
-
}>, "many">>;
|
|
3030
|
-
}, "strip", z.ZodTypeAny, {
|
|
3031
|
-
id: string;
|
|
3032
|
-
role: "User" | "Administrator";
|
|
3033
|
-
email: string;
|
|
3034
|
-
status: "active" | "inactive";
|
|
3035
|
-
date_created: string;
|
|
3036
|
-
first_name: string;
|
|
3037
|
-
last_name: string;
|
|
3038
|
-
cluster_permissions?: {
|
|
3039
|
-
cluster_id: string;
|
|
3040
|
-
permissions: "readonly" | "readwrite";
|
|
3041
|
-
}[] | undefined;
|
|
3042
2399
|
}, {
|
|
3043
2400
|
id: string;
|
|
3044
|
-
role: "
|
|
3045
|
-
email: string;
|
|
3046
|
-
status: "active" | "inactive";
|
|
3047
|
-
date_created: string;
|
|
3048
|
-
first_name: string;
|
|
3049
|
-
last_name: string;
|
|
3050
|
-
cluster_permissions?: {
|
|
3051
|
-
cluster_id: string;
|
|
3052
|
-
permissions: "readonly" | "readwrite";
|
|
3053
|
-
}[] | undefined;
|
|
3054
|
-
}>;
|
|
3055
|
-
export declare const zSetClusterPermissionsResponse: z.ZodObject<{
|
|
3056
|
-
email: z.ZodString;
|
|
3057
|
-
first_name: z.ZodString;
|
|
3058
|
-
last_name: z.ZodString;
|
|
3059
|
-
role: z.ZodEnum<["Administrator", "User"]>;
|
|
3060
|
-
status: z.ZodEnum<["active", "inactive"]>;
|
|
3061
|
-
id: z.ZodString;
|
|
3062
|
-
date_created: z.ZodString;
|
|
3063
|
-
cluster_permissions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3064
|
-
cluster_id: z.ZodString;
|
|
3065
|
-
permissions: z.ZodEnum<["readwrite", "readonly"]>;
|
|
3066
|
-
}, "strip", z.ZodTypeAny, {
|
|
3067
|
-
cluster_id: string;
|
|
3068
|
-
permissions: "readonly" | "readwrite";
|
|
3069
|
-
}, {
|
|
3070
|
-
cluster_id: string;
|
|
3071
|
-
permissions: "readonly" | "readwrite";
|
|
3072
|
-
}>, "many">>;
|
|
3073
|
-
}, "strip", z.ZodTypeAny, {
|
|
3074
|
-
id: string;
|
|
3075
|
-
role: "User" | "Administrator";
|
|
2401
|
+
role: "Administrator" | "User";
|
|
3076
2402
|
email: string;
|
|
3077
2403
|
status: "active" | "inactive";
|
|
3078
|
-
date_created: string;
|
|
3079
2404
|
first_name: string;
|
|
3080
2405
|
last_name: string;
|
|
3081
|
-
cluster_permissions?: {
|
|
3082
|
-
cluster_id: string;
|
|
3083
|
-
permissions: "readonly" | "readwrite";
|
|
3084
|
-
}[] | undefined;
|
|
3085
|
-
}, {
|
|
3086
|
-
id: string;
|
|
3087
|
-
role: "User" | "Administrator";
|
|
3088
|
-
email: string;
|
|
3089
|
-
status: "active" | "inactive";
|
|
3090
2406
|
date_created: string;
|
|
3091
|
-
first_name: string;
|
|
3092
|
-
last_name: string;
|
|
3093
|
-
cluster_permissions?: {
|
|
3094
|
-
cluster_id: string;
|
|
3095
|
-
permissions: "readonly" | "readwrite";
|
|
3096
|
-
}[] | undefined;
|
|
3097
2407
|
}>;
|
|
3098
2408
|
//# sourceMappingURL=zod.gen.d.ts.map
|