@cloudfleet/sdk 0.0.1-0da1042

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.
Files changed (38) hide show
  1. package/README.md +9 -0
  2. package/dist/client.gen.d.ts +13 -0
  3. package/dist/client.gen.d.ts.map +1 -0
  4. package/dist/client.gen.js +6 -0
  5. package/dist/client.gen.js.map +1 -0
  6. package/dist/index.d.ts +8 -0
  7. package/dist/index.d.ts.map +1 -0
  8. package/dist/index.js +8 -0
  9. package/dist/index.js.map +1 -0
  10. package/dist/schemas.gen.d.ts +1706 -0
  11. package/dist/schemas.gen.d.ts.map +1 -0
  12. package/dist/schemas.gen.js +1746 -0
  13. package/dist/schemas.gen.js.map +1 -0
  14. package/dist/sdk.gen.d.ts +363 -0
  15. package/dist/sdk.gen.d.ts.map +1 -0
  16. package/dist/sdk.gen.js +634 -0
  17. package/dist/sdk.gen.js.map +1 -0
  18. package/dist/services/kubernetes/api.d.ts +196 -0
  19. package/dist/services/kubernetes/api.d.ts.map +1 -0
  20. package/dist/services/kubernetes/api.js +140 -0
  21. package/dist/services/kubernetes/api.js.map +1 -0
  22. package/dist/services/kubernetes/index.d.ts +44 -0
  23. package/dist/services/kubernetes/index.d.ts.map +1 -0
  24. package/dist/services/kubernetes/index.js +68 -0
  25. package/dist/services/kubernetes/index.js.map +1 -0
  26. package/dist/services/kubernetes/types.d.ts +1335 -0
  27. package/dist/services/kubernetes/types.d.ts.map +1 -0
  28. package/dist/services/kubernetes/types.js +2 -0
  29. package/dist/services/kubernetes/types.js.map +1 -0
  30. package/dist/types.gen.d.ts +1928 -0
  31. package/dist/types.gen.d.ts.map +1 -0
  32. package/dist/types.gen.js +3 -0
  33. package/dist/types.gen.js.map +1 -0
  34. package/dist/zod.gen.d.ts +2505 -0
  35. package/dist/zod.gen.d.ts.map +1 -0
  36. package/dist/zod.gen.js +1129 -0
  37. package/dist/zod.gen.js.map +1 -0
  38. package/package.json +39 -0
