@cloudfleet/sdk 0.0.1-8e8e76c → 0.0.1-8ec217c

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 (68) hide show
  1. package/dist/client/client.gen.d.ts +3 -0
  2. package/dist/client/client.gen.d.ts.map +1 -0
  3. package/dist/client/client.gen.js +235 -0
  4. package/dist/client/client.gen.js.map +1 -0
  5. package/dist/client/index.d.ts +9 -0
  6. package/dist/client/index.d.ts.map +1 -0
  7. package/dist/client/index.js +7 -0
  8. package/dist/client/index.js.map +1 -0
  9. package/dist/client/types.gen.d.ts +118 -0
  10. package/dist/client/types.gen.d.ts.map +1 -0
  11. package/dist/client/types.gen.js +3 -0
  12. package/dist/client/types.gen.js.map +1 -0
  13. package/dist/client/utils.gen.d.ts +34 -0
  14. package/dist/client/utils.gen.d.ts.map +1 -0
  15. package/dist/client/utils.gen.js +229 -0
  16. package/dist/client/utils.gen.js.map +1 -0
  17. package/dist/client.gen.d.ts +4 -4
  18. package/dist/client.gen.d.ts.map +1 -1
  19. package/dist/client.gen.js +2 -4
  20. package/dist/client.gen.js.map +1 -1
  21. package/dist/core/auth.gen.d.ts +19 -0
  22. package/dist/core/auth.gen.d.ts.map +1 -0
  23. package/dist/core/auth.gen.js +15 -0
  24. package/dist/core/auth.gen.js.map +1 -0
  25. package/dist/core/bodySerializer.gen.d.ts +26 -0
  26. package/dist/core/bodySerializer.gen.d.ts.map +1 -0
  27. package/dist/core/bodySerializer.gen.js +58 -0
  28. package/dist/core/bodySerializer.gen.js.map +1 -0
  29. package/dist/core/params.gen.d.ts +44 -0
  30. package/dist/core/params.gen.d.ts.map +1 -0
  31. package/dist/core/params.gen.js +101 -0
  32. package/dist/core/params.gen.js.map +1 -0
  33. package/dist/core/pathSerializer.gen.d.ts +34 -0
  34. package/dist/core/pathSerializer.gen.d.ts.map +1 -0
  35. package/dist/core/pathSerializer.gen.js +107 -0
  36. package/dist/core/pathSerializer.gen.js.map +1 -0
  37. package/dist/core/queryKeySerializer.gen.d.ts +19 -0
  38. package/dist/core/queryKeySerializer.gen.d.ts.map +1 -0
  39. package/dist/core/queryKeySerializer.gen.js +93 -0
  40. package/dist/core/queryKeySerializer.gen.js.map +1 -0
  41. package/dist/core/serverSentEvents.gen.d.ts +72 -0
  42. package/dist/core/serverSentEvents.gen.d.ts.map +1 -0
  43. package/dist/core/serverSentEvents.gen.js +134 -0
  44. package/dist/core/serverSentEvents.gen.js.map +1 -0
  45. package/dist/core/types.gen.d.ts +79 -0
  46. package/dist/core/types.gen.d.ts.map +1 -0
  47. package/dist/core/types.gen.js +3 -0
  48. package/dist/core/types.gen.js.map +1 -0
  49. package/dist/core/utils.gen.d.ts +20 -0
  50. package/dist/core/utils.gen.d.ts.map +1 -0
  51. package/dist/core/utils.gen.js +88 -0
  52. package/dist/core/utils.gen.js.map +1 -0
  53. package/dist/schemas.gen.d.ts +832 -504
  54. package/dist/schemas.gen.d.ts.map +1 -1
  55. package/dist/schemas.gen.js +1341 -588
  56. package/dist/schemas.gen.js.map +1 -1
  57. package/dist/sdk.gen.d.ts +190 -67
  58. package/dist/sdk.gen.d.ts.map +1 -1
  59. package/dist/sdk.gen.js +245 -158
  60. package/dist/sdk.gen.js.map +1 -1
  61. package/dist/services/kubernetes/api.d.ts +12 -12
  62. package/dist/types.gen.d.ts +819 -296
  63. package/dist/types.gen.d.ts.map +1 -1
  64. package/dist/zod.gen.d.ts +1871 -1954
  65. package/dist/zod.gen.d.ts.map +1 -1
  66. package/dist/zod.gen.js +865 -757
  67. package/dist/zod.gen.js.map +1 -1
  68. package/package.json +10 -7
package/dist/zod.gen.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { z } from 'zod';
1
+ import * as z from 'zod';
2
2
  export declare const zBillingContact: z.ZodObject<{
3
3
  company: z.ZodOptional<z.ZodString>;
4
4
  address1: z.ZodOptional<z.ZodString>;
@@ -8,1364 +8,670 @@ export declare const zBillingContact: z.ZodObject<{
8
8
  state: z.ZodOptional<z.ZodString>;
9
9
  country: z.ZodOptional<z.ZodString>;
10
10
  phone: z.ZodOptional<z.ZodString>;
11
- email: z.ZodString;
12
- first_name: z.ZodString;
13
- last_name: z.ZodString;
14
- }, "strip", z.ZodTypeAny, {
15
- email: string;
16
- first_name: string;
17
- last_name: string;
18
- state?: string | undefined;
19
- country?: string | undefined;
20
- company?: string | undefined;
21
- address1?: string | undefined;
22
- address2?: string | undefined;
23
- postalCode?: string | undefined;
24
- city?: string | undefined;
25
- phone?: string | undefined;
26
- }, {
27
- email: string;
28
- first_name: string;
29
- last_name: string;
30
- state?: string | undefined;
31
- country?: string | undefined;
32
- company?: string | undefined;
33
- address1?: string | undefined;
34
- address2?: string | undefined;
35
- postalCode?: string | undefined;
36
- city?: string | undefined;
37
- phone?: string | undefined;
38
- }>;
11
+ email: z.ZodEmail;
12
+ individual_name: z.ZodString;
13
+ tax_id: z.ZodOptional<z.ZodString>;
14
+ tax_id_type: z.ZodOptional<z.ZodEnum<{
15
+ "": "";
16
+ ad_nrt: "ad_nrt";
17
+ ae_trn: "ae_trn";
18
+ al_tin: "al_tin";
19
+ am_tin: "am_tin";
20
+ ao_tin: "ao_tin";
21
+ ar_cuit: "ar_cuit";
22
+ at_vat: "at_vat";
23
+ au_abn: "au_abn";
24
+ au_arn: "au_arn";
25
+ ba_tin: "ba_tin";
26
+ bb_tin: "bb_tin";
27
+ be_vat: "be_vat";
28
+ bg_uic: "bg_uic";
29
+ bg_vat: "bg_vat";
30
+ bh_vat: "bh_vat";
31
+ bo_tin: "bo_tin";
32
+ br_cnpj: "br_cnpj";
33
+ br_cpf: "br_cpf";
34
+ bs_tin: "bs_tin";
35
+ by_tin: "by_tin";
36
+ ca_bn: "ca_bn";
37
+ ca_gst_hst: "ca_gst_hst";
38
+ ca_pst_bc: "ca_pst_bc";
39
+ ca_pst_mb: "ca_pst_mb";
40
+ ca_pst_sk: "ca_pst_sk";
41
+ ca_qst: "ca_qst";
42
+ cd_nif: "cd_nif";
43
+ ch_uid: "ch_uid";
44
+ ch_vat: "ch_vat";
45
+ cl_tin: "cl_tin";
46
+ cn_tin: "cn_tin";
47
+ co_nit: "co_nit";
48
+ cr_tin: "cr_tin";
49
+ cy_vat: "cy_vat";
50
+ cz_vat: "cz_vat";
51
+ de_stn: "de_stn";
52
+ de_vat: "de_vat";
53
+ dk_vat: "dk_vat";
54
+ do_rcn: "do_rcn";
55
+ ec_ruc: "ec_ruc";
56
+ ee_vat: "ee_vat";
57
+ eg_tin: "eg_tin";
58
+ es_cif: "es_cif";
59
+ es_vat: "es_vat";
60
+ eu_oss_vat: "eu_oss_vat";
61
+ fi_vat: "fi_vat";
62
+ fr_vat: "fr_vat";
63
+ gb_vat: "gb_vat";
64
+ ge_vat: "ge_vat";
65
+ gn_nif: "gn_nif";
66
+ gr_vat: "gr_vat";
67
+ hk_br: "hk_br";
68
+ hr_oib: "hr_oib";
69
+ hr_vat: "hr_vat";
70
+ hu_tin: "hu_tin";
71
+ hu_vat: "hu_vat";
72
+ id_npwp: "id_npwp";
73
+ ie_vat: "ie_vat";
74
+ il_vat: "il_vat";
75
+ in_gst: "in_gst";
76
+ is_vat: "is_vat";
77
+ it_vat: "it_vat";
78
+ jp_cn: "jp_cn";
79
+ jp_rn: "jp_rn";
80
+ jp_trn: "jp_trn";
81
+ ke_pin: "ke_pin";
82
+ kh_tin: "kh_tin";
83
+ kr_brn: "kr_brn";
84
+ kz_bin: "kz_bin";
85
+ li_uid: "li_uid";
86
+ li_vat: "li_vat";
87
+ lt_vat: "lt_vat";
88
+ lu_vat: "lu_vat";
89
+ lv_vat: "lv_vat";
90
+ ma_vat: "ma_vat";
91
+ md_vat: "md_vat";
92
+ me_pib: "me_pib";
93
+ mk_vat: "mk_vat";
94
+ mr_nif: "mr_nif";
95
+ mt_vat: "mt_vat";
96
+ mx_rfc: "mx_rfc";
97
+ my_frp: "my_frp";
98
+ my_itn: "my_itn";
99
+ my_sst: "my_sst";
100
+ ng_tin: "ng_tin";
101
+ nl_vat: "nl_vat";
102
+ no_vat: "no_vat";
103
+ no_voec: "no_voec";
104
+ np_pan: "np_pan";
105
+ nz_gst: "nz_gst";
106
+ om_vat: "om_vat";
107
+ pe_ruc: "pe_ruc";
108
+ ph_tin: "ph_tin";
109
+ pl_vat: "pl_vat";
110
+ pt_vat: "pt_vat";
111
+ ro_tin: "ro_tin";
112
+ ro_vat: "ro_vat";
113
+ rs_pib: "rs_pib";
114
+ ru_inn: "ru_inn";
115
+ ru_kpp: "ru_kpp";
116
+ sa_vat: "sa_vat";
117
+ se_vat: "se_vat";
118
+ sg_gst: "sg_gst";
119
+ sg_uen: "sg_uen";
120
+ si_tin: "si_tin";
121
+ si_vat: "si_vat";
122
+ sk_vat: "sk_vat";
123
+ sn_ninea: "sn_ninea";
124
+ sr_fin: "sr_fin";
125
+ sv_nit: "sv_nit";
126
+ th_vat: "th_vat";
127
+ tj_tin: "tj_tin";
128
+ tr_tin: "tr_tin";
129
+ tw_vat: "tw_vat";
130
+ tz_vat: "tz_vat";
131
+ ua_vat: "ua_vat";
132
+ ug_tin: "ug_tin";
133
+ us_ein: "us_ein";
134
+ uy_ruc: "uy_ruc";
135
+ uz_tin: "uz_tin";
136
+ uz_vat: "uz_vat";
137
+ ve_rif: "ve_rif";
138
+ vn_tin: "vn_tin";
139
+ xi_vat: "xi_vat";
140
+ za_vat: "za_vat";
141
+ zm_tin: "zm_tin";
142
+ zw_tin: "zw_tin";
143
+ }>>;
144
+ }, z.core.$strip>;
39
145
  export declare const zBillingCredits: z.ZodObject<{
40
146
  id: z.ZodOptional<z.ZodString>;
41
- date_created: z.ZodString;
147
+ type: z.ZodEnum<{
148
+ credit: "credit";
149
+ discount: "discount";
150
+ }>;
151
+ date_start: z.ZodISODateTime;
152
+ date_end: z.ZodOptional<z.ZodISODateTime>;
42
153
  code: z.ZodString;
43
154
  description: z.ZodOptional<z.ZodString>;
44
- products: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
45
- type: z.ZodEnum<["credit", "discount"]>;
46
- value: z.ZodNumber;
47
- billing_period: z.ZodString;
155
+ value_total: z.ZodNumber;
48
156
  value_remaining: z.ZodOptional<z.ZodNumber>;
49
- }, "strip", z.ZodTypeAny, {
50
- code: string;
51
- type: "credit" | "discount";
52
- value: number;
53
- date_created: string;
54
- billing_period: string;
55
- id?: string | undefined;
56
- description?: string | undefined;
57
- products?: string[] | undefined;
58
- value_remaining?: number | undefined;
59
- }, {
60
- code: string;
61
- type: "credit" | "discount";
62
- value: number;
63
- date_created: string;
64
- billing_period: string;
65
- id?: string | undefined;
66
- description?: string | undefined;
67
- products?: string[] | undefined;
68
- value_remaining?: number | undefined;
69
- }>;
157
+ }, z.core.$strip>;
158
+ export declare const zChartCreateInput: z.ZodObject<{
159
+ values: z.ZodString;
160
+ version_channel: z.ZodString;
161
+ name: z.ZodString;
162
+ namespace: z.ZodString;
163
+ chart: z.ZodString;
164
+ }, z.core.$strip>;
165
+ export declare const zChart: z.ZodObject<{
166
+ values: z.ZodString;
167
+ version_channel: z.ZodString;
168
+ name: z.ZodString;
169
+ namespace: z.ZodString;
170
+ chart: z.ZodString;
171
+ status: z.ZodEnum<{
172
+ InstallSucceeded: "InstallSucceeded";
173
+ InstallFailed: "InstallFailed";
174
+ UpgradeSucceeded: "UpgradeSucceeded";
175
+ UpgradeFailed: "UpgradeFailed";
176
+ TestSucceeded: "TestSucceeded";
177
+ TestFailed: "TestFailed";
178
+ RollbackSucceeded: "RollbackSucceeded";
179
+ RollbackFailed: "RollbackFailed";
180
+ UninstallSucceeded: "UninstallSucceeded";
181
+ UninstallFailed: "UninstallFailed";
182
+ ArtifactFailed: "ArtifactFailed";
183
+ DependencyNotReady: "DependencyNotReady";
184
+ Progressing: "Progressing";
185
+ SourceNotReady: "SourceNotReady";
186
+ }>;
187
+ version_current: z.ZodString;
188
+ created_at: z.ZodString;
189
+ updated_at: z.ZodString;
190
+ ready: z.ZodBoolean;
191
+ }, z.core.$strip>;
192
+ export declare const zChartUpdateInput: z.ZodObject<{
193
+ values: z.ZodString;
194
+ version_channel: z.ZodString;
195
+ }, z.core.$strip>;
70
196
  export declare const zClusterCreateInput: z.ZodObject<{
71
197
  name: z.ZodString;
72
- region: z.ZodOptional<z.ZodEnum<["staging", "northamerica-central-1"]>>;
73
- tier: z.ZodEnum<["basic", "pro"]>;
74
- version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
75
- }, "strip", z.ZodTypeAny, {
76
- name: string;
77
- tier: "basic" | "pro";
78
- version_channel: string;
79
- region?: "staging" | "northamerica-central-1" | undefined;
80
- }, {
81
- name: string;
82
- tier: "basic" | "pro";
83
- region?: "staging" | "northamerica-central-1" | undefined;
84
- version_channel?: string | undefined;
85
- }>;
198
+ tier: z.ZodEnum<{
199
+ basic: "basic";
200
+ pro: "pro";
201
+ }>;
202
+ region: z.ZodOptional<z.ZodEnum<{
203
+ "staging-1a": "staging-1a";
204
+ "northamerica-central-1": "northamerica-central-1";
205
+ "europe-central-1a": "europe-central-1a";
206
+ "northamerica-central-1a": "northamerica-central-1a";
207
+ }>>;
208
+ version_channel: z.ZodOptional<z.ZodEnum<{
209
+ "1.x.x-cfke.x": "1.x.x-cfke.x";
210
+ "1.31.x-cfke.x": "1.31.x-cfke.x";
211
+ "1.32.x-cfke.x": "1.32.x-cfke.x";
212
+ "1.33.x-cfke.x": "1.33.x-cfke.x";
213
+ }>>;
214
+ }, z.core.$strip>;
86
215
  export declare const zClusterJoinInformation: z.ZodObject<{
87
216
  certificate_authority: z.ZodString;
88
- endpoint: z.ZodString;
217
+ endpoint: z.ZodURL;
218
+ cluster_dns: z.ZodString;
89
219
  auth_key: z.ZodString;
90
220
  bootstrap_token: z.ZodString;
91
221
  versions: z.ZodObject<{
92
222
  kubernetes: z.ZodString;
93
223
  tailscale: z.ZodString;
94
224
  containerd: z.ZodString;
95
- }, "strip", z.ZodTypeAny, {
96
- kubernetes: string;
97
- tailscale: string;
98
- containerd: string;
99
- }, {
100
- kubernetes: string;
101
- tailscale: string;
102
- containerd: string;
103
- }>;
225
+ nvidia_driver: z.ZodString;
226
+ }, z.core.$strip>;
104
227
  third_party_api_access_config: z.ZodObject<{
105
228
  metadata_url: z.ZodString;
106
229
  aws_role_arn: z.ZodString;
107
230
  gcp_workload_identity_provider: z.ZodString;
108
- }, "strip", z.ZodTypeAny, {
109
- metadata_url: string;
110
- aws_role_arn: string;
111
- gcp_workload_identity_provider: string;
112
- }, {
113
- metadata_url: string;
114
- aws_role_arn: string;
115
- gcp_workload_identity_provider: string;
116
- }>;
117
- }, "strip", z.ZodTypeAny, {
118
- certificate_authority: string;
119
- endpoint: string;
120
- auth_key: string;
121
- bootstrap_token: string;
122
- versions: {
123
- kubernetes: string;
124
- tailscale: string;
125
- containerd: string;
126
- };
127
- third_party_api_access_config: {
128
- metadata_url: string;
129
- aws_role_arn: string;
130
- gcp_workload_identity_provider: string;
131
- };
132
- }, {
133
- certificate_authority: string;
134
- endpoint: string;
135
- auth_key: string;
136
- bootstrap_token: string;
137
- versions: {
138
- kubernetes: string;
139
- tailscale: string;
140
- containerd: string;
141
- };
142
- third_party_api_access_config: {
143
- metadata_url: string;
144
- aws_role_arn: string;
145
- gcp_workload_identity_provider: string;
146
- };
147
- }>;
231
+ }, z.core.$strip>;
232
+ }, z.core.$strip>;
148
233
  export declare const zCluster: z.ZodObject<{
149
234
  name: z.ZodString;
150
- region: z.ZodOptional<z.ZodEnum<["staging", "northamerica-central-1"]>>;
151
- tier: z.ZodEnum<["basic", "pro"]>;
152
- version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
153
- id: z.ZodString;
154
- status: z.ZodEnum<["active", "deleted", "creating", "deployed", "failed", "updating"]>;
155
- endpoint: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodEnum<[""]>]>>;
235
+ tier: z.ZodEnum<{
236
+ basic: "basic";
237
+ pro: "pro";
238
+ }>;
239
+ region: z.ZodOptional<z.ZodEnum<{
240
+ "staging-1a": "staging-1a";
241
+ "northamerica-central-1": "northamerica-central-1";
242
+ "europe-central-1a": "europe-central-1a";
243
+ "northamerica-central-1a": "northamerica-central-1a";
244
+ }>>;
245
+ id: z.ZodUUID;
246
+ status: z.ZodEnum<{
247
+ deleted: "deleted";
248
+ failed: "failed";
249
+ active: "active";
250
+ disabled: "disabled";
251
+ creating: "creating";
252
+ deployed: "deployed";
253
+ updating: "updating";
254
+ }>;
255
+ endpoint: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
256
+ "": "";
257
+ }>]>>;
156
258
  certificate_ca: z.ZodOptional<z.ZodString>;
157
259
  version_current: z.ZodOptional<z.ZodString>;
158
260
  created_at: z.ZodOptional<z.ZodString>;
159
261
  updated_at: z.ZodOptional<z.ZodString>;
160
262
  ready: z.ZodOptional<z.ZodBoolean>;
161
- }, "strip", z.ZodTypeAny, {
162
- name: string;
163
- id: string;
164
- status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
165
- tier: "basic" | "pro";
166
- version_channel: string;
167
- ready?: boolean | undefined;
168
- region?: "staging" | "northamerica-central-1" | undefined;
169
- endpoint?: string | undefined;
170
- certificate_ca?: string | undefined;
171
- version_current?: string | undefined;
172
- created_at?: string | undefined;
173
- updated_at?: string | undefined;
174
- }, {
175
- name: string;
176
- id: string;
177
- status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
178
- tier: "basic" | "pro";
179
- ready?: boolean | undefined;
180
- region?: "staging" | "northamerica-central-1" | undefined;
181
- endpoint?: string | undefined;
182
- version_channel?: string | undefined;
183
- certificate_ca?: string | undefined;
184
- version_current?: string | undefined;
185
- created_at?: string | undefined;
186
- updated_at?: string | undefined;
187
- }>;
263
+ version_channel: z.ZodOptional<z.ZodString>;
264
+ }, z.core.$strip>;
188
265
  export declare const zClusterUpdateInput: z.ZodObject<{
189
266
  name: z.ZodOptional<z.ZodString>;
267
+ tier: z.ZodEnum<{
268
+ basic: "basic";
269
+ pro: "pro";
270
+ }>;
190
271
  version_channel: z.ZodOptional<z.ZodString>;
191
- }, "strip", z.ZodTypeAny, {
192
- name?: string | undefined;
193
- version_channel?: string | undefined;
194
- }, {
195
- name?: string | undefined;
196
- version_channel?: string | undefined;
197
- }>;
272
+ }, z.core.$strip>;
198
273
  export declare const zFleetCreateInput: z.ZodObject<{
199
274
  limits: z.ZodOptional<z.ZodObject<{
200
275
  cpu: z.ZodNumber;
201
- }, "strip", z.ZodTypeAny, {
202
- cpu: number;
203
- }, {
204
- cpu: number;
205
- }>>;
276
+ }, z.core.$strip>>;
206
277
  gcp: z.ZodOptional<z.ZodObject<{
207
278
  enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
208
279
  project: z.ZodString;
209
- }, "strip", z.ZodTypeAny, {
210
- project: string;
211
- enabled: boolean;
212
- }, {
213
- project: string;
214
- enabled?: boolean | undefined;
215
- }>>;
216
- hetzner: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
280
+ }, z.core.$strip>>;
281
+ hetzner: z.ZodOptional<z.ZodObject<{
217
282
  enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
218
- apiKey: z.ZodOptional<z.ZodString>;
219
- }, "strip", z.ZodTypeAny, {
220
- enabled: boolean;
221
- apiKey?: string | undefined;
222
- }, {
223
- apiKey?: string | undefined;
224
- enabled?: boolean | undefined;
225
- }>, z.ZodObject<{
226
- apiKey: z.ZodOptional<z.ZodString>;
227
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
228
- }, "strip", z.ZodTypeAny, {
229
- enabled: boolean;
230
- apiKey?: string | undefined;
231
- }, {
232
- apiKey?: string | undefined;
233
- enabled?: boolean | undefined;
234
- }>]>>;
283
+ apiKey: z.ZodString;
284
+ }, z.core.$strip>>;
235
285
  aws: z.ZodOptional<z.ZodObject<{
236
286
  enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
237
287
  controllerRoleArn: z.ZodString;
238
- }, "strip", z.ZodTypeAny, {
239
- controllerRoleArn: string;
240
- enabled: boolean;
241
- }, {
242
- controllerRoleArn: string;
243
- enabled?: boolean | undefined;
244
- }>>;
288
+ }, z.core.$strip>>;
245
289
  id: z.ZodString;
