@cloudfleet/sdk 0.0.1-4ffe368 → 0.0.1-5cfe846
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 -724
- package/dist/types.gen.d.ts.map +1 -1
- package/dist/zod.gen.d.ts +1315 -1392
- package/dist/zod.gen.d.ts.map +1 -1
- package/dist/zod.gen.js +551 -205
- 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,555 @@ 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, {
|
|
1837
|
+
id: string;
|
|
1838
|
+
limits?: {
|
|
1839
|
+
cpu: number;
|
|
1840
|
+
} | undefined;
|
|
1841
|
+
gcp?: {
|
|
1842
|
+
project: string;
|
|
1843
|
+
enabled: boolean;
|
|
1844
|
+
} | undefined;
|
|
1845
|
+
hetzner?: {
|
|
1846
|
+
apiKey: string;
|
|
1847
|
+
enabled: boolean;
|
|
1848
|
+
} | undefined;
|
|
1849
|
+
aws?: {
|
|
1850
|
+
controllerRoleArn: string;
|
|
1851
|
+
enabled: boolean;
|
|
1852
|
+
} | undefined;
|
|
1853
|
+
}, {
|
|
1854
|
+
id: string;
|
|
1855
|
+
limits?: {
|
|
1856
|
+
cpu: number;
|
|
1857
|
+
} | undefined;
|
|
1858
|
+
gcp?: {
|
|
1859
|
+
project: string;
|
|
1860
|
+
enabled?: boolean | undefined;
|
|
1861
|
+
} | undefined;
|
|
1862
|
+
hetzner?: {
|
|
1863
|
+
apiKey: string;
|
|
1864
|
+
enabled?: boolean | undefined;
|
|
1865
|
+
} | undefined;
|
|
1866
|
+
aws?: {
|
|
1867
|
+
controllerRoleArn: string;
|
|
1868
|
+
enabled?: boolean | undefined;
|
|
1869
|
+
} | undefined;
|
|
1870
|
+
}>, "many">;
|
|
1871
|
+
export declare const zCreateFleetData: z.ZodObject<{
|
|
1872
|
+
limits: z.ZodOptional<z.ZodObject<{
|
|
1873
|
+
cpu: z.ZodNumber;
|
|
1874
|
+
}, "strip", z.ZodTypeAny, {
|
|
1875
|
+
cpu: number;
|
|
1876
|
+
}, {
|
|
1877
|
+
cpu: number;
|
|
1878
|
+
}>>;
|
|
1879
|
+
gcp: z.ZodOptional<z.ZodObject<{
|
|
1880
|
+
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1881
|
+
project: z.ZodString;
|
|
1882
|
+
}, "strip", z.ZodTypeAny, {
|
|
1883
|
+
project: string;
|
|
1884
|
+
enabled: boolean;
|
|
1885
|
+
}, {
|
|
1886
|
+
project: string;
|
|
1887
|
+
enabled?: boolean | undefined;
|
|
1888
|
+
}>>;
|
|
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<{
|
|
1985
|
+
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1986
|
+
project: z.ZodString;
|
|
1987
|
+
}, "strip", z.ZodTypeAny, {
|
|
1988
|
+
project: string;
|
|
1989
|
+
enabled: boolean;
|
|
1990
|
+
}, {
|
|
1991
|
+
project: string;
|
|
1992
|
+
enabled?: boolean | undefined;
|
|
1993
|
+
}>>;
|
|
1994
|
+
hetzner: z.ZodOptional<z.ZodObject<{
|
|
1995
|
+
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1996
|
+
apiKey: z.ZodString;
|
|
1997
|
+
}, "strip", z.ZodTypeAny, {
|
|
1998
|
+
apiKey: string;
|
|
1999
|
+
enabled: boolean;
|
|
2000
|
+
}, {
|
|
2001
|
+
apiKey: string;
|
|
2002
|
+
enabled?: boolean | undefined;
|
|
2003
|
+
}>>;
|
|
2004
|
+
aws: z.ZodOptional<z.ZodObject<{
|
|
2005
|
+
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
2006
|
+
controllerRoleArn: z.ZodString;
|
|
2007
|
+
}, "strip", z.ZodTypeAny, {
|
|
2008
|
+
controllerRoleArn: string;
|
|
2009
|
+
enabled: boolean;
|
|
2010
|
+
}, {
|
|
2011
|
+
controllerRoleArn: string;
|
|
2012
|
+
enabled?: boolean | undefined;
|
|
2013
|
+
}>>;
|
|
2014
|
+
id: z.ZodString;
|
|
2015
|
+
}, "strip", z.ZodTypeAny, {
|
|
1713
2016
|
id: string;
|
|
1714
2017
|
limits?: {
|
|
1715
2018
|
cpu: number;
|
|
@@ -1719,18 +2022,14 @@ export declare const zListFleetsResponse: z.ZodArray<z.ZodObject<{
|
|
|
1719
2022
|
enabled: boolean;
|
|
1720
2023
|
} | undefined;
|
|
1721
2024
|
hetzner?: {
|
|
2025
|
+
apiKey: string;
|
|
1722
2026
|
enabled: boolean;
|
|
1723
|
-
apiKey?: string | undefined;
|
|
1724
|
-
} | {
|
|
1725
|
-
enabled: boolean;
|
|
1726
|
-
apiKey?: string | undefined;
|
|
1727
2027
|
} | undefined;
|
|
1728
2028
|
aws?: {
|
|
1729
2029
|
controllerRoleArn: string;
|
|
1730
2030
|
enabled: boolean;
|
|
1731
2031
|
} | undefined;
|
|
1732
2032
|
}, {
|
|
1733
|
-
type: "connected" | "managed";
|
|
1734
2033
|
id: string;
|
|
1735
2034
|
limits?: {
|
|
1736
2035
|
cpu: number;
|
|
@@ -1740,20 +2039,15 @@ export declare const zListFleetsResponse: z.ZodArray<z.ZodObject<{
|
|
|
1740
2039
|
enabled?: boolean | undefined;
|
|
1741
2040
|
} | undefined;
|
|
1742
2041
|
hetzner?: {
|
|
1743
|
-
apiKey
|
|
1744
|
-
enabled?: boolean | undefined;
|
|
1745
|
-
} | {
|
|
1746
|
-
apiKey?: string | undefined;
|
|
2042
|
+
apiKey: string;
|
|
1747
2043
|
enabled?: boolean | undefined;
|
|
1748
2044
|
} | undefined;
|
|
1749
2045
|
aws?: {
|
|
1750
2046
|
controllerRoleArn: string;
|
|
1751
2047
|
enabled?: boolean | undefined;
|
|
1752
2048
|
} | undefined;
|
|
1753
|
-
}
|
|
1754
|
-
export declare const
|
|
1755
|
-
export declare const zDeleteFleetResponse: z.ZodString;
|
|
1756
|
-
export declare const zGetFleetResponse: z.ZodObject<{
|
|
2049
|
+
}>;
|
|
2050
|
+
export declare const zUpdateFleetData: z.ZodObject<{
|
|
1757
2051
|
limits: z.ZodOptional<z.ZodObject<{
|
|
1758
2052
|
cpu: z.ZodNumber;
|
|
1759
2053
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1771,25 +2065,16 @@ export declare const zGetFleetResponse: z.ZodObject<{
|
|
|
1771
2065
|
project: string;
|
|
1772
2066
|
enabled?: boolean | undefined;
|
|
1773
2067
|
}>>;
|
|
1774
|
-
hetzner: z.ZodOptional<z.
|
|
1775
|
-
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1776
|
-
apiKey: z.ZodOptional<z.ZodString>;
|
|
1777
|
-
}, "strip", z.ZodTypeAny, {
|
|
1778
|
-
enabled: boolean;
|
|
1779
|
-
apiKey?: string | undefined;
|
|
1780
|
-
}, {
|
|
1781
|
-
apiKey?: string | undefined;
|
|
1782
|
-
enabled?: boolean | undefined;
|
|
1783
|
-
}>, z.ZodObject<{
|
|
1784
|
-
apiKey: z.ZodOptional<z.ZodString>;
|
|
2068
|
+
hetzner: z.ZodOptional<z.ZodObject<{
|
|
1785
2069
|
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
2070
|
+
apiKey: z.ZodString;
|
|
1786
2071
|
}, "strip", z.ZodTypeAny, {
|
|
2072
|
+
apiKey: string;
|
|
1787
2073
|
enabled: boolean;
|
|
1788
|
-
apiKey?: string | undefined;
|
|
1789
2074
|
}, {
|
|
1790
|
-
apiKey
|
|
2075
|
+
apiKey: string;
|
|
1791
2076
|
enabled?: boolean | undefined;
|
|
1792
|
-
}
|
|
2077
|
+
}>>;
|
|
1793
2078
|
aws: z.ZodOptional<z.ZodObject<{
|
|
1794
2079
|
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1795
2080
|
controllerRoleArn: z.ZodString;
|
|
@@ -1800,11 +2085,7 @@ export declare const zGetFleetResponse: z.ZodObject<{
|
|
|
1800
2085
|
controllerRoleArn: string;
|
|
1801
2086
|
enabled?: boolean | undefined;
|
|
1802
2087
|
}>>;
|
|
1803
|
-
id: z.ZodString;
|
|
1804
|
-
type: z.ZodEnum<["managed", "connected"]>;
|
|
1805
2088
|
}, "strip", z.ZodTypeAny, {
|
|
1806
|
-
type: "connected" | "managed";
|
|
1807
|
-
id: string;
|
|
1808
2089
|
limits?: {
|
|
1809
2090
|
cpu: number;
|
|
1810
2091
|
} | undefined;
|
|
@@ -1813,19 +2094,14 @@ export declare const zGetFleetResponse: z.ZodObject<{
|
|
|
1813
2094
|
enabled: boolean;
|
|
1814
2095
|
} | undefined;
|
|
1815
2096
|
hetzner?: {
|
|
2097
|
+
apiKey: string;
|
|
1816
2098
|
enabled: boolean;
|
|
1817
|
-
apiKey?: string | undefined;
|
|
1818
|
-
} | {
|
|
1819
|
-
enabled: boolean;
|
|
1820
|
-
apiKey?: string | undefined;
|
|
1821
2099
|
} | undefined;
|
|
1822
2100
|
aws?: {
|
|
1823
2101
|
controllerRoleArn: string;
|
|
1824
2102
|
enabled: boolean;
|
|
1825
2103
|
} | undefined;
|
|
1826
2104
|
}, {
|
|
1827
|
-
type: "connected" | "managed";
|
|
1828
|
-
id: string;
|
|
1829
2105
|
limits?: {
|
|
1830
2106
|
cpu: number;
|
|
1831
2107
|
} | undefined;
|
|
@@ -1834,10 +2110,7 @@ export declare const zGetFleetResponse: z.ZodObject<{
|
|
|
1834
2110
|
enabled?: boolean | undefined;
|
|
1835
2111
|
} | undefined;
|
|
1836
2112
|
hetzner?: {
|
|
1837
|
-
apiKey
|
|
1838
|
-
enabled?: boolean | undefined;
|
|
1839
|
-
} | {
|
|
1840
|
-
apiKey?: string | undefined;
|
|
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;
|
|
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;
|
|
1930
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
|
-
|
|
2353
|
+
ready?: boolean | undefined;
|
|
2354
|
+
region?: "staging" | "northamerica-central-1" | "europe-central-1a" | undefined;
|
|
2004
2355
|
version_channel?: string | undefined;
|
|
2005
|
-
certificate_ca?: string | undefined;
|
|
2006
2356
|
version_current?: string | undefined;
|
|
2007
2357
|
created_at?: string | undefined;
|
|
2008
2358
|
updated_at?: string | undefined;
|
|
2009
|
-
|
|
2359
|
+
endpoint?: string | undefined;
|
|
2360
|
+
certificate_ca?: string | undefined;
|
|
2010
2361
|
}>;
|
|
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, {}, {}>;
|
|
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,26 +2381,17 @@ export declare const zListInvitesResponse: z.ZodArray<z.ZodObject<{
|
|
|
2198
2381
|
email?: string | undefined;
|
|
2199
2382
|
organization_id?: string | undefined;
|
|
2200
2383
|
}>, "many">;
|
|
2201
|
-
export declare const
|
|
2202
|
-
id: z.ZodOptional<z.ZodString>;
|
|
2203
|
-
organization_id: z.ZodOptional<z.ZodString>;
|
|
2204
|
-
date_created: z.ZodString;
|
|
2384
|
+
export declare const zCreateInviteData: z.ZodObject<{
|
|
2205
2385
|
email: z.ZodOptional<z.ZodString>;
|
|
2206
|
-
code: z.ZodOptional<z.ZodString>;
|
|
2207
2386
|
}, "strip", z.ZodTypeAny, {
|
|
2208
|
-
date_created: string;
|
|
2209
|
-
code?: string | undefined;
|
|
2210
|
-
id?: string | undefined;
|
|
2211
2387
|
email?: string | undefined;
|
|
2212
|
-
organization_id?: string | undefined;
|
|
2213
2388
|
}, {
|
|
2214
|
-
date_created: string;
|
|
2215
|
-
code?: string | undefined;
|
|
2216
|
-
id?: string | undefined;
|
|
2217
2389
|
email?: string | undefined;
|
|
2218
|
-
organization_id?: string | undefined;
|
|
2219
2390
|
}>;
|
|
2220
|
-
|
|
2391
|
+
/**
|
|
2392
|
+
* Successfully created. Returns created invite details.
|
|
2393
|
+
*/
|
|
2394
|
+
export declare const zCreateInviteResponse: z.ZodObject<{
|
|
2221
2395
|
id: z.ZodOptional<z.ZodString>;
|
|
2222
2396
|
organization_id: z.ZodOptional<z.ZodString>;
|
|
2223
2397
|
date_created: z.ZodString;
|
|
@@ -2236,345 +2410,154 @@ export declare const zGetInviteResponse: z.ZodObject<{
|
|
|
2236
2410
|
email?: string | undefined;
|
|
2237
2411
|
organization_id?: string | undefined;
|
|
2238
2412
|
}>;
|
|
2239
|
-
|
|
2240
|
-
|
|
2241
|
-
|
|
2242
|
-
|
|
2243
|
-
|
|
2244
|
-
|
|
2245
|
-
|
|
2246
|
-
|
|
2247
|
-
|
|
2248
|
-
|
|
2249
|
-
|
|
2250
|
-
|
|
2251
|
-
|
|
2252
|
-
|
|
2253
|
-
|
|
2254
|
-
|
|
2255
|
-
|
|
2256
|
-
|
|
2257
|
-
|
|
2258
|
-
|
|
2259
|
-
|
|
2260
|
-
|
|
2261
|
-
|
|
2262
|
-
|
|
2263
|
-
|
|
2264
|
-
email: string;
|
|
2265
|
-
first_name: string;
|
|
2266
|
-
last_name: string;
|
|
2267
|
-
state?: string | undefined;
|
|
2268
|
-
country?: string | undefined;
|
|
2269
|
-
address1?: string | undefined;
|
|
2270
|
-
address2?: string | undefined;
|
|
2271
|
-
postalCode?: string | undefined;
|
|
2272
|
-
city?: string | undefined;
|
|
2273
|
-
phone?: string | undefined;
|
|
2274
|
-
}>;
|
|
2275
|
-
id: z.ZodString;
|
|
2276
|
-
date_created: z.ZodString;
|
|
2277
|
-
quota: z.ZodObject<{
|
|
2278
|
-
basic_clusters_max: z.ZodNumber;
|
|
2279
|
-
basic_clusters_available: z.ZodNumber;
|
|
2280
|
-
pro_clusters_max: z.ZodNumber;
|
|
2281
|
-
pro_clusters_available: z.ZodNumber;
|
|
2282
|
-
fleets_max: z.ZodNumber;
|
|
2283
|
-
managed_fleets_cpu_max: z.ZodNumber;
|
|
2284
|
-
cluster_tiers: z.ZodArray<z.ZodString, "many">;
|
|
2285
|
-
regions: z.ZodArray<z.ZodString, "many">;
|
|
2286
|
-
versions: z.ZodArray<z.ZodObject<{
|
|
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">;
|
|
2296
|
-
}, "strip", z.ZodTypeAny, {
|
|
2297
|
-
versions: {
|
|
2298
|
-
id: string;
|
|
2299
|
-
label: string;
|
|
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[];
|
|
2309
|
-
}, {
|
|
2310
|
-
versions: {
|
|
2311
|
-
id: string;
|
|
2312
|
-
label: string;
|
|
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"]>;
|
|
2325
|
-
}, "strip", z.ZodTypeAny, {
|
|
2326
|
-
name: string;
|
|
2327
|
-
id: string;
|
|
2328
|
-
status: "active" | "closed" | "suspended";
|
|
2329
|
-
date_created: string;
|
|
2330
|
-
contactInfo: {
|
|
2331
|
-
email: string;
|
|
2332
|
-
first_name: string;
|
|
2333
|
-
last_name: string;
|
|
2334
|
-
state?: string | undefined;
|
|
2335
|
-
country?: string | undefined;
|
|
2336
|
-
address1?: string | undefined;
|
|
2337
|
-
address2?: string | undefined;
|
|
2338
|
-
postalCode?: string | undefined;
|
|
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")[];
|
|
2357
|
-
}, {
|
|
2358
|
-
name: string;
|
|
2359
|
-
id: string;
|
|
2360
|
-
status: "active" | "closed" | "suspended";
|
|
2361
|
-
date_created: string;
|
|
2362
|
-
contactInfo: {
|
|
2363
|
-
email: string;
|
|
2364
|
-
first_name: string;
|
|
2365
|
-
last_name: string;
|
|
2366
|
-
state?: string | undefined;
|
|
2367
|
-
country?: string | undefined;
|
|
2368
|
-
address1?: string | undefined;
|
|
2369
|
-
address2?: string | undefined;
|
|
2370
|
-
postalCode?: string | undefined;
|
|
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")[];
|
|
2413
|
+
/**
|
|
2414
|
+
* Invitation code
|
|
2415
|
+
*/
|
|
2416
|
+
export declare const zGetInviteParameterCode: z.ZodString;
|
|
2417
|
+
/**
|
|
2418
|
+
* Returns a single object containing invite details.
|
|
2419
|
+
*/
|
|
2420
|
+
export declare const zGetInviteResponse: z.ZodObject<{
|
|
2421
|
+
id: z.ZodOptional<z.ZodString>;
|
|
2422
|
+
organization_id: z.ZodOptional<z.ZodString>;
|
|
2423
|
+
date_created: z.ZodString;
|
|
2424
|
+
email: z.ZodOptional<z.ZodString>;
|
|
2425
|
+
code: z.ZodOptional<z.ZodString>;
|
|
2426
|
+
}, "strip", z.ZodTypeAny, {
|
|
2427
|
+
date_created: string;
|
|
2428
|
+
code?: string | undefined;
|
|
2429
|
+
id?: string | undefined;
|
|
2430
|
+
email?: string | undefined;
|
|
2431
|
+
organization_id?: string | undefined;
|
|
2432
|
+
}, {
|
|
2433
|
+
date_created: string;
|
|
2434
|
+
code?: string | undefined;
|
|
2435
|
+
id?: string | undefined;
|
|
2436
|
+
email?: string | undefined;
|
|
2437
|
+
organization_id?: string | undefined;
|
|
2389
2438
|
}>;
|
|
2390
|
-
|
|
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;
|
|
2391
2448
|
name: z.ZodString;
|
|
2392
|
-
|
|
2393
|
-
|
|
2394
|
-
|
|
2395
|
-
|
|
2396
|
-
|
|
2397
|
-
|
|
2398
|
-
|
|
2399
|
-
|
|
2400
|
-
|
|
2401
|
-
|
|
2402
|
-
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;
|
|
2403
2459
|
}, "strip", z.ZodTypeAny, {
|
|
2404
|
-
|
|
2405
|
-
|
|
2406
|
-
|
|
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;
|
|
2460
|
+
version: string;
|
|
2461
|
+
schema: string;
|
|
2462
|
+
placeholder: string;
|
|
2414
2463
|
}, {
|
|
2415
|
-
|
|
2416
|
-
|
|
2417
|
-
|
|
2418
|
-
|
|
2419
|
-
|
|
2420
|
-
|
|
2421
|
-
|
|
2422
|
-
|
|
2423
|
-
|
|
2424
|
-
|
|
2425
|
-
|
|
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<{
|
|
2426
2505
|
id: z.ZodString;
|
|
2427
|
-
|
|
2428
|
-
|
|
2429
|
-
|
|
2430
|
-
|
|
2431
|
-
|
|
2432
|
-
|
|
2433
|
-
|
|
2434
|
-
|
|
2435
|
-
|
|
2436
|
-
|
|
2437
|
-
|
|
2438
|
-
id: z.ZodString;
|
|
2439
|
-
label: z.ZodString;
|
|
2440
|
-
}, "strip", z.ZodTypeAny, {
|
|
2441
|
-
id: string;
|
|
2442
|
-
label: string;
|
|
2443
|
-
}, {
|
|
2444
|
-
id: string;
|
|
2445
|
-
label: string;
|
|
2446
|
-
}>, "many">;
|
|
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;
|
|
2447
2517
|
}, "strip", z.ZodTypeAny, {
|
|
2448
|
-
|
|
2449
|
-
|
|
2450
|
-
|
|
2451
|
-
}[];
|
|
2452
|
-
basic_clusters_max: number;
|
|
2453
|
-
basic_clusters_available: number;
|
|
2454
|
-
pro_clusters_max: number;
|
|
2455
|
-
pro_clusters_available: number;
|
|
2456
|
-
fleets_max: number;
|
|
2457
|
-
managed_fleets_cpu_max: number;
|
|
2458
|
-
cluster_tiers: string[];
|
|
2459
|
-
regions: string[];
|
|
2518
|
+
version: string;
|
|
2519
|
+
schema: string;
|
|
2520
|
+
placeholder: string;
|
|
2460
2521
|
}, {
|
|
2461
|
-
|
|
2462
|
-
|
|
2463
|
-
|
|
2464
|
-
|
|
2465
|
-
basic_clusters_max: number;
|
|
2466
|
-
basic_clusters_available: number;
|
|
2467
|
-
pro_clusters_max: number;
|
|
2468
|
-
pro_clusters_available: number;
|
|
2469
|
-
fleets_max: number;
|
|
2470
|
-
managed_fleets_cpu_max: number;
|
|
2471
|
-
cluster_tiers: string[];
|
|
2472
|
-
regions: string[];
|
|
2473
|
-
}>;
|
|
2474
|
-
pending_actions: z.ZodArray<z.ZodEnum<["signup-billing-address", "signup-payment-method", "signup-invite-team", "signup-create-cluster"]>, "many">;
|
|
2475
|
-
status: z.ZodEnum<["active", "closed", "suspended"]>;
|
|
2522
|
+
version: string;
|
|
2523
|
+
schema: string;
|
|
2524
|
+
placeholder: string;
|
|
2525
|
+
}>, "many">;
|
|
2476
2526
|
}, "strip", z.ZodTypeAny, {
|
|
2477
2527
|
name: string;
|
|
2478
2528
|
id: string;
|
|
2479
|
-
|
|
2480
|
-
|
|
2481
|
-
|
|
2482
|
-
|
|
2483
|
-
|
|
2484
|
-
|
|
2485
|
-
|
|
2486
|
-
|
|
2487
|
-
|
|
2488
|
-
|
|
2489
|
-
|
|
2490
|
-
city?: string | undefined;
|
|
2491
|
-
phone?: string | undefined;
|
|
2492
|
-
};
|
|
2493
|
-
quota: {
|
|
2494
|
-
versions: {
|
|
2495
|
-
id: string;
|
|
2496
|
-
label: string;
|
|
2497
|
-
}[];
|
|
2498
|
-
basic_clusters_max: number;
|
|
2499
|
-
basic_clusters_available: number;
|
|
2500
|
-
pro_clusters_max: number;
|
|
2501
|
-
pro_clusters_available: number;
|
|
2502
|
-
fleets_max: number;
|
|
2503
|
-
managed_fleets_cpu_max: number;
|
|
2504
|
-
cluster_tiers: string[];
|
|
2505
|
-
regions: string[];
|
|
2506
|
-
};
|
|
2507
|
-
pending_actions: ("signup-payment-method" | "signup-billing-address" | "signup-invite-team" | "signup-create-cluster")[];
|
|
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
|
+
}[];
|
|
2508
2540
|
}, {
|
|
2509
2541
|
name: string;
|
|
2510
2542
|
id: string;
|
|
2511
|
-
|
|
2512
|
-
|
|
2513
|
-
|
|
2514
|
-
|
|
2515
|
-
|
|
2516
|
-
|
|
2517
|
-
|
|
2518
|
-
|
|
2519
|
-
|
|
2520
|
-
|
|
2521
|
-
|
|
2522
|
-
city?: string | undefined;
|
|
2523
|
-
phone?: string | undefined;
|
|
2524
|
-
};
|
|
2525
|
-
quota: {
|
|
2526
|
-
versions: {
|
|
2527
|
-
id: string;
|
|
2528
|
-
label: string;
|
|
2529
|
-
}[];
|
|
2530
|
-
basic_clusters_max: number;
|
|
2531
|
-
basic_clusters_available: number;
|
|
2532
|
-
pro_clusters_max: number;
|
|
2533
|
-
pro_clusters_available: number;
|
|
2534
|
-
fleets_max: number;
|
|
2535
|
-
managed_fleets_cpu_max: number;
|
|
2536
|
-
cluster_tiers: string[];
|
|
2537
|
-
regions: string[];
|
|
2538
|
-
};
|
|
2539
|
-
pending_actions: ("signup-payment-method" | "signup-billing-address" | "signup-invite-team" | "signup-create-cluster")[];
|
|
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
|
+
}[];
|
|
2540
2554
|
}>;
|
|
2541
|
-
|
|
2542
|
-
|
|
2543
|
-
|
|
2544
|
-
|
|
2545
|
-
address2: z.ZodOptional<z.ZodString>;
|
|
2546
|
-
postalCode: z.ZodOptional<z.ZodString>;
|
|
2547
|
-
city: z.ZodOptional<z.ZodString>;
|
|
2548
|
-
state: z.ZodOptional<z.ZodString>;
|
|
2549
|
-
country: z.ZodOptional<z.ZodString>;
|
|
2550
|
-
phone: z.ZodOptional<z.ZodString>;
|
|
2551
|
-
email: z.ZodString;
|
|
2552
|
-
first_name: z.ZodString;
|
|
2553
|
-
last_name: z.ZodString;
|
|
2554
|
-
}, "strip", z.ZodTypeAny, {
|
|
2555
|
-
email: string;
|
|
2556
|
-
first_name: string;
|
|
2557
|
-
last_name: string;
|
|
2558
|
-
state?: string | undefined;
|
|
2559
|
-
country?: string | undefined;
|
|
2560
|
-
address1?: string | undefined;
|
|
2561
|
-
address2?: string | undefined;
|
|
2562
|
-
postalCode?: string | undefined;
|
|
2563
|
-
city?: string | undefined;
|
|
2564
|
-
phone?: string | undefined;
|
|
2565
|
-
}, {
|
|
2566
|
-
email: string;
|
|
2567
|
-
first_name: string;
|
|
2568
|
-
last_name: string;
|
|
2569
|
-
state?: string | undefined;
|
|
2570
|
-
country?: string | undefined;
|
|
2571
|
-
address1?: string | undefined;
|
|
2572
|
-
address2?: string | undefined;
|
|
2573
|
-
postalCode?: string | undefined;
|
|
2574
|
-
city?: string | undefined;
|
|
2575
|
-
phone?: string | undefined;
|
|
2576
|
-
}>;
|
|
2555
|
+
/**
|
|
2556
|
+
* Returns a single object containing organization details.
|
|
2557
|
+
*/
|
|
2558
|
+
export declare const zGetOrganizationResponse: z.ZodObject<{
|
|
2577
2559
|
id: z.ZodString;
|
|
2560
|
+
name: z.ZodOptional<z.ZodString>;
|
|
2578
2561
|
date_created: z.ZodString;
|
|
2579
2562
|
quota: z.ZodObject<{
|
|
2580
2563
|
basic_clusters_max: z.ZodNumber;
|
|
@@ -2582,7 +2565,6 @@ export declare const zUpdateOrganizationResponse: z.ZodObject<{
|
|
|
2582
2565
|
pro_clusters_max: z.ZodNumber;
|
|
2583
2566
|
pro_clusters_available: z.ZodNumber;
|
|
2584
2567
|
fleets_max: z.ZodNumber;
|
|
2585
|
-
managed_fleets_cpu_max: z.ZodNumber;
|
|
2586
2568
|
cluster_tiers: z.ZodArray<z.ZodString, "many">;
|
|
2587
2569
|
regions: z.ZodArray<z.ZodString, "many">;
|
|
2588
2570
|
versions: z.ZodArray<z.ZodObject<{
|
|
@@ -2605,7 +2587,6 @@ export declare const zUpdateOrganizationResponse: z.ZodObject<{
|
|
|
2605
2587
|
pro_clusters_max: number;
|
|
2606
2588
|
pro_clusters_available: number;
|
|
2607
2589
|
fleets_max: number;
|
|
2608
|
-
managed_fleets_cpu_max: number;
|
|
2609
2590
|
cluster_tiers: string[];
|
|
2610
2591
|
regions: string[];
|
|
2611
2592
|
}, {
|
|
@@ -2618,29 +2599,14 @@ export declare const zUpdateOrganizationResponse: z.ZodObject<{
|
|
|
2618
2599
|
pro_clusters_max: number;
|
|
2619
2600
|
pro_clusters_available: number;
|
|
2620
2601
|
fleets_max: number;
|
|
2621
|
-
managed_fleets_cpu_max: number;
|
|
2622
2602
|
cluster_tiers: string[];
|
|
2623
2603
|
regions: string[];
|
|
2624
2604
|
}>;
|
|
2625
|
-
pending_actions: z.ZodArray<z.ZodEnum<["signup-billing-address", "signup-payment-method", "signup-invite-team", "signup-create-cluster"]>, "many">;
|
|
2626
2605
|
status: z.ZodEnum<["active", "closed", "suspended"]>;
|
|
2627
2606
|
}, "strip", z.ZodTypeAny, {
|
|
2628
|
-
name: string;
|
|
2629
2607
|
id: string;
|
|
2630
2608
|
status: "active" | "closed" | "suspended";
|
|
2631
2609
|
date_created: string;
|
|
2632
|
-
contactInfo: {
|
|
2633
|
-
email: string;
|
|
2634
|
-
first_name: string;
|
|
2635
|
-
last_name: string;
|
|
2636
|
-
state?: string | undefined;
|
|
2637
|
-
country?: string | undefined;
|
|
2638
|
-
address1?: string | undefined;
|
|
2639
|
-
address2?: string | undefined;
|
|
2640
|
-
postalCode?: string | undefined;
|
|
2641
|
-
city?: string | undefined;
|
|
2642
|
-
phone?: string | undefined;
|
|
2643
|
-
};
|
|
2644
2610
|
quota: {
|
|
2645
2611
|
versions: {
|
|
2646
2612
|
id: string;
|
|
@@ -2651,28 +2617,14 @@ export declare const zUpdateOrganizationResponse: z.ZodObject<{
|
|
|
2651
2617
|
pro_clusters_max: number;
|
|
2652
2618
|
pro_clusters_available: number;
|
|
2653
2619
|
fleets_max: number;
|
|
2654
|
-
managed_fleets_cpu_max: number;
|
|
2655
2620
|
cluster_tiers: string[];
|
|
2656
2621
|
regions: string[];
|
|
2657
2622
|
};
|
|
2658
|
-
|
|
2623
|
+
name?: string | undefined;
|
|
2659
2624
|
}, {
|
|
2660
|
-
name: string;
|
|
2661
2625
|
id: string;
|
|
2662
2626
|
status: "active" | "closed" | "suspended";
|
|
2663
2627
|
date_created: string;
|
|
2664
|
-
contactInfo: {
|
|
2665
|
-
email: string;
|
|
2666
|
-
first_name: string;
|
|
2667
|
-
last_name: string;
|
|
2668
|
-
state?: string | undefined;
|
|
2669
|
-
country?: string | undefined;
|
|
2670
|
-
address1?: string | undefined;
|
|
2671
|
-
address2?: string | undefined;
|
|
2672
|
-
postalCode?: string | undefined;
|
|
2673
|
-
city?: string | undefined;
|
|
2674
|
-
phone?: string | undefined;
|
|
2675
|
-
};
|
|
2676
2628
|
quota: {
|
|
2677
2629
|
versions: {
|
|
2678
2630
|
id: string;
|
|
@@ -2683,12 +2635,33 @@ export declare const zUpdateOrganizationResponse: z.ZodObject<{
|
|
|
2683
2635
|
pro_clusters_max: number;
|
|
2684
2636
|
pro_clusters_available: number;
|
|
2685
2637
|
fleets_max: number;
|
|
2686
|
-
managed_fleets_cpu_max: number;
|
|
2687
2638
|
cluster_tiers: string[];
|
|
2688
2639
|
regions: string[];
|
|
2689
2640
|
};
|
|
2690
|
-
|
|
2641
|
+
name?: string | undefined;
|
|
2691
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
|
+
*/
|
|
2692
2665
|
export declare const zListTokensResponse: z.ZodArray<z.ZodObject<{
|
|
2693
2666
|
name: z.ZodString;
|
|
2694
2667
|
role: z.ZodEnum<["Administrator", "User"]>;
|
|
@@ -2697,17 +2670,30 @@ export declare const zListTokensResponse: z.ZodArray<z.ZodObject<{
|
|
|
2697
2670
|
date_created: z.ZodString;
|
|
2698
2671
|
}, "strip", z.ZodTypeAny, {
|
|
2699
2672
|
name: string;
|
|
2700
|
-
role: "
|
|
2673
|
+
role: "Administrator" | "User";
|
|
2701
2674
|
date_created: string;
|
|
2702
2675
|
id?: string | undefined;
|
|
2703
2676
|
secret?: string | undefined;
|
|
2704
2677
|
}, {
|
|
2705
2678
|
name: string;
|
|
2706
|
-
role: "
|
|
2679
|
+
role: "Administrator" | "User";
|
|
2707
2680
|
date_created: string;
|
|
2708
2681
|
id?: string | undefined;
|
|
2709
2682
|
secret?: string | undefined;
|
|
2710
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
|
+
*/
|
|
2711
2697
|
export declare const zCreateTokenResponse: z.ZodObject<{
|
|
2712
2698
|
name: z.ZodString;
|
|
2713
2699
|
role: z.ZodEnum<["Administrator", "User"]>;
|
|
@@ -2716,17 +2702,28 @@ export declare const zCreateTokenResponse: z.ZodObject<{
|
|
|
2716
2702
|
date_created: z.ZodString;
|
|
2717
2703
|
}, "strip", z.ZodTypeAny, {
|
|
2718
2704
|
name: string;
|
|
2719
|
-
role: "
|
|
2705
|
+
role: "Administrator" | "User";
|
|
2720
2706
|
date_created: string;
|
|
2721
2707
|
id?: string | undefined;
|
|
2722
2708
|
secret?: string | undefined;
|
|
2723
2709
|
}, {
|
|
2724
2710
|
name: string;
|
|
2725
|
-
role: "
|
|
2711
|
+
role: "Administrator" | "User";
|
|
2726
2712
|
date_created: string;
|
|
2727
2713
|
id?: string | undefined;
|
|
2728
2714
|
secret?: string | undefined;
|
|
2729
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
|
+
*/
|
|
2730
2727
|
export declare const zGetTokenResponse: z.ZodObject<{
|
|
2731
2728
|
name: z.ZodString;
|
|
2732
2729
|
role: z.ZodEnum<["Administrator", "User"]>;
|
|
@@ -2735,17 +2732,34 @@ export declare const zGetTokenResponse: z.ZodObject<{
|
|
|
2735
2732
|
date_created: z.ZodString;
|
|
2736
2733
|
}, "strip", z.ZodTypeAny, {
|
|
2737
2734
|
name: string;
|
|
2738
|
-
role: "
|
|
2735
|
+
role: "Administrator" | "User";
|
|
2739
2736
|
date_created: string;
|
|
2740
2737
|
id?: string | undefined;
|
|
2741
2738
|
secret?: string | undefined;
|
|
2742
2739
|
}, {
|
|
2743
2740
|
name: string;
|
|
2744
|
-
role: "
|
|
2741
|
+
role: "Administrator" | "User";
|
|
2745
2742
|
date_created: string;
|
|
2746
2743
|
id?: string | undefined;
|
|
2747
2744
|
secret?: string | undefined;
|
|
2748
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
|
+
*/
|
|
2749
2763
|
export declare const zUpdateTokenResponse: z.ZodObject<{
|
|
2750
2764
|
name: z.ZodString;
|
|
2751
2765
|
role: z.ZodEnum<["Administrator", "User"]>;
|
|
@@ -2754,17 +2768,24 @@ export declare const zUpdateTokenResponse: z.ZodObject<{
|
|
|
2754
2768
|
date_created: z.ZodString;
|
|
2755
2769
|
}, "strip", z.ZodTypeAny, {
|
|
2756
2770
|
name: string;
|
|
2757
|
-
role: "
|
|
2771
|
+
role: "Administrator" | "User";
|
|
2758
2772
|
date_created: string;
|
|
2759
2773
|
id?: string | undefined;
|
|
2760
2774
|
secret?: string | undefined;
|
|
2761
2775
|
}, {
|
|
2762
2776
|
name: string;
|
|
2763
|
-
role: "
|
|
2777
|
+
role: "Administrator" | "User";
|
|
2764
2778
|
date_created: string;
|
|
2765
2779
|
id?: string | undefined;
|
|
2766
2780
|
secret?: string | undefined;
|
|
2767
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
|
+
*/
|
|
2768
2789
|
export declare const zRegenerateTokenResponse: z.ZodObject<{
|
|
2769
2790
|
name: z.ZodString;
|
|
2770
2791
|
role: z.ZodEnum<["Administrator", "User"]>;
|
|
@@ -2773,17 +2794,24 @@ export declare const zRegenerateTokenResponse: z.ZodObject<{
|
|
|
2773
2794
|
date_created: z.ZodString;
|
|
2774
2795
|
}, "strip", z.ZodTypeAny, {
|
|
2775
2796
|
name: string;
|
|
2776
|
-
role: "
|
|
2797
|
+
role: "Administrator" | "User";
|
|
2777
2798
|
date_created: string;
|
|
2778
2799
|
id?: string | undefined;
|
|
2779
2800
|
secret?: string | undefined;
|
|
2780
2801
|
}, {
|
|
2781
2802
|
name: string;
|
|
2782
|
-
role: "
|
|
2803
|
+
role: "Administrator" | "User";
|
|
2783
2804
|
date_created: string;
|
|
2784
2805
|
id?: string | undefined;
|
|
2785
2806
|
secret?: string | undefined;
|
|
2786
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
|
+
*/
|
|
2787
2815
|
export declare const zListUserOrganizationsResponse: z.ZodArray<z.ZodObject<{
|
|
2788
2816
|
realm: z.ZodOptional<z.ZodString>;
|
|
2789
2817
|
displayName: z.ZodOptional<z.ZodString>;
|
|
@@ -2794,6 +2822,9 @@ export declare const zListUserOrganizationsResponse: z.ZodArray<z.ZodObject<{
|
|
|
2794
2822
|
realm?: string | undefined;
|
|
2795
2823
|
displayName?: string | undefined;
|
|
2796
2824
|
}>, "many">;
|
|
2825
|
+
/**
|
|
2826
|
+
* An array of users
|
|
2827
|
+
*/
|
|
2797
2828
|
export declare const zListUsersResponse: z.ZodArray<z.ZodObject<{
|
|
2798
2829
|
email: z.ZodString;
|
|
2799
2830
|
first_name: z.ZodString;
|
|
@@ -2802,85 +2833,52 @@ export declare const zListUsersResponse: z.ZodArray<z.ZodObject<{
|
|
|
2802
2833
|
status: z.ZodEnum<["active", "inactive"]>;
|
|
2803
2834
|
id: z.ZodString;
|
|
2804
2835
|
date_created: z.ZodString;
|
|
2805
|
-
cluster_permissions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2806
|
-
cluster_id: z.ZodString;
|
|
2807
|
-
permissions: z.ZodEnum<["readwrite", "readonly"]>;
|
|
2808
|
-
}, "strip", z.ZodTypeAny, {
|
|
2809
|
-
cluster_id: string;
|
|
2810
|
-
permissions: "readonly" | "readwrite";
|
|
2811
|
-
}, {
|
|
2812
|
-
cluster_id: string;
|
|
2813
|
-
permissions: "readonly" | "readwrite";
|
|
2814
|
-
}>, "many">>;
|
|
2815
2836
|
}, "strip", z.ZodTypeAny, {
|
|
2816
2837
|
id: string;
|
|
2817
|
-
role: "
|
|
2838
|
+
role: "Administrator" | "User";
|
|
2818
2839
|
email: string;
|
|
2819
2840
|
status: "active" | "inactive";
|
|
2820
|
-
date_created: string;
|
|
2821
2841
|
first_name: string;
|
|
2822
2842
|
last_name: string;
|
|
2823
|
-
|
|
2824
|
-
cluster_id: string;
|
|
2825
|
-
permissions: "readonly" | "readwrite";
|
|
2826
|
-
}[] | undefined;
|
|
2843
|
+
date_created: string;
|
|
2827
2844
|
}, {
|
|
2828
2845
|
id: string;
|
|
2829
|
-
role: "
|
|
2846
|
+
role: "Administrator" | "User";
|
|
2830
2847
|
email: string;
|
|
2831
2848
|
status: "active" | "inactive";
|
|
2832
|
-
date_created: string;
|
|
2833
2849
|
first_name: string;
|
|
2834
2850
|
last_name: string;
|
|
2835
|
-
|
|
2836
|
-
cluster_id: string;
|
|
2837
|
-
permissions: "readonly" | "readwrite";
|
|
2838
|
-
}[] | undefined;
|
|
2851
|
+
date_created: string;
|
|
2839
2852
|
}>, "many">;
|
|
2840
|
-
export declare const
|
|
2853
|
+
export declare const zCreateUserData: z.ZodObject<{
|
|
2841
2854
|
email: z.ZodString;
|
|
2842
2855
|
first_name: z.ZodString;
|
|
2843
2856
|
last_name: z.ZodString;
|
|
2844
|
-
|
|
2845
|
-
|
|
2846
|
-
|
|
2847
|
-
|
|
2848
|
-
cluster_permissions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2849
|
-
cluster_id: z.ZodString;
|
|
2850
|
-
permissions: z.ZodEnum<["readwrite", "readonly"]>;
|
|
2851
|
-
}, "strip", z.ZodTypeAny, {
|
|
2852
|
-
cluster_id: string;
|
|
2853
|
-
permissions: "readonly" | "readwrite";
|
|
2854
|
-
}, {
|
|
2855
|
-
cluster_id: string;
|
|
2856
|
-
permissions: "readonly" | "readwrite";
|
|
2857
|
-
}>, "many">>;
|
|
2857
|
+
code: z.ZodString;
|
|
2858
|
+
password: z.ZodString;
|
|
2859
|
+
status: z.ZodOptional<z.ZodEnum<["active", "inactive"]>>;
|
|
2860
|
+
role: z.ZodOptional<z.ZodEnum<["Administrator", "User"]>>;
|
|
2858
2861
|
}, "strip", z.ZodTypeAny, {
|
|
2859
|
-
|
|
2860
|
-
role: "User" | "Administrator";
|
|
2862
|
+
code: string;
|
|
2861
2863
|
email: string;
|
|
2862
|
-
status: "active" | "inactive";
|
|
2863
|
-
date_created: string;
|
|
2864
2864
|
first_name: string;
|
|
2865
2865
|
last_name: string;
|
|
2866
|
-
|
|
2867
|
-
|
|
2868
|
-
|
|
2869
|
-
}[] | undefined;
|
|
2866
|
+
password: string;
|
|
2867
|
+
role?: "Administrator" | "User" | undefined;
|
|
2868
|
+
status?: "active" | "inactive" | undefined;
|
|
2870
2869
|
}, {
|
|
2871
|
-
|
|
2872
|
-
role: "User" | "Administrator";
|
|
2870
|
+
code: string;
|
|
2873
2871
|
email: string;
|
|
2874
|
-
status: "active" | "inactive";
|
|
2875
|
-
date_created: string;
|
|
2876
2872
|
first_name: string;
|
|
2877
2873
|
last_name: string;
|
|
2878
|
-
|
|
2879
|
-
|
|
2880
|
-
|
|
2881
|
-
}[] | undefined;
|
|
2874
|
+
password: string;
|
|
2875
|
+
role?: "Administrator" | "User" | undefined;
|
|
2876
|
+
status?: "active" | "inactive" | undefined;
|
|
2882
2877
|
}>;
|
|
2883
|
-
|
|
2878
|
+
/**
|
|
2879
|
+
* Successfully created. Returns created user details.
|
|
2880
|
+
*/
|
|
2881
|
+
export declare const zCreateUserResponse: z.ZodObject<{
|
|
2884
2882
|
email: z.ZodString;
|
|
2885
2883
|
first_name: z.ZodString;
|
|
2886
2884
|
last_name: z.ZodString;
|
|
@@ -2888,42 +2886,31 @@ export declare const zDeleteUserResponse: z.ZodObject<{
|
|
|
2888
2886
|
status: z.ZodEnum<["active", "inactive"]>;
|
|
2889
2887
|
id: z.ZodString;
|
|
2890
2888
|
date_created: z.ZodString;
|
|
2891
|
-
cluster_permissions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2892
|
-
cluster_id: z.ZodString;
|
|
2893
|
-
permissions: z.ZodEnum<["readwrite", "readonly"]>;
|
|
2894
|
-
}, "strip", z.ZodTypeAny, {
|
|
2895
|
-
cluster_id: string;
|
|
2896
|
-
permissions: "readonly" | "readwrite";
|
|
2897
|
-
}, {
|
|
2898
|
-
cluster_id: string;
|
|
2899
|
-
permissions: "readonly" | "readwrite";
|
|
2900
|
-
}>, "many">>;
|
|
2901
2889
|
}, "strip", z.ZodTypeAny, {
|
|
2902
2890
|
id: string;
|
|
2903
|
-
role: "
|
|
2891
|
+
role: "Administrator" | "User";
|
|
2904
2892
|
email: string;
|
|
2905
2893
|
status: "active" | "inactive";
|
|
2906
|
-
date_created: string;
|
|
2907
2894
|
first_name: string;
|
|
2908
2895
|
last_name: string;
|
|
2909
|
-
|
|
2910
|
-
cluster_id: string;
|
|
2911
|
-
permissions: "readonly" | "readwrite";
|
|
2912
|
-
}[] | undefined;
|
|
2896
|
+
date_created: string;
|
|
2913
2897
|
}, {
|
|
2914
2898
|
id: string;
|
|
2915
|
-
role: "
|
|
2899
|
+
role: "Administrator" | "User";
|
|
2916
2900
|
email: string;
|
|
2917
2901
|
status: "active" | "inactive";
|
|
2918
|
-
date_created: string;
|
|
2919
2902
|
first_name: string;
|
|
2920
2903
|
last_name: string;
|
|
2921
|
-
|
|
2922
|
-
cluster_id: string;
|
|
2923
|
-
permissions: "readonly" | "readwrite";
|
|
2924
|
-
}[] | undefined;
|
|
2904
|
+
date_created: string;
|
|
2925
2905
|
}>;
|
|
2926
|
-
|
|
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<{
|
|
2927
2914
|
email: z.ZodString;
|
|
2928
2915
|
first_name: z.ZodString;
|
|
2929
2916
|
last_name: z.ZodString;
|
|
@@ -2931,42 +2918,31 @@ export declare const zGetUserResponse: z.ZodObject<{
|
|
|
2931
2918
|
status: z.ZodEnum<["active", "inactive"]>;
|
|
2932
2919
|
id: z.ZodString;
|
|
2933
2920
|
date_created: z.ZodString;
|
|
2934
|
-
cluster_permissions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2935
|
-
cluster_id: z.ZodString;
|
|
2936
|
-
permissions: z.ZodEnum<["readwrite", "readonly"]>;
|
|
2937
|
-
}, "strip", z.ZodTypeAny, {
|
|
2938
|
-
cluster_id: string;
|
|
2939
|
-
permissions: "readonly" | "readwrite";
|
|
2940
|
-
}, {
|
|
2941
|
-
cluster_id: string;
|
|
2942
|
-
permissions: "readonly" | "readwrite";
|
|
2943
|
-
}>, "many">>;
|
|
2944
2921
|
}, "strip", z.ZodTypeAny, {
|
|
2945
2922
|
id: string;
|
|
2946
|
-
role: "
|
|
2923
|
+
role: "Administrator" | "User";
|
|
2947
2924
|
email: string;
|
|
2948
2925
|
status: "active" | "inactive";
|
|
2949
|
-
date_created: string;
|
|
2950
2926
|
first_name: string;
|
|
2951
2927
|
last_name: string;
|
|
2952
|
-
|
|
2953
|
-
cluster_id: string;
|
|
2954
|
-
permissions: "readonly" | "readwrite";
|
|
2955
|
-
}[] | undefined;
|
|
2928
|
+
date_created: string;
|
|
2956
2929
|
}, {
|
|
2957
2930
|
id: string;
|
|
2958
|
-
role: "
|
|
2931
|
+
role: "Administrator" | "User";
|
|
2959
2932
|
email: string;
|
|
2960
2933
|
status: "active" | "inactive";
|
|
2961
|
-
date_created: string;
|
|
2962
2934
|
first_name: string;
|
|
2963
2935
|
last_name: string;
|
|
2964
|
-
|
|
2965
|
-
cluster_id: string;
|
|
2966
|
-
permissions: "readonly" | "readwrite";
|
|
2967
|
-
}[] | undefined;
|
|
2936
|
+
date_created: string;
|
|
2968
2937
|
}>;
|
|
2969
|
-
|
|
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<{
|
|
2970
2946
|
email: z.ZodString;
|
|
2971
2947
|
first_name: z.ZodString;
|
|
2972
2948
|
last_name: z.ZodString;
|
|
@@ -2974,85 +2950,50 @@ export declare const zUpdateUserResponse: z.ZodObject<{
|
|
|
2974
2950
|
status: z.ZodEnum<["active", "inactive"]>;
|
|
2975
2951
|
id: z.ZodString;
|
|
2976
2952
|
date_created: z.ZodString;
|
|
2977
|
-
cluster_permissions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2978
|
-
cluster_id: z.ZodString;
|
|
2979
|
-
permissions: z.ZodEnum<["readwrite", "readonly"]>;
|
|
2980
|
-
}, "strip", z.ZodTypeAny, {
|
|
2981
|
-
cluster_id: string;
|
|
2982
|
-
permissions: "readonly" | "readwrite";
|
|
2983
|
-
}, {
|
|
2984
|
-
cluster_id: string;
|
|
2985
|
-
permissions: "readonly" | "readwrite";
|
|
2986
|
-
}>, "many">>;
|
|
2987
2953
|
}, "strip", z.ZodTypeAny, {
|
|
2988
2954
|
id: string;
|
|
2989
|
-
role: "
|
|
2955
|
+
role: "Administrator" | "User";
|
|
2990
2956
|
email: string;
|
|
2991
2957
|
status: "active" | "inactive";
|
|
2992
|
-
date_created: string;
|
|
2993
2958
|
first_name: string;
|
|
2994
2959
|
last_name: string;
|
|
2995
|
-
|
|
2996
|
-
cluster_id: string;
|
|
2997
|
-
permissions: "readonly" | "readwrite";
|
|
2998
|
-
}[] | undefined;
|
|
2960
|
+
date_created: string;
|
|
2999
2961
|
}, {
|
|
3000
2962
|
id: string;
|
|
3001
|
-
role: "
|
|
2963
|
+
role: "Administrator" | "User";
|
|
3002
2964
|
email: string;
|
|
3003
2965
|
status: "active" | "inactive";
|
|
3004
|
-
date_created: string;
|
|
3005
2966
|
first_name: string;
|
|
3006
2967
|
last_name: string;
|
|
3007
|
-
|
|
3008
|
-
cluster_id: string;
|
|
3009
|
-
permissions: "readonly" | "readwrite";
|
|
3010
|
-
}[] | undefined;
|
|
2968
|
+
date_created: string;
|
|
3011
2969
|
}>;
|
|
3012
|
-
export declare const
|
|
3013
|
-
email: z.ZodString
|
|
3014
|
-
first_name: z.ZodString
|
|
3015
|
-
last_name: z.ZodString
|
|
3016
|
-
role: z.ZodEnum<["Administrator", "User"]
|
|
3017
|
-
status: z.ZodEnum<["active", "inactive"]
|
|
3018
|
-
id: z.ZodString;
|
|
3019
|
-
date_created: z.ZodString;
|
|
3020
|
-
cluster_permissions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3021
|
-
cluster_id: z.ZodString;
|
|
3022
|
-
permissions: z.ZodEnum<["readwrite", "readonly"]>;
|
|
3023
|
-
}, "strip", z.ZodTypeAny, {
|
|
3024
|
-
cluster_id: string;
|
|
3025
|
-
permissions: "readonly" | "readwrite";
|
|
3026
|
-
}, {
|
|
3027
|
-
cluster_id: string;
|
|
3028
|
-
permissions: "readonly" | "readwrite";
|
|
3029
|
-
}>, "many">>;
|
|
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"]>>;
|
|
3030
2976
|
}, "strip", z.ZodTypeAny, {
|
|
3031
|
-
|
|
3032
|
-
|
|
3033
|
-
|
|
3034
|
-
|
|
3035
|
-
|
|
3036
|
-
first_name: string;
|
|
3037
|
-
last_name: string;
|
|
3038
|
-
cluster_permissions?: {
|
|
3039
|
-
cluster_id: string;
|
|
3040
|
-
permissions: "readonly" | "readwrite";
|
|
3041
|
-
}[] | 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;
|
|
3042
2982
|
}, {
|
|
3043
|
-
|
|
3044
|
-
|
|
3045
|
-
|
|
3046
|
-
|
|
3047
|
-
|
|
3048
|
-
first_name: string;
|
|
3049
|
-
last_name: string;
|
|
3050
|
-
cluster_permissions?: {
|
|
3051
|
-
cluster_id: string;
|
|
3052
|
-
permissions: "readonly" | "readwrite";
|
|
3053
|
-
}[] | 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;
|
|
3054
2988
|
}>;
|
|
3055
|
-
|
|
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<{
|
|
3056
2997
|
email: z.ZodString;
|
|
3057
2998
|
first_name: z.ZodString;
|
|
3058
2999
|
last_name: z.ZodString;
|
|
@@ -3060,39 +3001,21 @@ export declare const zSetClusterPermissionsResponse: z.ZodObject<{
|
|
|
3060
3001
|
status: z.ZodEnum<["active", "inactive"]>;
|
|
3061
3002
|
id: z.ZodString;
|
|
3062
3003
|
date_created: z.ZodString;
|
|
3063
|
-
cluster_permissions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3064
|
-
cluster_id: z.ZodString;
|
|
3065
|
-
permissions: z.ZodEnum<["readwrite", "readonly"]>;
|
|
3066
|
-
}, "strip", z.ZodTypeAny, {
|
|
3067
|
-
cluster_id: string;
|
|
3068
|
-
permissions: "readonly" | "readwrite";
|
|
3069
|
-
}, {
|
|
3070
|
-
cluster_id: string;
|
|
3071
|
-
permissions: "readonly" | "readwrite";
|
|
3072
|
-
}>, "many">>;
|
|
3073
3004
|
}, "strip", z.ZodTypeAny, {
|
|
3074
3005
|
id: string;
|
|
3075
|
-
role: "
|
|
3006
|
+
role: "Administrator" | "User";
|
|
3076
3007
|
email: string;
|
|
3077
3008
|
status: "active" | "inactive";
|
|
3078
|
-
date_created: string;
|
|
3079
3009
|
first_name: string;
|
|
3080
3010
|
last_name: string;
|
|
3081
|
-
|
|
3082
|
-
cluster_id: string;
|
|
3083
|
-
permissions: "readonly" | "readwrite";
|
|
3084
|
-
}[] | undefined;
|
|
3011
|
+
date_created: string;
|
|
3085
3012
|
}, {
|
|
3086
3013
|
id: string;
|
|
3087
|
-
role: "
|
|
3014
|
+
role: "Administrator" | "User";
|
|
3088
3015
|
email: string;
|
|
3089
3016
|
status: "active" | "inactive";
|
|
3090
|
-
date_created: string;
|
|
3091
3017
|
first_name: string;
|
|
3092
3018
|
last_name: string;
|
|
3093
|
-
|
|
3094
|
-
cluster_id: string;
|
|
3095
|
-
permissions: "readonly" | "readwrite";
|
|
3096
|
-
}[] | undefined;
|
|
3019
|
+
date_created: string;
|
|
3097
3020
|
}>;
|
|
3098
3021
|
//# sourceMappingURL=zod.gen.d.ts.map
|