@cloudfleet/sdk 0.0.1-96d5fec → 0.0.1-9835b73
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 +512 -668
- package/dist/schemas.gen.d.ts.map +1 -1
- package/dist/schemas.gen.js +516 -668
- package/dist/schemas.gen.js.map +1 -1
- package/dist/sdk.gen.d.ts +146 -140
- package/dist/sdk.gen.d.ts.map +1 -1
- package/dist/sdk.gen.js +213 -147
- 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 +515 -739
- package/dist/types.gen.d.ts.map +1 -1
- package/dist/zod.gen.d.ts +1377 -1395
- package/dist/zod.gen.d.ts.map +1 -1
- package/dist/zod.gen.js +589 -206
- 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<{
|
|
@@ -33,6 +170,19 @@ export declare const zClusterJoinInformation: z.ZodObject<{
|
|
|
33
170
|
tailscale: string;
|
|
34
171
|
containerd: string;
|
|
35
172
|
}>;
|
|
173
|
+
third_party_api_access_config: z.ZodObject<{
|
|
174
|
+
metadata_url: z.ZodString;
|
|
175
|
+
aws_role_arn: z.ZodString;
|
|
176
|
+
gcp_workload_identity_provider: z.ZodString;
|
|
177
|
+
}, "strip", z.ZodTypeAny, {
|
|
178
|
+
metadata_url: string;
|
|
179
|
+
aws_role_arn: string;
|
|
180
|
+
gcp_workload_identity_provider: string;
|
|
181
|
+
}, {
|
|
182
|
+
metadata_url: string;
|
|
183
|
+
aws_role_arn: string;
|
|
184
|
+
gcp_workload_identity_provider: string;
|
|
185
|
+
}>;
|
|
36
186
|
}, "strip", z.ZodTypeAny, {
|
|
37
187
|
certificate_authority: string;
|
|
38
188
|
endpoint: string;
|
|
@@ -43,6 +193,11 @@ export declare const zClusterJoinInformation: z.ZodObject<{
|
|
|
43
193
|
tailscale: string;
|
|
44
194
|
containerd: string;
|
|
45
195
|
};
|
|
196
|
+
third_party_api_access_config: {
|
|
197
|
+
metadata_url: string;
|
|
198
|
+
aws_role_arn: string;
|
|
199
|
+
gcp_workload_identity_provider: string;
|
|
200
|
+
};
|
|
46
201
|
}, {
|
|
47
202
|
certificate_authority: string;
|
|
48
203
|
endpoint: string;
|
|
@@ -53,11 +208,16 @@ export declare const zClusterJoinInformation: z.ZodObject<{
|
|
|
53
208
|
tailscale: string;
|
|
54
209
|
containerd: string;
|
|
55
210
|
};
|
|
211
|
+
third_party_api_access_config: {
|
|
212
|
+
metadata_url: string;
|
|
213
|
+
aws_role_arn: string;
|
|
214
|
+
gcp_workload_identity_provider: string;
|
|
215
|
+
};
|
|
56
216
|
}>;
|
|
57
217
|
export declare const zCluster: z.ZodObject<{
|
|
58
218
|
name: z.ZodString;
|
|
59
|
-
region: z.ZodOptional<z.ZodEnum<["staging", "northamerica-central-1"]>>;
|
|
60
219
|
tier: z.ZodEnum<["basic", "pro"]>;
|
|
220
|
+
region: z.ZodOptional<z.ZodEnum<["staging", "northamerica-central-1", "europe-central-1a"]>>;
|
|
61
221
|
version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
62
222
|
id: z.ZodString;
|
|
63
223
|
status: z.ZodEnum<["active", "deleted", "creating", "deployed", "failed", "updating"]>;
|
|
@@ -71,36 +231,39 @@ export declare const zCluster: z.ZodObject<{
|
|
|
71
231
|
name: string;
|
|
72
232
|
id: string;
|
|
73
233
|
status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
|
|
74
|
-
tier: "basic" | "pro";
|
|
75
234
|
version_channel: string;
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
235
|
+
tier: "basic" | "pro";
|
|
236
|
+
ready?: boolean | undefined;
|
|
237
|
+
region?: "staging" | "northamerica-central-1" | "europe-central-1a" | undefined;
|
|
79
238
|
version_current?: string | undefined;
|
|
80
239
|
created_at?: string | undefined;
|
|
81
240
|
updated_at?: string | undefined;
|
|
82
|
-
|
|
241
|
+
endpoint?: string | undefined;
|
|
242
|
+
certificate_ca?: string | undefined;
|
|
83
243
|
}, {
|
|
84
244
|
name: string;
|
|
85
245
|
id: string;
|
|
86
246
|
status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
|
|
87
247
|
tier: "basic" | "pro";
|
|
88
|
-
|
|
89
|
-
|
|
248
|
+
ready?: boolean | undefined;
|
|
249
|
+
region?: "staging" | "northamerica-central-1" | "europe-central-1a" | undefined;
|
|
90
250
|
version_channel?: string | undefined;
|
|
91
|
-
certificate_ca?: string | undefined;
|
|
92
251
|
version_current?: string | undefined;
|
|
93
252
|
created_at?: string | undefined;
|
|
94
253
|
updated_at?: string | undefined;
|
|
95
|
-
|
|
254
|
+
endpoint?: string | undefined;
|
|
255
|
+
certificate_ca?: string | undefined;
|
|
96
256
|
}>;
|
|
97
257
|
export declare const zClusterUpdateInput: z.ZodObject<{
|
|
98
258
|
name: z.ZodOptional<z.ZodString>;
|
|
259
|
+
tier: z.ZodEnum<["basic", "pro"]>;
|
|
99
260
|
version_channel: z.ZodOptional<z.ZodString>;
|
|
100
261
|
}, "strip", z.ZodTypeAny, {
|
|
262
|
+
tier: "basic" | "pro";
|
|
101
263
|
name?: string | undefined;
|
|
102
264
|
version_channel?: string | undefined;
|
|
103
265
|
}, {
|
|
266
|
+
tier: "basic" | "pro";
|
|
104
267
|
name?: string | undefined;
|
|
105
268
|
version_channel?: string | undefined;
|
|
106
269
|
}>;
|
|
@@ -122,25 +285,16 @@ export declare const zFleetCreateInput: z.ZodObject<{
|
|
|
122
285
|
project: string;
|
|
123
286
|
enabled?: boolean | undefined;
|
|
124
287
|
}>>;
|
|
125
|
-
hetzner: z.ZodOptional<z.
|
|
126
|
-
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
127
|
-
apiKey: z.ZodOptional<z.ZodString>;
|
|
128
|
-
}, "strip", z.ZodTypeAny, {
|
|
129
|
-
enabled: boolean;
|
|
130
|
-
apiKey?: string | undefined;
|
|
131
|
-
}, {
|
|
132
|
-
apiKey?: string | undefined;
|
|
133
|
-
enabled?: boolean | undefined;
|
|
134
|
-
}>, z.ZodObject<{
|
|
135
|
-
apiKey: z.ZodOptional<z.ZodString>;
|
|
288
|
+
hetzner: z.ZodOptional<z.ZodObject<{
|
|
136
289
|
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
290
|
+
apiKey: z.ZodString;
|
|
137
291
|
}, "strip", z.ZodTypeAny, {
|
|
292
|
+
apiKey: string;
|
|
138
293
|
enabled: boolean;
|
|
139
|
-
apiKey?: string | undefined;
|
|
140
294
|
}, {
|
|
141
|
-
apiKey
|
|
295
|
+
apiKey: string;
|
|
142
296
|
enabled?: boolean | undefined;
|
|
143
|
-
}
|
|
297
|
+
}>>;
|
|
144
298
|
aws: z.ZodOptional<z.ZodObject<{
|
|
145
299
|
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
146
300
|
controllerRoleArn: z.ZodString;
|
|
@@ -152,9 +306,7 @@ export declare const zFleetCreateInput: z.ZodObject<{
|
|
|
152
306
|
enabled?: boolean | undefined;
|
|
153
307
|
}>>;
|
|
154
308
|
id: z.ZodString;
|
|
155
|
-
type: z.ZodEnum<["managed", "connected"]>;
|
|
156
309
|
}, "strip", z.ZodTypeAny, {
|
|
157
|
-
type: "connected" | "managed";
|
|
158
310
|
id: string;
|
|
159
311
|
limits?: {
|
|
160
312
|
cpu: number;
|
|
@@ -164,18 +316,14 @@ export declare const zFleetCreateInput: z.ZodObject<{
|
|
|
164
316
|
enabled: boolean;
|
|
165
317
|
} | undefined;
|
|
166
318
|
hetzner?: {
|
|
319
|
+
apiKey: string;
|
|
167
320
|
enabled: boolean;
|
|
168
|
-
apiKey?: string | undefined;
|
|
169
|
-
} | {
|
|
170
|
-
enabled: boolean;
|
|
171
|
-
apiKey?: string | undefined;
|
|
172
321
|
} | undefined;
|
|
173
322
|
aws?: {
|
|
174
323
|
controllerRoleArn: string;
|
|
175
324
|
enabled: boolean;
|
|
176
325
|
} | undefined;
|
|
177
326
|
}, {
|
|
178
|
-
type: "connected" | "managed";
|
|
179
327
|
id: string;
|
|
180
328
|
limits?: {
|
|
181
329
|
cpu: number;
|
|
@@ -185,10 +333,7 @@ export declare const zFleetCreateInput: z.ZodObject<{
|
|
|
185
333
|
enabled?: boolean | undefined;
|
|
186
334
|
} | undefined;
|
|
187
335
|
hetzner?: {
|
|
188
|
-
apiKey
|
|
189
|
-
enabled?: boolean | undefined;
|
|
190
|
-
} | {
|
|
191
|
-
apiKey?: string | undefined;
|
|
336
|
+
apiKey: string;
|
|
192
337
|
enabled?: boolean | undefined;
|
|
193
338
|
} | undefined;
|
|
194
339
|
aws?: {
|
|
@@ -214,25 +359,16 @@ export declare const zFleet: z.ZodObject<{
|
|
|
214
359
|
project: string;
|
|
215
360
|
enabled?: boolean | undefined;
|
|
216
361
|
}>>;
|
|
217
|
-
hetzner: z.ZodOptional<z.
|
|
218
|
-
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
219
|
-
apiKey: z.ZodOptional<z.ZodString>;
|
|
220
|
-
}, "strip", z.ZodTypeAny, {
|
|
221
|
-
enabled: boolean;
|
|
222
|
-
apiKey?: string | undefined;
|
|
223
|
-
}, {
|
|
224
|
-
apiKey?: string | undefined;
|
|
225
|
-
enabled?: boolean | undefined;
|
|
226
|
-
}>, z.ZodObject<{
|
|
227
|
-
apiKey: z.ZodOptional<z.ZodString>;
|
|
362
|
+
hetzner: z.ZodOptional<z.ZodObject<{
|
|
228
363
|
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
364
|
+
apiKey: z.ZodString;
|
|
229
365
|
}, "strip", z.ZodTypeAny, {
|
|
366
|
+
apiKey: string;
|
|
230
367
|
enabled: boolean;
|
|
231
|
-
apiKey?: string | undefined;
|
|
232
368
|
}, {
|
|
233
|
-
apiKey
|
|
369
|
+
apiKey: string;
|
|
234
370
|
enabled?: boolean | undefined;
|
|
235
|
-
}
|
|
371
|
+
}>>;
|
|
236
372
|
aws: z.ZodOptional<z.ZodObject<{
|
|
237
373
|
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
238
374
|
controllerRoleArn: z.ZodString;
|
|
@@ -244,9 +380,7 @@ export declare const zFleet: z.ZodObject<{
|
|
|
244
380
|
enabled?: boolean | undefined;
|
|
245
381
|
}>>;
|
|
246
382
|
id: z.ZodString;
|
|
247
|
-
type: z.ZodEnum<["managed", "connected"]>;
|
|
248
383
|
}, "strip", z.ZodTypeAny, {
|
|
249
|
-
type: "connected" | "managed";
|
|
250
384
|
id: string;
|
|
251
385
|
limits?: {
|
|
252
386
|
cpu: number;
|
|
@@ -256,18 +390,14 @@ export declare const zFleet: z.ZodObject<{
|
|
|
256
390
|
enabled: boolean;
|
|
257
391
|
} | undefined;
|
|
258
392
|
hetzner?: {
|
|
393
|
+
apiKey: string;
|
|
259
394
|
enabled: boolean;
|
|
260
|
-
apiKey?: string | undefined;
|
|
261
|
-
} | {
|
|
262
|
-
enabled: boolean;
|
|
263
|
-
apiKey?: string | undefined;
|
|
264
395
|
} | undefined;
|
|
265
396
|
aws?: {
|
|
266
397
|
controllerRoleArn: string;
|
|
267
398
|
enabled: boolean;
|
|
268
399
|
} | undefined;
|
|
269
400
|
}, {
|
|
270
|
-
type: "connected" | "managed";
|
|
271
401
|
id: string;
|
|
272
402
|
limits?: {
|
|
273
403
|
cpu: number;
|
|
@@ -277,10 +407,7 @@ export declare const zFleet: z.ZodObject<{
|
|
|
277
407
|
enabled?: boolean | undefined;
|
|
278
408
|
} | undefined;
|
|
279
409
|
hetzner?: {
|
|
280
|
-
apiKey
|
|
281
|
-
enabled?: boolean | undefined;
|
|
282
|
-
} | {
|
|
283
|
-
apiKey?: string | undefined;
|
|
410
|
+
apiKey: string;
|
|
284
411
|
enabled?: boolean | undefined;
|
|
285
412
|
} | undefined;
|
|
286
413
|
aws?: {
|
|
@@ -306,25 +433,16 @@ export declare const zFleetUpdateInput: z.ZodObject<{
|
|
|
306
433
|
project: string;
|
|
307
434
|
enabled?: boolean | undefined;
|
|
308
435
|
}>>;
|
|
309
|
-
hetzner: z.ZodOptional<z.
|
|
310
|
-
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
311
|
-
apiKey: z.ZodOptional<z.ZodString>;
|
|
312
|
-
}, "strip", z.ZodTypeAny, {
|
|
313
|
-
enabled: boolean;
|
|
314
|
-
apiKey?: string | undefined;
|
|
315
|
-
}, {
|
|
316
|
-
apiKey?: string | undefined;
|
|
317
|
-
enabled?: boolean | undefined;
|
|
318
|
-
}>, z.ZodObject<{
|
|
319
|
-
apiKey: z.ZodOptional<z.ZodString>;
|
|
436
|
+
hetzner: z.ZodOptional<z.ZodObject<{
|
|
320
437
|
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
438
|
+
apiKey: z.ZodString;
|
|
321
439
|
}, "strip", z.ZodTypeAny, {
|
|
440
|
+
apiKey: string;
|
|
322
441
|
enabled: boolean;
|
|
323
|
-
apiKey?: string | undefined;
|
|
324
442
|
}, {
|
|
325
|
-
apiKey
|
|
443
|
+
apiKey: string;
|
|
326
444
|
enabled?: boolean | undefined;
|
|
327
|
-
}
|
|
445
|
+
}>>;
|
|
328
446
|
aws: z.ZodOptional<z.ZodObject<{
|
|
329
447
|
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
330
448
|
controllerRoleArn: z.ZodString;
|
|
@@ -344,11 +462,8 @@ export declare const zFleetUpdateInput: z.ZodObject<{
|
|
|
344
462
|
enabled: boolean;
|
|
345
463
|
} | undefined;
|
|
346
464
|
hetzner?: {
|
|
465
|
+
apiKey: string;
|
|
347
466
|
enabled: boolean;
|
|
348
|
-
apiKey?: string | undefined;
|
|
349
|
-
} | {
|
|
350
|
-
enabled: boolean;
|
|
351
|
-
apiKey?: string | undefined;
|
|
352
467
|
} | undefined;
|
|
353
468
|
aws?: {
|
|
354
469
|
controllerRoleArn: string;
|
|
@@ -363,10 +478,7 @@ export declare const zFleetUpdateInput: z.ZodObject<{
|
|
|
363
478
|
enabled?: boolean | undefined;
|
|
364
479
|
} | undefined;
|
|
365
480
|
hetzner?: {
|
|
366
|
-
apiKey
|
|
367
|
-
enabled?: boolean | undefined;
|
|
368
|
-
} | {
|
|
369
|
-
apiKey?: string | undefined;
|
|
481
|
+
apiKey: string;
|
|
370
482
|
enabled?: boolean | undefined;
|
|
371
483
|
} | undefined;
|
|
372
484
|
aws?: {
|
|
@@ -374,140 +486,6 @@ export declare const zFleetUpdateInput: z.ZodObject<{
|
|
|
374
486
|
enabled?: boolean | undefined;
|
|
375
487
|
} | undefined;
|
|
376
488
|
}>;
|
|
377
|
-
export declare const zInfrastructureFilter: z.ZodObject<{
|
|
378
|
-
version: z.ZodOptional<z.ZodUnknown>;
|
|
379
|
-
provider: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
380
|
-
region: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
381
|
-
sub_region: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
382
|
-
csp_region: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
383
|
-
instance_type: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
384
|
-
accelerator_name: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
385
|
-
accelerator_manufacturer: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
386
|
-
accelerator_count_min: z.ZodOptional<z.ZodNumber>;
|
|
387
|
-
accelerator_count_max: z.ZodOptional<z.ZodNumber>;
|
|
388
|
-
accelerator_memory_min: z.ZodOptional<z.ZodNumber>;
|
|
389
|
-
accelerator_memory_max: z.ZodOptional<z.ZodNumber>;
|
|
390
|
-
memory_min: z.ZodOptional<z.ZodNumber>;
|
|
391
|
-
memory_max: z.ZodOptional<z.ZodNumber>;
|
|
392
|
-
vcpu_min: z.ZodOptional<z.ZodNumber>;
|
|
393
|
-
vcpu_max: z.ZodOptional<z.ZodNumber>;
|
|
394
|
-
storage_total_min: z.ZodOptional<z.ZodNumber>;
|
|
395
|
-
storage_total_max: z.ZodOptional<z.ZodNumber>;
|
|
396
|
-
storage_local_min: z.ZodOptional<z.ZodNumber>;
|
|
397
|
-
storage_local_max: z.ZodOptional<z.ZodNumber>;
|
|
398
|
-
price_min: z.ZodOptional<z.ZodNumber>;
|
|
399
|
-
price_max: z.ZodOptional<z.ZodNumber>;
|
|
400
|
-
}, "strip", z.ZodTypeAny, {
|
|
401
|
-
region?: string[] | undefined;
|
|
402
|
-
provider?: string[] | undefined;
|
|
403
|
-
sub_region?: string[] | undefined;
|
|
404
|
-
csp_region?: string[] | undefined;
|
|
405
|
-
instance_type?: string[] | undefined;
|
|
406
|
-
version?: unknown;
|
|
407
|
-
accelerator_name?: string[] | undefined;
|
|
408
|
-
accelerator_manufacturer?: string[] | undefined;
|
|
409
|
-
accelerator_count_min?: number | undefined;
|
|
410
|
-
accelerator_count_max?: number | undefined;
|
|
411
|
-
accelerator_memory_min?: number | undefined;
|
|
412
|
-
accelerator_memory_max?: number | undefined;
|
|
413
|
-
memory_min?: number | undefined;
|
|
414
|
-
memory_max?: number | undefined;
|
|
415
|
-
vcpu_min?: number | undefined;
|
|
416
|
-
vcpu_max?: number | undefined;
|
|
417
|
-
storage_total_min?: number | undefined;
|
|
418
|
-
storage_total_max?: number | undefined;
|
|
419
|
-
storage_local_min?: number | undefined;
|
|
420
|
-
storage_local_max?: number | undefined;
|
|
421
|
-
price_min?: number | undefined;
|
|
422
|
-
price_max?: number | undefined;
|
|
423
|
-
}, {
|
|
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
|
-
export declare const zInfrastructureInstance: z.ZodObject<{
|
|
448
|
-
sku: z.ZodString;
|
|
449
|
-
provider: z.ZodString;
|
|
450
|
-
region: z.ZodString;
|
|
451
|
-
sub_region: z.ZodString;
|
|
452
|
-
csp_region: z.ZodString;
|
|
453
|
-
csp_zone: z.ZodString;
|
|
454
|
-
instance_type: z.ZodString;
|
|
455
|
-
architecture: z.ZodString;
|
|
456
|
-
os: z.ZodString;
|
|
457
|
-
vcpu: z.ZodNumber;
|
|
458
|
-
memory: z.ZodNumber;
|
|
459
|
-
local_storage: z.ZodNumber;
|
|
460
|
-
accelerator_name: z.ZodOptional<z.ZodString>;
|
|
461
|
-
accelerator_manufacturer: z.ZodOptional<z.ZodString>;
|
|
462
|
-
accelerator_count: z.ZodOptional<z.ZodNumber>;
|
|
463
|
-
accelerator_memory: z.ZodOptional<z.ZodNumber>;
|
|
464
|
-
pods_capacity: z.ZodOptional<z.ZodNumber>;
|
|
465
|
-
capacity_type: z.ZodOptional<z.ZodString>;
|
|
466
|
-
price: z.ZodNumber;
|
|
467
|
-
available: z.ZodOptional<z.ZodBoolean>;
|
|
468
|
-
}, "strip", z.ZodTypeAny, {
|
|
469
|
-
memory: number;
|
|
470
|
-
region: string;
|
|
471
|
-
sku: string;
|
|
472
|
-
provider: string;
|
|
473
|
-
sub_region: string;
|
|
474
|
-
csp_region: string;
|
|
475
|
-
csp_zone: string;
|
|
476
|
-
instance_type: string;
|
|
477
|
-
architecture: string;
|
|
478
|
-
os: string;
|
|
479
|
-
vcpu: number;
|
|
480
|
-
local_storage: number;
|
|
481
|
-
price: number;
|
|
482
|
-
accelerator_name?: string | undefined;
|
|
483
|
-
accelerator_manufacturer?: string | undefined;
|
|
484
|
-
accelerator_count?: number | undefined;
|
|
485
|
-
accelerator_memory?: number | undefined;
|
|
486
|
-
pods_capacity?: number | undefined;
|
|
487
|
-
capacity_type?: string | undefined;
|
|
488
|
-
available?: boolean | undefined;
|
|
489
|
-
}, {
|
|
490
|
-
memory: number;
|
|
491
|
-
region: string;
|
|
492
|
-
sku: string;
|
|
493
|
-
provider: string;
|
|
494
|
-
sub_region: string;
|
|
495
|
-
csp_region: string;
|
|
496
|
-
csp_zone: string;
|
|
497
|
-
instance_type: string;
|
|
498
|
-
architecture: string;
|
|
499
|
-
os: string;
|
|
500
|
-
vcpu: number;
|
|
501
|
-
local_storage: number;
|
|
502
|
-
price: number;
|
|
503
|
-
accelerator_name?: string | undefined;
|
|
504
|
-
accelerator_manufacturer?: string | undefined;
|
|
505
|
-
accelerator_count?: number | undefined;
|
|
506
|
-
accelerator_memory?: number | undefined;
|
|
507
|
-
pods_capacity?: number | undefined;
|
|
508
|
-
capacity_type?: string | undefined;
|
|
509
|
-
available?: boolean | undefined;
|
|
510
|
-
}>;
|
|
511
489
|
export declare const zInvite: z.ZodObject<{
|
|
512
490
|
id: z.ZodOptional<z.ZodString>;
|
|
513
491
|
organization_id: z.ZodOptional<z.ZodString>;
|
|
@@ -563,7 +541,7 @@ export declare const zInvoice: z.ZodObject<{
|
|
|
563
541
|
catalogEffectiveDate: z.ZodOptional<z.ZodString>;
|
|
564
542
|
childItems: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
|
|
565
543
|
}, "strip", z.ZodTypeAny, {
|
|
566
|
-
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;
|
|
567
545
|
id?: string | undefined;
|
|
568
546
|
description?: string | undefined;
|
|
569
547
|
amount?: number | undefined;
|
|
@@ -585,7 +563,7 @@ export declare const zInvoice: z.ZodObject<{
|
|
|
585
563
|
catalogEffectiveDate?: string | undefined;
|
|
586
564
|
childItems?: unknown[] | undefined;
|
|
587
565
|
}, {
|
|
588
|
-
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;
|
|
589
567
|
id?: string | undefined;
|
|
590
568
|
description?: string | undefined;
|
|
591
569
|
amount?: number | undefined;
|
|
@@ -630,7 +608,7 @@ export declare const zInvoice: z.ZodObject<{
|
|
|
630
608
|
catalogEffectiveDate: z.ZodOptional<z.ZodString>;
|
|
631
609
|
childItems: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
|
|
632
610
|
}, "strip", z.ZodTypeAny, {
|
|
633
|
-
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;
|
|
634
612
|
id?: string | undefined;
|
|
635
613
|
description?: string | undefined;
|
|
636
614
|
amount?: number | undefined;
|
|
@@ -652,7 +630,7 @@ export declare const zInvoice: z.ZodObject<{
|
|
|
652
630
|
catalogEffectiveDate?: string | undefined;
|
|
653
631
|
childItems?: unknown[] | undefined;
|
|
654
632
|
}, {
|
|
655
|
-
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;
|
|
656
634
|
id?: string | undefined;
|
|
657
635
|
description?: string | undefined;
|
|
658
636
|
amount?: number | undefined;
|
|
@@ -675,12 +653,11 @@ export declare const zInvoice: z.ZodObject<{
|
|
|
675
653
|
childItems?: unknown[] | undefined;
|
|
676
654
|
}>, "many">>;
|
|
677
655
|
}, "strip", z.ZodTypeAny, {
|
|
678
|
-
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;
|
|
679
657
|
id?: string | undefined;
|
|
680
658
|
status?: "DRAFT" | "COMMITTED" | "VOID" | undefined;
|
|
681
|
-
amount?: number | undefined;
|
|
682
659
|
items?: {
|
|
683
|
-
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;
|
|
684
661
|
id?: string | undefined;
|
|
685
662
|
description?: string | undefined;
|
|
686
663
|
amount?: number | undefined;
|
|
@@ -703,6 +680,7 @@ export declare const zInvoice: z.ZodObject<{
|
|
|
703
680
|
childItems?: unknown[] | undefined;
|
|
704
681
|
}[] | undefined;
|
|
705
682
|
organizationId?: string | undefined;
|
|
683
|
+
amount?: number | undefined;
|
|
706
684
|
creditAdj?: number | undefined;
|
|
707
685
|
refundAdj?: number | undefined;
|
|
708
686
|
invoiceDate?: string | undefined;
|
|
@@ -711,7 +689,7 @@ export declare const zInvoice: z.ZodObject<{
|
|
|
711
689
|
balance?: number | undefined;
|
|
712
690
|
bundleKeys?: string | undefined;
|
|
713
691
|
credits?: {
|
|
714
|
-
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;
|
|
715
693
|
id?: string | undefined;
|
|
716
694
|
description?: string | undefined;
|
|
717
695
|
amount?: number | undefined;
|
|
@@ -734,12 +712,11 @@ export declare const zInvoice: z.ZodObject<{
|
|
|
734
712
|
childItems?: unknown[] | undefined;
|
|
735
713
|
}[] | undefined;
|
|
736
714
|
}, {
|
|
737
|
-
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;
|
|
738
716
|
id?: string | undefined;
|
|
739
717
|
status?: "DRAFT" | "COMMITTED" | "VOID" | undefined;
|
|
740
|
-
amount?: number | undefined;
|
|
741
718
|
items?: {
|
|
742
|
-
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;
|
|
743
720
|
id?: string | undefined;
|
|
744
721
|
description?: string | undefined;
|
|
745
722
|
amount?: number | undefined;
|
|
@@ -762,6 +739,7 @@ export declare const zInvoice: z.ZodObject<{
|
|
|
762
739
|
childItems?: unknown[] | undefined;
|
|
763
740
|
}[] | undefined;
|
|
764
741
|
organizationId?: string | undefined;
|
|
742
|
+
amount?: number | undefined;
|
|
765
743
|
creditAdj?: number | undefined;
|
|
766
744
|
refundAdj?: number | undefined;
|
|
767
745
|
invoiceDate?: string | undefined;
|
|
@@ -770,7 +748,7 @@ export declare const zInvoice: z.ZodObject<{
|
|
|
770
748
|
balance?: number | undefined;
|
|
771
749
|
bundleKeys?: string | undefined;
|
|
772
750
|
credits?: {
|
|
773
|
-
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;
|
|
774
752
|
id?: string | undefined;
|
|
775
753
|
description?: string | undefined;
|
|
776
754
|
amount?: number | undefined;
|
|
@@ -793,145 +771,79 @@ export declare const zInvoice: z.ZodObject<{
|
|
|
793
771
|
childItems?: unknown[] | undefined;
|
|
794
772
|
}[] | undefined;
|
|
795
773
|
}>;
|
|
796
|
-
export declare const
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
|
|
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<{
|
|
804
826
|
email: z.ZodString;
|
|
805
827
|
first_name: z.ZodString;
|
|
806
828
|
last_name: z.ZodString;
|
|
829
|
+
company_name: z.ZodString;
|
|
830
|
+
password: z.ZodString;
|
|
807
831
|
}, "strip", z.ZodTypeAny, {
|
|
808
832
|
email: string;
|
|
809
833
|
first_name: string;
|
|
810
834
|
last_name: string;
|
|
811
|
-
|
|
812
|
-
|
|
813
|
-
address1?: string | undefined;
|
|
814
|
-
address2?: string | undefined;
|
|
815
|
-
postalCode?: string | undefined;
|
|
816
|
-
city?: string | undefined;
|
|
817
|
-
phone?: string | undefined;
|
|
835
|
+
company_name: string;
|
|
836
|
+
password: string;
|
|
818
837
|
}, {
|
|
819
838
|
email: string;
|
|
820
839
|
first_name: string;
|
|
821
840
|
last_name: string;
|
|
822
|
-
|
|
823
|
-
country?: string | undefined;
|
|
824
|
-
address1?: string | undefined;
|
|
825
|
-
address2?: string | undefined;
|
|
826
|
-
postalCode?: string | undefined;
|
|
827
|
-
city?: string | undefined;
|
|
828
|
-
phone?: string | undefined;
|
|
829
|
-
}>;
|
|
830
|
-
export declare const zOrganizationCreateInput: z.ZodObject<{
|
|
831
|
-
name: z.ZodString;
|
|
832
|
-
contactInfo: z.ZodObject<{
|
|
833
|
-
address1: z.ZodOptional<z.ZodString>;
|
|
834
|
-
address2: z.ZodOptional<z.ZodString>;
|
|
835
|
-
postalCode: z.ZodOptional<z.ZodString>;
|
|
836
|
-
city: z.ZodOptional<z.ZodString>;
|
|
837
|
-
state: z.ZodOptional<z.ZodString>;
|
|
838
|
-
country: z.ZodOptional<z.ZodString>;
|
|
839
|
-
phone: z.ZodOptional<z.ZodString>;
|
|
840
|
-
email: z.ZodString;
|
|
841
|
-
first_name: z.ZodString;
|
|
842
|
-
last_name: z.ZodString;
|
|
843
|
-
}, "strip", z.ZodTypeAny, {
|
|
844
|
-
email: string;
|
|
845
|
-
first_name: string;
|
|
846
|
-
last_name: string;
|
|
847
|
-
state?: string | undefined;
|
|
848
|
-
country?: string | undefined;
|
|
849
|
-
address1?: string | undefined;
|
|
850
|
-
address2?: string | undefined;
|
|
851
|
-
postalCode?: string | undefined;
|
|
852
|
-
city?: string | undefined;
|
|
853
|
-
phone?: string | undefined;
|
|
854
|
-
}, {
|
|
855
|
-
email: string;
|
|
856
|
-
first_name: string;
|
|
857
|
-
last_name: string;
|
|
858
|
-
state?: string | undefined;
|
|
859
|
-
country?: string | undefined;
|
|
860
|
-
address1?: string | undefined;
|
|
861
|
-
address2?: string | undefined;
|
|
862
|
-
postalCode?: string | undefined;
|
|
863
|
-
city?: string | undefined;
|
|
864
|
-
phone?: string | undefined;
|
|
865
|
-
}>;
|
|
866
|
-
password: z.ZodString;
|
|
867
|
-
}, "strip", z.ZodTypeAny, {
|
|
868
|
-
name: string;
|
|
869
|
-
contactInfo: {
|
|
870
|
-
email: string;
|
|
871
|
-
first_name: string;
|
|
872
|
-
last_name: string;
|
|
873
|
-
state?: string | undefined;
|
|
874
|
-
country?: string | undefined;
|
|
875
|
-
address1?: string | undefined;
|
|
876
|
-
address2?: string | undefined;
|
|
877
|
-
postalCode?: string | undefined;
|
|
878
|
-
city?: string | undefined;
|
|
879
|
-
phone?: string | undefined;
|
|
880
|
-
};
|
|
881
|
-
password: string;
|
|
882
|
-
}, {
|
|
883
|
-
name: string;
|
|
884
|
-
contactInfo: {
|
|
885
|
-
email: string;
|
|
886
|
-
first_name: string;
|
|
887
|
-
last_name: string;
|
|
888
|
-
state?: string | undefined;
|
|
889
|
-
country?: string | undefined;
|
|
890
|
-
address1?: string | undefined;
|
|
891
|
-
address2?: string | undefined;
|
|
892
|
-
postalCode?: string | undefined;
|
|
893
|
-
city?: string | undefined;
|
|
894
|
-
phone?: string | undefined;
|
|
895
|
-
};
|
|
841
|
+
company_name: string;
|
|
896
842
|
password: string;
|
|
897
843
|
}>;
|
|
898
844
|
export declare const zOrganization: z.ZodObject<{
|
|
899
|
-
name: z.ZodString;
|
|
900
|
-
contactInfo: z.ZodObject<{
|
|
901
|
-
address1: z.ZodOptional<z.ZodString>;
|
|
902
|
-
address2: z.ZodOptional<z.ZodString>;
|
|
903
|
-
postalCode: z.ZodOptional<z.ZodString>;
|
|
904
|
-
city: z.ZodOptional<z.ZodString>;
|
|
905
|
-
state: z.ZodOptional<z.ZodString>;
|
|
906
|
-
country: z.ZodOptional<z.ZodString>;
|
|
907
|
-
phone: z.ZodOptional<z.ZodString>;
|
|
908
|
-
email: z.ZodString;
|
|
909
|
-
first_name: z.ZodString;
|
|
910
|
-
last_name: z.ZodString;
|
|
911
|
-
}, "strip", z.ZodTypeAny, {
|
|
912
|
-
email: string;
|
|
913
|
-
first_name: string;
|
|
914
|
-
last_name: string;
|
|
915
|
-
state?: string | undefined;
|
|
916
|
-
country?: string | undefined;
|
|
917
|
-
address1?: string | undefined;
|
|
918
|
-
address2?: string | undefined;
|
|
919
|
-
postalCode?: string | undefined;
|
|
920
|
-
city?: string | undefined;
|
|
921
|
-
phone?: string | undefined;
|
|
922
|
-
}, {
|
|
923
|
-
email: string;
|
|
924
|
-
first_name: string;
|
|
925
|
-
last_name: string;
|
|
926
|
-
state?: string | undefined;
|
|
927
|
-
country?: string | undefined;
|
|
928
|
-
address1?: string | undefined;
|
|
929
|
-
address2?: string | undefined;
|
|
930
|
-
postalCode?: string | undefined;
|
|
931
|
-
city?: string | undefined;
|
|
932
|
-
phone?: string | undefined;
|
|
933
|
-
}>;
|
|
934
845
|
id: z.ZodString;
|
|
846
|
+
name: z.ZodOptional<z.ZodString>;
|
|
935
847
|
date_created: z.ZodString;
|
|
936
848
|
quota: z.ZodObject<{
|
|
937
849
|
basic_clusters_max: z.ZodNumber;
|
|
@@ -939,7 +851,6 @@ export declare const zOrganization: z.ZodObject<{
|
|
|
939
851
|
pro_clusters_max: z.ZodNumber;
|
|
940
852
|
pro_clusters_available: z.ZodNumber;
|
|
941
853
|
fleets_max: z.ZodNumber;
|
|
942
|
-
managed_fleets_cpu_max: z.ZodNumber;
|
|
943
854
|
cluster_tiers: z.ZodArray<z.ZodString, "many">;
|
|
944
855
|
regions: z.ZodArray<z.ZodString, "many">;
|
|
945
856
|
versions: z.ZodArray<z.ZodObject<{
|
|
@@ -962,7 +873,6 @@ export declare const zOrganization: z.ZodObject<{
|
|
|
962
873
|
pro_clusters_max: number;
|
|
963
874
|
pro_clusters_available: number;
|
|
964
875
|
fleets_max: number;
|
|
965
|
-
managed_fleets_cpu_max: number;
|
|
966
876
|
cluster_tiers: string[];
|
|
967
877
|
regions: string[];
|
|
968
878
|
}, {
|
|
@@ -975,29 +885,14 @@ export declare const zOrganization: z.ZodObject<{
|
|
|
975
885
|
pro_clusters_max: number;
|
|
976
886
|
pro_clusters_available: number;
|
|
977
887
|
fleets_max: number;
|
|
978
|
-
managed_fleets_cpu_max: number;
|
|
979
888
|
cluster_tiers: string[];
|
|
980
889
|
regions: string[];
|
|
981
890
|
}>;
|
|
982
|
-
pending_actions: z.ZodArray<z.ZodEnum<["signup-billing-address", "signup-payment-method", "signup-invite-team", "signup-create-cluster"]>, "many">;
|
|
983
891
|
status: z.ZodEnum<["active", "closed", "suspended"]>;
|
|
984
892
|
}, "strip", z.ZodTypeAny, {
|
|
985
|
-
name: string;
|
|
986
893
|
id: string;
|
|
987
894
|
status: "active" | "closed" | "suspended";
|
|
988
895
|
date_created: string;
|
|
989
|
-
contactInfo: {
|
|
990
|
-
email: string;
|
|
991
|
-
first_name: string;
|
|
992
|
-
last_name: string;
|
|
993
|
-
state?: string | undefined;
|
|
994
|
-
country?: string | undefined;
|
|
995
|
-
address1?: string | undefined;
|
|
996
|
-
address2?: string | undefined;
|
|
997
|
-
postalCode?: string | undefined;
|
|
998
|
-
city?: string | undefined;
|
|
999
|
-
phone?: string | undefined;
|
|
1000
|
-
};
|
|
1001
896
|
quota: {
|
|
1002
897
|
versions: {
|
|
1003
898
|
id: string;
|
|
@@ -1008,28 +903,14 @@ export declare const zOrganization: z.ZodObject<{
|
|
|
1008
903
|
pro_clusters_max: number;
|
|
1009
904
|
pro_clusters_available: number;
|
|
1010
905
|
fleets_max: number;
|
|
1011
|
-
managed_fleets_cpu_max: number;
|
|
1012
906
|
cluster_tiers: string[];
|
|
1013
907
|
regions: string[];
|
|
1014
908
|
};
|
|
1015
|
-
|
|
909
|
+
name?: string | undefined;
|
|
1016
910
|
}, {
|
|
1017
|
-
name: string;
|
|
1018
911
|
id: string;
|
|
1019
912
|
status: "active" | "closed" | "suspended";
|
|
1020
913
|
date_created: string;
|
|
1021
|
-
contactInfo: {
|
|
1022
|
-
email: string;
|
|
1023
|
-
first_name: string;
|
|
1024
|
-
last_name: string;
|
|
1025
|
-
state?: string | undefined;
|
|
1026
|
-
country?: string | undefined;
|
|
1027
|
-
address1?: string | undefined;
|
|
1028
|
-
address2?: string | undefined;
|
|
1029
|
-
postalCode?: string | undefined;
|
|
1030
|
-
city?: string | undefined;
|
|
1031
|
-
phone?: string | undefined;
|
|
1032
|
-
};
|
|
1033
914
|
quota: {
|
|
1034
915
|
versions: {
|
|
1035
916
|
id: string;
|
|
@@ -1040,75 +921,9 @@ export declare const zOrganization: z.ZodObject<{
|
|
|
1040
921
|
pro_clusters_max: number;
|
|
1041
922
|
pro_clusters_available: number;
|
|
1042
923
|
fleets_max: number;
|
|
1043
|
-
managed_fleets_cpu_max: number;
|
|
1044
924
|
cluster_tiers: string[];
|
|
1045
925
|
regions: string[];
|
|
1046
926
|
};
|
|
1047
|
-
pending_actions: ("signup-payment-method" | "signup-billing-address" | "signup-invite-team" | "signup-create-cluster")[];
|
|
1048
|
-
}>;
|
|
1049
|
-
export declare const zOrganizationUpdateInput: z.ZodObject<{
|
|
1050
|
-
name: z.ZodOptional<z.ZodString>;
|
|
1051
|
-
contactInfo: z.ZodObject<{
|
|
1052
|
-
address1: z.ZodOptional<z.ZodString>;
|
|
1053
|
-
address2: z.ZodOptional<z.ZodString>;
|
|
1054
|
-
postalCode: z.ZodOptional<z.ZodString>;
|
|
1055
|
-
city: z.ZodOptional<z.ZodString>;
|
|
1056
|
-
state: z.ZodOptional<z.ZodString>;
|
|
1057
|
-
country: z.ZodOptional<z.ZodString>;
|
|
1058
|
-
phone: z.ZodOptional<z.ZodString>;
|
|
1059
|
-
email: z.ZodString;
|
|
1060
|
-
first_name: z.ZodString;
|
|
1061
|
-
last_name: z.ZodString;
|
|
1062
|
-
}, "strip", z.ZodTypeAny, {
|
|
1063
|
-
email: string;
|
|
1064
|
-
first_name: string;
|
|
1065
|
-
last_name: string;
|
|
1066
|
-
state?: string | undefined;
|
|
1067
|
-
country?: string | undefined;
|
|
1068
|
-
address1?: string | undefined;
|
|
1069
|
-
address2?: string | undefined;
|
|
1070
|
-
postalCode?: string | undefined;
|
|
1071
|
-
city?: string | undefined;
|
|
1072
|
-
phone?: string | undefined;
|
|
1073
|
-
}, {
|
|
1074
|
-
email: string;
|
|
1075
|
-
first_name: string;
|
|
1076
|
-
last_name: string;
|
|
1077
|
-
state?: string | undefined;
|
|
1078
|
-
country?: string | undefined;
|
|
1079
|
-
address1?: string | undefined;
|
|
1080
|
-
address2?: string | undefined;
|
|
1081
|
-
postalCode?: string | undefined;
|
|
1082
|
-
city?: string | undefined;
|
|
1083
|
-
phone?: string | undefined;
|
|
1084
|
-
}>;
|
|
1085
|
-
}, "strip", z.ZodTypeAny, {
|
|
1086
|
-
contactInfo: {
|
|
1087
|
-
email: string;
|
|
1088
|
-
first_name: string;
|
|
1089
|
-
last_name: string;
|
|
1090
|
-
state?: string | undefined;
|
|
1091
|
-
country?: string | undefined;
|
|
1092
|
-
address1?: string | undefined;
|
|
1093
|
-
address2?: string | undefined;
|
|
1094
|
-
postalCode?: string | undefined;
|
|
1095
|
-
city?: string | undefined;
|
|
1096
|
-
phone?: string | undefined;
|
|
1097
|
-
};
|
|
1098
|
-
name?: string | undefined;
|
|
1099
|
-
}, {
|
|
1100
|
-
contactInfo: {
|
|
1101
|
-
email: string;
|
|
1102
|
-
first_name: string;
|
|
1103
|
-
last_name: string;
|
|
1104
|
-
state?: string | undefined;
|
|
1105
|
-
country?: string | undefined;
|
|
1106
|
-
address1?: string | undefined;
|
|
1107
|
-
address2?: string | undefined;
|
|
1108
|
-
postalCode?: string | undefined;
|
|
1109
|
-
city?: string | undefined;
|
|
1110
|
-
phone?: string | undefined;
|
|
1111
|
-
};
|
|
1112
927
|
name?: string | undefined;
|
|
1113
928
|
}>;
|
|
1114
929
|
export declare const zPaymentMethod: z.ZodObject<{
|
|
@@ -1126,7 +941,7 @@ export declare const zPaymentMethod: z.ZodObject<{
|
|
|
1126
941
|
last4: string;
|
|
1127
942
|
exp_month: number;
|
|
1128
943
|
exp_year: number;
|
|
1129
|
-
brand: "unknown" | "
|
|
944
|
+
brand: "unknown" | "amex" | "diners" | "discover" | "eftpos_au" | "jcb" | "mastercard" | "unionpay" | "visa";
|
|
1130
945
|
}, {
|
|
1131
946
|
type: "card";
|
|
1132
947
|
id: string;
|
|
@@ -1134,17 +949,17 @@ export declare const zPaymentMethod: z.ZodObject<{
|
|
|
1134
949
|
last4: string;
|
|
1135
950
|
exp_month: number;
|
|
1136
951
|
exp_year: number;
|
|
1137
|
-
brand: "unknown" | "
|
|
952
|
+
brand: "unknown" | "amex" | "diners" | "discover" | "eftpos_au" | "jcb" | "mastercard" | "unionpay" | "visa";
|
|
1138
953
|
}>;
|
|
1139
954
|
export declare const zTokenCreateInput: z.ZodObject<{
|
|
1140
955
|
name: z.ZodString;
|
|
1141
956
|
role: z.ZodEnum<["Administrator", "User"]>;
|
|
1142
957
|
}, "strip", z.ZodTypeAny, {
|
|
1143
958
|
name: string;
|
|
1144
|
-
role: "
|
|
959
|
+
role: "Administrator" | "User";
|
|
1145
960
|
}, {
|
|
1146
961
|
name: string;
|
|
1147
|
-
role: "
|
|
962
|
+
role: "Administrator" | "User";
|
|
1148
963
|
}>;
|
|
1149
964
|
export declare const zToken: z.ZodObject<{
|
|
1150
965
|
name: z.ZodString;
|
|
@@ -1154,13 +969,13 @@ export declare const zToken: z.ZodObject<{
|
|
|
1154
969
|
date_created: z.ZodString;
|
|
1155
970
|
}, "strip", z.ZodTypeAny, {
|
|
1156
971
|
name: string;
|
|
1157
|
-
role: "
|
|
972
|
+
role: "Administrator" | "User";
|
|
1158
973
|
date_created: string;
|
|
1159
974
|
id?: string | undefined;
|
|
1160
975
|
secret?: string | undefined;
|
|
1161
976
|
}, {
|
|
1162
977
|
name: string;
|
|
1163
|
-
role: "
|
|
978
|
+
role: "Administrator" | "User";
|
|
1164
979
|
date_created: string;
|
|
1165
980
|
id?: string | undefined;
|
|
1166
981
|
secret?: string | undefined;
|
|
@@ -1170,26 +985,44 @@ export declare const zTokenUpdateInput: z.ZodObject<{
|
|
|
1170
985
|
role: z.ZodOptional<z.ZodEnum<["Administrator", "User"]>>;
|
|
1171
986
|
}, "strip", z.ZodTypeAny, {
|
|
1172
987
|
name?: string | undefined;
|
|
1173
|
-
role?: "
|
|
988
|
+
role?: "Administrator" | "User" | undefined;
|
|
1174
989
|
}, {
|
|
1175
990
|
name?: string | undefined;
|
|
1176
|
-
role?: "
|
|
991
|
+
role?: "Administrator" | "User" | undefined;
|
|
1177
992
|
}>;
|
|
1178
993
|
export declare const zUsage: z.ZodObject<{
|
|
1179
|
-
|
|
1180
|
-
|
|
1181
|
-
|
|
1182
|
-
|
|
994
|
+
hour: z.ZodOptional<z.ZodString>;
|
|
995
|
+
cluster_id: z.ZodString;
|
|
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"]>;
|
|
998
|
+
node_name: z.ZodString;
|
|
999
|
+
sku: z.ZodString;
|
|
1000
|
+
cpu: z.ZodUnion<[z.ZodNumber, z.ZodEnum<[""]>]>;
|
|
1001
|
+
price: z.ZodUnion<[z.ZodNumber, z.ZodEnum<[""]>]>;
|
|
1002
|
+
value: z.ZodUnion<[z.ZodNumber, z.ZodEnum<[""]>]>;
|
|
1003
|
+
total: z.ZodUnion<[z.ZodNumber, z.ZodEnum<[""]>]>;
|
|
1183
1004
|
}, "strip", z.ZodTypeAny, {
|
|
1184
|
-
|
|
1185
|
-
|
|
1186
|
-
|
|
1187
|
-
|
|
1005
|
+
total: number | "";
|
|
1006
|
+
cpu: number | "";
|
|
1007
|
+
product: "cfke_controlplane" | "cfke_connected_nodes" | "infra_compute" | "infra_storage" | "infra_loadbalancing" | "infra_traffic" | "cfcr_storage";
|
|
1008
|
+
value: number | "";
|
|
1009
|
+
cluster_id: string;
|
|
1010
|
+
cluster_tier: "" | "basic" | "pro";
|
|
1011
|
+
node_name: string;
|
|
1012
|
+
sku: string;
|
|
1013
|
+
price: number | "";
|
|
1014
|
+
hour?: string | undefined;
|
|
1188
1015
|
}, {
|
|
1189
|
-
|
|
1190
|
-
|
|
1191
|
-
|
|
1192
|
-
|
|
1016
|
+
total: number | "";
|
|
1017
|
+
cpu: number | "";
|
|
1018
|
+
product: "cfke_controlplane" | "cfke_connected_nodes" | "infra_compute" | "infra_storage" | "infra_loadbalancing" | "infra_traffic" | "cfcr_storage";
|
|
1019
|
+
value: number | "";
|
|
1020
|
+
cluster_id: string;
|
|
1021
|
+
cluster_tier: "" | "basic" | "pro";
|
|
1022
|
+
node_name: string;
|
|
1023
|
+
sku: string;
|
|
1024
|
+
price: number | "";
|
|
1025
|
+
hour?: string | undefined;
|
|
1193
1026
|
}>;
|
|
1194
1027
|
export declare const zUserCreateInput: z.ZodObject<{
|
|
1195
1028
|
email: z.ZodString;
|
|
@@ -1205,7 +1038,7 @@ export declare const zUserCreateInput: z.ZodObject<{
|
|
|
1205
1038
|
first_name: string;
|
|
1206
1039
|
last_name: string;
|
|
1207
1040
|
password: string;
|
|
1208
|
-
role?: "
|
|
1041
|
+
role?: "Administrator" | "User" | undefined;
|
|
1209
1042
|
status?: "active" | "inactive" | undefined;
|
|
1210
1043
|
}, {
|
|
1211
1044
|
code: string;
|
|
@@ -1213,7 +1046,7 @@ export declare const zUserCreateInput: z.ZodObject<{
|
|
|
1213
1046
|
first_name: string;
|
|
1214
1047
|
last_name: string;
|
|
1215
1048
|
password: string;
|
|
1216
|
-
role?: "
|
|
1049
|
+
role?: "Administrator" | "User" | undefined;
|
|
1217
1050
|
status?: "active" | "inactive" | undefined;
|
|
1218
1051
|
}>;
|
|
1219
1052
|
export declare const zUser: z.ZodObject<{
|
|
@@ -1224,40 +1057,22 @@ export declare const zUser: z.ZodObject<{
|
|
|
1224
1057
|
status: z.ZodEnum<["active", "inactive"]>;
|
|
1225
1058
|
id: z.ZodString;
|
|
1226
1059
|
date_created: z.ZodString;
|
|
1227
|
-
cluster_permissions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1228
|
-
cluster_id: z.ZodString;
|
|
1229
|
-
permissions: z.ZodEnum<["readwrite", "readonly"]>;
|
|
1230
|
-
}, "strip", z.ZodTypeAny, {
|
|
1231
|
-
cluster_id: string;
|
|
1232
|
-
permissions: "readonly" | "readwrite";
|
|
1233
|
-
}, {
|
|
1234
|
-
cluster_id: string;
|
|
1235
|
-
permissions: "readonly" | "readwrite";
|
|
1236
|
-
}>, "many">>;
|
|
1237
1060
|
}, "strip", z.ZodTypeAny, {
|
|
1238
1061
|
id: string;
|
|
1239
|
-
role: "
|
|
1062
|
+
role: "Administrator" | "User";
|
|
1240
1063
|
email: string;
|
|
1241
1064
|
status: "active" | "inactive";
|
|
1242
|
-
date_created: string;
|
|
1243
1065
|
first_name: string;
|
|
1244
1066
|
last_name: string;
|
|
1245
|
-
|
|
1246
|
-
cluster_id: string;
|
|
1247
|
-
permissions: "readonly" | "readwrite";
|
|
1248
|
-
}[] | undefined;
|
|
1067
|
+
date_created: string;
|
|
1249
1068
|
}, {
|
|
1250
1069
|
id: string;
|
|
1251
|
-
role: "
|
|
1070
|
+
role: "Administrator" | "User";
|
|
1252
1071
|
email: string;
|
|
1253
1072
|
status: "active" | "inactive";
|
|
1254
|
-
date_created: string;
|
|
1255
1073
|
first_name: string;
|
|
1256
1074
|
last_name: string;
|
|
1257
|
-
|
|
1258
|
-
cluster_id: string;
|
|
1259
|
-
permissions: "readonly" | "readwrite";
|
|
1260
|
-
}[] | undefined;
|
|
1075
|
+
date_created: string;
|
|
1261
1076
|
}>;
|
|
1262
1077
|
export declare const zUserUpdateInput: z.ZodObject<{
|
|
1263
1078
|
email: z.ZodOptional<z.ZodString>;
|
|
@@ -1266,35 +1081,62 @@ export declare const zUserUpdateInput: z.ZodObject<{
|
|
|
1266
1081
|
role: z.ZodOptional<z.ZodEnum<["Administrator", "User"]>>;
|
|
1267
1082
|
status: z.ZodOptional<z.ZodEnum<["active", "inactive"]>>;
|
|
1268
1083
|
}, "strip", z.ZodTypeAny, {
|
|
1269
|
-
role?: "
|
|
1084
|
+
role?: "Administrator" | "User" | undefined;
|
|
1270
1085
|
email?: string | undefined;
|
|
1271
1086
|
status?: "active" | "inactive" | undefined;
|
|
1272
1087
|
first_name?: string | undefined;
|
|
1273
1088
|
last_name?: string | undefined;
|
|
1274
1089
|
}, {
|
|
1275
|
-
role?: "
|
|
1090
|
+
role?: "Administrator" | "User" | undefined;
|
|
1276
1091
|
email?: string | undefined;
|
|
1277
1092
|
status?: "active" | "inactive" | undefined;
|
|
1278
1093
|
first_name?: string | undefined;
|
|
1279
1094
|
last_name?: string | undefined;
|
|
1280
1095
|
}>;
|
|
1096
|
+
/**
|
|
1097
|
+
* An array of usage records.
|
|
1098
|
+
*/
|
|
1281
1099
|
export declare const zGetUsageResponse: z.ZodArray<z.ZodObject<{
|
|
1282
|
-
|
|
1283
|
-
|
|
1284
|
-
|
|
1285
|
-
|
|
1100
|
+
hour: z.ZodOptional<z.ZodString>;
|
|
1101
|
+
cluster_id: z.ZodString;
|
|
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"]>;
|
|
1104
|
+
node_name: z.ZodString;
|
|
1105
|
+
sku: z.ZodString;
|
|
1106
|
+
cpu: z.ZodUnion<[z.ZodNumber, z.ZodEnum<[""]>]>;
|
|
1107
|
+
price: z.ZodUnion<[z.ZodNumber, z.ZodEnum<[""]>]>;
|
|
1108
|
+
value: z.ZodUnion<[z.ZodNumber, z.ZodEnum<[""]>]>;
|
|
1109
|
+
total: z.ZodUnion<[z.ZodNumber, z.ZodEnum<[""]>]>;
|
|
1286
1110
|
}, "strip", z.ZodTypeAny, {
|
|
1287
|
-
|
|
1288
|
-
|
|
1289
|
-
|
|
1290
|
-
|
|
1111
|
+
total: number | "";
|
|
1112
|
+
cpu: number | "";
|
|
1113
|
+
product: "cfke_controlplane" | "cfke_connected_nodes" | "infra_compute" | "infra_storage" | "infra_loadbalancing" | "infra_traffic" | "cfcr_storage";
|
|
1114
|
+
value: number | "";
|
|
1115
|
+
cluster_id: string;
|
|
1116
|
+
cluster_tier: "" | "basic" | "pro";
|
|
1117
|
+
node_name: string;
|
|
1118
|
+
sku: string;
|
|
1119
|
+
price: number | "";
|
|
1120
|
+
hour?: string | undefined;
|
|
1291
1121
|
}, {
|
|
1292
|
-
|
|
1293
|
-
|
|
1294
|
-
|
|
1295
|
-
|
|
1122
|
+
total: number | "";
|
|
1123
|
+
cpu: number | "";
|
|
1124
|
+
product: "cfke_controlplane" | "cfke_connected_nodes" | "infra_compute" | "infra_storage" | "infra_loadbalancing" | "infra_traffic" | "cfcr_storage";
|
|
1125
|
+
value: number | "";
|
|
1126
|
+
cluster_id: string;
|
|
1127
|
+
cluster_tier: "" | "basic" | "pro";
|
|
1128
|
+
node_name: string;
|
|
1129
|
+
sku: string;
|
|
1130
|
+
price: number | "";
|
|
1131
|
+
hour?: string | undefined;
|
|
1296
1132
|
}>, "many">;
|
|
1133
|
+
/**
|
|
1134
|
+
* Current balance of the organization in USD as a floating-point number.
|
|
1135
|
+
*/
|
|
1297
1136
|
export declare const zGetBalanceResponse: z.ZodNumber;
|
|
1137
|
+
/**
|
|
1138
|
+
* Redacted payment card information.
|
|
1139
|
+
*/
|
|
1298
1140
|
export declare const zGetPaymentMethodResponse: z.ZodObject<{
|
|
1299
1141
|
id: z.ZodString;
|
|
1300
1142
|
setup: z.ZodBoolean;
|
|
@@ -1310,7 +1152,7 @@ export declare const zGetPaymentMethodResponse: z.ZodObject<{
|
|
|
1310
1152
|
last4: string;
|
|
1311
1153
|
exp_month: number;
|
|
1312
1154
|
exp_year: number;
|
|
1313
|
-
brand: "unknown" | "
|
|
1155
|
+
brand: "unknown" | "amex" | "diners" | "discover" | "eftpos_au" | "jcb" | "mastercard" | "unionpay" | "visa";
|
|
1314
1156
|
}, {
|
|
1315
1157
|
type: "card";
|
|
1316
1158
|
id: string;
|
|
@@ -1318,8 +1160,12 @@ export declare const zGetPaymentMethodResponse: z.ZodObject<{
|
|
|
1318
1160
|
last4: string;
|
|
1319
1161
|
exp_month: number;
|
|
1320
1162
|
exp_year: number;
|
|
1321
|
-
brand: "unknown" | "
|
|
1163
|
+
brand: "unknown" | "amex" | "diners" | "discover" | "eftpos_au" | "jcb" | "mastercard" | "unionpay" | "visa";
|
|
1322
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
|
+
*/
|
|
1323
1169
|
export declare const zGetPaymentMethodSecretResponse: z.ZodObject<{
|
|
1324
1170
|
id: z.ZodOptional<z.ZodString>;
|
|
1325
1171
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1327,6 +1173,17 @@ export declare const zGetPaymentMethodSecretResponse: z.ZodObject<{
|
|
|
1327
1173
|
}, {
|
|
1328
1174
|
id?: string | undefined;
|
|
1329
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
|
+
*/
|
|
1330
1187
|
export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
1331
1188
|
id: z.ZodOptional<z.ZodString>;
|
|
1332
1189
|
organizationId: z.ZodOptional<z.ZodString>;
|
|
@@ -1363,7 +1220,7 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1363
1220
|
catalogEffectiveDate: z.ZodOptional<z.ZodString>;
|
|
1364
1221
|
childItems: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
|
|
1365
1222
|
}, "strip", z.ZodTypeAny, {
|
|
1366
|
-
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;
|
|
1367
1224
|
id?: string | undefined;
|
|
1368
1225
|
description?: string | undefined;
|
|
1369
1226
|
amount?: number | undefined;
|
|
@@ -1385,7 +1242,7 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1385
1242
|
catalogEffectiveDate?: string | undefined;
|
|
1386
1243
|
childItems?: unknown[] | undefined;
|
|
1387
1244
|
}, {
|
|
1388
|
-
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;
|
|
1389
1246
|
id?: string | undefined;
|
|
1390
1247
|
description?: string | undefined;
|
|
1391
1248
|
amount?: number | undefined;
|
|
@@ -1430,7 +1287,7 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1430
1287
|
catalogEffectiveDate: z.ZodOptional<z.ZodString>;
|
|
1431
1288
|
childItems: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
|
|
1432
1289
|
}, "strip", z.ZodTypeAny, {
|
|
1433
|
-
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;
|
|
1434
1291
|
id?: string | undefined;
|
|
1435
1292
|
description?: string | undefined;
|
|
1436
1293
|
amount?: number | undefined;
|
|
@@ -1452,7 +1309,7 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1452
1309
|
catalogEffectiveDate?: string | undefined;
|
|
1453
1310
|
childItems?: unknown[] | undefined;
|
|
1454
1311
|
}, {
|
|
1455
|
-
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;
|
|
1456
1313
|
id?: string | undefined;
|
|
1457
1314
|
description?: string | undefined;
|
|
1458
1315
|
amount?: number | undefined;
|
|
@@ -1475,12 +1332,11 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1475
1332
|
childItems?: unknown[] | undefined;
|
|
1476
1333
|
}>, "many">>;
|
|
1477
1334
|
}, "strip", z.ZodTypeAny, {
|
|
1478
|
-
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;
|
|
1479
1336
|
id?: string | undefined;
|
|
1480
1337
|
status?: "DRAFT" | "COMMITTED" | "VOID" | undefined;
|
|
1481
|
-
amount?: number | undefined;
|
|
1482
1338
|
items?: {
|
|
1483
|
-
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;
|
|
1484
1340
|
id?: string | undefined;
|
|
1485
1341
|
description?: string | undefined;
|
|
1486
1342
|
amount?: number | undefined;
|
|
@@ -1503,6 +1359,7 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1503
1359
|
childItems?: unknown[] | undefined;
|
|
1504
1360
|
}[] | undefined;
|
|
1505
1361
|
organizationId?: string | undefined;
|
|
1362
|
+
amount?: number | undefined;
|
|
1506
1363
|
creditAdj?: number | undefined;
|
|
1507
1364
|
refundAdj?: number | undefined;
|
|
1508
1365
|
invoiceDate?: string | undefined;
|
|
@@ -1511,7 +1368,7 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1511
1368
|
balance?: number | undefined;
|
|
1512
1369
|
bundleKeys?: string | undefined;
|
|
1513
1370
|
credits?: {
|
|
1514
|
-
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;
|
|
1515
1372
|
id?: string | undefined;
|
|
1516
1373
|
description?: string | undefined;
|
|
1517
1374
|
amount?: number | undefined;
|
|
@@ -1534,12 +1391,11 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1534
1391
|
childItems?: unknown[] | undefined;
|
|
1535
1392
|
}[] | undefined;
|
|
1536
1393
|
}, {
|
|
1537
|
-
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;
|
|
1538
1395
|
id?: string | undefined;
|
|
1539
1396
|
status?: "DRAFT" | "COMMITTED" | "VOID" | undefined;
|
|
1540
|
-
amount?: number | undefined;
|
|
1541
1397
|
items?: {
|
|
1542
|
-
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;
|
|
1543
1399
|
id?: string | undefined;
|
|
1544
1400
|
description?: string | undefined;
|
|
1545
1401
|
amount?: number | undefined;
|
|
@@ -1562,6 +1418,7 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1562
1418
|
childItems?: unknown[] | undefined;
|
|
1563
1419
|
}[] | undefined;
|
|
1564
1420
|
organizationId?: string | undefined;
|
|
1421
|
+
amount?: number | undefined;
|
|
1565
1422
|
creditAdj?: number | undefined;
|
|
1566
1423
|
refundAdj?: number | undefined;
|
|
1567
1424
|
invoiceDate?: string | undefined;
|
|
@@ -1570,7 +1427,7 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1570
1427
|
balance?: number | undefined;
|
|
1571
1428
|
bundleKeys?: string | undefined;
|
|
1572
1429
|
credits?: {
|
|
1573
|
-
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;
|
|
1574
1431
|
id?: string | undefined;
|
|
1575
1432
|
description?: string | undefined;
|
|
1576
1433
|
amount?: number | undefined;
|
|
@@ -1593,6 +1450,13 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1593
1450
|
childItems?: unknown[] | undefined;
|
|
1594
1451
|
}[] | undefined;
|
|
1595
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
|
+
*/
|
|
1596
1460
|
export declare const zGetInvoiceResponse: z.ZodObject<{
|
|
1597
1461
|
html: z.ZodOptional<z.ZodString>;
|
|
1598
1462
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1600,57 +1464,555 @@ export declare const zGetInvoiceResponse: z.ZodObject<{
|
|
|
1600
1464
|
}, {
|
|
1601
1465
|
html?: string | undefined;
|
|
1602
1466
|
}>;
|
|
1603
|
-
|
|
1604
|
-
|
|
1605
|
-
|
|
1606
|
-
|
|
1607
|
-
|
|
1608
|
-
|
|
1609
|
-
|
|
1610
|
-
|
|
1611
|
-
|
|
1612
|
-
|
|
1613
|
-
|
|
1614
|
-
|
|
1615
|
-
|
|
1616
|
-
|
|
1617
|
-
|
|
1618
|
-
|
|
1619
|
-
|
|
1620
|
-
|
|
1621
|
-
|
|
1622
|
-
|
|
1623
|
-
|
|
1624
|
-
|
|
1625
|
-
|
|
1626
|
-
|
|
1627
|
-
|
|
1628
|
-
|
|
1629
|
-
|
|
1630
|
-
|
|
1631
|
-
|
|
1632
|
-
|
|
1633
|
-
|
|
1634
|
-
|
|
1635
|
-
|
|
1636
|
-
|
|
1637
|
-
|
|
1638
|
-
|
|
1639
|
-
|
|
1640
|
-
|
|
1641
|
-
|
|
1642
|
-
|
|
1643
|
-
|
|
1644
|
-
|
|
1645
|
-
|
|
1646
|
-
|
|
1647
|
-
|
|
1648
|
-
|
|
1649
|
-
|
|
1650
|
-
|
|
1651
|
-
|
|
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;
|
|
1652
2015
|
}, "strip", z.ZodTypeAny, {
|
|
1653
|
-
type: "connected" | "managed";
|
|
1654
2016
|
id: string;
|
|
1655
2017
|
limits?: {
|
|
1656
2018
|
cpu: number;
|
|
@@ -1660,18 +2022,14 @@ export declare const zListFleetsResponse: z.ZodArray<z.ZodObject<{
|
|
|
1660
2022
|
enabled: boolean;
|
|
1661
2023
|
} | undefined;
|
|
1662
2024
|
hetzner?: {
|
|
2025
|
+
apiKey: string;
|
|
1663
2026
|
enabled: boolean;
|
|
1664
|
-
apiKey?: string | undefined;
|
|
1665
|
-
} | {
|
|
1666
|
-
enabled: boolean;
|
|
1667
|
-
apiKey?: string | undefined;
|
|
1668
2027
|
} | undefined;
|
|
1669
2028
|
aws?: {
|
|
1670
2029
|
controllerRoleArn: string;
|
|
1671
2030
|
enabled: boolean;
|
|
1672
2031
|
} | undefined;
|
|
1673
2032
|
}, {
|
|
1674
|
-
type: "connected" | "managed";
|
|
1675
2033
|
id: string;
|
|
1676
2034
|
limits?: {
|
|
1677
2035
|
cpu: number;
|
|
@@ -1681,20 +2039,15 @@ export declare const zListFleetsResponse: z.ZodArray<z.ZodObject<{
|
|
|
1681
2039
|
enabled?: boolean | undefined;
|
|
1682
2040
|
} | undefined;
|
|
1683
2041
|
hetzner?: {
|
|
1684
|
-
apiKey
|
|
1685
|
-
enabled?: boolean | undefined;
|
|
1686
|
-
} | {
|
|
1687
|
-
apiKey?: string | undefined;
|
|
2042
|
+
apiKey: string;
|
|
1688
2043
|
enabled?: boolean | undefined;
|
|
1689
2044
|
} | undefined;
|
|
1690
2045
|
aws?: {
|
|
1691
2046
|
controllerRoleArn: string;
|
|
1692
2047
|
enabled?: boolean | undefined;
|
|
1693
2048
|
} | undefined;
|
|
1694
|
-
}
|
|
1695
|
-
export declare const
|
|
1696
|
-
export declare const zDeleteFleetResponse: z.ZodString;
|
|
1697
|
-
export declare const zGetFleetResponse: z.ZodObject<{
|
|
2049
|
+
}>;
|
|
2050
|
+
export declare const zUpdateFleetData: z.ZodObject<{
|
|
1698
2051
|
limits: z.ZodOptional<z.ZodObject<{
|
|
1699
2052
|
cpu: z.ZodNumber;
|
|
1700
2053
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1712,25 +2065,16 @@ export declare const zGetFleetResponse: z.ZodObject<{
|
|
|
1712
2065
|
project: string;
|
|
1713
2066
|
enabled?: boolean | undefined;
|
|
1714
2067
|
}>>;
|
|
1715
|
-
hetzner: z.ZodOptional<z.
|
|
1716
|
-
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1717
|
-
apiKey: z.ZodOptional<z.ZodString>;
|
|
1718
|
-
}, "strip", z.ZodTypeAny, {
|
|
1719
|
-
enabled: boolean;
|
|
1720
|
-
apiKey?: string | undefined;
|
|
1721
|
-
}, {
|
|
1722
|
-
apiKey?: string | undefined;
|
|
1723
|
-
enabled?: boolean | undefined;
|
|
1724
|
-
}>, z.ZodObject<{
|
|
1725
|
-
apiKey: z.ZodOptional<z.ZodString>;
|
|
2068
|
+
hetzner: z.ZodOptional<z.ZodObject<{
|
|
1726
2069
|
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
2070
|
+
apiKey: z.ZodString;
|
|
1727
2071
|
}, "strip", z.ZodTypeAny, {
|
|
2072
|
+
apiKey: string;
|
|
1728
2073
|
enabled: boolean;
|
|
1729
|
-
apiKey?: string | undefined;
|
|
1730
2074
|
}, {
|
|
1731
|
-
apiKey
|
|
2075
|
+
apiKey: string;
|
|
1732
2076
|
enabled?: boolean | undefined;
|
|
1733
|
-
}
|
|
2077
|
+
}>>;
|
|
1734
2078
|
aws: z.ZodOptional<z.ZodObject<{
|
|
1735
2079
|
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1736
2080
|
controllerRoleArn: z.ZodString;
|
|
@@ -1741,11 +2085,7 @@ export declare const zGetFleetResponse: z.ZodObject<{
|
|
|
1741
2085
|
controllerRoleArn: string;
|
|
1742
2086
|
enabled?: boolean | undefined;
|
|
1743
2087
|
}>>;
|
|
1744
|
-
id: z.ZodString;
|
|
1745
|
-
type: z.ZodEnum<["managed", "connected"]>;
|
|
1746
2088
|
}, "strip", z.ZodTypeAny, {
|
|
1747
|
-
type: "connected" | "managed";
|
|
1748
|
-
id: string;
|
|
1749
2089
|
limits?: {
|
|
1750
2090
|
cpu: number;
|
|
1751
2091
|
} | undefined;
|
|
@@ -1754,19 +2094,14 @@ export declare const zGetFleetResponse: z.ZodObject<{
|
|
|
1754
2094
|
enabled: boolean;
|
|
1755
2095
|
} | undefined;
|
|
1756
2096
|
hetzner?: {
|
|
2097
|
+
apiKey: string;
|
|
1757
2098
|
enabled: boolean;
|
|
1758
|
-
apiKey?: string | undefined;
|
|
1759
|
-
} | {
|
|
1760
|
-
enabled: boolean;
|
|
1761
|
-
apiKey?: string | undefined;
|
|
1762
2099
|
} | undefined;
|
|
1763
2100
|
aws?: {
|
|
1764
2101
|
controllerRoleArn: string;
|
|
1765
2102
|
enabled: boolean;
|
|
1766
2103
|
} | undefined;
|
|
1767
2104
|
}, {
|
|
1768
|
-
type: "connected" | "managed";
|
|
1769
|
-
id: string;
|
|
1770
2105
|
limits?: {
|
|
1771
2106
|
cpu: number;
|
|
1772
2107
|
} | undefined;
|
|
@@ -1775,10 +2110,7 @@ export declare const zGetFleetResponse: z.ZodObject<{
|
|
|
1775
2110
|
enabled?: boolean | undefined;
|
|
1776
2111
|
} | undefined;
|
|
1777
2112
|
hetzner?: {
|
|
1778
|
-
apiKey
|
|
1779
|
-
enabled?: boolean | undefined;
|
|
1780
|
-
} | {
|
|
1781
|
-
apiKey?: string | undefined;
|
|
2113
|
+
apiKey: string;
|
|
1782
2114
|
enabled?: boolean | undefined;
|
|
1783
2115
|
} | undefined;
|
|
1784
2116
|
aws?: {
|
|
@@ -1786,11 +2118,29 @@ export declare const zGetFleetResponse: z.ZodObject<{
|
|
|
1786
2118
|
enabled?: boolean | undefined;
|
|
1787
2119
|
} | undefined;
|
|
1788
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
|
+
*/
|
|
1789
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
|
+
*/
|
|
1790
2140
|
export declare const zListClustersResponse: z.ZodArray<z.ZodObject<{
|
|
1791
2141
|
name: z.ZodString;
|
|
1792
|
-
region: z.ZodOptional<z.ZodEnum<["staging", "northamerica-central-1"]>>;
|
|
1793
2142
|
tier: z.ZodEnum<["basic", "pro"]>;
|
|
2143
|
+
region: z.ZodOptional<z.ZodEnum<["staging", "northamerica-central-1", "europe-central-1a"]>>;
|
|
1794
2144
|
version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1795
2145
|
id: z.ZodString;
|
|
1796
2146
|
status: z.ZodEnum<["active", "deleted", "creating", "deployed", "failed", "updating"]>;
|
|
@@ -1804,35 +2154,68 @@ export declare const zListClustersResponse: z.ZodArray<z.ZodObject<{
|
|
|
1804
2154
|
name: string;
|
|
1805
2155
|
id: string;
|
|
1806
2156
|
status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
|
|
1807
|
-
tier: "basic" | "pro";
|
|
1808
2157
|
version_channel: string;
|
|
1809
|
-
|
|
1810
|
-
|
|
1811
|
-
|
|
2158
|
+
tier: "basic" | "pro";
|
|
2159
|
+
ready?: boolean | undefined;
|
|
2160
|
+
region?: "staging" | "northamerica-central-1" | "europe-central-1a" | undefined;
|
|
1812
2161
|
version_current?: string | undefined;
|
|
1813
2162
|
created_at?: string | undefined;
|
|
1814
2163
|
updated_at?: string | undefined;
|
|
1815
|
-
|
|
2164
|
+
endpoint?: string | undefined;
|
|
2165
|
+
certificate_ca?: string | undefined;
|
|
1816
2166
|
}, {
|
|
1817
2167
|
name: string;
|
|
1818
2168
|
id: string;
|
|
1819
2169
|
status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
|
|
1820
2170
|
tier: "basic" | "pro";
|
|
1821
|
-
|
|
1822
|
-
|
|
2171
|
+
ready?: boolean | undefined;
|
|
2172
|
+
region?: "staging" | "northamerica-central-1" | "europe-central-1a" | undefined;
|
|
1823
2173
|
version_channel?: string | undefined;
|
|
1824
|
-
certificate_ca?: string | undefined;
|
|
1825
2174
|
version_current?: string | undefined;
|
|
1826
2175
|
created_at?: string | undefined;
|
|
1827
2176
|
updated_at?: string | undefined;
|
|
1828
|
-
|
|
2177
|
+
endpoint?: string | undefined;
|
|
2178
|
+
certificate_ca?: string | undefined;
|
|
1829
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
|
+
*/
|
|
1830
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
|
+
*/
|
|
1831
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
|
+
*/
|
|
1832
2215
|
export declare const zGetClusterResponse: z.ZodObject<{
|
|
1833
2216
|
name: z.ZodString;
|
|
1834
|
-
region: z.ZodOptional<z.ZodEnum<["staging", "northamerica-central-1"]>>;
|
|
1835
2217
|
tier: z.ZodEnum<["basic", "pro"]>;
|
|
2218
|
+
region: z.ZodOptional<z.ZodEnum<["staging", "northamerica-central-1", "europe-central-1a"]>>;
|
|
1836
2219
|
version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1837
2220
|
id: z.ZodString;
|
|
1838
2221
|
status: z.ZodEnum<["active", "deleted", "creating", "deployed", "failed", "updating"]>;
|
|
@@ -1846,33 +2229,53 @@ export declare const zGetClusterResponse: z.ZodObject<{
|
|
|
1846
2229
|
name: string;
|
|
1847
2230
|
id: string;
|
|
1848
2231
|
status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
|
|
1849
|
-
tier: "basic" | "pro";
|
|
1850
2232
|
version_channel: string;
|
|
1851
|
-
|
|
1852
|
-
|
|
1853
|
-
|
|
2233
|
+
tier: "basic" | "pro";
|
|
2234
|
+
ready?: boolean | undefined;
|
|
2235
|
+
region?: "staging" | "northamerica-central-1" | "europe-central-1a" | undefined;
|
|
1854
2236
|
version_current?: string | undefined;
|
|
1855
2237
|
created_at?: string | undefined;
|
|
1856
2238
|
updated_at?: string | undefined;
|
|
1857
|
-
|
|
2239
|
+
endpoint?: string | undefined;
|
|
2240
|
+
certificate_ca?: string | undefined;
|
|
1858
2241
|
}, {
|
|
1859
2242
|
name: string;
|
|
1860
2243
|
id: string;
|
|
1861
2244
|
status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
|
|
1862
2245
|
tier: "basic" | "pro";
|
|
1863
|
-
|
|
1864
|
-
|
|
2246
|
+
ready?: boolean | undefined;
|
|
2247
|
+
region?: "staging" | "northamerica-central-1" | "europe-central-1a" | undefined;
|
|
1865
2248
|
version_channel?: string | undefined;
|
|
1866
|
-
certificate_ca?: string | undefined;
|
|
1867
2249
|
version_current?: string | undefined;
|
|
1868
2250
|
created_at?: string | undefined;
|
|
1869
2251
|
updated_at?: string | undefined;
|
|
1870
|
-
|
|
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;
|
|
1871
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
|
+
*/
|
|
1872
2275
|
export declare const zUpdateClusterResponse: z.ZodObject<{
|
|
1873
2276
|
name: z.ZodString;
|
|
1874
|
-
region: z.ZodOptional<z.ZodEnum<["staging", "northamerica-central-1"]>>;
|
|
1875
2277
|
tier: z.ZodEnum<["basic", "pro"]>;
|
|
2278
|
+
region: z.ZodOptional<z.ZodEnum<["staging", "northamerica-central-1", "europe-central-1a"]>>;
|
|
1876
2279
|
version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1877
2280
|
id: z.ZodString;
|
|
1878
2281
|
status: z.ZodEnum<["active", "deleted", "creating", "deployed", "failed", "updating"]>;
|
|
@@ -1886,33 +2289,40 @@ export declare const zUpdateClusterResponse: z.ZodObject<{
|
|
|
1886
2289
|
name: string;
|
|
1887
2290
|
id: string;
|
|
1888
2291
|
status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
|
|
1889
|
-
tier: "basic" | "pro";
|
|
1890
2292
|
version_channel: string;
|
|
1891
|
-
|
|
1892
|
-
|
|
1893
|
-
|
|
2293
|
+
tier: "basic" | "pro";
|
|
2294
|
+
ready?: boolean | undefined;
|
|
2295
|
+
region?: "staging" | "northamerica-central-1" | "europe-central-1a" | undefined;
|
|
1894
2296
|
version_current?: string | undefined;
|
|
1895
2297
|
created_at?: string | undefined;
|
|
1896
2298
|
updated_at?: string | undefined;
|
|
1897
|
-
|
|
2299
|
+
endpoint?: string | undefined;
|
|
2300
|
+
certificate_ca?: string | undefined;
|
|
1898
2301
|
}, {
|
|
1899
2302
|
name: string;
|
|
1900
2303
|
id: string;
|
|
1901
2304
|
status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
|
|
1902
2305
|
tier: "basic" | "pro";
|
|
1903
|
-
|
|
1904
|
-
|
|
2306
|
+
ready?: boolean | undefined;
|
|
2307
|
+
region?: "staging" | "northamerica-central-1" | "europe-central-1a" | undefined;
|
|
1905
2308
|
version_channel?: string | undefined;
|
|
1906
|
-
certificate_ca?: string | undefined;
|
|
1907
2309
|
version_current?: string | undefined;
|
|
1908
2310
|
created_at?: string | undefined;
|
|
1909
2311
|
updated_at?: string | undefined;
|
|
1910
|
-
|
|
2312
|
+
endpoint?: string | undefined;
|
|
2313
|
+
certificate_ca?: string | undefined;
|
|
1911
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
|
+
*/
|
|
1912
2322
|
export declare const zGetJoinInformationResponse: z.ZodObject<{
|
|
1913
2323
|
name: z.ZodString;
|
|
1914
|
-
region: z.ZodOptional<z.ZodEnum<["staging", "northamerica-central-1"]>>;
|
|
1915
2324
|
tier: z.ZodEnum<["basic", "pro"]>;
|
|
2325
|
+
region: z.ZodOptional<z.ZodEnum<["staging", "northamerica-central-1", "europe-central-1a"]>>;
|
|
1916
2326
|
version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1917
2327
|
id: z.ZodString;
|
|
1918
2328
|
status: z.ZodEnum<["active", "deleted", "creating", "deployed", "failed", "updating"]>;
|
|
@@ -1926,200 +2336,32 @@ export declare const zGetJoinInformationResponse: z.ZodObject<{
|
|
|
1926
2336
|
name: string;
|
|
1927
2337
|
id: string;
|
|
1928
2338
|
status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
|
|
1929
|
-
tier: "basic" | "pro";
|
|
1930
2339
|
version_channel: string;
|
|
1931
|
-
|
|
1932
|
-
|
|
1933
|
-
|
|
2340
|
+
tier: "basic" | "pro";
|
|
2341
|
+
ready?: boolean | undefined;
|
|
2342
|
+
region?: "staging" | "northamerica-central-1" | "europe-central-1a" | undefined;
|
|
1934
2343
|
version_current?: string | undefined;
|
|
1935
2344
|
created_at?: string | undefined;
|
|
1936
2345
|
updated_at?: string | undefined;
|
|
1937
|
-
|
|
2346
|
+
endpoint?: string | undefined;
|
|
2347
|
+
certificate_ca?: string | undefined;
|
|
1938
2348
|
}, {
|
|
1939
2349
|
name: string;
|
|
1940
2350
|
id: string;
|
|
1941
2351
|
status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
|
|
1942
2352
|
tier: "basic" | "pro";
|
|
1943
|
-
|
|
1944
|
-
|
|
2353
|
+
ready?: boolean | undefined;
|
|
2354
|
+
region?: "staging" | "northamerica-central-1" | "europe-central-1a" | undefined;
|
|
1945
2355
|
version_channel?: string | undefined;
|
|
1946
|
-
certificate_ca?: string | undefined;
|
|
1947
2356
|
version_current?: string | undefined;
|
|
1948
2357
|
created_at?: string | undefined;
|
|
1949
2358
|
updated_at?: string | undefined;
|
|
1950
|
-
|
|
2359
|
+
endpoint?: string | undefined;
|
|
2360
|
+
certificate_ca?: string | undefined;
|
|
1951
2361
|
}>;
|
|
1952
|
-
|
|
1953
|
-
|
|
1954
|
-
|
|
1955
|
-
region: z.ZodString;
|
|
1956
|
-
sub_region: z.ZodString;
|
|
1957
|
-
csp_region: z.ZodString;
|
|
1958
|
-
csp_zone: z.ZodString;
|
|
1959
|
-
instance_type: z.ZodString;
|
|
1960
|
-
architecture: z.ZodString;
|
|
1961
|
-
os: z.ZodString;
|
|
1962
|
-
vcpu: z.ZodNumber;
|
|
1963
|
-
memory: z.ZodNumber;
|
|
1964
|
-
local_storage: z.ZodNumber;
|
|
1965
|
-
accelerator_name: z.ZodOptional<z.ZodString>;
|
|
1966
|
-
accelerator_manufacturer: z.ZodOptional<z.ZodString>;
|
|
1967
|
-
accelerator_count: z.ZodOptional<z.ZodNumber>;
|
|
1968
|
-
accelerator_memory: z.ZodOptional<z.ZodNumber>;
|
|
1969
|
-
pods_capacity: z.ZodOptional<z.ZodNumber>;
|
|
1970
|
-
capacity_type: z.ZodOptional<z.ZodString>;
|
|
1971
|
-
price: z.ZodNumber;
|
|
1972
|
-
available: z.ZodOptional<z.ZodBoolean>;
|
|
1973
|
-
}, "strip", z.ZodTypeAny, {
|
|
1974
|
-
memory: number;
|
|
1975
|
-
region: string;
|
|
1976
|
-
sku: string;
|
|
1977
|
-
provider: string;
|
|
1978
|
-
sub_region: string;
|
|
1979
|
-
csp_region: string;
|
|
1980
|
-
csp_zone: string;
|
|
1981
|
-
instance_type: string;
|
|
1982
|
-
architecture: string;
|
|
1983
|
-
os: string;
|
|
1984
|
-
vcpu: number;
|
|
1985
|
-
local_storage: number;
|
|
1986
|
-
price: number;
|
|
1987
|
-
accelerator_name?: string | undefined;
|
|
1988
|
-
accelerator_manufacturer?: string | undefined;
|
|
1989
|
-
accelerator_count?: number | undefined;
|
|
1990
|
-
accelerator_memory?: number | undefined;
|
|
1991
|
-
pods_capacity?: number | undefined;
|
|
1992
|
-
capacity_type?: string | undefined;
|
|
1993
|
-
available?: boolean | undefined;
|
|
1994
|
-
}, {
|
|
1995
|
-
memory: number;
|
|
1996
|
-
region: string;
|
|
1997
|
-
sku: string;
|
|
1998
|
-
provider: string;
|
|
1999
|
-
sub_region: string;
|
|
2000
|
-
csp_region: string;
|
|
2001
|
-
csp_zone: string;
|
|
2002
|
-
instance_type: string;
|
|
2003
|
-
architecture: string;
|
|
2004
|
-
os: string;
|
|
2005
|
-
vcpu: number;
|
|
2006
|
-
local_storage: number;
|
|
2007
|
-
price: number;
|
|
2008
|
-
accelerator_name?: string | undefined;
|
|
2009
|
-
accelerator_manufacturer?: string | undefined;
|
|
2010
|
-
accelerator_count?: number | undefined;
|
|
2011
|
-
accelerator_memory?: number | undefined;
|
|
2012
|
-
pods_capacity?: number | undefined;
|
|
2013
|
-
capacity_type?: string | undefined;
|
|
2014
|
-
available?: boolean | undefined;
|
|
2015
|
-
}>, "many">;
|
|
2016
|
-
export declare const zGetFacetsResponse: z.ZodArray<z.ZodObject<{
|
|
2017
|
-
provider: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2018
|
-
region: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2019
|
-
sub_region: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2020
|
-
csp_region: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2021
|
-
vcpu_min: z.ZodOptional<z.ZodNumber>;
|
|
2022
|
-
vcpu_max: z.ZodOptional<z.ZodNumber>;
|
|
2023
|
-
memory_min: z.ZodOptional<z.ZodNumber>;
|
|
2024
|
-
memory_max: z.ZodOptional<z.ZodNumber>;
|
|
2025
|
-
storage_local_min: z.ZodOptional<z.ZodNumber>;
|
|
2026
|
-
storage_local_max: z.ZodOptional<z.ZodNumber>;
|
|
2027
|
-
accelerator_name: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2028
|
-
accelerator_manufacturer: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2029
|
-
accelerator_count_min: z.ZodOptional<z.ZodNumber>;
|
|
2030
|
-
accelerator_count_max: z.ZodOptional<z.ZodNumber>;
|
|
2031
|
-
accelerator_memory_min: z.ZodOptional<z.ZodNumber>;
|
|
2032
|
-
accelerator_memory_max: z.ZodOptional<z.ZodNumber>;
|
|
2033
|
-
price_min: z.ZodOptional<z.ZodNumber>;
|
|
2034
|
-
price_max: z.ZodOptional<z.ZodNumber>;
|
|
2035
|
-
regions_struct: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2036
|
-
region: z.ZodOptional<z.ZodString>;
|
|
2037
|
-
sub_region: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2038
|
-
}, "strip", z.ZodTypeAny, {
|
|
2039
|
-
region?: string | undefined;
|
|
2040
|
-
sub_region?: string[] | undefined;
|
|
2041
|
-
}, {
|
|
2042
|
-
region?: string | undefined;
|
|
2043
|
-
sub_region?: string[] | undefined;
|
|
2044
|
-
}>, "many">>;
|
|
2045
|
-
accelerators_struct: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2046
|
-
accelerator_manufacturer: z.ZodOptional<z.ZodString>;
|
|
2047
|
-
accelerator_name: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2048
|
-
}, "strip", z.ZodTypeAny, {
|
|
2049
|
-
accelerator_name?: string[] | undefined;
|
|
2050
|
-
accelerator_manufacturer?: string | undefined;
|
|
2051
|
-
}, {
|
|
2052
|
-
accelerator_name?: string[] | undefined;
|
|
2053
|
-
accelerator_manufacturer?: string | undefined;
|
|
2054
|
-
}>, "many">>;
|
|
2055
|
-
count_total: z.ZodOptional<z.ZodNumber>;
|
|
2056
|
-
count_accelerators: z.ZodOptional<z.ZodNumber>;
|
|
2057
|
-
count_instance_types: z.ZodOptional<z.ZodNumber>;
|
|
2058
|
-
count_accelerators_instance_types: z.ZodOptional<z.ZodNumber>;
|
|
2059
|
-
}, "strip", z.ZodTypeAny, {
|
|
2060
|
-
region?: string[] | undefined;
|
|
2061
|
-
provider?: string[] | undefined;
|
|
2062
|
-
sub_region?: string[] | undefined;
|
|
2063
|
-
csp_region?: string[] | undefined;
|
|
2064
|
-
accelerator_name?: string[] | undefined;
|
|
2065
|
-
accelerator_manufacturer?: string[] | undefined;
|
|
2066
|
-
accelerator_count_min?: number | undefined;
|
|
2067
|
-
accelerator_count_max?: number | undefined;
|
|
2068
|
-
accelerator_memory_min?: number | undefined;
|
|
2069
|
-
accelerator_memory_max?: number | undefined;
|
|
2070
|
-
memory_min?: number | undefined;
|
|
2071
|
-
memory_max?: number | undefined;
|
|
2072
|
-
vcpu_min?: number | undefined;
|
|
2073
|
-
vcpu_max?: number | undefined;
|
|
2074
|
-
storage_local_min?: number | undefined;
|
|
2075
|
-
storage_local_max?: number | undefined;
|
|
2076
|
-
price_min?: number | undefined;
|
|
2077
|
-
price_max?: number | undefined;
|
|
2078
|
-
regions_struct?: {
|
|
2079
|
-
region?: string | undefined;
|
|
2080
|
-
sub_region?: string[] | undefined;
|
|
2081
|
-
}[] | undefined;
|
|
2082
|
-
accelerators_struct?: {
|
|
2083
|
-
accelerator_name?: string[] | undefined;
|
|
2084
|
-
accelerator_manufacturer?: string | undefined;
|
|
2085
|
-
}[] | undefined;
|
|
2086
|
-
count_total?: number | undefined;
|
|
2087
|
-
count_accelerators?: number | undefined;
|
|
2088
|
-
count_instance_types?: number | undefined;
|
|
2089
|
-
count_accelerators_instance_types?: number | undefined;
|
|
2090
|
-
}, {
|
|
2091
|
-
region?: string[] | undefined;
|
|
2092
|
-
provider?: string[] | undefined;
|
|
2093
|
-
sub_region?: string[] | undefined;
|
|
2094
|
-
csp_region?: string[] | undefined;
|
|
2095
|
-
accelerator_name?: string[] | undefined;
|
|
2096
|
-
accelerator_manufacturer?: string[] | undefined;
|
|
2097
|
-
accelerator_count_min?: number | undefined;
|
|
2098
|
-
accelerator_count_max?: number | undefined;
|
|
2099
|
-
accelerator_memory_min?: number | undefined;
|
|
2100
|
-
accelerator_memory_max?: number | undefined;
|
|
2101
|
-
memory_min?: number | undefined;
|
|
2102
|
-
memory_max?: number | undefined;
|
|
2103
|
-
vcpu_min?: number | undefined;
|
|
2104
|
-
vcpu_max?: number | undefined;
|
|
2105
|
-
storage_local_min?: number | undefined;
|
|
2106
|
-
storage_local_max?: number | undefined;
|
|
2107
|
-
price_min?: number | undefined;
|
|
2108
|
-
price_max?: number | undefined;
|
|
2109
|
-
regions_struct?: {
|
|
2110
|
-
region?: string | undefined;
|
|
2111
|
-
sub_region?: string[] | undefined;
|
|
2112
|
-
}[] | undefined;
|
|
2113
|
-
accelerators_struct?: {
|
|
2114
|
-
accelerator_name?: string[] | undefined;
|
|
2115
|
-
accelerator_manufacturer?: string | undefined;
|
|
2116
|
-
}[] | undefined;
|
|
2117
|
-
count_total?: number | undefined;
|
|
2118
|
-
count_accelerators?: number | undefined;
|
|
2119
|
-
count_instance_types?: number | undefined;
|
|
2120
|
-
count_accelerators_instance_types?: number | undefined;
|
|
2121
|
-
}>, "many">;
|
|
2122
|
-
export declare const zGetRegionsResponse: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
|
|
2362
|
+
/**
|
|
2363
|
+
* An array of invites
|
|
2364
|
+
*/
|
|
2123
2365
|
export declare const zListInvitesResponse: z.ZodArray<z.ZodObject<{
|
|
2124
2366
|
id: z.ZodOptional<z.ZodString>;
|
|
2125
2367
|
organization_id: z.ZodOptional<z.ZodString>;
|
|
@@ -2139,26 +2381,17 @@ export declare const zListInvitesResponse: z.ZodArray<z.ZodObject<{
|
|
|
2139
2381
|
email?: string | undefined;
|
|
2140
2382
|
organization_id?: string | undefined;
|
|
2141
2383
|
}>, "many">;
|
|
2142
|
-
export declare const
|
|
2143
|
-
id: z.ZodOptional<z.ZodString>;
|
|
2144
|
-
organization_id: z.ZodOptional<z.ZodString>;
|
|
2145
|
-
date_created: z.ZodString;
|
|
2384
|
+
export declare const zCreateInviteData: z.ZodObject<{
|
|
2146
2385
|
email: z.ZodOptional<z.ZodString>;
|
|
2147
|
-
code: z.ZodOptional<z.ZodString>;
|
|
2148
2386
|
}, "strip", z.ZodTypeAny, {
|
|
2149
|
-
date_created: string;
|
|
2150
|
-
code?: string | undefined;
|
|
2151
|
-
id?: string | undefined;
|
|
2152
2387
|
email?: string | undefined;
|
|
2153
|
-
organization_id?: string | undefined;
|
|
2154
2388
|
}, {
|
|
2155
|
-
date_created: string;
|
|
2156
|
-
code?: string | undefined;
|
|
2157
|
-
id?: string | undefined;
|
|
2158
2389
|
email?: string | undefined;
|
|
2159
|
-
organization_id?: string | undefined;
|
|
2160
2390
|
}>;
|
|
2161
|
-
|
|
2391
|
+
/**
|
|
2392
|
+
* Successfully created. Returns created invite details.
|
|
2393
|
+
*/
|
|
2394
|
+
export declare const zCreateInviteResponse: z.ZodObject<{
|
|
2162
2395
|
id: z.ZodOptional<z.ZodString>;
|
|
2163
2396
|
organization_id: z.ZodOptional<z.ZodString>;
|
|
2164
2397
|
date_created: z.ZodString;
|
|
@@ -2177,345 +2410,154 @@ export declare const zGetInviteResponse: z.ZodObject<{
|
|
|
2177
2410
|
email?: string | undefined;
|
|
2178
2411
|
organization_id?: string | undefined;
|
|
2179
2412
|
}>;
|
|
2180
|
-
|
|
2181
|
-
|
|
2182
|
-
|
|
2183
|
-
|
|
2184
|
-
|
|
2185
|
-
|
|
2186
|
-
|
|
2187
|
-
|
|
2188
|
-
|
|
2189
|
-
|
|
2190
|
-
|
|
2191
|
-
|
|
2192
|
-
|
|
2193
|
-
|
|
2194
|
-
|
|
2195
|
-
|
|
2196
|
-
|
|
2197
|
-
|
|
2198
|
-
|
|
2199
|
-
|
|
2200
|
-
|
|
2201
|
-
|
|
2202
|
-
|
|
2203
|
-
|
|
2204
|
-
|
|
2205
|
-
email: string;
|
|
2206
|
-
first_name: string;
|
|
2207
|
-
last_name: string;
|
|
2208
|
-
state?: string | undefined;
|
|
2209
|
-
country?: string | undefined;
|
|
2210
|
-
address1?: string | undefined;
|
|
2211
|
-
address2?: string | undefined;
|
|
2212
|
-
postalCode?: string | undefined;
|
|
2213
|
-
city?: string | undefined;
|
|
2214
|
-
phone?: string | undefined;
|
|
2215
|
-
}>;
|
|
2216
|
-
id: z.ZodString;
|
|
2217
|
-
date_created: z.ZodString;
|
|
2218
|
-
quota: z.ZodObject<{
|
|
2219
|
-
basic_clusters_max: z.ZodNumber;
|
|
2220
|
-
basic_clusters_available: z.ZodNumber;
|
|
2221
|
-
pro_clusters_max: z.ZodNumber;
|
|
2222
|
-
pro_clusters_available: z.ZodNumber;
|
|
2223
|
-
fleets_max: z.ZodNumber;
|
|
2224
|
-
managed_fleets_cpu_max: z.ZodNumber;
|
|
2225
|
-
cluster_tiers: z.ZodArray<z.ZodString, "many">;
|
|
2226
|
-
regions: z.ZodArray<z.ZodString, "many">;
|
|
2227
|
-
versions: z.ZodArray<z.ZodObject<{
|
|
2228
|
-
id: z.ZodString;
|
|
2229
|
-
label: z.ZodString;
|
|
2230
|
-
}, "strip", z.ZodTypeAny, {
|
|
2231
|
-
id: string;
|
|
2232
|
-
label: string;
|
|
2233
|
-
}, {
|
|
2234
|
-
id: string;
|
|
2235
|
-
label: string;
|
|
2236
|
-
}>, "many">;
|
|
2237
|
-
}, "strip", z.ZodTypeAny, {
|
|
2238
|
-
versions: {
|
|
2239
|
-
id: string;
|
|
2240
|
-
label: string;
|
|
2241
|
-
}[];
|
|
2242
|
-
basic_clusters_max: number;
|
|
2243
|
-
basic_clusters_available: number;
|
|
2244
|
-
pro_clusters_max: number;
|
|
2245
|
-
pro_clusters_available: number;
|
|
2246
|
-
fleets_max: number;
|
|
2247
|
-
managed_fleets_cpu_max: number;
|
|
2248
|
-
cluster_tiers: string[];
|
|
2249
|
-
regions: string[];
|
|
2250
|
-
}, {
|
|
2251
|
-
versions: {
|
|
2252
|
-
id: string;
|
|
2253
|
-
label: string;
|
|
2254
|
-
}[];
|
|
2255
|
-
basic_clusters_max: number;
|
|
2256
|
-
basic_clusters_available: number;
|
|
2257
|
-
pro_clusters_max: number;
|
|
2258
|
-
pro_clusters_available: number;
|
|
2259
|
-
fleets_max: number;
|
|
2260
|
-
managed_fleets_cpu_max: number;
|
|
2261
|
-
cluster_tiers: string[];
|
|
2262
|
-
regions: string[];
|
|
2263
|
-
}>;
|
|
2264
|
-
pending_actions: z.ZodArray<z.ZodEnum<["signup-billing-address", "signup-payment-method", "signup-invite-team", "signup-create-cluster"]>, "many">;
|
|
2265
|
-
status: z.ZodEnum<["active", "closed", "suspended"]>;
|
|
2266
|
-
}, "strip", z.ZodTypeAny, {
|
|
2267
|
-
name: string;
|
|
2268
|
-
id: string;
|
|
2269
|
-
status: "active" | "closed" | "suspended";
|
|
2270
|
-
date_created: string;
|
|
2271
|
-
contactInfo: {
|
|
2272
|
-
email: string;
|
|
2273
|
-
first_name: string;
|
|
2274
|
-
last_name: string;
|
|
2275
|
-
state?: string | undefined;
|
|
2276
|
-
country?: string | undefined;
|
|
2277
|
-
address1?: string | undefined;
|
|
2278
|
-
address2?: string | undefined;
|
|
2279
|
-
postalCode?: string | undefined;
|
|
2280
|
-
city?: string | undefined;
|
|
2281
|
-
phone?: string | undefined;
|
|
2282
|
-
};
|
|
2283
|
-
quota: {
|
|
2284
|
-
versions: {
|
|
2285
|
-
id: string;
|
|
2286
|
-
label: string;
|
|
2287
|
-
}[];
|
|
2288
|
-
basic_clusters_max: number;
|
|
2289
|
-
basic_clusters_available: number;
|
|
2290
|
-
pro_clusters_max: number;
|
|
2291
|
-
pro_clusters_available: number;
|
|
2292
|
-
fleets_max: number;
|
|
2293
|
-
managed_fleets_cpu_max: number;
|
|
2294
|
-
cluster_tiers: string[];
|
|
2295
|
-
regions: string[];
|
|
2296
|
-
};
|
|
2297
|
-
pending_actions: ("signup-payment-method" | "signup-billing-address" | "signup-invite-team" | "signup-create-cluster")[];
|
|
2298
|
-
}, {
|
|
2299
|
-
name: string;
|
|
2300
|
-
id: string;
|
|
2301
|
-
status: "active" | "closed" | "suspended";
|
|
2302
|
-
date_created: string;
|
|
2303
|
-
contactInfo: {
|
|
2304
|
-
email: string;
|
|
2305
|
-
first_name: string;
|
|
2306
|
-
last_name: string;
|
|
2307
|
-
state?: string | undefined;
|
|
2308
|
-
country?: string | undefined;
|
|
2309
|
-
address1?: string | undefined;
|
|
2310
|
-
address2?: string | undefined;
|
|
2311
|
-
postalCode?: string | undefined;
|
|
2312
|
-
city?: string | undefined;
|
|
2313
|
-
phone?: string | undefined;
|
|
2314
|
-
};
|
|
2315
|
-
quota: {
|
|
2316
|
-
versions: {
|
|
2317
|
-
id: string;
|
|
2318
|
-
label: string;
|
|
2319
|
-
}[];
|
|
2320
|
-
basic_clusters_max: number;
|
|
2321
|
-
basic_clusters_available: number;
|
|
2322
|
-
pro_clusters_max: number;
|
|
2323
|
-
pro_clusters_available: number;
|
|
2324
|
-
fleets_max: number;
|
|
2325
|
-
managed_fleets_cpu_max: number;
|
|
2326
|
-
cluster_tiers: string[];
|
|
2327
|
-
regions: string[];
|
|
2328
|
-
};
|
|
2329
|
-
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;
|
|
2330
2438
|
}>;
|
|
2331
|
-
|
|
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;
|
|
2332
2448
|
name: z.ZodString;
|
|
2333
|
-
|
|
2334
|
-
|
|
2335
|
-
|
|
2336
|
-
|
|
2337
|
-
|
|
2338
|
-
|
|
2339
|
-
|
|
2340
|
-
|
|
2341
|
-
|
|
2342
|
-
|
|
2343
|
-
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;
|
|
2344
2459
|
}, "strip", z.ZodTypeAny, {
|
|
2345
|
-
|
|
2346
|
-
|
|
2347
|
-
|
|
2348
|
-
state?: string | undefined;
|
|
2349
|
-
country?: string | undefined;
|
|
2350
|
-
address1?: string | undefined;
|
|
2351
|
-
address2?: string | undefined;
|
|
2352
|
-
postalCode?: string | undefined;
|
|
2353
|
-
city?: string | undefined;
|
|
2354
|
-
phone?: string | undefined;
|
|
2460
|
+
version: string;
|
|
2461
|
+
schema: string;
|
|
2462
|
+
placeholder: string;
|
|
2355
2463
|
}, {
|
|
2356
|
-
|
|
2357
|
-
|
|
2358
|
-
|
|
2359
|
-
|
|
2360
|
-
|
|
2361
|
-
|
|
2362
|
-
|
|
2363
|
-
|
|
2364
|
-
|
|
2365
|
-
|
|
2366
|
-
|
|
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<{
|
|
2367
2505
|
id: z.ZodString;
|
|
2368
|
-
|
|
2369
|
-
|
|
2370
|
-
|
|
2371
|
-
|
|
2372
|
-
|
|
2373
|
-
|
|
2374
|
-
|
|
2375
|
-
|
|
2376
|
-
|
|
2377
|
-
|
|
2378
|
-
|
|
2379
|
-
id: z.ZodString;
|
|
2380
|
-
label: z.ZodString;
|
|
2381
|
-
}, "strip", z.ZodTypeAny, {
|
|
2382
|
-
id: string;
|
|
2383
|
-
label: string;
|
|
2384
|
-
}, {
|
|
2385
|
-
id: string;
|
|
2386
|
-
label: string;
|
|
2387
|
-
}>, "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;
|
|
2388
2517
|
}, "strip", z.ZodTypeAny, {
|
|
2389
|
-
|
|
2390
|
-
|
|
2391
|
-
|
|
2392
|
-
}[];
|
|
2393
|
-
basic_clusters_max: number;
|
|
2394
|
-
basic_clusters_available: number;
|
|
2395
|
-
pro_clusters_max: number;
|
|
2396
|
-
pro_clusters_available: number;
|
|
2397
|
-
fleets_max: number;
|
|
2398
|
-
managed_fleets_cpu_max: number;
|
|
2399
|
-
cluster_tiers: string[];
|
|
2400
|
-
regions: string[];
|
|
2518
|
+
version: string;
|
|
2519
|
+
schema: string;
|
|
2520
|
+
placeholder: string;
|
|
2401
2521
|
}, {
|
|
2402
|
-
|
|
2403
|
-
|
|
2404
|
-
|
|
2405
|
-
|
|
2406
|
-
basic_clusters_max: number;
|
|
2407
|
-
basic_clusters_available: number;
|
|
2408
|
-
pro_clusters_max: number;
|
|
2409
|
-
pro_clusters_available: number;
|
|
2410
|
-
fleets_max: number;
|
|
2411
|
-
managed_fleets_cpu_max: number;
|
|
2412
|
-
cluster_tiers: string[];
|
|
2413
|
-
regions: string[];
|
|
2414
|
-
}>;
|
|
2415
|
-
pending_actions: z.ZodArray<z.ZodEnum<["signup-billing-address", "signup-payment-method", "signup-invite-team", "signup-create-cluster"]>, "many">;
|
|
2416
|
-
status: z.ZodEnum<["active", "closed", "suspended"]>;
|
|
2522
|
+
version: string;
|
|
2523
|
+
schema: string;
|
|
2524
|
+
placeholder: string;
|
|
2525
|
+
}>, "many">;
|
|
2417
2526
|
}, "strip", z.ZodTypeAny, {
|
|
2418
2527
|
name: string;
|
|
2419
2528
|
id: string;
|
|
2420
|
-
|
|
2421
|
-
|
|
2422
|
-
|
|
2423
|
-
|
|
2424
|
-
|
|
2425
|
-
|
|
2426
|
-
|
|
2427
|
-
|
|
2428
|
-
|
|
2429
|
-
|
|
2430
|
-
|
|
2431
|
-
city?: string | undefined;
|
|
2432
|
-
phone?: string | undefined;
|
|
2433
|
-
};
|
|
2434
|
-
quota: {
|
|
2435
|
-
versions: {
|
|
2436
|
-
id: string;
|
|
2437
|
-
label: string;
|
|
2438
|
-
}[];
|
|
2439
|
-
basic_clusters_max: number;
|
|
2440
|
-
basic_clusters_available: number;
|
|
2441
|
-
pro_clusters_max: number;
|
|
2442
|
-
pro_clusters_available: number;
|
|
2443
|
-
fleets_max: number;
|
|
2444
|
-
managed_fleets_cpu_max: number;
|
|
2445
|
-
cluster_tiers: string[];
|
|
2446
|
-
regions: string[];
|
|
2447
|
-
};
|
|
2448
|
-
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
|
+
}[];
|
|
2449
2540
|
}, {
|
|
2450
2541
|
name: string;
|
|
2451
2542
|
id: string;
|
|
2452
|
-
|
|
2453
|
-
|
|
2454
|
-
|
|
2455
|
-
|
|
2456
|
-
|
|
2457
|
-
|
|
2458
|
-
|
|
2459
|
-
|
|
2460
|
-
|
|
2461
|
-
|
|
2462
|
-
|
|
2463
|
-
city?: string | undefined;
|
|
2464
|
-
phone?: string | undefined;
|
|
2465
|
-
};
|
|
2466
|
-
quota: {
|
|
2467
|
-
versions: {
|
|
2468
|
-
id: string;
|
|
2469
|
-
label: string;
|
|
2470
|
-
}[];
|
|
2471
|
-
basic_clusters_max: number;
|
|
2472
|
-
basic_clusters_available: number;
|
|
2473
|
-
pro_clusters_max: number;
|
|
2474
|
-
pro_clusters_available: number;
|
|
2475
|
-
fleets_max: number;
|
|
2476
|
-
managed_fleets_cpu_max: number;
|
|
2477
|
-
cluster_tiers: string[];
|
|
2478
|
-
regions: string[];
|
|
2479
|
-
};
|
|
2480
|
-
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
|
+
}[];
|
|
2481
2554
|
}>;
|
|
2482
|
-
|
|
2483
|
-
|
|
2484
|
-
|
|
2485
|
-
|
|
2486
|
-
address2: z.ZodOptional<z.ZodString>;
|
|
2487
|
-
postalCode: z.ZodOptional<z.ZodString>;
|
|
2488
|
-
city: z.ZodOptional<z.ZodString>;
|
|
2489
|
-
state: z.ZodOptional<z.ZodString>;
|
|
2490
|
-
country: z.ZodOptional<z.ZodString>;
|
|
2491
|
-
phone: z.ZodOptional<z.ZodString>;
|
|
2492
|
-
email: z.ZodString;
|
|
2493
|
-
first_name: z.ZodString;
|
|
2494
|
-
last_name: z.ZodString;
|
|
2495
|
-
}, "strip", z.ZodTypeAny, {
|
|
2496
|
-
email: string;
|
|
2497
|
-
first_name: string;
|
|
2498
|
-
last_name: string;
|
|
2499
|
-
state?: string | undefined;
|
|
2500
|
-
country?: string | undefined;
|
|
2501
|
-
address1?: string | undefined;
|
|
2502
|
-
address2?: string | undefined;
|
|
2503
|
-
postalCode?: string | undefined;
|
|
2504
|
-
city?: string | undefined;
|
|
2505
|
-
phone?: string | undefined;
|
|
2506
|
-
}, {
|
|
2507
|
-
email: string;
|
|
2508
|
-
first_name: string;
|
|
2509
|
-
last_name: string;
|
|
2510
|
-
state?: string | undefined;
|
|
2511
|
-
country?: string | undefined;
|
|
2512
|
-
address1?: string | undefined;
|
|
2513
|
-
address2?: string | undefined;
|
|
2514
|
-
postalCode?: string | undefined;
|
|
2515
|
-
city?: string | undefined;
|
|
2516
|
-
phone?: string | undefined;
|
|
2517
|
-
}>;
|
|
2555
|
+
/**
|
|
2556
|
+
* Returns a single object containing organization details.
|
|
2557
|
+
*/
|
|
2558
|
+
export declare const zGetOrganizationResponse: z.ZodObject<{
|
|
2518
2559
|
id: z.ZodString;
|
|
2560
|
+
name: z.ZodOptional<z.ZodString>;
|
|
2519
2561
|
date_created: z.ZodString;
|
|
2520
2562
|
quota: z.ZodObject<{
|
|
2521
2563
|
basic_clusters_max: z.ZodNumber;
|
|
@@ -2523,7 +2565,6 @@ export declare const zUpdateOrganizationResponse: z.ZodObject<{
|
|
|
2523
2565
|
pro_clusters_max: z.ZodNumber;
|
|
2524
2566
|
pro_clusters_available: z.ZodNumber;
|
|
2525
2567
|
fleets_max: z.ZodNumber;
|
|
2526
|
-
managed_fleets_cpu_max: z.ZodNumber;
|
|
2527
2568
|
cluster_tiers: z.ZodArray<z.ZodString, "many">;
|
|
2528
2569
|
regions: z.ZodArray<z.ZodString, "many">;
|
|
2529
2570
|
versions: z.ZodArray<z.ZodObject<{
|
|
@@ -2546,7 +2587,6 @@ export declare const zUpdateOrganizationResponse: z.ZodObject<{
|
|
|
2546
2587
|
pro_clusters_max: number;
|
|
2547
2588
|
pro_clusters_available: number;
|
|
2548
2589
|
fleets_max: number;
|
|
2549
|
-
managed_fleets_cpu_max: number;
|
|
2550
2590
|
cluster_tiers: string[];
|
|
2551
2591
|
regions: string[];
|
|
2552
2592
|
}, {
|
|
@@ -2559,29 +2599,14 @@ export declare const zUpdateOrganizationResponse: z.ZodObject<{
|
|
|
2559
2599
|
pro_clusters_max: number;
|
|
2560
2600
|
pro_clusters_available: number;
|
|
2561
2601
|
fleets_max: number;
|
|
2562
|
-
managed_fleets_cpu_max: number;
|
|
2563
2602
|
cluster_tiers: string[];
|
|
2564
2603
|
regions: string[];
|
|
2565
2604
|
}>;
|
|
2566
|
-
pending_actions: z.ZodArray<z.ZodEnum<["signup-billing-address", "signup-payment-method", "signup-invite-team", "signup-create-cluster"]>, "many">;
|
|
2567
2605
|
status: z.ZodEnum<["active", "closed", "suspended"]>;
|
|
2568
2606
|
}, "strip", z.ZodTypeAny, {
|
|
2569
|
-
name: string;
|
|
2570
2607
|
id: string;
|
|
2571
2608
|
status: "active" | "closed" | "suspended";
|
|
2572
2609
|
date_created: string;
|
|
2573
|
-
contactInfo: {
|
|
2574
|
-
email: string;
|
|
2575
|
-
first_name: string;
|
|
2576
|
-
last_name: string;
|
|
2577
|
-
state?: string | undefined;
|
|
2578
|
-
country?: string | undefined;
|
|
2579
|
-
address1?: string | undefined;
|
|
2580
|
-
address2?: string | undefined;
|
|
2581
|
-
postalCode?: string | undefined;
|
|
2582
|
-
city?: string | undefined;
|
|
2583
|
-
phone?: string | undefined;
|
|
2584
|
-
};
|
|
2585
2610
|
quota: {
|
|
2586
2611
|
versions: {
|
|
2587
2612
|
id: string;
|
|
@@ -2592,28 +2617,14 @@ export declare const zUpdateOrganizationResponse: z.ZodObject<{
|
|
|
2592
2617
|
pro_clusters_max: number;
|
|
2593
2618
|
pro_clusters_available: number;
|
|
2594
2619
|
fleets_max: number;
|
|
2595
|
-
managed_fleets_cpu_max: number;
|
|
2596
2620
|
cluster_tiers: string[];
|
|
2597
2621
|
regions: string[];
|
|
2598
2622
|
};
|
|
2599
|
-
|
|
2623
|
+
name?: string | undefined;
|
|
2600
2624
|
}, {
|
|
2601
|
-
name: string;
|
|
2602
2625
|
id: string;
|
|
2603
2626
|
status: "active" | "closed" | "suspended";
|
|
2604
2627
|
date_created: string;
|
|
2605
|
-
contactInfo: {
|
|
2606
|
-
email: string;
|
|
2607
|
-
first_name: string;
|
|
2608
|
-
last_name: string;
|
|
2609
|
-
state?: string | undefined;
|
|
2610
|
-
country?: string | undefined;
|
|
2611
|
-
address1?: string | undefined;
|
|
2612
|
-
address2?: string | undefined;
|
|
2613
|
-
postalCode?: string | undefined;
|
|
2614
|
-
city?: string | undefined;
|
|
2615
|
-
phone?: string | undefined;
|
|
2616
|
-
};
|
|
2617
2628
|
quota: {
|
|
2618
2629
|
versions: {
|
|
2619
2630
|
id: string;
|
|
@@ -2624,12 +2635,33 @@ export declare const zUpdateOrganizationResponse: z.ZodObject<{
|
|
|
2624
2635
|
pro_clusters_max: number;
|
|
2625
2636
|
pro_clusters_available: number;
|
|
2626
2637
|
fleets_max: number;
|
|
2627
|
-
managed_fleets_cpu_max: number;
|
|
2628
2638
|
cluster_tiers: string[];
|
|
2629
2639
|
regions: string[];
|
|
2630
2640
|
};
|
|
2631
|
-
|
|
2641
|
+
name?: string | undefined;
|
|
2632
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
|
+
*/
|
|
2633
2665
|
export declare const zListTokensResponse: z.ZodArray<z.ZodObject<{
|
|
2634
2666
|
name: z.ZodString;
|
|
2635
2667
|
role: z.ZodEnum<["Administrator", "User"]>;
|
|
@@ -2638,17 +2670,30 @@ export declare const zListTokensResponse: z.ZodArray<z.ZodObject<{
|
|
|
2638
2670
|
date_created: z.ZodString;
|
|
2639
2671
|
}, "strip", z.ZodTypeAny, {
|
|
2640
2672
|
name: string;
|
|
2641
|
-
role: "
|
|
2673
|
+
role: "Administrator" | "User";
|
|
2642
2674
|
date_created: string;
|
|
2643
2675
|
id?: string | undefined;
|
|
2644
2676
|
secret?: string | undefined;
|
|
2645
2677
|
}, {
|
|
2646
2678
|
name: string;
|
|
2647
|
-
role: "
|
|
2679
|
+
role: "Administrator" | "User";
|
|
2648
2680
|
date_created: string;
|
|
2649
2681
|
id?: string | undefined;
|
|
2650
2682
|
secret?: string | undefined;
|
|
2651
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
|
+
*/
|
|
2652
2697
|
export declare const zCreateTokenResponse: z.ZodObject<{
|
|
2653
2698
|
name: z.ZodString;
|
|
2654
2699
|
role: z.ZodEnum<["Administrator", "User"]>;
|
|
@@ -2657,17 +2702,28 @@ export declare const zCreateTokenResponse: z.ZodObject<{
|
|
|
2657
2702
|
date_created: z.ZodString;
|
|
2658
2703
|
}, "strip", z.ZodTypeAny, {
|
|
2659
2704
|
name: string;
|
|
2660
|
-
role: "
|
|
2705
|
+
role: "Administrator" | "User";
|
|
2661
2706
|
date_created: string;
|
|
2662
2707
|
id?: string | undefined;
|
|
2663
2708
|
secret?: string | undefined;
|
|
2664
2709
|
}, {
|
|
2665
2710
|
name: string;
|
|
2666
|
-
role: "
|
|
2711
|
+
role: "Administrator" | "User";
|
|
2667
2712
|
date_created: string;
|
|
2668
2713
|
id?: string | undefined;
|
|
2669
2714
|
secret?: string | undefined;
|
|
2670
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
|
+
*/
|
|
2671
2727
|
export declare const zGetTokenResponse: z.ZodObject<{
|
|
2672
2728
|
name: z.ZodString;
|
|
2673
2729
|
role: z.ZodEnum<["Administrator", "User"]>;
|
|
@@ -2676,17 +2732,34 @@ export declare const zGetTokenResponse: z.ZodObject<{
|
|
|
2676
2732
|
date_created: z.ZodString;
|
|
2677
2733
|
}, "strip", z.ZodTypeAny, {
|
|
2678
2734
|
name: string;
|
|
2679
|
-
role: "
|
|
2735
|
+
role: "Administrator" | "User";
|
|
2680
2736
|
date_created: string;
|
|
2681
2737
|
id?: string | undefined;
|
|
2682
2738
|
secret?: string | undefined;
|
|
2683
2739
|
}, {
|
|
2684
2740
|
name: string;
|
|
2685
|
-
role: "
|
|
2741
|
+
role: "Administrator" | "User";
|
|
2686
2742
|
date_created: string;
|
|
2687
2743
|
id?: string | undefined;
|
|
2688
2744
|
secret?: string | undefined;
|
|
2689
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
|
+
*/
|
|
2690
2763
|
export declare const zUpdateTokenResponse: z.ZodObject<{
|
|
2691
2764
|
name: z.ZodString;
|
|
2692
2765
|
role: z.ZodEnum<["Administrator", "User"]>;
|
|
@@ -2695,17 +2768,24 @@ export declare const zUpdateTokenResponse: z.ZodObject<{
|
|
|
2695
2768
|
date_created: z.ZodString;
|
|
2696
2769
|
}, "strip", z.ZodTypeAny, {
|
|
2697
2770
|
name: string;
|
|
2698
|
-
role: "
|
|
2771
|
+
role: "Administrator" | "User";
|
|
2699
2772
|
date_created: string;
|
|
2700
2773
|
id?: string | undefined;
|
|
2701
2774
|
secret?: string | undefined;
|
|
2702
2775
|
}, {
|
|
2703
2776
|
name: string;
|
|
2704
|
-
role: "
|
|
2777
|
+
role: "Administrator" | "User";
|
|
2705
2778
|
date_created: string;
|
|
2706
2779
|
id?: string | undefined;
|
|
2707
2780
|
secret?: string | undefined;
|
|
2708
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
|
+
*/
|
|
2709
2789
|
export declare const zRegenerateTokenResponse: z.ZodObject<{
|
|
2710
2790
|
name: z.ZodString;
|
|
2711
2791
|
role: z.ZodEnum<["Administrator", "User"]>;
|
|
@@ -2714,17 +2794,24 @@ export declare const zRegenerateTokenResponse: z.ZodObject<{
|
|
|
2714
2794
|
date_created: z.ZodString;
|
|
2715
2795
|
}, "strip", z.ZodTypeAny, {
|
|
2716
2796
|
name: string;
|
|
2717
|
-
role: "
|
|
2797
|
+
role: "Administrator" | "User";
|
|
2718
2798
|
date_created: string;
|
|
2719
2799
|
id?: string | undefined;
|
|
2720
2800
|
secret?: string | undefined;
|
|
2721
2801
|
}, {
|
|
2722
2802
|
name: string;
|
|
2723
|
-
role: "
|
|
2803
|
+
role: "Administrator" | "User";
|
|
2724
2804
|
date_created: string;
|
|
2725
2805
|
id?: string | undefined;
|
|
2726
2806
|
secret?: string | undefined;
|
|
2727
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
|
+
*/
|
|
2728
2815
|
export declare const zListUserOrganizationsResponse: z.ZodArray<z.ZodObject<{
|
|
2729
2816
|
realm: z.ZodOptional<z.ZodString>;
|
|
2730
2817
|
displayName: z.ZodOptional<z.ZodString>;
|
|
@@ -2735,6 +2822,9 @@ export declare const zListUserOrganizationsResponse: z.ZodArray<z.ZodObject<{
|
|
|
2735
2822
|
realm?: string | undefined;
|
|
2736
2823
|
displayName?: string | undefined;
|
|
2737
2824
|
}>, "many">;
|
|
2825
|
+
/**
|
|
2826
|
+
* An array of users
|
|
2827
|
+
*/
|
|
2738
2828
|
export declare const zListUsersResponse: z.ZodArray<z.ZodObject<{
|
|
2739
2829
|
email: z.ZodString;
|
|
2740
2830
|
first_name: z.ZodString;
|
|
@@ -2743,85 +2833,52 @@ export declare const zListUsersResponse: z.ZodArray<z.ZodObject<{
|
|
|
2743
2833
|
status: z.ZodEnum<["active", "inactive"]>;
|
|
2744
2834
|
id: z.ZodString;
|
|
2745
2835
|
date_created: z.ZodString;
|
|
2746
|
-
cluster_permissions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2747
|
-
cluster_id: z.ZodString;
|
|
2748
|
-
permissions: z.ZodEnum<["readwrite", "readonly"]>;
|
|
2749
|
-
}, "strip", z.ZodTypeAny, {
|
|
2750
|
-
cluster_id: string;
|
|
2751
|
-
permissions: "readonly" | "readwrite";
|
|
2752
|
-
}, {
|
|
2753
|
-
cluster_id: string;
|
|
2754
|
-
permissions: "readonly" | "readwrite";
|
|
2755
|
-
}>, "many">>;
|
|
2756
2836
|
}, "strip", z.ZodTypeAny, {
|
|
2757
2837
|
id: string;
|
|
2758
|
-
role: "
|
|
2838
|
+
role: "Administrator" | "User";
|
|
2759
2839
|
email: string;
|
|
2760
2840
|
status: "active" | "inactive";
|
|
2761
|
-
date_created: string;
|
|
2762
2841
|
first_name: string;
|
|
2763
2842
|
last_name: string;
|
|
2764
|
-
|
|
2765
|
-
cluster_id: string;
|
|
2766
|
-
permissions: "readonly" | "readwrite";
|
|
2767
|
-
}[] | undefined;
|
|
2843
|
+
date_created: string;
|
|
2768
2844
|
}, {
|
|
2769
2845
|
id: string;
|
|
2770
|
-
role: "
|
|
2846
|
+
role: "Administrator" | "User";
|
|
2771
2847
|
email: string;
|
|
2772
2848
|
status: "active" | "inactive";
|
|
2773
|
-
date_created: string;
|
|
2774
2849
|
first_name: string;
|
|
2775
2850
|
last_name: string;
|
|
2776
|
-
|
|
2777
|
-
cluster_id: string;
|
|
2778
|
-
permissions: "readonly" | "readwrite";
|
|
2779
|
-
}[] | undefined;
|
|
2851
|
+
date_created: string;
|
|
2780
2852
|
}>, "many">;
|
|
2781
|
-
export declare const
|
|
2853
|
+
export declare const zCreateUserData: z.ZodObject<{
|
|
2782
2854
|
email: z.ZodString;
|
|
2783
2855
|
first_name: z.ZodString;
|
|
2784
2856
|
last_name: z.ZodString;
|
|
2785
|
-
|
|
2786
|
-
|
|
2787
|
-
|
|
2788
|
-
|
|
2789
|
-
cluster_permissions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2790
|
-
cluster_id: z.ZodString;
|
|
2791
|
-
permissions: z.ZodEnum<["readwrite", "readonly"]>;
|
|
2792
|
-
}, "strip", z.ZodTypeAny, {
|
|
2793
|
-
cluster_id: string;
|
|
2794
|
-
permissions: "readonly" | "readwrite";
|
|
2795
|
-
}, {
|
|
2796
|
-
cluster_id: string;
|
|
2797
|
-
permissions: "readonly" | "readwrite";
|
|
2798
|
-
}>, "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"]>>;
|
|
2799
2861
|
}, "strip", z.ZodTypeAny, {
|
|
2800
|
-
|
|
2801
|
-
role: "User" | "Administrator";
|
|
2862
|
+
code: string;
|
|
2802
2863
|
email: string;
|
|
2803
|
-
status: "active" | "inactive";
|
|
2804
|
-
date_created: string;
|
|
2805
2864
|
first_name: string;
|
|
2806
2865
|
last_name: string;
|
|
2807
|
-
|
|
2808
|
-
|
|
2809
|
-
|
|
2810
|
-
}[] | undefined;
|
|
2866
|
+
password: string;
|
|
2867
|
+
role?: "Administrator" | "User" | undefined;
|
|
2868
|
+
status?: "active" | "inactive" | undefined;
|
|
2811
2869
|
}, {
|
|
2812
|
-
|
|
2813
|
-
role: "User" | "Administrator";
|
|
2870
|
+
code: string;
|
|
2814
2871
|
email: string;
|
|
2815
|
-
status: "active" | "inactive";
|
|
2816
|
-
date_created: string;
|
|
2817
2872
|
first_name: string;
|
|
2818
2873
|
last_name: string;
|
|
2819
|
-
|
|
2820
|
-
|
|
2821
|
-
|
|
2822
|
-
}[] | undefined;
|
|
2874
|
+
password: string;
|
|
2875
|
+
role?: "Administrator" | "User" | undefined;
|
|
2876
|
+
status?: "active" | "inactive" | undefined;
|
|
2823
2877
|
}>;
|
|
2824
|
-
|
|
2878
|
+
/**
|
|
2879
|
+
* Successfully created. Returns created user details.
|
|
2880
|
+
*/
|
|
2881
|
+
export declare const zCreateUserResponse: z.ZodObject<{
|
|
2825
2882
|
email: z.ZodString;
|
|
2826
2883
|
first_name: z.ZodString;
|
|
2827
2884
|
last_name: z.ZodString;
|
|
@@ -2829,42 +2886,31 @@ export declare const zDeleteUserResponse: z.ZodObject<{
|
|
|
2829
2886
|
status: z.ZodEnum<["active", "inactive"]>;
|
|
2830
2887
|
id: z.ZodString;
|
|
2831
2888
|
date_created: z.ZodString;
|
|
2832
|
-
cluster_permissions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2833
|
-
cluster_id: z.ZodString;
|
|
2834
|
-
permissions: z.ZodEnum<["readwrite", "readonly"]>;
|
|
2835
|
-
}, "strip", z.ZodTypeAny, {
|
|
2836
|
-
cluster_id: string;
|
|
2837
|
-
permissions: "readonly" | "readwrite";
|
|
2838
|
-
}, {
|
|
2839
|
-
cluster_id: string;
|
|
2840
|
-
permissions: "readonly" | "readwrite";
|
|
2841
|
-
}>, "many">>;
|
|
2842
2889
|
}, "strip", z.ZodTypeAny, {
|
|
2843
2890
|
id: string;
|
|
2844
|
-
role: "
|
|
2891
|
+
role: "Administrator" | "User";
|
|
2845
2892
|
email: string;
|
|
2846
2893
|
status: "active" | "inactive";
|
|
2847
|
-
date_created: string;
|
|
2848
2894
|
first_name: string;
|
|
2849
2895
|
last_name: string;
|
|
2850
|
-
|
|
2851
|
-
cluster_id: string;
|
|
2852
|
-
permissions: "readonly" | "readwrite";
|
|
2853
|
-
}[] | undefined;
|
|
2896
|
+
date_created: string;
|
|
2854
2897
|
}, {
|
|
2855
2898
|
id: string;
|
|
2856
|
-
role: "
|
|
2899
|
+
role: "Administrator" | "User";
|
|
2857
2900
|
email: string;
|
|
2858
2901
|
status: "active" | "inactive";
|
|
2859
|
-
date_created: string;
|
|
2860
2902
|
first_name: string;
|
|
2861
2903
|
last_name: string;
|
|
2862
|
-
|
|
2863
|
-
cluster_id: string;
|
|
2864
|
-
permissions: "readonly" | "readwrite";
|
|
2865
|
-
}[] | undefined;
|
|
2904
|
+
date_created: string;
|
|
2866
2905
|
}>;
|
|
2867
|
-
|
|
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<{
|
|
2868
2914
|
email: z.ZodString;
|
|
2869
2915
|
first_name: z.ZodString;
|
|
2870
2916
|
last_name: z.ZodString;
|
|
@@ -2872,42 +2918,31 @@ export declare const zGetUserResponse: z.ZodObject<{
|
|
|
2872
2918
|
status: z.ZodEnum<["active", "inactive"]>;
|
|
2873
2919
|
id: z.ZodString;
|
|
2874
2920
|
date_created: z.ZodString;
|
|
2875
|
-
cluster_permissions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2876
|
-
cluster_id: z.ZodString;
|
|
2877
|
-
permissions: z.ZodEnum<["readwrite", "readonly"]>;
|
|
2878
|
-
}, "strip", z.ZodTypeAny, {
|
|
2879
|
-
cluster_id: string;
|
|
2880
|
-
permissions: "readonly" | "readwrite";
|
|
2881
|
-
}, {
|
|
2882
|
-
cluster_id: string;
|
|
2883
|
-
permissions: "readonly" | "readwrite";
|
|
2884
|
-
}>, "many">>;
|
|
2885
2921
|
}, "strip", z.ZodTypeAny, {
|
|
2886
2922
|
id: string;
|
|
2887
|
-
role: "
|
|
2923
|
+
role: "Administrator" | "User";
|
|
2888
2924
|
email: string;
|
|
2889
2925
|
status: "active" | "inactive";
|
|
2890
|
-
date_created: string;
|
|
2891
2926
|
first_name: string;
|
|
2892
2927
|
last_name: string;
|
|
2893
|
-
|
|
2894
|
-
cluster_id: string;
|
|
2895
|
-
permissions: "readonly" | "readwrite";
|
|
2896
|
-
}[] | undefined;
|
|
2928
|
+
date_created: string;
|
|
2897
2929
|
}, {
|
|
2898
2930
|
id: string;
|
|
2899
|
-
role: "
|
|
2931
|
+
role: "Administrator" | "User";
|
|
2900
2932
|
email: string;
|
|
2901
2933
|
status: "active" | "inactive";
|
|
2902
|
-
date_created: string;
|
|
2903
2934
|
first_name: string;
|
|
2904
2935
|
last_name: string;
|
|
2905
|
-
|
|
2906
|
-
cluster_id: string;
|
|
2907
|
-
permissions: "readonly" | "readwrite";
|
|
2908
|
-
}[] | undefined;
|
|
2936
|
+
date_created: string;
|
|
2909
2937
|
}>;
|
|
2910
|
-
|
|
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<{
|
|
2911
2946
|
email: z.ZodString;
|
|
2912
2947
|
first_name: z.ZodString;
|
|
2913
2948
|
last_name: z.ZodString;
|
|
@@ -2915,85 +2950,50 @@ export declare const zUpdateUserResponse: z.ZodObject<{
|
|
|
2915
2950
|
status: z.ZodEnum<["active", "inactive"]>;
|
|
2916
2951
|
id: z.ZodString;
|
|
2917
2952
|
date_created: z.ZodString;
|
|
2918
|
-
cluster_permissions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2919
|
-
cluster_id: z.ZodString;
|
|
2920
|
-
permissions: z.ZodEnum<["readwrite", "readonly"]>;
|
|
2921
|
-
}, "strip", z.ZodTypeAny, {
|
|
2922
|
-
cluster_id: string;
|
|
2923
|
-
permissions: "readonly" | "readwrite";
|
|
2924
|
-
}, {
|
|
2925
|
-
cluster_id: string;
|
|
2926
|
-
permissions: "readonly" | "readwrite";
|
|
2927
|
-
}>, "many">>;
|
|
2928
2953
|
}, "strip", z.ZodTypeAny, {
|
|
2929
2954
|
id: string;
|
|
2930
|
-
role: "
|
|
2955
|
+
role: "Administrator" | "User";
|
|
2931
2956
|
email: string;
|
|
2932
2957
|
status: "active" | "inactive";
|
|
2933
|
-
date_created: string;
|
|
2934
2958
|
first_name: string;
|
|
2935
2959
|
last_name: string;
|
|
2936
|
-
|
|
2937
|
-
cluster_id: string;
|
|
2938
|
-
permissions: "readonly" | "readwrite";
|
|
2939
|
-
}[] | undefined;
|
|
2960
|
+
date_created: string;
|
|
2940
2961
|
}, {
|
|
2941
2962
|
id: string;
|
|
2942
|
-
role: "
|
|
2963
|
+
role: "Administrator" | "User";
|
|
2943
2964
|
email: string;
|
|
2944
2965
|
status: "active" | "inactive";
|
|
2945
|
-
date_created: string;
|
|
2946
2966
|
first_name: string;
|
|
2947
2967
|
last_name: string;
|
|
2948
|
-
|
|
2949
|
-
cluster_id: string;
|
|
2950
|
-
permissions: "readonly" | "readwrite";
|
|
2951
|
-
}[] | undefined;
|
|
2968
|
+
date_created: string;
|
|
2952
2969
|
}>;
|
|
2953
|
-
export declare const
|
|
2954
|
-
email: z.ZodString
|
|
2955
|
-
first_name: z.ZodString
|
|
2956
|
-
last_name: z.ZodString
|
|
2957
|
-
role: z.ZodEnum<["Administrator", "User"]
|
|
2958
|
-
status: z.ZodEnum<["active", "inactive"]
|
|
2959
|
-
id: z.ZodString;
|
|
2960
|
-
date_created: z.ZodString;
|
|
2961
|
-
cluster_permissions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2962
|
-
cluster_id: z.ZodString;
|
|
2963
|
-
permissions: z.ZodEnum<["readwrite", "readonly"]>;
|
|
2964
|
-
}, "strip", z.ZodTypeAny, {
|
|
2965
|
-
cluster_id: string;
|
|
2966
|
-
permissions: "readonly" | "readwrite";
|
|
2967
|
-
}, {
|
|
2968
|
-
cluster_id: string;
|
|
2969
|
-
permissions: "readonly" | "readwrite";
|
|
2970
|
-
}>, "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"]>>;
|
|
2971
2976
|
}, "strip", z.ZodTypeAny, {
|
|
2972
|
-
|
|
2973
|
-
|
|
2974
|
-
|
|
2975
|
-
|
|
2976
|
-
|
|
2977
|
-
first_name: string;
|
|
2978
|
-
last_name: string;
|
|
2979
|
-
cluster_permissions?: {
|
|
2980
|
-
cluster_id: string;
|
|
2981
|
-
permissions: "readonly" | "readwrite";
|
|
2982
|
-
}[] | 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;
|
|
2983
2982
|
}, {
|
|
2984
|
-
|
|
2985
|
-
|
|
2986
|
-
|
|
2987
|
-
|
|
2988
|
-
|
|
2989
|
-
first_name: string;
|
|
2990
|
-
last_name: string;
|
|
2991
|
-
cluster_permissions?: {
|
|
2992
|
-
cluster_id: string;
|
|
2993
|
-
permissions: "readonly" | "readwrite";
|
|
2994
|
-
}[] | 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;
|
|
2995
2988
|
}>;
|
|
2996
|
-
|
|
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<{
|
|
2997
2997
|
email: z.ZodString;
|
|
2998
2998
|
first_name: z.ZodString;
|
|
2999
2999
|
last_name: z.ZodString;
|
|
@@ -3001,39 +3001,21 @@ export declare const zSetClusterPermissionsResponse: z.ZodObject<{
|
|
|
3001
3001
|
status: z.ZodEnum<["active", "inactive"]>;
|
|
3002
3002
|
id: z.ZodString;
|
|
3003
3003
|
date_created: z.ZodString;
|
|
3004
|
-
cluster_permissions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3005
|
-
cluster_id: z.ZodString;
|
|
3006
|
-
permissions: z.ZodEnum<["readwrite", "readonly"]>;
|
|
3007
|
-
}, "strip", z.ZodTypeAny, {
|
|
3008
|
-
cluster_id: string;
|
|
3009
|
-
permissions: "readonly" | "readwrite";
|
|
3010
|
-
}, {
|
|
3011
|
-
cluster_id: string;
|
|
3012
|
-
permissions: "readonly" | "readwrite";
|
|
3013
|
-
}>, "many">>;
|
|
3014
3004
|
}, "strip", z.ZodTypeAny, {
|
|
3015
3005
|
id: string;
|
|
3016
|
-
role: "
|
|
3006
|
+
role: "Administrator" | "User";
|
|
3017
3007
|
email: string;
|
|
3018
3008
|
status: "active" | "inactive";
|
|
3019
|
-
date_created: string;
|
|
3020
3009
|
first_name: string;
|
|
3021
3010
|
last_name: string;
|
|
3022
|
-
|
|
3023
|
-
cluster_id: string;
|
|
3024
|
-
permissions: "readonly" | "readwrite";
|
|
3025
|
-
}[] | undefined;
|
|
3011
|
+
date_created: string;
|
|
3026
3012
|
}, {
|
|
3027
3013
|
id: string;
|
|
3028
|
-
role: "
|
|
3014
|
+
role: "Administrator" | "User";
|
|
3029
3015
|
email: string;
|
|
3030
3016
|
status: "active" | "inactive";
|
|
3031
|
-
date_created: string;
|
|
3032
3017
|
first_name: string;
|
|
3033
3018
|
last_name: string;
|
|
3034
|
-
|
|
3035
|
-
cluster_id: string;
|
|
3036
|
-
permissions: "readonly" | "readwrite";
|
|
3037
|
-
}[] | undefined;
|
|
3019
|
+
date_created: string;
|
|
3038
3020
|
}>;
|
|
3039
3021
|
//# sourceMappingURL=zod.gen.d.ts.map
|