246
- type: z.ZodEnum<["managed", "connected"]>;
247
- }, "strip", z.ZodTypeAny, {
248
- type: "connected" | "managed";
249
- id: string;
250
- limits?: {
251
- cpu: number;
252
- } | undefined;
253
- gcp?: {
254
- project: string;
255
- enabled: boolean;
256
- } | undefined;
257
- hetzner?: {
258
- enabled: boolean;
259
- apiKey?: string | undefined;
260
- } | {
261
- enabled: boolean;
262
- apiKey?: string | undefined;
263
- } | undefined;
264
- aws?: {
265
- controllerRoleArn: string;
266
- enabled: boolean;
267
- } | undefined;
268
- }, {
269
- type: "connected" | "managed";
270
- id: string;
271
- limits?: {
272
- cpu: number;
273
- } | undefined;
274
- gcp?: {
275
- project: string;
276
- enabled?: boolean | undefined;
277
- } | undefined;
278
- hetzner?: {
279
- apiKey?: string | undefined;
280
- enabled?: boolean | undefined;
281
- } | {
282
- apiKey?: string | undefined;
283
- enabled?: boolean | undefined;
284
- } | undefined;
285
- aws?: {
286
- controllerRoleArn: string;
287
- enabled?: boolean | undefined;
288
- } | undefined;
289
- }>;
290
+ }, z.core.$strip>;
290
291
  export declare const zFleet: z.ZodObject<{
291
292
  limits: z.ZodOptional<z.ZodObject<{
292
293
  cpu: z.ZodNumber;
293
- }, "strip", z.ZodTypeAny, {
294
- cpu: number;
295
- }, {
296
- cpu: number;
297
- }>>;
294
+ }, z.core.$strip>>;
298
295
  gcp: z.ZodOptional<z.ZodObject<{
299
296
  enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
300
297
  project: z.ZodString;
301
- }, "strip", z.ZodTypeAny, {
302
- project: string;
303
- enabled: boolean;
304
- }, {
305
- project: string;
306
- enabled?: boolean | undefined;
307
- }>>;
308
- hetzner: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
309
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
310
- apiKey: z.ZodOptional<z.ZodString>;
311
- }, "strip", z.ZodTypeAny, {
312
- enabled: boolean;
313
- apiKey?: string | undefined;
314
- }, {
315
- apiKey?: string | undefined;
316
- enabled?: boolean | undefined;
317
- }>, z.ZodObject<{
318
- apiKey: z.ZodOptional<z.ZodString>;
298
+ }, z.core.$strip>>;
299
+ hetzner: z.ZodOptional<z.ZodObject<{
319
300
  enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
320
- }, "strip", z.ZodTypeAny, {
321
- enabled: boolean;
322
- apiKey?: string | undefined;
323
- }, {
324
- apiKey?: string | undefined;
325
- enabled?: boolean | undefined;
326
- }>]>>;
301
+ apiKey: z.ZodString;
302
+ }, z.core.$strip>>;
327
303
  aws: z.ZodOptional<z.ZodObject<{
328
304
  enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
329
305
  controllerRoleArn: z.ZodString;
330
- }, "strip", z.ZodTypeAny, {
331
- controllerRoleArn: string;
332
- enabled: boolean;
333
- }, {
334
- controllerRoleArn: string;
335
- enabled?: boolean | undefined;
336
- }>>;
306
+ }, z.core.$strip>>;
337
307
  id: z.ZodString;
338
- type: z.ZodEnum<["managed", "connected"]>;
339
- }, "strip", z.ZodTypeAny, {
340
- type: "connected" | "managed";
341
- id: string;
342
- limits?: {
343
- cpu: number;
344
- } | undefined;
345
- gcp?: {
346
- project: string;
347
- enabled: boolean;
348
- } | undefined;
349
- hetzner?: {
350
- enabled: boolean;
351
- apiKey?: string | undefined;
352
- } | {
353
- enabled: boolean;
354
- apiKey?: string | undefined;
355
- } | undefined;
356
- aws?: {
357
- controllerRoleArn: string;
358
- enabled: boolean;
359
- } | undefined;
360
- }, {
361
- type: "connected" | "managed";
362
- id: string;
363
- limits?: {
364
- cpu: number;
365
- } | undefined;
366
- gcp?: {
367
- project: string;
368
- enabled?: boolean | undefined;
369
- } | undefined;
370
- hetzner?: {
371
- apiKey?: string | undefined;
372
- enabled?: boolean | undefined;
373
- } | {
374
- apiKey?: string | undefined;
375
- enabled?: boolean | undefined;
376
- } | undefined;
377
- aws?: {
378
- controllerRoleArn: string;
379
- enabled?: boolean | undefined;
380
- } | undefined;
381
- }>;
308
+ }, z.core.$strip>;
382
309
  export declare const zFleetUpdateInput: z.ZodObject<{
383
310
  limits: z.ZodOptional<z.ZodObject<{
384
311
  cpu: z.ZodNumber;
385
- }, "strip", z.ZodTypeAny, {
386
- cpu: number;
387
- }, {
388
- cpu: number;
389
- }>>;
312
+ }, z.core.$strip>>;
390
313
  gcp: z.ZodOptional<z.ZodObject<{
391
314
  enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
392
315
  project: z.ZodString;
393
- }, "strip", z.ZodTypeAny, {
394
- project: string;
395
- enabled: boolean;
396
- }, {
397
- project: string;
398
- enabled?: boolean | undefined;
399
- }>>;
400
- hetzner: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
401
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
402
- apiKey: z.ZodOptional<z.ZodString>;
403
- }, "strip", z.ZodTypeAny, {
404
- enabled: boolean;
405
- apiKey?: string | undefined;
406
- }, {
407
- apiKey?: string | undefined;
408
- enabled?: boolean | undefined;
409
- }>, z.ZodObject<{
410
- apiKey: z.ZodOptional<z.ZodString>;
316
+ }, z.core.$strip>>;
317
+ hetzner: z.ZodOptional<z.ZodObject<{
411
318
  enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
412
- }, "strip", z.ZodTypeAny, {
413
- enabled: boolean;
414
- apiKey?: string | undefined;
415
- }, {
416
- apiKey?: string | undefined;
417
- enabled?: boolean | undefined;
418
- }>]>>;
319
+ apiKey: z.ZodString;
320
+ }, z.core.$strip>>;
419
321
  aws: z.ZodOptional<z.ZodObject<{
420
322
  enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
421
323
  controllerRoleArn: z.ZodString;
422
- }, "strip", z.ZodTypeAny, {
423
- controllerRoleArn: string;
424
- enabled: boolean;
425
- }, {
426
- controllerRoleArn: string;
427
- enabled?: boolean | undefined;
428
- }>>;
429
- }, "strip", z.ZodTypeAny, {
430
- limits?: {
431
- cpu: number;
432
- } | undefined;
433
- gcp?: {
434
- project: string;
435
- enabled: boolean;
436
- } | undefined;
437
- hetzner?: {
438
- enabled: boolean;
439
- apiKey?: string | undefined;
440
- } | {
441
- enabled: boolean;
442
- apiKey?: string | undefined;
443
- } | undefined;
444
- aws?: {
445
- controllerRoleArn: string;
446
- enabled: boolean;
447
- } | undefined;
448
- }, {
449
- limits?: {
450
- cpu: number;
451
- } | undefined;
452
- gcp?: {
453
- project: string;
454
- enabled?: boolean | undefined;
455
- } | undefined;
456
- hetzner?: {
457
- apiKey?: string | undefined;
458
- enabled?: boolean | undefined;
459
- } | {
460
- apiKey?: string | undefined;
461
- enabled?: boolean | undefined;
462
- } | undefined;
463
- aws?: {
464
- controllerRoleArn: string;
465
- enabled?: boolean | undefined;
466
- } | undefined;
467
- }>;
324
+ }, z.core.$strip>>;
325
+ }, z.core.$strip>;
468
326
  export declare const zInvite: z.ZodObject<{
469
327
  id: z.ZodOptional<z.ZodString>;
470
- organization_id: z.ZodOptional<z.ZodString>;
471
- date_created: z.ZodString;
472
- email: z.ZodOptional<z.ZodString>;
328
+ organization_id: z.ZodOptional<z.ZodUUID>;
329
+ date_created: z.ZodISODateTime;
330
+ email: z.ZodOptional<z.ZodEmail>;
473
331
  code: z.ZodOptional<z.ZodString>;
474
- }, "strip", z.ZodTypeAny, {
475
- date_created: string;
476
- code?: string | undefined;
477
- id?: string | undefined;
478
- email?: string | undefined;
479
- organization_id?: string | undefined;
480
- }, {
481
- date_created: string;
482
- code?: string | undefined;
483
- id?: string | undefined;
484
- email?: string | undefined;
485
- organization_id?: string | undefined;
486
- }>;
332
+ }, z.core.$strip>;
487
333
  export declare const zInvoice: z.ZodObject<{
488
334
  id: z.ZodOptional<z.ZodString>;
489
- organizationId: z.ZodOptional<z.ZodString>;
490
- status: z.ZodOptional<z.ZodEnum<["DRAFT", "COMMITTED", "VOID"]>>;
491
- amount: z.ZodOptional<z.ZodNumber>;
492
- 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"]>>;
493
- creditAdj: z.ZodOptional<z.ZodNumber>;
494
- refundAdj: z.ZodOptional<z.ZodNumber>;
495
- invoiceDate: z.ZodOptional<z.ZodString>;
496
- targetDate: z.ZodOptional<z.ZodString>;
497
- invoiceNumber: z.ZodOptional<z.ZodString>;
498
- balance: z.ZodOptional<z.ZodNumber>;
499
- bundleKeys: z.ZodOptional<z.ZodString>;
500
- credits: z.ZodOptional<z.ZodArray<z.ZodObject<{
501
- id: z.ZodOptional<z.ZodString>;
502
- linkedInvoiceItemId: z.ZodOptional<z.ZodString>;
503
- productName: z.ZodOptional<z.ZodString>;
504
- planName: z.ZodOptional<z.ZodString>;
505
- phaseName: z.ZodOptional<z.ZodString>;
506
- usageName: z.ZodOptional<z.ZodString>;
507
- prettyProductName: z.ZodOptional<z.ZodString>;
508
- prettyPlanName: z.ZodOptional<z.ZodString>;
509
- prettyPhaseName: z.ZodOptional<z.ZodString>;
510
- prettyUsageName: z.ZodOptional<z.ZodString>;
511
- itemType: z.ZodOptional<z.ZodEnum<["EXTERNAL_CHARGE", "FIXED", "RECURRING", "REPAIR_ADJ", "CBA_ADJ", "CREDIT_ADJ", "ITEM_ADJ", "USAGE", "TAX", "PARENT_SUMMARY"]>>;
512
- description: z.ZodOptional<z.ZodString>;
513
- startDate: z.ZodOptional<z.ZodString>;
514
- endDate: z.ZodOptional<z.ZodString>;
515
- amount: z.ZodOptional<z.ZodNumber>;
516
- rate: z.ZodOptional<z.ZodNumber>;
517
- 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"]>>;
518
- quantity: z.ZodOptional<z.ZodNumber>;
519
- itemDetails: z.ZodOptional<z.ZodString>;
520
- catalogEffectiveDate: z.ZodOptional<z.ZodString>;
521
- childItems: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
522
- }, "strip", z.ZodTypeAny, {
523
- 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;
524
- id?: string | undefined;
525
- description?: string | undefined;
526
- amount?: number | undefined;
527
- linkedInvoiceItemId?: string | undefined;
528
- productName?: string | undefined;
529
- planName?: string | undefined;
530
- phaseName?: string | undefined;
531
- usageName?: string | undefined;
532
- prettyProductName?: string | undefined;
533
- prettyPlanName?: string | undefined;
534
- prettyPhaseName?: string | undefined;
535
- prettyUsageName?: string | undefined;
536
- itemType?: "EXTERNAL_CHARGE" | "FIXED" | "RECURRING" | "REPAIR_ADJ" | "CBA_ADJ" | "CREDIT_ADJ" | "ITEM_ADJ" | "USAGE" | "TAX" | "PARENT_SUMMARY" | undefined;
537
- startDate?: string | undefined;
538
- endDate?: string | undefined;
539
- rate?: number | undefined;
540
- quantity?: number | undefined;
541
- itemDetails?: string | undefined;
542
- catalogEffectiveDate?: string | undefined;
543
- childItems?: unknown[] | undefined;
544
- }, {
545
- 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;
546
- id?: string | undefined;
547
- description?: string | undefined;
548
- amount?: number | undefined;
549
- linkedInvoiceItemId?: string | undefined;
550
- productName?: string | undefined;
551
- planName?: string | undefined;
552
- phaseName?: string | undefined;
553
- usageName?: string | undefined;
554
- prettyProductName?: string | undefined;
555
- prettyPlanName?: string | undefined;
556
- prettyPhaseName?: string | undefined;
557
- prettyUsageName?: string | undefined;
558
- itemType?: "EXTERNAL_CHARGE" | "FIXED" | "RECURRING" | "REPAIR_ADJ" | "CBA_ADJ" | "CREDIT_ADJ" | "ITEM_ADJ" | "USAGE" | "TAX" | "PARENT_SUMMARY" | undefined;
559
- startDate?: string | undefined;
560
- endDate?: string | undefined;
561
- rate?: number | undefined;
562
- quantity?: number | undefined;
563
- itemDetails?: string | undefined;
564
- catalogEffectiveDate?: string | undefined;
565
- childItems?: unknown[] | undefined;
566
- }>, "many">>;
567
- items: z.ZodOptional<z.ZodArray<z.ZodObject<{
568
- id: z.ZodOptional<z.ZodString>;
569
- linkedInvoiceItemId: z.ZodOptional<z.ZodString>;
570
- productName: z.ZodOptional<z.ZodString>;
571
- planName: z.ZodOptional<z.ZodString>;
572
- phaseName: z.ZodOptional<z.ZodString>;
573
- usageName: z.ZodOptional<z.ZodString>;
574
- prettyProductName: z.ZodOptional<z.ZodString>;
575
- prettyPlanName: z.ZodOptional<z.ZodString>;
576
- prettyPhaseName: z.ZodOptional<z.ZodString>;
577
- prettyUsageName: z.ZodOptional<z.ZodString>;
578
- itemType: z.ZodOptional<z.ZodEnum<["EXTERNAL_CHARGE", "FIXED", "RECURRING", "REPAIR_ADJ", "CBA_ADJ", "CREDIT_ADJ", "ITEM_ADJ", "USAGE", "TAX", "PARENT_SUMMARY"]>>;
335
+ number: z.ZodOptional<z.ZodString>;
336
+ status: z.ZodOptional<z.ZodString>;
337
+ total: z.ZodOptional<z.ZodNumber>;
338
+ currency: z.ZodOptional<z.ZodString>;
339
+ created: z.ZodISODateTime;
340
+ period_start: z.ZodISODateTime;
341
+ period_end: z.ZodISODateTime;
342
+ invoice_pdf: z.ZodOptional<z.ZodString>;
343
+ }, z.core.$strip>;
344
+ export declare const zMarketplaceListingFiles: z.ZodObject<{
345
+ chartYaml: z.ZodOptional<z.ZodString>;
346
+ valuesYaml: z.ZodOptional<z.ZodString>;
347
+ valuesSchemaJson: z.ZodOptional<z.ZodString>;
348
+ }, z.core.$strip>;
349
+ export declare const zMarketplaceListing: z.ZodObject<{
350
+ name: z.ZodString;
351
+ versions: z.ZodArray<z.ZodString>;
352
+ version_channels: z.ZodArray<z.ZodString>;
353
+ latestVersion: z.ZodString;
354
+ metadata: z.ZodOptional<z.ZodObject<{
355
+ name: z.ZodString;
356
+ version: z.ZodString;
579
357
  description: z.ZodOptional<z.ZodString>;
580
- startDate: z.ZodOptional<z.ZodString>;
581
- endDate: z.ZodOptional<z.ZodString>;
582
- amount: z.ZodOptional<z.ZodNumber>;
583
- rate: z.ZodOptional<z.ZodNumber>;
584
- 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"]>>;
585
- quantity: z.ZodOptional<z.ZodNumber>;
586
- itemDetails: z.ZodOptional<z.ZodString>;
587
- catalogEffectiveDate: z.ZodOptional<z.ZodString>;
588
- childItems: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
589
- }, "strip", z.ZodTypeAny, {
590
- 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;
591
- id?: string | undefined;
592
- description?: string | undefined;
593
- amount?: number | undefined;
594
- linkedInvoiceItemId?: string | undefined;
595
- productName?: string | undefined;
596
- planName?: string | undefined;
597
- phaseName?: string | undefined;
598
- usageName?: string | undefined;
599
- prettyProductName?: string | undefined;
600
- prettyPlanName?: string | undefined;
601
- prettyPhaseName?: string | undefined;
602
- prettyUsageName?: string | undefined;
603
- itemType?: "EXTERNAL_CHARGE" | "FIXED" | "RECURRING" | "REPAIR_ADJ" | "CBA_ADJ" | "CREDIT_ADJ" | "ITEM_ADJ" | "USAGE" | "TAX" | "PARENT_SUMMARY" | undefined;
604
- startDate?: string | undefined;
605
- endDate?: string | undefined;
606
- rate?: number | undefined;
607
- quantity?: number | undefined;
608
- itemDetails?: string | undefined;
609
- catalogEffectiveDate?: string | undefined;
610
- childItems?: unknown[] | undefined;
611
- }, {
612
- 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;
613
- id?: string | undefined;
614
- description?: string | undefined;
615
- amount?: number | undefined;
616
- linkedInvoiceItemId?: string | undefined;
617
- productName?: string | undefined;
618
- planName?: string | undefined;
619
- phaseName?: string | undefined;
620
- usageName?: string | undefined;
621
- prettyProductName?: string | undefined;
622
- prettyPlanName?: string | undefined;
623
- prettyPhaseName?: string | undefined;
624
- prettyUsageName?: string | undefined;
625
- itemType?: "EXTERNAL_CHARGE" | "FIXED" | "RECURRING" | "REPAIR_ADJ" | "CBA_ADJ" | "CREDIT_ADJ" | "ITEM_ADJ" | "USAGE" | "TAX" | "PARENT_SUMMARY" | undefined;
626
- startDate?: string | undefined;
627
- endDate?: string | undefined;
628
- rate?: number | undefined;
629
- quantity?: number | undefined;
630
- itemDetails?: string | undefined;
631
- catalogEffectiveDate?: string | undefined;
632
- childItems?: unknown[] | undefined;
633
- }>, "many">>;
634
- }, "strip", z.ZodTypeAny, {
635
- 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;
636
- id?: string | undefined;
637
- status?: "DRAFT" | "COMMITTED" | "VOID" | undefined;
638
- items?: {
639
- 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;
640
- id?: string | undefined;
641
- description?: string | undefined;
642
- amount?: number | undefined;
643
- linkedInvoiceItemId?: string | undefined;
644
- productName?: string | undefined;
645
- planName?: string | undefined;
646
- phaseName?: string | undefined;
647
- usageName?: string | undefined;
648
- prettyProductName?: string | undefined;
649
- prettyPlanName?: string | undefined;
650
- prettyPhaseName?: string | undefined;
651
- prettyUsageName?: string | undefined;
652
- itemType?: "EXTERNAL_CHARGE" | "FIXED" | "RECURRING" | "REPAIR_ADJ" | "CBA_ADJ" | "CREDIT_ADJ" | "ITEM_ADJ" | "USAGE" | "TAX" | "PARENT_SUMMARY" | undefined;
653
- startDate?: string | undefined;
654
- endDate?: string | undefined;
655
- rate?: number | undefined;
656
- quantity?: number | undefined;
657
- itemDetails?: string | undefined;
658
- catalogEffectiveDate?: string | undefined;
659
- childItems?: unknown[] | undefined;
660
- }[] | undefined;
661
- organizationId?: string | undefined;
662
- amount?: number | undefined;
663
- creditAdj?: number | undefined;
664
- refundAdj?: number | undefined;
665
- invoiceDate?: string | undefined;
666
- targetDate?: string | undefined;
667
- invoiceNumber?: string | undefined;
668
- balance?: number | undefined;
669
- bundleKeys?: string | undefined;
670
- credits?: {
671
- 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;
672
- id?: string | undefined;
673
- description?: string | undefined;
674
- amount?: number | undefined;
675
- linkedInvoiceItemId?: string | undefined;
676
- productName?: string | undefined;
677
- planName?: string | undefined;
678
- phaseName?: string | undefined;
679
- usageName?: string | undefined;
680
- prettyProductName?: string | undefined;
681
- prettyPlanName?: string | undefined;
682
- prettyPhaseName?: string | undefined;
683
- prettyUsageName?: string | undefined;
684
- itemType?: "EXTERNAL_CHARGE" | "FIXED" | "RECURRING" | "REPAIR_ADJ" | "CBA_ADJ" | "CREDIT_ADJ" | "ITEM_ADJ" | "USAGE" | "TAX" | "PARENT_SUMMARY" | undefined;
685
- startDate?: string | undefined;
686
- endDate?: string | undefined;
687
- rate?: number | undefined;
688
- quantity?: number | undefined;
689
- itemDetails?: string | undefined;
690
- catalogEffectiveDate?: string | undefined;
691
- childItems?: unknown[] | undefined;
692
- }[] | undefined;
693
- }, {
694
- 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;
695
- id?: string | undefined;
696
- status?: "DRAFT" | "COMMITTED" | "VOID" | undefined;
697
- items?: {
698
- 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;
699
- id?: string | undefined;
700
- description?: string | undefined;
701
- amount?: number | undefined;
702
- linkedInvoiceItemId?: string | undefined;
703
- productName?: string | undefined;
704
- planName?: string | undefined;
705
- phaseName?: string | undefined;
706
- usageName?: string | undefined;
707
- prettyProductName?: string | undefined;
708
- prettyPlanName?: string | undefined;
709
- prettyPhaseName?: string | undefined;
710
- prettyUsageName?: string | undefined;
711
- itemType?: "EXTERNAL_CHARGE" | "FIXED" | "RECURRING" | "REPAIR_ADJ" | "CBA_ADJ" | "CREDIT_ADJ" | "ITEM_ADJ" | "USAGE" | "TAX" | "PARENT_SUMMARY" | undefined;
712
- startDate?: string | undefined;
713
- endDate?: string | undefined;
714
- rate?: number | undefined;
715
- quantity?: number | undefined;
716
- itemDetails?: string | undefined;
717
- catalogEffectiveDate?: string | undefined;
718
- childItems?: unknown[] | undefined;
719
- }[] | undefined;
720
- organizationId?: string | undefined;
721
- amount?: number | undefined;
722
- creditAdj?: number | undefined;
723
- refundAdj?: number | undefined;
724
- invoiceDate?: string | undefined;
725
- targetDate?: string | undefined;
726
- invoiceNumber?: string | undefined;
727
- balance?: number | undefined;
728
- bundleKeys?: string | undefined;
729
- credits?: {
730
- 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;
731
- id?: string | undefined;
732
- description?: string | undefined;
733
- amount?: number | undefined;
734
- linkedInvoiceItemId?: string | undefined;
735
- productName?: string | undefined;
736
- planName?: string | undefined;
737
- phaseName?: string | undefined;
738
- usageName?: string | undefined;
739
- prettyProductName?: string | undefined;
740
- prettyPlanName?: string | undefined;
741
- prettyPhaseName?: string | undefined;
742
- prettyUsageName?: string | undefined;
743
- itemType?: "EXTERNAL_CHARGE" | "FIXED" | "RECURRING" | "REPAIR_ADJ" | "CBA_ADJ" | "CREDIT_ADJ" | "ITEM_ADJ" | "USAGE" | "TAX" | "PARENT_SUMMARY" | undefined;
744
- startDate?: string | undefined;
745
- endDate?: string | undefined;
746
- rate?: number | undefined;
747
- quantity?: number | undefined;
748
- itemDetails?: string | undefined;
749
- catalogEffectiveDate?: string | undefined;
750
- childItems?: unknown[] | undefined;
751
- }[] | undefined;
752
- }>;
358
+ appVersion: z.ZodOptional<z.ZodString>;
359
+ apiVersion: z.ZodOptional<z.ZodString>;
360
+ keywords: z.ZodOptional<z.ZodArray<z.ZodString>>;
361
+ home: z.ZodOptional<z.ZodString>;
362
+ icon: z.ZodOptional<z.ZodString>;
363
+ sources: z.ZodOptional<z.ZodArray<z.ZodString>>;
364
+ maintainers: z.ZodOptional<z.ZodArray<z.ZodObject<{
365
+ name: z.ZodString;
366
+ email: z.ZodOptional<z.ZodString>;
367
+ }, z.core.$strip>>>;
368
+ }, z.core.$strip>>;
369
+ }, z.core.$strip>;
753
370
  export declare const zOrganizationCreateInput: z.ZodObject<{
754
- email: z.ZodString;
371
+ email: z.ZodEmail;
755
372
  first_name: z.ZodString;
756
373
  last_name: z.ZodString;
757
374
  company_name: z.ZodString;
758
375
  password: z.ZodString;
759
- }, "strip", z.ZodTypeAny, {
760
- email: string;
761
- first_name: string;
762
- last_name: string;
763
- company_name: string;
764
- password: string;
765
- }, {
766
- email: string;
767
- first_name: string;
768
- last_name: string;
769
- company_name: string;
770
- password: string;
771
- }>;
376
+ }, z.core.$strip>;
772
377
  export declare const zOrganization: z.ZodObject<{
773
- id: z.ZodString;
378
+ id: z.ZodUUID;
774
379
  name: z.ZodOptional<z.ZodString>;
775
- date_created: z.ZodString;
380
+ date_created: z.ZodISODateTime;
776
381
  quota: z.ZodObject<{
777
- basic_clusters_max: z.ZodNumber;
778
- basic_clusters_available: z.ZodNumber;
779
- pro_clusters_max: z.ZodNumber;
780
- pro_clusters_available: z.ZodNumber;
781
- fleets_max: z.ZodNumber;
782
- managed_fleets_cpu_max: z.ZodNumber;
783
- cluster_tiers: z.ZodArray<z.ZodString, "many">;
784
- regions: z.ZodArray<z.ZodString, "many">;
382
+ basic_clusters_max: z.ZodInt;
383
+ basic_clusters_available: z.ZodInt;
384
+ pro_clusters_max: z.ZodInt;
385
+ pro_clusters_available: z.ZodInt;
386
+ fleets_max: z.ZodInt;
387
+ cluster_tiers: z.ZodArray<z.ZodString>;
388
+ regions: z.ZodArray<z.ZodString>;
785
389
  versions: z.ZodArray<z.ZodObject<{
786
390
  id: z.ZodString;
787
391
  label: z.ZodString;
788
- }, "strip", z.ZodTypeAny, {
789
- id: string;
790
- label: string;
791
- }, {
792
- id: string;
793
- label: string;
794
- }>, "many">;
795
- }, "strip", z.ZodTypeAny, {
796
- versions: {
797
- id: string;
798
- label: string;
799
- }[];
800
- basic_clusters_max: number;
801
- basic_clusters_available: number;
802
- pro_clusters_max: number;
803
- pro_clusters_available: number;
804
- fleets_max: number;
805
- managed_fleets_cpu_max: number;
806
- cluster_tiers: string[];
807
- regions: string[];
808
- }, {
809
- versions: {
810
- id: string;
811
- label: string;
812
- }[];
813
- basic_clusters_max: number;
814
- basic_clusters_available: number;
815
- pro_clusters_max: number;
816
- pro_clusters_available: number;
817
- fleets_max: number;
818
- managed_fleets_cpu_max: number;
819
- cluster_tiers: string[];
820
- regions: string[];
392
+ }, z.core.$strip>>;
393
+ copilot_user_hourly_tokens: z.ZodInt;
394
+ copilot_organization_hourly_tokens: z.ZodInt;
395
+ cfcr_storage_gb: z.ZodInt;
396
+ }, z.core.$strip>;
397
+ status: z.ZodEnum<{
398
+ active: "active";
399
+ closed: "closed";
400
+ suspended: "suspended";
821
401
  }>;