@@ -0,0 +1,2505 @@
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", "au_abn", "au_arn", "ba_tin", "bb_tin", "bg_uic", "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", "de_stn", "do_rcn", "ec_ruc", "eg_tin", "es_cif", "eu_oss_vat", "eu_vat", "gb_vat", "ge_vat", "gn_nif", "hk_br", "hr_oib", "hu_tin", "id_npwp", "il_vat", "in_gst", "is_vat", "jp_cn", "jp_rn", "jp_trn", "ke_pin", "kh_tin", "kr_brn", "kz_bin", "li_uid", "li_vat", "ma_vat", "md_vat", "me_pib", "mk_vat", "mr_nif", "mx_rfc", "my_frp", "my_itn", "my_sst", "ng_tin", "no_vat", "no_voec", "np_pan", "nz_gst", "om_vat", "pe_ruc", "ph_tin", "ro_tin", "rs_pib", "ru_inn", "ru_kpp", "sa_vat", "sg_gst", "sg_uen", "si_tin", "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", "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" | "au_abn" | "au_arn" | "ba_tin" | "bb_tin" | "bg_uic" | "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" | "de_stn" | "do_rcn" | "ec_ruc" | "eg_tin" | "es_cif" | "eu_oss_vat" | "eu_vat" | "gb_vat" | "ge_vat" | "gn_nif" | "hk_br" | "hr_oib" | "hu_tin" | "id_npwp" | "il_vat" | "in_gst" | "is_vat" | "jp_cn" | "jp_rn" | "jp_trn" | "ke_pin" | "kh_tin" | "kr_brn" | "kz_bin" | "li_uid" | "li_vat" | "ma_vat" | "md_vat" | "me_pib" | "mk_vat" | "mr_nif" | "mx_rfc" | "my_frp" | "my_itn" | "my_sst" | "ng_tin" | "no_vat" | "no_voec" | "np_pan" | "nz_gst" | "om_vat" | "pe_ruc" | "ph_tin" | "ro_tin" | "rs_pib" | "ru_inn" | "ru_kpp" | "sa_vat" | "sg_gst" | "sg_uen" | "si_tin" | "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" | "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" | "au_abn" | "au_arn" | "ba_tin" | "bb_tin" | "bg_uic" | "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" | "de_stn" | "do_rcn" | "ec_ruc" | "eg_tin" | "es_cif" | "eu_oss_vat" | "eu_vat" | "gb_vat" | "ge_vat" | "gn_nif" | "hk_br" | "hr_oib" | "hu_tin" | "id_npwp" | "il_vat" | "in_gst" | "is_vat" | "jp_cn" | "jp_rn" | "jp_trn" | "ke_pin" | "kh_tin" | "kr_brn" | "kz_bin" | "li_uid" | "li_vat" | "ma_vat" | "md_vat" | "me_pib" | "mk_vat" | "mr_nif" | "mx_rfc" | "my_frp" | "my_itn" | "my_sst" | "ng_tin" | "no_vat" | "no_voec" | "np_pan" | "nz_gst" | "om_vat" | "pe_ruc" | "ph_tin" | "ro_tin" | "rs_pib" | "ru_inn" | "ru_kpp" | "sa_vat" | "sg_gst" | "sg_uen" | "si_tin" | "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" | "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"]>;
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";
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";
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
+ }>;
139
+ export declare const zClusterCreateInput: z.ZodObject<{
140
+ name: z.ZodString;
141
+ region: z.ZodOptional<z.ZodEnum<["staging", "northamerica-central-1"]>>;
142
+ tier: z.ZodEnum<["basic", "pro"]>;
143
+ version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
144
+ }, "strip", z.ZodTypeAny, {
145
+ name: string;
146
+ version_channel: string;
147
+ tier: "basic" | "pro";
148
+ region?: "staging" | "northamerica-central-1" | undefined;
149
+ }, {
150
+ name: string;
151
+ tier: "basic" | "pro";
152
+ region?: "staging" | "northamerica-central-1" | undefined;
153
+ version_channel?: string | undefined;
154
+ }>;
155
+ export declare const zClusterJoinInformation: z.ZodObject<{
156
+ certificate_authority: z.ZodString;
157
+ endpoint: z.ZodString;
158
+ auth_key: z.ZodString;
159
+ bootstrap_token: z.ZodString;
160
+ versions: z.ZodObject<{
161
+ kubernetes: z.ZodString;
162
+ tailscale: z.ZodString;
163
+ containerd: z.ZodString;
164
+ }, "strip", z.ZodTypeAny, {
165
+ kubernetes: string;
166
+ tailscale: string;
167
+ containerd: string;
168
+ }, {
169
+ kubernetes: string;
170
+ tailscale: string;
171
+ containerd: string;
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
+ }>;
186
+ }, "strip", z.ZodTypeAny, {
187
+ certificate_authority: string;
188
+ endpoint: string;
189
+ auth_key: string;
190
+ bootstrap_token: string;
191
+ versions: {
192
+ kubernetes: string;
193
+ tailscale: string;
194
+ containerd: string;
195
+ };
196
+ third_party_api_access_config: {
197
+ metadata_url: string;
198
+ aws_role_arn: string;
199
+ gcp_workload_identity_provider: string;
200
+ };
201
+ }, {
202
+ certificate_authority: string;
203
+ endpoint: string;
204
+ auth_key: string;
205
+ bootstrap_token: string;
206
+ versions: {
207
+ kubernetes: string;
208
+ tailscale: string;
209
+ containerd: string;
210
+ };
211
+ third_party_api_access_config: {
212
+ metadata_url: string;
213
+ aws_role_arn: string;
214
+ gcp_workload_identity_provider: string;
215
+ };
216
+ }>;
217
+ export declare const zCluster: z.ZodObject<{
218
+ name: z.ZodString;
219
+ region: z.ZodOptional<z.ZodEnum<["staging", "northamerica-central-1"]>>;
220
+ tier: z.ZodEnum<["basic", "pro"]>;
221
+ version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
222
+ id: z.ZodString;
223
+ status: z.ZodEnum<["active", "deleted", "creating", "deployed", "failed", "updating"]>;
224
+ endpoint: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodEnum<[""]>]>>;
225
+ certificate_ca: z.ZodOptional<z.ZodString>;
226
+ version_current: z.ZodOptional<z.ZodString>;
227
+ created_at: z.ZodOptional<z.ZodString>;
228
+ updated_at: z.ZodOptional<z.ZodString>;
229
+ ready: z.ZodOptional<z.ZodBoolean>;
230
+ }, "strip", z.ZodTypeAny, {
231
+ name: string;
232
+ id: string;
233
+ status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
234
+ version_channel: string;
235
+ tier: "basic" | "pro";
236
+ ready?: boolean | undefined;
237
+ region?: "staging" | "northamerica-central-1" | undefined;
238
+ version_current?: string | undefined;
239
+ created_at?: string | undefined;
240
+ updated_at?: string | undefined;
241
+ endpoint?: string | undefined;
242
+ certificate_ca?: string | undefined;
243
+ }, {
244
+ name: string;
245
+ id: string;
246
+ status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
247
+ tier: "basic" | "pro";
248
+ ready?: boolean | undefined;
249
+ region?: "staging" | "northamerica-central-1" | undefined;
250
+ version_channel?: string | undefined;
251
+ version_current?: string | undefined;
252
+ created_at?: string | undefined;
253
+ updated_at?: string | undefined;
254
+ endpoint?: string | undefined;
255
+ certificate_ca?: string | undefined;
256
+ }>;
257
+ export declare const zClusterUpdateInput: z.ZodObject<{
258
+ name: z.ZodOptional<z.ZodString>;
259
+ version_channel: z.ZodOptional<z.ZodString>;
260
+ }, "strip", z.ZodTypeAny, {
261
+ name?: string | undefined;
262
+ version_channel?: string | undefined;
263
+ }, {
264
+ name?: string | undefined;
265
+ version_channel?: string | undefined;
266
+ }>;
267
+ export declare const zFleetCreateInput: z.ZodObject<{
268
+ limits: z.ZodOptional<z.ZodObject<{
269
+ cpu: z.ZodNumber;
270
+ }, "strip", z.ZodTypeAny, {
271
+ cpu: number;
272
+ }, {
273
+ cpu: number;
274
+ }>>;
275
+ gcp: z.ZodOptional<z.ZodObject<{
276
+ enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
277
+ project: z.ZodString;
278
+ }, "strip", z.ZodTypeAny, {
279
+ project: string;
280
+ enabled: boolean;
281
+ }, {
282
+ project: string;
283
+ enabled?: boolean | undefined;
284
+ }>>;
285
+ hetzner: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
286
+ enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
287
+ apiKey: z.ZodOptional<z.ZodString>;
288
+ }, "strip", z.ZodTypeAny, {
289
+ enabled: boolean;
290
+ apiKey?: string | undefined;
291
+ }, {
292
+ apiKey?: string | undefined;
293
+ enabled?: boolean | undefined;
294
+ }>, z.ZodObject<{
295
+ apiKey: z.ZodOptional<z.ZodString>;
296
+ enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
297
+ }, "strip", z.ZodTypeAny, {
298
+ enabled: boolean;
299
+ apiKey?: string | undefined;
300
+ }, {
301
+ apiKey?: string | undefined;
302
+ enabled?: boolean | undefined;
303
+ }>]>>;
304
+ aws: z.ZodOptional<z.ZodObject<{
305
+ enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
306
+ controllerRoleArn: z.ZodString;
307
+ }, "strip", z.ZodTypeAny, {
308
+ controllerRoleArn: string;
309
+ enabled: boolean;
310
+ }, {
311
+ controllerRoleArn: string;
312
+ enabled?: boolean | undefined;
313
+ }>>;
314
+ id: z.ZodString;
315
+ type: z.ZodEnum<["managed", "connected"]>;
316
+ }, "strip", z.ZodTypeAny, {
317
+ type: "connected" | "managed";
318
+ id: string;
319
+ limits?: {
320
+ cpu: number;
321
+ } | undefined;
322
+ gcp?: {
323
+ project: string;
324
+ enabled: boolean;
325
+ } | undefined;
326
+ hetzner?: {
327
+ enabled: boolean;
328
+ apiKey?: string | undefined;
329
+ } | {
330
+ enabled: boolean;
331
+ apiKey?: string | undefined;
332
+ } | undefined;
333
+ aws?: {
334
+ controllerRoleArn: string;
335
+ enabled: boolean;
336
+ } | undefined;
337
+ }, {
338
+ type: "connected" | "managed";
339
+ id: string;
340
+ limits?: {
341
+ cpu: number;
342
+ } | undefined;
343
+ gcp?: {
344
+ project: string;
345
+ enabled?: boolean | undefined;
346
+ } | undefined;
347
+ hetzner?: {
348
+ apiKey?: string | undefined;
349
+ enabled?: boolean | undefined;
350
+ } | {
351
+ apiKey?: string | undefined;
352
+ enabled?: boolean | undefined;
353
+ } | undefined;
354
+ aws?: {
355
+ controllerRoleArn: string;
356
+ enabled?: boolean | undefined;
357
+ } | undefined;
358
+ }>;
359
+ export declare const zFleet: z.ZodObject<{
360
+ limits: z.ZodOptional<z.ZodObject<{
361
+ cpu: z.ZodNumber;
362
+ }, "strip", z.ZodTypeAny, {
363
+ cpu: number;
364
+ }, {
365
+ cpu: number;
366
+ }>>;
367
+ gcp: z.ZodOptional<z.ZodObject<{
368
+ enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
369
+ project: z.ZodString;
370
+ }, "strip", z.ZodTypeAny, {
371
+ project: string;
372
+ enabled: boolean;
373
+ }, {
374
+ project: string;
375
+ enabled?: boolean | undefined;
376
+ }>>;
377
+ hetzner: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
378
+ enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
379
+ apiKey: z.ZodOptional<z.ZodString>;
380
+ }, "strip", z.ZodTypeAny, {
381
+ enabled: boolean;
382
+ apiKey?: string | undefined;
383
+ }, {
384
+ apiKey?: string | undefined;
385
+ enabled?: boolean | undefined;
386
+ }>, z.ZodObject<{
387
+ apiKey: z.ZodOptional<z.ZodString>;
388
+ enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
389
+ }, "strip", z.ZodTypeAny, {
390
+ enabled: boolean;
391
+ apiKey?: string | undefined;
392
+ }, {
393
+ apiKey?: string | undefined;
394
+ enabled?: boolean | undefined;
395
+ }>]>>;
396
+ aws: z.ZodOptional<z.ZodObject<{
397
+ enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
398
+ controllerRoleArn: z.ZodString;
399
+ }, "strip", z.ZodTypeAny, {
400
+ controllerRoleArn: string;
401
+ enabled: boolean;
402
+ }, {
403
+ controllerRoleArn: string;
404
+ enabled?: boolean | undefined;
405
+ }>>;
406
+ id: z.ZodString;
407
+ type: z.ZodEnum<["managed", "connected"]>;
408
+ }, "strip", z.ZodTypeAny, {
409
+ type: "connected" | "managed";
410
+ id: string;
411
+ limits?: {
412
+ cpu: number;
413
+ } | undefined;
414
+ gcp?: {
415
+ project: string;
416
+ enabled: boolean;
417
+ } | undefined;
418
+ hetzner?: {
419
+ enabled: boolean;
420
+ apiKey?: string | undefined;
421
+ } | {
422
+ enabled: boolean;
423
+ apiKey?: string | undefined;
424
+ } | undefined;
425
+ aws?: {
426
+ controllerRoleArn: string;
427
+ enabled: boolean;
428
+ } | undefined;
429
+ }, {
430
+ type: "connected" | "managed";
431
+ id: string;
432
+ limits?: {
433
+ cpu: number;
434
+ } | undefined;
435
+ gcp?: {
436
+ project: string;
437
+ enabled?: boolean | undefined;
438
+ } | undefined;
439
+ hetzner?: {
440
+ apiKey?: string | undefined;
441
+ enabled?: boolean | undefined;
442
+ } | {
443
+ apiKey?: string | undefined;
444
+ enabled?: boolean | undefined;
445
+ } | undefined;
446
+ aws?: {
447
+ controllerRoleArn: string;
448
+ enabled?: boolean | undefined;
449
+ } | undefined;
450
+ }>;
451
+ export declare const zFleetUpdateInput: z.ZodObject<{
452
+ limits: z.ZodOptional<z.ZodObject<{
453
+ cpu: z.ZodNumber;
454
+ }, "strip", z.ZodTypeAny, {
455
+ cpu: number;
456
+ }, {
457
+ cpu: number;
458
+ }>>;
459
+ gcp: z.ZodOptional<z.ZodObject<{
460
+ enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
461
+ project: z.ZodString;
462
+ }, "strip", z.ZodTypeAny, {
463
+ project: string;
464
+ enabled: boolean;
465
+ }, {
466
+ project: string;
467
+ enabled?: boolean | undefined;
468
+ }>>;
469
+ hetzner: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
470
+ enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
471
+ apiKey: z.ZodOptional<z.ZodString>;
472
+ }, "strip", z.ZodTypeAny, {
473
+ enabled: boolean;
474
+ apiKey?: string | undefined;
475
+ }, {
476
+ apiKey?: string | undefined;
477
+ enabled?: boolean | undefined;
478
+ }>, z.ZodObject<{
479
+ apiKey: z.ZodOptional<z.ZodString>;
480
+ enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
481
+ }, "strip", z.ZodTypeAny, {
482
+ enabled: boolean;
483
+ apiKey?: string | undefined;
484
+ }, {
485
+ apiKey?: string | undefined;
486
+ enabled?: boolean | undefined;
487
+ }>]>>;
488
+ aws: z.ZodOptional<z.ZodObject<{
489
+ enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
490
+ controllerRoleArn: z.ZodString;
491
+ }, "strip", z.ZodTypeAny, {
492
+ controllerRoleArn: string;
493
+ enabled: boolean;
494
+ }, {
495
+ controllerRoleArn: string;
496
+ enabled?: boolean | undefined;
497
+ }>>;
498
+ }, "strip", z.ZodTypeAny, {
499
+ limits?: {
500
+ cpu: number;
501
+ } | undefined;
502
+ gcp?: {
503
+ project: string;
504
+ enabled: boolean;
505
+ } | undefined;
506
+ hetzner?: {
507
+ enabled: boolean;
508
+ apiKey?: string | undefined;
509
+ } | {
510
+ enabled: boolean;
511
+ apiKey?: string | undefined;
512
+ } | undefined;
513
+ aws?: {
514
+ controllerRoleArn: string;
515
+ enabled: boolean;
516
+ } | undefined;
517
+ }, {
518
+ limits?: {
519
+ cpu: number;
520
+ } | undefined;
521
+ gcp?: {
522
+ project: string;
523
+ enabled?: boolean | undefined;
524
+ } | undefined;
525
+ hetzner?: {
526
+ apiKey?: string | undefined;
527
+ enabled?: boolean | undefined;
528
+ } | {
529
+ apiKey?: string | undefined;
530
+ enabled?: boolean | undefined;
531
+ } | undefined;
532
+ aws?: {
533
+ controllerRoleArn: string;
534
+ enabled?: boolean | undefined;
535
+ } | undefined;
536
+ }>;
537
+ export declare const zInvite: z.ZodObject<{
538
+ id: z.ZodOptional<z.ZodString>;
539
+ organization_id: z.ZodOptional<z.ZodString>;
540
+ date_created: z.ZodString;
541
+ email: z.ZodOptional<z.ZodString>;
542
+ code: z.ZodOptional<z.ZodString>;
543
+ }, "strip", z.ZodTypeAny, {
544
+ date_created: string;
545
+ code?: string | undefined;
546
+ id?: string | undefined;
547
+ email?: string | undefined;
548
+ organization_id?: string | undefined;
549
+ }, {
550
+ date_created: string;
551
+ code?: string | undefined;
552
+ id?: string | undefined;
553
+ email?: string | undefined;
554
+ organization_id?: string | undefined;
555
+ }>;
556
+ export declare const zInvoice: z.ZodObject<{
557
+ id: z.ZodOptional<z.ZodString>;
558
+ organizationId: z.ZodOptional<z.ZodString>;
559
+ status: z.ZodOptional<z.ZodEnum<["DRAFT", "COMMITTED", "VOID"]>>;
560
+ amount: z.ZodOptional<z.ZodNumber>;
561
+ currency: z.ZodOptional<z.ZodEnum<["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"]>>;
562
+ creditAdj: z.ZodOptional<z.ZodNumber>;
563
+ refundAdj: z.ZodOptional<z.ZodNumber>;
564
+ invoiceDate: z.ZodOptional<z.ZodString>;
565
+ targetDate: z.ZodOptional<z.ZodString>;
566
+ invoiceNumber: z.ZodOptional<z.ZodString>;
567
+ balance: z.ZodOptional<z.ZodNumber>;
568
+ bundleKeys: z.ZodOptional<z.ZodString>;
569
+ credits: z.ZodOptional<z.ZodArray<z.ZodObject<{
570
+ id: z.ZodOptional<z.ZodString>;
571
+ linkedInvoiceItemId: z.ZodOptional<z.ZodString>;
572
+ productName: z.ZodOptional<z.ZodString>;
573
+ planName: z.ZodOptional<z.ZodString>;
574
+ phaseName: z.ZodOptional<z.ZodString>;
575
+ usageName: z.ZodOptional<z.ZodString>;
576
+ prettyProductName: z.ZodOptional<z.ZodString>;
577
+ prettyPlanName: z.ZodOptional<z.ZodString>;
578
+ prettyPhaseName: z.ZodOptional<z.ZodString>;
579
+ prettyUsageName: z.ZodOptional<z.ZodString>;
580
+ itemType: z.ZodOptional<z.ZodEnum<["EXTERNAL_CHARGE", "FIXED", "RECURRING", "REPAIR_ADJ", "CBA_ADJ", "CREDIT_ADJ", "ITEM_ADJ", "USAGE", "TAX", "PARENT_SUMMARY"]>>;
581
+ description: z.ZodOptional<z.ZodString>;
582
+ startDate: z.ZodOptional<z.ZodString>;
583
+ endDate: z.ZodOptional<z.ZodString>;
584
+ amount: z.ZodOptional<z.ZodNumber>;
585
+ rate: z.ZodOptional<z.ZodNumber>;
586
+ currency: z.ZodOptional<z.ZodEnum<["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"]>>;
587
+ quantity: z.ZodOptional<z.ZodNumber>;
588
+ itemDetails: z.ZodOptional<z.ZodString>;
589
+ catalogEffectiveDate: z.ZodOptional<z.ZodString>;
590
+ childItems: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
591
+ }, "strip", z.ZodTypeAny, {
592
+ 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;
593
+ id?: string | undefined;
594
+ description?: string | undefined;
595
+ amount?: number | undefined;
596
+ linkedInvoiceItemId?: string | undefined;
597
+ productName?: string | undefined;
598
+ planName?: string | undefined;
599
+ phaseName?: string | undefined;
600
+ usageName?: string | undefined;
601
+ prettyProductName?: string | undefined;
602
+ prettyPlanName?: string | undefined;
603
+ prettyPhaseName?: string | undefined;
604
+ prettyUsageName?: string | undefined;
605
+ itemType?: "EXTERNAL_CHARGE" | "FIXED" | "RECURRING" | "REPAIR_ADJ" | "CBA_ADJ" | "CREDIT_ADJ" | "ITEM_ADJ" | "USAGE" | "TAX" | "PARENT_SUMMARY" | undefined;
606
+ startDate?: string | undefined;
607
+ endDate?: string | undefined;
608
+ rate?: number | undefined;
609
+ quantity?: number | undefined;
610
+ itemDetails?: string | undefined;
611
+ catalogEffectiveDate?: string | undefined;
612
+ childItems?: unknown[] | undefined;
613
+ }, {
614
+ 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;
615
+ id?: string | undefined;
616
+ description?: string | undefined;
617
+ amount?: number | undefined;
618
+ linkedInvoiceItemId?: string | undefined;
619
+ productName?: string | undefined;
620
+ planName?: string | undefined;
621
+ phaseName?: string | undefined;
622
+ usageName?: string | undefined;
623
+ prettyProductName?: string | undefined;
624
+ prettyPlanName?: string | undefined;
625
+ prettyPhaseName?: string | undefined;
626
+ prettyUsageName?: string | undefined;
627
+ itemType?: "EXTERNAL_CHARGE" | "FIXED" | "RECURRING" | "REPAIR_ADJ" | "CBA_ADJ" | "CREDIT_ADJ" | "ITEM_ADJ" | "USAGE" | "TAX" | "PARENT_SUMMARY" | undefined;
628
+ startDate?: string | undefined;
629
+ endDate?: string | undefined;
630
+ rate?: number | undefined;
631
+ quantity?: number | undefined;
632
+ itemDetails?: string | undefined;
633
+ catalogEffectiveDate?: string | undefined;
634
+ childItems?: unknown[] | undefined;
635
+ }>, "many">>;
636
+ items: z.ZodOptional<z.ZodArray<z.ZodObject<{
637
+ id: z.ZodOptional<z.ZodString>;
638
+ linkedInvoiceItemId: z.ZodOptional<z.ZodString>;
639
+ productName: z.ZodOptional<z.ZodString>;
640
+ planName: z.ZodOptional<z.ZodString>;
641
+ phaseName: z.ZodOptional<z.ZodString>;
642
+ usageName: z.ZodOptional<z.ZodString>;
643
+ prettyProductName: z.ZodOptional<z.ZodString>;
644
+ prettyPlanName: z.ZodOptional<z.ZodString>;
645
+ prettyPhaseName: z.ZodOptional<z.ZodString>;
646
+ prettyUsageName: z.ZodOptional<z.ZodString>;
647
+ itemType: z.ZodOptional<z.ZodEnum<["EXTERNAL_CHARGE", "FIXED", "RECURRING", "REPAIR_ADJ", "CBA_ADJ", "CREDIT_ADJ", "ITEM_ADJ", "USAGE", "TAX", "PARENT_SUMMARY"]>>;
648
+ description: z.ZodOptional<z.ZodString>;
649
+ startDate: z.ZodOptional<z.ZodString>;
650
+ endDate: z.ZodOptional<z.ZodString>;
651
+ amount: z.ZodOptional<z.ZodNumber>;
652
+ rate: z.ZodOptional<z.ZodNumber>;
653
+ currency: z.ZodOptional<z.ZodEnum<["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"]>>;
654
+ quantity: z.ZodOptional<z.ZodNumber>;
655
+ itemDetails: z.ZodOptional<z.ZodString>;
656
+ catalogEffectiveDate: z.ZodOptional<z.ZodString>;
657
+ childItems: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
658
+ }, "strip", z.ZodTypeAny, {
659
+ 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;
660
+ id?: string | undefined;
661
+ description?: string | undefined;
662
+ amount?: number | undefined;
663
+ linkedInvoiceItemId?: string | undefined;
664
+ productName?: string | undefined;
665
+ planName?: string | undefined;
666
+ phaseName?: string | undefined;
667
+ usageName?: string | undefined;
668
+ prettyProductName?: string | undefined;
669
+ prettyPlanName?: string | undefined;
670
+ prettyPhaseName?: string | undefined;
671
+ prettyUsageName?: string | undefined;
672
+ itemType?: "EXTERNAL_CHARGE" | "FIXED" | "RECURRING" | "REPAIR_ADJ" | "CBA_ADJ" | "CREDIT_ADJ" | "ITEM_ADJ" | "USAGE" | "TAX" | "PARENT_SUMMARY" | undefined;
673
+ startDate?: string | undefined;
674
+ endDate?: string | undefined;
675
+ rate?: number | undefined;
676
+ quantity?: number | undefined;
677
+ itemDetails?: string | undefined;
678
+ catalogEffectiveDate?: string | undefined;
679
+ childItems?: unknown[] | undefined;
680
+ }, {
681
+ 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;
682
+ id?: string | undefined;
683
+ description?: string | undefined;
684
+ amount?: number | undefined;
685
+ linkedInvoiceItemId?: string | undefined;
686
+ productName?: string | undefined;
687
+ planName?: string | undefined;
688
+ phaseName?: string | undefined;
689
+ usageName?: string | undefined;
690
+ prettyProductName?: string | undefined;
691
+ prettyPlanName?: string | undefined;
692
+ prettyPhaseName?: string | undefined;
693
+ prettyUsageName?: string | undefined;
694
+ itemType?: "EXTERNAL_CHARGE" | "FIXED" | "RECURRING" | "REPAIR_ADJ" | "CBA_ADJ" | "CREDIT_ADJ" | "ITEM_ADJ" | "USAGE" | "TAX" | "PARENT_SUMMARY" | undefined;
695
+ startDate?: string | undefined;
696
+ endDate?: string | undefined;
697
+ rate?: number | undefined;
698
+ quantity?: number | undefined;
699
+ itemDetails?: string | undefined;
700
+ catalogEffectiveDate?: string | undefined;
701
+ childItems?: unknown[] | undefined;
702
+ }>, "many">>;
703
+ }, "strip", z.ZodTypeAny, {
704
+ 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;
705
+ id?: string | undefined;
706
+ status?: "DRAFT" | "COMMITTED" | "VOID" | undefined;
707
+ items?: {
708
+ 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;
709
+ id?: string | undefined;
710
+ description?: string | undefined;
711
+ amount?: number | undefined;
712
+ linkedInvoiceItemId?: string | undefined;
713
+ productName?: string | undefined;
714
+ planName?: string | undefined;
715
+ phaseName?: string | undefined;
716
+ usageName?: string | undefined;
717
+ prettyProductName?: string | undefined;
718
+ prettyPlanName?: string | undefined;
719
+ prettyPhaseName?: string | undefined;
720
+ prettyUsageName?: string | undefined;
721
+ itemType?: "EXTERNAL_CHARGE" | "FIXED" | "RECURRING" | "REPAIR_ADJ" | "CBA_ADJ" | "CREDIT_ADJ" | "ITEM_ADJ" | "USAGE" | "TAX" | "PARENT_SUMMARY" | undefined;
722
+ startDate?: string | undefined;
723
+ endDate?: string | undefined;
724
+ rate?: number | undefined;
725
+ quantity?: number | undefined;
726
+ itemDetails?: string | undefined;
727
+ catalogEffectiveDate?: string | undefined;
728
+ childItems?: unknown[] | undefined;
729
+ }[] | undefined;
730
+ organizationId?: string | undefined;
731
+ amount?: number | undefined;
732
+ creditAdj?: number | undefined;
733
+ refundAdj?: number | undefined;
734
+ invoiceDate?: string | undefined;
735
+ targetDate?: string | undefined;
736
+ invoiceNumber?: string | undefined;
737
+ balance?: number | undefined;
738
+ bundleKeys?: string | undefined;
739
+ credits?: {
740
+ 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;
741
+ id?: string | undefined;
742
+ description?: string | undefined;
743
+ amount?: number | undefined;
744
+ linkedInvoiceItemId?: string | undefined;
745
+ productName?: string | undefined;
746
+ planName?: string | undefined;
747
+ phaseName?: string | undefined;
748
+ usageName?: string | undefined;
749
+ prettyProductName?: string | undefined;
750
+ prettyPlanName?: string | undefined;
751
+ prettyPhaseName?: string | undefined;
752
+ prettyUsageName?: string | undefined;
753
+ itemType?: "EXTERNAL_CHARGE" | "FIXED" | "RECURRING" | "REPAIR_ADJ" | "CBA_ADJ" | "CREDIT_ADJ" | "ITEM_ADJ" | "USAGE" | "TAX" | "PARENT_SUMMARY" | undefined;
754
+ startDate?: string | undefined;
755
+ endDate?: string | undefined;
756
+ rate?: number | undefined;
757
+ quantity?: number | undefined;
758
+ itemDetails?: string | undefined;
759
+ catalogEffectiveDate?: string | undefined;
760
+ childItems?: unknown[] | undefined;
761
+ }[] | undefined;
762
+ }, {
763
+ 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;
764
+ id?: string | undefined;
765
+ status?: "DRAFT" | "COMMITTED" | "VOID" | undefined;
766
+ items?: {
767
+ 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;
768
+ id?: string | undefined;
769
+ description?: string | undefined;
770
+ amount?: number | undefined;
771
+ linkedInvoiceItemId?: string | undefined;
772
+ productName?: string | undefined;
773
+ planName?: string | undefined;
774
+ phaseName?: string | undefined;
775
+ usageName?: string | undefined;
776
+ prettyProductName?: string | undefined;
777
+ prettyPlanName?: string | undefined;
778
+ prettyPhaseName?: string | undefined;
779
+ prettyUsageName?: string | undefined;
780
+ itemType?: "EXTERNAL_CHARGE" | "FIXED" | "RECURRING" | "REPAIR_ADJ" | "CBA_ADJ" | "CREDIT_ADJ" | "ITEM_ADJ" | "USAGE" | "TAX" | "PARENT_SUMMARY" | undefined;
781
+ startDate?: string | undefined;
782
+ endDate?: string | undefined;
783
+ rate?: number | undefined;
784
+ quantity?: number | undefined;
785
+ itemDetails?: string | undefined;
786
+ catalogEffectiveDate?: string | undefined;
787
+ childItems?: unknown[] | undefined;
788
+ }[] | undefined;
789
+ organizationId?: string | undefined;
790
+ amount?: number | undefined;
791
+ creditAdj?: number | undefined;
792
+ refundAdj?: number | undefined;
793
+ invoiceDate?: string | undefined;
794
+ targetDate?: string | undefined;
795
+ invoiceNumber?: string | undefined;
796
+ balance?: number | undefined;
797
+ bundleKeys?: string | undefined;
798
+ credits?: {
799
+ 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;
800
+ id?: string | undefined;
801
+ description?: string | undefined;
802
+ amount?: number | undefined;
803
+ linkedInvoiceItemId?: string | undefined;
804
+ productName?: string | undefined;
805
+ planName?: string | undefined;
806
+ phaseName?: string | undefined;
807
+ usageName?: string | undefined;
808
+ prettyProductName?: string | undefined;
809
+ prettyPlanName?: string | undefined;
810
+ prettyPhaseName?: string | undefined;
811
+ prettyUsageName?: string | undefined;
812
+ itemType?: "EXTERNAL_CHARGE" | "FIXED" | "RECURRING" | "REPAIR_ADJ" | "CBA_ADJ" | "CREDIT_ADJ" | "ITEM_ADJ" | "USAGE" | "TAX" | "PARENT_SUMMARY" | undefined;
813
+ startDate?: string | undefined;
814
+ endDate?: string | undefined;
815
+ rate?: number | undefined;
816
+ quantity?: number | undefined;
817
+ itemDetails?: string | undefined;
818
+ catalogEffectiveDate?: string | undefined;
819
+ childItems?: unknown[] | undefined;
820
+ }[] | undefined;
821
+ }>;
822
+ export declare const zMarketplaceListing: z.ZodObject<{
823
+ id: z.ZodString;
824
+ name: z.ZodString;
825
+ developer: z.ZodString;
826
+ description: z.ZodString;
827
+ logoUrl: z.ZodString;
828
+ longDescription: z.ZodString;
829
+ categories: z.ZodArray<z.ZodString, "many">;
830
+ version_channels: z.ZodArray<z.ZodString, "many">;
831
+ value_schemas: z.ZodArray<z.ZodObject<{
832
+ version: z.ZodString;
833
+ schema: z.ZodString;
834
+ placeholder: z.ZodString;
835
+ }, "strip", z.ZodTypeAny, {
836
+ version: string;
837
+ schema: string;
838
+ placeholder: string;
839
+ }, {
840
+ version: string;
841
+ schema: string;
842
+ placeholder: string;
843
+ }>, "many">;
844
+ }, "strip", z.ZodTypeAny, {
845
+ name: string;
846
+ id: string;
847
+ description: string;
848
+ developer: string;
849
+ logoUrl: string;
850
+ longDescription: string;
851
+ categories: string[];
852
+ version_channels: string[];
853
+ value_schemas: {
854
+ version: string;
855
+ schema: string;
856
+ placeholder: string;
857
+ }[];
858
+ }, {
859
+ name: string;
860
+ id: string;
861
+ description: string;
862
+ developer: string;
863
+ logoUrl: string;
864
+ longDescription: string;
865
+ categories: string[];
866
+ version_channels: string[];
867
+ value_schemas: {
868
+ version: string;
869
+ schema: string;
870
+ placeholder: string;
871
+ }[];
872
+ }>;
873
+ export declare const zOrganizationCreateInput: z.ZodObject<{
874
+ email: z.ZodString;
875
+ first_name: z.ZodString;
876
+ last_name: z.ZodString;
877
+ company_name: z.ZodString;
878
+ password: z.ZodString;
879
+ }, "strip", z.ZodTypeAny, {
880
+ email: string;
881
+ first_name: string;
882
+ last_name: string;
883
+ company_name: string;
884
+ password: string;
885
+ }, {
886
+ email: string;
887
+ first_name: string;
888
+ last_name: string;
889
+ company_name: string;
890
+ password: string;
891
+ }>;
892
+ export declare const zOrganization: z.ZodObject<{
893
+ id: z.ZodString;
894
+ name: z.ZodOptional<z.ZodString>;
895
+ date_created: z.ZodString;
896
+ quota: z.ZodObject<{
897
+ basic_clusters_max: z.ZodNumber;
898
+ basic_clusters_available: z.ZodNumber;
899
+ pro_clusters_max: z.ZodNumber;
900
+ pro_clusters_available: z.ZodNumber;
901
+ fleets_max: z.ZodNumber;
902
+ managed_fleets_cpu_max: z.ZodNumber;
903
+ cluster_tiers: z.ZodArray<z.ZodString, "many">;
904
+ regions: z.ZodArray<z.ZodString, "many">;
905
+ versions: z.ZodArray<z.ZodObject<{
906
+ id: z.ZodString;
907
+ label: z.ZodString;
908
+ }, "strip", z.ZodTypeAny, {
909
+ id: string;
910
+ label: string;
911
+ }, {
912
+ id: string;
913
+ label: string;
914
+ }>, "many">;
915
+ }, "strip", z.ZodTypeAny, {
916
+ versions: {
917
+ id: string;
918
+ label: string;
919
+ }[];
920
+ basic_clusters_max: number;
921
+ basic_clusters_available: number;
922
+ pro_clusters_max: number;
923
+ pro_clusters_available: number;
924
+ fleets_max: number;
925
+ managed_fleets_cpu_max: number;
926
+ cluster_tiers: string[];
927
+ regions: string[];
928
+ }, {
929
+ versions: {
930
+ id: string;
931
+ label: string;
932
+ }[];
933
+ basic_clusters_max: number;
934
+ basic_clusters_available: number;
935
+ pro_clusters_max: number;
936
+ pro_clusters_available: number;
937
+ fleets_max: number;
938
+ managed_fleets_cpu_max: number;
939
+ cluster_tiers: string[];
940
+ regions: string[];
941
+ }>;
942
+ status: z.ZodEnum<["active", "closed", "suspended"]>;
943
+ }, "strip", z.ZodTypeAny, {
944
+ id: string;
945
+ status: "active" | "closed" | "suspended";
946
+ date_created: string;
947
+ quota: {
948
+ versions: {
949
+ id: string;
950
+ label: string;
951
+ }[];
952
+ basic_clusters_max: number;
953
+ basic_clusters_available: number;
954
+ pro_clusters_max: number;
955
+ pro_clusters_available: number;
956
+ fleets_max: number;
957
+ managed_fleets_cpu_max: number;
958
+ cluster_tiers: string[];
959
+ regions: string[];
960
+ };
961
+ name?: string | undefined;
962
+ }, {
963
+ id: string;
964
+ status: "active" | "closed" | "suspended";
965
+ date_created: string;
966
+ quota: {
967
+ versions: {
968
+ id: string;
969
+ label: string;
970
+ }[];
971
+ basic_clusters_max: number;
972
+ basic_clusters_available: number;
973
+ pro_clusters_max: number;
974
+ pro_clusters_available: number;
975
+ fleets_max: number;
976
+ managed_fleets_cpu_max: number;
977
+ cluster_tiers: string[];
978
+ regions: string[];
979
+ };
980
+ name?: string | undefined;
981
+ }>;
982
+ export declare const zPaymentMethod: z.ZodObject<{
983
+ id: z.ZodString;
984
+ setup: z.ZodBoolean;
985
+ type: z.ZodEnum<["card"]>;
986
+ last4: z.ZodString;
987
+ exp_month: z.ZodNumber;
988
+ exp_year: z.ZodNumber;
989
+ brand: z.ZodEnum<["amex", "diners", "discover", "eftpos_au", "jcb", "mastercard", "unionpay", "visa", "unknown"]>;
990
+ }, "strip", z.ZodTypeAny, {
991
+ type: "card";
992
+ id: string;
993
+ setup: boolean;
994
+ last4: string;
995
+ exp_month: number;
996
+ exp_year: number;
997
+ brand: "unknown" | "amex" | "diners" | "discover" | "eftpos_au" | "jcb" | "mastercard" | "unionpay" | "visa";
998
+ }, {
999
+ type: "card";
1000
+ id: string;
1001
+ setup: boolean;
1002
+ last4: string;
1003
+ exp_month: number;
1004
+ exp_year: number;
1005
+ brand: "unknown" | "amex" | "diners" | "discover" | "eftpos_au" | "jcb" | "mastercard" | "unionpay" | "visa";
1006
+ }>;
1007
+ export declare const zTokenCreateInput: z.ZodObject<{
1008
+ name: z.ZodString;
1009
+ role: z.ZodEnum<["Administrator", "User"]>;
1010
+ }, "strip", z.ZodTypeAny, {
1011
+ name: string;
1012
+ role: "Administrator" | "User";
1013
+ }, {
1014
+ name: string;
1015
+ role: "Administrator" | "User";
1016
+ }>;
1017
+ export declare const zToken: z.ZodObject<{
1018
+ name: z.ZodString;
1019
+ role: z.ZodEnum<["Administrator", "User"]>;
1020
+ id: z.ZodOptional<z.ZodString>;
1021
+ secret: z.ZodOptional<z.ZodString>;
1022
+ date_created: z.ZodString;
1023
+ }, "strip", z.ZodTypeAny, {
1024
+ name: string;
1025
+ role: "Administrator" | "User";
1026
+ date_created: string;
1027
+ id?: string | undefined;
1028
+ secret?: string | undefined;
1029
+ }, {
1030
+ name: string;
1031
+ role: "Administrator" | "User";
1032
+ date_created: string;
1033
+ id?: string | undefined;
1034
+ secret?: string | undefined;
1035
+ }>;
1036
+ export declare const zTokenUpdateInput: z.ZodObject<{
1037
+ name: z.ZodOptional<z.ZodString>;
1038
+ role: z.ZodOptional<z.ZodEnum<["Administrator", "User"]>>;
1039
+ }, "strip", z.ZodTypeAny, {
1040
+ name?: string | undefined;
1041
+ role?: "Administrator" | "User" | undefined;
1042
+ }, {
1043
+ name?: string | undefined;
1044
+ role?: "Administrator" | "User" | undefined;
1045
+ }>;
1046
+ export declare const zUsage: z.ZodObject<{
1047
+ hour: z.ZodOptional<z.ZodString>;
1048
+ cluster_id: z.ZodString;
1049
+ cluster_tier: z.ZodEnum<[""]>;
1050
+ product: z.ZodEnum<["cfke_controlplane", "cfke_connected_nodes", "infra_compute", "infra_storage", "infra_loadbalancing", "infra_traffic", "cfcr_storage"]>;
1051
+ node_name: z.ZodString;
1052
+ sku: z.ZodString;
1053
+ cpu: z.ZodUnion<[z.ZodNumber, z.ZodEnum<[""]>]>;
1054
+ price: z.ZodUnion<[z.ZodNumber, z.ZodEnum<[""]>]>;
1055
+ value: z.ZodUnion<[z.ZodNumber, z.ZodEnum<[""]>]>;
1056
+ total: z.ZodUnion<[z.ZodNumber, z.ZodEnum<[""]>]>;
1057
+ }, "strip", z.ZodTypeAny, {
1058
+ total: number | "";
1059
+ cpu: number | "";
1060
+ product: "cfke_controlplane" | "cfke_connected_nodes" | "infra_compute" | "infra_storage" | "infra_loadbalancing" | "infra_traffic" | "cfcr_storage";
1061
+ value: number | "";
1062
+ cluster_id: string;
1063
+ cluster_tier: "";
1064
+ node_name: string;
1065
+ sku: string;
1066
+ price: number | "";
1067
+ hour?: string | undefined;
1068
+ }, {
1069
+ total: number | "";
1070
+ cpu: number | "";
1071
+ product: "cfke_controlplane" | "cfke_connected_nodes" | "infra_compute" | "infra_storage" | "infra_loadbalancing" | "infra_traffic" | "cfcr_storage";
1072
+ value: number | "";
1073
+ cluster_id: string;
1074
+ cluster_tier: "";
1075
+ node_name: string;
1076
+ sku: string;
1077
+ price: number | "";
1078
+ hour?: string | undefined;
1079
+ }>;
1080
+ export declare const zUserCreateInput: z.ZodObject<{
1081
+ email: z.ZodString;
1082
+ first_name: z.ZodString;
1083
+ last_name: z.ZodString;
1084
+ code: z.ZodString;
1085
+ password: z.ZodString;
1086
+ status: z.ZodOptional<z.ZodEnum<["active", "inactive"]>>;
1087
+ role: z.ZodOptional<z.ZodEnum<["Administrator", "User"]>>;
1088
+ }, "strip", z.ZodTypeAny, {
1089
+ code: string;
1090
+ email: string;
1091
+ first_name: string;
1092
+ last_name: string;
1093
+ password: string;
1094
+ role?: "Administrator" | "User" | undefined;
1095
+ status?: "active" | "inactive" | undefined;
1096
+ }, {
1097
+ code: string;
1098
+ email: string;
1099
+ first_name: string;
1100
+ last_name: string;
1101
+ password: string;
1102
+ role?: "Administrator" | "User" | undefined;
1103
+ status?: "active" | "inactive" | undefined;
1104
+ }>;
1105
+ export declare const zUser: z.ZodObject<{
1106
+ email: z.ZodString;
1107
+ first_name: z.ZodString;
1108
+ last_name: z.ZodString;
1109
+ role: z.ZodEnum<["Administrator", "User"]>;
1110
+ status: z.ZodEnum<["active", "inactive"]>;
1111
+ id: z.ZodString;
1112
+ date_created: z.ZodString;
1113
+ }, "strip", z.ZodTypeAny, {
1114
+ id: string;
1115
+ role: "Administrator" | "User";
1116
+ email: string;
1117
+ status: "active" | "inactive";
1118
+ first_name: string;
1119
+ last_name: string;
1120
+ date_created: string;
1121
+ }, {
1122
+ id: string;
1123
+ role: "Administrator" | "User";
1124
+ email: string;
1125
+ status: "active" | "inactive";
1126
+ first_name: string;
1127
+ last_name: string;
1128
+ date_created: string;
1129
+ }>;
1130
+ export declare const zUserUpdateInput: z.ZodObject<{
1131
+ email: z.ZodOptional<z.ZodString>;
1132
+ first_name: z.ZodOptional<z.ZodString>;
1133
+ last_name: z.ZodOptional<z.ZodString>;
1134
+ role: z.ZodOptional<z.ZodEnum<["Administrator", "User"]>>;
1135
+ status: z.ZodOptional<z.ZodEnum<["active", "inactive"]>>;
1136
+ }, "strip", z.ZodTypeAny, {
1137
+ role?: "Administrator" | "User" | undefined;
1138
+ email?: string | undefined;
1139
+ status?: "active" | "inactive" | undefined;
1140
+ first_name?: string | undefined;
1141
+ last_name?: string | undefined;
1142
+ }, {
1143
+ role?: "Administrator" | "User" | undefined;
1144
+ email?: string | undefined;
1145
+ status?: "active" | "inactive" | undefined;
1146
+ first_name?: string | undefined;
1147
+ last_name?: string | undefined;
1148
+ }>;
1149
+ export declare const zGetUsageResponse: z.ZodArray<z.ZodObject<{
1150
+ hour: z.ZodOptional<z.ZodString>;
1151
+ cluster_id: z.ZodString;
1152
+ cluster_tier: z.ZodEnum<[""]>;
1153
+ product: z.ZodEnum<["cfke_controlplane", "cfke_connected_nodes", "infra_compute", "infra_storage", "infra_loadbalancing", "infra_traffic", "cfcr_storage"]>;
1154
+ node_name: z.ZodString;
1155
+ sku: z.ZodString;
1156
+ cpu: z.ZodUnion<[z.ZodNumber, z.ZodEnum<[""]>]>;
1157
+ price: z.ZodUnion<[z.ZodNumber, z.ZodEnum<[""]>]>;
1158
+ value: z.ZodUnion<[z.ZodNumber, z.ZodEnum<[""]>]>;
1159
+ total: z.ZodUnion<[z.ZodNumber, z.ZodEnum<[""]>]>;
1160
+ }, "strip", z.ZodTypeAny, {
1161
+ total: number | "";
1162
+ cpu: number | "";
1163
+ product: "cfke_controlplane" | "cfke_connected_nodes" | "infra_compute" | "infra_storage" | "infra_loadbalancing" | "infra_traffic" | "cfcr_storage";
1164
+ value: number | "";
1165
+ cluster_id: string;
1166
+ cluster_tier: "";
1167
+ node_name: string;
1168
+ sku: string;
1169
+ price: number | "";
1170
+ hour?: string | undefined;
1171
+ }, {
1172
+ total: number | "";
1173
+ cpu: number | "";
1174
+ product: "cfke_controlplane" | "cfke_connected_nodes" | "infra_compute" | "infra_storage" | "infra_loadbalancing" | "infra_traffic" | "cfcr_storage";
1175
+ value: number | "";
1176
+ cluster_id: string;
1177
+ cluster_tier: "";
1178
+ node_name: string;
1179
+ sku: string;
1180
+ price: number | "";
1181
+ hour?: string | undefined;
1182
+ }>, "many">;
1183
+ export declare const zGetBalanceResponse: z.ZodNumber;
1184
+ export declare const zGetPaymentMethodResponse: z.ZodObject<{
1185
+ id: z.ZodString;
1186
+ setup: z.ZodBoolean;
1187
+ type: z.ZodEnum<["card"]>;
1188
+ last4: z.ZodString;
1189
+ exp_month: z.ZodNumber;
1190
+ exp_year: z.ZodNumber;
1191
+ brand: z.ZodEnum<["amex", "diners", "discover", "eftpos_au", "jcb", "mastercard", "unionpay", "visa", "unknown"]>;
1192
+ }, "strip", z.ZodTypeAny, {
1193
+ type: "card";
1194
+ id: string;
1195
+ setup: boolean;
1196
+ last4: string;
1197
+ exp_month: number;
1198
+ exp_year: number;
1199
+ brand: "unknown" | "amex" | "diners" | "discover" | "eftpos_au" | "jcb" | "mastercard" | "unionpay" | "visa";
1200
+ }, {
1201
+ type: "card";
1202
+ id: string;
1203
+ setup: boolean;
1204
+ last4: string;
1205
+ exp_month: number;
1206
+ exp_year: number;
1207
+ brand: "unknown" | "amex" | "diners" | "discover" | "eftpos_au" | "jcb" | "mastercard" | "unionpay" | "visa";
1208
+ }>;
1209
+ export declare const zGetPaymentMethodSecretResponse: z.ZodObject<{
1210
+ id: z.ZodOptional<z.ZodString>;
1211
+ }, "strip", z.ZodTypeAny, {
1212
+ id?: string | undefined;
1213
+ }, {
1214
+ id?: string | undefined;
1215
+ }>;
1216
+ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
1217
+ id: z.ZodOptional<z.ZodString>;
1218
+ organizationId: z.ZodOptional<z.ZodString>;
1219
+ status: z.ZodOptional<z.ZodEnum<["DRAFT", "COMMITTED", "VOID"]>>;
1220
+ amount: z.ZodOptional<z.ZodNumber>;
1221
+ currency: z.ZodOptional<z.ZodEnum<["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"]>>;
1222
+ creditAdj: z.ZodOptional<z.ZodNumber>;
1223
+ refundAdj: z.ZodOptional<z.ZodNumber>;
1224
+ invoiceDate: z.ZodOptional<z.ZodString>;
1225
+ targetDate: z.ZodOptional<z.ZodString>;
1226
+ invoiceNumber: z.ZodOptional<z.ZodString>;
1227
+ balance: z.ZodOptional<z.ZodNumber>;
1228
+ bundleKeys: z.ZodOptional<z.ZodString>;
1229
+ credits: z.ZodOptional<z.ZodArray<z.ZodObject<{
1230
+ id: z.ZodOptional<z.ZodString>;
1231
+ linkedInvoiceItemId: z.ZodOptional<z.ZodString>;
1232
+ productName: z.ZodOptional<z.ZodString>;
1233
+ planName: z.ZodOptional<z.ZodString>;
1234
+ phaseName: z.ZodOptional<z.ZodString>;
1235
+ usageName: z.ZodOptional<z.ZodString>;
1236
+ prettyProductName: z.ZodOptional<z.ZodString>;
1237
+ prettyPlanName: z.ZodOptional<z.ZodString>;
1238
+ prettyPhaseName: z.ZodOptional<z.ZodString>;
1239
+ prettyUsageName: z.ZodOptional<z.ZodString>;
1240
+ itemType: z.ZodOptional<z.ZodEnum<["EXTERNAL_CHARGE", "FIXED", "RECURRING", "REPAIR_ADJ", "CBA_ADJ", "CREDIT_ADJ", "ITEM_ADJ", "USAGE", "TAX", "PARENT_SUMMARY"]>>;
1241
+ description: z.ZodOptional<z.ZodString>;
1242
+ startDate: z.ZodOptional<z.ZodString>;
1243
+ endDate: z.ZodOptional<z.ZodString>;
1244
+ amount: z.ZodOptional<z.ZodNumber>;
1245
+ rate: z.ZodOptional<z.ZodNumber>;
1246
+ currency: z.ZodOptional<z.ZodEnum<["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"]>>;
1247
+ quantity: z.ZodOptional<z.ZodNumber>;
1248
+ itemDetails: z.ZodOptional<z.ZodString>;
1249
+ catalogEffectiveDate: z.ZodOptional<z.ZodString>;
1250
+ childItems: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
1251
+ }, "strip", z.ZodTypeAny, {
1252
+ 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;
1253
+ id?: string | undefined;
1254
+ description?: string | undefined;
1255
+ amount?: number | undefined;
1256
+ linkedInvoiceItemId?: string | undefined;
1257
+ productName?: string | undefined;
1258
+ planName?: string | undefined;
1259
+ phaseName?: string | undefined;
1260
+ usageName?: string | undefined;
1261
+ prettyProductName?: string | undefined;
1262
+ prettyPlanName?: string | undefined;
1263
+ prettyPhaseName?: string | undefined;
1264
+ prettyUsageName?: string | undefined;
1265
+ itemType?: "EXTERNAL_CHARGE" | "FIXED" | "RECURRING" | "REPAIR_ADJ" | "CBA_ADJ" | "CREDIT_ADJ" | "ITEM_ADJ" | "USAGE" | "TAX" | "PARENT_SUMMARY" | undefined;
1266
+ startDate?: string | undefined;
1267
+ endDate?: string | undefined;
1268
+ rate?: number | undefined;
1269
+ quantity?: number | undefined;
1270
+ itemDetails?: string | undefined;
1271
+ catalogEffectiveDate?: string | undefined;
1272
+ childItems?: unknown[] | undefined;
1273
+ }, {
1274
+ 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;
1275
+ id?: string | undefined;
1276
+ description?: string | undefined;
1277
+ amount?: number | undefined;
1278
+ linkedInvoiceItemId?: string | undefined;
1279
+ productName?: string | undefined;
1280
+ planName?: string | undefined;
1281
+ phaseName?: string | undefined;
1282
+ usageName?: string | undefined;
1283
+ prettyProductName?: string | undefined;
1284
+ prettyPlanName?: string | undefined;
1285
+ prettyPhaseName?: string | undefined;
1286
+ prettyUsageName?: string | undefined;
1287
+ itemType?: "EXTERNAL_CHARGE" | "FIXED" | "RECURRING" | "REPAIR_ADJ" | "CBA_ADJ" | "CREDIT_ADJ" | "ITEM_ADJ" | "USAGE" | "TAX" | "PARENT_SUMMARY" | undefined;
1288
+ startDate?: string | undefined;
1289
+ endDate?: string | undefined;
1290
+ rate?: number | undefined;
1291
+ quantity?: number | undefined;
1292
+ itemDetails?: string | undefined;
1293
+ catalogEffectiveDate?: string | undefined;
1294
+ childItems?: unknown[] | undefined;
1295
+ }>, "many">>;
1296
+ items: z.ZodOptional<z.ZodArray<z.ZodObject<{
1297
+ id: z.ZodOptional<z.ZodString>;
1298
+ linkedInvoiceItemId: z.ZodOptional<z.ZodString>;
1299
+ productName: z.ZodOptional<z.ZodString>;
1300
+ planName: z.ZodOptional<z.ZodString>;
1301
+ phaseName: z.ZodOptional<z.ZodString>;
1302
+ usageName: z.ZodOptional<z.ZodString>;
1303
+ prettyProductName: z.ZodOptional<z.ZodString>;
1304
+ prettyPlanName: z.ZodOptional<z.ZodString>;
1305
+ prettyPhaseName: z.ZodOptional<z.ZodString>;
1306
+ prettyUsageName: z.ZodOptional<z.ZodString>;
1307
+ itemType: z.ZodOptional<z.ZodEnum<["EXTERNAL_CHARGE", "FIXED", "RECURRING", "REPAIR_ADJ", "CBA_ADJ", "CREDIT_ADJ", "ITEM_ADJ", "USAGE", "TAX", "PARENT_SUMMARY"]>>;
1308
+ description: z.ZodOptional<z.ZodString>;
1309
+ startDate: z.ZodOptional<z.ZodString>;
1310
+ endDate: z.ZodOptional<z.ZodString>;
1311
+ amount: z.ZodOptional<z.ZodNumber>;
1312
+ rate: z.ZodOptional<z.ZodNumber>;
1313
+ currency: z.ZodOptional<z.ZodEnum<["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"]>>;
1314
+ quantity: z.ZodOptional<z.ZodNumber>;
1315
+ itemDetails: z.ZodOptional<z.ZodString>;
1316
+ catalogEffectiveDate: z.ZodOptional<z.ZodString>;
1317
+ childItems: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
1318
+ }, "strip", z.ZodTypeAny, {
1319
+ 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;
1320
+ id?: string | undefined;
1321
+ description?: string | undefined;
1322
+ amount?: number | undefined;
1323
+ linkedInvoiceItemId?: string | undefined;
1324
+ productName?: string | undefined;
1325
+ planName?: string | undefined;
1326
+ phaseName?: string | undefined;
1327
+ usageName?: string | undefined;
1328
+ prettyProductName?: string | undefined;
1329
+ prettyPlanName?: string | undefined;
1330
+ prettyPhaseName?: string | undefined;
1331
+ prettyUsageName?: string | undefined;
1332
+ itemType?: "EXTERNAL_CHARGE" | "FIXED" | "RECURRING" | "REPAIR_ADJ" | "CBA_ADJ" | "CREDIT_ADJ" | "ITEM_ADJ" | "USAGE" | "TAX" | "PARENT_SUMMARY" | undefined;
1333
+ startDate?: string | undefined;
1334
+ endDate?: string | undefined;
1335
+ rate?: number | undefined;
1336
+ quantity?: number | undefined;
1337
+ itemDetails?: string | undefined;
1338
+ catalogEffectiveDate?: string | undefined;
1339
+ childItems?: unknown[] | undefined;
1340
+ }, {
1341
+ 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;
1342
+ id?: string | undefined;
1343
+ description?: string | undefined;
1344
+ amount?: number | undefined;
1345
+ linkedInvoiceItemId?: string | undefined;
1346
+ productName?: string | undefined;
1347
+ planName?: string | undefined;
1348
+ phaseName?: string | undefined;
1349
+ usageName?: string | undefined;
1350
+ prettyProductName?: string | undefined;
1351
+ prettyPlanName?: string | undefined;
1352
+ prettyPhaseName?: string | undefined;
1353
+ prettyUsageName?: string | undefined;
1354
+ itemType?: "EXTERNAL_CHARGE" | "FIXED" | "RECURRING" | "REPAIR_ADJ" | "CBA_ADJ" | "CREDIT_ADJ" | "ITEM_ADJ" | "USAGE" | "TAX" | "PARENT_SUMMARY" | undefined;
1355
+ startDate?: string | undefined;
1356
+ endDate?: string | undefined;
1357
+ rate?: number | undefined;
1358
+ quantity?: number | undefined;
1359
+ itemDetails?: string | undefined;
1360
+ catalogEffectiveDate?: string | undefined;
1361
+ childItems?: unknown[] | undefined;
1362
+ }>, "many">>;
1363
+ }, "strip", z.ZodTypeAny, {
1364
+ 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;
1365
+ id?: string | undefined;
1366
+ status?: "DRAFT" | "COMMITTED" | "VOID" | undefined;
1367
+ items?: {
1368
+ 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;
1369
+ id?: string | undefined;
1370
+ description?: string | undefined;
1371
+ amount?: number | undefined;
1372
+ linkedInvoiceItemId?: string | undefined;
1373
+ productName?: string | undefined;
1374
+ planName?: string | undefined;
1375
+ phaseName?: string | undefined;
1376
+ usageName?: string | undefined;
1377
+ prettyProductName?: string | undefined;
1378
+ prettyPlanName?: string | undefined;
1379
+ prettyPhaseName?: string | undefined;
1380
+ prettyUsageName?: string | undefined;
1381
+ itemType?: "EXTERNAL_CHARGE" | "FIXED" | "RECURRING" | "REPAIR_ADJ" | "CBA_ADJ" | "CREDIT_ADJ" | "ITEM_ADJ" | "USAGE" | "TAX" | "PARENT_SUMMARY" | undefined;
1382
+ startDate?: string | undefined;
1383
+ endDate?: string | undefined;
1384
+ rate?: number | undefined;
1385
+ quantity?: number | undefined;
1386
+ itemDetails?: string | undefined;
1387
+ catalogEffectiveDate?: string | undefined;
1388
+ childItems?: unknown[] | undefined;
1389
+ }[] | undefined;
1390
+ organizationId?: string | undefined;
1391
+ amount?: number | undefined;
1392
+ creditAdj?: number | undefined;
1393
+ refundAdj?: number | undefined;
1394
+ invoiceDate?: string | undefined;
1395
+ targetDate?: string | undefined;
1396
+ invoiceNumber?: string | undefined;
1397
+ balance?: number | undefined;
1398
+ bundleKeys?: string | undefined;
1399
+ credits?: {
1400
+ 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;
1401
+ id?: string | undefined;
1402
+ description?: string | undefined;
1403
+ amount?: number | undefined;
1404
+ linkedInvoiceItemId?: string | undefined;
1405
+ productName?: string | undefined;
1406
+ planName?: string | undefined;
1407
+ phaseName?: string | undefined;
1408
+ usageName?: string | undefined;
1409
+ prettyProductName?: string | undefined;
1410
+ prettyPlanName?: string | undefined;
1411
+ prettyPhaseName?: string | undefined;
1412
+ prettyUsageName?: string | undefined;
1413
+ itemType?: "EXTERNAL_CHARGE" | "FIXED" | "RECURRING" | "REPAIR_ADJ" | "CBA_ADJ" | "CREDIT_ADJ" | "ITEM_ADJ" | "USAGE" | "TAX" | "PARENT_SUMMARY" | undefined;
1414
+ startDate?: string | undefined;
1415
+ endDate?: string | undefined;
1416
+ rate?: number | undefined;
1417
+ quantity?: number | undefined;
1418
+ itemDetails?: string | undefined;
1419
+ catalogEffectiveDate?: string | undefined;
1420
+ childItems?: unknown[] | undefined;
1421
+ }[] | undefined;
1422
+ }, {
1423
+ 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;
1424
+ id?: string | undefined;
1425
+ status?: "DRAFT" | "COMMITTED" | "VOID" | undefined;
1426
+ items?: {
1427
+ 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;
1428
+ id?: string | undefined;
1429
+ description?: string | undefined;
1430
+ amount?: number | undefined;
1431
+ linkedInvoiceItemId?: string | undefined;
1432
+ productName?: string | undefined;
1433
+ planName?: string | undefined;
1434
+ phaseName?: string | undefined;
1435
+ usageName?: string | undefined;
1436
+ prettyProductName?: string | undefined;
1437
+ prettyPlanName?: string | undefined;
1438
+ prettyPhaseName?: string | undefined;
1439
+ prettyUsageName?: string | undefined;
1440
+ itemType?: "EXTERNAL_CHARGE" | "FIXED" | "RECURRING" | "REPAIR_ADJ" | "CBA_ADJ" | "CREDIT_ADJ" | "ITEM_ADJ" | "USAGE" | "TAX" | "PARENT_SUMMARY" | undefined;
1441
+ startDate?: string | undefined;
1442
+ endDate?: string | undefined;
1443
+ rate?: number | undefined;
1444
+ quantity?: number | undefined;
1445
+ itemDetails?: string | undefined;
1446
+ catalogEffectiveDate?: string | undefined;
1447
+ childItems?: unknown[] | undefined;
1448
+ }[] | undefined;
1449
+ organizationId?: string | undefined;
1450
+ amount?: number | undefined;
1451
+ creditAdj?: number | undefined;
1452
+ refundAdj?: number | undefined;
1453
+ invoiceDate?: string | undefined;
1454
+ targetDate?: string | undefined;
1455
+ invoiceNumber?: string | undefined;
1456
+ balance?: number | undefined;
1457
+ bundleKeys?: string | undefined;
1458
+ credits?: {
1459
+ 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;
1460
+ id?: string | undefined;
1461
+ description?: string | undefined;
1462
+ amount?: number | undefined;
1463
+ linkedInvoiceItemId?: string | undefined;
1464
+ productName?: string | undefined;
1465
+ planName?: string | undefined;
1466
+ phaseName?: string | undefined;
1467
+ usageName?: string | undefined;
1468
+ prettyProductName?: string | undefined;
1469
+ prettyPlanName?: string | undefined;
1470
+ prettyPhaseName?: string | undefined;
1471
+ prettyUsageName?: string | undefined;
1472
+ itemType?: "EXTERNAL_CHARGE" | "FIXED" | "RECURRING" | "REPAIR_ADJ" | "CBA_ADJ" | "CREDIT_ADJ" | "ITEM_ADJ" | "USAGE" | "TAX" | "PARENT_SUMMARY" | undefined;
1473
+ startDate?: string | undefined;
1474
+ endDate?: string | undefined;
1475
+ rate?: number | undefined;
1476
+ quantity?: number | undefined;
1477
+ itemDetails?: string | undefined;
1478
+ catalogEffectiveDate?: string | undefined;
1479
+ childItems?: unknown[] | undefined;
1480
+ }[] | undefined;
1481
+ }>, "many">;
1482
+ export declare const zGetInvoiceResponse: z.ZodObject<{
1483
+ html: z.ZodOptional<z.ZodString>;
1484
+ }, "strip", z.ZodTypeAny, {
1485
+ html?: string | undefined;
1486
+ }, {
1487
+ html?: string | undefined;
1488
+ }>;
1489
+ export declare const zGetContactResponse: z.ZodObject<{
1490
+ company: z.ZodOptional<z.ZodString>;
1491
+ address1: z.ZodOptional<z.ZodString>;
1492
+ address2: z.ZodOptional<z.ZodString>;
1493
+ postalCode: z.ZodOptional<z.ZodString>;
1494
+ city: z.ZodOptional<z.ZodString>;
1495
+ state: z.ZodOptional<z.ZodString>;
1496
+ country: z.ZodOptional<z.ZodString>;
1497
+ phone: z.ZodOptional<z.ZodString>;
1498
+ email: z.ZodString;
1499
+ first_name: z.ZodString;
1500
+ last_name: z.ZodString;
1501
+ tax_id: z.ZodOptional<z.ZodString>;
1502
+ tax_id_type: z.ZodOptional<z.ZodEnum<["ad_nrt", "ae_trn", "al_tin", "am_tin", "ao_tin", "ar_cuit", "au_abn", "au_arn", "ba_tin", "bb_tin", "bg_uic", "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", "de_stn", "do_rcn", "ec_ruc", "eg_tin", "es_cif", "eu_oss_vat", "eu_vat", "gb_vat", "ge_vat", "gn_nif", "hk_br", "hr_oib", "hu_tin", "id_npwp", "il_vat", "in_gst", "is_vat", "jp_cn", "jp_rn", "jp_trn", "ke_pin", "kh_tin", "kr_brn", "kz_bin", "li_uid", "li_vat", "ma_vat", "md_vat", "me_pib", "mk_vat", "mr_nif", "mx_rfc", "my_frp", "my_itn", "my_sst", "ng_tin", "no_vat", "no_voec", "np_pan", "nz_gst", "om_vat", "pe_ruc", "ph_tin", "ro_tin", "rs_pib", "ru_inn", "ru_kpp", "sa_vat", "sg_gst", "sg_uen", "si_tin", "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", "za_vat", "zm_tin", "zw_tin"]>>;
1503
+ }, "strip", z.ZodTypeAny, {
1504
+ email: string;
1505
+ first_name: string;
1506
+ last_name: string;
1507
+ state?: string | undefined;
1508
+ country?: string | undefined;
1509
+ company?: string | undefined;
1510
+ address1?: string | undefined;
1511
+ address2?: string | undefined;
1512
+ postalCode?: string | undefined;
1513
+ city?: string | undefined;
1514
+ phone?: string | undefined;
1515
+ tax_id?: string | undefined;
1516
+ tax_id_type?: "ad_nrt" | "ae_trn" | "al_tin" | "am_tin" | "ao_tin" | "ar_cuit" | "au_abn" | "au_arn" | "ba_tin" | "bb_tin" | "bg_uic" | "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" | "de_stn" | "do_rcn" | "ec_ruc" | "eg_tin" | "es_cif" | "eu_oss_vat" | "eu_vat" | "gb_vat" | "ge_vat" | "gn_nif" | "hk_br" | "hr_oib" | "hu_tin" | "id_npwp" | "il_vat" | "in_gst" | "is_vat" | "jp_cn" | "jp_rn" | "jp_trn" | "ke_pin" | "kh_tin" | "kr_brn" | "kz_bin" | "li_uid" | "li_vat" | "ma_vat" | "md_vat" | "me_pib" | "mk_vat" | "mr_nif" | "mx_rfc" | "my_frp" | "my_itn" | "my_sst" | "ng_tin" | "no_vat" | "no_voec" | "np_pan" | "nz_gst" | "om_vat" | "pe_ruc" | "ph_tin" | "ro_tin" | "rs_pib" | "ru_inn" | "ru_kpp" | "sa_vat" | "sg_gst" | "sg_uen" | "si_tin" | "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" | "za_vat" | "zm_tin" | "zw_tin" | undefined;
1517
+ }, {
1518
+ email: string;
1519
+ first_name: string;
1520
+ last_name: string;
1521
+ state?: string | undefined;
1522
+ country?: string | undefined;
1523
+ company?: string | undefined;
1524
+ address1?: string | undefined;
1525
+ address2?: string | undefined;
1526
+ postalCode?: string | undefined;
1527
+ city?: string | undefined;
1528
+ phone?: string | undefined;
1529
+ tax_id?: string | undefined;
1530
+ tax_id_type?: "ad_nrt" | "ae_trn" | "al_tin" | "am_tin" | "ao_tin" | "ar_cuit" | "au_abn" | "au_arn" | "ba_tin" | "bb_tin" | "bg_uic" | "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" | "de_stn" | "do_rcn" | "ec_ruc" | "eg_tin" | "es_cif" | "eu_oss_vat" | "eu_vat" | "gb_vat" | "ge_vat" | "gn_nif" | "hk_br" | "hr_oib" | "hu_tin" | "id_npwp" | "il_vat" | "in_gst" | "is_vat" | "jp_cn" | "jp_rn" | "jp_trn" | "ke_pin" | "kh_tin" | "kr_brn" | "kz_bin" | "li_uid" | "li_vat" | "ma_vat" | "md_vat" | "me_pib" | "mk_vat" | "mr_nif" | "mx_rfc" | "my_frp" | "my_itn" | "my_sst" | "ng_tin" | "no_vat" | "no_voec" | "np_pan" | "nz_gst" | "om_vat" | "pe_ruc" | "ph_tin" | "ro_tin" | "rs_pib" | "ru_inn" | "ru_kpp" | "sa_vat" | "sg_gst" | "sg_uen" | "si_tin" | "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" | "za_vat" | "zm_tin" | "zw_tin" | undefined;
1531
+ }>;
1532
+ export declare const zUpdateContactResponse: z.ZodObject<{
1533
+ company: z.ZodOptional<z.ZodString>;
1534
+ address1: z.ZodOptional<z.ZodString>;
1535
+ address2: z.ZodOptional<z.ZodString>;
1536
+ postalCode: z.ZodOptional<z.ZodString>;
1537
+ city: z.ZodOptional<z.ZodString>;
1538
+ state: z.ZodOptional<z.ZodString>;
1539
+ country: z.ZodOptional<z.ZodString>;
1540
+ phone: z.ZodOptional<z.ZodString>;
1541
+ email: z.ZodString;
1542
+ first_name: z.ZodString;
1543
+ last_name: z.ZodString;
1544
+ tax_id: z.ZodOptional<z.ZodString>;
1545
+ tax_id_type: z.ZodOptional<z.ZodEnum<["ad_nrt", "ae_trn", "al_tin", "am_tin", "ao_tin", "ar_cuit", "au_abn", "au_arn", "ba_tin", "bb_tin", "bg_uic", "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", "de_stn", "do_rcn", "ec_ruc", "eg_tin", "es_cif", "eu_oss_vat", "eu_vat", "gb_vat", "ge_vat", "gn_nif", "hk_br", "hr_oib", "hu_tin", "id_npwp", "il_vat", "in_gst", "is_vat", "jp_cn", "jp_rn", "jp_trn", "ke_pin", "kh_tin", "kr_brn", "kz_bin", "li_uid", "li_vat", "ma_vat", "md_vat", "me_pib", "mk_vat", "mr_nif", "mx_rfc", "my_frp", "my_itn", "my_sst", "ng_tin", "no_vat", "no_voec", "np_pan", "nz_gst", "om_vat", "pe_ruc", "ph_tin", "ro_tin", "rs_pib", "ru_inn", "ru_kpp", "sa_vat", "sg_gst", "sg_uen", "si_tin", "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", "za_vat", "zm_tin", "zw_tin"]>>;
1546
+ }, "strip", z.ZodTypeAny, {
1547
+ email: string;
1548
+ first_name: string;
1549
+ last_name: string;
1550
+ state?: string | undefined;
1551
+ country?: string | undefined;
1552
+ company?: string | undefined;
1553
+ address1?: string | undefined;
1554
+ address2?: string | undefined;
1555
+ postalCode?: string | undefined;
1556
+ city?: string | undefined;
1557
+ phone?: string | undefined;
1558
+ tax_id?: string | undefined;
1559
+ tax_id_type?: "ad_nrt" | "ae_trn" | "al_tin" | "am_tin" | "ao_tin" | "ar_cuit" | "au_abn" | "au_arn" | "ba_tin" | "bb_tin" | "bg_uic" | "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" | "de_stn" | "do_rcn" | "ec_ruc" | "eg_tin" | "es_cif" | "eu_oss_vat" | "eu_vat" | "gb_vat" | "ge_vat" | "gn_nif" | "hk_br" | "hr_oib" | "hu_tin" | "id_npwp" | "il_vat" | "in_gst" | "is_vat" | "jp_cn" | "jp_rn" | "jp_trn" | "ke_pin" | "kh_tin" | "kr_brn" | "kz_bin" | "li_uid" | "li_vat" | "ma_vat" | "md_vat" | "me_pib" | "mk_vat" | "mr_nif" | "mx_rfc" | "my_frp" | "my_itn" | "my_sst" | "ng_tin" | "no_vat" | "no_voec" | "np_pan" | "nz_gst" | "om_vat" | "pe_ruc" | "ph_tin" | "ro_tin" | "rs_pib" | "ru_inn" | "ru_kpp" | "sa_vat" | "sg_gst" | "sg_uen" | "si_tin" | "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" | "za_vat" | "zm_tin" | "zw_tin" | undefined;
1560
+ }, {
1561
+ email: string;
1562
+ first_name: string;
1563
+ last_name: string;
1564
+ state?: string | undefined;
1565
+ country?: string | undefined;
1566
+ company?: string | undefined;
1567
+ address1?: string | undefined;
1568
+ address2?: string | undefined;
1569
+ postalCode?: string | undefined;
1570
+ city?: string | undefined;
1571
+ phone?: string | undefined;
1572
+ tax_id?: string | undefined;
1573
+ tax_id_type?: "ad_nrt" | "ae_trn" | "al_tin" | "am_tin" | "ao_tin" | "ar_cuit" | "au_abn" | "au_arn" | "ba_tin" | "bb_tin" | "bg_uic" | "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" | "de_stn" | "do_rcn" | "ec_ruc" | "eg_tin" | "es_cif" | "eu_oss_vat" | "eu_vat" | "gb_vat" | "ge_vat" | "gn_nif" | "hk_br" | "hr_oib" | "hu_tin" | "id_npwp" | "il_vat" | "in_gst" | "is_vat" | "jp_cn" | "jp_rn" | "jp_trn" | "ke_pin" | "kh_tin" | "kr_brn" | "kz_bin" | "li_uid" | "li_vat" | "ma_vat" | "md_vat" | "me_pib" | "mk_vat" | "mr_nif" | "mx_rfc" | "my_frp" | "my_itn" | "my_sst" | "ng_tin" | "no_vat" | "no_voec" | "np_pan" | "nz_gst" | "om_vat" | "pe_ruc" | "ph_tin" | "ro_tin" | "rs_pib" | "ru_inn" | "ru_kpp" | "sa_vat" | "sg_gst" | "sg_uen" | "si_tin" | "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" | "za_vat" | "zm_tin" | "zw_tin" | undefined;
1574
+ }>;
1575
+ export declare const zGetCreditsResponse: z.ZodArray<z.ZodObject<{
1576
+ id: z.ZodOptional<z.ZodString>;
1577
+ date_created: z.ZodString;
1578
+ code: z.ZodString;
1579
+ description: z.ZodOptional<z.ZodString>;
1580
+ products: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1581
+ type: z.ZodEnum<["credit", "discount"]>;
1582
+ value: z.ZodNumber;
1583
+ billing_period: z.ZodString;
1584
+ value_remaining: z.ZodOptional<z.ZodNumber>;
1585
+ }, "strip", z.ZodTypeAny, {
1586
+ code: string;
1587
+ type: "credit" | "discount";
1588
+ value: number;
1589
+ date_created: string;
1590
+ billing_period: string;
1591
+ id?: string | undefined;
1592
+ description?: string | undefined;
1593
+ products?: string[] | undefined;
1594
+ value_remaining?: number | undefined;
1595
+ }, {
1596
+ code: string;
1597
+ type: "credit" | "discount";
1598
+ value: number;
1599
+ date_created: string;
1600
+ billing_period: string;
1601
+ id?: string | undefined;
1602
+ description?: string | undefined;
1603
+ products?: string[] | undefined;
1604
+ value_remaining?: number | undefined;
1605
+ }>, "many">;
1606
+ export declare const zListChartsResponse: z.ZodArray<z.ZodObject<{
1607
+ values: z.ZodString;
1608
+ version_channel: z.ZodString;
1609
+ name: z.ZodString;
1610
+ namespace: z.ZodString;
1611
+ chart: z.ZodString;
1612
+ status: z.ZodEnum<["InstallSucceeded", "InstallFailed", "UpgradeSucceeded", "UpgradeFailed", "TestSucceeded", "TestFailed", "RollbackSucceeded", "RollbackFailed", "UninstallSucceeded", "UninstallFailed", "ArtifactFailed", "DependencyNotReady", "Progressing"]>;
1613
+ version_current: z.ZodString;
1614
+ created_at: z.ZodString;
1615
+ updated_at: z.ZodString;
1616
+ ready: z.ZodBoolean;
1617
+ }, "strip", z.ZodTypeAny, {
1618
+ values: string;
1619
+ name: string;
1620
+ ready: boolean;
1621
+ status: "InstallSucceeded" | "InstallFailed" | "UpgradeSucceeded" | "UpgradeFailed" | "TestSucceeded" | "TestFailed" | "RollbackSucceeded" | "RollbackFailed" | "UninstallSucceeded" | "UninstallFailed" | "ArtifactFailed" | "DependencyNotReady" | "Progressing";
1622
+ version_channel: string;
1623
+ namespace: string;
1624
+ chart: string;
1625
+ version_current: string;
1626
+ created_at: string;
1627
+ updated_at: string;
1628
+ }, {
1629
+ values: string;
1630
+ name: string;
1631
+ ready: boolean;
1632
+ status: "InstallSucceeded" | "InstallFailed" | "UpgradeSucceeded" | "UpgradeFailed" | "TestSucceeded" | "TestFailed" | "RollbackSucceeded" | "RollbackFailed" | "UninstallSucceeded" | "UninstallFailed" | "ArtifactFailed" | "DependencyNotReady" | "Progressing";
1633
+ version_channel: string;
1634
+ namespace: string;
1635
+ chart: string;
1636
+ version_current: string;
1637
+ created_at: string;
1638
+ updated_at: string;
1639
+ }>, "many">;
1640
+ export declare const zCreateChartResponse: z.ZodString;
1641
+ export declare const zDeleteChartResponse: z.ZodString;
1642
+ export declare const zGetChartResponse: z.ZodObject<{
1643
+ values: z.ZodString;
1644
+ version_channel: z.ZodString;
1645
+ name: z.ZodString;
1646
+ namespace: z.ZodString;
1647
+ chart: z.ZodString;
1648
+ status: z.ZodEnum<["InstallSucceeded", "InstallFailed", "UpgradeSucceeded", "UpgradeFailed", "TestSucceeded", "TestFailed", "RollbackSucceeded", "RollbackFailed", "UninstallSucceeded", "UninstallFailed", "ArtifactFailed", "DependencyNotReady", "Progressing"]>;
1649
+ version_current: z.ZodString;
1650
+ created_at: z.ZodString;
1651
+ updated_at: z.ZodString;
1652
+ ready: z.ZodBoolean;
1653
+ }, "strip", z.ZodTypeAny, {
1654
+ values: string;
1655
+ name: string;
1656
+ ready: boolean;
1657
+ status: "InstallSucceeded" | "InstallFailed" | "UpgradeSucceeded" | "UpgradeFailed" | "TestSucceeded" | "TestFailed" | "RollbackSucceeded" | "RollbackFailed" | "UninstallSucceeded" | "UninstallFailed" | "ArtifactFailed" | "DependencyNotReady" | "Progressing";
1658
+ version_channel: string;
1659
+ namespace: string;
1660
+ chart: string;
1661
+ version_current: string;
1662
+ created_at: string;
1663
+ updated_at: string;
1664
+ }, {
1665
+ values: string;
1666
+ name: string;
1667
+ ready: boolean;
1668
+ status: "InstallSucceeded" | "InstallFailed" | "UpgradeSucceeded" | "UpgradeFailed" | "TestSucceeded" | "TestFailed" | "RollbackSucceeded" | "RollbackFailed" | "UninstallSucceeded" | "UninstallFailed" | "ArtifactFailed" | "DependencyNotReady" | "Progressing";
1669
+ version_channel: string;
1670
+ namespace: string;
1671
+ chart: string;
1672
+ version_current: string;
1673
+ created_at: string;
1674
+ updated_at: string;
1675
+ }>;
1676
+ export declare const zUpdateChartResponse: z.ZodString;
1677
+ export declare const zListFleetsResponse: z.ZodArray<z.ZodObject<{
1678
+ limits: z.ZodOptional<z.ZodObject<{
1679
+ cpu: z.ZodNumber;
1680
+ }, "strip", z.ZodTypeAny, {
1681
+ cpu: number;
1682
+ }, {
1683
+ cpu: number;
1684
+ }>>;
1685
+ gcp: z.ZodOptional<z.ZodObject<{
1686
+ enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1687
+ project: z.ZodString;
1688
+ }, "strip", z.ZodTypeAny, {
1689
+ project: string;
1690
+ enabled: boolean;
1691
+ }, {
1692
+ project: string;
1693
+ enabled?: boolean | undefined;
1694
+ }>>;
1695
+ hetzner: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
1696
+ enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1697
+ apiKey: z.ZodOptional<z.ZodString>;
1698
+ }, "strip", z.ZodTypeAny, {
1699
+ enabled: boolean;
1700
+ apiKey?: string | undefined;
1701
+ }, {
1702
+ apiKey?: string | undefined;
1703
+ enabled?: boolean | undefined;
1704
+ }>, z.ZodObject<{
1705
+ apiKey: z.ZodOptional<z.ZodString>;
1706
+ enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1707
+ }, "strip", z.ZodTypeAny, {
1708
+ enabled: boolean;
1709
+ apiKey?: string | undefined;
1710
+ }, {
1711
+ apiKey?: string | undefined;
1712
+ enabled?: boolean | undefined;
1713
+ }>]>>;
1714
+ aws: z.ZodOptional<z.ZodObject<{
1715
+ enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1716
+ controllerRoleArn: z.ZodString;
1717
+ }, "strip", z.ZodTypeAny, {
1718
+ controllerRoleArn: string;
1719
+ enabled: boolean;
1720
+ }, {
1721
+ controllerRoleArn: string;
1722
+ enabled?: boolean | undefined;
1723
+ }>>;
1724
+ id: z.ZodString;
1725
+ type: z.ZodEnum<["managed", "connected"]>;
1726
+ }, "strip", z.ZodTypeAny, {
1727
+ type: "connected" | "managed";
1728
+ id: string;
1729
+ limits?: {
1730
+ cpu: number;
1731
+ } | undefined;
1732
+ gcp?: {
1733
+ project: string;
1734
+ enabled: boolean;
1735
+ } | undefined;
1736
+ hetzner?: {
1737
+ enabled: boolean;
1738
+ apiKey?: string | undefined;
1739
+ } | {
1740
+ enabled: boolean;
1741
+ apiKey?: string | undefined;
1742
+ } | undefined;
1743
+ aws?: {
1744
+ controllerRoleArn: string;
1745
+ enabled: boolean;
1746
+ } | undefined;
1747
+ }, {
1748
+ type: "connected" | "managed";
1749
+ id: string;
1750
+ limits?: {
1751
+ cpu: number;
1752
+ } | undefined;
1753
+ gcp?: {
1754
+ project: string;
1755
+ enabled?: boolean | undefined;
1756
+ } | undefined;
1757
+ hetzner?: {
1758
+ apiKey?: string | undefined;
1759
+ enabled?: boolean | undefined;
1760
+ } | {
1761
+ apiKey?: string | undefined;
1762
+ enabled?: boolean | undefined;
1763
+ } | undefined;
1764
+ aws?: {
1765
+ controllerRoleArn: string;
1766
+ enabled?: boolean | undefined;
1767
+ } | undefined;
1768
+ }>, "many">;
1769
+ export declare const zCreateFleetResponse: z.ZodString;
1770
+ export declare const zDeleteFleetResponse: z.ZodString;
1771
+ export declare const zGetFleetResponse: z.ZodObject<{
1772
+ limits: z.ZodOptional<z.ZodObject<{
1773
+ cpu: z.ZodNumber;
1774
+ }, "strip", z.ZodTypeAny, {
1775
+ cpu: number;
1776
+ }, {
1777
+ cpu: number;
1778
+ }>>;
1779
+ gcp: z.ZodOptional<z.ZodObject<{
1780
+ enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1781
+ project: z.ZodString;
1782
+ }, "strip", z.ZodTypeAny, {
1783
+ project: string;
1784
+ enabled: boolean;
1785
+ }, {
1786
+ project: string;
1787
+ enabled?: boolean | undefined;
1788
+ }>>;
1789
+ hetzner: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
1790
+ enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1791
+ apiKey: z.ZodOptional<z.ZodString>;
1792
+ }, "strip", z.ZodTypeAny, {
1793
+ enabled: boolean;
1794
+ apiKey?: string | undefined;
1795
+ }, {
1796
+ apiKey?: string | undefined;
1797
+ enabled?: boolean | undefined;
1798
+ }>, z.ZodObject<{
1799
+ apiKey: z.ZodOptional<z.ZodString>;
1800
+ enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1801
+ }, "strip", z.ZodTypeAny, {
1802
+ enabled: boolean;
1803
+ apiKey?: string | undefined;
1804
+ }, {
1805
+ apiKey?: string | undefined;
1806
+ enabled?: boolean | undefined;
1807
+ }>]>>;
1808
+ aws: z.ZodOptional<z.ZodObject<{
1809
+ enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1810
+ controllerRoleArn: z.ZodString;
1811
+ }, "strip", z.ZodTypeAny, {
1812
+ controllerRoleArn: string;
1813
+ enabled: boolean;
1814
+ }, {
1815
+ controllerRoleArn: string;
1816
+ enabled?: boolean | undefined;
1817
+ }>>;
1818
+ id: z.ZodString;
1819
+ type: z.ZodEnum<["managed", "connected"]>;
1820
+ }, "strip", z.ZodTypeAny, {
1821
+ type: "connected" | "managed";
1822
+ id: string;
1823
+ limits?: {
1824
+ cpu: number;
1825
+ } | undefined;
1826
+ gcp?: {
1827
+ project: string;
1828
+ enabled: boolean;
1829
+ } | undefined;
1830
+ hetzner?: {
1831
+ enabled: boolean;
1832
+ apiKey?: string | undefined;
1833
+ } | {
1834
+ enabled: boolean;
1835
+ apiKey?: string | undefined;
1836
+ } | undefined;
1837
+ aws?: {
1838
+ controllerRoleArn: string;
1839
+ enabled: boolean;
1840
+ } | undefined;
1841
+ }, {
1842
+ type: "connected" | "managed";
1843
+ id: string;
1844
+ limits?: {
1845
+ cpu: number;
1846
+ } | undefined;
1847
+ gcp?: {
1848
+ project: string;
1849
+ enabled?: boolean | undefined;
1850
+ } | undefined;
1851
+ hetzner?: {
1852
+ apiKey?: string | undefined;
1853
+ enabled?: boolean | undefined;
1854
+ } | {
1855
+ apiKey?: string | undefined;
1856
+ enabled?: boolean | undefined;
1857
+ } | undefined;
1858
+ aws?: {
1859
+ controllerRoleArn: string;
1860
+ enabled?: boolean | undefined;
1861
+ } | undefined;
1862
+ }>;
1863
+ export declare const zUpdateFleetResponse: z.ZodString;
1864
+ export declare const zListClustersResponse: z.ZodArray<z.ZodObject<{
1865
+ name: z.ZodString;
1866
+ region: z.ZodOptional<z.ZodEnum<["staging", "northamerica-central-1"]>>;
1867
+ tier: z.ZodEnum<["basic", "pro"]>;
1868
+ version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
1869
+ id: z.ZodString;
1870
+ status: z.ZodEnum<["active", "deleted", "creating", "deployed", "failed", "updating"]>;
1871
+ endpoint: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodEnum<[""]>]>>;
1872
+ certificate_ca: z.ZodOptional<z.ZodString>;
1873
+ version_current: z.ZodOptional<z.ZodString>;
1874
+ created_at: z.ZodOptional<z.ZodString>;
1875
+ updated_at: z.ZodOptional<z.ZodString>;
1876
+ ready: z.ZodOptional<z.ZodBoolean>;
1877
+ }, "strip", z.ZodTypeAny, {
1878
+ name: string;
1879
+ id: string;
1880
+ status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
1881
+ version_channel: string;
1882
+ tier: "basic" | "pro";
1883
+ ready?: boolean | undefined;
1884
+ region?: "staging" | "northamerica-central-1" | undefined;
1885
+ version_current?: string | undefined;
1886
+ created_at?: string | undefined;
1887
+ updated_at?: string | undefined;
1888
+ endpoint?: string | undefined;
1889
+ certificate_ca?: string | undefined;
1890
+ }, {
1891
+ name: string;
1892
+ id: string;
1893
+ status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
1894
+ tier: "basic" | "pro";
1895
+ ready?: boolean | undefined;
1896
+ region?: "staging" | "northamerica-central-1" | undefined;
1897
+ version_channel?: string | undefined;
1898
+ version_current?: string | undefined;
1899
+ created_at?: string | undefined;
1900
+ updated_at?: string | undefined;
1901
+ endpoint?: string | undefined;
1902
+ certificate_ca?: string | undefined;
1903
+ }>, "many">;
1904
+ export declare const zCreateClusterResponse: z.ZodString;
1905
+ export declare const zDeleteClusterResponse: z.ZodString;
1906
+ export declare const zGetClusterResponse: z.ZodObject<{
1907
+ name: z.ZodString;
1908
+ region: z.ZodOptional<z.ZodEnum<["staging", "northamerica-central-1"]>>;
1909
+ tier: z.ZodEnum<["basic", "pro"]>;
1910
+ version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
1911
+ id: z.ZodString;
1912
+ status: z.ZodEnum<["active", "deleted", "creating", "deployed", "failed", "updating"]>;
1913
+ endpoint: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodEnum<[""]>]>>;
1914
+ certificate_ca: z.ZodOptional<z.ZodString>;
1915
+ version_current: z.ZodOptional<z.ZodString>;
1916
+ created_at: z.ZodOptional<z.ZodString>;
1917
+ updated_at: z.ZodOptional<z.ZodString>;
1918
+ ready: z.ZodOptional<z.ZodBoolean>;
1919
+ }, "strip", z.ZodTypeAny, {
1920
+ name: string;
1921
+ id: string;
1922
+ status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
1923
+ version_channel: string;
1924
+ tier: "basic" | "pro";
1925
+ ready?: boolean | undefined;
1926
+ region?: "staging" | "northamerica-central-1" | undefined;
1927
+ version_current?: string | undefined;
1928
+ created_at?: string | undefined;
1929
+ updated_at?: string | undefined;
1930
+ endpoint?: string | undefined;
1931
+ certificate_ca?: string | undefined;
1932
+ }, {
1933
+ name: string;
1934
+ id: string;
1935
+ status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
1936
+ tier: "basic" | "pro";
1937
+ ready?: boolean | undefined;
1938
+ region?: "staging" | "northamerica-central-1" | undefined;
1939
+ version_channel?: string | undefined;
1940
+ version_current?: string | undefined;
1941
+ created_at?: string | undefined;
1942
+ updated_at?: string | undefined;
1943
+ endpoint?: string | undefined;
1944
+ certificate_ca?: string | undefined;
1945
+ }>;
1946
+ export declare const zUpdateClusterResponse: z.ZodObject<{
1947
+ name: z.ZodString;
1948
+ region: z.ZodOptional<z.ZodEnum<["staging", "northamerica-central-1"]>>;
1949
+ tier: z.ZodEnum<["basic", "pro"]>;
1950
+ version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
1951
+ id: z.ZodString;
1952
+ status: z.ZodEnum<["active", "deleted", "creating", "deployed", "failed", "updating"]>;
1953
+ endpoint: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodEnum<[""]>]>>;
1954
+ certificate_ca: z.ZodOptional<z.ZodString>;
1955
+ version_current: z.ZodOptional<z.ZodString>;
1956
+ created_at: z.ZodOptional<z.ZodString>;
1957
+ updated_at: z.ZodOptional<z.ZodString>;
1958
+ ready: z.ZodOptional<z.ZodBoolean>;
1959
+ }, "strip", z.ZodTypeAny, {
1960
+ name: string;
1961
+ id: string;
1962
+ status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
1963
+ version_channel: string;
1964
+ tier: "basic" | "pro";
1965
+ ready?: boolean | undefined;
1966
+ region?: "staging" | "northamerica-central-1" | undefined;
1967
+ version_current?: string | undefined;
1968
+ created_at?: string | undefined;
1969
+ updated_at?: string | undefined;
1970
+ endpoint?: string | undefined;
1971
+ certificate_ca?: string | undefined;
1972
+ }, {
1973
+ name: string;
1974
+ id: string;
1975
+ status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
1976
+ tier: "basic" | "pro";
1977
+ ready?: boolean | undefined;
1978
+ region?: "staging" | "northamerica-central-1" | undefined;
1979
+ version_channel?: string | undefined;
1980
+ version_current?: string | undefined;
1981
+ created_at?: string | undefined;
1982
+ updated_at?: string | undefined;
1983
+ endpoint?: string | undefined;
1984
+ certificate_ca?: string | undefined;
1985
+ }>;
1986
+ export declare const zGetJoinInformationResponse: z.ZodObject<{
1987
+ name: z.ZodString;
1988
+ region: z.ZodOptional<z.ZodEnum<["staging", "northamerica-central-1"]>>;
1989
+ tier: z.ZodEnum<["basic", "pro"]>;
1990
+ version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
1991
+ id: z.ZodString;
1992
+ status: z.ZodEnum<["active", "deleted", "creating", "deployed", "failed", "updating"]>;
1993
+ endpoint: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodEnum<[""]>]>>;
1994
+ certificate_ca: z.ZodOptional<z.ZodString>;
1995
+ version_current: z.ZodOptional<z.ZodString>;
1996
+ created_at: z.ZodOptional<z.ZodString>;
1997
+ updated_at: z.ZodOptional<z.ZodString>;
1998
+ ready: z.ZodOptional<z.ZodBoolean>;
1999
+ }, "strip", z.ZodTypeAny, {
2000
+ name: string;
2001
+ id: string;
2002
+ status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
2003
+ version_channel: string;
2004
+ tier: "basic" | "pro";
2005
+ ready?: boolean | undefined;
2006
+ region?: "staging" | "northamerica-central-1" | undefined;
2007
+ version_current?: string | undefined;
2008
+ created_at?: string | undefined;
2009
+ updated_at?: string | undefined;
2010
+ endpoint?: string | undefined;
2011
+ certificate_ca?: string | undefined;
2012
+ }, {
2013
+ name: string;
2014
+ id: string;
2015
+ status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
2016
+ tier: "basic" | "pro";
2017
+ ready?: boolean | undefined;
2018
+ region?: "staging" | "northamerica-central-1" | undefined;
2019
+ version_channel?: string | undefined;
2020
+ version_current?: string | undefined;
2021
+ created_at?: string | undefined;
2022
+ updated_at?: string | undefined;
2023
+ endpoint?: string | undefined;
2024
+ certificate_ca?: string | undefined;
2025
+ }>;
2026
+ export declare const zListInvitesResponse: z.ZodArray<z.ZodObject<{
2027
+ id: z.ZodOptional<z.ZodString>;
2028
+ organization_id: z.ZodOptional<z.ZodString>;
2029
+ date_created: z.ZodString;
2030
+ email: z.ZodOptional<z.ZodString>;
2031
+ code: z.ZodOptional<z.ZodString>;
2032
+ }, "strip", z.ZodTypeAny, {
2033
+ date_created: string;
2034
+ code?: string | undefined;
2035
+ id?: string | undefined;
2036
+ email?: string | undefined;
2037
+ organization_id?: string | undefined;
2038
+ }, {
2039
+ date_created: string;
2040
+ code?: string | undefined;
2041
+ id?: string | undefined;
2042
+ email?: string | undefined;
2043
+ organization_id?: string | undefined;
2044
+ }>, "many">;
2045
+ export declare const zCreateInviteResponse: z.ZodObject<{
2046
+ id: z.ZodOptional<z.ZodString>;
2047
+ organization_id: z.ZodOptional<z.ZodString>;
2048
+ date_created: z.ZodString;
2049
+ email: z.ZodOptional<z.ZodString>;
2050
+ code: z.ZodOptional<z.ZodString>;
2051
+ }, "strip", z.ZodTypeAny, {
2052
+ date_created: string;
2053
+ code?: string | undefined;
2054
+ id?: string | undefined;
2055
+ email?: string | undefined;
2056
+ organization_id?: string | undefined;
2057
+ }, {
2058
+ date_created: string;
2059
+ code?: string | undefined;
2060
+ id?: string | undefined;
2061
+ email?: string | undefined;
2062
+ organization_id?: string | undefined;
2063
+ }>;
2064
+ export declare const zGetInviteResponse: z.ZodObject<{
2065
+ id: z.ZodOptional<z.ZodString>;
2066
+ organization_id: z.ZodOptional<z.ZodString>;
2067
+ date_created: z.ZodString;
2068
+ email: z.ZodOptional<z.ZodString>;
2069
+ code: z.ZodOptional<z.ZodString>;
2070
+ }, "strip", z.ZodTypeAny, {
2071
+ date_created: string;
2072
+ code?: string | undefined;
2073
+ id?: string | undefined;
2074
+ email?: string | undefined;
2075
+ organization_id?: string | undefined;
2076
+ }, {
2077
+ date_created: string;
2078
+ code?: string | undefined;
2079
+ id?: string | undefined;
2080
+ email?: string | undefined;
2081
+ organization_id?: string | undefined;
2082
+ }>;
2083
+ export declare const zListMarketplaceChartsResponse: z.ZodArray<z.ZodObject<{
2084
+ id: z.ZodString;
2085
+ name: z.ZodString;
2086
+ developer: z.ZodString;
2087
+ description: z.ZodString;
2088
+ logoUrl: z.ZodString;
2089
+ longDescription: z.ZodString;
2090
+ categories: z.ZodArray<z.ZodString, "many">;
2091
+ version_channels: z.ZodArray<z.ZodString, "many">;
2092
+ value_schemas: z.ZodArray<z.ZodObject<{
2093
+ version: z.ZodString;
2094
+ schema: z.ZodString;
2095
+ placeholder: z.ZodString;
2096
+ }, "strip", z.ZodTypeAny, {
2097
+ version: string;
2098
+ schema: string;
2099
+ placeholder: string;
2100
+ }, {
2101
+ version: string;
2102
+ schema: string;
2103
+ placeholder: string;
2104
+ }>, "many">;
2105
+ }, "strip", z.ZodTypeAny, {
2106
+ name: string;
2107
+ id: string;
2108
+ description: string;
2109
+ developer: string;
2110
+ logoUrl: string;
2111
+ longDescription: string;
2112
+ categories: string[];
2113
+ version_channels: string[];
2114
+ value_schemas: {
2115
+ version: string;
2116
+ schema: string;
2117
+ placeholder: string;
2118
+ }[];
2119
+ }, {
2120
+ name: string;
2121
+ id: string;
2122
+ description: string;
2123
+ developer: string;
2124
+ logoUrl: string;
2125
+ longDescription: string;
2126
+ categories: string[];
2127
+ version_channels: string[];
2128
+ value_schemas: {
2129
+ version: string;
2130
+ schema: string;
2131
+ placeholder: string;
2132
+ }[];
2133
+ }>, "many">;
2134
+ export declare const zGetMarketplaceChartResponse: z.ZodObject<{
2135
+ id: z.ZodString;
2136
+ name: z.ZodString;
2137
+ developer: z.ZodString;
2138
+ description: z.ZodString;
2139
+ logoUrl: z.ZodString;
2140
+ longDescription: z.ZodString;
2141
+ categories: z.ZodArray<z.ZodString, "many">;
2142
+ version_channels: z.ZodArray<z.ZodString, "many">;
2143
+ value_schemas: z.ZodArray<z.ZodObject<{
2144
+ version: z.ZodString;
2145
+ schema: z.ZodString;
2146
+ placeholder: z.ZodString;
2147
+ }, "strip", z.ZodTypeAny, {
2148
+ version: string;
2149
+ schema: string;
2150
+ placeholder: string;
2151
+ }, {
2152
+ version: string;
2153
+ schema: string;
2154
+ placeholder: string;
2155
+ }>, "many">;
2156
+ }, "strip", z.ZodTypeAny, {
2157
+ name: string;
2158
+ id: string;
2159
+ description: string;
2160
+ developer: string;
2161
+ logoUrl: string;
2162
+ longDescription: string;
2163
+ categories: string[];
2164
+ version_channels: string[];
2165
+ value_schemas: {
2166
+ version: string;
2167
+ schema: string;
2168
+ placeholder: string;
2169
+ }[];
2170
+ }, {
2171
+ name: string;
2172
+ id: string;
2173
+ description: string;
2174
+ developer: string;
2175
+ logoUrl: string;
2176
+ longDescription: string;
2177
+ categories: string[];
2178
+ version_channels: string[];
2179
+ value_schemas: {
2180
+ version: string;
2181
+ schema: string;
2182
+ placeholder: string;
2183
+ }[];
2184
+ }>;
2185
+ export declare const zGetOrganizationResponse: z.ZodObject<{
2186
+ id: z.ZodString;
2187
+ name: z.ZodOptional<z.ZodString>;
2188
+ date_created: z.ZodString;
2189
+ quota: z.ZodObject<{
2190
+ basic_clusters_max: z.ZodNumber;
2191
+ basic_clusters_available: z.ZodNumber;
2192
+ pro_clusters_max: z.ZodNumber;
2193
+ pro_clusters_available: z.ZodNumber;
2194
+ fleets_max: z.ZodNumber;
2195
+ managed_fleets_cpu_max: z.ZodNumber;
2196
+ cluster_tiers: z.ZodArray<z.ZodString, "many">;
2197
+ regions: z.ZodArray<z.ZodString, "many">;
2198
+ versions: z.ZodArray<z.ZodObject<{
2199
+ id: z.ZodString;
2200
+ label: z.ZodString;
2201
+ }, "strip", z.ZodTypeAny, {
2202
+ id: string;
2203
+ label: string;
2204
+ }, {
2205
+ id: string;
2206
+ label: string;
2207
+ }>, "many">;
2208
+ }, "strip", z.ZodTypeAny, {
2209
+ versions: {
2210
+ id: string;
2211
+ label: string;
2212
+ }[];
2213
+ basic_clusters_max: number;
2214
+ basic_clusters_available: number;
2215
+ pro_clusters_max: number;
2216
+ pro_clusters_available: number;
2217
+ fleets_max: number;
2218
+ managed_fleets_cpu_max: number;
2219
+ cluster_tiers: string[];
2220
+ regions: string[];
2221
+ }, {
2222
+ versions: {
2223
+ id: string;
2224
+ label: string;
2225
+ }[];
2226
+ basic_clusters_max: number;
2227
+ basic_clusters_available: number;
2228
+ pro_clusters_max: number;
2229
+ pro_clusters_available: number;
2230
+ fleets_max: number;
2231
+ managed_fleets_cpu_max: number;
2232
+ cluster_tiers: string[];
2233
+ regions: string[];
2234
+ }>;
2235
+ status: z.ZodEnum<["active", "closed", "suspended"]>;
2236
+ }, "strip", z.ZodTypeAny, {
2237
+ id: string;
2238
+ status: "active" | "closed" | "suspended";
2239
+ date_created: string;
2240
+ quota: {
2241
+ versions: {
2242
+ id: string;
2243
+ label: string;
2244
+ }[];
2245
+ basic_clusters_max: number;
2246
+ basic_clusters_available: number;
2247
+ pro_clusters_max: number;
2248
+ pro_clusters_available: number;
2249
+ fleets_max: number;
2250
+ managed_fleets_cpu_max: number;
2251
+ cluster_tiers: string[];
2252
+ regions: string[];
2253
+ };
2254
+ name?: string | undefined;
2255
+ }, {
2256
+ id: string;
2257
+ status: "active" | "closed" | "suspended";
2258
+ date_created: string;
2259
+ quota: {
2260
+ versions: {
2261
+ id: string;
2262
+ label: string;
2263
+ }[];
2264
+ basic_clusters_max: number;
2265
+ basic_clusters_available: number;
2266
+ pro_clusters_max: number;
2267
+ pro_clusters_available: number;
2268
+ fleets_max: number;
2269
+ managed_fleets_cpu_max: number;
2270
+ cluster_tiers: string[];
2271
+ regions: string[];
2272
+ };
2273
+ name?: string | undefined;
2274
+ }>;
2275
+ export declare const zListTokensResponse: z.ZodArray<z.ZodObject<{
2276
+ name: z.ZodString;
2277
+ role: z.ZodEnum<["Administrator", "User"]>;
2278
+ id: z.ZodOptional<z.ZodString>;
2279
+ secret: z.ZodOptional<z.ZodString>;
2280
+ date_created: z.ZodString;
2281
+ }, "strip", z.ZodTypeAny, {
2282
+ name: string;
2283
+ role: "Administrator" | "User";
2284
+ date_created: string;
2285
+ id?: string | undefined;
2286
+ secret?: string | undefined;
2287
+ }, {
2288
+ name: string;
2289
+ role: "Administrator" | "User";
2290
+ date_created: string;
2291
+ id?: string | undefined;
2292
+ secret?: string | undefined;
2293
+ }>, "many">;
2294
+ export declare const zCreateTokenResponse: z.ZodObject<{
2295
+ name: z.ZodString;
2296
+ role: z.ZodEnum<["Administrator", "User"]>;
2297
+ id: z.ZodOptional<z.ZodString>;
2298
+ secret: z.ZodOptional<z.ZodString>;
2299
+ date_created: z.ZodString;
2300
+ }, "strip", z.ZodTypeAny, {
2301
+ name: string;
2302
+ role: "Administrator" | "User";
2303
+ date_created: string;
2304
+ id?: string | undefined;
2305
+ secret?: string | undefined;
2306
+ }, {
2307
+ name: string;
2308
+ role: "Administrator" | "User";
2309
+ date_created: string;
2310
+ id?: string | undefined;
2311
+ secret?: string | undefined;
2312
+ }>;
2313
+ export declare const zGetTokenResponse: z.ZodObject<{
2314
+ name: z.ZodString;
2315
+ role: z.ZodEnum<["Administrator", "User"]>;
2316
+ id: z.ZodOptional<z.ZodString>;
2317
+ secret: z.ZodOptional<z.ZodString>;
2318
+ date_created: z.ZodString;
2319
+ }, "strip", z.ZodTypeAny, {
2320
+ name: string;
2321
+ role: "Administrator" | "User";
2322
+ date_created: string;
2323
+ id?: string | undefined;
2324
+ secret?: string | undefined;
2325
+ }, {
2326
+ name: string;
2327
+ role: "Administrator" | "User";
2328
+ date_created: string;
2329
+ id?: string | undefined;
2330
+ secret?: string | undefined;
2331
+ }>;
2332
+ export declare const zUpdateTokenResponse: z.ZodObject<{
2333
+ name: z.ZodString;
2334
+ role: z.ZodEnum<["Administrator", "User"]>;
2335
+ id: z.ZodOptional<z.ZodString>;
2336
+ secret: z.ZodOptional<z.ZodString>;
2337
+ date_created: z.ZodString;
2338
+ }, "strip", z.ZodTypeAny, {
2339
+ name: string;
2340
+ role: "Administrator" | "User";
2341
+ date_created: string;
2342
+ id?: string | undefined;
2343
+ secret?: string | undefined;
2344
+ }, {
2345
+ name: string;
2346
+ role: "Administrator" | "User";
2347
+ date_created: string;
2348
+ id?: string | undefined;
2349
+ secret?: string | undefined;
2350
+ }>;
2351
+ export declare const zRegenerateTokenResponse: z.ZodObject<{
2352
+ name: z.ZodString;
2353
+ role: z.ZodEnum<["Administrator", "User"]>;
2354
+ id: z.ZodOptional<z.ZodString>;
2355
+ secret: z.ZodOptional<z.ZodString>;
2356
+ date_created: z.ZodString;
2357
+ }, "strip", z.ZodTypeAny, {
2358
+ name: string;
2359
+ role: "Administrator" | "User";
2360
+ date_created: string;
2361
+ id?: string | undefined;
2362
+ secret?: string | undefined;
2363
+ }, {
2364
+ name: string;
2365
+ role: "Administrator" | "User";
2366
+ date_created: string;
2367
+ id?: string | undefined;
2368
+ secret?: string | undefined;
2369
+ }>;
2370
+ export declare const zListUserOrganizationsResponse: z.ZodArray<z.ZodObject<{
2371
+ realm: z.ZodOptional<z.ZodString>;
2372
+ displayName: z.ZodOptional<z.ZodString>;
2373
+ }, "strip", z.ZodTypeAny, {
2374
+ realm?: string | undefined;
2375
+ displayName?: string | undefined;
2376
+ }, {
2377
+ realm?: string | undefined;
2378
+ displayName?: string | undefined;
2379
+ }>, "many">;
2380
+ export declare const zListUsersResponse: z.ZodArray<z.ZodObject<{
2381
+ email: z.ZodString;
2382
+ first_name: z.ZodString;
2383
+ last_name: z.ZodString;
2384
+ role: z.ZodEnum<["Administrator", "User"]>;
2385
+ status: z.ZodEnum<["active", "inactive"]>;
2386
+ id: z.ZodString;
2387
+ date_created: z.ZodString;
2388
+ }, "strip", z.ZodTypeAny, {
2389
+ id: string;
2390
+ role: "Administrator" | "User";
2391
+ email: string;
2392
+ status: "active" | "inactive";
2393
+ first_name: string;
2394
+ last_name: string;
2395
+ date_created: string;
2396
+ }, {
2397
+ id: string;
2398
+ role: "Administrator" | "User";
2399
+ email: string;
2400
+ status: "active" | "inactive";
2401
+ first_name: string;
2402
+ last_name: string;
2403
+ date_created: string;
2404
+ }>, "many">;
2405
+ export declare const zCreateUserResponse: z.ZodObject<{
2406
+ email: z.ZodString;
2407
+ first_name: z.ZodString;
2408
+ last_name: z.ZodString;
2409
+ role: z.ZodEnum<["Administrator", "User"]>;
2410
+ status: z.ZodEnum<["active", "inactive"]>;
2411
+ id: z.ZodString;
2412
+ date_created: z.ZodString;
2413
+ }, "strip", z.ZodTypeAny, {
2414
+ id: string;
2415
+ role: "Administrator" | "User";
2416
+ email: string;
2417
+ status: "active" | "inactive";
2418
+ first_name: string;
2419
+ last_name: string;
2420
+ date_created: string;
2421
+ }, {
2422
+ id: string;
2423
+ role: "Administrator" | "User";
2424
+ email: string;
2425
+ status: "active" | "inactive";
2426
+ first_name: string;
2427
+ last_name: string;
2428
+ date_created: string;
2429
+ }>;
2430
+ export declare const zDeleteUserResponse: z.ZodObject<{
2431
+ email: z.ZodString;
2432
+ first_name: z.ZodString;
2433
+ last_name: z.ZodString;
2434
+ role: z.ZodEnum<["Administrator", "User"]>;
2435
+ status: z.ZodEnum<["active", "inactive"]>;
2436
+ id: z.ZodString;
2437
+ date_created: z.ZodString;
2438
+ }, "strip", z.ZodTypeAny, {
2439
+ id: string;
2440
+ role: "Administrator" | "User";
2441
+ email: string;
2442
+ status: "active" | "inactive";
2443
+ first_name: string;
2444
+ last_name: string;
2445
+ date_created: string;
2446
+ }, {
2447
+ id: string;
2448
+ role: "Administrator" | "User";
2449
+ email: string;
2450
+ status: "active" | "inactive";
2451
+ first_name: string;
2452
+ last_name: string;
2453
+ date_created: string;
2454
+ }>;
2455
+ export declare const zGetUserResponse: z.ZodObject<{
2456
+ email: z.ZodString;
2457
+ first_name: z.ZodString;
2458
+ last_name: z.ZodString;
2459
+ role: z.ZodEnum<["Administrator", "User"]>;
2460
+ status: z.ZodEnum<["active", "inactive"]>;
2461
+ id: z.ZodString;
2462
+ date_created: z.ZodString;
2463
+ }, "strip", z.ZodTypeAny, {
2464
+ id: string;
2465
+ role: "Administrator" | "User";
2466
+ email: string;
2467
+ status: "active" | "inactive";
2468
+ first_name: string;
2469
+ last_name: string;
2470
+ date_created: string;
2471
+ }, {
2472
+ id: string;
2473
+ role: "Administrator" | "User";
2474
+ email: string;
2475
+ status: "active" | "inactive";
2476
+ first_name: string;
2477
+ last_name: string;
2478
+ date_created: string;
2479
+ }>;
2480
+ export declare const zUpdateUserResponse: z.ZodObject<{
2481
+ email: z.ZodString;
2482
+ first_name: z.ZodString;
2483
+ last_name: z.ZodString;
2484
+ role: z.ZodEnum<["Administrator", "User"]>;
2485
+ status: z.ZodEnum<["active", "inactive"]>;
2486
+ id: z.ZodString;
2487
+ date_created: z.ZodString;
2488
+ }, "strip", z.ZodTypeAny, {
2489
+ id: string;
2490
+ role: "Administrator" | "User";
2491
+ email: string;
2492
+ status: "active" | "inactive";
2493
+ first_name: string;
2494
+ last_name: string;
2495
+ date_created: string;
2496
+ }, {
2497
+ id: string;
2498
+ role: "Administrator" | "User";
2499
+ email: string;
2500
+ status: "active" | "inactive";
2501
+ first_name: string;
2502
+ last_name: string;
2503
+ date_created: string;
2504
+ }>;
2505
+ //# sourceMappingURL=zod.gen.d.ts.map