@cloudfleet/sdk 0.0.1-3818918 → 0.0.1-3a689d7

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