822
- status: z.ZodEnum<["active", "closed", "suspended"]>;
823
- }, "strip", z.ZodTypeAny, {
824
- id: string;
825
- status: "active" | "closed" | "suspended";
826
- date_created: string;
827
- quota: {
828
- versions: {
829
- id: string;
830
- label: string;
831
- }[];
832
- basic_clusters_max: number;
833
- basic_clusters_available: number;
834
- pro_clusters_max: number;
835
- pro_clusters_available: number;
836
- fleets_max: number;
837
- managed_fleets_cpu_max: number;
838
- cluster_tiers: string[];
839
- regions: string[];
840
- };
841
- name?: string | undefined;
842
- }, {
843
- id: string;
844
- status: "active" | "closed" | "suspended";
845
- date_created: string;
846
- quota: {
847
- versions: {
848
- id: string;
849
- label: string;
850
- }[];
851
- basic_clusters_max: number;
852
- basic_clusters_available: number;
853
- pro_clusters_max: number;
854
- pro_clusters_available: number;
855
- fleets_max: number;
856
- managed_fleets_cpu_max: number;
857
- cluster_tiers: string[];
858
- regions: string[];
859
- };
860
- name?: string | undefined;
861
- }>;
402
+ }, z.core.$strip>;
862
403
  export declare const zPaymentMethod: z.ZodObject<{
863
- id: z.ZodString;
404
+ id: z.ZodUUID;
864
405
  setup: z.ZodBoolean;
865
- type: z.ZodEnum<["card"]>;
406
+ type: z.ZodEnum<{
407
+ card: "card";
408
+ }>;
866
409
  last4: z.ZodString;
867
- exp_month: z.ZodNumber;
868
- exp_year: z.ZodNumber;
869
- brand: z.ZodEnum<["amex", "diners", "discover", "eftpos_au", "jcb", "mastercard", "unionpay", "visa", "unknown"]>;
870
- }, "strip", z.ZodTypeAny, {
871
- type: "card";
872
- id: string;
873
- setup: boolean;
874
- last4: string;
875
- exp_month: number;
876
- exp_year: number;
877
- brand: "unknown" | "amex" | "diners" | "discover" | "eftpos_au" | "jcb" | "mastercard" | "unionpay" | "visa";
878
- }, {
879
- type: "card";
880
- id: string;
881
- setup: boolean;
882
- last4: string;
883
- exp_month: number;
884
- exp_year: number;
885
- brand: "unknown" | "amex" | "diners" | "discover" | "eftpos_au" | "jcb" | "mastercard" | "unionpay" | "visa";
886
- }>;
410
+ exp_month: z.ZodInt;
411
+ exp_year: z.ZodInt;
412
+ brand: z.ZodEnum<{
413
+ unknown: "unknown";
414
+ amex: "amex";
415
+ diners: "diners";
416
+ discover: "discover";
417
+ eftpos_au: "eftpos_au";
418
+ jcb: "jcb";
419
+ mastercard: "mastercard";
420
+ unionpay: "unionpay";
421
+ visa: "visa";
422
+ }>;
423
+ }, z.core.$strip>;
424
+ export declare const zPlatformQuota: z.ZodObject<{
425
+ basic_clusters_max: z.ZodInt;
426
+ basic_clusters_available: z.ZodInt;
427
+ pro_clusters_max: z.ZodInt;
428
+ pro_clusters_available: z.ZodInt;
429
+ fleets_max: z.ZodInt;
430
+ cluster_tiers: z.ZodArray<z.ZodString>;
431
+ regions: z.ZodArray<z.ZodString>;
432
+ versions: z.ZodArray<z.ZodObject<{
433
+ id: z.ZodString;
434
+ label: z.ZodString;
435
+ }, z.core.$strip>>;
436
+ copilot_user_hourly_tokens: z.ZodInt;
437
+ copilot_organization_hourly_tokens: z.ZodInt;
438
+ cfcr_storage_gb: z.ZodInt;
439
+ }, z.core.$strip>;
440
+ export declare const zRegistryRepository: z.ZodObject<{
441
+ name: z.ZodString;
442
+ region: z.ZodString;
443
+ uri: z.ZodString;
444
+ }, z.core.$strip>;
445
+ export declare const zRegistryRepositoryWithTags: z.ZodObject<{
446
+ name: z.ZodString;
447
+ region: z.ZodString;
448
+ uri: z.ZodString;
449
+ tags: z.ZodArray<z.ZodObject<{
450
+ name: z.ZodString;
451
+ size: z.ZodNumber;
452
+ mediaType: z.ZodOptional<z.ZodString>;
453
+ platforms: z.ZodOptional<z.ZodArray<z.ZodString>>;
454
+ }, z.core.$strip>>;
455
+ totalSize: z.ZodNumber;
456
+ }, z.core.$strip>;
457
+ export declare const zRegistryTag: z.ZodObject<{
458
+ name: z.ZodString;
459
+ digest: z.ZodString;
460
+ mediaType: z.ZodOptional<z.ZodString>;
461
+ config: z.ZodOptional<z.ZodObject<{
462
+ size: z.ZodNumber;
463
+ }, z.core.$strip>>;
464
+ layers: z.ZodOptional<z.ZodArray<z.ZodObject<{
465
+ digest: z.ZodOptional<z.ZodString>;
466
+ size: z.ZodNumber;
467
+ }, z.core.$strip>>>;
468
+ manifests: z.ZodOptional<z.ZodArray<z.ZodObject<{
469
+ digest: z.ZodString;
470
+ platform: z.ZodOptional<z.ZodObject<{
471
+ architecture: z.ZodString;
472
+ os: z.ZodString;
473
+ variant: z.ZodOptional<z.ZodString>;
474
+ }, z.core.$strip>>;
475
+ layers: z.ZodOptional<z.ZodArray<z.ZodObject<{
476
+ digest: z.ZodOptional<z.ZodString>;
477
+ size: z.ZodNumber;
478
+ }, z.core.$strip>>>;
479
+ size: z.ZodOptional<z.ZodNumber>;
480
+ }, z.core.$strip>>>;
481
+ size: z.ZodNumber;
482
+ region: z.ZodString;
483
+ repository: z.ZodString;
484
+ uri: z.ZodString;
485
+ }, z.core.$strip>;
887
486
  export declare const zTokenCreateInput: z.ZodObject<{
888
487
  name: z.ZodString;
889
- role: z.ZodEnum<["Administrator", "User"]>;
890
- }, "strip", z.ZodTypeAny, {
891
- name: string;
892
- role: "Administrator" | "User";
893
- }, {
894
- name: string;
895
- role: "Administrator" | "User";
896
- }>;
488
+ role: z.ZodEnum<{
489
+ Administrator: "Administrator";
490
+ User: "User";
491
+ }>;
492
+ }, z.core.$strip>;
897
493
  export declare const zToken: z.ZodObject<{
898
494
  name: z.ZodString;
899
- role: z.ZodEnum<["Administrator", "User"]>;
495
+ role: z.ZodEnum<{
496
+ Administrator: "Administrator";
497
+ User: "User";
498
+ }>;
900
499
  id: z.ZodOptional<z.ZodString>;
901
500
  secret: z.ZodOptional<z.ZodString>;
902
- date_created: z.ZodString;
903
- }, "strip", z.ZodTypeAny, {
904
- name: string;
905
- role: "Administrator" | "User";
906
- date_created: string;
907
- id?: string | undefined;
908
- secret?: string | undefined;
909
- }, {
910
- name: string;
911
- role: "Administrator" | "User";
912
- date_created: string;
913
- id?: string | undefined;
914
- secret?: string | undefined;
915
- }>;
501
+ date_created: z.ZodISODateTime;
502
+ }, z.core.$strip>;
916
503
  export declare const zTokenUpdateInput: z.ZodObject<{
917
504
  name: z.ZodOptional<z.ZodString>;
918
- role: z.ZodOptional<z.ZodEnum<["Administrator", "User"]>>;
919
- }, "strip", z.ZodTypeAny, {
920
- name?: string | undefined;
921
- role?: "Administrator" | "User" | undefined;
922
- }, {
923
- name?: string | undefined;
924
- role?: "Administrator" | "User" | undefined;
925
- }>;
505
+ role: z.ZodOptional<z.ZodEnum<{
506
+ Administrator: "Administrator";
507
+ User: "User";
508
+ }>>;
509
+ }, z.core.$strip>;
510
+ export declare const zUsageFacets: z.ZodObject<{
511
+ cluster_id: z.ZodOptional<z.ZodArray<z.ZodString>>;
512
+ product: z.ZodOptional<z.ZodArray<z.ZodString>>;
513
+ }, z.core.$strip>;
514
+ export declare const zUsageResponse: z.ZodObject<{
515
+ data: z.ZodArray<z.ZodObject<{
516
+ hour: z.ZodString;
517
+ cluster_id: z.ZodString;
518
+ product: z.ZodString;
519
+ value: z.ZodNumber;
520
+ price: z.ZodNumber;
521
+ total: z.ZodNumber;
522
+ }, z.core.$strip>>;
523
+ facets: z.ZodObject<{
524
+ cluster_id: z.ZodOptional<z.ZodArray<z.ZodString>>;
525
+ product: z.ZodOptional<z.ZodArray<z.ZodString>>;
526
+ }, z.core.$strip>;
527
+ }, z.core.$strip>;
926
528
  export declare const zUsage: z.ZodObject<{
927
- hour: z.ZodOptional<z.ZodString>;
529
+ hour: z.ZodString;
928
530
  cluster_id: z.ZodString;
929
- cluster_tier: z.ZodEnum<[""]>;
930
- product: z.ZodEnum<["cfke_infra_compute", "cfke_nodes", "cfke_controlplane"]>;
931
- node_name: z.ZodString;
932
- sku: z.ZodString;
933
- cpu: z.ZodUnion<[z.ZodNumber, z.ZodEnum<[""]>]>;
934
- price: z.ZodUnion<[z.ZodNumber, z.ZodEnum<[""]>]>;
935
- value: z.ZodUnion<[z.ZodNumber, z.ZodEnum<[""]>]>;
936
- total: z.ZodUnion<[z.ZodNumber, z.ZodEnum<[""]>]>;
937
- }, "strip", z.ZodTypeAny, {
938
- total: number | "";
939
- cpu: number | "";
940
- product: "cfke_infra_compute" | "cfke_nodes" | "cfke_controlplane";
941
- value: number | "";
942
- cluster_id: string;
943
- cluster_tier: "";
944
- node_name: string;
945
- sku: string;
946
- price: number | "";
947
- hour?: string | undefined;
948
- }, {
949
- total: number | "";
950
- cpu: number | "";
951
- product: "cfke_infra_compute" | "cfke_nodes" | "cfke_controlplane";
952
- value: number | "";
953
- cluster_id: string;
954
- cluster_tier: "";
955
- node_name: string;
956
- sku: string;
957
- price: number | "";
958
- hour?: string | undefined;
959
- }>;
531
+ product: z.ZodString;
532
+ value: z.ZodNumber;
533
+ price: z.ZodNumber;
534
+ total: z.ZodNumber;
535
+ }, z.core.$strip>;
960
536
  export declare const zUserCreateInput: z.ZodObject<{
961
- email: z.ZodString;
537
+ email: z.ZodEmail;
962
538
  first_name: z.ZodString;
963
539
  last_name: z.ZodString;
964
540
  code: z.ZodString;
965
541
  password: z.ZodString;
966
- status: z.ZodOptional<z.ZodEnum<["active", "inactive"]>>;
967
- role: z.ZodOptional<z.ZodEnum<["Administrator", "User"]>>;
968
- }, "strip", z.ZodTypeAny, {
969
- code: string;
970
- email: string;
971
- first_name: string;
972
- last_name: string;
973
- password: string;
974
- role?: "Administrator" | "User" | undefined;
975
- status?: "active" | "inactive" | undefined;
976
- }, {
977
- code: string;
978
- email: string;
979
- first_name: string;
980
- last_name: string;
981
- password: string;
982
- role?: "Administrator" | "User" | undefined;
983
- status?: "active" | "inactive" | undefined;
984
- }>;
542
+ status: z.ZodOptional<z.ZodEnum<{
543
+ active: "active";
544
+ inactive: "inactive";
545
+ }>>;
546
+ role: z.ZodOptional<z.ZodEnum<{
547
+ Administrator: "Administrator";
548
+ User: "User";
549
+ }>>;
550
+ }, z.core.$strip>;
985
551
  export declare const zUser: z.ZodObject<{
986
- email: z.ZodString;
552
+ email: z.ZodEmail;
987
553
  first_name: z.ZodString;
988
554
  last_name: z.ZodString;
989
- role: z.ZodEnum<["Administrator", "User"]>;
990
- status: z.ZodEnum<["active", "inactive"]>;
991
- id: z.ZodString;
992
- date_created: z.ZodString;
993
- }, "strip", z.ZodTypeAny, {
994
- id: string;
995
- role: "Administrator" | "User";
996
- email: string;
997
- status: "active" | "inactive";
998
- first_name: string;
999
- last_name: string;
1000
- date_created: string;
1001
- }, {
1002
- id: string;
1003
- role: "Administrator" | "User";
1004
- email: string;
1005
- status: "active" | "inactive";
1006
- first_name: string;
1007
- last_name: string;
1008
- date_created: string;
1009
- }>;
555
+ role: z.ZodEnum<{
556
+ Administrator: "Administrator";
557
+ User: "User";
558
+ }>;
559
+ status: z.ZodEnum<{
560
+ active: "active";
561
+ inactive: "inactive";
562
+ }>;
563
+ id: z.ZodUUID;
564
+ date_created: z.ZodISODateTime;
565
+ }, z.core.$strip>;
1010
566
  export declare const zUserUpdateInput: z.ZodObject<{
1011
- email: z.ZodOptional<z.ZodString>;
567
+ email: z.ZodOptional<z.ZodEmail>;
1012
568
  first_name: z.ZodOptional<z.ZodString>;
1013
569
  last_name: z.ZodOptional<z.ZodString>;
1014
- role: z.ZodOptional<z.ZodEnum<["Administrator", "User"]>>;
1015
- status: z.ZodOptional<z.ZodEnum<["active", "inactive"]>>;
1016
- }, "strip", z.ZodTypeAny, {
1017
- role?: "Administrator" | "User" | undefined;
1018
- email?: string | undefined;
1019
- status?: "active" | "inactive" | undefined;
1020
- first_name?: string | undefined;
1021
- last_name?: string | undefined;
1022
- }, {
1023
- role?: "Administrator" | "User" | undefined;
1024
- email?: string | undefined;
1025
- status?: "active" | "inactive" | undefined;
1026
- first_name?: string | undefined;
1027
- last_name?: string | undefined;
1028
- }>;
1029
- export declare const zGetUsageResponse: z.ZodArray<z.ZodObject<{
1030
- hour: z.ZodOptional<z.ZodString>;
1031
- cluster_id: z.ZodString;
1032
- cluster_tier: z.ZodEnum<[""]>;
1033
- product: z.ZodEnum<["cfke_infra_compute", "cfke_nodes", "cfke_controlplane"]>;
1034
- node_name: z.ZodString;
1035
- sku: z.ZodString;
1036
- cpu: z.ZodUnion<[z.ZodNumber, z.ZodEnum<[""]>]>;
1037
- price: z.ZodUnion<[z.ZodNumber, z.ZodEnum<[""]>]>;
1038
- value: z.ZodUnion<[z.ZodNumber, z.ZodEnum<[""]>]>;
1039
- total: z.ZodUnion<[z.ZodNumber, z.ZodEnum<[""]>]>;
1040
- }, "strip", z.ZodTypeAny, {
1041
- total: number | "";
1042
- cpu: number | "";
1043
- product: "cfke_infra_compute" | "cfke_nodes" | "cfke_controlplane";
1044
- value: number | "";
1045
- cluster_id: string;
1046
- cluster_tier: "";
1047
- node_name: string;
1048
- sku: string;
1049
- price: number | "";
1050
- hour?: string | undefined;
1051
- }, {
1052
- total: number | "";
1053
- cpu: number | "";
1054
- product: "cfke_infra_compute" | "cfke_nodes" | "cfke_controlplane";
1055
- value: number | "";
1056
- cluster_id: string;
1057
- cluster_tier: "";
1058
- node_name: string;
1059
- sku: string;
1060
- price: number | "";
1061
- hour?: string | undefined;
1062
- }>, "many">;
1063
- export declare const zGetBalanceResponse: z.ZodNumber;
570
+ role: z.ZodOptional<z.ZodEnum<{
571
+ Administrator: "Administrator";
572
+ User: "User";
573
+ }>>;
574
+ status: z.ZodOptional<z.ZodEnum<{
575
+ active: "active";
576
+ inactive: "inactive";
577
+ }>>;
578
+ }, z.core.$strip>;
579
+ export declare const zGetUsageData: z.ZodObject<{
580
+ body: z.ZodOptional<z.ZodNever>;
581
+ path: z.ZodOptional<z.ZodNever>;
582
+ query: z.ZodOptional<z.ZodObject<{
583
+ granularity: z.ZodOptional<z.ZodEnum<{
584
+ hourly: "hourly";
585
+ daily: "daily";
586
+ monthly: "monthly";
587
+ }>>;
588
+ }, z.core.$strip>>;
589
+ }, z.core.$strip>;
590
+ /**
591
+ * Usage data with facets for filtering
592
+ */
593
+ export declare const zGetUsageResponse: z.ZodObject<{
594
+ data: z.ZodArray<z.ZodObject<{
595
+ hour: z.ZodString;
596
+ cluster_id: z.ZodString;
597
+ product: z.ZodString;
598
+ value: z.ZodNumber;
599
+ price: z.ZodNumber;
600
+ total: z.ZodNumber;
601
+ }, z.core.$strip>>;
602
+ facets: z.ZodObject<{
603
+ cluster_id: z.ZodOptional<z.ZodArray<z.ZodString>>;
604
+ product: z.ZodOptional<z.ZodArray<z.ZodString>>;
605
+ }, z.core.$strip>;
606
+ }, z.core.$strip>;
607
+ export declare const zGetPaymentMethodData: z.ZodObject<{
608
+ body: z.ZodOptional<z.ZodNever>;
609
+ path: z.ZodOptional<z.ZodNever>;
610
+ query: z.ZodOptional<z.ZodNever>;
611
+ }, z.core.$strip>;
612
+ /**
613
+ * Redacted payment card information.
614
+ */
1064
615
  export declare const zGetPaymentMethodResponse: z.ZodObject<{
1065
- id: z.ZodString;
616
+ id: z.ZodUUID;
1066
617
  setup: z.ZodBoolean;
1067
- type: z.ZodEnum<["card"]>;
618
+ type: z.ZodEnum<{
619
+ card: "card";
620
+ }>;
1068
621
  last4: z.ZodString;
1069
- exp_month: z.ZodNumber;
1070
- exp_year: z.ZodNumber;
1071
- brand: z.ZodEnum<["amex", "diners", "discover", "eftpos_au", "jcb", "mastercard", "unionpay", "visa", "unknown"]>;
1072
- }, "strip", z.ZodTypeAny, {
1073
- type: "card";
1074
- id: string;
1075
- setup: boolean;
1076
- last4: string;
1077
- exp_month: number;
1078
- exp_year: number;
1079
- brand: "unknown" | "amex" | "diners" | "discover" | "eftpos_au" | "jcb" | "mastercard" | "unionpay" | "visa";
1080
- }, {
1081
- type: "card";
1082
- id: string;
1083
- setup: boolean;
1084
- last4: string;
1085
- exp_month: number;
1086
- exp_year: number;
1087
- brand: "unknown" | "amex" | "diners" | "discover" | "eftpos_au" | "jcb" | "mastercard" | "unionpay" | "visa";
1088
- }>;
622
+ exp_month: z.ZodInt;
623
+ exp_year: z.ZodInt;
624
+ brand: z.ZodEnum<{
625
+ unknown: "unknown";
626
+ amex: "amex";
627
+ diners: "diners";
628
+ discover: "discover";
629
+ eftpos_au: "eftpos_au";
630
+ jcb: "jcb";
631
+ mastercard: "mastercard";
632
+ unionpay: "unionpay";
633
+ visa: "visa";
634
+ }>;
635
+ }, z.core.$strip>;
636
+ export declare const zGetPaymentMethodSecretData: z.ZodObject<{
637
+ body: z.ZodOptional<z.ZodNever>;
638
+ path: z.ZodOptional<z.ZodNever>;
639
+ query: z.ZodOptional<z.ZodNever>;
640
+ }, z.core.$strip>;
641
+ /**
642
+ * The client secret. Used for client-side retrieval using a publishable key. The client secret can be used to complete a payment from your frontend. It should not be stored, logged, or exposed to anyone other than the customer. Make sure that you have TLS enabled on any page that includes the client secret.
643
+ *
644
+ */
1089
645
  export declare const zGetPaymentMethodSecretResponse: z.ZodObject<{
1090
646
  id: z.ZodOptional<z.ZodString>;
1091
- }, "strip", z.ZodTypeAny, {
1092
- id?: string | undefined;
1093
- }, {
1094
- id?: string | undefined;
1095
- }>;
647
+ }, z.core.$strip>;
648
+ export declare const zListInvoicesData: z.ZodObject<{
649
+ body: z.ZodOptional<z.ZodNever>;
650
+ path: z.ZodOptional<z.ZodNever>;
651
+ query: z.ZodOptional<z.ZodNever>;
652
+ }, z.core.$strip>;
653
+ /**
654
+ * An array of usage records.
655
+ */
1096
656
  export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
