@cloudfleet/sdk 0.0.1-7bf9c12 → 0.0.1-7d337a1
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 +458 -693
- package/dist/schemas.gen.d.ts.map +1 -1
- package/dist/schemas.gen.js +459 -702
- package/dist/schemas.gen.js.map +1 -1
- package/dist/sdk.gen.d.ts +145 -139
- package/dist/sdk.gen.d.ts.map +1 -1
- package/dist/sdk.gen.js +212 -146
- 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 +477 -723
- package/dist/types.gen.d.ts.map +1 -1
- package/dist/zod.gen.d.ts +1297 -1223
- package/dist/zod.gen.d.ts.map +1 -1
- package/dist/zod.gen.js +551 -204
- package/dist/zod.gen.js.map +1 -1
- package/package.json +9 -5
package/dist/zod.gen.d.ts
CHANGED
|
@@ -1,18 +1,155 @@
|
|
|
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
|
-
region: z.ZodOptional<z.ZodEnum<["staging", "northamerica-central-1"]>>;
|
|
5
141
|
tier: z.ZodEnum<["basic", "pro"]>;
|
|
142
|
+
region: z.ZodOptional<z.ZodEnum<["staging", "northamerica-central-1", "europe-central-1a"]>>;
|
|
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;
|
|
11
|
-
|
|
147
|
+
tier: "basic" | "pro";
|
|
148
|
+
region?: "staging" | "northamerica-central-1" | "europe-central-1a" | undefined;
|
|
12
149
|
}, {
|
|
13
150
|
name: string;
|
|
14
151
|
tier: "basic" | "pro";
|
|
15
|
-
region?: "staging" | "northamerica-central-1" | undefined;
|
|
152
|
+
region?: "staging" | "northamerica-central-1" | "europe-central-1a" | undefined;
|
|
16
153
|
version_channel?: string | undefined;
|
|
17
154
|
}>;
|
|
18
155
|
export declare const zClusterJoinInformation: z.ZodObject<{
|
|
@@ -79,8 +216,8 @@ export declare const zClusterJoinInformation: z.ZodObject<{
|
|
|
79
216
|
}>;
|
|
80
217
|
export declare const zCluster: z.ZodObject<{
|
|
81
218
|
name: z.ZodString;
|
|
82
|
-
region: z.ZodOptional<z.ZodEnum<["staging", "northamerica-central-1"]>>;
|
|
83
219
|
tier: z.ZodEnum<["basic", "pro"]>;
|
|
220
|
+
region: z.ZodOptional<z.ZodEnum<["staging", "northamerica-central-1", "europe-central-1a"]>>;
|
|
84
221
|
version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
85
222
|
id: z.ZodString;
|
|
86
223
|
status: z.ZodEnum<["active", "deleted", "creating", "deployed", "failed", "updating"]>;
|
|
@@ -94,36 +231,39 @@ 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;
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
235
|
+
tier: "basic" | "pro";
|
|
236
|
+
ready?: boolean | undefined;
|
|
237
|
+
region?: "staging" | "northamerica-central-1" | "europe-central-1a" | 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";
|
|
111
|
-
|
|
112
|
-
|
|
248
|
+
ready?: boolean | undefined;
|
|
249
|
+
region?: "staging" | "northamerica-central-1" | "europe-central-1a" | 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>;
|
|
259
|
+
tier: z.ZodEnum<["basic", "pro"]>;
|
|
122
260
|
version_channel: z.ZodOptional<z.ZodString>;
|
|
123
261
|
}, "strip", z.ZodTypeAny, {
|
|
262
|
+
tier: "basic" | "pro";
|
|
124
263
|
name?: string | undefined;
|
|
125
264
|
version_channel?: string | undefined;
|
|
126
265
|
}, {
|
|
266
|
+
tier: "basic" | "pro";
|
|
127
267
|
name?: string | undefined;
|
|
128
268
|
version_channel?: string | undefined;
|
|
129
269
|
}>;
|
|
@@ -145,25 +285,16 @@ export declare const zFleetCreateInput: z.ZodObject<{
|
|
|
145
285
|
project: string;
|
|
146
286
|
enabled?: boolean | undefined;
|
|
147
287
|
}>>;
|
|
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>;
|
|
288
|
+
hetzner: z.ZodOptional<z.ZodObject<{
|
|
159
289
|
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
290
|
+
apiKey: z.ZodString;
|
|
160
291
|
}, "strip", z.ZodTypeAny, {
|
|
292
|
+
apiKey: string;
|
|
161
293
|
enabled: boolean;
|
|
162
|
-
apiKey?: string | undefined;
|
|
163
294
|
}, {
|
|
164
|
-
apiKey
|
|
295
|
+
apiKey: string;
|
|
165
296
|
enabled?: boolean | undefined;
|
|
166
|
-
}
|
|
297
|
+
}>>;
|
|
167
298
|
aws: z.ZodOptional<z.ZodObject<{
|
|
168
299
|
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
169
300
|
controllerRoleArn: z.ZodString;
|
|
@@ -175,9 +306,7 @@ export declare const zFleetCreateInput: z.ZodObject<{
|
|
|
175
306
|
enabled?: boolean | undefined;
|
|
176
307
|
}>>;
|
|
177
308
|
id: z.ZodString;
|
|
178
|
-
type: z.ZodEnum<["managed", "connected"]>;
|
|
179
309
|
}, "strip", z.ZodTypeAny, {
|
|
180
|
-
type: "connected" | "managed";
|
|
181
310
|
id: string;
|
|
182
311
|
limits?: {
|
|
183
312
|
cpu: number;
|
|
@@ -187,18 +316,14 @@ export declare const zFleetCreateInput: z.ZodObject<{
|
|
|
187
316
|
enabled: boolean;
|
|
188
317
|
} | undefined;
|
|
189
318
|
hetzner?: {
|
|
319
|
+
apiKey: string;
|
|
190
320
|
enabled: boolean;
|
|
191
|
-
apiKey?: string | undefined;
|
|
192
|
-
} | {
|
|
193
|
-
enabled: boolean;
|
|
194
|
-
apiKey?: string | undefined;
|
|
195
321
|
} | undefined;
|
|
196
322
|
aws?: {
|
|
197
323
|
controllerRoleArn: string;
|
|
198
324
|
enabled: boolean;
|
|
199
325
|
} | undefined;
|
|
200
326
|
}, {
|
|
201
|
-
type: "connected" | "managed";
|
|
202
327
|
id: string;
|
|
203
328
|
limits?: {
|
|
204
329
|
cpu: number;
|
|
@@ -208,10 +333,7 @@ export declare const zFleetCreateInput: z.ZodObject<{
|
|
|
208
333
|
enabled?: boolean | undefined;
|
|
209
334
|
} | undefined;
|
|
210
335
|
hetzner?: {
|
|
211
|
-
apiKey
|
|
212
|
-
enabled?: boolean | undefined;
|
|
213
|
-
} | {
|
|
214
|
-
apiKey?: string | undefined;
|
|
336
|
+
apiKey: string;
|
|
215
337
|
enabled?: boolean | undefined;
|
|
216
338
|
} | undefined;
|
|
217
339
|
aws?: {
|
|
@@ -237,25 +359,16 @@ export declare const zFleet: z.ZodObject<{
|
|
|
237
359
|
project: string;
|
|
238
360
|
enabled?: boolean | undefined;
|
|
239
361
|
}>>;
|
|
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>;
|
|
362
|
+
hetzner: z.ZodOptional<z.ZodObject<{
|
|
251
363
|
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
364
|
+
apiKey: z.ZodString;
|
|
252
365
|
}, "strip", z.ZodTypeAny, {
|
|
366
|
+
apiKey: string;
|
|
253
367
|
enabled: boolean;
|
|
254
|
-
apiKey?: string | undefined;
|
|
255
368
|
}, {
|
|
256
|
-
apiKey
|
|
369
|
+
apiKey: string;
|
|
257
370
|
enabled?: boolean | undefined;
|
|
258
|
-
}
|
|
371
|
+
}>>;
|
|
259
372
|
aws: z.ZodOptional<z.ZodObject<{
|
|
260
373
|
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
261
374
|
controllerRoleArn: z.ZodString;
|
|
@@ -267,9 +380,7 @@ export declare const zFleet: z.ZodObject<{
|
|
|
267
380
|
enabled?: boolean | undefined;
|
|
268
381
|
}>>;
|
|
269
382
|
id: z.ZodString;
|
|
270
|
-
type: z.ZodEnum<["managed", "connected"]>;
|
|
271
383
|
}, "strip", z.ZodTypeAny, {
|
|
272
|
-
type: "connected" | "managed";
|
|
273
384
|
id: string;
|
|
274
385
|
limits?: {
|
|
275
386
|
cpu: number;
|
|
@@ -279,18 +390,14 @@ export declare const zFleet: z.ZodObject<{
|
|
|
279
390
|
enabled: boolean;
|
|
280
391
|
} | undefined;
|
|
281
392
|
hetzner?: {
|
|
393
|
+
apiKey: string;
|
|
282
394
|
enabled: boolean;
|
|
283
|
-
apiKey?: string | undefined;
|
|
284
|
-
} | {
|
|
285
|
-
enabled: boolean;
|
|
286
|
-
apiKey?: string | undefined;
|
|
287
395
|
} | undefined;
|
|
288
396
|
aws?: {
|
|
289
397
|
controllerRoleArn: string;
|
|
290
398
|
enabled: boolean;
|
|
291
399
|
} | undefined;
|
|
292
400
|
}, {
|
|
293
|
-
type: "connected" | "managed";
|
|
294
401
|
id: string;
|
|
295
402
|
limits?: {
|
|
296
403
|
cpu: number;
|
|
@@ -300,10 +407,7 @@ export declare const zFleet: z.ZodObject<{
|
|
|
300
407
|
enabled?: boolean | undefined;
|
|
301
408
|
} | undefined;
|
|
302
409
|
hetzner?: {
|
|
303
|
-
apiKey
|
|
304
|
-
enabled?: boolean | undefined;
|
|
305
|
-
} | {
|
|
306
|
-
apiKey?: string | undefined;
|
|
410
|
+
apiKey: string;
|
|
307
411
|
enabled?: boolean | undefined;
|
|
308
412
|
} | undefined;
|
|
309
413
|
aws?: {
|
|
@@ -329,25 +433,16 @@ export declare const zFleetUpdateInput: z.ZodObject<{
|
|
|
329
433
|
project: string;
|
|
330
434
|
enabled?: boolean | undefined;
|
|
331
435
|
}>>;
|
|
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>;
|
|
436
|
+
hetzner: z.ZodOptional<z.ZodObject<{
|
|
343
437
|
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
438
|
+
apiKey: z.ZodString;
|
|
344
439
|
}, "strip", z.ZodTypeAny, {
|
|
440
|
+
apiKey: string;
|
|
345
441
|
enabled: boolean;
|
|
346
|
-
apiKey?: string | undefined;
|
|
347
442
|
}, {
|
|
348
|
-
apiKey
|
|
443
|
+
apiKey: string;
|
|
349
444
|
enabled?: boolean | undefined;
|
|
350
|
-
}
|
|
445
|
+
}>>;
|
|
351
446
|
aws: z.ZodOptional<z.ZodObject<{
|
|
352
447
|
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
353
448
|
controllerRoleArn: z.ZodString;
|
|
@@ -367,11 +462,8 @@ export declare const zFleetUpdateInput: z.ZodObject<{
|
|
|
367
462
|
enabled: boolean;
|
|
368
463
|
} | undefined;
|
|
369
464
|
hetzner?: {
|
|
465
|
+
apiKey: string;
|
|
370
466
|
enabled: boolean;
|
|
371
|
-
apiKey?: string | undefined;
|
|
372
|
-
} | {
|
|
373
|
-
enabled: boolean;
|
|
374
|
-
apiKey?: string | undefined;
|
|
375
467
|
} | undefined;
|
|
376
468
|
aws?: {
|
|
377
469
|
controllerRoleArn: string;
|
|
@@ -386,10 +478,7 @@ export declare const zFleetUpdateInput: z.ZodObject<{
|
|
|
386
478
|
enabled?: boolean | undefined;
|
|
387
479
|
} | undefined;
|
|
388
480
|
hetzner?: {
|
|
389
|
-
apiKey
|
|
390
|
-
enabled?: boolean | undefined;
|
|
391
|
-
} | {
|
|
392
|
-
apiKey?: string | undefined;
|
|
481
|
+
apiKey: string;
|
|
393
482
|
enabled?: boolean | undefined;
|
|
394
483
|
} | undefined;
|
|
395
484
|
aws?: {
|
|
@@ -397,140 +486,6 @@ export declare const zFleetUpdateInput: z.ZodObject<{
|
|
|
397
486
|
enabled?: boolean | undefined;
|
|
398
487
|
} | undefined;
|
|
399
488
|
}>;
|
|
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
489
|
export declare const zInvite: z.ZodObject<{
|
|
535
490
|
id: z.ZodOptional<z.ZodString>;
|
|
536
491
|
organization_id: z.ZodOptional<z.ZodString>;
|
|
@@ -586,7 +541,7 @@ export declare const zInvoice: z.ZodObject<{
|
|
|
586
541
|
catalogEffectiveDate: z.ZodOptional<z.ZodString>;
|
|
587
542
|
childItems: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
|
|
588
543
|
}, "strip", z.ZodTypeAny, {
|
|
589
|
-
currency?: "
|
|
544
|
+
currency?: "AED" | "AFN" | "ALL" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BRL" | "BSD" | "BTN" | "BWP" | "BYR" | "BZD" | "CAD" | "CDF" | "CHF" | "CLP" | "CNY" | "COP" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GGP" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "IMP" | "INR" | "IQD" | "IRR" | "ISK" | "JEP" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LTL" | "LVL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRO" | "MUR" | "MVR" | "MWK" | "MXN" | "MYR" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SPL" | "SRD" | "STD" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TVD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "UYU" | "UZS" | "VEF" | "VND" | "VUV" | "WST" | "XAF" | "XCD" | "XDR" | "XOF" | "XPF" | "YER" | "ZAR" | "ZMW" | "ZWD" | "BTC" | undefined;
|
|
590
545
|
id?: string | undefined;
|
|
591
546
|
description?: string | undefined;
|
|
592
547
|
amount?: number | undefined;
|
|
@@ -608,7 +563,7 @@ export declare const zInvoice: z.ZodObject<{
|
|
|
608
563
|
catalogEffectiveDate?: string | undefined;
|
|
609
564
|
childItems?: unknown[] | undefined;
|
|
610
565
|
}, {
|
|
611
|
-
currency?: "
|
|
566
|
+
currency?: "AED" | "AFN" | "ALL" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BRL" | "BSD" | "BTN" | "BWP" | "BYR" | "BZD" | "CAD" | "CDF" | "CHF" | "CLP" | "CNY" | "COP" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GGP" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "IMP" | "INR" | "IQD" | "IRR" | "ISK" | "JEP" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LTL" | "LVL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRO" | "MUR" | "MVR" | "MWK" | "MXN" | "MYR" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SPL" | "SRD" | "STD" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TVD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "UYU" | "UZS" | "VEF" | "VND" | "VUV" | "WST" | "XAF" | "XCD" | "XDR" | "XOF" | "XPF" | "YER" | "ZAR" | "ZMW" | "ZWD" | "BTC" | undefined;
|
|
612
567
|
id?: string | undefined;
|
|
613
568
|
description?: string | undefined;
|
|
614
569
|
amount?: number | undefined;
|
|
@@ -653,7 +608,7 @@ export declare const zInvoice: z.ZodObject<{
|
|
|
653
608
|
catalogEffectiveDate: z.ZodOptional<z.ZodString>;
|
|
654
609
|
childItems: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
|
|
655
610
|
}, "strip", z.ZodTypeAny, {
|
|
656
|
-
currency?: "
|
|
611
|
+
currency?: "AED" | "AFN" | "ALL" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BRL" | "BSD" | "BTN" | "BWP" | "BYR" | "BZD" | "CAD" | "CDF" | "CHF" | "CLP" | "CNY" | "COP" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GGP" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "IMP" | "INR" | "IQD" | "IRR" | "ISK" | "JEP" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LTL" | "LVL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRO" | "MUR" | "MVR" | "MWK" | "MXN" | "MYR" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SPL" | "SRD" | "STD" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TVD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "UYU" | "UZS" | "VEF" | "VND" | "VUV" | "WST" | "XAF" | "XCD" | "XDR" | "XOF" | "XPF" | "YER" | "ZAR" | "ZMW" | "ZWD" | "BTC" | undefined;
|
|
657
612
|
id?: string | undefined;
|
|
658
613
|
description?: string | undefined;
|
|
659
614
|
amount?: number | undefined;
|
|
@@ -675,7 +630,7 @@ export declare const zInvoice: z.ZodObject<{
|
|
|
675
630
|
catalogEffectiveDate?: string | undefined;
|
|
676
631
|
childItems?: unknown[] | undefined;
|
|
677
632
|
}, {
|
|
678
|
-
currency?: "
|
|
633
|
+
currency?: "AED" | "AFN" | "ALL" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BRL" | "BSD" | "BTN" | "BWP" | "BYR" | "BZD" | "CAD" | "CDF" | "CHF" | "CLP" | "CNY" | "COP" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GGP" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "IMP" | "INR" | "IQD" | "IRR" | "ISK" | "JEP" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LTL" | "LVL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRO" | "MUR" | "MVR" | "MWK" | "MXN" | "MYR" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SPL" | "SRD" | "STD" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TVD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "UYU" | "UZS" | "VEF" | "VND" | "VUV" | "WST" | "XAF" | "XCD" | "XDR" | "XOF" | "XPF" | "YER" | "ZAR" | "ZMW" | "ZWD" | "BTC" | undefined;
|
|
679
634
|
id?: string | undefined;
|
|
680
635
|
description?: string | undefined;
|
|
681
636
|
amount?: number | undefined;
|
|
@@ -698,11 +653,11 @@ export declare const zInvoice: z.ZodObject<{
|
|
|
698
653
|
childItems?: unknown[] | undefined;
|
|
699
654
|
}>, "many">>;
|
|
700
655
|
}, "strip", z.ZodTypeAny, {
|
|
701
|
-
currency?: "
|
|
656
|
+
currency?: "AED" | "AFN" | "ALL" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BRL" | "BSD" | "BTN" | "BWP" | "BYR" | "BZD" | "CAD" | "CDF" | "CHF" | "CLP" | "CNY" | "COP" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GGP" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "IMP" | "INR" | "IQD" | "IRR" | "ISK" | "JEP" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LTL" | "LVL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRO" | "MUR" | "MVR" | "MWK" | "MXN" | "MYR" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SPL" | "SRD" | "STD" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TVD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "UYU" | "UZS" | "VEF" | "VND" | "VUV" | "WST" | "XAF" | "XCD" | "XDR" | "XOF" | "XPF" | "YER" | "ZAR" | "ZMW" | "ZWD" | "BTC" | undefined;
|
|
702
657
|
id?: string | undefined;
|
|
703
658
|
status?: "DRAFT" | "COMMITTED" | "VOID" | undefined;
|
|
704
659
|
items?: {
|
|
705
|
-
currency?: "
|
|
660
|
+
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
661
|
id?: string | undefined;
|
|
707
662
|
description?: string | undefined;
|
|
708
663
|
amount?: number | undefined;
|
|
@@ -734,7 +689,7 @@ export declare const zInvoice: z.ZodObject<{
|
|
|
734
689
|
balance?: number | undefined;
|
|
735
690
|
bundleKeys?: string | undefined;
|
|
736
691
|
credits?: {
|
|
737
|
-
currency?: "
|
|
692
|
+
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
693
|
id?: string | undefined;
|
|
739
694
|
description?: string | undefined;
|
|
740
695
|
amount?: number | undefined;
|
|
@@ -757,11 +712,11 @@ export declare const zInvoice: z.ZodObject<{
|
|
|
757
712
|
childItems?: unknown[] | undefined;
|
|
758
713
|
}[] | undefined;
|
|
759
714
|
}, {
|
|
760
|
-
currency?: "
|
|
715
|
+
currency?: "AED" | "AFN" | "ALL" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BRL" | "BSD" | "BTN" | "BWP" | "BYR" | "BZD" | "CAD" | "CDF" | "CHF" | "CLP" | "CNY" | "COP" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GGP" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "IMP" | "INR" | "IQD" | "IRR" | "ISK" | "JEP" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LTL" | "LVL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRO" | "MUR" | "MVR" | "MWK" | "MXN" | "MYR" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SPL" | "SRD" | "STD" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TVD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "UYU" | "UZS" | "VEF" | "VND" | "VUV" | "WST" | "XAF" | "XCD" | "XDR" | "XOF" | "XPF" | "YER" | "ZAR" | "ZMW" | "ZWD" | "BTC" | undefined;
|
|
761
716
|
id?: string | undefined;
|
|
762
717
|
status?: "DRAFT" | "COMMITTED" | "VOID" | undefined;
|
|
763
718
|
items?: {
|
|
764
|
-
currency?: "
|
|
719
|
+
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
720
|
id?: string | undefined;
|
|
766
721
|
description?: string | undefined;
|
|
767
722
|
amount?: number | undefined;
|
|
@@ -793,7 +748,7 @@ export declare const zInvoice: z.ZodObject<{
|
|
|
793
748
|
balance?: number | undefined;
|
|
794
749
|
bundleKeys?: string | undefined;
|
|
795
750
|
credits?: {
|
|
796
|
-
currency?: "
|
|
751
|
+
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
752
|
id?: string | undefined;
|
|
798
753
|
description?: string | undefined;
|
|
799
754
|
amount?: number | undefined;
|
|
@@ -816,145 +771,79 @@ export declare const zInvoice: z.ZodObject<{
|
|
|
816
771
|
childItems?: unknown[] | undefined;
|
|
817
772
|
}[] | undefined;
|
|
818
773
|
}>;
|
|
819
|
-
export declare const
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
|
|
774
|
+
export declare const zMarketplaceListing: z.ZodObject<{
|
|
775
|
+
id: z.ZodString;
|
|
776
|
+
name: z.ZodString;
|
|
777
|
+
developer: z.ZodString;
|
|
778
|
+
description: z.ZodString;
|
|
779
|
+
logoUrl: z.ZodString;
|
|
780
|
+
longDescription: z.ZodString;
|
|
781
|
+
categories: z.ZodArray<z.ZodString, "many">;
|
|
782
|
+
version_channels: z.ZodArray<z.ZodString, "many">;
|
|
783
|
+
value_schemas: z.ZodArray<z.ZodObject<{
|
|
784
|
+
version: z.ZodString;
|
|
785
|
+
schema: z.ZodString;
|
|
786
|
+
placeholder: z.ZodString;
|
|
787
|
+
}, "strip", z.ZodTypeAny, {
|
|
788
|
+
version: string;
|
|
789
|
+
schema: string;
|
|
790
|
+
placeholder: string;
|
|
791
|
+
}, {
|
|
792
|
+
version: string;
|
|
793
|
+
schema: string;
|
|
794
|
+
placeholder: string;
|
|
795
|
+
}>, "many">;
|
|
796
|
+
}, "strip", z.ZodTypeAny, {
|
|
797
|
+
name: string;
|
|
798
|
+
id: string;
|
|
799
|
+
description: string;
|
|
800
|
+
developer: string;
|
|
801
|
+
logoUrl: string;
|
|
802
|
+
longDescription: string;
|
|
803
|
+
categories: string[];
|
|
804
|
+
version_channels: string[];
|
|
805
|
+
value_schemas: {
|
|
806
|
+
version: string;
|
|
807
|
+
schema: string;
|
|
808
|
+
placeholder: string;
|
|
809
|
+
}[];
|
|
810
|
+
}, {
|
|
811
|
+
name: string;
|
|
812
|
+
id: string;
|
|
813
|
+
description: string;
|
|
814
|
+
developer: string;
|
|
815
|
+
logoUrl: string;
|
|
816
|
+
longDescription: string;
|
|
817
|
+
categories: string[];
|
|
818
|
+
version_channels: string[];
|
|
819
|
+
value_schemas: {
|
|
820
|
+
version: string;
|
|
821
|
+
schema: string;
|
|
822
|
+
placeholder: string;
|
|
823
|
+
}[];
|
|
824
|
+
}>;
|
|
825
|
+
export declare const zOrganizationCreateInput: z.ZodObject<{
|
|
827
826
|
email: z.ZodString;
|
|
828
827
|
first_name: z.ZodString;
|
|
829
828
|
last_name: z.ZodString;
|
|
829
|
+
company_name: z.ZodString;
|
|
830
|
+
password: z.ZodString;
|
|
830
831
|
}, "strip", z.ZodTypeAny, {
|
|
831
832
|
email: string;
|
|
832
833
|
first_name: string;
|
|
833
834
|
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;
|
|
835
|
+
company_name: string;
|
|
836
|
+
password: string;
|
|
841
837
|
}, {
|
|
842
838
|
email: string;
|
|
843
839
|
first_name: string;
|
|
844
840
|
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
|
-
};
|
|
841
|
+
company_name: string;
|
|
919
842
|
password: string;
|
|
920
843
|
}>;
|
|
921
844
|
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
845
|
id: z.ZodString;
|
|
846
|
+
name: z.ZodOptional<z.ZodString>;
|
|
958
847
|
date_created: z.ZodString;
|
|
959
848
|
quota: z.ZodObject<{
|
|
960
849
|
basic_clusters_max: z.ZodNumber;
|
|
@@ -962,7 +851,6 @@ export declare const zOrganization: z.ZodObject<{
|
|
|
962
851
|
pro_clusters_max: z.ZodNumber;
|
|
963
852
|
pro_clusters_available: z.ZodNumber;
|
|
964
853
|
fleets_max: z.ZodNumber;
|
|
965
|
-
managed_fleets_cpu_max: z.ZodNumber;
|
|
966
854
|
cluster_tiers: z.ZodArray<z.ZodString, "many">;
|
|
967
855
|
regions: z.ZodArray<z.ZodString, "many">;
|
|
968
856
|
versions: z.ZodArray<z.ZodObject<{
|
|
@@ -985,7 +873,6 @@ export declare const zOrganization: z.ZodObject<{
|
|
|
985
873
|
pro_clusters_max: number;
|
|
986
874
|
pro_clusters_available: number;
|
|
987
875
|
fleets_max: number;
|
|
988
|
-
managed_fleets_cpu_max: number;
|
|
989
876
|
cluster_tiers: string[];
|
|
990
877
|
regions: string[];
|
|
991
878
|
}, {
|
|
@@ -998,29 +885,14 @@ export declare const zOrganization: z.ZodObject<{
|
|
|
998
885
|
pro_clusters_max: number;
|
|
999
886
|
pro_clusters_available: number;
|
|
1000
887
|
fleets_max: number;
|
|
1001
|
-
managed_fleets_cpu_max: number;
|
|
1002
888
|
cluster_tiers: string[];
|
|
1003
889
|
regions: string[];
|
|
1004
890
|
}>;
|
|
1005
|
-
pending_actions: z.ZodArray<z.ZodEnum<["signup-billing-address", "signup-payment-method", "signup-invite-team", "signup-create-cluster"]>, "many">;
|
|
1006
891
|
status: z.ZodEnum<["active", "closed", "suspended"]>;
|
|
1007
892
|
}, "strip", z.ZodTypeAny, {
|
|
1008
|
-
name: string;
|
|
1009
893
|
id: string;
|
|
1010
894
|
status: "active" | "closed" | "suspended";
|
|
1011
895
|
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
896
|
quota: {
|
|
1025
897
|
versions: {
|
|
1026
898
|
id: string;
|
|
@@ -1031,28 +903,14 @@ export declare const zOrganization: z.ZodObject<{
|
|
|
1031
903
|
pro_clusters_max: number;
|
|
1032
904
|
pro_clusters_available: number;
|
|
1033
905
|
fleets_max: number;
|
|
1034
|
-
managed_fleets_cpu_max: number;
|
|
1035
906
|
cluster_tiers: string[];
|
|
1036
907
|
regions: string[];
|
|
1037
908
|
};
|
|
1038
|
-
|
|
909
|
+
name?: string | undefined;
|
|
1039
910
|
}, {
|
|
1040
|
-
name: string;
|
|
1041
911
|
id: string;
|
|
1042
912
|
status: "active" | "closed" | "suspended";
|
|
1043
913
|
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
914
|
quota: {
|
|
1057
915
|
versions: {
|
|
1058
916
|
id: string;
|
|
@@ -1063,75 +921,9 @@ export declare const zOrganization: z.ZodObject<{
|
|
|
1063
921
|
pro_clusters_max: number;
|
|
1064
922
|
pro_clusters_available: number;
|
|
1065
923
|
fleets_max: number;
|
|
1066
|
-
managed_fleets_cpu_max: number;
|
|
1067
924
|
cluster_tiers: string[];
|
|
1068
925
|
regions: string[];
|
|
1069
926
|
};
|
|
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
927
|
name?: string | undefined;
|
|
1136
928
|
}>;
|
|
1137
929
|
export declare const zPaymentMethod: z.ZodObject<{
|
|
@@ -1149,7 +941,7 @@ export declare const zPaymentMethod: z.ZodObject<{
|
|
|
1149
941
|
last4: string;
|
|
1150
942
|
exp_month: number;
|
|
1151
943
|
exp_year: number;
|
|
1152
|
-
brand: "unknown" | "
|
|
944
|
+
brand: "unknown" | "amex" | "diners" | "discover" | "eftpos_au" | "jcb" | "mastercard" | "unionpay" | "visa";
|
|
1153
945
|
}, {
|
|
1154
946
|
type: "card";
|
|
1155
947
|
id: string;
|
|
@@ -1157,17 +949,17 @@ export declare const zPaymentMethod: z.ZodObject<{
|
|
|
1157
949
|
last4: string;
|
|
1158
950
|
exp_month: number;
|
|
1159
951
|
exp_year: number;
|
|
1160
|
-
brand: "unknown" | "
|
|
952
|
+
brand: "unknown" | "amex" | "diners" | "discover" | "eftpos_au" | "jcb" | "mastercard" | "unionpay" | "visa";
|
|
1161
953
|
}>;
|
|
1162
954
|
export declare const zTokenCreateInput: z.ZodObject<{
|
|
1163
955
|
name: z.ZodString;
|
|
1164
956
|
role: z.ZodEnum<["Administrator", "User"]>;
|
|
1165
957
|
}, "strip", z.ZodTypeAny, {
|
|
1166
958
|
name: string;
|
|
1167
|
-
role: "
|
|
959
|
+
role: "Administrator" | "User";
|
|
1168
960
|
}, {
|
|
1169
961
|
name: string;
|
|
1170
|
-
role: "
|
|
962
|
+
role: "Administrator" | "User";
|
|
1171
963
|
}>;
|
|
1172
964
|
export declare const zToken: z.ZodObject<{
|
|
1173
965
|
name: z.ZodString;
|
|
@@ -1177,13 +969,13 @@ export declare const zToken: z.ZodObject<{
|
|
|
1177
969
|
date_created: z.ZodString;
|
|
1178
970
|
}, "strip", z.ZodTypeAny, {
|
|
1179
971
|
name: string;
|
|
1180
|
-
role: "
|
|
972
|
+
role: "Administrator" | "User";
|
|
1181
973
|
date_created: string;
|
|
1182
974
|
id?: string | undefined;
|
|
1183
975
|
secret?: string | undefined;
|
|
1184
976
|
}, {
|
|
1185
977
|
name: string;
|
|
1186
|
-
role: "
|
|
978
|
+
role: "Administrator" | "User";
|
|
1187
979
|
date_created: string;
|
|
1188
980
|
id?: string | undefined;
|
|
1189
981
|
secret?: string | undefined;
|
|
@@ -1193,16 +985,16 @@ export declare const zTokenUpdateInput: z.ZodObject<{
|
|
|
1193
985
|
role: z.ZodOptional<z.ZodEnum<["Administrator", "User"]>>;
|
|
1194
986
|
}, "strip", z.ZodTypeAny, {
|
|
1195
987
|
name?: string | undefined;
|
|
1196
|
-
role?: "
|
|
988
|
+
role?: "Administrator" | "User" | undefined;
|
|
1197
989
|
}, {
|
|
1198
990
|
name?: string | undefined;
|
|
1199
|
-
role?: "
|
|
991
|
+
role?: "Administrator" | "User" | undefined;
|
|
1200
992
|
}>;
|
|
1201
993
|
export declare const zUsage: z.ZodObject<{
|
|
1202
994
|
hour: z.ZodOptional<z.ZodString>;
|
|
1203
995
|
cluster_id: z.ZodString;
|
|
1204
|
-
cluster_tier: z.ZodEnum<[""]>;
|
|
1205
|
-
product: z.ZodEnum<["
|
|
996
|
+
cluster_tier: z.ZodEnum<["basic", "pro", ""]>;
|
|
997
|
+
product: z.ZodEnum<["cfke_controlplane", "cfke_connected_nodes", "infra_compute", "infra_storage", "infra_loadbalancing", "infra_traffic", "cfcr_storage"]>;
|
|
1206
998
|
node_name: z.ZodString;
|
|
1207
999
|
sku: z.ZodString;
|
|
1208
1000
|
cpu: z.ZodUnion<[z.ZodNumber, z.ZodEnum<[""]>]>;
|
|
@@ -1211,25 +1003,25 @@ export declare const zUsage: z.ZodObject<{
|
|
|
1211
1003
|
total: z.ZodUnion<[z.ZodNumber, z.ZodEnum<[""]>]>;
|
|
1212
1004
|
}, "strip", z.ZodTypeAny, {
|
|
1213
1005
|
total: number | "";
|
|
1214
|
-
product: "cfke_infra_compute" | "cfke_nodes" | "cfke_controlplane";
|
|
1215
|
-
value: number | "";
|
|
1216
1006
|
cpu: number | "";
|
|
1217
|
-
|
|
1218
|
-
|
|
1007
|
+
product: "cfke_controlplane" | "cfke_connected_nodes" | "infra_compute" | "infra_storage" | "infra_loadbalancing" | "infra_traffic" | "cfcr_storage";
|
|
1008
|
+
value: number | "";
|
|
1219
1009
|
cluster_id: string;
|
|
1220
|
-
cluster_tier: "";
|
|
1010
|
+
cluster_tier: "" | "basic" | "pro";
|
|
1221
1011
|
node_name: string;
|
|
1012
|
+
sku: string;
|
|
1013
|
+
price: number | "";
|
|
1222
1014
|
hour?: string | undefined;
|
|
1223
1015
|
}, {
|
|
1224
1016
|
total: number | "";
|
|
1225
|
-
product: "cfke_infra_compute" | "cfke_nodes" | "cfke_controlplane";
|
|
1226
|
-
value: number | "";
|
|
1227
1017
|
cpu: number | "";
|
|
1228
|
-
|
|
1229
|
-
|
|
1018
|
+
product: "cfke_controlplane" | "cfke_connected_nodes" | "infra_compute" | "infra_storage" | "infra_loadbalancing" | "infra_traffic" | "cfcr_storage";
|
|
1019
|
+
value: number | "";
|
|
1230
1020
|
cluster_id: string;
|
|
1231
|
-
cluster_tier: "";
|
|
1021
|
+
cluster_tier: "" | "basic" | "pro";
|
|
1232
1022
|
node_name: string;
|
|
1023
|
+
sku: string;
|
|
1024
|
+
price: number | "";
|
|
1233
1025
|
hour?: string | undefined;
|
|
1234
1026
|
}>;
|
|
1235
1027
|
export declare const zUserCreateInput: z.ZodObject<{
|
|
@@ -1246,7 +1038,7 @@ export declare const zUserCreateInput: z.ZodObject<{
|
|
|
1246
1038
|
first_name: string;
|
|
1247
1039
|
last_name: string;
|
|
1248
1040
|
password: string;
|
|
1249
|
-
role?: "
|
|
1041
|
+
role?: "Administrator" | "User" | undefined;
|
|
1250
1042
|
status?: "active" | "inactive" | undefined;
|
|
1251
1043
|
}, {
|
|
1252
1044
|
code: string;
|
|
@@ -1254,7 +1046,7 @@ export declare const zUserCreateInput: z.ZodObject<{
|
|
|
1254
1046
|
first_name: string;
|
|
1255
1047
|
last_name: string;
|
|
1256
1048
|
password: string;
|
|
1257
|
-
role?: "
|
|
1049
|
+
role?: "Administrator" | "User" | undefined;
|
|
1258
1050
|
status?: "active" | "inactive" | undefined;
|
|
1259
1051
|
}>;
|
|
1260
1052
|
export declare const zUser: z.ZodObject<{
|
|
@@ -1265,40 +1057,22 @@ export declare const zUser: z.ZodObject<{
|
|
|
1265
1057
|
status: z.ZodEnum<["active", "inactive"]>;
|
|
1266
1058
|
id: z.ZodString;
|
|
1267
1059
|
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
1060
|
}, "strip", z.ZodTypeAny, {
|
|
1279
1061
|
id: string;
|
|
1280
|
-
role: "
|
|
1062
|
+
role: "Administrator" | "User";
|
|
1281
1063
|
email: string;
|
|
1282
1064
|
status: "active" | "inactive";
|
|
1283
|
-
date_created: string;
|
|
1284
1065
|
first_name: string;
|
|
1285
1066
|
last_name: string;
|
|
1286
|
-
|
|
1287
|
-
cluster_id: string;
|
|
1288
|
-
permissions: "readonly" | "readwrite";
|
|
1289
|
-
}[] | undefined;
|
|
1067
|
+
date_created: string;
|
|
1290
1068
|
}, {
|
|
1291
1069
|
id: string;
|
|
1292
|
-
role: "
|
|
1070
|
+
role: "Administrator" | "User";
|
|
1293
1071
|
email: string;
|
|
1294
1072
|
status: "active" | "inactive";
|
|
1295
|
-
date_created: string;
|
|
1296
1073
|
first_name: string;
|
|
1297
1074
|
last_name: string;
|
|
1298
|
-
|
|
1299
|
-
cluster_id: string;
|
|
1300
|
-
permissions: "readonly" | "readwrite";
|
|
1301
|
-
}[] | undefined;
|
|
1075
|
+
date_created: string;
|
|
1302
1076
|
}>;
|
|
1303
1077
|
export declare const zUserUpdateInput: z.ZodObject<{
|
|
1304
1078
|
email: z.ZodOptional<z.ZodString>;
|
|
@@ -1307,23 +1081,26 @@ export declare const zUserUpdateInput: z.ZodObject<{
|
|
|
1307
1081
|
role: z.ZodOptional<z.ZodEnum<["Administrator", "User"]>>;
|
|
1308
1082
|
status: z.ZodOptional<z.ZodEnum<["active", "inactive"]>>;
|
|
1309
1083
|
}, "strip", z.ZodTypeAny, {
|
|
1310
|
-
role?: "
|
|
1084
|
+
role?: "Administrator" | "User" | undefined;
|
|
1311
1085
|
email?: string | undefined;
|
|
1312
1086
|
status?: "active" | "inactive" | undefined;
|
|
1313
1087
|
first_name?: string | undefined;
|
|
1314
1088
|
last_name?: string | undefined;
|
|
1315
1089
|
}, {
|
|
1316
|
-
role?: "
|
|
1090
|
+
role?: "Administrator" | "User" | undefined;
|
|
1317
1091
|
email?: string | undefined;
|
|
1318
1092
|
status?: "active" | "inactive" | undefined;
|
|
1319
1093
|
first_name?: string | undefined;
|
|
1320
1094
|
last_name?: string | undefined;
|
|
1321
1095
|
}>;
|
|
1096
|
+
/**
|
|
1097
|
+
* An array of usage records.
|
|
1098
|
+
*/
|
|
1322
1099
|
export declare const zGetUsageResponse: z.ZodArray<z.ZodObject<{
|
|
1323
1100
|
hour: z.ZodOptional<z.ZodString>;
|
|
1324
1101
|
cluster_id: z.ZodString;
|
|
1325
|
-
cluster_tier: z.ZodEnum<[""]>;
|
|
1326
|
-
product: z.ZodEnum<["
|
|
1102
|
+
cluster_tier: z.ZodEnum<["basic", "pro", ""]>;
|
|
1103
|
+
product: z.ZodEnum<["cfke_controlplane", "cfke_connected_nodes", "infra_compute", "infra_storage", "infra_loadbalancing", "infra_traffic", "cfcr_storage"]>;
|
|
1327
1104
|
node_name: z.ZodString;
|
|
1328
1105
|
sku: z.ZodString;
|
|
1329
1106
|
cpu: z.ZodUnion<[z.ZodNumber, z.ZodEnum<[""]>]>;
|
|
@@ -1332,28 +1109,34 @@ export declare const zGetUsageResponse: z.ZodArray<z.ZodObject<{
|
|
|
1332
1109
|
total: z.ZodUnion<[z.ZodNumber, z.ZodEnum<[""]>]>;
|
|
1333
1110
|
}, "strip", z.ZodTypeAny, {
|
|
1334
1111
|
total: number | "";
|
|
1335
|
-
product: "cfke_infra_compute" | "cfke_nodes" | "cfke_controlplane";
|
|
1336
|
-
value: number | "";
|
|
1337
1112
|
cpu: number | "";
|
|
1338
|
-
|
|
1339
|
-
|
|
1113
|
+
product: "cfke_controlplane" | "cfke_connected_nodes" | "infra_compute" | "infra_storage" | "infra_loadbalancing" | "infra_traffic" | "cfcr_storage";
|
|
1114
|
+
value: number | "";
|
|
1340
1115
|
cluster_id: string;
|
|
1341
|
-
cluster_tier: "";
|
|
1116
|
+
cluster_tier: "" | "basic" | "pro";
|
|
1342
1117
|
node_name: string;
|
|
1118
|
+
sku: string;
|
|
1119
|
+
price: number | "";
|
|
1343
1120
|
hour?: string | undefined;
|
|
1344
1121
|
}, {
|
|
1345
1122
|
total: number | "";
|
|
1346
|
-
product: "cfke_infra_compute" | "cfke_nodes" | "cfke_controlplane";
|
|
1347
|
-
value: number | "";
|
|
1348
1123
|
cpu: number | "";
|
|
1349
|
-
|
|
1350
|
-
|
|
1124
|
+
product: "cfke_controlplane" | "cfke_connected_nodes" | "infra_compute" | "infra_storage" | "infra_loadbalancing" | "infra_traffic" | "cfcr_storage";
|
|
1125
|
+
value: number | "";
|
|
1351
1126
|
cluster_id: string;
|
|
1352
|
-
cluster_tier: "";
|
|
1127
|
+
cluster_tier: "" | "basic" | "pro";
|
|
1353
1128
|
node_name: string;
|
|
1129
|
+
sku: string;
|
|
1130
|
+
price: number | "";
|
|
1354
1131
|
hour?: string | undefined;
|
|
1355
1132
|
}>, "many">;
|
|
1133
|
+
/**
|
|
1134
|
+
* Current balance of the organization in USD as a floating-point number.
|
|
1135
|
+
*/
|
|
1356
1136
|
export declare const zGetBalanceResponse: z.ZodNumber;
|
|
1137
|
+
/**
|
|
1138
|
+
* Redacted payment card information.
|
|
1139
|
+
*/
|
|
1357
1140
|
export declare const zGetPaymentMethodResponse: z.ZodObject<{
|
|
1358
1141
|
id: z.ZodString;
|
|
1359
1142
|
setup: z.ZodBoolean;
|
|
@@ -1369,7 +1152,7 @@ export declare const zGetPaymentMethodResponse: z.ZodObject<{
|
|
|
1369
1152
|
last4: string;
|
|
1370
1153
|
exp_month: number;
|
|
1371
1154
|
exp_year: number;
|
|
1372
|
-
brand: "unknown" | "
|
|
1155
|
+
brand: "unknown" | "amex" | "diners" | "discover" | "eftpos_au" | "jcb" | "mastercard" | "unionpay" | "visa";
|
|
1373
1156
|
}, {
|
|
1374
1157
|
type: "card";
|
|
1375
1158
|
id: string;
|
|
@@ -1377,8 +1160,12 @@ export declare const zGetPaymentMethodResponse: z.ZodObject<{
|
|
|
1377
1160
|
last4: string;
|
|
1378
1161
|
exp_month: number;
|
|
1379
1162
|
exp_year: number;
|
|
1380
|
-
brand: "unknown" | "
|
|
1163
|
+
brand: "unknown" | "amex" | "diners" | "discover" | "eftpos_au" | "jcb" | "mastercard" | "unionpay" | "visa";
|
|
1381
1164
|
}>;
|
|
1165
|
+
/**
|
|
1166
|
+
* The client secret. Used for client-side retrieval using a publishable key. The client secret can be used to complete a payment from your frontend. It should not be stored, logged, or exposed to anyone other than the customer. Make sure that you have TLS enabled on any page that includes the client secret.
|
|
1167
|
+
*
|
|
1168
|
+
*/
|
|
1382
1169
|
export declare const zGetPaymentMethodSecretResponse: z.ZodObject<{
|
|
1383
1170
|
id: z.ZodOptional<z.ZodString>;
|
|
1384
1171
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1386,6 +1173,17 @@ export declare const zGetPaymentMethodSecretResponse: z.ZodObject<{
|
|
|
1386
1173
|
}, {
|
|
1387
1174
|
id?: string | undefined;
|
|
1388
1175
|
}>;
|
|
1176
|
+
/**
|
|
1177
|
+
* Start date for the usage. Date of oldest data point to retrieve.
|
|
1178
|
+
*/
|
|
1179
|
+
export declare const zListInvoicesParameterStartDate: z.ZodString;
|
|
1180
|
+
/**
|
|
1181
|
+
* End date for the usage. Date of newest data point to retrieve.
|
|
1182
|
+
*/
|
|
1183
|
+
export declare const zListInvoicesParameterEndDate: z.ZodString;
|
|
1184
|
+
/**
|
|
1185
|
+
* An array of usage records.
|
|
1186
|
+
*/
|
|
1389
1187
|
export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
1390
1188
|
id: z.ZodOptional<z.ZodString>;
|
|
1391
1189
|
organizationId: z.ZodOptional<z.ZodString>;
|
|
@@ -1422,7 +1220,7 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1422
1220
|
catalogEffectiveDate: z.ZodOptional<z.ZodString>;
|
|
1423
1221
|
childItems: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
|
|
1424
1222
|
}, "strip", z.ZodTypeAny, {
|
|
1425
|
-
currency?: "
|
|
1223
|
+
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
1224
|
id?: string | undefined;
|
|
1427
1225
|
description?: string | undefined;
|
|
1428
1226
|
amount?: number | undefined;
|
|
@@ -1444,7 +1242,7 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1444
1242
|
catalogEffectiveDate?: string | undefined;
|
|
1445
1243
|
childItems?: unknown[] | undefined;
|
|
1446
1244
|
}, {
|
|
1447
|
-
currency?: "
|
|
1245
|
+
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
1246
|
id?: string | undefined;
|
|
1449
1247
|
description?: string | undefined;
|
|
1450
1248
|
amount?: number | undefined;
|
|
@@ -1489,7 +1287,7 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1489
1287
|
catalogEffectiveDate: z.ZodOptional<z.ZodString>;
|
|
1490
1288
|
childItems: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
|
|
1491
1289
|
}, "strip", z.ZodTypeAny, {
|
|
1492
|
-
currency?: "
|
|
1290
|
+
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
1291
|
id?: string | undefined;
|
|
1494
1292
|
description?: string | undefined;
|
|
1495
1293
|
amount?: number | undefined;
|
|
@@ -1511,7 +1309,7 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1511
1309
|
catalogEffectiveDate?: string | undefined;
|
|
1512
1310
|
childItems?: unknown[] | undefined;
|
|
1513
1311
|
}, {
|
|
1514
|
-
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;
|
|
1515
1313
|
id?: string | undefined;
|
|
1516
1314
|
description?: string | undefined;
|
|
1517
1315
|
amount?: number | undefined;
|
|
@@ -1534,11 +1332,11 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1534
1332
|
childItems?: unknown[] | undefined;
|
|
1535
1333
|
}>, "many">>;
|
|
1536
1334
|
}, "strip", z.ZodTypeAny, {
|
|
1537
|
-
currency?: "
|
|
1335
|
+
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
1336
|
id?: string | undefined;
|
|
1539
1337
|
status?: "DRAFT" | "COMMITTED" | "VOID" | undefined;
|
|
1540
1338
|
items?: {
|
|
1541
|
-
currency?: "
|
|
1339
|
+
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
1340
|
id?: string | undefined;
|
|
1543
1341
|
description?: string | undefined;
|
|
1544
1342
|
amount?: number | undefined;
|
|
@@ -1570,7 +1368,7 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1570
1368
|
balance?: number | undefined;
|
|
1571
1369
|
bundleKeys?: string | undefined;
|
|
1572
1370
|
credits?: {
|
|
1573
|
-
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;
|
|
1574
1372
|
id?: string | undefined;
|
|
1575
1373
|
description?: string | undefined;
|
|
1576
1374
|
amount?: number | undefined;
|
|
@@ -1593,11 +1391,11 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1593
1391
|
childItems?: unknown[] | undefined;
|
|
1594
1392
|
}[] | undefined;
|
|
1595
1393
|
}, {
|
|
1596
|
-
currency?: "
|
|
1394
|
+
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
1395
|
id?: string | undefined;
|
|
1598
1396
|
status?: "DRAFT" | "COMMITTED" | "VOID" | undefined;
|
|
1599
1397
|
items?: {
|
|
1600
|
-
currency?: "
|
|
1398
|
+
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
1399
|
id?: string | undefined;
|
|
1602
1400
|
description?: string | undefined;
|
|
1603
1401
|
amount?: number | undefined;
|
|
@@ -1629,7 +1427,7 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1629
1427
|
balance?: number | undefined;
|
|
1630
1428
|
bundleKeys?: string | undefined;
|
|
1631
1429
|
credits?: {
|
|
1632
|
-
currency?: "
|
|
1430
|
+
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
1431
|
id?: string | undefined;
|
|
1634
1432
|
description?: string | undefined;
|
|
1635
1433
|
amount?: number | undefined;
|
|
@@ -1652,6 +1450,13 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1652
1450
|
childItems?: unknown[] | undefined;
|
|
1653
1451
|
}[] | undefined;
|
|
1654
1452
|
}>, "many">;
|
|
1453
|
+
/**
|
|
1454
|
+
* Unique invoice identifier. UUID v4 string in canonical form
|
|
1455
|
+
*/
|
|
1456
|
+
export declare const zGetInvoiceParameterId: z.ZodString;
|
|
1457
|
+
/**
|
|
1458
|
+
* Returns a single Invoice HTML representation under `html` property.
|
|
1459
|
+
*/
|
|
1655
1460
|
export declare const zGetInvoiceResponse: z.ZodObject<{
|
|
1656
1461
|
html: z.ZodOptional<z.ZodString>;
|
|
1657
1462
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1659,57 +1464,376 @@ export declare const zGetInvoiceResponse: z.ZodObject<{
|
|
|
1659
1464
|
}, {
|
|
1660
1465
|
html?: string | undefined;
|
|
1661
1466
|
}>;
|
|
1662
|
-
|
|
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
|
-
|
|
1467
|
+
/**
|
|
1468
|
+
* Returns a single object containing organization contact and billing address details.
|
|
1469
|
+
*/
|
|
1470
|
+
export declare const zGetContactResponse: z.ZodObject<{
|
|
1471
|
+
company: z.ZodOptional<z.ZodString>;
|
|
1472
|
+
address1: z.ZodOptional<z.ZodString>;
|
|
1473
|
+
address2: z.ZodOptional<z.ZodString>;
|
|
1474
|
+
postalCode: z.ZodOptional<z.ZodString>;
|
|
1475
|
+
city: z.ZodOptional<z.ZodString>;
|
|
1476
|
+
state: z.ZodOptional<z.ZodString>;
|
|
1477
|
+
country: z.ZodOptional<z.ZodString>;
|
|
1478
|
+
phone: z.ZodOptional<z.ZodString>;
|
|
1479
|
+
email: z.ZodString;
|
|
1480
|
+
first_name: z.ZodString;
|
|
1481
|
+
last_name: z.ZodString;
|
|
1482
|
+
tax_id: z.ZodOptional<z.ZodString>;
|
|
1483
|
+
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", ""]>>;
|
|
1484
|
+
}, "strip", z.ZodTypeAny, {
|
|
1485
|
+
email: string;
|
|
1486
|
+
first_name: string;
|
|
1487
|
+
last_name: string;
|
|
1488
|
+
state?: string | undefined;
|
|
1489
|
+
country?: string | undefined;
|
|
1490
|
+
company?: string | undefined;
|
|
1491
|
+
address1?: string | undefined;
|
|
1492
|
+
address2?: string | undefined;
|
|
1493
|
+
postalCode?: string | undefined;
|
|
1494
|
+
city?: string | undefined;
|
|
1495
|
+
phone?: string | undefined;
|
|
1496
|
+
tax_id?: string | undefined;
|
|
1497
|
+
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;
|
|
1498
|
+
}, {
|
|
1499
|
+
email: string;
|
|
1500
|
+
first_name: string;
|
|
1501
|
+
last_name: string;
|
|
1502
|
+
state?: string | undefined;
|
|
1503
|
+
country?: string | undefined;
|
|
1504
|
+
company?: string | undefined;
|
|
1505
|
+
address1?: string | undefined;
|
|
1506
|
+
address2?: string | undefined;
|
|
1507
|
+
postalCode?: string | undefined;
|
|
1508
|
+
city?: string | undefined;
|
|
1509
|
+
phone?: string | undefined;
|
|
1510
|
+
tax_id?: string | undefined;
|
|
1511
|
+
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;
|
|
1512
|
+
}>;
|
|
1513
|
+
export declare const zUpdateContactData: z.ZodObject<{
|
|
1514
|
+
company: z.ZodOptional<z.ZodString>;
|
|
1515
|
+
address1: z.ZodOptional<z.ZodString>;
|
|
1516
|
+
address2: z.ZodOptional<z.ZodString>;
|
|
1517
|
+
postalCode: z.ZodOptional<z.ZodString>;
|
|
1518
|
+
city: z.ZodOptional<z.ZodString>;
|
|
1519
|
+
state: z.ZodOptional<z.ZodString>;
|
|
1520
|
+
country: z.ZodOptional<z.ZodString>;
|
|
1521
|
+
phone: z.ZodOptional<z.ZodString>;
|
|
1522
|
+
email: z.ZodString;
|
|
1523
|
+
first_name: z.ZodString;
|
|
1524
|
+
last_name: z.ZodString;
|
|
1525
|
+
tax_id: z.ZodOptional<z.ZodString>;
|
|
1526
|
+
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", ""]>>;
|
|
1527
|
+
}, "strip", z.ZodTypeAny, {
|
|
1528
|
+
email: string;
|
|
1529
|
+
first_name: string;
|
|
1530
|
+
last_name: string;
|
|
1531
|
+
state?: string | undefined;
|
|
1532
|
+
country?: string | undefined;
|
|
1533
|
+
company?: string | undefined;
|
|
1534
|
+
address1?: string | undefined;
|
|
1535
|
+
address2?: string | undefined;
|
|
1536
|
+
postalCode?: string | undefined;
|
|
1537
|
+
city?: string | undefined;
|
|
1538
|
+
phone?: string | undefined;
|
|
1539
|
+
tax_id?: string | undefined;
|
|
1540
|
+
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;
|
|
1541
|
+
}, {
|
|
1542
|
+
email: string;
|
|
1543
|
+
first_name: string;
|
|
1544
|
+
last_name: string;
|
|
1545
|
+
state?: string | undefined;
|
|
1546
|
+
country?: string | undefined;
|
|
1547
|
+
company?: string | undefined;
|
|
1548
|
+
address1?: string | undefined;
|
|
1549
|
+
address2?: string | undefined;
|
|
1550
|
+
postalCode?: string | undefined;
|
|
1551
|
+
city?: string | undefined;
|
|
1552
|
+
phone?: string | undefined;
|
|
1553
|
+
tax_id?: string | undefined;
|
|
1554
|
+
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;
|
|
1555
|
+
}>;
|
|
1556
|
+
/**
|
|
1557
|
+
* Successfully updated. Returns updated organization details.
|
|
1558
|
+
*/
|
|
1559
|
+
export declare const zUpdateContactResponse: z.ZodObject<{
|
|
1560
|
+
company: z.ZodOptional<z.ZodString>;
|
|
1561
|
+
address1: z.ZodOptional<z.ZodString>;
|
|
1562
|
+
address2: z.ZodOptional<z.ZodString>;
|
|
1563
|
+
postalCode: z.ZodOptional<z.ZodString>;
|
|
1564
|
+
city: z.ZodOptional<z.ZodString>;
|
|
1565
|
+
state: z.ZodOptional<z.ZodString>;
|
|
1566
|
+
country: z.ZodOptional<z.ZodString>;
|
|
1567
|
+
phone: z.ZodOptional<z.ZodString>;
|
|
1568
|
+
email: z.ZodString;
|
|
1569
|
+
first_name: z.ZodString;
|
|
1570
|
+
last_name: z.ZodString;
|
|
1571
|
+
tax_id: z.ZodOptional<z.ZodString>;
|
|
1572
|
+
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", ""]>>;
|
|
1573
|
+
}, "strip", z.ZodTypeAny, {
|
|
1574
|
+
email: string;
|
|
1575
|
+
first_name: string;
|
|
1576
|
+
last_name: string;
|
|
1577
|
+
state?: string | undefined;
|
|
1578
|
+
country?: string | undefined;
|
|
1579
|
+
company?: string | undefined;
|
|
1580
|
+
address1?: string | undefined;
|
|
1581
|
+
address2?: string | undefined;
|
|
1582
|
+
postalCode?: string | undefined;
|
|
1583
|
+
city?: string | undefined;
|
|
1584
|
+
phone?: string | undefined;
|
|
1585
|
+
tax_id?: string | undefined;
|
|
1586
|
+
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;
|
|
1587
|
+
}, {
|
|
1588
|
+
email: string;
|
|
1589
|
+
first_name: string;
|
|
1590
|
+
last_name: string;
|
|
1591
|
+
state?: string | undefined;
|
|
1592
|
+
country?: string | undefined;
|
|
1593
|
+
company?: string | undefined;
|
|
1594
|
+
address1?: string | undefined;
|
|
1595
|
+
address2?: string | undefined;
|
|
1596
|
+
postalCode?: string | undefined;
|
|
1597
|
+
city?: string | undefined;
|
|
1598
|
+
phone?: string | undefined;
|
|
1599
|
+
tax_id?: string | undefined;
|
|
1600
|
+
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;
|
|
1601
|
+
}>;
|
|
1602
|
+
/**
|
|
1603
|
+
* An array of the applied promotional credits records.
|
|
1604
|
+
*/
|
|
1605
|
+
export declare const zGetCreditsResponse: z.ZodArray<z.ZodObject<{
|
|
1606
|
+
id: z.ZodOptional<z.ZodString>;
|
|
1607
|
+
date_created: z.ZodString;
|
|
1608
|
+
code: z.ZodString;
|
|
1609
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1610
|
+
products: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1611
|
+
type: z.ZodEnum<["credit", "discount"]>;
|
|
1612
|
+
value: z.ZodNumber;
|
|
1613
|
+
billing_period: z.ZodString;
|
|
1614
|
+
value_remaining: z.ZodOptional<z.ZodNumber>;
|
|
1615
|
+
}, "strip", z.ZodTypeAny, {
|
|
1616
|
+
code: string;
|
|
1617
|
+
type: "credit" | "discount";
|
|
1618
|
+
value: number;
|
|
1619
|
+
date_created: string;
|
|
1620
|
+
billing_period: string;
|
|
1621
|
+
id?: string | undefined;
|
|
1622
|
+
description?: string | undefined;
|
|
1623
|
+
products?: string[] | undefined;
|
|
1624
|
+
value_remaining?: number | undefined;
|
|
1625
|
+
}, {
|
|
1626
|
+
code: string;
|
|
1627
|
+
type: "credit" | "discount";
|
|
1628
|
+
value: number;
|
|
1629
|
+
date_created: string;
|
|
1630
|
+
billing_period: string;
|
|
1631
|
+
id?: string | undefined;
|
|
1632
|
+
description?: string | undefined;
|
|
1633
|
+
products?: string[] | undefined;
|
|
1634
|
+
value_remaining?: number | undefined;
|
|
1635
|
+
}>, "many">;
|
|
1636
|
+
export declare const zRedeemCreditsData: z.ZodObject<{
|
|
1637
|
+
code: z.ZodOptional<z.ZodString>;
|
|
1638
|
+
}, "strip", z.ZodTypeAny, {
|
|
1639
|
+
code?: string | undefined;
|
|
1640
|
+
}, {
|
|
1641
|
+
code?: string | undefined;
|
|
1642
|
+
}>;
|
|
1643
|
+
/**
|
|
1644
|
+
* Unique identifier of the cluster. UUID v4 string in canonical form
|
|
1645
|
+
*/
|
|
1646
|
+
export declare const zListChartsParameterClusterId: z.ZodString;
|
|
1647
|
+
/**
|
|
1648
|
+
* An array of charts
|
|
1649
|
+
*/
|
|
1650
|
+
export declare const zListChartsResponse: z.ZodArray<z.ZodObject<{
|
|
1651
|
+
values: z.ZodString;
|
|
1652
|
+
version_channel: z.ZodString;
|
|
1653
|
+
name: z.ZodString;
|
|
1654
|
+
namespace: z.ZodString;
|
|
1655
|
+
chart: z.ZodString;
|
|
1656
|
+
status: z.ZodEnum<["InstallSucceeded", "InstallFailed", "UpgradeSucceeded", "UpgradeFailed", "TestSucceeded", "TestFailed", "RollbackSucceeded", "RollbackFailed", "UninstallSucceeded", "UninstallFailed", "ArtifactFailed", "DependencyNotReady", "Progressing", "SourceNotReady"]>;
|
|
1657
|
+
version_current: z.ZodString;
|
|
1658
|
+
created_at: z.ZodString;
|
|
1659
|
+
updated_at: z.ZodString;
|
|
1660
|
+
ready: z.ZodBoolean;
|
|
1661
|
+
}, "strip", z.ZodTypeAny, {
|
|
1662
|
+
values: string;
|
|
1663
|
+
name: string;
|
|
1664
|
+
ready: boolean;
|
|
1665
|
+
status: "InstallSucceeded" | "InstallFailed" | "UpgradeSucceeded" | "UpgradeFailed" | "TestSucceeded" | "TestFailed" | "RollbackSucceeded" | "RollbackFailed" | "UninstallSucceeded" | "UninstallFailed" | "ArtifactFailed" | "DependencyNotReady" | "Progressing" | "SourceNotReady";
|
|
1666
|
+
version_channel: string;
|
|
1667
|
+
namespace: string;
|
|
1668
|
+
chart: string;
|
|
1669
|
+
version_current: string;
|
|
1670
|
+
created_at: string;
|
|
1671
|
+
updated_at: string;
|
|
1672
|
+
}, {
|
|
1673
|
+
values: string;
|
|
1674
|
+
name: string;
|
|
1675
|
+
ready: boolean;
|
|
1676
|
+
status: "InstallSucceeded" | "InstallFailed" | "UpgradeSucceeded" | "UpgradeFailed" | "TestSucceeded" | "TestFailed" | "RollbackSucceeded" | "RollbackFailed" | "UninstallSucceeded" | "UninstallFailed" | "ArtifactFailed" | "DependencyNotReady" | "Progressing" | "SourceNotReady";
|
|
1677
|
+
version_channel: string;
|
|
1678
|
+
namespace: string;
|
|
1679
|
+
chart: string;
|
|
1680
|
+
version_current: string;
|
|
1681
|
+
created_at: string;
|
|
1682
|
+
updated_at: string;
|
|
1683
|
+
}>, "many">;
|
|
1684
|
+
export declare const zCreateChartData: z.ZodObject<{
|
|
1685
|
+
values: z.ZodString;
|
|
1686
|
+
version_channel: z.ZodString;
|
|
1687
|
+
name: z.ZodString;
|
|
1688
|
+
namespace: z.ZodString;
|
|
1689
|
+
chart: z.ZodString;
|
|
1690
|
+
}, "strip", z.ZodTypeAny, {
|
|
1691
|
+
values: string;
|
|
1692
|
+
name: string;
|
|
1693
|
+
version_channel: string;
|
|
1694
|
+
namespace: string;
|
|
1695
|
+
chart: string;
|
|
1696
|
+
}, {
|
|
1697
|
+
values: string;
|
|
1698
|
+
name: string;
|
|
1699
|
+
version_channel: string;
|
|
1700
|
+
namespace: string;
|
|
1701
|
+
chart: string;
|
|
1702
|
+
}>;
|
|
1703
|
+
/**
|
|
1704
|
+
* Unique identifier of the cluster. UUID v4 string in canonical form
|
|
1705
|
+
*/
|
|
1706
|
+
export declare const zCreateChartParameterClusterId: z.ZodString;
|
|
1707
|
+
/**
|
|
1708
|
+
* Successfully created. Returns created Chart ID.
|
|
1709
|
+
*/
|
|
1710
|
+
export declare const zCreateChartResponse: z.ZodString;
|
|
1711
|
+
/**
|
|
1712
|
+
* Unique identifier of the cluster. UUID v4 string in canonical form
|
|
1713
|
+
*/
|
|
1714
|
+
export declare const zDeleteChartParameterClusterId: z.ZodString;
|
|
1715
|
+
/**
|
|
1716
|
+
* Chart deployment name as the unique identifier of the chart.
|
|
1717
|
+
*/
|
|
1718
|
+
export declare const zDeleteChartParameterChartName: z.ZodString;
|
|
1719
|
+
/**
|
|
1720
|
+
* Successfully deleted.
|
|
1721
|
+
*/
|
|
1722
|
+
export declare const zDeleteChartResponse: z.ZodString;
|
|
1723
|
+
/**
|
|
1724
|
+
* Unique identifier of the cluster. UUID v4 string in canonical form
|
|
1725
|
+
*/
|
|
1726
|
+
export declare const zGetChartParameterClusterId: z.ZodString;
|
|
1727
|
+
/**
|
|
1728
|
+
* Chart deployment name as the unique identifier of the chart.
|
|
1729
|
+
*/
|
|
1730
|
+
export declare const zGetChartParameterChartName: z.ZodString;
|
|
1731
|
+
/**
|
|
1732
|
+
* Returns a single object containing chart details.
|
|
1733
|
+
*/
|
|
1734
|
+
export declare const zGetChartResponse: z.ZodObject<{
|
|
1735
|
+
values: z.ZodString;
|
|
1736
|
+
version_channel: z.ZodString;
|
|
1737
|
+
name: z.ZodString;
|
|
1738
|
+
namespace: z.ZodString;
|
|
1739
|
+
chart: z.ZodString;
|
|
1740
|
+
status: z.ZodEnum<["InstallSucceeded", "InstallFailed", "UpgradeSucceeded", "UpgradeFailed", "TestSucceeded", "TestFailed", "RollbackSucceeded", "RollbackFailed", "UninstallSucceeded", "UninstallFailed", "ArtifactFailed", "DependencyNotReady", "Progressing", "SourceNotReady"]>;
|
|
1741
|
+
version_current: z.ZodString;
|
|
1742
|
+
created_at: z.ZodString;
|
|
1743
|
+
updated_at: z.ZodString;
|
|
1744
|
+
ready: z.ZodBoolean;
|
|
1745
|
+
}, "strip", z.ZodTypeAny, {
|
|
1746
|
+
values: string;
|
|
1747
|
+
name: string;
|
|
1748
|
+
ready: boolean;
|
|
1749
|
+
status: "InstallSucceeded" | "InstallFailed" | "UpgradeSucceeded" | "UpgradeFailed" | "TestSucceeded" | "TestFailed" | "RollbackSucceeded" | "RollbackFailed" | "UninstallSucceeded" | "UninstallFailed" | "ArtifactFailed" | "DependencyNotReady" | "Progressing" | "SourceNotReady";
|
|
1750
|
+
version_channel: string;
|
|
1751
|
+
namespace: string;
|
|
1752
|
+
chart: string;
|
|
1753
|
+
version_current: string;
|
|
1754
|
+
created_at: string;
|
|
1755
|
+
updated_at: string;
|
|
1756
|
+
}, {
|
|
1757
|
+
values: string;
|
|
1758
|
+
name: string;
|
|
1759
|
+
ready: boolean;
|
|
1760
|
+
status: "InstallSucceeded" | "InstallFailed" | "UpgradeSucceeded" | "UpgradeFailed" | "TestSucceeded" | "TestFailed" | "RollbackSucceeded" | "RollbackFailed" | "UninstallSucceeded" | "UninstallFailed" | "ArtifactFailed" | "DependencyNotReady" | "Progressing" | "SourceNotReady";
|
|
1761
|
+
version_channel: string;
|
|
1762
|
+
namespace: string;
|
|
1763
|
+
chart: string;
|
|
1764
|
+
version_current: string;
|
|
1765
|
+
created_at: string;
|
|
1766
|
+
updated_at: string;
|
|
1767
|
+
}>;
|
|
1768
|
+
export declare const zUpdateChartData: z.ZodObject<{
|
|
1769
|
+
values: z.ZodString;
|
|
1770
|
+
version_channel: z.ZodString;
|
|
1771
|
+
}, "strip", z.ZodTypeAny, {
|
|
1772
|
+
values: string;
|
|
1773
|
+
version_channel: string;
|
|
1774
|
+
}, {
|
|
1775
|
+
values: string;
|
|
1776
|
+
version_channel: string;
|
|
1777
|
+
}>;
|
|
1778
|
+
/**
|
|
1779
|
+
* Unique identifier of the cluster. UUID v4 string in canonical form
|
|
1780
|
+
*/
|
|
1781
|
+
export declare const zUpdateChartParameterClusterId: z.ZodString;
|
|
1782
|
+
/**
|
|
1783
|
+
* Chart deployment name as the unique identifier of the chart.
|
|
1784
|
+
*/
|
|
1785
|
+
export declare const zUpdateChartParameterChartName: z.ZodString;
|
|
1786
|
+
/**
|
|
1787
|
+
* Successfully updated.
|
|
1788
|
+
*/
|
|
1789
|
+
export declare const zUpdateChartResponse: z.ZodString;
|
|
1790
|
+
/**
|
|
1791
|
+
* Unique identifier of the cluster. UUID v4 string in canonical form
|
|
1792
|
+
*/
|
|
1793
|
+
export declare const zListFleetsParameterClusterId: z.ZodString;
|
|
1794
|
+
/**
|
|
1795
|
+
* An array of fleets
|
|
1796
|
+
*/
|
|
1797
|
+
export declare const zListFleetsResponse: z.ZodArray<z.ZodObject<{
|
|
1798
|
+
limits: z.ZodOptional<z.ZodObject<{
|
|
1799
|
+
cpu: z.ZodNumber;
|
|
1800
|
+
}, "strip", z.ZodTypeAny, {
|
|
1801
|
+
cpu: number;
|
|
1802
|
+
}, {
|
|
1803
|
+
cpu: number;
|
|
1804
|
+
}>>;
|
|
1805
|
+
gcp: z.ZodOptional<z.ZodObject<{
|
|
1806
|
+
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1807
|
+
project: z.ZodString;
|
|
1808
|
+
}, "strip", z.ZodTypeAny, {
|
|
1809
|
+
project: string;
|
|
1810
|
+
enabled: boolean;
|
|
1811
|
+
}, {
|
|
1812
|
+
project: string;
|
|
1813
|
+
enabled?: boolean | undefined;
|
|
1814
|
+
}>>;
|
|
1815
|
+
hetzner: z.ZodOptional<z.ZodObject<{
|
|
1816
|
+
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1817
|
+
apiKey: z.ZodString;
|
|
1818
|
+
}, "strip", z.ZodTypeAny, {
|
|
1819
|
+
apiKey: string;
|
|
1820
|
+
enabled: boolean;
|
|
1821
|
+
}, {
|
|
1822
|
+
apiKey: string;
|
|
1823
|
+
enabled?: boolean | undefined;
|
|
1824
|
+
}>>;
|
|
1825
|
+
aws: z.ZodOptional<z.ZodObject<{
|
|
1826
|
+
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1827
|
+
controllerRoleArn: z.ZodString;
|
|
1828
|
+
}, "strip", z.ZodTypeAny, {
|
|
1829
|
+
controllerRoleArn: string;
|
|
1830
|
+
enabled: boolean;
|
|
1831
|
+
}, {
|
|
1832
|
+
controllerRoleArn: string;
|
|
1833
|
+
enabled?: boolean | undefined;
|
|
1834
|
+
}>>;
|
|
1835
|
+
id: z.ZodString;
|
|
1836
|
+
}, "strip", z.ZodTypeAny, {
|
|
1713
1837
|
id: string;
|
|
1714
1838
|
limits?: {
|
|
1715
1839
|
cpu: number;
|
|
@@ -1719,18 +1843,14 @@ export declare const zListFleetsResponse: z.ZodArray<z.ZodObject<{
|
|
|
1719
1843
|
enabled: boolean;
|
|
1720
1844
|
} | undefined;
|
|
1721
1845
|
hetzner?: {
|
|
1846
|
+
apiKey: string;
|
|
1722
1847
|
enabled: boolean;
|
|
1723
|
-
apiKey?: string | undefined;
|
|
1724
|
-
} | {
|
|
1725
|
-
enabled: boolean;
|
|
1726
|
-
apiKey?: string | undefined;
|
|
1727
1848
|
} | undefined;
|
|
1728
1849
|
aws?: {
|
|
1729
1850
|
controllerRoleArn: string;
|
|
1730
1851
|
enabled: boolean;
|
|
1731
1852
|
} | undefined;
|
|
1732
1853
|
}, {
|
|
1733
|
-
type: "connected" | "managed";
|
|
1734
1854
|
id: string;
|
|
1735
1855
|
limits?: {
|
|
1736
1856
|
cpu: number;
|
|
@@ -1740,10 +1860,7 @@ export declare const zListFleetsResponse: z.ZodArray<z.ZodObject<{
|
|
|
1740
1860
|
enabled?: boolean | undefined;
|
|
1741
1861
|
} | undefined;
|
|
1742
1862
|
hetzner?: {
|
|
1743
|
-
apiKey
|
|
1744
|
-
enabled?: boolean | undefined;
|
|
1745
|
-
} | {
|
|
1746
|
-
apiKey?: string | undefined;
|
|
1863
|
+
apiKey: string;
|
|
1747
1864
|
enabled?: boolean | undefined;
|
|
1748
1865
|
} | undefined;
|
|
1749
1866
|
aws?: {
|
|
@@ -1751,9 +1868,7 @@ export declare const zListFleetsResponse: z.ZodArray<z.ZodObject<{
|
|
|
1751
1868
|
enabled?: boolean | undefined;
|
|
1752
1869
|
} | undefined;
|
|
1753
1870
|
}>, "many">;
|
|
1754
|
-
export declare const
|
|
1755
|
-
export declare const zDeleteFleetResponse: z.ZodString;
|
|
1756
|
-
export declare const zGetFleetResponse: z.ZodObject<{
|
|
1871
|
+
export declare const zCreateFleetData: z.ZodObject<{
|
|
1757
1872
|
limits: z.ZodOptional<z.ZodObject<{
|
|
1758
1873
|
cpu: z.ZodNumber;
|
|
1759
1874
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1771,25 +1886,121 @@ export declare const zGetFleetResponse: z.ZodObject<{
|
|
|
1771
1886
|
project: string;
|
|
1772
1887
|
enabled?: boolean | undefined;
|
|
1773
1888
|
}>>;
|
|
1774
|
-
hetzner: z.ZodOptional<z.
|
|
1889
|
+
hetzner: z.ZodOptional<z.ZodObject<{
|
|
1890
|
+
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1891
|
+
apiKey: z.ZodString;
|
|
1892
|
+
}, "strip", z.ZodTypeAny, {
|
|
1893
|
+
apiKey: string;
|
|
1894
|
+
enabled: boolean;
|
|
1895
|
+
}, {
|
|
1896
|
+
apiKey: string;
|
|
1897
|
+
enabled?: boolean | undefined;
|
|
1898
|
+
}>>;
|
|
1899
|
+
aws: z.ZodOptional<z.ZodObject<{
|
|
1900
|
+
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1901
|
+
controllerRoleArn: z.ZodString;
|
|
1902
|
+
}, "strip", z.ZodTypeAny, {
|
|
1903
|
+
controllerRoleArn: string;
|
|
1904
|
+
enabled: boolean;
|
|
1905
|
+
}, {
|
|
1906
|
+
controllerRoleArn: string;
|
|
1907
|
+
enabled?: boolean | undefined;
|
|
1908
|
+
}>>;
|
|
1909
|
+
id: z.ZodString;
|
|
1910
|
+
}, "strip", z.ZodTypeAny, {
|
|
1911
|
+
id: string;
|
|
1912
|
+
limits?: {
|
|
1913
|
+
cpu: number;
|
|
1914
|
+
} | undefined;
|
|
1915
|
+
gcp?: {
|
|
1916
|
+
project: string;
|
|
1917
|
+
enabled: boolean;
|
|
1918
|
+
} | undefined;
|
|
1919
|
+
hetzner?: {
|
|
1920
|
+
apiKey: string;
|
|
1921
|
+
enabled: boolean;
|
|
1922
|
+
} | undefined;
|
|
1923
|
+
aws?: {
|
|
1924
|
+
controllerRoleArn: string;
|
|
1925
|
+
enabled: boolean;
|
|
1926
|
+
} | undefined;
|
|
1927
|
+
}, {
|
|
1928
|
+
id: string;
|
|
1929
|
+
limits?: {
|
|
1930
|
+
cpu: number;
|
|
1931
|
+
} | undefined;
|
|
1932
|
+
gcp?: {
|
|
1933
|
+
project: string;
|
|
1934
|
+
enabled?: boolean | undefined;
|
|
1935
|
+
} | undefined;
|
|
1936
|
+
hetzner?: {
|
|
1937
|
+
apiKey: string;
|
|
1938
|
+
enabled?: boolean | undefined;
|
|
1939
|
+
} | undefined;
|
|
1940
|
+
aws?: {
|
|
1941
|
+
controllerRoleArn: string;
|
|
1942
|
+
enabled?: boolean | undefined;
|
|
1943
|
+
} | undefined;
|
|
1944
|
+
}>;
|
|
1945
|
+
/**
|
|
1946
|
+
* Unique identifier of the cluster. UUID v4 string in canonical form
|
|
1947
|
+
*/
|
|
1948
|
+
export declare const zCreateFleetParameterClusterId: z.ZodString;
|
|
1949
|
+
/**
|
|
1950
|
+
* Successfully created. Returns created Fleet ID.
|
|
1951
|
+
*/
|
|
1952
|
+
export declare const zCreateFleetResponse: z.ZodString;
|
|
1953
|
+
/**
|
|
1954
|
+
* Unique identifier of the cluster. UUID v4 string in canonical form
|
|
1955
|
+
*/
|
|
1956
|
+
export declare const zDeleteFleetParameterClusterId: z.ZodString;
|
|
1957
|
+
/**
|
|
1958
|
+
* Unique identifier of the fleet. UUID v4 string in canonical form
|
|
1959
|
+
*/
|
|
1960
|
+
export declare const zDeleteFleetParameterFleetName: z.ZodString;
|
|
1961
|
+
/**
|
|
1962
|
+
* Successfully deleted.
|
|
1963
|
+
*/
|
|
1964
|
+
export declare const zDeleteFleetResponse: z.ZodString;
|
|
1965
|
+
/**
|
|
1966
|
+
* Unique identifier of the cluster. UUID v4 string in canonical form
|
|
1967
|
+
*/
|
|
1968
|
+
export declare const zGetFleetParameterClusterId: z.ZodString;
|
|
1969
|
+
/**
|
|
1970
|
+
* Unique identifier of the fleet. UUID v4 string in canonical form
|
|
1971
|
+
*/
|
|
1972
|
+
export declare const zGetFleetParameterFleetName: z.ZodString;
|
|
1973
|
+
/**
|
|
1974
|
+
* Returns a single object containing fleet details.
|
|
1975
|
+
*/
|
|
1976
|
+
export declare const zGetFleetResponse: z.ZodObject<{
|
|
1977
|
+
limits: z.ZodOptional<z.ZodObject<{
|
|
1978
|
+
cpu: z.ZodNumber;
|
|
1979
|
+
}, "strip", z.ZodTypeAny, {
|
|
1980
|
+
cpu: number;
|
|
1981
|
+
}, {
|
|
1982
|
+
cpu: number;
|
|
1983
|
+
}>>;
|
|
1984
|
+
gcp: z.ZodOptional<z.ZodObject<{
|
|
1775
1985
|
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1776
|
-
|
|
1986
|
+
project: z.ZodString;
|
|
1777
1987
|
}, "strip", z.ZodTypeAny, {
|
|
1988
|
+
project: string;
|
|
1778
1989
|
enabled: boolean;
|
|
1779
|
-
apiKey?: string | undefined;
|
|
1780
1990
|
}, {
|
|
1781
|
-
|
|
1991
|
+
project: string;
|
|
1782
1992
|
enabled?: boolean | undefined;
|
|
1783
|
-
}
|
|
1784
|
-
|
|
1993
|
+
}>>;
|
|
1994
|
+
hetzner: z.ZodOptional<z.ZodObject<{
|
|
1785
1995
|
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1996
|
+
apiKey: z.ZodString;
|
|
1786
1997
|
}, "strip", z.ZodTypeAny, {
|
|
1998
|
+
apiKey: string;
|
|
1787
1999
|
enabled: boolean;
|
|
1788
|
-
apiKey?: string | undefined;
|
|
1789
2000
|
}, {
|
|
1790
|
-
apiKey
|
|
2001
|
+
apiKey: string;
|
|
1791
2002
|
enabled?: boolean | undefined;
|
|
1792
|
-
}
|
|
2003
|
+
}>>;
|
|
1793
2004
|
aws: z.ZodOptional<z.ZodObject<{
|
|
1794
2005
|
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1795
2006
|
controllerRoleArn: z.ZodString;
|
|
@@ -1801,9 +2012,7 @@ export declare const zGetFleetResponse: z.ZodObject<{
|
|
|
1801
2012
|
enabled?: boolean | undefined;
|
|
1802
2013
|
}>>;
|
|
1803
2014
|
id: z.ZodString;
|
|
1804
|
-
type: z.ZodEnum<["managed", "connected"]>;
|
|
1805
2015
|
}, "strip", z.ZodTypeAny, {
|
|
1806
|
-
type: "connected" | "managed";
|
|
1807
2016
|
id: string;
|
|
1808
2017
|
limits?: {
|
|
1809
2018
|
cpu: number;
|
|
@@ -1813,18 +2022,14 @@ export declare const zGetFleetResponse: z.ZodObject<{
|
|
|
1813
2022
|
enabled: boolean;
|
|
1814
2023
|
} | undefined;
|
|
1815
2024
|
hetzner?: {
|
|
2025
|
+
apiKey: string;
|
|
1816
2026
|
enabled: boolean;
|
|
1817
|
-
apiKey?: string | undefined;
|
|
1818
|
-
} | {
|
|
1819
|
-
enabled: boolean;
|
|
1820
|
-
apiKey?: string | undefined;
|
|
1821
2027
|
} | undefined;
|
|
1822
2028
|
aws?: {
|
|
1823
2029
|
controllerRoleArn: string;
|
|
1824
2030
|
enabled: boolean;
|
|
1825
2031
|
} | undefined;
|
|
1826
2032
|
}, {
|
|
1827
|
-
type: "connected" | "managed";
|
|
1828
2033
|
id: string;
|
|
1829
2034
|
limits?: {
|
|
1830
2035
|
cpu: number;
|
|
@@ -1834,10 +2039,78 @@ export declare const zGetFleetResponse: z.ZodObject<{
|
|
|
1834
2039
|
enabled?: boolean | undefined;
|
|
1835
2040
|
} | undefined;
|
|
1836
2041
|
hetzner?: {
|
|
1837
|
-
apiKey
|
|
2042
|
+
apiKey: string;
|
|
2043
|
+
enabled?: boolean | undefined;
|
|
2044
|
+
} | undefined;
|
|
2045
|
+
aws?: {
|
|
2046
|
+
controllerRoleArn: string;
|
|
2047
|
+
enabled?: boolean | undefined;
|
|
2048
|
+
} | undefined;
|
|
2049
|
+
}>;
|
|
2050
|
+
export declare const zUpdateFleetData: z.ZodObject<{
|
|
2051
|
+
limits: z.ZodOptional<z.ZodObject<{
|
|
2052
|
+
cpu: z.ZodNumber;
|
|
2053
|
+
}, "strip", z.ZodTypeAny, {
|
|
2054
|
+
cpu: number;
|
|
2055
|
+
}, {
|
|
2056
|
+
cpu: number;
|
|
2057
|
+
}>>;
|
|
2058
|
+
gcp: z.ZodOptional<z.ZodObject<{
|
|
2059
|
+
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
2060
|
+
project: z.ZodString;
|
|
2061
|
+
}, "strip", z.ZodTypeAny, {
|
|
2062
|
+
project: string;
|
|
2063
|
+
enabled: boolean;
|
|
2064
|
+
}, {
|
|
2065
|
+
project: string;
|
|
1838
2066
|
enabled?: boolean | undefined;
|
|
1839
|
-
}
|
|
1840
|
-
|
|
2067
|
+
}>>;
|
|
2068
|
+
hetzner: z.ZodOptional<z.ZodObject<{
|
|
2069
|
+
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
2070
|
+
apiKey: z.ZodString;
|
|
2071
|
+
}, "strip", z.ZodTypeAny, {
|
|
2072
|
+
apiKey: string;
|
|
2073
|
+
enabled: boolean;
|
|
2074
|
+
}, {
|
|
2075
|
+
apiKey: string;
|
|
2076
|
+
enabled?: boolean | undefined;
|
|
2077
|
+
}>>;
|
|
2078
|
+
aws: z.ZodOptional<z.ZodObject<{
|
|
2079
|
+
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
2080
|
+
controllerRoleArn: z.ZodString;
|
|
2081
|
+
}, "strip", z.ZodTypeAny, {
|
|
2082
|
+
controllerRoleArn: string;
|
|
2083
|
+
enabled: boolean;
|
|
2084
|
+
}, {
|
|
2085
|
+
controllerRoleArn: string;
|
|
2086
|
+
enabled?: boolean | undefined;
|
|
2087
|
+
}>>;
|
|
2088
|
+
}, "strip", z.ZodTypeAny, {
|
|
2089
|
+
limits?: {
|
|
2090
|
+
cpu: number;
|
|
2091
|
+
} | undefined;
|
|
2092
|
+
gcp?: {
|
|
2093
|
+
project: string;
|
|
2094
|
+
enabled: boolean;
|
|
2095
|
+
} | undefined;
|
|
2096
|
+
hetzner?: {
|
|
2097
|
+
apiKey: string;
|
|
2098
|
+
enabled: boolean;
|
|
2099
|
+
} | undefined;
|
|
2100
|
+
aws?: {
|
|
2101
|
+
controllerRoleArn: string;
|
|
2102
|
+
enabled: boolean;
|
|
2103
|
+
} | undefined;
|
|
2104
|
+
}, {
|
|
2105
|
+
limits?: {
|
|
2106
|
+
cpu: number;
|
|
2107
|
+
} | undefined;
|
|
2108
|
+
gcp?: {
|
|
2109
|
+
project: string;
|
|
2110
|
+
enabled?: boolean | undefined;
|
|
2111
|
+
} | undefined;
|
|
2112
|
+
hetzner?: {
|
|
2113
|
+
apiKey: string;
|
|
1841
2114
|
enabled?: boolean | undefined;
|
|
1842
2115
|
} | undefined;
|
|
1843
2116
|
aws?: {
|
|
@@ -1845,11 +2118,29 @@ export declare const zGetFleetResponse: z.ZodObject<{
|
|
|
1845
2118
|
enabled?: boolean | undefined;
|
|
1846
2119
|
} | undefined;
|
|
1847
2120
|
}>;
|
|
2121
|
+
/**
|
|
2122
|
+
* Unique identifier of the cluster. UUID v4 string in canonical form
|
|
2123
|
+
*/
|
|
2124
|
+
export declare const zUpdateFleetParameterClusterId: z.ZodString;
|
|
2125
|
+
/**
|
|
2126
|
+
* Unique identifier of the fleet. UUID v4 string in canonical form
|
|
2127
|
+
*/
|
|
2128
|
+
export declare const zUpdateFleetParameterFleetName: z.ZodString;
|
|
2129
|
+
/**
|
|
2130
|
+
* Successfully updated.
|
|
2131
|
+
*/
|
|
1848
2132
|
export declare const zUpdateFleetResponse: z.ZodString;
|
|
2133
|
+
/**
|
|
2134
|
+
* Unique identifier of the cluster. UUID v4 string in canonical form
|
|
2135
|
+
*/
|
|
2136
|
+
export declare const zQueryClusterParameterClusterId: z.ZodString;
|
|
2137
|
+
/**
|
|
2138
|
+
* An array of clusters
|
|
2139
|
+
*/
|
|
1849
2140
|
export declare const zListClustersResponse: z.ZodArray<z.ZodObject<{
|
|
1850
2141
|
name: z.ZodString;
|
|
1851
|
-
region: z.ZodOptional<z.ZodEnum<["staging", "northamerica-central-1"]>>;
|
|
1852
2142
|
tier: z.ZodEnum<["basic", "pro"]>;
|
|
2143
|
+
region: z.ZodOptional<z.ZodEnum<["staging", "northamerica-central-1", "europe-central-1a"]>>;
|
|
1853
2144
|
version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1854
2145
|
id: z.ZodString;
|
|
1855
2146
|
status: z.ZodEnum<["active", "deleted", "creating", "deployed", "failed", "updating"]>;
|
|
@@ -1863,35 +2154,68 @@ export declare const zListClustersResponse: z.ZodArray<z.ZodObject<{
|
|
|
1863
2154
|
name: string;
|
|
1864
2155
|
id: string;
|
|
1865
2156
|
status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
|
|
1866
|
-
tier: "basic" | "pro";
|
|
1867
2157
|
version_channel: string;
|
|
1868
|
-
|
|
1869
|
-
|
|
1870
|
-
|
|
2158
|
+
tier: "basic" | "pro";
|
|
2159
|
+
ready?: boolean | undefined;
|
|
2160
|
+
region?: "staging" | "northamerica-central-1" | "europe-central-1a" | undefined;
|
|
1871
2161
|
version_current?: string | undefined;
|
|
1872
2162
|
created_at?: string | undefined;
|
|
1873
2163
|
updated_at?: string | undefined;
|
|
1874
|
-
|
|
2164
|
+
endpoint?: string | undefined;
|
|
2165
|
+
certificate_ca?: string | undefined;
|
|
1875
2166
|
}, {
|
|
1876
2167
|
name: string;
|
|
1877
2168
|
id: string;
|
|
1878
2169
|
status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
|
|
1879
2170
|
tier: "basic" | "pro";
|
|
1880
|
-
|
|
1881
|
-
|
|
2171
|
+
ready?: boolean | undefined;
|
|
2172
|
+
region?: "staging" | "northamerica-central-1" | "europe-central-1a" | undefined;
|
|
1882
2173
|
version_channel?: string | undefined;
|
|
1883
|
-
certificate_ca?: string | undefined;
|
|
1884
2174
|
version_current?: string | undefined;
|
|
1885
2175
|
created_at?: string | undefined;
|
|
1886
2176
|
updated_at?: string | undefined;
|
|
1887
|
-
|
|
2177
|
+
endpoint?: string | undefined;
|
|
2178
|
+
certificate_ca?: string | undefined;
|
|
1888
2179
|
}>, "many">;
|
|
2180
|
+
export declare const zCreateClusterData: z.ZodObject<{
|
|
2181
|
+
name: z.ZodString;
|
|
2182
|
+
tier: z.ZodEnum<["basic", "pro"]>;
|
|
2183
|
+
region: z.ZodOptional<z.ZodEnum<["staging", "northamerica-central-1", "europe-central-1a"]>>;
|
|
2184
|
+
version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
2185
|
+
}, "strip", z.ZodTypeAny, {
|
|
2186
|
+
name: string;
|
|
2187
|
+
version_channel: string;
|
|
2188
|
+
tier: "basic" | "pro";
|
|
2189
|
+
region?: "staging" | "northamerica-central-1" | "europe-central-1a" | undefined;
|
|
2190
|
+
}, {
|
|
2191
|
+
name: string;
|
|
2192
|
+
tier: "basic" | "pro";
|
|
2193
|
+
region?: "staging" | "northamerica-central-1" | "europe-central-1a" | undefined;
|
|
2194
|
+
version_channel?: string | undefined;
|
|
2195
|
+
}>;
|
|
2196
|
+
/**
|
|
2197
|
+
* Successfully created. Returns created Cluster ID.
|
|
2198
|
+
*/
|
|
1889
2199
|
export declare const zCreateClusterResponse: z.ZodString;
|
|
2200
|
+
/**
|
|
2201
|
+
* Unique identifier of the cluster. UUID v4 string in canonical form
|
|
2202
|
+
*/
|
|
2203
|
+
export declare const zDeleteClusterParameterClusterId: z.ZodString;
|
|
2204
|
+
/**
|
|
2205
|
+
* Successfully deleted.
|
|
2206
|
+
*/
|
|
1890
2207
|
export declare const zDeleteClusterResponse: z.ZodString;
|
|
2208
|
+
/**
|
|
2209
|
+
* Unique identifier of the cluster. UUID v4 string in canonical form
|
|
2210
|
+
*/
|
|
2211
|
+
export declare const zGetClusterParameterClusterId: z.ZodString;
|
|
2212
|
+
/**
|
|
2213
|
+
* Returns a single object containing cluster details.
|
|
2214
|
+
*/
|
|
1891
2215
|
export declare const zGetClusterResponse: z.ZodObject<{
|
|
1892
2216
|
name: z.ZodString;
|
|
1893
|
-
region: z.ZodOptional<z.ZodEnum<["staging", "northamerica-central-1"]>>;
|
|
1894
2217
|
tier: z.ZodEnum<["basic", "pro"]>;
|
|
2218
|
+
region: z.ZodOptional<z.ZodEnum<["staging", "northamerica-central-1", "europe-central-1a"]>>;
|
|
1895
2219
|
version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1896
2220
|
id: z.ZodString;
|
|
1897
2221
|
status: z.ZodEnum<["active", "deleted", "creating", "deployed", "failed", "updating"]>;
|
|
@@ -1905,33 +2229,53 @@ export declare const zGetClusterResponse: z.ZodObject<{
|
|
|
1905
2229
|
name: string;
|
|
1906
2230
|
id: string;
|
|
1907
2231
|
status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
|
|
1908
|
-
tier: "basic" | "pro";
|
|
1909
2232
|
version_channel: string;
|
|
1910
|
-
|
|
1911
|
-
|
|
1912
|
-
|
|
2233
|
+
tier: "basic" | "pro";
|
|
2234
|
+
ready?: boolean | undefined;
|
|
2235
|
+
region?: "staging" | "northamerica-central-1" | "europe-central-1a" | undefined;
|
|
1913
2236
|
version_current?: string | undefined;
|
|
1914
2237
|
created_at?: string | undefined;
|
|
1915
2238
|
updated_at?: string | undefined;
|
|
1916
|
-
|
|
2239
|
+
endpoint?: string | undefined;
|
|
2240
|
+
certificate_ca?: string | undefined;
|
|
1917
2241
|
}, {
|
|
1918
2242
|
name: string;
|
|
1919
2243
|
id: string;
|
|
1920
2244
|
status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
|
|
1921
2245
|
tier: "basic" | "pro";
|
|
1922
|
-
|
|
1923
|
-
|
|
2246
|
+
ready?: boolean | undefined;
|
|
2247
|
+
region?: "staging" | "northamerica-central-1" | "europe-central-1a" | undefined;
|
|
1924
2248
|
version_channel?: string | undefined;
|
|
1925
|
-
certificate_ca?: string | undefined;
|
|
1926
2249
|
version_current?: string | undefined;
|
|
1927
2250
|
created_at?: string | undefined;
|
|
1928
2251
|
updated_at?: string | undefined;
|
|
1929
|
-
|
|
2252
|
+
endpoint?: string | undefined;
|
|
2253
|
+
certificate_ca?: string | undefined;
|
|
1930
2254
|
}>;
|
|
2255
|
+
export declare const zUpdateClusterData: z.ZodObject<{
|
|
2256
|
+
name: z.ZodOptional<z.ZodString>;
|
|
2257
|
+
tier: z.ZodEnum<["basic", "pro"]>;
|
|
2258
|
+
version_channel: z.ZodOptional<z.ZodString>;
|
|
2259
|
+
}, "strip", z.ZodTypeAny, {
|
|
2260
|
+
tier: "basic" | "pro";
|
|
2261
|
+
name?: string | undefined;
|
|
2262
|
+
version_channel?: string | undefined;
|
|
2263
|
+
}, {
|
|
2264
|
+
tier: "basic" | "pro";
|
|
2265
|
+
name?: string | undefined;
|
|
2266
|
+
version_channel?: string | undefined;
|
|
2267
|
+
}>;
|
|
2268
|
+
/**
|
|
2269
|
+
* Unique identifier of the cluster. UUID v4 string in canonical form
|
|
2270
|
+
*/
|
|
2271
|
+
export declare const zUpdateClusterParameterClusterId: z.ZodString;
|
|
2272
|
+
/**
|
|
2273
|
+
* Successfully updated. Returns updated cluster details.
|
|
2274
|
+
*/
|
|
1931
2275
|
export declare const zUpdateClusterResponse: z.ZodObject<{
|
|
1932
2276
|
name: z.ZodString;
|
|
1933
|
-
region: z.ZodOptional<z.ZodEnum<["staging", "northamerica-central-1"]>>;
|
|
1934
2277
|
tier: z.ZodEnum<["basic", "pro"]>;
|
|
2278
|
+
region: z.ZodOptional<z.ZodEnum<["staging", "northamerica-central-1", "europe-central-1a"]>>;
|
|
1935
2279
|
version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1936
2280
|
id: z.ZodString;
|
|
1937
2281
|
status: z.ZodEnum<["active", "deleted", "creating", "deployed", "failed", "updating"]>;
|
|
@@ -1945,33 +2289,40 @@ export declare const zUpdateClusterResponse: z.ZodObject<{
|
|
|
1945
2289
|
name: string;
|
|
1946
2290
|
id: string;
|
|
1947
2291
|
status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
|
|
1948
|
-
tier: "basic" | "pro";
|
|
1949
2292
|
version_channel: string;
|
|
1950
|
-
|
|
1951
|
-
|
|
1952
|
-
|
|
2293
|
+
tier: "basic" | "pro";
|
|
2294
|
+
ready?: boolean | undefined;
|
|
2295
|
+
region?: "staging" | "northamerica-central-1" | "europe-central-1a" | undefined;
|
|
1953
2296
|
version_current?: string | undefined;
|
|
1954
2297
|
created_at?: string | undefined;
|
|
1955
2298
|
updated_at?: string | undefined;
|
|
1956
|
-
|
|
2299
|
+
endpoint?: string | undefined;
|
|
2300
|
+
certificate_ca?: string | undefined;
|
|
1957
2301
|
}, {
|
|
1958
2302
|
name: string;
|
|
1959
2303
|
id: string;
|
|
1960
2304
|
status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
|
|
1961
2305
|
tier: "basic" | "pro";
|
|
1962
|
-
|
|
1963
|
-
|
|
2306
|
+
ready?: boolean | undefined;
|
|
2307
|
+
region?: "staging" | "northamerica-central-1" | "europe-central-1a" | undefined;
|
|
1964
2308
|
version_channel?: string | undefined;
|
|
1965
|
-
certificate_ca?: string | undefined;
|
|
1966
2309
|
version_current?: string | undefined;
|
|
1967
2310
|
created_at?: string | undefined;
|
|
1968
2311
|
updated_at?: string | undefined;
|
|
1969
|
-
|
|
2312
|
+
endpoint?: string | undefined;
|
|
2313
|
+
certificate_ca?: string | undefined;
|
|
1970
2314
|
}>;
|
|
2315
|
+
/**
|
|
2316
|
+
* Unique identifier of the cluster. UUID v4 string in canonical form
|
|
2317
|
+
*/
|
|
2318
|
+
export declare const zGetJoinInformationParameterClusterId: z.ZodString;
|
|
2319
|
+
/**
|
|
2320
|
+
* An object of cluster join information
|
|
2321
|
+
*/
|
|
1971
2322
|
export declare const zGetJoinInformationResponse: z.ZodObject<{
|
|
1972
2323
|
name: z.ZodString;
|
|
1973
|
-
region: z.ZodOptional<z.ZodEnum<["staging", "northamerica-central-1"]>>;
|
|
1974
2324
|
tier: z.ZodEnum<["basic", "pro"]>;
|
|
2325
|
+
region: z.ZodOptional<z.ZodEnum<["staging", "northamerica-central-1", "europe-central-1a"]>>;
|
|
1975
2326
|
version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1976
2327
|
id: z.ZodString;
|
|
1977
2328
|
status: z.ZodEnum<["active", "deleted", "creating", "deployed", "failed", "updating"]>;
|
|
@@ -1985,200 +2336,32 @@ export declare const zGetJoinInformationResponse: z.ZodObject<{
|
|
|
1985
2336
|
name: string;
|
|
1986
2337
|
id: string;
|
|
1987
2338
|
status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
|
|
1988
|
-
tier: "basic" | "pro";
|
|
1989
2339
|
version_channel: string;
|
|
1990
|
-
|
|
1991
|
-
|
|
1992
|
-
|
|
2340
|
+
tier: "basic" | "pro";
|
|
2341
|
+
ready?: boolean | undefined;
|
|
2342
|
+
region?: "staging" | "northamerica-central-1" | "europe-central-1a" | undefined;
|
|
1993
2343
|
version_current?: string | undefined;
|
|
1994
2344
|
created_at?: string | undefined;
|
|
1995
2345
|
updated_at?: string | undefined;
|
|
1996
|
-
|
|
2346
|
+
endpoint?: string | undefined;
|
|
2347
|
+
certificate_ca?: string | undefined;
|
|
1997
2348
|
}, {
|
|
1998
2349
|
name: string;
|
|
1999
2350
|
id: string;
|
|
2000
2351
|
status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
|
|
2001
2352
|
tier: "basic" | "pro";
|
|
2002
|
-
|
|
2003
|
-
|
|
2004
|
-
version_channel?: string | undefined;
|
|
2005
|
-
|
|
2006
|
-
|
|
2007
|
-
|
|
2008
|
-
|
|
2009
|
-
|
|
2010
|
-
}>;
|
|
2011
|
-
|
|
2012
|
-
|
|
2013
|
-
|
|
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, {}, {}>;
|
|
2353
|
+
ready?: boolean | undefined;
|
|
2354
|
+
region?: "staging" | "northamerica-central-1" | "europe-central-1a" | undefined;
|
|
2355
|
+
version_channel?: string | undefined;
|
|
2356
|
+
version_current?: string | undefined;
|
|
2357
|
+
created_at?: string | undefined;
|
|
2358
|
+
updated_at?: string | undefined;
|
|
2359
|
+
endpoint?: string | undefined;
|
|
2360
|
+
certificate_ca?: string | undefined;
|
|
2361
|
+
}>;
|
|
2362
|
+
/**
|
|
2363
|
+
* An array of invites
|
|
2364
|
+
*/
|
|
2182
2365
|
export declare const zListInvitesResponse: z.ZodArray<z.ZodObject<{
|
|
2183
2366
|
id: z.ZodOptional<z.ZodString>;
|
|
2184
2367
|
organization_id: z.ZodOptional<z.ZodString>;
|
|
@@ -2198,6 +2381,16 @@ export declare const zListInvitesResponse: z.ZodArray<z.ZodObject<{
|
|
|
2198
2381
|
email?: string | undefined;
|
|
2199
2382
|
organization_id?: string | undefined;
|
|
2200
2383
|
}>, "many">;
|
|
2384
|
+
export declare const zCreateInviteData: z.ZodObject<{
|
|
2385
|
+
email: z.ZodOptional<z.ZodString>;
|
|
2386
|
+
}, "strip", z.ZodTypeAny, {
|
|
2387
|
+
email?: string | undefined;
|
|
2388
|
+
}, {
|
|
2389
|
+
email?: string | undefined;
|
|
2390
|
+
}>;
|
|
2391
|
+
/**
|
|
2392
|
+
* Successfully created. Returns created invite details.
|
|
2393
|
+
*/
|
|
2201
2394
|
export declare const zCreateInviteResponse: z.ZodObject<{
|
|
2202
2395
|
id: z.ZodOptional<z.ZodString>;
|
|
2203
2396
|
organization_id: z.ZodOptional<z.ZodString>;
|
|
@@ -2217,6 +2410,13 @@ export declare const zCreateInviteResponse: z.ZodObject<{
|
|
|
2217
2410
|
email?: string | undefined;
|
|
2218
2411
|
organization_id?: string | undefined;
|
|
2219
2412
|
}>;
|
|
2413
|
+
/**
|
|
2414
|
+
* Invitation code
|
|
2415
|
+
*/
|
|
2416
|
+
export declare const zGetInviteParameterCode: z.ZodString;
|
|
2417
|
+
/**
|
|
2418
|
+
* Returns a single object containing invite details.
|
|
2419
|
+
*/
|
|
2220
2420
|
export declare const zGetInviteResponse: z.ZodObject<{
|
|
2221
2421
|
id: z.ZodOptional<z.ZodString>;
|
|
2222
2422
|
organization_id: z.ZodOptional<z.ZodString>;
|
|
@@ -2236,194 +2436,128 @@ export declare const zGetInviteResponse: z.ZodObject<{
|
|
|
2236
2436
|
email?: string | undefined;
|
|
2237
2437
|
organization_id?: string | undefined;
|
|
2238
2438
|
}>;
|
|
2239
|
-
|
|
2439
|
+
/**
|
|
2440
|
+
* User email address
|
|
2441
|
+
*/
|
|
2442
|
+
export declare const zDeleteInviteParameterEmail: z.ZodString;
|
|
2443
|
+
/**
|
|
2444
|
+
* An array of chart listings in the marketplace.
|
|
2445
|
+
*/
|
|
2446
|
+
export declare const zListMarketplaceChartsResponse: z.ZodArray<z.ZodObject<{
|
|
2447
|
+
id: z.ZodString;
|
|
2240
2448
|
name: z.ZodString;
|
|
2241
|
-
|
|
2242
|
-
|
|
2243
|
-
|
|
2244
|
-
|
|
2245
|
-
|
|
2246
|
-
|
|
2247
|
-
|
|
2248
|
-
|
|
2249
|
-
|
|
2250
|
-
|
|
2251
|
-
last_name: z.ZodString;
|
|
2449
|
+
developer: z.ZodString;
|
|
2450
|
+
description: z.ZodString;
|
|
2451
|
+
logoUrl: z.ZodString;
|
|
2452
|
+
longDescription: z.ZodString;
|
|
2453
|
+
categories: z.ZodArray<z.ZodString, "many">;
|
|
2454
|
+
version_channels: z.ZodArray<z.ZodString, "many">;
|
|
2455
|
+
value_schemas: z.ZodArray<z.ZodObject<{
|
|
2456
|
+
version: z.ZodString;
|
|
2457
|
+
schema: z.ZodString;
|
|
2458
|
+
placeholder: z.ZodString;
|
|
2252
2459
|
}, "strip", z.ZodTypeAny, {
|
|
2253
|
-
|
|
2254
|
-
|
|
2255
|
-
|
|
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;
|
|
2460
|
+
version: string;
|
|
2461
|
+
schema: string;
|
|
2462
|
+
placeholder: string;
|
|
2263
2463
|
}, {
|
|
2264
|
-
|
|
2265
|
-
|
|
2266
|
-
|
|
2267
|
-
|
|
2268
|
-
|
|
2269
|
-
|
|
2270
|
-
|
|
2271
|
-
|
|
2272
|
-
|
|
2273
|
-
|
|
2274
|
-
|
|
2464
|
+
version: string;
|
|
2465
|
+
schema: string;
|
|
2466
|
+
placeholder: string;
|
|
2467
|
+
}>, "many">;
|
|
2468
|
+
}, "strip", z.ZodTypeAny, {
|
|
2469
|
+
name: string;
|
|
2470
|
+
id: string;
|
|
2471
|
+
description: string;
|
|
2472
|
+
developer: string;
|
|
2473
|
+
logoUrl: string;
|
|
2474
|
+
longDescription: string;
|
|
2475
|
+
categories: string[];
|
|
2476
|
+
version_channels: string[];
|
|
2477
|
+
value_schemas: {
|
|
2478
|
+
version: string;
|
|
2479
|
+
schema: string;
|
|
2480
|
+
placeholder: string;
|
|
2481
|
+
}[];
|
|
2482
|
+
}, {
|
|
2483
|
+
name: string;
|
|
2484
|
+
id: string;
|
|
2485
|
+
description: string;
|
|
2486
|
+
developer: string;
|
|
2487
|
+
logoUrl: string;
|
|
2488
|
+
longDescription: string;
|
|
2489
|
+
categories: string[];
|
|
2490
|
+
version_channels: string[];
|
|
2491
|
+
value_schemas: {
|
|
2492
|
+
version: string;
|
|
2493
|
+
schema: string;
|
|
2494
|
+
placeholder: string;
|
|
2495
|
+
}[];
|
|
2496
|
+
}>, "many">;
|
|
2497
|
+
/**
|
|
2498
|
+
* Unique identifier of the chart listing in the marketplace.
|
|
2499
|
+
*/
|
|
2500
|
+
export declare const zGetMarketplaceChartParameterListingId: z.ZodString;
|
|
2501
|
+
/**
|
|
2502
|
+
* Returns an object containing the chart listing details.
|
|
2503
|
+
*/
|
|
2504
|
+
export declare const zGetMarketplaceChartResponse: z.ZodObject<{
|
|
2275
2505
|
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">;
|
|
2506
|
+
name: z.ZodString;
|
|
2507
|
+
developer: z.ZodString;
|
|
2508
|
+
description: z.ZodString;
|
|
2509
|
+
logoUrl: z.ZodString;
|
|
2510
|
+
longDescription: z.ZodString;
|
|
2511
|
+
categories: z.ZodArray<z.ZodString, "many">;
|
|
2512
|
+
version_channels: z.ZodArray<z.ZodString, "many">;
|
|
2513
|
+
value_schemas: z.ZodArray<z.ZodObject<{
|
|
2514
|
+
version: z.ZodString;
|
|
2515
|
+
schema: z.ZodString;
|
|
2516
|
+
placeholder: z.ZodString;
|
|
2296
2517
|
}, "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[];
|
|
2518
|
+
version: string;
|
|
2519
|
+
schema: string;
|
|
2520
|
+
placeholder: string;
|
|
2309
2521
|
}, {
|
|
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"]>;
|
|
2522
|
+
version: string;
|
|
2523
|
+
schema: string;
|
|
2524
|
+
placeholder: string;
|
|
2525
|
+
}>, "many">;
|
|
2325
2526
|
}, "strip", z.ZodTypeAny, {
|
|
2326
2527
|
name: string;
|
|
2327
2528
|
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")[];
|
|
2529
|
+
description: string;
|
|
2530
|
+
developer: string;
|
|
2531
|
+
logoUrl: string;
|
|
2532
|
+
longDescription: string;
|
|
2533
|
+
categories: string[];
|
|
2534
|
+
version_channels: string[];
|
|
2535
|
+
value_schemas: {
|
|
2536
|
+
version: string;
|
|
2537
|
+
schema: string;
|
|
2538
|
+
placeholder: string;
|
|
2539
|
+
}[];
|
|
2357
2540
|
}, {
|
|
2358
2541
|
name: string;
|
|
2359
2542
|
id: string;
|
|
2360
|
-
|
|
2361
|
-
|
|
2362
|
-
|
|
2363
|
-
|
|
2364
|
-
|
|
2365
|
-
|
|
2366
|
-
|
|
2367
|
-
|
|
2368
|
-
|
|
2369
|
-
|
|
2370
|
-
|
|
2371
|
-
city?: string | undefined;
|
|
2372
|
-
phone?: string | undefined;
|
|
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")[];
|
|
2543
|
+
description: string;
|
|
2544
|
+
developer: string;
|
|
2545
|
+
logoUrl: string;
|
|
2546
|
+
longDescription: string;
|
|
2547
|
+
categories: string[];
|
|
2548
|
+
version_channels: string[];
|
|
2549
|
+
value_schemas: {
|
|
2550
|
+
version: string;
|
|
2551
|
+
schema: string;
|
|
2552
|
+
placeholder: string;
|
|
2553
|
+
}[];
|
|
2389
2554
|
}>;
|
|
2390
|
-
|
|
2391
|
-
|
|
2392
|
-
|
|
2393
|
-
|
|
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
|
-
}>;
|
|
2555
|
+
/**
|
|
2556
|
+
* Returns a single object containing organization details.
|
|
2557
|
+
*/
|
|
2558
|
+
export declare const zGetOrganizationResponse: z.ZodObject<{
|
|
2426
2559
|
id: z.ZodString;
|
|
2560
|
+
name: z.ZodOptional<z.ZodString>;
|
|
2427
2561
|
date_created: z.ZodString;
|
|
2428
2562
|
quota: z.ZodObject<{
|
|
2429
2563
|
basic_clusters_max: z.ZodNumber;
|
|
@@ -2431,7 +2565,6 @@ export declare const zUpdateOrganizationResponse: z.ZodObject<{
|
|
|
2431
2565
|
pro_clusters_max: z.ZodNumber;
|
|
2432
2566
|
pro_clusters_available: z.ZodNumber;
|
|
2433
2567
|
fleets_max: z.ZodNumber;
|
|
2434
|
-
managed_fleets_cpu_max: z.ZodNumber;
|
|
2435
2568
|
cluster_tiers: z.ZodArray<z.ZodString, "many">;
|
|
2436
2569
|
regions: z.ZodArray<z.ZodString, "many">;
|
|
2437
2570
|
versions: z.ZodArray<z.ZodObject<{
|
|
@@ -2454,7 +2587,6 @@ export declare const zUpdateOrganizationResponse: z.ZodObject<{
|
|
|
2454
2587
|
pro_clusters_max: number;
|
|
2455
2588
|
pro_clusters_available: number;
|
|
2456
2589
|
fleets_max: number;
|
|
2457
|
-
managed_fleets_cpu_max: number;
|
|
2458
2590
|
cluster_tiers: string[];
|
|
2459
2591
|
regions: string[];
|
|
2460
2592
|
}, {
|
|
@@ -2467,29 +2599,14 @@ export declare const zUpdateOrganizationResponse: z.ZodObject<{
|
|
|
2467
2599
|
pro_clusters_max: number;
|
|
2468
2600
|
pro_clusters_available: number;
|
|
2469
2601
|
fleets_max: number;
|
|
2470
|
-
managed_fleets_cpu_max: number;
|
|
2471
2602
|
cluster_tiers: string[];
|
|
2472
2603
|
regions: string[];
|
|
2473
2604
|
}>;
|
|
2474
|
-
pending_actions: z.ZodArray<z.ZodEnum<["signup-billing-address", "signup-payment-method", "signup-invite-team", "signup-create-cluster"]>, "many">;
|
|
2475
2605
|
status: z.ZodEnum<["active", "closed", "suspended"]>;
|
|
2476
2606
|
}, "strip", z.ZodTypeAny, {
|
|
2477
|
-
name: string;
|
|
2478
2607
|
id: string;
|
|
2479
2608
|
status: "active" | "closed" | "suspended";
|
|
2480
2609
|
date_created: string;
|
|
2481
|
-
contactInfo: {
|
|
2482
|
-
email: string;
|
|
2483
|
-
first_name: string;
|
|
2484
|
-
last_name: string;
|
|
2485
|
-
state?: string | undefined;
|
|
2486
|
-
country?: string | undefined;
|
|
2487
|
-
address1?: string | undefined;
|
|
2488
|
-
address2?: string | undefined;
|
|
2489
|
-
postalCode?: string | undefined;
|
|
2490
|
-
city?: string | undefined;
|
|
2491
|
-
phone?: string | undefined;
|
|
2492
|
-
};
|
|
2493
2610
|
quota: {
|
|
2494
2611
|
versions: {
|
|
2495
2612
|
id: string;
|
|
@@ -2500,28 +2617,14 @@ export declare const zUpdateOrganizationResponse: z.ZodObject<{
|
|
|
2500
2617
|
pro_clusters_max: number;
|
|
2501
2618
|
pro_clusters_available: number;
|
|
2502
2619
|
fleets_max: number;
|
|
2503
|
-
managed_fleets_cpu_max: number;
|
|
2504
2620
|
cluster_tiers: string[];
|
|
2505
2621
|
regions: string[];
|
|
2506
2622
|
};
|
|
2507
|
-
|
|
2623
|
+
name?: string | undefined;
|
|
2508
2624
|
}, {
|
|
2509
|
-
name: string;
|
|
2510
2625
|
id: string;
|
|
2511
2626
|
status: "active" | "closed" | "suspended";
|
|
2512
2627
|
date_created: string;
|
|
2513
|
-
contactInfo: {
|
|
2514
|
-
email: string;
|
|
2515
|
-
first_name: string;
|
|
2516
|
-
last_name: string;
|
|
2517
|
-
state?: string | undefined;
|
|
2518
|
-
country?: string | undefined;
|
|
2519
|
-
address1?: string | undefined;
|
|
2520
|
-
address2?: string | undefined;
|
|
2521
|
-
postalCode?: string | undefined;
|
|
2522
|
-
city?: string | undefined;
|
|
2523
|
-
phone?: string | undefined;
|
|
2524
|
-
};
|
|
2525
2628
|
quota: {
|
|
2526
2629
|
versions: {
|
|
2527
2630
|
id: string;
|
|
@@ -2532,12 +2635,33 @@ export declare const zUpdateOrganizationResponse: z.ZodObject<{
|
|
|
2532
2635
|
pro_clusters_max: number;
|
|
2533
2636
|
pro_clusters_available: number;
|
|
2534
2637
|
fleets_max: number;
|
|
2535
|
-
managed_fleets_cpu_max: number;
|
|
2536
2638
|
cluster_tiers: string[];
|
|
2537
2639
|
regions: string[];
|
|
2538
2640
|
};
|
|
2539
|
-
|
|
2641
|
+
name?: string | undefined;
|
|
2540
2642
|
}>;
|
|
2643
|
+
export declare const zCreateOrganizationData: z.ZodObject<{
|
|
2644
|
+
email: z.ZodString;
|
|
2645
|
+
first_name: z.ZodString;
|
|
2646
|
+
last_name: z.ZodString;
|
|
2647
|
+
company_name: z.ZodString;
|
|
2648
|
+
password: z.ZodString;
|
|
2649
|
+
}, "strip", z.ZodTypeAny, {
|
|
2650
|
+
email: string;
|
|
2651
|
+
first_name: string;
|
|
2652
|
+
last_name: string;
|
|
2653
|
+
company_name: string;
|
|
2654
|
+
password: string;
|
|
2655
|
+
}, {
|
|
2656
|
+
email: string;
|
|
2657
|
+
first_name: string;
|
|
2658
|
+
last_name: string;
|
|
2659
|
+
company_name: string;
|
|
2660
|
+
password: string;
|
|
2661
|
+
}>;
|
|
2662
|
+
/**
|
|
2663
|
+
* Returns a list of access token details with masked secrets.
|
|
2664
|
+
*/
|
|
2541
2665
|
export declare const zListTokensResponse: z.ZodArray<z.ZodObject<{
|
|
2542
2666
|
name: z.ZodString;
|
|
2543
2667
|
role: z.ZodEnum<["Administrator", "User"]>;
|
|
@@ -2546,17 +2670,30 @@ export declare const zListTokensResponse: z.ZodArray<z.ZodObject<{
|
|
|
2546
2670
|
date_created: z.ZodString;
|
|
2547
2671
|
}, "strip", z.ZodTypeAny, {
|
|
2548
2672
|
name: string;
|
|
2549
|
-
role: "
|
|
2673
|
+
role: "Administrator" | "User";
|
|
2550
2674
|
date_created: string;
|
|
2551
2675
|
id?: string | undefined;
|
|
2552
2676
|
secret?: string | undefined;
|
|
2553
2677
|
}, {
|
|
2554
2678
|
name: string;
|
|
2555
|
-
role: "
|
|
2679
|
+
role: "Administrator" | "User";
|
|
2556
2680
|
date_created: string;
|
|
2557
2681
|
id?: string | undefined;
|
|
2558
2682
|
secret?: string | undefined;
|
|
2559
2683
|
}>, "many">;
|
|
2684
|
+
export declare const zCreateTokenData: z.ZodObject<{
|
|
2685
|
+
name: z.ZodString;
|
|
2686
|
+
role: z.ZodEnum<["Administrator", "User"]>;
|
|
2687
|
+
}, "strip", z.ZodTypeAny, {
|
|
2688
|
+
name: string;
|
|
2689
|
+
role: "Administrator" | "User";
|
|
2690
|
+
}, {
|
|
2691
|
+
name: string;
|
|
2692
|
+
role: "Administrator" | "User";
|
|
2693
|
+
}>;
|
|
2694
|
+
/**
|
|
2695
|
+
* Successfully created. Returns created token details with unmasked/raw secret.
|
|
2696
|
+
*/
|
|
2560
2697
|
export declare const zCreateTokenResponse: z.ZodObject<{
|
|
2561
2698
|
name: z.ZodString;
|
|
2562
2699
|
role: z.ZodEnum<["Administrator", "User"]>;
|
|
@@ -2565,17 +2702,28 @@ export declare const zCreateTokenResponse: z.ZodObject<{
|
|
|
2565
2702
|
date_created: z.ZodString;
|
|
2566
2703
|
}, "strip", z.ZodTypeAny, {
|
|
2567
2704
|
name: string;
|
|
2568
|
-
role: "
|
|
2705
|
+
role: "Administrator" | "User";
|
|
2569
2706
|
date_created: string;
|
|
2570
2707
|
id?: string | undefined;
|
|
2571
2708
|
secret?: string | undefined;
|
|
2572
2709
|
}, {
|
|
2573
2710
|
name: string;
|
|
2574
|
-
role: "
|
|
2711
|
+
role: "Administrator" | "User";
|
|
2575
2712
|
date_created: string;
|
|
2576
2713
|
id?: string | undefined;
|
|
2577
2714
|
secret?: string | undefined;
|
|
2578
2715
|
}>;
|
|
2716
|
+
/**
|
|
2717
|
+
* Generated unique identifier of the access token.
|
|
2718
|
+
*/
|
|
2719
|
+
export declare const zDeleteTokenParameterTokenId: z.ZodString;
|
|
2720
|
+
/**
|
|
2721
|
+
* Generated unique identifier of the access token.
|
|
2722
|
+
*/
|
|
2723
|
+
export declare const zGetTokenParameterTokenId: z.ZodString;
|
|
2724
|
+
/**
|
|
2725
|
+
* Returns access token details with masked secret.
|
|
2726
|
+
*/
|
|
2579
2727
|
export declare const zGetTokenResponse: z.ZodObject<{
|
|
2580
2728
|
name: z.ZodString;
|
|
2581
2729
|
role: z.ZodEnum<["Administrator", "User"]>;
|
|
@@ -2584,17 +2732,34 @@ export declare const zGetTokenResponse: z.ZodObject<{
|
|
|
2584
2732
|
date_created: z.ZodString;
|
|
2585
2733
|
}, "strip", z.ZodTypeAny, {
|
|
2586
2734
|
name: string;
|
|
2587
|
-
role: "
|
|
2735
|
+
role: "Administrator" | "User";
|
|
2588
2736
|
date_created: string;
|
|
2589
2737
|
id?: string | undefined;
|
|
2590
2738
|
secret?: string | undefined;
|
|
2591
2739
|
}, {
|
|
2592
2740
|
name: string;
|
|
2593
|
-
role: "
|
|
2741
|
+
role: "Administrator" | "User";
|
|
2594
2742
|
date_created: string;
|
|
2595
2743
|
id?: string | undefined;
|
|
2596
2744
|
secret?: string | undefined;
|
|
2597
2745
|
}>;
|
|
2746
|
+
export declare const zUpdateTokenData: z.ZodObject<{
|
|
2747
|
+
name: z.ZodOptional<z.ZodString>;
|
|
2748
|
+
role: z.ZodOptional<z.ZodEnum<["Administrator", "User"]>>;
|
|
2749
|
+
}, "strip", z.ZodTypeAny, {
|
|
2750
|
+
name?: string | undefined;
|
|
2751
|
+
role?: "Administrator" | "User" | undefined;
|
|
2752
|
+
}, {
|
|
2753
|
+
name?: string | undefined;
|
|
2754
|
+
role?: "Administrator" | "User" | undefined;
|
|
2755
|
+
}>;
|
|
2756
|
+
/**
|
|
2757
|
+
* Generated unique identifier of the access token.
|
|
2758
|
+
*/
|
|
2759
|
+
export declare const zUpdateTokenParameterTokenId: z.ZodString;
|
|
2760
|
+
/**
|
|
2761
|
+
* Successfully updated. Returns updated token details with masked secret.
|
|
2762
|
+
*/
|
|
2598
2763
|
export declare const zUpdateTokenResponse: z.ZodObject<{
|
|
2599
2764
|
name: z.ZodString;
|
|
2600
2765
|
role: z.ZodEnum<["Administrator", "User"]>;
|
|
@@ -2603,17 +2768,24 @@ export declare const zUpdateTokenResponse: z.ZodObject<{
|
|
|
2603
2768
|
date_created: z.ZodString;
|
|
2604
2769
|
}, "strip", z.ZodTypeAny, {
|
|
2605
2770
|
name: string;
|
|
2606
|
-
role: "
|
|
2771
|
+
role: "Administrator" | "User";
|
|
2607
2772
|
date_created: string;
|
|
2608
2773
|
id?: string | undefined;
|
|
2609
2774
|
secret?: string | undefined;
|
|
2610
2775
|
}, {
|
|
2611
2776
|
name: string;
|
|
2612
|
-
role: "
|
|
2777
|
+
role: "Administrator" | "User";
|
|
2613
2778
|
date_created: string;
|
|
2614
2779
|
id?: string | undefined;
|
|
2615
2780
|
secret?: string | undefined;
|
|
2616
2781
|
}>;
|
|
2782
|
+
/**
|
|
2783
|
+
* Generated unique identifier of the access token.
|
|
2784
|
+
*/
|
|
2785
|
+
export declare const zRegenerateTokenParameterTokenId: z.ZodString;
|
|
2786
|
+
/**
|
|
2787
|
+
* Successfully updated. Returns updated token details with unmasked / raw secret.
|
|
2788
|
+
*/
|
|
2617
2789
|
export declare const zRegenerateTokenResponse: z.ZodObject<{
|
|
2618
2790
|
name: z.ZodString;
|
|
2619
2791
|
role: z.ZodEnum<["Administrator", "User"]>;
|
|
@@ -2622,17 +2794,24 @@ export declare const zRegenerateTokenResponse: z.ZodObject<{
|
|
|
2622
2794
|
date_created: z.ZodString;
|
|
2623
2795
|
}, "strip", z.ZodTypeAny, {
|
|
2624
2796
|
name: string;
|
|
2625
|
-
role: "
|
|
2797
|
+
role: "Administrator" | "User";
|
|
2626
2798
|
date_created: string;
|
|
2627
2799
|
id?: string | undefined;
|
|
2628
2800
|
secret?: string | undefined;
|
|
2629
2801
|
}, {
|
|
2630
2802
|
name: string;
|
|
2631
|
-
role: "
|
|
2803
|
+
role: "Administrator" | "User";
|
|
2632
2804
|
date_created: string;
|
|
2633
2805
|
id?: string | undefined;
|
|
2634
2806
|
secret?: string | undefined;
|
|
2635
2807
|
}>;
|
|
2808
|
+
/**
|
|
2809
|
+
* User email address.
|
|
2810
|
+
*/
|
|
2811
|
+
export declare const zListUserOrganizationsParameterEmail: z.ZodString;
|
|
2812
|
+
/**
|
|
2813
|
+
* An array of organizations the user belongs to.
|
|
2814
|
+
*/
|
|
2636
2815
|
export declare const zListUserOrganizationsResponse: z.ZodArray<z.ZodObject<{
|
|
2637
2816
|
realm: z.ZodOptional<z.ZodString>;
|
|
2638
2817
|
displayName: z.ZodOptional<z.ZodString>;
|
|
@@ -2643,6 +2822,9 @@ export declare const zListUserOrganizationsResponse: z.ZodArray<z.ZodObject<{
|
|
|
2643
2822
|
realm?: string | undefined;
|
|
2644
2823
|
displayName?: string | undefined;
|
|
2645
2824
|
}>, "many">;
|
|
2825
|
+
/**
|
|
2826
|
+
* An array of users
|
|
2827
|
+
*/
|
|
2646
2828
|
export declare const zListUsersResponse: z.ZodArray<z.ZodObject<{
|
|
2647
2829
|
email: z.ZodString;
|
|
2648
2830
|
first_name: z.ZodString;
|
|
@@ -2651,85 +2833,52 @@ export declare const zListUsersResponse: z.ZodArray<z.ZodObject<{
|
|
|
2651
2833
|
status: z.ZodEnum<["active", "inactive"]>;
|
|
2652
2834
|
id: z.ZodString;
|
|
2653
2835
|
date_created: z.ZodString;
|
|
2654
|
-
cluster_permissions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2655
|
-
cluster_id: z.ZodString;
|
|
2656
|
-
permissions: z.ZodEnum<["readwrite", "readonly"]>;
|
|
2657
|
-
}, "strip", z.ZodTypeAny, {
|
|
2658
|
-
cluster_id: string;
|
|
2659
|
-
permissions: "readonly" | "readwrite";
|
|
2660
|
-
}, {
|
|
2661
|
-
cluster_id: string;
|
|
2662
|
-
permissions: "readonly" | "readwrite";
|
|
2663
|
-
}>, "many">>;
|
|
2664
2836
|
}, "strip", z.ZodTypeAny, {
|
|
2665
2837
|
id: string;
|
|
2666
|
-
role: "
|
|
2838
|
+
role: "Administrator" | "User";
|
|
2667
2839
|
email: string;
|
|
2668
2840
|
status: "active" | "inactive";
|
|
2669
|
-
date_created: string;
|
|
2670
2841
|
first_name: string;
|
|
2671
2842
|
last_name: string;
|
|
2672
|
-
|
|
2673
|
-
cluster_id: string;
|
|
2674
|
-
permissions: "readonly" | "readwrite";
|
|
2675
|
-
}[] | undefined;
|
|
2843
|
+
date_created: string;
|
|
2676
2844
|
}, {
|
|
2677
2845
|
id: string;
|
|
2678
|
-
role: "
|
|
2846
|
+
role: "Administrator" | "User";
|
|
2679
2847
|
email: string;
|
|
2680
2848
|
status: "active" | "inactive";
|
|
2681
|
-
date_created: string;
|
|
2682
2849
|
first_name: string;
|
|
2683
2850
|
last_name: string;
|
|
2684
|
-
|
|
2685
|
-
cluster_id: string;
|
|
2686
|
-
permissions: "readonly" | "readwrite";
|
|
2687
|
-
}[] | undefined;
|
|
2851
|
+
date_created: string;
|
|
2688
2852
|
}>, "many">;
|
|
2689
|
-
export declare const
|
|
2853
|
+
export declare const zCreateUserData: z.ZodObject<{
|
|
2690
2854
|
email: z.ZodString;
|
|
2691
2855
|
first_name: z.ZodString;
|
|
2692
2856
|
last_name: z.ZodString;
|
|
2693
|
-
|
|
2694
|
-
|
|
2695
|
-
|
|
2696
|
-
|
|
2697
|
-
cluster_permissions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2698
|
-
cluster_id: z.ZodString;
|
|
2699
|
-
permissions: z.ZodEnum<["readwrite", "readonly"]>;
|
|
2700
|
-
}, "strip", z.ZodTypeAny, {
|
|
2701
|
-
cluster_id: string;
|
|
2702
|
-
permissions: "readonly" | "readwrite";
|
|
2703
|
-
}, {
|
|
2704
|
-
cluster_id: string;
|
|
2705
|
-
permissions: "readonly" | "readwrite";
|
|
2706
|
-
}>, "many">>;
|
|
2857
|
+
code: z.ZodString;
|
|
2858
|
+
password: z.ZodString;
|
|
2859
|
+
status: z.ZodOptional<z.ZodEnum<["active", "inactive"]>>;
|
|
2860
|
+
role: z.ZodOptional<z.ZodEnum<["Administrator", "User"]>>;
|
|
2707
2861
|
}, "strip", z.ZodTypeAny, {
|
|
2708
|
-
|
|
2709
|
-
role: "User" | "Administrator";
|
|
2862
|
+
code: string;
|
|
2710
2863
|
email: string;
|
|
2711
|
-
status: "active" | "inactive";
|
|
2712
|
-
date_created: string;
|
|
2713
2864
|
first_name: string;
|
|
2714
2865
|
last_name: string;
|
|
2715
|
-
|
|
2716
|
-
|
|
2717
|
-
|
|
2718
|
-
}[] | undefined;
|
|
2866
|
+
password: string;
|
|
2867
|
+
role?: "Administrator" | "User" | undefined;
|
|
2868
|
+
status?: "active" | "inactive" | undefined;
|
|
2719
2869
|
}, {
|
|
2720
|
-
|
|
2721
|
-
role: "User" | "Administrator";
|
|
2870
|
+
code: string;
|
|
2722
2871
|
email: string;
|
|
2723
|
-
status: "active" | "inactive";
|
|
2724
|
-
date_created: string;
|
|
2725
2872
|
first_name: string;
|
|
2726
2873
|
last_name: string;
|
|
2727
|
-
|
|
2728
|
-
|
|
2729
|
-
|
|
2730
|
-
}[] | undefined;
|
|
2874
|
+
password: string;
|
|
2875
|
+
role?: "Administrator" | "User" | undefined;
|
|
2876
|
+
status?: "active" | "inactive" | undefined;
|
|
2731
2877
|
}>;
|
|
2732
|
-
|
|
2878
|
+
/**
|
|
2879
|
+
* Successfully created. Returns created user details.
|
|
2880
|
+
*/
|
|
2881
|
+
export declare const zCreateUserResponse: z.ZodObject<{
|
|
2733
2882
|
email: z.ZodString;
|
|
2734
2883
|
first_name: z.ZodString;
|
|
2735
2884
|
last_name: z.ZodString;
|
|
@@ -2737,42 +2886,31 @@ export declare const zDeleteUserResponse: z.ZodObject<{
|
|
|
2737
2886
|
status: z.ZodEnum<["active", "inactive"]>;
|
|
2738
2887
|
id: z.ZodString;
|
|
2739
2888
|
date_created: z.ZodString;
|
|
2740
|
-
cluster_permissions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2741
|
-
cluster_id: z.ZodString;
|
|
2742
|
-
permissions: z.ZodEnum<["readwrite", "readonly"]>;
|
|
2743
|
-
}, "strip", z.ZodTypeAny, {
|
|
2744
|
-
cluster_id: string;
|
|
2745
|
-
permissions: "readonly" | "readwrite";
|
|
2746
|
-
}, {
|
|
2747
|
-
cluster_id: string;
|
|
2748
|
-
permissions: "readonly" | "readwrite";
|
|
2749
|
-
}>, "many">>;
|
|
2750
2889
|
}, "strip", z.ZodTypeAny, {
|
|
2751
2890
|
id: string;
|
|
2752
|
-
role: "
|
|
2891
|
+
role: "Administrator" | "User";
|
|
2753
2892
|
email: string;
|
|
2754
2893
|
status: "active" | "inactive";
|
|
2755
|
-
date_created: string;
|
|
2756
2894
|
first_name: string;
|
|
2757
2895
|
last_name: string;
|
|
2758
|
-
|
|
2759
|
-
cluster_id: string;
|
|
2760
|
-
permissions: "readonly" | "readwrite";
|
|
2761
|
-
}[] | undefined;
|
|
2896
|
+
date_created: string;
|
|
2762
2897
|
}, {
|
|
2763
2898
|
id: string;
|
|
2764
|
-
role: "
|
|
2899
|
+
role: "Administrator" | "User";
|
|
2765
2900
|
email: string;
|
|
2766
2901
|
status: "active" | "inactive";
|
|
2767
|
-
date_created: string;
|
|
2768
2902
|
first_name: string;
|
|
2769
2903
|
last_name: string;
|
|
2770
|
-
|
|
2771
|
-
cluster_id: string;
|
|
2772
|
-
permissions: "readonly" | "readwrite";
|
|
2773
|
-
}[] | undefined;
|
|
2904
|
+
date_created: string;
|
|
2774
2905
|
}>;
|
|
2775
|
-
|
|
2906
|
+
/**
|
|
2907
|
+
* Unique user identifier. UUID v4 string in canonical form
|
|
2908
|
+
*/
|
|
2909
|
+
export declare const zDeleteUserParameterUserId: z.ZodString;
|
|
2910
|
+
/**
|
|
2911
|
+
* User profile information
|
|
2912
|
+
*/
|
|
2913
|
+
export declare const zDeleteUserResponse: z.ZodObject<{
|
|
2776
2914
|
email: z.ZodString;
|
|
2777
2915
|
first_name: z.ZodString;
|
|
2778
2916
|
last_name: z.ZodString;
|
|
@@ -2780,42 +2918,31 @@ export declare const zGetUserResponse: z.ZodObject<{
|
|
|
2780
2918
|
status: z.ZodEnum<["active", "inactive"]>;
|
|
2781
2919
|
id: z.ZodString;
|
|
2782
2920
|
date_created: z.ZodString;
|
|
2783
|
-
cluster_permissions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2784
|
-
cluster_id: z.ZodString;
|
|
2785
|
-
permissions: z.ZodEnum<["readwrite", "readonly"]>;
|
|
2786
|
-
}, "strip", z.ZodTypeAny, {
|
|
2787
|
-
cluster_id: string;
|
|
2788
|
-
permissions: "readonly" | "readwrite";
|
|
2789
|
-
}, {
|
|
2790
|
-
cluster_id: string;
|
|
2791
|
-
permissions: "readonly" | "readwrite";
|
|
2792
|
-
}>, "many">>;
|
|
2793
2921
|
}, "strip", z.ZodTypeAny, {
|
|
2794
2922
|
id: string;
|
|
2795
|
-
role: "
|
|
2923
|
+
role: "Administrator" | "User";
|
|
2796
2924
|
email: string;
|
|
2797
2925
|
status: "active" | "inactive";
|
|
2798
|
-
date_created: string;
|
|
2799
2926
|
first_name: string;
|
|
2800
2927
|
last_name: string;
|
|
2801
|
-
|
|
2802
|
-
cluster_id: string;
|
|
2803
|
-
permissions: "readonly" | "readwrite";
|
|
2804
|
-
}[] | undefined;
|
|
2928
|
+
date_created: string;
|
|
2805
2929
|
}, {
|
|
2806
2930
|
id: string;
|
|
2807
|
-
role: "
|
|
2931
|
+
role: "Administrator" | "User";
|
|
2808
2932
|
email: string;
|
|
2809
2933
|
status: "active" | "inactive";
|
|
2810
|
-
date_created: string;
|
|
2811
2934
|
first_name: string;
|
|
2812
2935
|
last_name: string;
|
|
2813
|
-
|
|
2814
|
-
cluster_id: string;
|
|
2815
|
-
permissions: "readonly" | "readwrite";
|
|
2816
|
-
}[] | undefined;
|
|
2936
|
+
date_created: string;
|
|
2817
2937
|
}>;
|
|
2818
|
-
|
|
2938
|
+
/**
|
|
2939
|
+
* Unique user identifier. UUID v4 string in canonical form
|
|
2940
|
+
*/
|
|
2941
|
+
export declare const zGetUserParameterUserId: z.ZodString;
|
|
2942
|
+
/**
|
|
2943
|
+
* User profile information
|
|
2944
|
+
*/
|
|
2945
|
+
export declare const zGetUserResponse: z.ZodObject<{
|
|
2819
2946
|
email: z.ZodString;
|
|
2820
2947
|
first_name: z.ZodString;
|
|
2821
2948
|
last_name: z.ZodString;
|
|
@@ -2823,85 +2950,50 @@ export declare const zUpdateUserResponse: z.ZodObject<{
|
|
|
2823
2950
|
status: z.ZodEnum<["active", "inactive"]>;
|
|
2824
2951
|
id: z.ZodString;
|
|
2825
2952
|
date_created: z.ZodString;
|
|
2826
|
-
cluster_permissions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2827
|
-
cluster_id: z.ZodString;
|
|
2828
|
-
permissions: z.ZodEnum<["readwrite", "readonly"]>;
|
|
2829
|
-
}, "strip", z.ZodTypeAny, {
|
|
2830
|
-
cluster_id: string;
|
|
2831
|
-
permissions: "readonly" | "readwrite";
|
|
2832
|
-
}, {
|
|
2833
|
-
cluster_id: string;
|
|
2834
|
-
permissions: "readonly" | "readwrite";
|
|
2835
|
-
}>, "many">>;
|
|
2836
2953
|
}, "strip", z.ZodTypeAny, {
|
|
2837
2954
|
id: string;
|
|
2838
|
-
role: "
|
|
2955
|
+
role: "Administrator" | "User";
|
|
2839
2956
|
email: string;
|
|
2840
2957
|
status: "active" | "inactive";
|
|
2841
|
-
date_created: string;
|
|
2842
2958
|
first_name: string;
|
|
2843
2959
|
last_name: string;
|
|
2844
|
-
|
|
2845
|
-
cluster_id: string;
|
|
2846
|
-
permissions: "readonly" | "readwrite";
|
|
2847
|
-
}[] | undefined;
|
|
2960
|
+
date_created: string;
|
|
2848
2961
|
}, {
|
|
2849
2962
|
id: string;
|
|
2850
|
-
role: "
|
|
2963
|
+
role: "Administrator" | "User";
|
|
2851
2964
|
email: string;
|
|
2852
2965
|
status: "active" | "inactive";
|
|
2853
|
-
date_created: string;
|
|
2854
2966
|
first_name: string;
|
|
2855
2967
|
last_name: string;
|
|
2856
|
-
|
|
2857
|
-
cluster_id: string;
|
|
2858
|
-
permissions: "readonly" | "readwrite";
|
|
2859
|
-
}[] | undefined;
|
|
2968
|
+
date_created: string;
|
|
2860
2969
|
}>;
|
|
2861
|
-
export declare const
|
|
2862
|
-
email: z.ZodString
|
|
2863
|
-
first_name: z.ZodString
|
|
2864
|
-
last_name: z.ZodString
|
|
2865
|
-
role: z.ZodEnum<["Administrator", "User"]
|
|
2866
|
-
status: z.ZodEnum<["active", "inactive"]
|
|
2867
|
-
id: z.ZodString;
|
|
2868
|
-
date_created: z.ZodString;
|
|
2869
|
-
cluster_permissions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2870
|
-
cluster_id: z.ZodString;
|
|
2871
|
-
permissions: z.ZodEnum<["readwrite", "readonly"]>;
|
|
2872
|
-
}, "strip", z.ZodTypeAny, {
|
|
2873
|
-
cluster_id: string;
|
|
2874
|
-
permissions: "readonly" | "readwrite";
|
|
2875
|
-
}, {
|
|
2876
|
-
cluster_id: string;
|
|
2877
|
-
permissions: "readonly" | "readwrite";
|
|
2878
|
-
}>, "many">>;
|
|
2970
|
+
export declare const zUpdateUserData: z.ZodObject<{
|
|
2971
|
+
email: z.ZodOptional<z.ZodString>;
|
|
2972
|
+
first_name: z.ZodOptional<z.ZodString>;
|
|
2973
|
+
last_name: z.ZodOptional<z.ZodString>;
|
|
2974
|
+
role: z.ZodOptional<z.ZodEnum<["Administrator", "User"]>>;
|
|
2975
|
+
status: z.ZodOptional<z.ZodEnum<["active", "inactive"]>>;
|
|
2879
2976
|
}, "strip", z.ZodTypeAny, {
|
|
2880
|
-
|
|
2881
|
-
|
|
2882
|
-
|
|
2883
|
-
|
|
2884
|
-
|
|
2885
|
-
first_name: string;
|
|
2886
|
-
last_name: string;
|
|
2887
|
-
cluster_permissions?: {
|
|
2888
|
-
cluster_id: string;
|
|
2889
|
-
permissions: "readonly" | "readwrite";
|
|
2890
|
-
}[] | undefined;
|
|
2977
|
+
role?: "Administrator" | "User" | undefined;
|
|
2978
|
+
email?: string | undefined;
|
|
2979
|
+
status?: "active" | "inactive" | undefined;
|
|
2980
|
+
first_name?: string | undefined;
|
|
2981
|
+
last_name?: string | undefined;
|
|
2891
2982
|
}, {
|
|
2892
|
-
|
|
2893
|
-
|
|
2894
|
-
|
|
2895
|
-
|
|
2896
|
-
|
|
2897
|
-
first_name: string;
|
|
2898
|
-
last_name: string;
|
|
2899
|
-
cluster_permissions?: {
|
|
2900
|
-
cluster_id: string;
|
|
2901
|
-
permissions: "readonly" | "readwrite";
|
|
2902
|
-
}[] | undefined;
|
|
2983
|
+
role?: "Administrator" | "User" | undefined;
|
|
2984
|
+
email?: string | undefined;
|
|
2985
|
+
status?: "active" | "inactive" | undefined;
|
|
2986
|
+
first_name?: string | undefined;
|
|
2987
|
+
last_name?: string | undefined;
|
|
2903
2988
|
}>;
|
|
2904
|
-
|
|
2989
|
+
/**
|
|
2990
|
+
* Unique user identifier. UUID v4 string in canonical form
|
|
2991
|
+
*/
|
|
2992
|
+
export declare const zUpdateUserParameterUserId: z.ZodString;
|
|
2993
|
+
/**
|
|
2994
|
+
* Successfully created. Returns created user details.
|
|
2995
|
+
*/
|
|
2996
|
+
export declare const zUpdateUserResponse: z.ZodObject<{
|
|
2905
2997
|
email: z.ZodString;
|
|
2906
2998
|
first_name: z.ZodString;
|
|
2907
2999
|
last_name: z.ZodString;
|
|
@@ -2909,39 +3001,21 @@ export declare const zSetClusterPermissionsResponse: z.ZodObject<{
|
|
|
2909
3001
|
status: z.ZodEnum<["active", "inactive"]>;
|
|
2910
3002
|
id: z.ZodString;
|
|
2911
3003
|
date_created: z.ZodString;
|
|
2912
|
-
cluster_permissions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2913
|
-
cluster_id: z.ZodString;
|
|
2914
|
-
permissions: z.ZodEnum<["readwrite", "readonly"]>;
|
|
2915
|
-
}, "strip", z.ZodTypeAny, {
|
|
2916
|
-
cluster_id: string;
|
|
2917
|
-
permissions: "readonly" | "readwrite";
|
|
2918
|
-
}, {
|
|
2919
|
-
cluster_id: string;
|
|
2920
|
-
permissions: "readonly" | "readwrite";
|
|
2921
|
-
}>, "many">>;
|
|
2922
3004
|
}, "strip", z.ZodTypeAny, {
|
|
2923
3005
|
id: string;
|
|
2924
|
-
role: "
|
|
3006
|
+
role: "Administrator" | "User";
|
|
2925
3007
|
email: string;
|
|
2926
3008
|
status: "active" | "inactive";
|
|
2927
|
-
date_created: string;
|
|
2928
3009
|
first_name: string;
|
|
2929
3010
|
last_name: string;
|
|
2930
|
-
|
|
2931
|
-
cluster_id: string;
|
|
2932
|
-
permissions: "readonly" | "readwrite";
|
|
2933
|
-
}[] | undefined;
|
|
3011
|
+
date_created: string;
|
|
2934
3012
|
}, {
|
|
2935
3013
|
id: string;
|
|
2936
|
-
role: "
|
|
3014
|
+
role: "Administrator" | "User";
|
|
2937
3015
|
email: string;
|
|
2938
3016
|
status: "active" | "inactive";
|
|
2939
|
-
date_created: string;
|
|
2940
3017
|
first_name: string;
|
|
2941
3018
|
last_name: string;
|
|
2942
|
-
|
|
2943
|
-
cluster_id: string;
|
|
2944
|
-
permissions: "readonly" | "readwrite";
|
|
2945
|
-
}[] | undefined;
|
|
3019
|
+
date_created: string;
|
|
2946
3020
|
}>;
|
|
2947
3021
|
//# sourceMappingURL=zod.gen.d.ts.map
|