1097
657
  id: z.ZodOptional<z.ZodString>;
1098
- organizationId: z.ZodOptional<z.ZodString>;
1099
- status: z.ZodOptional<z.ZodEnum<["DRAFT", "COMMITTED", "VOID"]>>;
1100
- amount: z.ZodOptional<z.ZodNumber>;
1101
- 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"]>>;
1102
- creditAdj: z.ZodOptional<z.ZodNumber>;
1103
- refundAdj: z.ZodOptional<z.ZodNumber>;
1104
- invoiceDate: z.ZodOptional<z.ZodString>;
1105
- targetDate: z.ZodOptional<z.ZodString>;
1106
- invoiceNumber: z.ZodOptional<z.ZodString>;
1107
- balance: z.ZodOptional<z.ZodNumber>;
1108
- bundleKeys: z.ZodOptional<z.ZodString>;
1109
- credits: z.ZodOptional<z.ZodArray<z.ZodObject<{
1110
- id: z.ZodOptional<z.ZodString>;
1111
- linkedInvoiceItemId: z.ZodOptional<z.ZodString>;
1112
- productName: z.ZodOptional<z.ZodString>;
1113
- planName: z.ZodOptional<z.ZodString>;
1114
- phaseName: z.ZodOptional<z.ZodString>;
1115
- usageName: z.ZodOptional<z.ZodString>;
1116
- prettyProductName: z.ZodOptional<z.ZodString>;
1117
- prettyPlanName: z.ZodOptional<z.ZodString>;
1118
- prettyPhaseName: z.ZodOptional<z.ZodString>;
1119
- prettyUsageName: z.ZodOptional<z.ZodString>;
1120
- itemType: z.ZodOptional<z.ZodEnum<["EXTERNAL_CHARGE", "FIXED", "RECURRING", "REPAIR_ADJ", "CBA_ADJ", "CREDIT_ADJ", "ITEM_ADJ", "USAGE", "TAX", "PARENT_SUMMARY"]>>;
1121
- description: z.ZodOptional<z.ZodString>;
1122
- startDate: z.ZodOptional<z.ZodString>;
1123
- endDate: z.ZodOptional<z.ZodString>;
1124
- amount: z.ZodOptional<z.ZodNumber>;
1125
- rate: z.ZodOptional<z.ZodNumber>;
1126
- 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"]>>;
1127
- quantity: z.ZodOptional<z.ZodNumber>;
1128
- itemDetails: z.ZodOptional<z.ZodString>;
1129
- catalogEffectiveDate: z.ZodOptional<z.ZodString>;
1130
- childItems: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
1131
- }, "strip", z.ZodTypeAny, {
1132
- 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;
1133
- id?: string | undefined;
1134
- description?: string | undefined;
1135
- amount?: number | undefined;
1136
- linkedInvoiceItemId?: string | undefined;
1137
- productName?: string | undefined;
1138
- planName?: string | undefined;
1139
- phaseName?: string | undefined;
1140
- usageName?: string | undefined;
1141
- prettyProductName?: string | undefined;
1142
- prettyPlanName?: string | undefined;
1143
- prettyPhaseName?: string | undefined;
1144
- prettyUsageName?: string | undefined;
1145
- itemType?: "EXTERNAL_CHARGE" | "FIXED" | "RECURRING" | "REPAIR_ADJ" | "CBA_ADJ" | "CREDIT_ADJ" | "ITEM_ADJ" | "USAGE" | "TAX" | "PARENT_SUMMARY" | undefined;
1146
- startDate?: string | undefined;
1147
- endDate?: string | undefined;
1148
- rate?: number | undefined;
1149
- quantity?: number | undefined;
1150
- itemDetails?: string | undefined;
1151
- catalogEffectiveDate?: string | undefined;
1152
- childItems?: unknown[] | undefined;
1153
- }, {
1154
- 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;
1155
- id?: string | undefined;
1156
- description?: string | undefined;
1157
- amount?: number | undefined;
1158
- linkedInvoiceItemId?: string | undefined;
1159
- productName?: string | undefined;
1160
- planName?: string | undefined;
1161
- phaseName?: string | undefined;
1162
- usageName?: string | undefined;
1163
- prettyProductName?: string | undefined;
1164
- prettyPlanName?: string | undefined;
1165
- prettyPhaseName?: string | undefined;
1166
- prettyUsageName?: string | undefined;
1167
- itemType?: "EXTERNAL_CHARGE" | "FIXED" | "RECURRING" | "REPAIR_ADJ" | "CBA_ADJ" | "CREDIT_ADJ" | "ITEM_ADJ" | "USAGE" | "TAX" | "PARENT_SUMMARY" | undefined;
1168
- startDate?: string | undefined;
1169
- endDate?: string | undefined;
1170
- rate?: number | undefined;
1171
- quantity?: number | undefined;
1172
- itemDetails?: string | undefined;
1173
- catalogEffectiveDate?: string | undefined;
1174
- childItems?: unknown[] | undefined;
1175
- }>, "many">>;
1176
- items: z.ZodOptional<z.ZodArray<z.ZodObject<{
1177
- id: z.ZodOptional<z.ZodString>;
1178
- linkedInvoiceItemId: z.ZodOptional<z.ZodString>;
1179
- productName: z.ZodOptional<z.ZodString>;
1180
- planName: z.ZodOptional<z.ZodString>;
1181
- phaseName: z.ZodOptional<z.ZodString>;
1182
- usageName: z.ZodOptional<z.ZodString>;
1183
- prettyProductName: z.ZodOptional<z.ZodString>;
1184
- prettyPlanName: z.ZodOptional<z.ZodString>;
1185
- prettyPhaseName: z.ZodOptional<z.ZodString>;
1186
- prettyUsageName: z.ZodOptional<z.ZodString>;
1187
- itemType: z.ZodOptional<z.ZodEnum<["EXTERNAL_CHARGE", "FIXED", "RECURRING", "REPAIR_ADJ", "CBA_ADJ", "CREDIT_ADJ", "ITEM_ADJ", "USAGE", "TAX", "PARENT_SUMMARY"]>>;
1188
- description: z.ZodOptional<z.ZodString>;
1189
- startDate: z.ZodOptional<z.ZodString>;
1190
- endDate: z.ZodOptional<z.ZodString>;
1191
- amount: z.ZodOptional<z.ZodNumber>;
1192
- rate: z.ZodOptional<z.ZodNumber>;
1193
- 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"]>>;
1194
- quantity: z.ZodOptional<z.ZodNumber>;
1195
- itemDetails: z.ZodOptional<z.ZodString>;
1196
- catalogEffectiveDate: z.ZodOptional<z.ZodString>;
1197
- childItems: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
1198
- }, "strip", z.ZodTypeAny, {
1199
- 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;
1200
- id?: string | undefined;
1201
- description?: string | undefined;
1202
- amount?: number | undefined;
1203
- linkedInvoiceItemId?: string | undefined;
1204
- productName?: string | undefined;
1205
- planName?: string | undefined;
1206
- phaseName?: string | undefined;
1207
- usageName?: string | undefined;
1208
- prettyProductName?: string | undefined;
1209
- prettyPlanName?: string | undefined;
1210
- prettyPhaseName?: string | undefined;
1211
- prettyUsageName?: string | undefined;
1212
- itemType?: "EXTERNAL_CHARGE" | "FIXED" | "RECURRING" | "REPAIR_ADJ" | "CBA_ADJ" | "CREDIT_ADJ" | "ITEM_ADJ" | "USAGE" | "TAX" | "PARENT_SUMMARY" | undefined;
1213
- startDate?: string | undefined;
1214
- endDate?: string | undefined;
1215
- rate?: number | undefined;
1216
- quantity?: number | undefined;
1217
- itemDetails?: string | undefined;
1218
- catalogEffectiveDate?: string | undefined;
1219
- childItems?: unknown[] | undefined;
1220
- }, {
1221
- 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;
1222
- id?: string | undefined;
1223
- description?: string | undefined;
1224
- amount?: number | undefined;
1225
- linkedInvoiceItemId?: string | undefined;
1226
- productName?: string | undefined;
1227
- planName?: string | undefined;
1228
- phaseName?: string | undefined;
1229
- usageName?: string | undefined;
1230
- prettyProductName?: string | undefined;
1231
- prettyPlanName?: string | undefined;
1232
- prettyPhaseName?: string | undefined;
1233
- prettyUsageName?: string | undefined;
1234
- itemType?: "EXTERNAL_CHARGE" | "FIXED" | "RECURRING" | "REPAIR_ADJ" | "CBA_ADJ" | "CREDIT_ADJ" | "ITEM_ADJ" | "USAGE" | "TAX" | "PARENT_SUMMARY" | undefined;
1235
- startDate?: string | undefined;
1236
- endDate?: string | undefined;
1237
- rate?: number | undefined;
1238
- quantity?: number | undefined;
1239
- itemDetails?: string | undefined;
1240
- catalogEffectiveDate?: string | undefined;
1241
- childItems?: unknown[] | undefined;
1242
- }>, "many">>;
1243
- }, "strip", z.ZodTypeAny, {
1244
- 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;
1245
- id?: string | undefined;
1246
- status?: "DRAFT" | "COMMITTED" | "VOID" | undefined;
1247
- items?: {
1248
- 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;
1249
- id?: string | undefined;
1250
- description?: string | undefined;
1251
- amount?: number | undefined;
1252
- linkedInvoiceItemId?: string | undefined;
1253
- productName?: string | undefined;
1254
- planName?: string | undefined;
1255
- phaseName?: string | undefined;
1256
- usageName?: string | undefined;
1257
- prettyProductName?: string | undefined;
1258
- prettyPlanName?: string | undefined;
1259
- prettyPhaseName?: string | undefined;
1260
- prettyUsageName?: string | undefined;
1261
- itemType?: "EXTERNAL_CHARGE" | "FIXED" | "RECURRING" | "REPAIR_ADJ" | "CBA_ADJ" | "CREDIT_ADJ" | "ITEM_ADJ" | "USAGE" | "TAX" | "PARENT_SUMMARY" | undefined;
1262
- startDate?: string | undefined;
1263
- endDate?: string | undefined;
1264
- rate?: number | undefined;
1265
- quantity?: number | undefined;
1266
- itemDetails?: string | undefined;
1267
- catalogEffectiveDate?: string | undefined;
1268
- childItems?: unknown[] | undefined;
1269
- }[] | undefined;
1270
- organizationId?: string | undefined;
1271
- amount?: number | undefined;
1272
- creditAdj?: number | undefined;
1273
- refundAdj?: number | undefined;
1274
- invoiceDate?: string | undefined;
1275
- targetDate?: string | undefined;
1276
- invoiceNumber?: string | undefined;
1277
- balance?: number | undefined;
1278
- bundleKeys?: string | undefined;
1279
- credits?: {
1280
- 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;
1281
- id?: string | undefined;
1282
- description?: string | undefined;
1283
- amount?: number | undefined;
1284
- linkedInvoiceItemId?: string | undefined;
1285
- productName?: string | undefined;
1286
- planName?: string | undefined;
1287
- phaseName?: string | undefined;
1288
- usageName?: string | undefined;
1289
- prettyProductName?: string | undefined;
1290
- prettyPlanName?: string | undefined;
1291
- prettyPhaseName?: string | undefined;
1292
- prettyUsageName?: string | undefined;
1293
- itemType?: "EXTERNAL_CHARGE" | "FIXED" | "RECURRING" | "REPAIR_ADJ" | "CBA_ADJ" | "CREDIT_ADJ" | "ITEM_ADJ" | "USAGE" | "TAX" | "PARENT_SUMMARY" | undefined;
1294
- startDate?: string | undefined;
1295
- endDate?: string | undefined;
1296
- rate?: number | undefined;
1297
- quantity?: number | undefined;
1298
- itemDetails?: string | undefined;
1299
- catalogEffectiveDate?: string | undefined;
1300
- childItems?: unknown[] | undefined;
1301
- }[] | undefined;
1302
- }, {
1303
- 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;
1304
- id?: string | undefined;
1305
- status?: "DRAFT" | "COMMITTED" | "VOID" | undefined;
1306
- items?: {
1307
- 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;
1308
- id?: string | undefined;
1309
- description?: string | undefined;
1310
- amount?: number | undefined;
1311
- linkedInvoiceItemId?: string | undefined;
1312
- productName?: string | undefined;
1313
- planName?: string | undefined;
1314
- phaseName?: string | undefined;
1315
- usageName?: string | undefined;
1316
- prettyProductName?: string | undefined;
1317
- prettyPlanName?: string | undefined;
1318
- prettyPhaseName?: string | undefined;
1319
- prettyUsageName?: string | undefined;
1320
- itemType?: "EXTERNAL_CHARGE" | "FIXED" | "RECURRING" | "REPAIR_ADJ" | "CBA_ADJ" | "CREDIT_ADJ" | "ITEM_ADJ" | "USAGE" | "TAX" | "PARENT_SUMMARY" | undefined;
1321
- startDate?: string | undefined;
1322
- endDate?: string | undefined;
1323
- rate?: number | undefined;
1324
- quantity?: number | undefined;
1325
- itemDetails?: string | undefined;
1326
- catalogEffectiveDate?: string | undefined;
1327
- childItems?: unknown[] | undefined;
1328
- }[] | undefined;
1329
- organizationId?: string | undefined;
1330
- amount?: number | undefined;
1331
- creditAdj?: number | undefined;
1332
- refundAdj?: number | undefined;
1333
- invoiceDate?: string | undefined;
1334
- targetDate?: string | undefined;
1335
- invoiceNumber?: string | undefined;
1336
- balance?: number | undefined;
1337
- bundleKeys?: string | undefined;
1338
- credits?: {
1339
- currency?: "AED" | "AFN" | "ALL" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BRL" | "BSD" | "BTN" | "BWP" | "BYR" | "BZD" | "CAD" | "CDF" | "CHF" | "CLP" | "CNY" | "COP" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GGP" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "IMP" | "INR" | "IQD" | "IRR" | "ISK" | "JEP" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LTL" | "LVL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRO" | "MUR" | "MVR" | "MWK" | "MXN" | "MYR" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SPL" | "SRD" | "STD" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TVD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "UYU" | "UZS" | "VEF" | "VND" | "VUV" | "WST" | "XAF" | "XCD" | "XDR" | "XOF" | "XPF" | "YER" | "ZAR" | "ZMW" | "ZWD" | "BTC" | undefined;
1340
- id?: string | undefined;
1341
- description?: string | undefined;
1342
- amount?: number | undefined;
1343
- linkedInvoiceItemId?: string | undefined;
1344
- productName?: string | undefined;
1345
- planName?: string | undefined;
1346
- phaseName?: string | undefined;
1347
- usageName?: string | undefined;
1348
- prettyProductName?: string | undefined;
1349
- prettyPlanName?: string | undefined;
1350
- prettyPhaseName?: string | undefined;
1351
- prettyUsageName?: string | undefined;
1352
- itemType?: "EXTERNAL_CHARGE" | "FIXED" | "RECURRING" | "REPAIR_ADJ" | "CBA_ADJ" | "CREDIT_ADJ" | "ITEM_ADJ" | "USAGE" | "TAX" | "PARENT_SUMMARY" | undefined;
1353
- startDate?: string | undefined;
1354
- endDate?: string | undefined;
1355
- rate?: number | undefined;
1356
- quantity?: number | undefined;
1357
- itemDetails?: string | undefined;
1358
- catalogEffectiveDate?: string | undefined;
1359
- childItems?: unknown[] | undefined;
1360
- }[] | undefined;
1361
- }>, "many">;
1362
- export declare const zGetInvoiceResponse: z.ZodObject<{
1363
- html: z.ZodOptional<z.ZodString>;
1364
- }, "strip", z.ZodTypeAny, {
1365
- html?: string | undefined;
1366
- }, {
1367
- html?: string | undefined;
1368
- }>;
658
+ number: z.ZodOptional<z.ZodString>;
659
+ status: z.ZodOptional<z.ZodString>;
660
+ total: z.ZodOptional<z.ZodNumber>;
661
+ currency: z.ZodOptional<z.ZodString>;
662
+ created: z.ZodISODateTime;
663
+ period_start: z.ZodISODateTime;
664
+ period_end: z.ZodISODateTime;
665
+ invoice_pdf: z.ZodOptional<z.ZodString>;
666
+ }, z.core.$strip>>;
667
+ export declare const zGetContactData: z.ZodObject<{
668
+ body: z.ZodOptional<z.ZodNever>;
669
+ path: z.ZodOptional<z.ZodNever>;
670
+ query: z.ZodOptional<z.ZodNever>;
671
+ }, z.core.$strip>;
672
+ /**
673
+ * Returns a single object containing organization contact and billing address details.
674
+ */
1369
675
  export declare const zGetContactResponse: z.ZodObject<{
1370
676
  company: z.ZodOptional<z.ZodString>;
1371
677
  address1: z.ZodOptional<z.ZodString>;
@@ -1375,34 +681,290 @@ export declare const zGetContactResponse: z.ZodObject<{
1375
681
  state: z.ZodOptional<z.ZodString>;
1376
682
  country: z.ZodOptional<z.ZodString>;
1377
683
  phone: z.ZodOptional<z.ZodString>;
1378
- email: z.ZodString;
1379
- first_name: z.ZodString;
1380
- last_name: z.ZodString;
1381
- }, "strip", z.ZodTypeAny, {
1382
- email: string;
1383
- first_name: string;
1384
- last_name: string;
1385
- state?: string | undefined;
1386
- country?: string | undefined;
1387
- company?: string | undefined;
1388
- address1?: string | undefined;
1389
- address2?: string | undefined;
1390
- postalCode?: string | undefined;
1391
- city?: string | undefined;
1392
- phone?: string | undefined;
1393
- }, {
1394
- email: string;
1395
- first_name: string;
1396
- last_name: string;
1397
- state?: string | undefined;
1398
- country?: string | undefined;
1399
- company?: string | undefined;
1400
- address1?: string | undefined;
1401
- address2?: string | undefined;
1402
- postalCode?: string | undefined;
1403
- city?: string | undefined;
1404
- phone?: string | undefined;
1405
- }>;
684
+ email: z.ZodEmail;
685
+ individual_name: z.ZodString;
686
+ tax_id: z.ZodOptional<z.ZodString>;
687
+ tax_id_type: z.ZodOptional<z.ZodEnum<{
688
+ "": "";
689
+ ad_nrt: "ad_nrt";
690
+ ae_trn: "ae_trn";
691
+ al_tin: "al_tin";
692
+ am_tin: "am_tin";
693
+ ao_tin: "ao_tin";
694
+ ar_cuit: "ar_cuit";
695
+ at_vat: "at_vat";
696
+ au_abn: "au_abn";
697
+ au_arn: "au_arn";
698
+ ba_tin: "ba_tin";
699
+ bb_tin: "bb_tin";
700
+ be_vat: "be_vat";
701
+ bg_uic: "bg_uic";
702
+ bg_vat: "bg_vat";
703
+ bh_vat: "bh_vat";
704
+ bo_tin: "bo_tin";
705
+ br_cnpj: "br_cnpj";
706
+ br_cpf: "br_cpf";
707
+ bs_tin: "bs_tin";
708
+ by_tin: "by_tin";
709
+ ca_bn: "ca_bn";
710
+ ca_gst_hst: "ca_gst_hst";
711
+ ca_pst_bc: "ca_pst_bc";
712
+ ca_pst_mb: "ca_pst_mb";
713
+ ca_pst_sk: "ca_pst_sk";
714
+ ca_qst: "ca_qst";
715
+ cd_nif: "cd_nif";
716
+ ch_uid: "ch_uid";
717
+ ch_vat: "ch_vat";
718
+ cl_tin: "cl_tin";
719
+ cn_tin: "cn_tin";
720
+ co_nit: "co_nit";
721
+ cr_tin: "cr_tin";
722
+ cy_vat: "cy_vat";
723
+ cz_vat: "cz_vat";
724
+ de_stn: "de_stn";
725
+ de_vat: "de_vat";
726
+ dk_vat: "dk_vat";
727
+ do_rcn: "do_rcn";
728
+ ec_ruc: "ec_ruc";
729
+ ee_vat: "ee_vat";
730
+ eg_tin: "eg_tin";
731
+ es_cif: "es_cif";
732
+ es_vat: "es_vat";
733
+ eu_oss_vat: "eu_oss_vat";
734
+ fi_vat: "fi_vat";
735
+ fr_vat: "fr_vat";
736
+ gb_vat: "gb_vat";
737
+ ge_vat: "ge_vat";
738
+ gn_nif: "gn_nif";
739
+ gr_vat: "gr_vat";
740
+ hk_br: "hk_br";
741
+ hr_oib: "hr_oib";
742
+ hr_vat: "hr_vat";
743
+ hu_tin: "hu_tin";
744
+ hu_vat: "hu_vat";
745
+ id_npwp: "id_npwp";
746
+ ie_vat: "ie_vat";
747
+ il_vat: "il_vat";
748
+ in_gst: "in_gst";
749
+ is_vat: "is_vat";
750
+ it_vat: "it_vat";
751
+ jp_cn: "jp_cn";
752
+ jp_rn: "jp_rn";
753
+ jp_trn: "jp_trn";
754
+ ke_pin: "ke_pin";
755
+ kh_tin: "kh_tin";
756
+ kr_brn: "kr_brn";
757
+ kz_bin: "kz_bin";
758
+ li_uid: "li_uid";
759
+ li_vat: "li_vat";
760
+ lt_vat: "lt_vat";
761
+ lu_vat: "lu_vat";
762
+ lv_vat: "lv_vat";
763
+ ma_vat: "ma_vat";
764
+ md_vat: "md_vat";
765
+ me_pib: "me_pib";
766
+ mk_vat: "mk_vat";
767
+ mr_nif: "mr_nif";
768
+ mt_vat: "mt_vat";
769
+ mx_rfc: "mx_rfc";
770
+ my_frp: "my_frp";
771
+ my_itn: "my_itn";
772
+ my_sst: "my_sst";
773
+ ng_tin: "ng_tin";
774
+ nl_vat: "nl_vat";
775
+ no_vat: "no_vat";
776
+ no_voec: "no_voec";
777
+ np_pan: "np_pan";
778
+ nz_gst: "nz_gst";
779
+ om_vat: "om_vat";
780
+ pe_ruc: "pe_ruc";
781
+ ph_tin: "ph_tin";
782
+ pl_vat: "pl_vat";
783
+ pt_vat: "pt_vat";
784
+ ro_tin: "ro_tin";
785
+ ro_vat: "ro_vat";
786
+ rs_pib: "rs_pib";
787
+ ru_inn: "ru_inn";
788
+ ru_kpp: "ru_kpp";
789
+ sa_vat: "sa_vat";
790
+ se_vat: "se_vat";
791
+ sg_gst: "sg_gst";
792
+ sg_uen: "sg_uen";
793
+ si_tin: "si_tin";
794
+ si_vat: "si_vat";
795
+ sk_vat: "sk_vat";
796
+ sn_ninea: "sn_ninea";
797
+ sr_fin: "sr_fin";
798
+ sv_nit: "sv_nit";
799
+ th_vat: "th_vat";
800
+ tj_tin: "tj_tin";
801
+ tr_tin: "tr_tin";
802
+ tw_vat: "tw_vat";
803
+ tz_vat: "tz_vat";
804
+ ua_vat: "ua_vat";
805
+ ug_tin: "ug_tin";
806
+ us_ein: "us_ein";
807
+ uy_ruc: "uy_ruc";
808
+ uz_tin: "uz_tin";
809
+ uz_vat: "uz_vat";
810
+ ve_rif: "ve_rif";
811
+ vn_tin: "vn_tin";
812
+ xi_vat: "xi_vat";
813
+ za_vat: "za_vat";
814
+ zm_tin: "zm_tin";
815
+ zw_tin: "zw_tin";
816
+ }>>;
817
+ }, z.core.$strip>;
818
+ export declare const zUpdateContactData: z.ZodObject<{
819
+ body: z.ZodObject<{
820
+ company: z.ZodOptional<z.ZodString>;
821
+ address1: z.ZodOptional<z.ZodString>;
822
+ address2: z.ZodOptional<z.ZodString>;
823
+ postalCode: z.ZodOptional<z.ZodString>;
824
+ city: z.ZodOptional<z.ZodString>;
825
+ state: z.ZodOptional<z.ZodString>;
826
+ country: z.ZodOptional<z.ZodString>;
827
+ phone: z.ZodOptional<z.ZodString>;
828
+ email: z.ZodEmail;
829
+ individual_name: z.ZodString;
830
+ tax_id: z.ZodOptional<z.ZodString>;
831
+ tax_id_type: z.ZodOptional<z.ZodEnum<{
832
+ "": "";
833
+ ad_nrt: "ad_nrt";
834
+ ae_trn: "ae_trn";
835
+ al_tin: "al_tin";
836
+ am_tin: "am_tin";
837
+ ao_tin: "ao_tin";
838
+ ar_cuit: "ar_cuit";
839
+ at_vat: "at_vat";
840
+ au_abn: "au_abn";
841
+ au_arn: "au_arn";
842
+ ba_tin: "ba_tin";
843
+ bb_tin: "bb_tin";
844
+ be_vat: "be_vat";
845
+ bg_uic: "bg_uic";
846
+ bg_vat: "bg_vat";
847
+ bh_vat: "bh_vat";
848
+ bo_tin: "bo_tin";
849
+ br_cnpj: "br_cnpj";
850
+ br_cpf: "br_cpf";
851
+ bs_tin: "bs_tin";
852
+ by_tin: "by_tin";
853
+ ca_bn: "ca_bn";
854
+ ca_gst_hst: "ca_gst_hst";
855
+ ca_pst_bc: "ca_pst_bc";
856
+ ca_pst_mb: "ca_pst_mb";
857
+ ca_pst_sk: "ca_pst_sk";
858
+ ca_qst: "ca_qst";
859
+ cd_nif: "cd_nif";
860
+ ch_uid: "ch_uid";
861
+ ch_vat: "ch_vat";
862
+ cl_tin: "cl_tin";
863
+ cn_tin: "cn_tin";
864
+ co_nit: "co_nit";
865
+ cr_tin: "cr_tin";
866
+ cy_vat: "cy_vat";
867
+ cz_vat: "cz_vat";
868
+ de_stn: "de_stn";
869
+ de_vat: "de_vat";
870
+ dk_vat: "dk_vat";
871
+ do_rcn: "do_rcn";
872
+ ec_ruc: "ec_ruc";
873
+ ee_vat: "ee_vat";
874
+ eg_tin: "eg_tin";
875
+ es_cif: "es_cif";
876
+ es_vat: "es_vat";
877
+ eu_oss_vat: "eu_oss_vat";
878
+ fi_vat: "fi_vat";
879
+ fr_vat: "fr_vat";
880
+ gb_vat: "gb_vat";
881
+ ge_vat: "ge_vat";
882
+ gn_nif: "gn_nif";
883
+ gr_vat: "gr_vat";
884
+ hk_br: "hk_br";
885
+ hr_oib: "hr_oib";
886
+ hr_vat: "hr_vat";
887
+ hu_tin: "hu_tin";
888
+ hu_vat: "hu_vat";
889
+ id_npwp: "id_npwp";
890
+ ie_vat: "ie_vat";
891
+ il_vat: "il_vat";
892
+ in_gst: "in_gst";
893
+ is_vat: "is_vat";
894
+ it_vat: "it_vat";
895
+ jp_cn: "jp_cn";
896
+ jp_rn: "jp_rn";
897
+ jp_trn: "jp_trn";
898
+ ke_pin: "ke_pin";
899
+ kh_tin: "kh_tin";
900
+ kr_brn: "kr_brn";
901
+ kz_bin: "kz_bin";
902
+ li_uid: "li_uid";
903
+ li_vat: "li_vat";
904
+ lt_vat: "lt_vat";
905
+ lu_vat: "lu_vat";
906
+ lv_vat: "lv_vat";
907
+ ma_vat: "ma_vat";
908
+ md_vat: "md_vat";
909
+ me_pib: "me_pib";
910
+ mk_vat: "mk_vat";
911
+ mr_nif: "mr_nif";
912
+ mt_vat: "mt_vat";
913
+ mx_rfc: "mx_rfc";
914
+ my_frp: "my_frp";
915
+ my_itn: "my_itn";
916
+ my_sst: "my_sst";
917
+ ng_tin: "ng_tin";
918
+ nl_vat: "nl_vat";
919
+ no_vat: "no_vat";
920
+ no_voec: "no_voec";
921
+ np_pan: "np_pan";
922
+ nz_gst: "nz_gst";
923
+ om_vat: "om_vat";
924
+ pe_ruc: "pe_ruc";
925
+ ph_tin: "ph_tin";
926
+ pl_vat: "pl_vat";
927
+ pt_vat: "pt_vat";
928
+ ro_tin: "ro_tin";
929
+ ro_vat: "ro_vat";
930
+ rs_pib: "rs_pib";
931
+ ru_inn: "ru_inn";
932
+ ru_kpp: "ru_kpp";
933
+ sa_vat: "sa_vat";
934
+ se_vat: "se_vat";
935
+ sg_gst: "sg_gst";
936
+ sg_uen: "sg_uen";
937
+ si_tin: "si_tin";
938
+ si_vat: "si_vat";
939
+ sk_vat: "sk_vat";
940
+ sn_ninea: "sn_ninea";
941
+ sr_fin: "sr_fin";
942
+ sv_nit: "sv_nit";
943
+ th_vat: "th_vat";
944
+ tj_tin: "tj_tin";
945
+ tr_tin: "tr_tin";
946
+ tw_vat: "tw_vat";
947
+ tz_vat: "tz_vat";
948
+ ua_vat: "ua_vat";
949
+ ug_tin: "ug_tin";
950
+ us_ein: "us_ein";
951
+ uy_ruc: "uy_ruc";
952
+ uz_tin: "uz_tin";
953
+ uz_vat: "uz_vat";
954
+ ve_rif: "ve_rif";
955
+ vn_tin: "vn_tin";
956
+ xi_vat: "xi_vat";
957
+ za_vat: "za_vat";
958
+ zm_tin: "zm_tin";
959
+ zw_tin: "zw_tin";
960
+ }>>;
961
+ }, z.core.$strip>;
962
+ path: z.ZodOptional<z.ZodNever>;
963
+ query: z.ZodOptional<z.ZodNever>;
964
+ }, z.core.$strip>;
965
+ /**
966
+ * Successfully updated. Returns updated organization details.
967
+ */
1406
968
  export declare const zUpdateContactResponse: z.ZodObject<{
1407
969
  company: z.ZodOptional<z.ZodString>;
1408
970
  address1: z.ZodOptional<z.ZodString>;
@@ -1412,789 +974,1144 @@ export declare const zUpdateContactResponse: z.ZodObject<{
1412
974
  state: z.ZodOptional<z.ZodString>;
1413
975
  country: z.ZodOptional<z.ZodString>;
1414
976
  phone: z.ZodOptional<z.ZodString>;
1415
- email: z.ZodString;
1416
- first_name: z.ZodString;
1417
- last_name: z.ZodString;
1418
- }, "strip", z.ZodTypeAny, {
1419
- email: string;
1420
- first_name: string;
1421
- last_name: string;
1422
- state?: string | undefined;
1423
- country?: string | undefined;
1424
- company?: string | undefined;
1425
- address1?: string | undefined;
1426
- address2?: string | undefined;
1427
- postalCode?: string | undefined;
1428
- city?: string | undefined;
1429
- phone?: string | undefined;
1430
- }, {
1431
- email: string;
1432
- first_name: string;
1433
- last_name: string;
1434
- state?: string | undefined;
1435
- country?: string | undefined;
1436
- company?: string | undefined;
1437
- address1?: string | undefined;
1438
- address2?: string | undefined;
1439
- postalCode?: string | undefined;
1440
- city?: string | undefined;
1441
- phone?: string | undefined;
1442
- }>;
977
+ email: z.ZodEmail;
978
+ individual_name: z.ZodString;
979
+ tax_id: z.ZodOptional<z.ZodString>;
980
+ tax_id_type: z.ZodOptional<z.ZodEnum<{
981
+ "": "";
982
+ ad_nrt: "ad_nrt";
983
+ ae_trn: "ae_trn";
984
+ al_tin: "al_tin";
985
+ am_tin: "am_tin";
986
+ ao_tin: "ao_tin";
987
+ ar_cuit: "ar_cuit";
988
+ at_vat: "at_vat";
989
+ au_abn: "au_abn";
990
+ au_arn: "au_arn";
991
+ ba_tin: "ba_tin";
992
+ bb_tin: "bb_tin";
993
+ be_vat: "be_vat";
994
+ bg_uic: "bg_uic";
995
+ bg_vat: "bg_vat";
996
+ bh_vat: "bh_vat";
997
+ bo_tin: "bo_tin";
998
+ br_cnpj: "br_cnpj";
999
+ br_cpf: "br_cpf";
1000
+ bs_tin: "bs_tin";
1001
+ by_tin: "by_tin";
1002
+ ca_bn: "ca_bn";
1003
+ ca_gst_hst: "ca_gst_hst";
1004
+ ca_pst_bc: "ca_pst_bc";
1005
+ ca_pst_mb: "ca_pst_mb";
1006
+ ca_pst_sk: "ca_pst_sk";
1007
+ ca_qst: "ca_qst";
1008
+ cd_nif: "cd_nif";
1009
+ ch_uid: "ch_uid";
1010
+ ch_vat: "ch_vat";
1011
+ cl_tin: "cl_tin";
1012
+ cn_tin: "cn_tin";
1013
+ co_nit: "co_nit";
1014
+ cr_tin: "cr_tin";
1015
+ cy_vat: "cy_vat";
1016
+ cz_vat: "cz_vat";
1017
+ de_stn: "de_stn";
1018
+ de_vat: "de_vat";
1019
+ dk_vat: "dk_vat";
1020
+ do_rcn: "do_rcn";
1021
+ ec_ruc: "ec_ruc";
1022
+ ee_vat: "ee_vat";
1023
+ eg_tin: "eg_tin";
1024
+ es_cif: "es_cif";
1025
+ es_vat: "es_vat";
1026
+ eu_oss_vat: "eu_oss_vat";
1027
+ fi_vat: "fi_vat";
1028
+ fr_vat: "fr_vat";
1029
+ gb_vat: "gb_vat";
1030
+ ge_vat: "ge_vat";
1031
+ gn_nif: "gn_nif";
1032
+ gr_vat: "gr_vat";
1033
+ hk_br: "hk_br";
1034
+ hr_oib: "hr_oib";
1035
+ hr_vat: "hr_vat";
1036
+ hu_tin: "hu_tin";
1037
+ hu_vat: "hu_vat";
1038
+ id_npwp: "id_npwp";
1039
+ ie_vat: "ie_vat";
1040
+ il_vat: "il_vat";
1041
+ in_gst: "in_gst";
1042
+ is_vat: "is_vat";
1043
+ it_vat: "it_vat";
1044
+ jp_cn: "jp_cn";
1045
+ jp_rn: "jp_rn";
1046
+ jp_trn: "jp_trn";
1047
+ ke_pin: "ke_pin";
1048
+ kh_tin: "kh_tin";
1049
+ kr_brn: "kr_brn";
1050
+ kz_bin: "kz_bin";
1051
+ li_uid: "li_uid";
1052
+ li_vat: "li_vat";
1053
+ lt_vat: "lt_vat";
1054
+ lu_vat: "lu_vat";
1055
+ lv_vat: "lv_vat";
1056
+ ma_vat: "ma_vat";
1057
+ md_vat: "md_vat";
1058
+ me_pib: "me_pib";
1059
+ mk_vat: "mk_vat";
1060
+ mr_nif: "mr_nif";
1061
+ mt_vat: "mt_vat";
1062
+ mx_rfc: "mx_rfc";
1063
+ my_frp: "my_frp";
1064
+ my_itn: "my_itn";
1065
+ my_sst: "my_sst";
1066
+ ng_tin: "ng_tin";
1067
+ nl_vat: "nl_vat";
1068
+ no_vat: "no_vat";
1069
+ no_voec: "no_voec";
1070
+ np_pan: "np_pan";
1071
+ nz_gst: "nz_gst";
1072
+ om_vat: "om_vat";
1073
+ pe_ruc: "pe_ruc";
1074
+ ph_tin: "ph_tin";
1075
+ pl_vat: "pl_vat";
1076
+ pt_vat: "pt_vat";
1077
+ ro_tin: "ro_tin";
1078
+ ro_vat: "ro_vat";
1079
+ rs_pib: "rs_pib";
1080
+ ru_inn: "ru_inn";
1081
+ ru_kpp: "ru_kpp";
1082
+ sa_vat: "sa_vat";
1083
+ se_vat: "se_vat";
1084
+ sg_gst: "sg_gst";
1085
+ sg_uen: "sg_uen";
1086
+ si_tin: "si_tin";
1087
+ si_vat: "si_vat";
1088
+ sk_vat: "sk_vat";
1089
+ sn_ninea: "sn_ninea";
1090
+ sr_fin: "sr_fin";
1091
+ sv_nit: "sv_nit";
1092
+ th_vat: "th_vat";
1093
+ tj_tin: "tj_tin";
1094
+ tr_tin: "tr_tin";
1095
+ tw_vat: "tw_vat";
1096
+ tz_vat: "tz_vat";
1097
+ ua_vat: "ua_vat";
1098
+ ug_tin: "ug_tin";
1099
+ us_ein: "us_ein";
1100
+ uy_ruc: "uy_ruc";
1101
+ uz_tin: "uz_tin";
1102
+ uz_vat: "uz_vat";
1103
+ ve_rif: "ve_rif";
1104
+ vn_tin: "vn_tin";
1105
+ xi_vat: "xi_vat";
1106
+ za_vat: "za_vat";
1107
+ zm_tin: "zm_tin";
1108
+ zw_tin: "zw_tin";
1109
+ }>>;
1110
+ }, z.core.$strip>;
1111
+ export declare const zGetCreditsData: z.ZodObject<{
1112
+ body: z.ZodOptional<z.ZodNever>;
1113
+ path: z.ZodOptional<z.ZodNever>;
1114
+ query: z.ZodOptional<z.ZodNever>;
1115
+ }, z.core.$strip>;
1116
+ /**
1117
+ * An array of the applied promotional credits records.
1118
+ */
1443
1119
  export declare const zGetCreditsResponse: z.ZodArray<z.ZodObject<{
1444
1120
  id: z.ZodOptional<z.ZodString>;
1445
- date_created: z.ZodString;
1121
+ type: z.ZodEnum<{
1122
+ credit: "credit";
1123
+ discount: "discount";
1124
+ }>;
1125
+ date_start: z.ZodISODateTime;
1126
+ date_end: z.ZodOptional<z.ZodISODateTime>;
1446
1127
  code: z.ZodString;
1447
1128
  description: z.ZodOptional<z.ZodString>;
1448
- products: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1449
- type: z.ZodEnum<["credit", "discount"]>;
1450
- value: z.ZodNumber;
1451
- billing_period: z.ZodString;
1129
+ value_total: z.ZodNumber;
1452
1130
  value_remaining: z.ZodOptional<z.ZodNumber>;
1453
- }, "strip", z.ZodTypeAny, {
1454
- code: string;
1455
- type: "credit" | "discount";
1456
- value: number;
1457
- date_created: string;
1458
- billing_period: string;
1459
- id?: string | undefined;
1460
- description?: string | undefined;
1461
- products?: string[] | undefined;
1462
- value_remaining?: number | undefined;
1463
- }, {
1464
- code: string;
1465
- type: "credit" | "discount";
1466
- value: number;
1467
- date_created: string;
1468
- billing_period: string;
1469
- id?: string | undefined;
1470
- description?: string | undefined;
1471
- products?: string[] | undefined;
1472
- value_remaining?: number | undefined;
1473
- }>, "many">;
1131
+ }, z.core.$strip>>;
1132
+ export declare const zRedeemCreditsData: z.ZodObject<{
1133
+ body: z.ZodObject<{
1134
+ code: z.ZodOptional<z.ZodString>;
1135
+ }, z.core.$strip>;
1136
+ path: z.ZodOptional<z.ZodNever>;
1137
+ query: z.ZodOptional<z.ZodNever>;
1138
+ }, z.core.$strip>;
1139
+ export declare const zListChartsData: z.ZodObject<{
1140
+ body: z.ZodOptional<z.ZodNever>;
1141
+ path: z.ZodObject<{
1142
+ cluster_id: z.ZodString;
1143
+ }, z.core.$strip>;
1144
+ query: z.ZodOptional<z.ZodNever>;
1145
+ }, z.core.$strip>;
1146
+ /**
1147
+ * An array of charts
1148
+ */
1149
+ export declare const zListChartsResponse: z.ZodArray<z.ZodObject<{
1150
+ values: z.ZodString;
1151
+ version_channel: z.ZodString;
1152
+ name: z.ZodString;
1153
+ namespace: z.ZodString;
1154
+ chart: z.ZodString;
1155
+ status: z.ZodEnum<{
1156
+ InstallSucceeded: "InstallSucceeded";
1157
+ InstallFailed: "InstallFailed";
1158
+ UpgradeSucceeded: "UpgradeSucceeded";
1159
+ UpgradeFailed: "UpgradeFailed";
1160
+ TestSucceeded: "TestSucceeded";
1161
+ TestFailed: "TestFailed";
1162
+ RollbackSucceeded: "RollbackSucceeded";
1163
+ RollbackFailed: "RollbackFailed";
1164
+ UninstallSucceeded: "UninstallSucceeded";
1165
+ UninstallFailed: "UninstallFailed";
1166
+ ArtifactFailed: "ArtifactFailed";
1167
+ DependencyNotReady: "DependencyNotReady";
1168
+ Progressing: "Progressing";
1169
+ SourceNotReady: "SourceNotReady";
1170
+ }>;
1171
+ version_current: z.ZodString;
1172
+ created_at: z.ZodString;
1173
+ updated_at: z.ZodString;
1174
+ ready: z.ZodBoolean;
1175
+ }, z.core.$strip>>;
1176
+ export declare const zCreateChartData: z.ZodObject<{
1177
+ body: z.ZodObject<{
1178
+ values: z.ZodString;
1179
+ version_channel: z.ZodString;
1180
+ name: z.ZodString;
1181
+ namespace: z.ZodString;
1182
+ chart: z.ZodString;
1183
+ }, z.core.$strip>;
1184
+ path: z.ZodObject<{
1185
+ cluster_id: z.ZodString;
1186
+ }, z.core.$strip>;
1187
+ query: z.ZodOptional<z.ZodNever>;
1188
+ }, z.core.$strip>;
1189
+ /**
1190
+ * Successfully created. Returns created Chart ID.
1191
+ */
1192
+ export declare const zCreateChartResponse: z.ZodString;
1193
+ export declare const zDeleteChartData: z.ZodObject<{
1194
+ body: z.ZodOptional<z.ZodNever>;
1195
+ path: z.ZodObject<{
1196
+ cluster_id: z.ZodString;
1197
+ chart_name: z.ZodString;
1198
+ }, z.core.$strip>;
1199
+ query: z.ZodOptional<z.ZodNever>;
1200
+ }, z.core.$strip>;
1201
+ /**
1202
+ * Successfully deleted.
1203
+ */
1204
+ export declare const zDeleteChartResponse: z.ZodString;
1205
+ export declare const zGetChartData: z.ZodObject<{
1206
+ body: z.ZodOptional<z.ZodNever>;
1207
+ path: z.ZodObject<{
1208
+ cluster_id: z.ZodString;
1209
+ chart_name: z.ZodString;
1210
+ }, z.core.$strip>;
1211
+ query: z.ZodOptional<z.ZodNever>;
1212
+ }, z.core.$strip>;
1213
+ /**
1214
+ * Returns a single object containing chart details.
1215
+ */
1216
+ export declare const zGetChartResponse: z.ZodObject<{
1217
+ values: z.ZodString;
1218
+ version_channel: z.ZodString;
1219
+ name: z.ZodString;
1220
+ namespace: z.ZodString;
1221
+ chart: z.ZodString;
1222
+ status: z.ZodEnum<{
1223
+ InstallSucceeded: "InstallSucceeded";
1224
+ InstallFailed: "InstallFailed";
1225
+ UpgradeSucceeded: "UpgradeSucceeded";
1226
+ UpgradeFailed: "UpgradeFailed";
1227
+ TestSucceeded: "TestSucceeded";
1228
+ TestFailed: "TestFailed";
1229
+ RollbackSucceeded: "RollbackSucceeded";
1230
+ RollbackFailed: "RollbackFailed";
1231
+ UninstallSucceeded: "UninstallSucceeded";
1232
+ UninstallFailed: "UninstallFailed";
1233
+ ArtifactFailed: "ArtifactFailed";
1234
+ DependencyNotReady: "DependencyNotReady";
1235
+ Progressing: "Progressing";
1236
+ SourceNotReady: "SourceNotReady";
1237
+ }>;
1238
+ version_current: z.ZodString;
1239
+ created_at: z.ZodString;
1240
+ updated_at: z.ZodString;
1241
+ ready: z.ZodBoolean;
1242
+ }, z.core.$strip>;
1243
+ export declare const zUpdateChartData: z.ZodObject<{
1244
+ body: z.ZodObject<{
1245
+ values: z.ZodString;
1246
+ version_channel: z.ZodString;
1247
+ }, z.core.$strip>;
1248
+ path: z.ZodObject<{
1249
+ cluster_id: z.ZodString;
1250
+ chart_name: z.ZodString;
1251
+ }, z.core.$strip>;
1252
+ query: z.ZodOptional<z.ZodNever>;
1253
+ }, z.core.$strip>;
1254
+ /**
1255
+ * Successfully updated.
1256
+ */
1257
+ export declare const zUpdateChartResponse: z.ZodString;
1258
+ export declare const zListFleetsData: z.ZodObject<{
1259
+ body: z.ZodOptional<z.ZodNever>;
1260
+ path: z.ZodObject<{
1261
+ cluster_id: z.ZodString;
1262
+ }, z.core.$strip>;
1263
+ query: z.ZodOptional<z.ZodNever>;
1264
+ }, z.core.$strip>;
1265
+ /**
1266
+ * An array of fleets
1267
+ */
1474
1268
  export declare const zListFleetsResponse: z.ZodArray<z.ZodObject<{
1475
1269
  limits: z.ZodOptional<z.ZodObject<{
1476
1270
  cpu: z.ZodNumber;
1477
- }, "strip", z.ZodTypeAny, {
1478
- cpu: number;
1479
- }, {
1480
- cpu: number;
1481
- }>>;
1271
+ }, z.core.$strip>>;
1482
1272
  gcp: z.ZodOptional<z.ZodObject<{
1483
1273
  enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1484
1274
  project: z.ZodString;
1485
- }, "strip", z.ZodTypeAny, {
1486
- project: string;
1487
- enabled: boolean;
1488
- }, {
1489
- project: string;
1490
- enabled?: boolean | undefined;
1491
- }>>;
1492
- hetzner: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
1493
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1494
- apiKey: z.ZodOptional<z.ZodString>;
1495
- }, "strip", z.ZodTypeAny, {
1496
- enabled: boolean;
1497
- apiKey?: string | undefined;
1498
- }, {
1499
- apiKey?: string | undefined;
1500
- enabled?: boolean | undefined;
1501
- }>, z.ZodObject<{
1502
- apiKey: z.ZodOptional<z.ZodString>;
1275
+ }, z.core.$strip>>;
1276
+ hetzner: z.ZodOptional<z.ZodObject<{
1503
1277
  enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1504
- }, "strip", z.ZodTypeAny, {
1505
- enabled: boolean;
1506
- apiKey?: string | undefined;
1507
- }, {
1508
- apiKey?: string | undefined;
1509
- enabled?: boolean | undefined;
1510
- }>]>>;
1278
+ apiKey: z.ZodString;
1279
+ }, z.core.$strip>>;
1511
1280
  aws: z.ZodOptional<z.ZodObject<{
1512
1281
  enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1513
1282
  controllerRoleArn: z.ZodString;
1514
- }, "strip", z.ZodTypeAny, {
1515
- controllerRoleArn: string;
1516
- enabled: boolean;
1517
- }, {
1518
- controllerRoleArn: string;
1519
- enabled?: boolean | undefined;
1520
- }>>;
1283
+ }, z.core.$strip>>;
1521
1284
  id: z.ZodString;
1522
- type: z.ZodEnum<["managed", "connected"]>;
1523
- }, "strip", z.ZodTypeAny, {
1524
- type: "connected" | "managed";
1525
- id: string;
1526
- limits?: {
1527
- cpu: number;
1528
- } | undefined;
1529
- gcp?: {
1530
- project: string;
1531
- enabled: boolean;
1532
- } | undefined;
1533
- hetzner?: {
1534
- enabled: boolean;
1535
- apiKey?: string | undefined;
1536
- } | {
1537
- enabled: boolean;
1538
- apiKey?: string | undefined;
1539
- } | undefined;
1540
- aws?: {
1541
- controllerRoleArn: string;
1542
- enabled: boolean;
1543
- } | undefined;
1544
- }, {
1545
- type: "connected" | "managed";
1546
- id: string;
1547
- limits?: {
1548
- cpu: number;
1549
- } | undefined;
1550
- gcp?: {
1551
- project: string;
1552
- enabled?: boolean | undefined;
1553
- } | undefined;
1554
- hetzner?: {
1555
- apiKey?: string | undefined;
1556
- enabled?: boolean | undefined;
1557
- } | {
1558
- apiKey?: string | undefined;
1559
- enabled?: boolean | undefined;
1560
- } | undefined;
1561
- aws?: {
1562
- controllerRoleArn: string;
1563
- enabled?: boolean | undefined;
1564
- } | undefined;
1565
- }>, "many">;
1285
+ }, z.core.$strip>>;
1286
+ export declare const zCreateFleetData: z.ZodObject<{
1287
+ body: z.ZodObject<{
1288
+ limits: z.ZodOptional<z.ZodObject<{
1289
+ cpu: z.ZodNumber;
1290
+ }, z.core.$strip>>;
1291
+ gcp: z.ZodOptional<z.ZodObject<{
1292
+ enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1293
+ project: z.ZodString;
1294
+ }, z.core.$strip>>;
1295
+ hetzner: z.ZodOptional<z.ZodObject<{
1296
+ enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1297
+ apiKey: z.ZodString;
1298
+ }, z.core.$strip>>;
1299
+ aws: z.ZodOptional<z.ZodObject<{
1300
+ enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1301
+ controllerRoleArn: z.ZodString;
1302
+ }, z.core.$strip>>;
1303
+ id: z.ZodString;
1304
+ }, z.core.$strip>;
1305
+ path: z.ZodObject<{
1306
+ cluster_id: z.ZodString;
1307
+ }, z.core.$strip>;
1308
+ query: z.ZodOptional<z.ZodNever>;
1309
+ }, z.core.$strip>;
1310
+ /**
1311
+ * Successfully created. Returns created Fleet ID.
1312
+ */
1566
1313
  export declare const zCreateFleetResponse: z.ZodString;
1314
+ export declare const zDeleteFleetData: z.ZodObject<{
1315
+ body: z.ZodOptional<z.ZodNever>;
1316
+ path: z.ZodObject<{
1317
+ cluster_id: z.ZodString;
1318
+ fleet_name: z.ZodString;
1319
+ }, z.core.$strip>;
1320
+ query: z.ZodOptional<z.ZodNever>;
1321
+ }, z.core.$strip>;
1322
+ /**
1323
+ * Successfully deleted.
1324
+ */
1567
1325
  export declare const zDeleteFleetResponse: z.ZodString;
1326
+ export declare const zGetFleetData: z.ZodObject<{
1327
+ body: z.ZodOptional<z.ZodNever>;
1328
+ path: z.ZodObject<{
1329
+ cluster_id: z.ZodString;
1330
+ fleet_name: z.ZodString;
1331
+ }, z.core.$strip>;
1332
+ query: z.ZodOptional<z.ZodNever>;
1333
+ }, z.core.$strip>;
1334
+ /**
1335
+ * Returns a single object containing fleet details.
1336
+ */
1568
1337
  export declare const zGetFleetResponse: z.ZodObject<{
1569
1338
  limits: z.ZodOptional<z.ZodObject<{
1570
1339
  cpu: z.ZodNumber;
1571
- }, "strip", z.ZodTypeAny, {
1572
- cpu: number;
1573
- }, {
1574
- cpu: number;
1575
- }>>;
1340
+ }, z.core.$strip>>;
1576
1341
  gcp: z.ZodOptional<z.ZodObject<{
1577
1342
  enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1578
1343
  project: z.ZodString;
1579
- }, "strip", z.ZodTypeAny, {
1580
- project: string;
1581
- enabled: boolean;
1582
- }, {
1583
- project: string;
1584
- enabled?: boolean | undefined;
1585
- }>>;
1586
- hetzner: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
1344
+ }, z.core.$strip>>;
1345
+ hetzner: z.ZodOptional<z.ZodObject<{
1587
1346
  enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1588
- apiKey: z.ZodOptional<z.ZodString>;
1589
- }, "strip", z.ZodTypeAny, {
1590
- enabled: boolean;
1591
- apiKey?: string | undefined;
1592
- }, {
1593
- apiKey?: string | undefined;
1594
- enabled?: boolean | undefined;
1595
- }>, z.ZodObject<{
1596
- apiKey: z.ZodOptional<z.ZodString>;
1597
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1598
- }, "strip", z.ZodTypeAny, {
1599
- enabled: boolean;
1600
- apiKey?: string | undefined;
1601
- }, {
1602
- apiKey?: string | undefined;
1603
- enabled?: boolean | undefined;
1604
- }>]>>;
1347
+ apiKey: z.ZodString;
1348
+ }, z.core.$strip>>;
1605
1349
  aws: z.ZodOptional<z.ZodObject<{
1606
1350
  enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1607
1351
  controllerRoleArn: z.ZodString;
1608
- }, "strip", z.ZodTypeAny, {
1609
- controllerRoleArn: string;
1610
- enabled: boolean;
1611
- }, {
1612
- controllerRoleArn: string;
1613
- enabled?: boolean | undefined;
1614
- }>>;
1352
+ }, z.core.$strip>>;
1615
1353
  id: z.ZodString;
1616
- type: z.ZodEnum<["managed", "connected"]>;
1617
- }, "strip", z.ZodTypeAny, {
1618
- type: "connected" | "managed";
1619
- id: string;
1620
- limits?: {
1621
- cpu: number;
1622
- } | undefined;
1623
- gcp?: {
1624
- project: string;
1625
- enabled: boolean;
1626
- } | undefined;
1627
- hetzner?: {
1628
- enabled: boolean;
1629
- apiKey?: string | undefined;
1630
- } | {
1631
- enabled: boolean;
1632
- apiKey?: string | undefined;
1633
- } | undefined;
1634
- aws?: {
1635
- controllerRoleArn: string;
1636
- enabled: boolean;
1637
- } | undefined;
1638
- }, {
1639
- type: "connected" | "managed";
1640
- id: string;
1641
- limits?: {
1642
- cpu: number;
1643
- } | undefined;
1644
- gcp?: {
1645
- project: string;
1646
- enabled?: boolean | undefined;
1647
- } | undefined;
1648
- hetzner?: {
1649
- apiKey?: string | undefined;
1650
- enabled?: boolean | undefined;
1651
- } | {
1652
- apiKey?: string | undefined;
1653
- enabled?: boolean | undefined;
1654
- } | undefined;
1655
- aws?: {
1656
- controllerRoleArn: string;
1657
- enabled?: boolean | undefined;
1658
- } | undefined;
1659
- }>;
1354
+ }, z.core.$strip>;
1355
+ export declare const zUpdateFleetData: z.ZodObject<{
1356
+ body: z.ZodObject<{
1357
+ limits: z.ZodOptional<z.ZodObject<{
1358
+ cpu: z.ZodNumber;
1359
+ }, z.core.$strip>>;
1360
+ gcp: z.ZodOptional<z.ZodObject<{
1361
+ enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1362
+ project: z.ZodString;
1363
+ }, z.core.$strip>>;
1364
+ hetzner: z.ZodOptional<z.ZodObject<{
1365
+ enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1366
+ apiKey: z.ZodString;
1367
+ }, z.core.$strip>>;
1368
+ aws: z.ZodOptional<z.ZodObject<{
1369
+ enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1370
+ controllerRoleArn: z.ZodString;
1371
+ }, z.core.$strip>>;
1372
+ }, z.core.$strip>;
1373
+ path: z.ZodObject<{
1374
+ cluster_id: z.ZodString;
1375
+ fleet_name: z.ZodString;
1376
+ }, z.core.$strip>;
1377
+ query: z.ZodOptional<z.ZodNever>;
1378
+ }, z.core.$strip>;
1379
+ /**
1380
+ * Successfully updated.
1381
+ */
1660
1382
  export declare const zUpdateFleetResponse: z.ZodString;
1383
+ export declare const zQueryClusterData: z.ZodObject<{
1384
+ body: z.ZodOptional<z.ZodNever>;
1385
+ path: z.ZodObject<{
1386
+ cluster_id: z.ZodString;
1387
+ }, z.core.$strip>;
1388
+ query: z.ZodOptional<z.ZodNever>;
1389
+ }, z.core.$strip>;
1390
+ export declare const zListClustersData: z.ZodObject<{
1391
+ body: z.ZodOptional<z.ZodNever>;
1392
+ path: z.ZodOptional<z.ZodNever>;
1393
+ query: z.ZodOptional<z.ZodNever>;
1394
+ }, z.core.$strip>;
1395
+ /**
1396
+ * An array of clusters
1397
+ */
1661
1398
  export declare const zListClustersResponse: z.ZodArray<z.ZodObject<{
1662
1399
  name: z.ZodString;
1663
- region: z.ZodOptional<z.ZodEnum<["staging", "northamerica-central-1"]>>;
1664
- tier: z.ZodEnum<["basic", "pro"]>;
1665
- version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
1666
- id: z.ZodString;
1667
- status: z.ZodEnum<["active", "deleted", "creating", "deployed", "failed", "updating"]>;
1668
- endpoint: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodEnum<[""]>]>>;
1400
+ tier: z.ZodEnum<{
1401
+ basic: "basic";
1402
+ pro: "pro";
1403
+ }>;
1404
+ region: z.ZodOptional<z.ZodEnum<{
1405
+ "staging-1a": "staging-1a";
1406
+ "northamerica-central-1": "northamerica-central-1";
1407
+ "europe-central-1a": "europe-central-1a";
1408
+ "northamerica-central-1a": "northamerica-central-1a";
1409
+ }>>;
1410
+ id: z.ZodUUID;
1411
+ status: z.ZodEnum<{
1412
+ deleted: "deleted";
1413
+ failed: "failed";
1414
+ active: "active";
1415
+ disabled: "disabled";
1416
+ creating: "creating";
1417
+ deployed: "deployed";
1418
+ updating: "updating";
1419
+ }>;
1420
+ endpoint: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
1421
+ "": "";
1422
+ }>]>>;
1669
1423
  certificate_ca: z.ZodOptional<z.ZodString>;
1670
1424
  version_current: z.ZodOptional<z.ZodString>;
1671
1425
  created_at: z.ZodOptional<z.ZodString>;
1672
1426
  updated_at: z.ZodOptional<z.ZodString>;
1673
1427
  ready: z.ZodOptional<z.ZodBoolean>;
1674
- }, "strip", z.ZodTypeAny, {
1675
- name: string;
1676
- id: string;
1677
- status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
1678
- tier: "basic" | "pro";
1679
- version_channel: string;
1680
- ready?: boolean | undefined;
1681
- region?: "staging" | "northamerica-central-1" | undefined;
1682
- endpoint?: string | undefined;
1683
- certificate_ca?: string | undefined;
1684
- version_current?: string | undefined;
1685
- created_at?: string | undefined;
1686
- updated_at?: string | undefined;
1687
- }, {
1688
- name: string;
1689
- id: string;
1690
- status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
1691
- tier: "basic" | "pro";
1692
- ready?: boolean | undefined;
1693
- region?: "staging" | "northamerica-central-1" | undefined;
1694
- endpoint?: string | undefined;
1695
- version_channel?: string | undefined;
1696
- certificate_ca?: string | undefined;
1697
- version_current?: string | undefined;
1698
- created_at?: string | undefined;
1699
- updated_at?: string | undefined;
1700
- }>, "many">;
1428
+ version_channel: z.ZodOptional<z.ZodString>;
1429
+ }, z.core.$strip>>;
1430
+ export declare const zCreateClusterData: z.ZodObject<{
1431
+ body: z.ZodObject<{
1432
+ name: z.ZodString;
1433
+ tier: z.ZodEnum<{
1434
+ basic: "basic";
1435
+ pro: "pro";
1436
+ }>;
1437
+ region: z.ZodOptional<z.ZodEnum<{
1438
+ "staging-1a": "staging-1a";
1439
+ "northamerica-central-1": "northamerica-central-1";
1440
+ "europe-central-1a": "europe-central-1a";
1441
+ "northamerica-central-1a": "northamerica-central-1a";
1442
+ }>>;
1443
+ version_channel: z.ZodOptional<z.ZodEnum<{
1444
+ "1.x.x-cfke.x": "1.x.x-cfke.x";
1445
+ "1.31.x-cfke.x": "1.31.x-cfke.x";
1446
+ "1.32.x-cfke.x": "1.32.x-cfke.x";
1447
+ "1.33.x-cfke.x": "1.33.x-cfke.x";
1448
+ }>>;
1449
+ }, z.core.$strip>;
1450
+ path: z.ZodOptional<z.ZodNever>;
1451
+ query: z.ZodOptional<z.ZodNever>;
1452
+ }, z.core.$strip>;
1453
+ /**
1454
+ * Successfully created. Returns created Cluster ID.
1455
+ */
1701
1456
  export declare const zCreateClusterResponse: z.ZodString;
1457
+ export declare const zDeleteClusterData: z.ZodObject<{
1458
+ body: z.ZodOptional<z.ZodNever>;
1459
+ path: z.ZodObject<{
1460
+ cluster_id: z.ZodString;
1461
+ }, z.core.$strip>;
1462
+ query: z.ZodOptional<z.ZodNever>;
1463
+ }, z.core.$strip>;
1464
+ /**
1465
+ * Successfully deleted.
1466
+ */
1702
1467
  export declare const zDeleteClusterResponse: z.ZodString;
1468
+ export declare const zGetClusterData: z.ZodObject<{
1469
+ body: z.ZodOptional<z.ZodNever>;
1470
+ path: z.ZodObject<{
1471
+ cluster_id: z.ZodString;
1472
+ }, z.core.$strip>;
1473
+ query: z.ZodOptional<z.ZodNever>;
1474
+ }, z.core.$strip>;
1475
+ /**
1476
+ * Returns a single object containing cluster details.
1477
+ */
1703
1478
  export declare const zGetClusterResponse: z.ZodObject<{
1704
1479
  name: z.ZodString;
1705
- region: z.ZodOptional<z.ZodEnum<["staging", "northamerica-central-1"]>>;
1706
- tier: z.ZodEnum<["basic", "pro"]>;
1707
- version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
1708
- id: z.ZodString;
1709
- status: z.ZodEnum<["active", "deleted", "creating", "deployed", "failed", "updating"]>;
1710
- endpoint: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodEnum<[""]>]>>;
1480
+ tier: z.ZodEnum<{
1481
+ basic: "basic";
1482
+ pro: "pro";
1483
+ }>;
1484
+ region: z.ZodOptional<z.ZodEnum<{
1485
+ "staging-1a": "staging-1a";
1486
+ "northamerica-central-1": "northamerica-central-1";
1487
+ "europe-central-1a": "europe-central-1a";
1488
+ "northamerica-central-1a": "northamerica-central-1a";
1489
+ }>>;
1490
+ id: z.ZodUUID;
1491
+ status: z.ZodEnum<{
1492
+ deleted: "deleted";
1493
+ failed: "failed";
1494
+ active: "active";
1495
+ disabled: "disabled";
1496
+ creating: "creating";
1497
+ deployed: "deployed";
1498
+ updating: "updating";
1499
+ }>;
1500
+ endpoint: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
1501
+ "": "";
1502
+ }>]>>;
1711
1503
  certificate_ca: z.ZodOptional<z.ZodString>;
1712
1504
  version_current: z.ZodOptional<z.ZodString>;
1713
1505
  created_at: z.ZodOptional<z.ZodString>;
1714
1506
  updated_at: z.ZodOptional<z.ZodString>;
1715
1507
  ready: z.ZodOptional<z.ZodBoolean>;
1716
- }, "strip", z.ZodTypeAny, {
1717
- name: string;
1718
- id: string;
1719
- status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
1720
- tier: "basic" | "pro";
1721
- version_channel: string;
1722
- ready?: boolean | undefined;
1723
- region?: "staging" | "northamerica-central-1" | undefined;
1724
- endpoint?: string | undefined;
1725
- certificate_ca?: string | undefined;
1726
- version_current?: string | undefined;
1727
- created_at?: string | undefined;
1728
- updated_at?: string | undefined;
1729
- }, {
1730
- name: string;
1731
- id: string;
1732
- status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
1733
- tier: "basic" | "pro";
1734
- ready?: boolean | undefined;
1735
- region?: "staging" | "northamerica-central-1" | undefined;
1736
- endpoint?: string | undefined;
1737
- version_channel?: string | undefined;
1738
- certificate_ca?: string | undefined;
1739
- version_current?: string | undefined;
1740
- created_at?: string | undefined;
1741
- updated_at?: string | undefined;
1742
- }>;
1508
+ version_channel: z.ZodOptional<z.ZodString>;
1509
+ }, z.core.$strip>;
1510
+ export declare const zUpdateClusterData: z.ZodObject<{
1511
+ body: z.ZodObject<{
1512
+ name: z.ZodOptional<z.ZodString>;
1513
+ tier: z.ZodEnum<{
1514
+ basic: "basic";
1515
+ pro: "pro";
1516
+ }>;
1517
+ version_channel: z.ZodOptional<z.ZodString>;
1518
+ }, z.core.$strip>;
1519
+ path: z.ZodObject<{
1520
+ cluster_id: z.ZodString;
1521
+ }, z.core.$strip>;
1522
+ query: z.ZodOptional<z.ZodNever>;
1523
+ }, z.core.$strip>;
1524
+ /**
1525
+ * Successfully updated. Returns updated cluster details.
1526
+ */
1743
1527
  export declare const zUpdateClusterResponse: z.ZodObject<{
1744
1528
  name: z.ZodString;
1745
- region: z.ZodOptional<z.ZodEnum<["staging", "northamerica-central-1"]>>;
1746
- tier: z.ZodEnum<["basic", "pro"]>;
1747
- version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
1748
- id: z.ZodString;
1749
- status: z.ZodEnum<["active", "deleted", "creating", "deployed", "failed", "updating"]>;
1750
- endpoint: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodEnum<[""]>]>>;
1529
+ tier: z.ZodEnum<{
1530
+ basic: "basic";
1531
+ pro: "pro";
1532
+ }>;
1533
+ region: z.ZodOptional<z.ZodEnum<{
1534
+ "staging-1a": "staging-1a";
1535
+ "northamerica-central-1": "northamerica-central-1";
1536
+ "europe-central-1a": "europe-central-1a";
1537
+ "northamerica-central-1a": "northamerica-central-1a";
1538
+ }>>;
1539
+ id: z.ZodUUID;
1540
+ status: z.ZodEnum<{
1541
+ deleted: "deleted";
1542
+ failed: "failed";
1543
+ active: "active";
1544
+ disabled: "disabled";
1545
+ creating: "creating";
1546
+ deployed: "deployed";
1547
+ updating: "updating";
1548
+ }>;
1549
+ endpoint: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
1550
+ "": "";
1551
+ }>]>>;
1751
1552
  certificate_ca: z.ZodOptional<z.ZodString>;
1752
1553
  version_current: z.ZodOptional<z.ZodString>;
1753
1554
  created_at: z.ZodOptional<z.ZodString>;
1754
1555
  updated_at: z.ZodOptional<z.ZodString>;
1755
1556
  ready: z.ZodOptional<z.ZodBoolean>;
1756
- }, "strip", z.ZodTypeAny, {
1757
- name: string;
1758
- id: string;
1759
- status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
1760
- tier: "basic" | "pro";
1761
- version_channel: string;
1762
- ready?: boolean | undefined;
1763
- region?: "staging" | "northamerica-central-1" | undefined;
1764
- endpoint?: string | undefined;
1765
- certificate_ca?: string | undefined;
1766
- version_current?: string | undefined;
1767
- created_at?: string | undefined;
1768
- updated_at?: string | undefined;
1769
- }, {
1770
- name: string;
1771
- id: string;
1772
- status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
1773
- tier: "basic" | "pro";
1774
- ready?: boolean | undefined;
1775
- region?: "staging" | "northamerica-central-1" | undefined;
1776
- endpoint?: string | undefined;
1777
- version_channel?: string | undefined;
1778
- certificate_ca?: string | undefined;
1779
- version_current?: string | undefined;
1780
- created_at?: string | undefined;
1781
- updated_at?: string | undefined;
1782
- }>;
1557
+ version_channel: z.ZodOptional<z.ZodString>;
1558
+ }, z.core.$strip>;
1559
+ export declare const zGetJoinInformationData: z.ZodObject<{
1560
+ body: z.ZodOptional<z.ZodNever>;
1561
+ path: z.ZodObject<{
1562
+ cluster_id: z.ZodString;
1563
+ }, z.core.$strip>;
1564
+ query: z.ZodOptional<z.ZodNever>;
1565
+ }, z.core.$strip>;
1566
+ /**
1567
+ * An object of cluster join information
1568
+ */
1783
1569
  export declare const zGetJoinInformationResponse: z.ZodObject<{
1784
- name: z.ZodString;
1785
- region: z.ZodOptional<z.ZodEnum<["staging", "northamerica-central-1"]>>;
1786
- tier: z.ZodEnum<["basic", "pro"]>;
1787
- version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
1788
- id: z.ZodString;
1789
- status: z.ZodEnum<["active", "deleted", "creating", "deployed", "failed", "updating"]>;
1790
- endpoint: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodEnum<[""]>]>>;
1791
- certificate_ca: z.ZodOptional<z.ZodString>;
1792
- version_current: z.ZodOptional<z.ZodString>;
1793
- created_at: z.ZodOptional<z.ZodString>;
1794
- updated_at: z.ZodOptional<z.ZodString>;
1795
- ready: z.ZodOptional<z.ZodBoolean>;
1796
- }, "strip", z.ZodTypeAny, {
1797
- name: string;
1798
- id: string;
1799
- status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
1800
- tier: "basic" | "pro";
1801
- version_channel: string;
1802
- ready?: boolean | undefined;
1803
- region?: "staging" | "northamerica-central-1" | undefined;
1804
- endpoint?: string | undefined;
1805
- certificate_ca?: string | undefined;
1806
- version_current?: string | undefined;
1807
- created_at?: string | undefined;
1808
- updated_at?: string | undefined;
1809
- }, {
1810
- name: string;
1811
- id: string;
1812
- status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
1813
- tier: "basic" | "pro";
1814
- ready?: boolean | undefined;
1815
- region?: "staging" | "northamerica-central-1" | undefined;
1816
- endpoint?: string | undefined;
1817
- version_channel?: string | undefined;
1818
- certificate_ca?: string | undefined;
1819
- version_current?: string | undefined;
1820
- created_at?: string | undefined;
1821
- updated_at?: string | undefined;
1822
- }>;
1570
+ certificate_authority: z.ZodString;
1571
+ endpoint: z.ZodURL;
1572
+ cluster_dns: z.ZodString;
1573
+ auth_key: z.ZodString;
1574
+ bootstrap_token: z.ZodString;
1575
+ versions: z.ZodObject<{
1576
+ kubernetes: z.ZodString;
1577
+ tailscale: z.ZodString;
1578
+ containerd: z.ZodString;
1579
+ nvidia_driver: z.ZodString;
1580
+ }, z.core.$strip>;
1581
+ third_party_api_access_config: z.ZodObject<{
1582
+ metadata_url: z.ZodString;
1583
+ aws_role_arn: z.ZodString;
1584
+ gcp_workload_identity_provider: z.ZodString;
1585
+ }, z.core.$strip>;
1586
+ }, z.core.$strip>;
1587
+ export declare const zListInvitesData: z.ZodObject<{
1588
+ body: z.ZodOptional<z.ZodNever>;
1589
+ path: z.ZodOptional<z.ZodNever>;
1590
+ query: z.ZodOptional<z.ZodNever>;
1591
+ }, z.core.$strip>;
1592
+ /**
1593
+ * An array of invites
1594
+ */
1823
1595
  export declare const zListInvitesResponse: z.ZodArray<z.ZodObject<{
1824
1596
  id: z.ZodOptional<z.ZodString>;
1825
- organization_id: z.ZodOptional<z.ZodString>;
1826
- date_created: z.ZodString;
1827
- email: z.ZodOptional<z.ZodString>;
1597
+ organization_id: z.ZodOptional<z.ZodUUID>;
1598
+ date_created: z.ZodISODateTime;
1599
+ email: z.ZodOptional<z.ZodEmail>;
1828
1600
  code: z.ZodOptional<z.ZodString>;
1829
- }, "strip", z.ZodTypeAny, {
1830
- date_created: string;
1831
- code?: string | undefined;
1832
- id?: string | undefined;
1833
- email?: string | undefined;
1834
- organization_id?: string | undefined;
1835
- }, {
1836
- date_created: string;
1837
- code?: string | undefined;
1838
- id?: string | undefined;
1839
- email?: string | undefined;
1840
- organization_id?: string | undefined;
1841
- }>, "many">;
1601
+ }, z.core.$strip>>;
1602
+ export declare const zCreateInviteData: z.ZodObject<{
1603
+ body: z.ZodObject<{
1604
+ email: z.ZodOptional<z.ZodString>;
1605
+ }, z.core.$strip>;
1606
+ path: z.ZodOptional<z.ZodNever>;
1607
+ query: z.ZodOptional<z.ZodNever>;
1608
+ }, z.core.$strip>;
1609
+ /**
1610
+ * Successfully created. Returns created invite details.
1611
+ */
1842
1612
  export declare const zCreateInviteResponse: z.ZodObject<{
1843
1613
  id: z.ZodOptional<z.ZodString>;
1844
- organization_id: z.ZodOptional<z.ZodString>;
1845
- date_created: z.ZodString;
1846
- email: z.ZodOptional<z.ZodString>;
1614
+ organization_id: z.ZodOptional<z.ZodUUID>;
1615
+ date_created: z.ZodISODateTime;
1616
+ email: z.ZodOptional<z.ZodEmail>;
1847
1617
  code: z.ZodOptional<z.ZodString>;
1848
- }, "strip", z.ZodTypeAny, {
1849
- date_created: string;
1850
- code?: string | undefined;
1851
- id?: string | undefined;
1852
- email?: string | undefined;
1853
- organization_id?: string | undefined;
1854
- }, {
1855
- date_created: string;
1856
- code?: string | undefined;
1857
- id?: string | undefined;
1858
- email?: string | undefined;
1859
- organization_id?: string | undefined;
1860
- }>;
1618
+ }, z.core.$strip>;
1619
+ export declare const zGetInviteData: z.ZodObject<{
1620
+ body: z.ZodOptional<z.ZodNever>;
1621
+ path: z.ZodObject<{
1622
+ code: z.ZodString;
1623
+ }, z.core.$strip>;
1624
+ query: z.ZodOptional<z.ZodNever>;
1625
+ }, z.core.$strip>;
1626
+ /**
1627
+ * Returns a single object containing invite details.
1628
+ */
1861
1629
  export declare const zGetInviteResponse: z.ZodObject<{
1862
1630
  id: z.ZodOptional<z.ZodString>;
1863
- organization_id: z.ZodOptional<z.ZodString>;
1864
- date_created: z.ZodString;
1865
- email: z.ZodOptional<z.ZodString>;
1631
+ organization_id: z.ZodOptional<z.ZodUUID>;
1632
+ date_created: z.ZodISODateTime;
1633
+ email: z.ZodOptional<z.ZodEmail>;
1866
1634
  code: z.ZodOptional<z.ZodString>;
1867
- }, "strip", z.ZodTypeAny, {
1868
- date_created: string;
1869
- code?: string | undefined;
1870
- id?: string | undefined;
1871
- email?: string | undefined;
1872
- organization_id?: string | undefined;
1873
- }, {
1874
- date_created: string;
1875
- code?: string | undefined;
1876
- id?: string | undefined;
1877
- email?: string | undefined;
1878
- organization_id?: string | undefined;
1879
- }>;
1635
+ }, z.core.$strip>;
1636
+ export declare const zDeleteInviteData: z.ZodObject<{
1637
+ body: z.ZodOptional<z.ZodNever>;
1638
+ path: z.ZodObject<{
1639
+ email: z.ZodString;
1640
+ }, z.core.$strip>;
1641
+ query: z.ZodOptional<z.ZodNever>;
1642
+ }, z.core.$strip>;
1643
+ export declare const zListMarketplaceChartsData: z.ZodObject<{
1644
+ body: z.ZodOptional<z.ZodNever>;
1645
+ path: z.ZodOptional<z.ZodNever>;
1646
+ query: z.ZodOptional<z.ZodNever>;
1647
+ }, z.core.$strip>;
1648
+ /**
1649
+ * An array of chart listings in the marketplace.
1650
+ */
1651
+ export declare const zListMarketplaceChartsResponse: z.ZodArray<z.ZodObject<{
1652
+ name: z.ZodString;
1653
+ versions: z.ZodArray<z.ZodString>;
1654
+ version_channels: z.ZodArray<z.ZodString>;
1655
+ latestVersion: z.ZodString;
1656
+ metadata: z.ZodOptional<z.ZodObject<{
1657
+ name: z.ZodString;
1658
+ version: z.ZodString;
1659
+ description: z.ZodOptional<z.ZodString>;
1660
+ appVersion: z.ZodOptional<z.ZodString>;
1661
+ apiVersion: z.ZodOptional<z.ZodString>;
1662
+ keywords: z.ZodOptional<z.ZodArray<z.ZodString>>;
1663
+ home: z.ZodOptional<z.ZodString>;
1664
+ icon: z.ZodOptional<z.ZodString>;
1665
+ sources: z.ZodOptional<z.ZodArray<z.ZodString>>;
1666
+ maintainers: z.ZodOptional<z.ZodArray<z.ZodObject<{
1667
+ name: z.ZodString;
1668
+ email: z.ZodOptional<z.ZodString>;
1669
+ }, z.core.$strip>>>;
1670
+ }, z.core.$strip>>;
1671
+ }, z.core.$strip>>;
1672
+ export declare const zGetMarketplaceChartFilesData: z.ZodObject<{
1673
+ body: z.ZodOptional<z.ZodNever>;
1674
+ path: z.ZodObject<{
1675
+ chart_name: z.ZodString;
1676
+ version_channel: z.ZodString;
1677
+ }, z.core.$strip>;
1678
+ query: z.ZodOptional<z.ZodNever>;
1679
+ }, z.core.$strip>;
1680
+ /**
1681
+ * Returns an object containing the chart files for the latest matching version.
1682
+ */
1683
+ export declare const zGetMarketplaceChartFilesResponse: z.ZodObject<{
1684
+ chartYaml: z.ZodOptional<z.ZodString>;
1685
+ valuesYaml: z.ZodOptional<z.ZodString>;
1686
+ valuesSchemaJson: z.ZodOptional<z.ZodString>;
1687
+ }, z.core.$strip>;
1688
+ export declare const zPostMcpData: z.ZodObject<{
1689
+ body: z.ZodObject<{
1690
+ jsonrpc: z.ZodOptional<z.ZodString>;
1691
+ method: z.ZodOptional<z.ZodString>;
1692
+ id: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>;
1693
+ params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1694
+ }, z.core.$strip>;
1695
+ path: z.ZodOptional<z.ZodNever>;
1696
+ query: z.ZodOptional<z.ZodNever>;
1697
+ }, z.core.$strip>;
1698
+ /**
1699
+ * JSON-RPC 2.0 success or error response
1700
+ */
1701
+ export declare const zPostMcpResponse: z.ZodObject<{
1702
+ jsonrpc: z.ZodOptional<z.ZodString>;
1703
+ id: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>;
1704
+ result: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1705
+ error: z.ZodOptional<z.ZodObject<{
1706
+ code: z.ZodOptional<z.ZodInt>;
1707
+ message: z.ZodOptional<z.ZodString>;
1708
+ }, z.core.$strip>>;
1709
+ }, z.core.$strip>;
1710
+ export declare const zGetOrganizationData: z.ZodObject<{
1711
+ body: z.ZodOptional<z.ZodNever>;
1712
+ path: z.ZodOptional<z.ZodNever>;
1713
+ query: z.ZodOptional<z.ZodNever>;
1714
+ }, z.core.$strip>;
1715
+ /**
1716
+ * Returns a single object containing organization details.
1717
+ */
1880
1718
  export declare const zGetOrganizationResponse: z.ZodObject<{
1881
- id: z.ZodString;
1719
+ id: z.ZodUUID;
1882
1720
  name: z.ZodOptional<z.ZodString>;
1883
- date_created: z.ZodString;
1721
+ date_created: z.ZodISODateTime;
1884
1722
  quota: z.ZodObject<{
1885
- basic_clusters_max: z.ZodNumber;
1886
- basic_clusters_available: z.ZodNumber;
1887
- pro_clusters_max: z.ZodNumber;
1888
- pro_clusters_available: z.ZodNumber;
1889
- fleets_max: z.ZodNumber;
1890
- managed_fleets_cpu_max: z.ZodNumber;
1891
- cluster_tiers: z.ZodArray<z.ZodString, "many">;
1892
- regions: z.ZodArray<z.ZodString, "many">;
1723
+ basic_clusters_max: z.ZodInt;
1724
+ basic_clusters_available: z.ZodInt;
1725
+ pro_clusters_max: z.ZodInt;
1726
+ pro_clusters_available: z.ZodInt;
1727
+ fleets_max: z.ZodInt;
1728
+ cluster_tiers: z.ZodArray<z.ZodString>;
1729
+ regions: z.ZodArray<z.ZodString>;
1893
1730
  versions: z.ZodArray<z.ZodObject<{
1894
1731
  id: z.ZodString;
1895
1732
  label: z.ZodString;
1896
- }, "strip", z.ZodTypeAny, {
1897
- id: string;
1898
- label: string;
1899
- }, {
1900
- id: string;
1901
- label: string;
1902
- }>, "many">;
1903
- }, "strip", z.ZodTypeAny, {
1904
- versions: {
1905
- id: string;
1906
- label: string;
1907
- }[];
1908
- basic_clusters_max: number;
1909
- basic_clusters_available: number;
1910
- pro_clusters_max: number;
1911
- pro_clusters_available: number;
1912
- fleets_max: number;
1913
- managed_fleets_cpu_max: number;
1914
- cluster_tiers: string[];
1915
- regions: string[];
1916
- }, {
1917
- versions: {
1918
- id: string;
1919
- label: string;
1920
- }[];
1921
- basic_clusters_max: number;
1922
- basic_clusters_available: number;
1923
- pro_clusters_max: number;
1924
- pro_clusters_available: number;
1925
- fleets_max: number;
1926
- managed_fleets_cpu_max: number;
1927
- cluster_tiers: string[];
1928
- regions: string[];
1733
+ }, z.core.$strip>>;
1734
+ copilot_user_hourly_tokens: z.ZodInt;
1735
+ copilot_organization_hourly_tokens: z.ZodInt;
1736
+ cfcr_storage_gb: z.ZodInt;
1737
+ }, z.core.$strip>;
1738
+ status: z.ZodEnum<{
1739
+ active: "active";
1740
+ closed: "closed";
1741
+ suspended: "suspended";
1929
1742
  }>;
1930
- status: z.ZodEnum<["active", "closed", "suspended"]>;
1931
- }, "strip", z.ZodTypeAny, {
1932
- id: string;
1933
- status: "active" | "closed" | "suspended";
1934
- date_created: string;
1935
- quota: {
1936
- versions: {
1937
- id: string;
1938
- label: string;
1939
- }[];
1940
- basic_clusters_max: number;
1941
- basic_clusters_available: number;
1942
- pro_clusters_max: number;
1943
- pro_clusters_available: number;
1944
- fleets_max: number;
1945
- managed_fleets_cpu_max: number;
1946
- cluster_tiers: string[];
1947
- regions: string[];
1948
- };
1949
- name?: string | undefined;
1950
- }, {
1951
- id: string;
1952
- status: "active" | "closed" | "suspended";
1953
- date_created: string;
1954
- quota: {
1955
- versions: {
1956
- id: string;
1957
- label: string;
1958
- }[];
1959
- basic_clusters_max: number;
1960
- basic_clusters_available: number;
1961
- pro_clusters_max: number;
1962
- pro_clusters_available: number;
1963
- fleets_max: number;
1964
- managed_fleets_cpu_max: number;
1965
- cluster_tiers: string[];
1966
- regions: string[];
1967
- };
1968
- name?: string | undefined;
1969
- }>;
1743
+ }, z.core.$strip>;
1744
+ export declare const zCreateOrganizationData: z.ZodObject<{
1745
+ body: z.ZodObject<{
1746
+ email: z.ZodEmail;
1747
+ first_name: z.ZodString;
1748
+ last_name: z.ZodString;
1749
+ company_name: z.ZodString;
1750
+ password: z.ZodString;
1751
+ }, z.core.$strip>;
1752
+ path: z.ZodOptional<z.ZodNever>;
1753
+ query: z.ZodOptional<z.ZodNever>;
1754
+ }, z.core.$strip>;
1755
+ export declare const zListRepositoriesData: z.ZodObject<{
1756
+ body: z.ZodOptional<z.ZodNever>;
1757
+ path: z.ZodOptional<z.ZodNever>;
1758
+ query: z.ZodOptional<z.ZodNever>;
1759
+ }, z.core.$strip>;
1760
+ /**
1761
+ * List of repositories
1762
+ */
1763
+ export declare const zListRepositoriesResponse: z.ZodArray<z.ZodObject<{
1764
+ name: z.ZodString;
1765
+ region: z.ZodString;
1766
+ uri: z.ZodString;
1767
+ }, z.core.$strip>>;
1768
+ export declare const zListTagsData: z.ZodObject<{
1769
+ body: z.ZodOptional<z.ZodNever>;
1770
+ path: z.ZodObject<{
1771
+ region: z.ZodString;
1772
+ repository: z.ZodString;
1773
+ }, z.core.$strip>;
1774
+ query: z.ZodOptional<z.ZodNever>;
1775
+ }, z.core.$strip>;
1776
+ /**
1777
+ * Repository with tags
1778
+ */
1779
+ export declare const zListTagsResponse: z.ZodObject<{
1780
+ name: z.ZodString;
1781
+ region: z.ZodString;
1782
+ uri: z.ZodString;
1783
+ tags: z.ZodArray<z.ZodObject<{
1784
+ name: z.ZodString;
1785
+ size: z.ZodNumber;
1786
+ mediaType: z.ZodOptional<z.ZodString>;
1787
+ platforms: z.ZodOptional<z.ZodArray<z.ZodString>>;
1788
+ }, z.core.$strip>>;
1789
+ totalSize: z.ZodNumber;
1790
+ }, z.core.$strip>;
1791
+ export declare const zDeleteTagData: z.ZodObject<{
1792
+ body: z.ZodOptional<z.ZodNever>;
1793
+ path: z.ZodObject<{
1794
+ region: z.ZodString;
1795
+ repository: z.ZodString;
1796
+ tag: z.ZodString;
1797
+ }, z.core.$strip>;
1798
+ query: z.ZodOptional<z.ZodNever>;
1799
+ }, z.core.$strip>;
1800
+ export declare const zGetTagData: z.ZodObject<{
1801
+ body: z.ZodOptional<z.ZodNever>;
1802
+ path: z.ZodObject<{
1803
+ region: z.ZodString;
1804
+ repository: z.ZodString;
1805
+ tag: z.ZodString;
1806
+ }, z.core.$strip>;
1807
+ query: z.ZodOptional<z.ZodNever>;
1808
+ }, z.core.$strip>;
1809
+ /**
1810
+ * Tag details
1811
+ */
1812
+ export declare const zGetTagResponse: z.ZodObject<{
1813
+ name: z.ZodString;
1814
+ digest: z.ZodString;
1815
+ mediaType: z.ZodOptional<z.ZodString>;
1816
+ config: z.ZodOptional<z.ZodObject<{
1817
+ size: z.ZodNumber;
1818
+ }, z.core.$strip>>;
1819
+ layers: z.ZodOptional<z.ZodArray<z.ZodObject<{
1820
+ digest: z.ZodOptional<z.ZodString>;
1821
+ size: z.ZodNumber;
1822
+ }, z.core.$strip>>>;
1823
+ manifests: z.ZodOptional<z.ZodArray<z.ZodObject<{
1824
+ digest: z.ZodString;
1825
+ platform: z.ZodOptional<z.ZodObject<{
1826
+ architecture: z.ZodString;
1827
+ os: z.ZodString;
1828
+ variant: z.ZodOptional<z.ZodString>;
1829
+ }, z.core.$strip>>;
1830
+ layers: z.ZodOptional<z.ZodArray<z.ZodObject<{
1831
+ digest: z.ZodOptional<z.ZodString>;
1832
+ size: z.ZodNumber;
1833
+ }, z.core.$strip>>>;
1834
+ size: z.ZodOptional<z.ZodNumber>;
1835
+ }, z.core.$strip>>>;
1836
+ size: z.ZodNumber;
1837
+ region: z.ZodString;
1838
+ repository: z.ZodString;
1839
+ uri: z.ZodString;
1840
+ }, z.core.$strip>;
1841
+ export declare const zListTokensData: z.ZodObject<{
1842
+ body: z.ZodOptional<z.ZodNever>;
1843
+ path: z.ZodOptional<z.ZodNever>;
1844
+ query: z.ZodOptional<z.ZodNever>;
1845
+ }, z.core.$strip>;
1846
+ /**
1847
+ * Returns a list of access token details with masked secrets.
1848
+ */
1970
1849
  export declare const zListTokensResponse: z.ZodArray<z.ZodObject<{
1971
1850
  name: z.ZodString;
1972
- role: z.ZodEnum<["Administrator", "User"]>;
1851
+ role: z.ZodEnum<{
1852
+ Administrator: "Administrator";
1853
+ User: "User";
1854
+ }>;
1973
1855
  id: z.ZodOptional<z.ZodString>;
1974
1856
  secret: z.ZodOptional<z.ZodString>;
1975
- date_created: z.ZodString;
1976
- }, "strip", z.ZodTypeAny, {
1977
- name: string;
1978
- role: "Administrator" | "User";
1979
- date_created: string;
1980
- id?: string | undefined;
1981
- secret?: string | undefined;
1982
- }, {
1983
- name: string;
1984
- role: "Administrator" | "User";
1985
- date_created: string;
1986
- id?: string | undefined;
1987
- secret?: string | undefined;
1988
- }>, "many">;
1857
+ date_created: z.ZodISODateTime;
1858
+ }, z.core.$strip>>;
1859
+ export declare const zCreateTokenData: z.ZodObject<{
1860
+ body: z.ZodObject<{
1861
+ name: z.ZodString;
1862
+ role: z.ZodEnum<{
1863
+ Administrator: "Administrator";
1864
+ User: "User";
1865
+ }>;
1866
+ }, z.core.$strip>;
1867
+ path: z.ZodOptional<z.ZodNever>;
1868
+ query: z.ZodOptional<z.ZodNever>;
1869
+ }, z.core.$strip>;
1870
+ /**
1871
+ * Successfully created. Returns created token details with unmasked/raw secret.
1872
+ */
1989
1873
  export declare const zCreateTokenResponse: z.ZodObject<{
1990
1874
  name: z.ZodString;
1991
- role: z.ZodEnum<["Administrator", "User"]>;
1875
+ role: z.ZodEnum<{
1876
+ Administrator: "Administrator";
1877
+ User: "User";
1878
+ }>;
1992
1879
  id: z.ZodOptional<z.ZodString>;
1993
1880
  secret: z.ZodOptional<z.ZodString>;
1994
- date_created: z.ZodString;
1995
- }, "strip", z.ZodTypeAny, {
1996
- name: string;
1997
- role: "Administrator" | "User";
1998
- date_created: string;
1999
- id?: string | undefined;
2000
- secret?: string | undefined;
2001
- }, {
2002
- name: string;
2003
- role: "Administrator" | "User";
2004
- date_created: string;
2005
- id?: string | undefined;
2006
- secret?: string | undefined;
2007
- }>;
1881
+ date_created: z.ZodISODateTime;
1882
+ }, z.core.$strip>;
1883
+ export declare const zDeleteTokenData: z.ZodObject<{
1884
+ body: z.ZodOptional<z.ZodNever>;
1885
+ path: z.ZodObject<{
1886
+ token_id: z.ZodString;
1887
+ }, z.core.$strip>;
1888
+ query: z.ZodOptional<z.ZodNever>;
1889
+ }, z.core.$strip>;
1890
+ export declare const zGetTokenData: z.ZodObject<{
1891
+ body: z.ZodOptional<z.ZodNever>;
1892
+ path: z.ZodObject<{
1893
+ token_id: z.ZodString;
1894
+ }, z.core.$strip>;
1895
+ query: z.ZodOptional<z.ZodNever>;
1896
+ }, z.core.$strip>;
1897
+ /**
1898
+ * Returns access token details with masked secret.
1899
+ */
2008
1900
  export declare const zGetTokenResponse: z.ZodObject<{
2009
1901
  name: z.ZodString;
2010
- role: z.ZodEnum<["Administrator", "User"]>;
1902
+ role: z.ZodEnum<{
1903
+ Administrator: "Administrator";
1904
+ User: "User";
1905
+ }>;
2011
1906
  id: z.ZodOptional<z.ZodString>;
2012
1907
  secret: z.ZodOptional<z.ZodString>;
2013
- date_created: z.ZodString;
2014
- }, "strip", z.ZodTypeAny, {
2015
- name: string;
2016
- role: "Administrator" | "User";
2017
- date_created: string;
2018
- id?: string | undefined;
2019
- secret?: string | undefined;
2020
- }, {
2021
- name: string;
2022
- role: "Administrator" | "User";
2023
- date_created: string;
2024
- id?: string | undefined;
2025
- secret?: string | undefined;
2026
- }>;
1908
+ date_created: z.ZodISODateTime;
1909
+ }, z.core.$strip>;
1910
+ export declare const zUpdateTokenData: z.ZodObject<{
1911
+ body: z.ZodObject<{
1912
+ name: z.ZodOptional<z.ZodString>;
1913
+ role: z.ZodOptional<z.ZodEnum<{
1914
+ Administrator: "Administrator";
1915
+ User: "User";
1916
+ }>>;
1917
+ }, z.core.$strip>;
1918
+ path: z.ZodObject<{
1919
+ token_id: z.ZodString;
1920
+ }, z.core.$strip>;
1921
+ query: z.ZodOptional<z.ZodNever>;
1922
+ }, z.core.$strip>;
1923
+ /**
1924
+ * Successfully updated. Returns updated token details with masked secret.
1925
+ */
2027
1926
  export declare const zUpdateTokenResponse: z.ZodObject<{
2028
1927
  name: z.ZodString;
2029
- role: z.ZodEnum<["Administrator", "User"]>;
1928
+ role: z.ZodEnum<{
1929
+ Administrator: "Administrator";
1930
+ User: "User";
1931
+ }>;
2030
1932
  id: z.ZodOptional<z.ZodString>;
2031
1933
  secret: z.ZodOptional<z.ZodString>;
2032
- date_created: z.ZodString;
2033
- }, "strip", z.ZodTypeAny, {
2034
- name: string;
2035
- role: "Administrator" | "User";
2036
- date_created: string;
2037
- id?: string | undefined;
2038
- secret?: string | undefined;
2039
- }, {
2040
- name: string;
2041
- role: "Administrator" | "User";
2042
- date_created: string;
2043
- id?: string | undefined;
2044
- secret?: string | undefined;
2045
- }>;
1934
+ date_created: z.ZodISODateTime;
1935
+ }, z.core.$strip>;
1936
+ export declare const zRegenerateTokenData: z.ZodObject<{
1937
+ body: z.ZodOptional<z.ZodNever>;
1938
+ path: z.ZodObject<{
1939
+ token_id: z.ZodString;
1940
+ }, z.core.$strip>;
1941
+ query: z.ZodOptional<z.ZodNever>;
1942
+ }, z.core.$strip>;
1943
+ /**
1944
+ * Successfully updated. Returns updated token details with unmasked / raw secret.
1945
+ */
2046
1946
  export declare const zRegenerateTokenResponse: z.ZodObject<{
2047
1947
  name: z.ZodString;
2048
- role: z.ZodEnum<["Administrator", "User"]>;
1948
+ role: z.ZodEnum<{
1949
+ Administrator: "Administrator";
1950
+ User: "User";
1951
+ }>;
2049
1952
  id: z.ZodOptional<z.ZodString>;
2050
1953
  secret: z.ZodOptional<z.ZodString>;
2051
- date_created: z.ZodString;
2052
- }, "strip", z.ZodTypeAny, {
2053
- name: string;
2054
- role: "Administrator" | "User";
2055
- date_created: string;
2056
- id?: string | undefined;
2057
- secret?: string | undefined;
2058
- }, {
2059
- name: string;
2060
- role: "Administrator" | "User";
2061
- date_created: string;
2062
- id?: string | undefined;
2063
- secret?: string | undefined;
2064
- }>;
1954
+ date_created: z.ZodISODateTime;
1955
+ }, z.core.$strip>;
1956
+ export declare const zListUserOrganizationsData: z.ZodObject<{
1957
+ body: z.ZodOptional<z.ZodNever>;
1958
+ path: z.ZodObject<{
1959
+ email: z.ZodString;
1960
+ }, z.core.$strip>;
1961
+ query: z.ZodOptional<z.ZodNever>;
1962
+ }, z.core.$strip>;
1963
+ /**
1964
+ * An array of organizations the user belongs to.
1965
+ */
2065
1966
  export declare const zListUserOrganizationsResponse: z.ZodArray<z.ZodObject<{
2066
1967
  realm: z.ZodOptional<z.ZodString>;
2067
1968
  displayName: z.ZodOptional<z.ZodString>;
2068
- }, "strip", z.ZodTypeAny, {
2069
- realm?: string | undefined;
2070
- displayName?: string | undefined;
2071
- }, {
2072
- realm?: string | undefined;
2073
- displayName?: string | undefined;
2074
- }>, "many">;
1969
+ }, z.core.$strip>>;
1970
+ export declare const zListUsersData: z.ZodObject<{
1971
+ body: z.ZodOptional<z.ZodNever>;
1972
+ path: z.ZodOptional<z.ZodNever>;
1973
+ query: z.ZodOptional<z.ZodNever>;
1974
+ }, z.core.$strip>;
1975
+ /**
1976
+ * An array of users
1977
+ */
2075
1978
  export declare const zListUsersResponse: z.ZodArray<z.ZodObject<{
2076
- email: z.ZodString;
1979
+ email: z.ZodEmail;
2077
1980
  first_name: z.ZodString;
2078
1981
  last_name: z.ZodString;
2079
- role: z.ZodEnum<["Administrator", "User"]>;
2080
- status: z.ZodEnum<["active", "inactive"]>;
2081
- id: z.ZodString;
2082
- date_created: z.ZodString;
2083
- }, "strip", z.ZodTypeAny, {
2084
- id: string;
2085
- role: "Administrator" | "User";
2086
- email: string;
2087
- status: "active" | "inactive";
2088
- first_name: string;
2089
- last_name: string;
2090
- date_created: string;
2091
- }, {
2092
- id: string;
2093
- role: "Administrator" | "User";
2094
- email: string;
2095
- status: "active" | "inactive";
2096
- first_name: string;
2097
- last_name: string;
2098
- date_created: string;
2099
- }>, "many">;
1982
+ role: z.ZodEnum<{
1983
+ Administrator: "Administrator";
1984
+ User: "User";
1985
+ }>;
1986
+ status: z.ZodEnum<{
1987
+ active: "active";
1988
+ inactive: "inactive";
1989
+ }>;
1990
+ id: z.ZodUUID;
1991
+ date_created: z.ZodISODateTime;
1992
+ }, z.core.$strip>>;
1993
+ export declare const zCreateUserData: z.ZodObject<{
1994
+ body: z.ZodObject<{
1995
+ email: z.ZodEmail;
1996
+ first_name: z.ZodString;
1997
+ last_name: z.ZodString;
1998
+ code: z.ZodString;
1999
+ password: z.ZodString;
2000
+ status: z.ZodOptional<z.ZodEnum<{
2001
+ active: "active";
2002
+ inactive: "inactive";
2003
+ }>>;
2004
+ role: z.ZodOptional<z.ZodEnum<{
2005
+ Administrator: "Administrator";
2006
+ User: "User";
2007
+ }>>;
2008
+ }, z.core.$strip>;
2009
+ path: z.ZodOptional<z.ZodNever>;
2010
+ query: z.ZodOptional<z.ZodNever>;
2011
+ }, z.core.$strip>;
2012
+ /**
2013
+ * Successfully created. Returns created user details.
2014
+ */
2100
2015
  export declare const zCreateUserResponse: z.ZodObject<{
2101
- email: z.ZodString;
2016
+ email: z.ZodEmail;
2102
2017
  first_name: z.ZodString;
2103
2018
  last_name: z.ZodString;
2104
- role: z.ZodEnum<["Administrator", "User"]>;
2105
- status: z.ZodEnum<["active", "inactive"]>;
2106
- id: z.ZodString;
2107
- date_created: z.ZodString;
2108
- }, "strip", z.ZodTypeAny, {
2109
- id: string;
2110
- role: "Administrator" | "User";
2111
- email: string;
2112
- status: "active" | "inactive";
2113
- first_name: string;
2114
- last_name: string;
2115
- date_created: string;
2116
- }, {
2117
- id: string;
2118
- role: "Administrator" | "User";
2119
- email: string;
2120
- status: "active" | "inactive";
2121
- first_name: string;
2122
- last_name: string;
2123
- date_created: string;
2124
- }>;
2019
+ role: z.ZodEnum<{
2020
+ Administrator: "Administrator";
2021
+ User: "User";
2022
+ }>;
2023
+ status: z.ZodEnum<{
2024
+ active: "active";
2025
+ inactive: "inactive";
2026
+ }>;
2027
+ id: z.ZodUUID;
2028
+ date_created: z.ZodISODateTime;
2029
+ }, z.core.$strip>;
2030
+ export declare const zDeleteUserData: z.ZodObject<{
2031
+ body: z.ZodOptional<z.ZodNever>;
2032
+ path: z.ZodObject<{
2033
+ user_id: z.ZodString;
2034
+ }, z.core.$strip>;
2035
+ query: z.ZodOptional<z.ZodNever>;
2036
+ }, z.core.$strip>;
2037
+ /**
2038
+ * User profile information
2039
+ */
2125
2040
  export declare const zDeleteUserResponse: z.ZodObject<{
2126
- email: z.ZodString;
2041
+ email: z.ZodEmail;
2127
2042
  first_name: z.ZodString;
2128
2043
  last_name: z.ZodString;
2129
- role: z.ZodEnum<["Administrator", "User"]>;
2130
- status: z.ZodEnum<["active", "inactive"]>;
2131
- id: z.ZodString;
2132
- date_created: z.ZodString;
2133
- }, "strip", z.ZodTypeAny, {
2134
- id: string;
2135
- role: "Administrator" | "User";
2136
- email: string;
2137
- status: "active" | "inactive";
2138
- first_name: string;
2139
- last_name: string;
2140
- date_created: string;
2141
- }, {
2142
- id: string;
2143
- role: "Administrator" | "User";
2144
- email: string;
2145
- status: "active" | "inactive";
2146
- first_name: string;
2147
- last_name: string;
2148
- date_created: string;
2149
- }>;
2044
+ role: z.ZodEnum<{
2045
+ Administrator: "Administrator";
2046
+ User: "User";
2047
+ }>;
2048
+ status: z.ZodEnum<{
2049
+ active: "active";
2050
+ inactive: "inactive";
2051
+ }>;
2052
+ id: z.ZodUUID;
2053
+ date_created: z.ZodISODateTime;
2054
+ }, z.core.$strip>;
2055
+ export declare const zGetUserData: z.ZodObject<{
2056
+ body: z.ZodOptional<z.ZodNever>;
2057
+ path: z.ZodObject<{
2058
+ user_id: z.ZodString;
2059
+ }, z.core.$strip>;
2060
+ query: z.ZodOptional<z.ZodNever>;
2061
+ }, z.core.$strip>;
2062
+ /**
2063
+ * User profile information
2064
+ */
2150
2065
  export declare const zGetUserResponse: z.ZodObject<{
2151
- email: z.ZodString;
2066
+ email: z.ZodEmail;
2152
2067
  first_name: z.ZodString;
2153
2068
  last_name: z.ZodString;
2154
- role: z.ZodEnum<["Administrator", "User"]>;
2155
- status: z.ZodEnum<["active", "inactive"]>;
2156
- id: z.ZodString;
2157
- date_created: z.ZodString;
2158
- }, "strip", z.ZodTypeAny, {
2159
- id: string;
2160
- role: "Administrator" | "User";
2161
- email: string;
2162
- status: "active" | "inactive";
2163
- first_name: string;
2164
- last_name: string;
2165
- date_created: string;
2166
- }, {
2167
- id: string;
2168
- role: "Administrator" | "User";
2169
- email: string;
2170
- status: "active" | "inactive";
2171
- first_name: string;
2172
- last_name: string;
2173
- date_created: string;
2174
- }>;
2069
+ role: z.ZodEnum<{
2070
+ Administrator: "Administrator";
2071
+ User: "User";
2072
+ }>;
2073
+ status: z.ZodEnum<{
2074
+ active: "active";
2075
+ inactive: "inactive";
2076
+ }>;
2077
+ id: z.ZodUUID;
2078
+ date_created: z.ZodISODateTime;
2079
+ }, z.core.$strip>;
2080
+ export declare const zUpdateUserData: z.ZodObject<{
2081
+ body: z.ZodObject<{
2082
+ email: z.ZodOptional<z.ZodEmail>;
2083
+ first_name: z.ZodOptional<z.ZodString>;
2084
+ last_name: z.ZodOptional<z.ZodString>;
2085
+ role: z.ZodOptional<z.ZodEnum<{
2086
+ Administrator: "Administrator";
2087
+ User: "User";
2088
+ }>>;
2089
+ status: z.ZodOptional<z.ZodEnum<{
2090
+ active: "active";
2091
+ inactive: "inactive";
2092
+ }>>;
2093
+ }, z.core.$strip>;
2094
+ path: z.ZodObject<{
2095
+ user_id: z.ZodString;
2096
+ }, z.core.$strip>;
2097
+ query: z.ZodOptional<z.ZodNever>;
2098
+ }, z.core.$strip>;
2099
+ /**
2100
+ * Successfully created. Returns created user details.
2101
+ */
2175
2102
  export declare const zUpdateUserResponse: z.ZodObject<{
2176
- email: z.ZodString;
2103
+ email: z.ZodEmail;
2177
2104
  first_name: z.ZodString;
2178
2105
  last_name: z.ZodString;
2179
- role: z.ZodEnum<["Administrator", "User"]>;
2180
- status: z.ZodEnum<["active", "inactive"]>;
2181
- id: z.ZodString;
2182
- date_created: z.ZodString;
2183
- }, "strip", z.ZodTypeAny, {
2184
- id: string;
2185
- role: "Administrator" | "User";
2186
- email: string;
2187
- status: "active" | "inactive";
2188
- first_name: string;
2189
- last_name: string;
2190
- date_created: string;
2191
- }, {
2192
- id: string;
2193
- role: "Administrator" | "User";
2194
- email: string;
2195
- status: "active" | "inactive";
2196
- first_name: string;
2197
- last_name: string;
2198
- date_created: string;
2199
- }>;
2106
+ role: z.ZodEnum<{
2107
+ Administrator: "Administrator";
2108
+ User: "User";
2109
+ }>;
2110
+ status: z.ZodEnum<{
2111
+ active: "active";
2112
+ inactive: "inactive";
2113
+ }>;
2114
+ id: z.ZodUUID;
2115
+ date_created: z.ZodISODateTime;
2116
+ }, z.core.$strip>;
2200
2117
  //# sourceMappingURL=zod.gen.d.ts.map