@cloudfleet/sdk 0.0.1-c034297 → 0.0.1-c229303
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +26 -2
- package/dist/@tanstack/react-query.gen.d.ts +446 -372
- package/dist/@tanstack/react-query.gen.d.ts.map +1 -1
- package/dist/@tanstack/react-query.gen.js +478 -392
- package/dist/@tanstack/react-query.gen.js.map +1 -1
- package/dist/client/client.gen.d.ts.map +1 -1
- package/dist/client/client.gen.js +1 -4
- package/dist/client/client.gen.js.map +1 -1
- package/dist/client/types.gen.d.ts +1 -1
- package/dist/client/types.gen.d.ts.map +1 -1
- package/dist/client/utils.gen.d.ts +2 -2
- package/dist/client/utils.gen.d.ts.map +1 -1
- package/dist/client/utils.gen.js +3 -3
- package/dist/client/utils.gen.js.map +1 -1
- package/dist/core/params.gen.js +4 -4
- package/dist/core/params.gen.js.map +1 -1
- package/dist/schemas.gen.d.ts +479 -225
- package/dist/schemas.gen.d.ts.map +1 -1
- package/dist/schemas.gen.js +642 -317
- package/dist/schemas.gen.js.map +1 -1
- package/dist/sdk.gen.d.ts +249 -211
- package/dist/sdk.gen.d.ts.map +1 -1
- package/dist/sdk.gen.js +357 -304
- package/dist/sdk.gen.js.map +1 -1
- package/dist/types.gen.d.ts +1113 -789
- package/dist/types.gen.d.ts.map +1 -1
- package/dist/zod.gen.d.ts +1697 -1474
- package/dist/zod.gen.d.ts.map +1 -1
- package/dist/zod.gen.js +503 -349
- package/dist/zod.gen.js.map +1 -1
- package/package.json +9 -12
package/dist/zod.gen.d.ts
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
import * as z from 'zod';
|
|
2
|
+
export declare const zBasicPriceConsentInput: z.ZodObject<{
|
|
3
|
+
decision: z.ZodEnum<{
|
|
4
|
+
rejected: "rejected";
|
|
5
|
+
accepted: "accepted";
|
|
6
|
+
}>;
|
|
7
|
+
}, z.core.$strip>;
|
|
8
|
+
export declare const zBasicPriceConsent: z.ZodObject<{
|
|
9
|
+
status: z.ZodEnum<{
|
|
10
|
+
pending: "pending";
|
|
11
|
+
rejected: "rejected";
|
|
12
|
+
accepted: "accepted";
|
|
13
|
+
not_applicable: "not_applicable";
|
|
14
|
+
}>;
|
|
15
|
+
decided_at: z.ZodOptional<z.ZodISODateTime>;
|
|
16
|
+
decided_by: z.ZodOptional<z.ZodString>;
|
|
17
|
+
}, z.core.$strip>;
|
|
2
18
|
export declare const zBillingContact: z.ZodObject<{
|
|
19
|
+
type: z.ZodEnum<{
|
|
20
|
+
business: "business";
|
|
21
|
+
personal: "personal";
|
|
22
|
+
}>;
|
|
3
23
|
company: z.ZodOptional<z.ZodString>;
|
|
4
24
|
address1: z.ZodOptional<z.ZodString>;
|
|
5
25
|
address2: z.ZodOptional<z.ZodString>;
|
|
@@ -168,22 +188,7 @@ export declare const zChart: z.ZodObject<{
|
|
|
168
188
|
name: z.ZodString;
|
|
169
189
|
namespace: z.ZodString;
|
|
170
190
|
chart: z.ZodString;
|
|
171
|
-
status: z.
|
|
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
|
-
}>;
|
|
191
|
+
status: z.ZodString;
|
|
187
192
|
version_current: z.ZodString;
|
|
188
193
|
created_at: z.ZodString;
|
|
189
194
|
updated_at: z.ZodString;
|
|
@@ -193,30 +198,47 @@ export declare const zChartUpdateInput: z.ZodObject<{
|
|
|
193
198
|
values: z.ZodString;
|
|
194
199
|
version_channel: z.ZodString;
|
|
195
200
|
}, z.core.$strip>;
|
|
201
|
+
/**
|
|
202
|
+
* Mutable cluster configuration. Applied as a full overwrite: any omitted field is reset to its default rather than left unchanged.
|
|
203
|
+
*/
|
|
196
204
|
export declare const zClusterCreateInput: z.ZodObject<{
|
|
197
205
|
name: z.ZodString;
|
|
198
|
-
tier: z.ZodEnum<{
|
|
206
|
+
tier: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
199
207
|
basic: "basic";
|
|
208
|
+
enterprise: "enterprise";
|
|
200
209
|
pro: "pro";
|
|
201
|
-
}>;
|
|
202
|
-
region: z.ZodDefault<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
210
|
}>>>;
|
|
208
|
-
version_channel: z.ZodDefault<z.ZodOptional<z.
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
211
|
+
version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
212
|
+
release_channel: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
213
|
+
stable: "stable";
|
|
214
|
+
rapid: "rapid";
|
|
215
|
+
extended: "extended";
|
|
213
216
|
}>>>;
|
|
217
|
+
features: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
218
|
+
gpu_sharing_strategy: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
219
|
+
none: "none";
|
|
220
|
+
mps: "mps";
|
|
221
|
+
time_slicing: "time_slicing";
|
|
222
|
+
}>>>;
|
|
223
|
+
gpu_max_shared_clients_per_gpu: z.ZodDefault<z.ZodOptional<z.ZodInt>>;
|
|
224
|
+
cilium_socket_lb_host_namespace_only: z.ZodOptional<z.ZodBoolean>;
|
|
225
|
+
}, z.core.$strip>>>;
|
|
226
|
+
region: z.ZodString;
|
|
227
|
+
networking: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
228
|
+
pod_cidr: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
229
|
+
service_cidr: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
230
|
+
dual_stack: z.ZodOptional<z.ZodBoolean>;
|
|
231
|
+
pod_cidr_v6: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
232
|
+
service_cidr_v6: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
233
|
+
}, z.core.$strip>>>;
|
|
214
234
|
}, z.core.$strip>;
|
|
215
235
|
export declare const zClusterJoinInformation: z.ZodObject<{
|
|
216
236
|
certificate_authority: z.ZodString;
|
|
217
237
|
endpoint: z.ZodURL;
|
|
218
238
|
cluster_dns: z.ZodString;
|
|
239
|
+
pod_cidr: z.ZodString;
|
|
219
240
|
auth_key: z.ZodString;
|
|
241
|
+
login_server: z.ZodString;
|
|
220
242
|
bootstrap_token: z.ZodString;
|
|
221
243
|
versions: z.ZodObject<{
|
|
222
244
|
kubernetes: z.ZodString;
|
|
@@ -230,23 +252,41 @@ export declare const zClusterJoinInformation: z.ZodObject<{
|
|
|
230
252
|
gcp_workload_identity_provider: z.ZodString;
|
|
231
253
|
}, z.core.$strip>;
|
|
232
254
|
}, z.core.$strip>;
|
|
255
|
+
/**
|
|
256
|
+
* Mutable cluster configuration. Applied as a full overwrite: any omitted field is reset to its default rather than left unchanged.
|
|
257
|
+
*/
|
|
233
258
|
export declare const zCluster: z.ZodObject<{
|
|
234
259
|
name: z.ZodString;
|
|
235
|
-
tier: z.ZodEnum<{
|
|
260
|
+
tier: z.ZodDefault<z.ZodEnum<{
|
|
236
261
|
basic: "basic";
|
|
262
|
+
enterprise: "enterprise";
|
|
237
263
|
pro: "pro";
|
|
238
|
-
}
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
}
|
|
264
|
+
}>>;
|
|
265
|
+
version_channel: z.ZodDefault<z.ZodString>;
|
|
266
|
+
release_channel: z.ZodDefault<z.ZodEnum<{
|
|
267
|
+
stable: "stable";
|
|
268
|
+
rapid: "rapid";
|
|
269
|
+
extended: "extended";
|
|
270
|
+
}>>;
|
|
271
|
+
features: z.ZodDefault<z.ZodObject<{
|
|
272
|
+
gpu_sharing_strategy: z.ZodDefault<z.ZodEnum<{
|
|
273
|
+
none: "none";
|
|
274
|
+
mps: "mps";
|
|
275
|
+
time_slicing: "time_slicing";
|
|
276
|
+
}>>;
|
|
277
|
+
gpu_max_shared_clients_per_gpu: z.ZodDefault<z.ZodInt>;
|
|
278
|
+
cilium_socket_lb_host_namespace_only: z.ZodBoolean;
|
|
279
|
+
}, z.core.$strip>>;
|
|
280
|
+
region: z.ZodString;
|
|
281
|
+
networking: z.ZodDefault<z.ZodObject<{
|
|
282
|
+
pod_cidr: z.ZodDefault<z.ZodString>;
|
|
283
|
+
service_cidr: z.ZodDefault<z.ZodString>;
|
|
284
|
+
dual_stack: z.ZodBoolean;
|
|
285
|
+
pod_cidr_v6: z.ZodDefault<z.ZodString>;
|
|
286
|
+
service_cidr_v6: z.ZodDefault<z.ZodString>;
|
|
287
|
+
}, z.core.$strip>>;
|
|
245
288
|
id: z.ZodUUID;
|
|
246
289
|
status: z.ZodEnum<{
|
|
247
|
-
deleted: "deleted";
|
|
248
|
-
failed: "failed";
|
|
249
|
-
active: "active";
|
|
250
290
|
disabled: "disabled";
|
|
251
291
|
creating: "creating";
|
|
252
292
|
deployed: "deployed";
|
|
@@ -262,17 +302,37 @@ export declare const zCluster: z.ZodObject<{
|
|
|
262
302
|
version_current: z.ZodOptional<z.ZodString>;
|
|
263
303
|
created_at: z.ZodOptional<z.ZodString>;
|
|
264
304
|
updated_at: z.ZodOptional<z.ZodString>;
|
|
265
|
-
ready: z.
|
|
266
|
-
version_channel: z.ZodOptional<z.ZodString>;
|
|
305
|
+
ready: z.ZodBoolean;
|
|
267
306
|
}, z.core.$strip>;
|
|
307
|
+
/**
|
|
308
|
+
* Mutable cluster configuration. Applied as a full overwrite: any omitted field is reset to its default rather than left unchanged.
|
|
309
|
+
*/
|
|
268
310
|
export declare const zClusterUpdateInput: z.ZodObject<{
|
|
269
|
-
name: z.
|
|
270
|
-
tier: z.ZodEnum<{
|
|
311
|
+
name: z.ZodString;
|
|
312
|
+
tier: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
271
313
|
basic: "basic";
|
|
314
|
+
enterprise: "enterprise";
|
|
272
315
|
pro: "pro";
|
|
273
|
-
}
|
|
274
|
-
version_channel: z.ZodOptional<z.ZodString
|
|
316
|
+
}>>>;
|
|
317
|
+
version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
318
|
+
release_channel: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
319
|
+
stable: "stable";
|
|
320
|
+
rapid: "rapid";
|
|
321
|
+
extended: "extended";
|
|
322
|
+
}>>>;
|
|
323
|
+
features: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
324
|
+
gpu_sharing_strategy: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
325
|
+
none: "none";
|
|
326
|
+
mps: "mps";
|
|
327
|
+
time_slicing: "time_slicing";
|
|
328
|
+
}>>>;
|
|
329
|
+
gpu_max_shared_clients_per_gpu: z.ZodDefault<z.ZodOptional<z.ZodInt>>;
|
|
330
|
+
cilium_socket_lb_host_namespace_only: z.ZodOptional<z.ZodBoolean>;
|
|
331
|
+
}, z.core.$strip>>>;
|
|
275
332
|
}, z.core.$strip>;
|
|
333
|
+
/**
|
|
334
|
+
* Mutable fleet configuration. Applied as a full overwrite: any omitted field is reset to its default rather than left unchanged.
|
|
335
|
+
*/
|
|
276
336
|
export declare const zFleetCreateInput: z.ZodObject<{
|
|
277
337
|
limits: z.ZodOptional<z.ZodObject<{
|
|
278
338
|
cpu: z.ZodOptional<z.ZodInt>;
|
|
@@ -289,7 +349,7 @@ export declare const zFleetCreateInput: z.ZodObject<{
|
|
|
289
349
|
enabled: z.ZodBoolean;
|
|
290
350
|
controllerRoleArn: z.ZodOptional<z.ZodString>;
|
|
291
351
|
}, z.core.$strip>>;
|
|
292
|
-
constraints: z.ZodOptional<z.ZodObject<{
|
|
352
|
+
constraints: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
293
353
|
'karpenter.sh/capacity-type': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
294
354
|
"on-demand": "on-demand";
|
|
295
355
|
spot: "spot";
|
|
@@ -298,7 +358,7 @@ export declare const zFleetCreateInput: z.ZodObject<{
|
|
|
298
358
|
amd64: "amd64";
|
|
299
359
|
arm64: "arm64";
|
|
300
360
|
}>>>>;
|
|
301
|
-
'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
361
|
+
'cfke.io/instance-family': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
302
362
|
p3: "p3";
|
|
303
363
|
cx: "cx";
|
|
304
364
|
h1: "h1";
|
|
@@ -457,8 +517,8 @@ export declare const zFleetCreateInput: z.ZodObject<{
|
|
|
457
517
|
x8g: "x8g";
|
|
458
518
|
z1d: "z1d";
|
|
459
519
|
z3: "z3";
|
|
460
|
-
}
|
|
461
|
-
'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
520
|
+
}>>>>;
|
|
521
|
+
'topology.kubernetes.io/region': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
462
522
|
"africa-south1": "africa-south1";
|
|
463
523
|
"ap-northeast-1": "ap-northeast-1";
|
|
464
524
|
"ap-northeast-2": "ap-northeast-2";
|
|
@@ -523,14 +583,17 @@ export declare const zFleetCreateInput: z.ZodObject<{
|
|
|
523
583
|
"us-west2": "us-west2";
|
|
524
584
|
"us-west3": "us-west3";
|
|
525
585
|
"us-west4": "us-west4";
|
|
526
|
-
}
|
|
527
|
-
}, z.core.$strip
|
|
586
|
+
}>>>>;
|
|
587
|
+
}, z.core.$strip>>>;
|
|
528
588
|
scalingProfile: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
529
589
|
aggressive: "aggressive";
|
|
530
590
|
conservative: "conservative";
|
|
531
591
|
}>>>;
|
|
532
592
|
id: z.ZodString;
|
|
533
593
|
}, z.core.$strip>;
|
|
594
|
+
/**
|
|
595
|
+
* Mutable fleet configuration. Applied as a full overwrite: any omitted field is reset to its default rather than left unchanged.
|
|
596
|
+
*/
|
|
534
597
|
export declare const zFleet: z.ZodObject<{
|
|
535
598
|
limits: z.ZodOptional<z.ZodObject<{
|
|
536
599
|
cpu: z.ZodOptional<z.ZodInt>;
|
|
@@ -547,16 +610,16 @@ export declare const zFleet: z.ZodObject<{
|
|
|
547
610
|
enabled: z.ZodBoolean;
|
|
548
611
|
controllerRoleArn: z.ZodOptional<z.ZodString>;
|
|
549
612
|
}, z.core.$strip>>;
|
|
550
|
-
constraints: z.
|
|
551
|
-
'karpenter.sh/capacity-type': z.ZodDefault<z.
|
|
613
|
+
constraints: z.ZodDefault<z.ZodObject<{
|
|
614
|
+
'karpenter.sh/capacity-type': z.ZodDefault<z.ZodArray<z.ZodEnum<{
|
|
552
615
|
"on-demand": "on-demand";
|
|
553
616
|
spot: "spot";
|
|
554
|
-
}
|
|
555
|
-
'kubernetes.io/arch': z.ZodDefault<z.
|
|
617
|
+
}>>>;
|
|
618
|
+
'kubernetes.io/arch': z.ZodDefault<z.ZodArray<z.ZodEnum<{
|
|
556
619
|
amd64: "amd64";
|
|
557
620
|
arm64: "arm64";
|
|
558
|
-
}
|
|
559
|
-
'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
621
|
+
}>>>;
|
|
622
|
+
'cfke.io/instance-family': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
560
623
|
p3: "p3";
|
|
561
624
|
cx: "cx";
|
|
562
625
|
h1: "h1";
|
|
@@ -715,8 +778,8 @@ export declare const zFleet: z.ZodObject<{
|
|
|
715
778
|
x8g: "x8g";
|
|
716
779
|
z1d: "z1d";
|
|
717
780
|
z3: "z3";
|
|
718
|
-
}
|
|
719
|
-
'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
781
|
+
}>>>>;
|
|
782
|
+
'topology.kubernetes.io/region': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
720
783
|
"africa-south1": "africa-south1";
|
|
721
784
|
"ap-northeast-1": "ap-northeast-1";
|
|
722
785
|
"ap-northeast-2": "ap-northeast-2";
|
|
@@ -781,14 +844,21 @@ export declare const zFleet: z.ZodObject<{
|
|
|
781
844
|
"us-west2": "us-west2";
|
|
782
845
|
"us-west3": "us-west3";
|
|
783
846
|
"us-west4": "us-west4";
|
|
784
|
-
}
|
|
847
|
+
}>>>>;
|
|
785
848
|
}, z.core.$strip>>;
|
|
786
849
|
scalingProfile: z.ZodDefault<z.ZodEnum<{
|
|
787
850
|
aggressive: "aggressive";
|
|
788
851
|
conservative: "conservative";
|
|
789
852
|
}>>;
|
|
790
853
|
id: z.ZodString;
|
|
854
|
+
ready: z.ZodBoolean;
|
|
855
|
+
status_message: z.ZodOptional<z.ZodString>;
|
|
856
|
+
created_at: z.ZodString;
|
|
857
|
+
updated_at: z.ZodString;
|
|
791
858
|
}, z.core.$strip>;
|
|
859
|
+
/**
|
|
860
|
+
* Mutable fleet configuration. Applied as a full overwrite: any omitted field is reset to its default rather than left unchanged.
|
|
861
|
+
*/
|
|
792
862
|
export declare const zFleetUpdateInput: z.ZodObject<{
|
|
793
863
|
limits: z.ZodOptional<z.ZodObject<{
|
|
794
864
|
cpu: z.ZodOptional<z.ZodInt>;
|
|
@@ -805,16 +875,16 @@ export declare const zFleetUpdateInput: z.ZodObject<{
|
|
|
805
875
|
enabled: z.ZodBoolean;
|
|
806
876
|
controllerRoleArn: z.ZodOptional<z.ZodString>;
|
|
807
877
|
}, z.core.$strip>>;
|
|
808
|
-
constraints: z.ZodOptional<z.ZodObject<{
|
|
809
|
-
'karpenter.sh/capacity-type': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
878
|
+
constraints: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
879
|
+
'karpenter.sh/capacity-type': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
810
880
|
"on-demand": "on-demand";
|
|
811
881
|
spot: "spot";
|
|
812
|
-
}
|
|
813
|
-
'kubernetes.io/arch': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
882
|
+
}>>>>;
|
|
883
|
+
'kubernetes.io/arch': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
814
884
|
amd64: "amd64";
|
|
815
885
|
arm64: "arm64";
|
|
816
|
-
}
|
|
817
|
-
'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
886
|
+
}>>>>;
|
|
887
|
+
'cfke.io/instance-family': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
818
888
|
p3: "p3";
|
|
819
889
|
cx: "cx";
|
|
820
890
|
h1: "h1";
|
|
@@ -973,8 +1043,8 @@ export declare const zFleetUpdateInput: z.ZodObject<{
|
|
|
973
1043
|
x8g: "x8g";
|
|
974
1044
|
z1d: "z1d";
|
|
975
1045
|
z3: "z3";
|
|
976
|
-
}
|
|
977
|
-
'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
1046
|
+
}>>>>;
|
|
1047
|
+
'topology.kubernetes.io/region': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
978
1048
|
"africa-south1": "africa-south1";
|
|
979
1049
|
"ap-northeast-1": "ap-northeast-1";
|
|
980
1050
|
"ap-northeast-2": "ap-northeast-2";
|
|
@@ -1039,12 +1109,19 @@ export declare const zFleetUpdateInput: z.ZodObject<{
|
|
|
1039
1109
|
"us-west2": "us-west2";
|
|
1040
1110
|
"us-west3": "us-west3";
|
|
1041
1111
|
"us-west4": "us-west4";
|
|
1042
|
-
}
|
|
1043
|
-
}, z.core.$strip
|
|
1044
|
-
scalingProfile: z.ZodEnum<{
|
|
1112
|
+
}>>>>;
|
|
1113
|
+
}, z.core.$strip>>>;
|
|
1114
|
+
scalingProfile: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
1045
1115
|
aggressive: "aggressive";
|
|
1046
1116
|
conservative: "conservative";
|
|
1047
|
-
}
|
|
1117
|
+
}>>>;
|
|
1118
|
+
}, z.core.$strip>;
|
|
1119
|
+
export declare const zInviteCreateInput: z.ZodObject<{
|
|
1120
|
+
email: z.ZodEmail;
|
|
1121
|
+
role: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
1122
|
+
Administrator: "Administrator";
|
|
1123
|
+
User: "User";
|
|
1124
|
+
}>>>;
|
|
1048
1125
|
}, z.core.$strip>;
|
|
1049
1126
|
export declare const zInvite: z.ZodObject<{
|
|
1050
1127
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -1052,6 +1129,10 @@ export declare const zInvite: z.ZodObject<{
|
|
|
1052
1129
|
date_created: z.ZodISODateTime;
|
|
1053
1130
|
email: z.ZodOptional<z.ZodEmail>;
|
|
1054
1131
|
code: z.ZodOptional<z.ZodString>;
|
|
1132
|
+
role: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
1133
|
+
Administrator: "Administrator";
|
|
1134
|
+
User: "User";
|
|
1135
|
+
}>>>;
|
|
1055
1136
|
}, z.core.$strip>;
|
|
1056
1137
|
export declare const zInvoice: z.ZodObject<{
|
|
1057
1138
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -1091,21 +1172,34 @@ export declare const zMarketplaceListing: z.ZodObject<{
|
|
|
1091
1172
|
}, z.core.$strip>>;
|
|
1092
1173
|
}, z.core.$strip>;
|
|
1093
1174
|
export declare const zOrganizationCreateInput: z.ZodObject<{
|
|
1175
|
+
type: z.ZodEnum<{
|
|
1176
|
+
business: "business";
|
|
1177
|
+
personal: "personal";
|
|
1178
|
+
}>;
|
|
1094
1179
|
email: z.ZodEmail;
|
|
1095
1180
|
first_name: z.ZodString;
|
|
1096
1181
|
last_name: z.ZodString;
|
|
1097
1182
|
company_name: z.ZodString;
|
|
1098
1183
|
password: z.ZodString;
|
|
1099
1184
|
}, z.core.$strip>;
|
|
1185
|
+
export declare const zOrganizationCreateOutput: z.ZodObject<{
|
|
1186
|
+
id: z.ZodString;
|
|
1187
|
+
}, z.core.$strip>;
|
|
1100
1188
|
export declare const zOrganization: z.ZodObject<{
|
|
1101
1189
|
id: z.ZodUUID;
|
|
1102
1190
|
name: z.ZodOptional<z.ZodString>;
|
|
1191
|
+
type: z.ZodEnum<{
|
|
1192
|
+
business: "business";
|
|
1193
|
+
personal: "personal";
|
|
1194
|
+
}>;
|
|
1103
1195
|
date_created: z.ZodISODateTime;
|
|
1104
1196
|
quota: z.ZodObject<{
|
|
1105
1197
|
basic_clusters_max: z.ZodInt;
|
|
1106
1198
|
basic_clusters_available: z.ZodInt;
|
|
1107
1199
|
pro_clusters_max: z.ZodInt;
|
|
1108
1200
|
pro_clusters_available: z.ZodInt;
|
|
1201
|
+
enterprise_clusters_max: z.ZodInt;
|
|
1202
|
+
enterprise_clusters_available: z.ZodInt;
|
|
1109
1203
|
fleets_max: z.ZodInt;
|
|
1110
1204
|
cluster_tiers: z.ZodArray<z.ZodString>;
|
|
1111
1205
|
regions: z.ZodArray<z.ZodString>;
|
|
@@ -1120,33 +1214,35 @@ export declare const zOrganization: z.ZodObject<{
|
|
|
1120
1214
|
closed: "closed";
|
|
1121
1215
|
suspended: "suspended";
|
|
1122
1216
|
}>;
|
|
1217
|
+
verification: z.ZodEnum<{
|
|
1218
|
+
none: "none";
|
|
1219
|
+
submitted: "submitted";
|
|
1220
|
+
verified: "verified";
|
|
1221
|
+
}>;
|
|
1123
1222
|
}, z.core.$strip>;
|
|
1124
1223
|
export declare const zPaymentMethod: z.ZodObject<{
|
|
1125
|
-
id: z.
|
|
1126
|
-
setup: z.ZodBoolean;
|
|
1224
|
+
id: z.ZodString;
|
|
1127
1225
|
type: z.ZodEnum<{
|
|
1128
1226
|
card: "card";
|
|
1227
|
+
sepa_debit: "sepa_debit";
|
|
1228
|
+
bank_transfer: "bank_transfer";
|
|
1129
1229
|
}>;
|
|
1130
1230
|
last4: z.ZodString;
|
|
1131
1231
|
exp_month: z.ZodInt;
|
|
1132
1232
|
exp_year: z.ZodInt;
|
|
1133
|
-
brand: z.
|
|
1134
|
-
|
|
1135
|
-
|
|
1136
|
-
|
|
1137
|
-
|
|
1138
|
-
eftpos_au: "eftpos_au";
|
|
1139
|
-
jcb: "jcb";
|
|
1140
|
-
mastercard: "mastercard";
|
|
1141
|
-
unionpay: "unionpay";
|
|
1142
|
-
visa: "visa";
|
|
1143
|
-
}>;
|
|
1233
|
+
brand: z.ZodString;
|
|
1234
|
+
iban: z.ZodString;
|
|
1235
|
+
bic: z.ZodString;
|
|
1236
|
+
account_holder_name: z.ZodString;
|
|
1237
|
+
is_default: z.ZodBoolean;
|
|
1144
1238
|
}, z.core.$strip>;
|
|
1145
1239
|
export declare const zPlatformQuota: z.ZodObject<{
|
|
1146
1240
|
basic_clusters_max: z.ZodInt;
|
|
1147
1241
|
basic_clusters_available: z.ZodInt;
|
|
1148
1242
|
pro_clusters_max: z.ZodInt;
|
|
1149
1243
|
pro_clusters_available: z.ZodInt;
|
|
1244
|
+
enterprise_clusters_max: z.ZodInt;
|
|
1245
|
+
enterprise_clusters_available: z.ZodInt;
|
|
1150
1246
|
fleets_max: z.ZodInt;
|
|
1151
1247
|
cluster_tiers: z.ZodArray<z.ZodString>;
|
|
1152
1248
|
regions: z.ZodArray<z.ZodString>;
|
|
@@ -1217,42 +1313,6 @@ export declare const zTicketCreateInput: z.ZodObject<{
|
|
|
1217
1313
|
body: z.ZodString;
|
|
1218
1314
|
properties: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1219
1315
|
}, z.core.$strip>;
|
|
1220
|
-
export declare const zTicketListResponse: z.ZodObject<{
|
|
1221
|
-
items: z.ZodArray<z.ZodObject<{
|
|
1222
|
-
id: z.ZodString;
|
|
1223
|
-
status: z.ZodEnum<{
|
|
1224
|
-
closed: "closed";
|
|
1225
|
-
waiting_on_us: "waiting_on_us";
|
|
1226
|
-
waiting_on_user: "waiting_on_user";
|
|
1227
|
-
}>;
|
|
1228
|
-
category: z.ZodEnum<{
|
|
1229
|
-
billing: "billing";
|
|
1230
|
-
technical: "technical";
|
|
1231
|
-
general: "general";
|
|
1232
|
-
}>;
|
|
1233
|
-
summary: z.ZodString;
|
|
1234
|
-
closed_at: z.ZodOptional<z.ZodISODateTime>;
|
|
1235
|
-
date_created: z.ZodISODateTime;
|
|
1236
|
-
date_updated: z.ZodISODateTime;
|
|
1237
|
-
messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1238
|
-
id: z.ZodString;
|
|
1239
|
-
type: z.ZodEnum<{
|
|
1240
|
-
customer_reply: "customer_reply";
|
|
1241
|
-
agent_reply: "agent_reply";
|
|
1242
|
-
}>;
|
|
1243
|
-
body: z.ZodString;
|
|
1244
|
-
author_first_name: z.ZodOptional<z.ZodString>;
|
|
1245
|
-
author_last_name: z.ZodOptional<z.ZodString>;
|
|
1246
|
-
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1247
|
-
id: z.ZodString;
|
|
1248
|
-
filename: z.ZodString;
|
|
1249
|
-
content_type: z.ZodString;
|
|
1250
|
-
size: z.ZodInt;
|
|
1251
|
-
}, z.core.$strip>>>;
|
|
1252
|
-
date_created: z.ZodISODateTime;
|
|
1253
|
-
}, z.core.$strip>>>;
|
|
1254
|
-
}, z.core.$strip>>;
|
|
1255
|
-
}, z.core.$strip>;
|
|
1256
1316
|
export declare const zTicketMessageInput: z.ZodObject<{
|
|
1257
1317
|
body: z.ZodString;
|
|
1258
1318
|
}, z.core.$strip>;
|
|
@@ -1333,26 +1393,58 @@ export declare const zTokenUpdateInput: z.ZodObject<{
|
|
|
1333
1393
|
}, z.core.$strip>;
|
|
1334
1394
|
export declare const zUsageFacets: z.ZodObject<{
|
|
1335
1395
|
cluster_id: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1336
|
-
product: z.ZodOptional<z.ZodArray<z.
|
|
1396
|
+
product: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
1397
|
+
cfke_controlplane_basic: "cfke_controlplane_basic";
|
|
1398
|
+
cfke_controlplane_pro: "cfke_controlplane_pro";
|
|
1399
|
+
cfke_controlplane_enterprise: "cfke_controlplane_enterprise";
|
|
1400
|
+
cfke_connected_nodes_basic: "cfke_connected_nodes_basic";
|
|
1401
|
+
cfke_connected_nodes_pro: "cfke_connected_nodes_pro";
|
|
1402
|
+
cfke_connected_nodes_enterprise: "cfke_connected_nodes_enterprise";
|
|
1403
|
+
cfcr_storage: "cfcr_storage";
|
|
1404
|
+
}>>>;
|
|
1337
1405
|
}, z.core.$strip>;
|
|
1338
1406
|
export declare const zUsageResponse: z.ZodObject<{
|
|
1339
1407
|
data: z.ZodArray<z.ZodObject<{
|
|
1340
1408
|
hour: z.ZodString;
|
|
1341
1409
|
cluster_id: z.ZodString;
|
|
1342
|
-
product: z.
|
|
1410
|
+
product: z.ZodEnum<{
|
|
1411
|
+
cfke_controlplane_basic: "cfke_controlplane_basic";
|
|
1412
|
+
cfke_controlplane_pro: "cfke_controlplane_pro";
|
|
1413
|
+
cfke_controlplane_enterprise: "cfke_controlplane_enterprise";
|
|
1414
|
+
cfke_connected_nodes_basic: "cfke_connected_nodes_basic";
|
|
1415
|
+
cfke_connected_nodes_pro: "cfke_connected_nodes_pro";
|
|
1416
|
+
cfke_connected_nodes_enterprise: "cfke_connected_nodes_enterprise";
|
|
1417
|
+
cfcr_storage: "cfcr_storage";
|
|
1418
|
+
}>;
|
|
1343
1419
|
value: z.ZodNumber;
|
|
1344
1420
|
price: z.ZodNumber;
|
|
1345
1421
|
total: z.ZodNumber;
|
|
1346
1422
|
}, z.core.$strip>>;
|
|
1347
1423
|
facets: z.ZodObject<{
|
|
1348
1424
|
cluster_id: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1349
|
-
product: z.ZodOptional<z.ZodArray<z.
|
|
1425
|
+
product: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
1426
|
+
cfke_controlplane_basic: "cfke_controlplane_basic";
|
|
1427
|
+
cfke_controlplane_pro: "cfke_controlplane_pro";
|
|
1428
|
+
cfke_controlplane_enterprise: "cfke_controlplane_enterprise";
|
|
1429
|
+
cfke_connected_nodes_basic: "cfke_connected_nodes_basic";
|
|
1430
|
+
cfke_connected_nodes_pro: "cfke_connected_nodes_pro";
|
|
1431
|
+
cfke_connected_nodes_enterprise: "cfke_connected_nodes_enterprise";
|
|
1432
|
+
cfcr_storage: "cfcr_storage";
|
|
1433
|
+
}>>>;
|
|
1350
1434
|
}, z.core.$strip>;
|
|
1351
1435
|
}, z.core.$strip>;
|
|
1352
1436
|
export declare const zUsage: z.ZodObject<{
|
|
1353
1437
|
hour: z.ZodString;
|
|
1354
1438
|
cluster_id: z.ZodString;
|
|
1355
|
-
product: z.
|
|
1439
|
+
product: z.ZodEnum<{
|
|
1440
|
+
cfke_controlplane_basic: "cfke_controlplane_basic";
|
|
1441
|
+
cfke_controlplane_pro: "cfke_controlplane_pro";
|
|
1442
|
+
cfke_controlplane_enterprise: "cfke_controlplane_enterprise";
|
|
1443
|
+
cfke_connected_nodes_basic: "cfke_connected_nodes_basic";
|
|
1444
|
+
cfke_connected_nodes_pro: "cfke_connected_nodes_pro";
|
|
1445
|
+
cfke_connected_nodes_enterprise: "cfke_connected_nodes_enterprise";
|
|
1446
|
+
cfcr_storage: "cfcr_storage";
|
|
1447
|
+
}>;
|
|
1356
1448
|
value: z.ZodNumber;
|
|
1357
1449
|
price: z.ZodNumber;
|
|
1358
1450
|
total: z.ZodNumber;
|
|
@@ -1363,14 +1455,6 @@ export declare const zUserCreateInput: z.ZodObject<{
|
|
|
1363
1455
|
last_name: z.ZodString;
|
|
1364
1456
|
code: z.ZodString;
|
|
1365
1457
|
password: z.ZodString;
|
|
1366
|
-
status: z.ZodOptional<z.ZodEnum<{
|
|
1367
|
-
active: "active";
|
|
1368
|
-
inactive: "inactive";
|
|
1369
|
-
}>>;
|
|
1370
|
-
role: z.ZodOptional<z.ZodEnum<{
|
|
1371
|
-
Administrator: "Administrator";
|
|
1372
|
-
User: "User";
|
|
1373
|
-
}>>;
|
|
1374
1458
|
}, z.core.$strip>;
|
|
1375
1459
|
export declare const zUser: z.ZodObject<{
|
|
1376
1460
|
email: z.ZodEmail;
|
|
@@ -1400,630 +1484,684 @@ export declare const zUserUpdateInput: z.ZodObject<{
|
|
|
1400
1484
|
inactive: "inactive";
|
|
1401
1485
|
}>>;
|
|
1402
1486
|
}, z.core.$strip>;
|
|
1403
|
-
export declare const
|
|
1404
|
-
|
|
1405
|
-
hourly: "hourly";
|
|
1406
|
-
daily: "daily";
|
|
1407
|
-
monthly: "monthly";
|
|
1408
|
-
}>>>;
|
|
1487
|
+
export declare const zListUserOrganizationsPath: z.ZodObject<{
|
|
1488
|
+
email: z.ZodString;
|
|
1409
1489
|
}, z.core.$strip>;
|
|
1410
1490
|
/**
|
|
1411
|
-
*
|
|
1491
|
+
* An array of organizations the user belongs to.
|
|
1412
1492
|
*/
|
|
1413
|
-
export declare const
|
|
1414
|
-
|
|
1415
|
-
|
|
1416
|
-
|
|
1417
|
-
product: z.ZodString;
|
|
1418
|
-
value: z.ZodNumber;
|
|
1419
|
-
price: z.ZodNumber;
|
|
1420
|
-
total: z.ZodNumber;
|
|
1421
|
-
}, z.core.$strip>>;
|
|
1422
|
-
facets: z.ZodObject<{
|
|
1423
|
-
cluster_id: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1424
|
-
product: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1425
|
-
}, z.core.$strip>;
|
|
1426
|
-
}, z.core.$strip>;
|
|
1493
|
+
export declare const zListUserOrganizationsResponse: z.ZodArray<z.ZodObject<{
|
|
1494
|
+
realm: z.ZodOptional<z.ZodString>;
|
|
1495
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
1496
|
+
}, z.core.$strip>>;
|
|
1427
1497
|
/**
|
|
1428
|
-
*
|
|
1498
|
+
* An array of users
|
|
1429
1499
|
*/
|
|
1430
|
-
export declare const
|
|
1431
|
-
|
|
1432
|
-
|
|
1433
|
-
|
|
1434
|
-
|
|
1500
|
+
export declare const zListUsersResponse: z.ZodArray<z.ZodObject<{
|
|
1501
|
+
email: z.ZodEmail;
|
|
1502
|
+
first_name: z.ZodString;
|
|
1503
|
+
last_name: z.ZodString;
|
|
1504
|
+
role: z.ZodEnum<{
|
|
1505
|
+
Administrator: "Administrator";
|
|
1506
|
+
User: "User";
|
|
1435
1507
|
}>;
|
|
1436
|
-
|
|
1437
|
-
|
|
1438
|
-
|
|
1439
|
-
brand: z.ZodEnum<{
|
|
1440
|
-
unknown: "unknown";
|
|
1441
|
-
amex: "amex";
|
|
1442
|
-
diners: "diners";
|
|
1443
|
-
discover: "discover";
|
|
1444
|
-
eftpos_au: "eftpos_au";
|
|
1445
|
-
jcb: "jcb";
|
|
1446
|
-
mastercard: "mastercard";
|
|
1447
|
-
unionpay: "unionpay";
|
|
1448
|
-
visa: "visa";
|
|
1508
|
+
status: z.ZodEnum<{
|
|
1509
|
+
active: "active";
|
|
1510
|
+
inactive: "inactive";
|
|
1449
1511
|
}>;
|
|
1512
|
+
id: z.ZodUUID;
|
|
1513
|
+
date_created: z.ZodISODateTime;
|
|
1514
|
+
}, z.core.$strip>>;
|
|
1515
|
+
export declare const zCreateUserBody: z.ZodObject<{
|
|
1516
|
+
email: z.ZodEmail;
|
|
1517
|
+
first_name: z.ZodString;
|
|
1518
|
+
last_name: z.ZodString;
|
|
1519
|
+
code: z.ZodString;
|
|
1520
|
+
password: z.ZodString;
|
|
1450
1521
|
}, z.core.$strip>;
|
|
1451
1522
|
/**
|
|
1452
|
-
*
|
|
1453
|
-
*
|
|
1523
|
+
* Successfully created. Returns created user details.
|
|
1454
1524
|
*/
|
|
1455
|
-
export declare const
|
|
1456
|
-
|
|
1525
|
+
export declare const zCreateUserResponse: z.ZodObject<{
|
|
1526
|
+
email: z.ZodEmail;
|
|
1527
|
+
first_name: z.ZodString;
|
|
1528
|
+
last_name: z.ZodString;
|
|
1529
|
+
role: z.ZodEnum<{
|
|
1530
|
+
Administrator: "Administrator";
|
|
1531
|
+
User: "User";
|
|
1532
|
+
}>;
|
|
1533
|
+
status: z.ZodEnum<{
|
|
1534
|
+
active: "active";
|
|
1535
|
+
inactive: "inactive";
|
|
1536
|
+
}>;
|
|
1537
|
+
id: z.ZodUUID;
|
|
1538
|
+
date_created: z.ZodISODateTime;
|
|
1539
|
+
}, z.core.$strip>;
|
|
1540
|
+
export declare const zDeleteUserPath: z.ZodObject<{
|
|
1541
|
+
user_id: z.ZodString;
|
|
1457
1542
|
}, z.core.$strip>;
|
|
1458
1543
|
/**
|
|
1459
|
-
*
|
|
1544
|
+
* User profile information
|
|
1460
1545
|
*/
|
|
1461
|
-
export declare const
|
|
1462
|
-
|
|
1463
|
-
|
|
1464
|
-
|
|
1465
|
-
|
|
1466
|
-
|
|
1467
|
-
|
|
1468
|
-
|
|
1469
|
-
|
|
1470
|
-
|
|
1471
|
-
|
|
1546
|
+
export declare const zDeleteUserResponse: z.ZodObject<{
|
|
1547
|
+
email: z.ZodEmail;
|
|
1548
|
+
first_name: z.ZodString;
|
|
1549
|
+
last_name: z.ZodString;
|
|
1550
|
+
role: z.ZodEnum<{
|
|
1551
|
+
Administrator: "Administrator";
|
|
1552
|
+
User: "User";
|
|
1553
|
+
}>;
|
|
1554
|
+
status: z.ZodEnum<{
|
|
1555
|
+
active: "active";
|
|
1556
|
+
inactive: "inactive";
|
|
1557
|
+
}>;
|
|
1558
|
+
id: z.ZodUUID;
|
|
1559
|
+
date_created: z.ZodISODateTime;
|
|
1560
|
+
}, z.core.$strip>;
|
|
1561
|
+
export declare const zGetUserPath: z.ZodObject<{
|
|
1562
|
+
user_id: z.ZodString;
|
|
1563
|
+
}, z.core.$strip>;
|
|
1472
1564
|
/**
|
|
1473
|
-
*
|
|
1565
|
+
* User profile information
|
|
1474
1566
|
*/
|
|
1475
|
-
export declare const
|
|
1476
|
-
company: z.ZodOptional<z.ZodString>;
|
|
1477
|
-
address1: z.ZodOptional<z.ZodString>;
|
|
1478
|
-
address2: z.ZodOptional<z.ZodString>;
|
|
1479
|
-
postalCode: z.ZodOptional<z.ZodString>;
|
|
1480
|
-
city: z.ZodOptional<z.ZodString>;
|
|
1481
|
-
state: z.ZodOptional<z.ZodString>;
|
|
1482
|
-
country: z.ZodOptional<z.ZodString>;
|
|
1483
|
-
phone: z.ZodOptional<z.ZodString>;
|
|
1567
|
+
export declare const zGetUserResponse: z.ZodObject<{
|
|
1484
1568
|
email: z.ZodEmail;
|
|
1485
|
-
|
|
1486
|
-
|
|
1487
|
-
|
|
1488
|
-
|
|
1489
|
-
|
|
1490
|
-
|
|
1491
|
-
|
|
1492
|
-
|
|
1493
|
-
|
|
1494
|
-
|
|
1495
|
-
|
|
1496
|
-
|
|
1497
|
-
|
|
1498
|
-
|
|
1499
|
-
|
|
1500
|
-
|
|
1501
|
-
|
|
1502
|
-
|
|
1503
|
-
|
|
1504
|
-
|
|
1505
|
-
|
|
1506
|
-
|
|
1507
|
-
|
|
1508
|
-
|
|
1509
|
-
ca_bn: "ca_bn";
|
|
1510
|
-
ca_gst_hst: "ca_gst_hst";
|
|
1511
|
-
ca_pst_bc: "ca_pst_bc";
|
|
1512
|
-
ca_pst_mb: "ca_pst_mb";
|
|
1513
|
-
ca_pst_sk: "ca_pst_sk";
|
|
1514
|
-
ca_qst: "ca_qst";
|
|
1515
|
-
cd_nif: "cd_nif";
|
|
1516
|
-
ch_uid: "ch_uid";
|
|
1517
|
-
ch_vat: "ch_vat";
|
|
1518
|
-
cl_tin: "cl_tin";
|
|
1519
|
-
cn_tin: "cn_tin";
|
|
1520
|
-
co_nit: "co_nit";
|
|
1521
|
-
cr_tin: "cr_tin";
|
|
1522
|
-
cy_vat: "cy_vat";
|
|
1523
|
-
cz_vat: "cz_vat";
|
|
1524
|
-
de_stn: "de_stn";
|
|
1525
|
-
de_vat: "de_vat";
|
|
1526
|
-
dk_vat: "dk_vat";
|
|
1527
|
-
do_rcn: "do_rcn";
|
|
1528
|
-
ec_ruc: "ec_ruc";
|
|
1529
|
-
ee_vat: "ee_vat";
|
|
1530
|
-
eg_tin: "eg_tin";
|
|
1531
|
-
es_cif: "es_cif";
|
|
1532
|
-
es_vat: "es_vat";
|
|
1533
|
-
eu_oss_vat: "eu_oss_vat";
|
|
1534
|
-
fi_vat: "fi_vat";
|
|
1535
|
-
fr_vat: "fr_vat";
|
|
1536
|
-
gb_vat: "gb_vat";
|
|
1537
|
-
ge_vat: "ge_vat";
|
|
1538
|
-
gn_nif: "gn_nif";
|
|
1539
|
-
gr_vat: "gr_vat";
|
|
1540
|
-
hk_br: "hk_br";
|
|
1541
|
-
hr_oib: "hr_oib";
|
|
1542
|
-
hr_vat: "hr_vat";
|
|
1543
|
-
hu_tin: "hu_tin";
|
|
1544
|
-
hu_vat: "hu_vat";
|
|
1545
|
-
id_npwp: "id_npwp";
|
|
1546
|
-
ie_vat: "ie_vat";
|
|
1547
|
-
il_vat: "il_vat";
|
|
1548
|
-
in_gst: "in_gst";
|
|
1549
|
-
is_vat: "is_vat";
|
|
1550
|
-
it_vat: "it_vat";
|
|
1551
|
-
jp_cn: "jp_cn";
|
|
1552
|
-
jp_rn: "jp_rn";
|
|
1553
|
-
jp_trn: "jp_trn";
|
|
1554
|
-
ke_pin: "ke_pin";
|
|
1555
|
-
kh_tin: "kh_tin";
|
|
1556
|
-
kr_brn: "kr_brn";
|
|
1557
|
-
kz_bin: "kz_bin";
|
|
1558
|
-
li_uid: "li_uid";
|
|
1559
|
-
li_vat: "li_vat";
|
|
1560
|
-
lt_vat: "lt_vat";
|
|
1561
|
-
lu_vat: "lu_vat";
|
|
1562
|
-
lv_vat: "lv_vat";
|
|
1563
|
-
ma_vat: "ma_vat";
|
|
1564
|
-
md_vat: "md_vat";
|
|
1565
|
-
me_pib: "me_pib";
|
|
1566
|
-
mk_vat: "mk_vat";
|
|
1567
|
-
mr_nif: "mr_nif";
|
|
1568
|
-
mt_vat: "mt_vat";
|
|
1569
|
-
mx_rfc: "mx_rfc";
|
|
1570
|
-
my_frp: "my_frp";
|
|
1571
|
-
my_itn: "my_itn";
|
|
1572
|
-
my_sst: "my_sst";
|
|
1573
|
-
ng_tin: "ng_tin";
|
|
1574
|
-
nl_vat: "nl_vat";
|
|
1575
|
-
no_vat: "no_vat";
|
|
1576
|
-
no_voec: "no_voec";
|
|
1577
|
-
np_pan: "np_pan";
|
|
1578
|
-
nz_gst: "nz_gst";
|
|
1579
|
-
om_vat: "om_vat";
|
|
1580
|
-
pe_ruc: "pe_ruc";
|
|
1581
|
-
ph_tin: "ph_tin";
|
|
1582
|
-
pl_vat: "pl_vat";
|
|
1583
|
-
pt_vat: "pt_vat";
|
|
1584
|
-
ro_tin: "ro_tin";
|
|
1585
|
-
ro_vat: "ro_vat";
|
|
1586
|
-
rs_pib: "rs_pib";
|
|
1587
|
-
ru_inn: "ru_inn";
|
|
1588
|
-
ru_kpp: "ru_kpp";
|
|
1589
|
-
sa_vat: "sa_vat";
|
|
1590
|
-
se_vat: "se_vat";
|
|
1591
|
-
sg_gst: "sg_gst";
|
|
1592
|
-
sg_uen: "sg_uen";
|
|
1593
|
-
si_tin: "si_tin";
|
|
1594
|
-
si_vat: "si_vat";
|
|
1595
|
-
sk_vat: "sk_vat";
|
|
1596
|
-
sn_ninea: "sn_ninea";
|
|
1597
|
-
sr_fin: "sr_fin";
|
|
1598
|
-
sv_nit: "sv_nit";
|
|
1599
|
-
th_vat: "th_vat";
|
|
1600
|
-
tj_tin: "tj_tin";
|
|
1601
|
-
tr_tin: "tr_tin";
|
|
1602
|
-
tw_vat: "tw_vat";
|
|
1603
|
-
tz_vat: "tz_vat";
|
|
1604
|
-
ua_vat: "ua_vat";
|
|
1605
|
-
ug_tin: "ug_tin";
|
|
1606
|
-
us_ein: "us_ein";
|
|
1607
|
-
uy_ruc: "uy_ruc";
|
|
1608
|
-
uz_tin: "uz_tin";
|
|
1609
|
-
uz_vat: "uz_vat";
|
|
1610
|
-
ve_rif: "ve_rif";
|
|
1611
|
-
vn_tin: "vn_tin";
|
|
1612
|
-
xi_vat: "xi_vat";
|
|
1613
|
-
za_vat: "za_vat";
|
|
1614
|
-
zm_tin: "zm_tin";
|
|
1615
|
-
zw_tin: "zw_tin";
|
|
1569
|
+
first_name: z.ZodString;
|
|
1570
|
+
last_name: z.ZodString;
|
|
1571
|
+
role: z.ZodEnum<{
|
|
1572
|
+
Administrator: "Administrator";
|
|
1573
|
+
User: "User";
|
|
1574
|
+
}>;
|
|
1575
|
+
status: z.ZodEnum<{
|
|
1576
|
+
active: "active";
|
|
1577
|
+
inactive: "inactive";
|
|
1578
|
+
}>;
|
|
1579
|
+
id: z.ZodUUID;
|
|
1580
|
+
date_created: z.ZodISODateTime;
|
|
1581
|
+
}, z.core.$strip>;
|
|
1582
|
+
export declare const zUpdateUserBody: z.ZodObject<{
|
|
1583
|
+
email: z.ZodOptional<z.ZodEmail>;
|
|
1584
|
+
first_name: z.ZodOptional<z.ZodString>;
|
|
1585
|
+
last_name: z.ZodOptional<z.ZodString>;
|
|
1586
|
+
role: z.ZodOptional<z.ZodEnum<{
|
|
1587
|
+
Administrator: "Administrator";
|
|
1588
|
+
User: "User";
|
|
1589
|
+
}>>;
|
|
1590
|
+
status: z.ZodOptional<z.ZodEnum<{
|
|
1591
|
+
active: "active";
|
|
1592
|
+
inactive: "inactive";
|
|
1616
1593
|
}>>;
|
|
1617
1594
|
}, z.core.$strip>;
|
|
1618
|
-
export declare const
|
|
1619
|
-
|
|
1620
|
-
|
|
1621
|
-
|
|
1622
|
-
|
|
1623
|
-
|
|
1624
|
-
|
|
1625
|
-
country: z.ZodOptional<z.ZodString>;
|
|
1626
|
-
phone: z.ZodOptional<z.ZodString>;
|
|
1595
|
+
export declare const zUpdateUserPath: z.ZodObject<{
|
|
1596
|
+
user_id: z.ZodString;
|
|
1597
|
+
}, z.core.$strip>;
|
|
1598
|
+
/**
|
|
1599
|
+
* Successfully created. Returns created user details.
|
|
1600
|
+
*/
|
|
1601
|
+
export declare const zUpdateUserResponse: z.ZodObject<{
|
|
1627
1602
|
email: z.ZodEmail;
|
|
1628
|
-
|
|
1629
|
-
|
|
1630
|
-
|
|
1631
|
-
|
|
1632
|
-
|
|
1633
|
-
|
|
1634
|
-
|
|
1635
|
-
|
|
1636
|
-
|
|
1637
|
-
|
|
1638
|
-
|
|
1639
|
-
|
|
1640
|
-
|
|
1641
|
-
|
|
1642
|
-
|
|
1643
|
-
|
|
1644
|
-
|
|
1645
|
-
|
|
1646
|
-
|
|
1647
|
-
|
|
1648
|
-
|
|
1649
|
-
|
|
1650
|
-
|
|
1651
|
-
|
|
1652
|
-
|
|
1653
|
-
|
|
1654
|
-
|
|
1655
|
-
|
|
1656
|
-
|
|
1657
|
-
|
|
1658
|
-
|
|
1659
|
-
|
|
1660
|
-
|
|
1661
|
-
|
|
1662
|
-
|
|
1663
|
-
|
|
1664
|
-
|
|
1665
|
-
|
|
1666
|
-
|
|
1667
|
-
|
|
1668
|
-
|
|
1669
|
-
|
|
1670
|
-
|
|
1671
|
-
|
|
1672
|
-
|
|
1673
|
-
|
|
1674
|
-
|
|
1675
|
-
|
|
1676
|
-
|
|
1677
|
-
|
|
1678
|
-
|
|
1679
|
-
|
|
1680
|
-
|
|
1681
|
-
|
|
1682
|
-
|
|
1683
|
-
|
|
1684
|
-
|
|
1685
|
-
|
|
1686
|
-
|
|
1687
|
-
|
|
1688
|
-
|
|
1689
|
-
|
|
1690
|
-
|
|
1691
|
-
|
|
1692
|
-
|
|
1693
|
-
|
|
1694
|
-
|
|
1695
|
-
|
|
1696
|
-
|
|
1697
|
-
|
|
1698
|
-
kh_tin: "kh_tin";
|
|
1699
|
-
kr_brn: "kr_brn";
|
|
1700
|
-
kz_bin: "kz_bin";
|
|
1701
|
-
li_uid: "li_uid";
|
|
1702
|
-
li_vat: "li_vat";
|
|
1703
|
-
lt_vat: "lt_vat";
|
|
1704
|
-
lu_vat: "lu_vat";
|
|
1705
|
-
lv_vat: "lv_vat";
|
|
1706
|
-
ma_vat: "ma_vat";
|
|
1707
|
-
md_vat: "md_vat";
|
|
1708
|
-
me_pib: "me_pib";
|
|
1709
|
-
mk_vat: "mk_vat";
|
|
1710
|
-
mr_nif: "mr_nif";
|
|
1711
|
-
mt_vat: "mt_vat";
|
|
1712
|
-
mx_rfc: "mx_rfc";
|
|
1713
|
-
my_frp: "my_frp";
|
|
1714
|
-
my_itn: "my_itn";
|
|
1715
|
-
my_sst: "my_sst";
|
|
1716
|
-
ng_tin: "ng_tin";
|
|
1717
|
-
nl_vat: "nl_vat";
|
|
1718
|
-
no_vat: "no_vat";
|
|
1719
|
-
no_voec: "no_voec";
|
|
1720
|
-
np_pan: "np_pan";
|
|
1721
|
-
nz_gst: "nz_gst";
|
|
1722
|
-
om_vat: "om_vat";
|
|
1723
|
-
pe_ruc: "pe_ruc";
|
|
1724
|
-
ph_tin: "ph_tin";
|
|
1725
|
-
pl_vat: "pl_vat";
|
|
1726
|
-
pt_vat: "pt_vat";
|
|
1727
|
-
ro_tin: "ro_tin";
|
|
1728
|
-
ro_vat: "ro_vat";
|
|
1729
|
-
rs_pib: "rs_pib";
|
|
1730
|
-
ru_inn: "ru_inn";
|
|
1731
|
-
ru_kpp: "ru_kpp";
|
|
1732
|
-
sa_vat: "sa_vat";
|
|
1733
|
-
se_vat: "se_vat";
|
|
1734
|
-
sg_gst: "sg_gst";
|
|
1735
|
-
sg_uen: "sg_uen";
|
|
1736
|
-
si_tin: "si_tin";
|
|
1737
|
-
si_vat: "si_vat";
|
|
1738
|
-
sk_vat: "sk_vat";
|
|
1739
|
-
sn_ninea: "sn_ninea";
|
|
1740
|
-
sr_fin: "sr_fin";
|
|
1741
|
-
sv_nit: "sv_nit";
|
|
1742
|
-
th_vat: "th_vat";
|
|
1743
|
-
tj_tin: "tj_tin";
|
|
1744
|
-
tr_tin: "tr_tin";
|
|
1745
|
-
tw_vat: "tw_vat";
|
|
1746
|
-
tz_vat: "tz_vat";
|
|
1747
|
-
ua_vat: "ua_vat";
|
|
1748
|
-
ug_tin: "ug_tin";
|
|
1749
|
-
us_ein: "us_ein";
|
|
1750
|
-
uy_ruc: "uy_ruc";
|
|
1751
|
-
uz_tin: "uz_tin";
|
|
1752
|
-
uz_vat: "uz_vat";
|
|
1753
|
-
ve_rif: "ve_rif";
|
|
1754
|
-
vn_tin: "vn_tin";
|
|
1755
|
-
xi_vat: "xi_vat";
|
|
1756
|
-
za_vat: "za_vat";
|
|
1757
|
-
zm_tin: "zm_tin";
|
|
1758
|
-
zw_tin: "zw_tin";
|
|
1603
|
+
first_name: z.ZodString;
|
|
1604
|
+
last_name: z.ZodString;
|
|
1605
|
+
role: z.ZodEnum<{
|
|
1606
|
+
Administrator: "Administrator";
|
|
1607
|
+
User: "User";
|
|
1608
|
+
}>;
|
|
1609
|
+
status: z.ZodEnum<{
|
|
1610
|
+
active: "active";
|
|
1611
|
+
inactive: "inactive";
|
|
1612
|
+
}>;
|
|
1613
|
+
id: z.ZodUUID;
|
|
1614
|
+
date_created: z.ZodISODateTime;
|
|
1615
|
+
}, z.core.$strip>;
|
|
1616
|
+
/**
|
|
1617
|
+
* Returns a list of access token details with masked secrets.
|
|
1618
|
+
*/
|
|
1619
|
+
export declare const zListTokensResponse: z.ZodArray<z.ZodObject<{
|
|
1620
|
+
name: z.ZodString;
|
|
1621
|
+
role: z.ZodEnum<{
|
|
1622
|
+
Administrator: "Administrator";
|
|
1623
|
+
User: "User";
|
|
1624
|
+
}>;
|
|
1625
|
+
id: z.ZodOptional<z.ZodString>;
|
|
1626
|
+
secret: z.ZodOptional<z.ZodString>;
|
|
1627
|
+
date_created: z.ZodISODateTime;
|
|
1628
|
+
}, z.core.$strip>>;
|
|
1629
|
+
export declare const zCreateTokenBody: z.ZodObject<{
|
|
1630
|
+
name: z.ZodString;
|
|
1631
|
+
role: z.ZodEnum<{
|
|
1632
|
+
Administrator: "Administrator";
|
|
1633
|
+
User: "User";
|
|
1634
|
+
}>;
|
|
1635
|
+
}, z.core.$strip>;
|
|
1636
|
+
/**
|
|
1637
|
+
* Successfully created. Returns created token details with unmasked/raw secret.
|
|
1638
|
+
*/
|
|
1639
|
+
export declare const zCreateTokenResponse: z.ZodObject<{
|
|
1640
|
+
name: z.ZodString;
|
|
1641
|
+
role: z.ZodEnum<{
|
|
1642
|
+
Administrator: "Administrator";
|
|
1643
|
+
User: "User";
|
|
1644
|
+
}>;
|
|
1645
|
+
id: z.ZodOptional<z.ZodString>;
|
|
1646
|
+
secret: z.ZodOptional<z.ZodString>;
|
|
1647
|
+
date_created: z.ZodISODateTime;
|
|
1648
|
+
}, z.core.$strip>;
|
|
1649
|
+
export declare const zDeleteTokenPath: z.ZodObject<{
|
|
1650
|
+
token_id: z.ZodString;
|
|
1651
|
+
}, z.core.$strip>;
|
|
1652
|
+
export declare const zGetTokenPath: z.ZodObject<{
|
|
1653
|
+
token_id: z.ZodString;
|
|
1654
|
+
}, z.core.$strip>;
|
|
1655
|
+
/**
|
|
1656
|
+
* Returns access token details with masked secret.
|
|
1657
|
+
*/
|
|
1658
|
+
export declare const zGetTokenResponse: z.ZodObject<{
|
|
1659
|
+
name: z.ZodString;
|
|
1660
|
+
role: z.ZodEnum<{
|
|
1661
|
+
Administrator: "Administrator";
|
|
1662
|
+
User: "User";
|
|
1663
|
+
}>;
|
|
1664
|
+
id: z.ZodOptional<z.ZodString>;
|
|
1665
|
+
secret: z.ZodOptional<z.ZodString>;
|
|
1666
|
+
date_created: z.ZodISODateTime;
|
|
1667
|
+
}, z.core.$strip>;
|
|
1668
|
+
export declare const zUpdateTokenBody: z.ZodObject<{
|
|
1669
|
+
name: z.ZodOptional<z.ZodString>;
|
|
1670
|
+
role: z.ZodOptional<z.ZodEnum<{
|
|
1671
|
+
Administrator: "Administrator";
|
|
1672
|
+
User: "User";
|
|
1759
1673
|
}>>;
|
|
1760
1674
|
}, z.core.$strip>;
|
|
1675
|
+
export declare const zUpdateTokenPath: z.ZodObject<{
|
|
1676
|
+
token_id: z.ZodString;
|
|
1677
|
+
}, z.core.$strip>;
|
|
1678
|
+
/**
|
|
1679
|
+
* Successfully updated. Returns updated token details with masked secret.
|
|
1680
|
+
*/
|
|
1681
|
+
export declare const zUpdateTokenResponse: z.ZodObject<{
|
|
1682
|
+
name: z.ZodString;
|
|
1683
|
+
role: z.ZodEnum<{
|
|
1684
|
+
Administrator: "Administrator";
|
|
1685
|
+
User: "User";
|
|
1686
|
+
}>;
|
|
1687
|
+
id: z.ZodOptional<z.ZodString>;
|
|
1688
|
+
secret: z.ZodOptional<z.ZodString>;
|
|
1689
|
+
date_created: z.ZodISODateTime;
|
|
1690
|
+
}, z.core.$strip>;
|
|
1691
|
+
export declare const zRegenerateTokenPath: z.ZodObject<{
|
|
1692
|
+
token_id: z.ZodString;
|
|
1693
|
+
}, z.core.$strip>;
|
|
1694
|
+
/**
|
|
1695
|
+
* Successfully updated. Returns updated token details with unmasked / raw secret.
|
|
1696
|
+
*/
|
|
1697
|
+
export declare const zRegenerateTokenResponse: z.ZodObject<{
|
|
1698
|
+
name: z.ZodString;
|
|
1699
|
+
role: z.ZodEnum<{
|
|
1700
|
+
Administrator: "Administrator";
|
|
1701
|
+
User: "User";
|
|
1702
|
+
}>;
|
|
1703
|
+
id: z.ZodOptional<z.ZodString>;
|
|
1704
|
+
secret: z.ZodOptional<z.ZodString>;
|
|
1705
|
+
date_created: z.ZodISODateTime;
|
|
1706
|
+
}, z.core.$strip>;
|
|
1707
|
+
/**
|
|
1708
|
+
* An array of tickets for the organization, newest first.
|
|
1709
|
+
*/
|
|
1710
|
+
export declare const zListTicketsResponse: z.ZodArray<z.ZodObject<{
|
|
1711
|
+
id: z.ZodString;
|
|
1712
|
+
status: z.ZodEnum<{
|
|
1713
|
+
closed: "closed";
|
|
1714
|
+
waiting_on_us: "waiting_on_us";
|
|
1715
|
+
waiting_on_user: "waiting_on_user";
|
|
1716
|
+
}>;
|
|
1717
|
+
category: z.ZodEnum<{
|
|
1718
|
+
billing: "billing";
|
|
1719
|
+
technical: "technical";
|
|
1720
|
+
general: "general";
|
|
1721
|
+
}>;
|
|
1722
|
+
summary: z.ZodString;
|
|
1723
|
+
closed_at: z.ZodOptional<z.ZodISODateTime>;
|
|
1724
|
+
date_created: z.ZodISODateTime;
|
|
1725
|
+
date_updated: z.ZodISODateTime;
|
|
1726
|
+
messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1727
|
+
id: z.ZodString;
|
|
1728
|
+
type: z.ZodEnum<{
|
|
1729
|
+
customer_reply: "customer_reply";
|
|
1730
|
+
agent_reply: "agent_reply";
|
|
1731
|
+
}>;
|
|
1732
|
+
body: z.ZodString;
|
|
1733
|
+
author_first_name: z.ZodOptional<z.ZodString>;
|
|
1734
|
+
author_last_name: z.ZodOptional<z.ZodString>;
|
|
1735
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1736
|
+
id: z.ZodString;
|
|
1737
|
+
filename: z.ZodString;
|
|
1738
|
+
content_type: z.ZodString;
|
|
1739
|
+
size: z.ZodInt;
|
|
1740
|
+
}, z.core.$strip>>>;
|
|
1741
|
+
date_created: z.ZodISODateTime;
|
|
1742
|
+
}, z.core.$strip>>>;
|
|
1743
|
+
}, z.core.$strip>>;
|
|
1744
|
+
export declare const zCreateTicketBody: z.ZodObject<{
|
|
1745
|
+
payload: z.ZodOptional<z.ZodString>;
|
|
1746
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1747
|
+
}, z.core.$strip>;
|
|
1748
|
+
/**
|
|
1749
|
+
* Ticket created.
|
|
1750
|
+
*/
|
|
1751
|
+
export declare const zCreateTicketResponse: z.ZodObject<{
|
|
1752
|
+
id: z.ZodString;
|
|
1753
|
+
status: z.ZodEnum<{
|
|
1754
|
+
closed: "closed";
|
|
1755
|
+
waiting_on_us: "waiting_on_us";
|
|
1756
|
+
waiting_on_user: "waiting_on_user";
|
|
1757
|
+
}>;
|
|
1758
|
+
category: z.ZodEnum<{
|
|
1759
|
+
billing: "billing";
|
|
1760
|
+
technical: "technical";
|
|
1761
|
+
general: "general";
|
|
1762
|
+
}>;
|
|
1763
|
+
summary: z.ZodString;
|
|
1764
|
+
closed_at: z.ZodOptional<z.ZodISODateTime>;
|
|
1765
|
+
date_created: z.ZodISODateTime;
|
|
1766
|
+
date_updated: z.ZodISODateTime;
|
|
1767
|
+
messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1768
|
+
id: z.ZodString;
|
|
1769
|
+
type: z.ZodEnum<{
|
|
1770
|
+
customer_reply: "customer_reply";
|
|
1771
|
+
agent_reply: "agent_reply";
|
|
1772
|
+
}>;
|
|
1773
|
+
body: z.ZodString;
|
|
1774
|
+
author_first_name: z.ZodOptional<z.ZodString>;
|
|
1775
|
+
author_last_name: z.ZodOptional<z.ZodString>;
|
|
1776
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1777
|
+
id: z.ZodString;
|
|
1778
|
+
filename: z.ZodString;
|
|
1779
|
+
content_type: z.ZodString;
|
|
1780
|
+
size: z.ZodInt;
|
|
1781
|
+
}, z.core.$strip>>>;
|
|
1782
|
+
date_created: z.ZodISODateTime;
|
|
1783
|
+
}, z.core.$strip>>>;
|
|
1784
|
+
}, z.core.$strip>;
|
|
1785
|
+
export declare const zCloseTicketPath: z.ZodObject<{
|
|
1786
|
+
ticket_id: z.ZodString;
|
|
1787
|
+
}, z.core.$strip>;
|
|
1788
|
+
/**
|
|
1789
|
+
* Ticket closed.
|
|
1790
|
+
*/
|
|
1791
|
+
export declare const zCloseTicketResponse: z.ZodObject<{
|
|
1792
|
+
id: z.ZodString;
|
|
1793
|
+
status: z.ZodEnum<{
|
|
1794
|
+
closed: "closed";
|
|
1795
|
+
waiting_on_us: "waiting_on_us";
|
|
1796
|
+
waiting_on_user: "waiting_on_user";
|
|
1797
|
+
}>;
|
|
1798
|
+
category: z.ZodEnum<{
|
|
1799
|
+
billing: "billing";
|
|
1800
|
+
technical: "technical";
|
|
1801
|
+
general: "general";
|
|
1802
|
+
}>;
|
|
1803
|
+
summary: z.ZodString;
|
|
1804
|
+
closed_at: z.ZodOptional<z.ZodISODateTime>;
|
|
1805
|
+
date_created: z.ZodISODateTime;
|
|
1806
|
+
date_updated: z.ZodISODateTime;
|
|
1807
|
+
messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1808
|
+
id: z.ZodString;
|
|
1809
|
+
type: z.ZodEnum<{
|
|
1810
|
+
customer_reply: "customer_reply";
|
|
1811
|
+
agent_reply: "agent_reply";
|
|
1812
|
+
}>;
|
|
1813
|
+
body: z.ZodString;
|
|
1814
|
+
author_first_name: z.ZodOptional<z.ZodString>;
|
|
1815
|
+
author_last_name: z.ZodOptional<z.ZodString>;
|
|
1816
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1817
|
+
id: z.ZodString;
|
|
1818
|
+
filename: z.ZodString;
|
|
1819
|
+
content_type: z.ZodString;
|
|
1820
|
+
size: z.ZodInt;
|
|
1821
|
+
}, z.core.$strip>>>;
|
|
1822
|
+
date_created: z.ZodISODateTime;
|
|
1823
|
+
}, z.core.$strip>>>;
|
|
1824
|
+
}, z.core.$strip>;
|
|
1825
|
+
export declare const zGetTicketPath: z.ZodObject<{
|
|
1826
|
+
ticket_id: z.ZodString;
|
|
1827
|
+
}, z.core.$strip>;
|
|
1828
|
+
/**
|
|
1829
|
+
* Ticket with messages (internal notes excluded).
|
|
1830
|
+
*/
|
|
1831
|
+
export declare const zGetTicketResponse: z.ZodObject<{
|
|
1832
|
+
id: z.ZodString;
|
|
1833
|
+
status: z.ZodEnum<{
|
|
1834
|
+
closed: "closed";
|
|
1835
|
+
waiting_on_us: "waiting_on_us";
|
|
1836
|
+
waiting_on_user: "waiting_on_user";
|
|
1837
|
+
}>;
|
|
1838
|
+
category: z.ZodEnum<{
|
|
1839
|
+
billing: "billing";
|
|
1840
|
+
technical: "technical";
|
|
1841
|
+
general: "general";
|
|
1842
|
+
}>;
|
|
1843
|
+
summary: z.ZodString;
|
|
1844
|
+
closed_at: z.ZodOptional<z.ZodISODateTime>;
|
|
1845
|
+
date_created: z.ZodISODateTime;
|
|
1846
|
+
date_updated: z.ZodISODateTime;
|
|
1847
|
+
messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1848
|
+
id: z.ZodString;
|
|
1849
|
+
type: z.ZodEnum<{
|
|
1850
|
+
customer_reply: "customer_reply";
|
|
1851
|
+
agent_reply: "agent_reply";
|
|
1852
|
+
}>;
|
|
1853
|
+
body: z.ZodString;
|
|
1854
|
+
author_first_name: z.ZodOptional<z.ZodString>;
|
|
1855
|
+
author_last_name: z.ZodOptional<z.ZodString>;
|
|
1856
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1857
|
+
id: z.ZodString;
|
|
1858
|
+
filename: z.ZodString;
|
|
1859
|
+
content_type: z.ZodString;
|
|
1860
|
+
size: z.ZodInt;
|
|
1861
|
+
}, z.core.$strip>>>;
|
|
1862
|
+
date_created: z.ZodISODateTime;
|
|
1863
|
+
}, z.core.$strip>>>;
|
|
1864
|
+
}, z.core.$strip>;
|
|
1865
|
+
export declare const zReplyTicketBody: z.ZodObject<{
|
|
1866
|
+
payload: z.ZodOptional<z.ZodString>;
|
|
1867
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1868
|
+
}, z.core.$strip>;
|
|
1869
|
+
export declare const zReplyTicketPath: z.ZodObject<{
|
|
1870
|
+
ticket_id: z.ZodString;
|
|
1871
|
+
}, z.core.$strip>;
|
|
1872
|
+
/**
|
|
1873
|
+
* Reply appended.
|
|
1874
|
+
*/
|
|
1875
|
+
export declare const zReplyTicketResponse: z.ZodObject<{
|
|
1876
|
+
id: z.ZodString;
|
|
1877
|
+
type: z.ZodEnum<{
|
|
1878
|
+
customer_reply: "customer_reply";
|
|
1879
|
+
agent_reply: "agent_reply";
|
|
1880
|
+
}>;
|
|
1881
|
+
body: z.ZodString;
|
|
1882
|
+
author_first_name: z.ZodOptional<z.ZodString>;
|
|
1883
|
+
author_last_name: z.ZodOptional<z.ZodString>;
|
|
1884
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1885
|
+
id: z.ZodString;
|
|
1886
|
+
filename: z.ZodString;
|
|
1887
|
+
content_type: z.ZodString;
|
|
1888
|
+
size: z.ZodInt;
|
|
1889
|
+
}, z.core.$strip>>>;
|
|
1890
|
+
date_created: z.ZodISODateTime;
|
|
1891
|
+
}, z.core.$strip>;
|
|
1892
|
+
export declare const zGetTicketAttachmentPath: z.ZodObject<{
|
|
1893
|
+
ticket_id: z.ZodString;
|
|
1894
|
+
attachment_id: z.ZodString;
|
|
1895
|
+
}, z.core.$strip>;
|
|
1761
1896
|
/**
|
|
1762
|
-
*
|
|
1897
|
+
* Attachment binary stream.
|
|
1763
1898
|
*/
|
|
1764
|
-
export declare const
|
|
1765
|
-
|
|
1766
|
-
|
|
1767
|
-
|
|
1768
|
-
|
|
1769
|
-
|
|
1770
|
-
|
|
1771
|
-
|
|
1772
|
-
|
|
1899
|
+
export declare const zGetTicketAttachmentResponse: z.ZodString;
|
|
1900
|
+
/**
|
|
1901
|
+
* List of repositories
|
|
1902
|
+
*/
|
|
1903
|
+
export declare const zListRepositoriesResponse: z.ZodArray<z.ZodObject<{
|
|
1904
|
+
name: z.ZodString;
|
|
1905
|
+
region: z.ZodString;
|
|
1906
|
+
uri: z.ZodString;
|
|
1907
|
+
}, z.core.$strip>>;
|
|
1908
|
+
export declare const zListTagsPath: z.ZodObject<{
|
|
1909
|
+
region: z.ZodString;
|
|
1910
|
+
repository: z.ZodString;
|
|
1911
|
+
}, z.core.$strip>;
|
|
1912
|
+
/**
|
|
1913
|
+
* Repository with tags
|
|
1914
|
+
*/
|
|
1915
|
+
export declare const zListTagsResponse: z.ZodObject<{
|
|
1916
|
+
name: z.ZodString;
|
|
1917
|
+
region: z.ZodString;
|
|
1918
|
+
uri: z.ZodString;
|
|
1919
|
+
tags: z.ZodArray<z.ZodObject<{
|
|
1920
|
+
name: z.ZodString;
|
|
1921
|
+
size: z.ZodNumber;
|
|
1922
|
+
mediaType: z.ZodOptional<z.ZodString>;
|
|
1923
|
+
platforms: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1924
|
+
}, z.core.$strip>>;
|
|
1925
|
+
totalSize: z.ZodNumber;
|
|
1926
|
+
}, z.core.$strip>;
|
|
1927
|
+
export declare const zDeleteTagPath: z.ZodObject<{
|
|
1928
|
+
region: z.ZodString;
|
|
1929
|
+
repository: z.ZodString;
|
|
1930
|
+
tag: z.ZodString;
|
|
1931
|
+
}, z.core.$strip>;
|
|
1932
|
+
export declare const zGetTagPath: z.ZodObject<{
|
|
1933
|
+
region: z.ZodString;
|
|
1934
|
+
repository: z.ZodString;
|
|
1935
|
+
tag: z.ZodString;
|
|
1936
|
+
}, z.core.$strip>;
|
|
1937
|
+
/**
|
|
1938
|
+
* Tag details
|
|
1939
|
+
*/
|
|
1940
|
+
export declare const zGetTagResponse: z.ZodObject<{
|
|
1941
|
+
name: z.ZodString;
|
|
1942
|
+
digest: z.ZodString;
|
|
1943
|
+
mediaType: z.ZodOptional<z.ZodString>;
|
|
1944
|
+
config: z.ZodOptional<z.ZodObject<{
|
|
1945
|
+
size: z.ZodNumber;
|
|
1946
|
+
}, z.core.$strip>>;
|
|
1947
|
+
layers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1948
|
+
digest: z.ZodOptional<z.ZodString>;
|
|
1949
|
+
size: z.ZodNumber;
|
|
1950
|
+
}, z.core.$strip>>>;
|
|
1951
|
+
manifests: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1952
|
+
digest: z.ZodString;
|
|
1953
|
+
platform: z.ZodOptional<z.ZodObject<{
|
|
1954
|
+
architecture: z.ZodString;
|
|
1955
|
+
os: z.ZodString;
|
|
1956
|
+
variant: z.ZodOptional<z.ZodString>;
|
|
1957
|
+
}, z.core.$strip>>;
|
|
1958
|
+
layers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1959
|
+
digest: z.ZodOptional<z.ZodString>;
|
|
1960
|
+
size: z.ZodNumber;
|
|
1961
|
+
}, z.core.$strip>>>;
|
|
1962
|
+
size: z.ZodOptional<z.ZodNumber>;
|
|
1963
|
+
}, z.core.$strip>>>;
|
|
1964
|
+
size: z.ZodNumber;
|
|
1965
|
+
region: z.ZodString;
|
|
1966
|
+
repository: z.ZodString;
|
|
1967
|
+
uri: z.ZodString;
|
|
1968
|
+
}, z.core.$strip>;
|
|
1969
|
+
/**
|
|
1970
|
+
* Returns a single object containing organization details.
|
|
1971
|
+
*/
|
|
1972
|
+
export declare const zGetOrganizationResponse: z.ZodObject<{
|
|
1973
|
+
id: z.ZodUUID;
|
|
1974
|
+
name: z.ZodOptional<z.ZodString>;
|
|
1975
|
+
type: z.ZodEnum<{
|
|
1976
|
+
business: "business";
|
|
1977
|
+
personal: "personal";
|
|
1978
|
+
}>;
|
|
1979
|
+
date_created: z.ZodISODateTime;
|
|
1980
|
+
quota: z.ZodObject<{
|
|
1981
|
+
basic_clusters_max: z.ZodInt;
|
|
1982
|
+
basic_clusters_available: z.ZodInt;
|
|
1983
|
+
pro_clusters_max: z.ZodInt;
|
|
1984
|
+
pro_clusters_available: z.ZodInt;
|
|
1985
|
+
enterprise_clusters_max: z.ZodInt;
|
|
1986
|
+
enterprise_clusters_available: z.ZodInt;
|
|
1987
|
+
fleets_max: z.ZodInt;
|
|
1988
|
+
cluster_tiers: z.ZodArray<z.ZodString>;
|
|
1989
|
+
regions: z.ZodArray<z.ZodString>;
|
|
1990
|
+
versions: z.ZodArray<z.ZodObject<{
|
|
1991
|
+
id: z.ZodString;
|
|
1992
|
+
label: z.ZodString;
|
|
1993
|
+
}, z.core.$strip>>;
|
|
1994
|
+
cfcr_storage_gb: z.ZodInt;
|
|
1995
|
+
}, z.core.$strip>;
|
|
1996
|
+
status: z.ZodEnum<{
|
|
1997
|
+
active: "active";
|
|
1998
|
+
closed: "closed";
|
|
1999
|
+
suspended: "suspended";
|
|
2000
|
+
}>;
|
|
2001
|
+
verification: z.ZodEnum<{
|
|
2002
|
+
none: "none";
|
|
2003
|
+
submitted: "submitted";
|
|
2004
|
+
verified: "verified";
|
|
2005
|
+
}>;
|
|
2006
|
+
}, z.core.$strip>;
|
|
2007
|
+
export declare const zCreateOrganizationBody: z.ZodObject<{
|
|
2008
|
+
type: z.ZodEnum<{
|
|
2009
|
+
business: "business";
|
|
2010
|
+
personal: "personal";
|
|
2011
|
+
}>;
|
|
1773
2012
|
email: z.ZodEmail;
|
|
1774
|
-
|
|
1775
|
-
|
|
1776
|
-
|
|
1777
|
-
|
|
1778
|
-
ad_nrt: "ad_nrt";
|
|
1779
|
-
ae_trn: "ae_trn";
|
|
1780
|
-
al_tin: "al_tin";
|
|
1781
|
-
am_tin: "am_tin";
|
|
1782
|
-
ao_tin: "ao_tin";
|
|
1783
|
-
ar_cuit: "ar_cuit";
|
|
1784
|
-
at_vat: "at_vat";
|
|
1785
|
-
au_abn: "au_abn";
|
|
1786
|
-
au_arn: "au_arn";
|
|
1787
|
-
ba_tin: "ba_tin";
|
|
1788
|
-
bb_tin: "bb_tin";
|
|
1789
|
-
be_vat: "be_vat";
|
|
1790
|
-
bg_uic: "bg_uic";
|
|
1791
|
-
bg_vat: "bg_vat";
|
|
1792
|
-
bh_vat: "bh_vat";
|
|
1793
|
-
bo_tin: "bo_tin";
|
|
1794
|
-
br_cnpj: "br_cnpj";
|
|
1795
|
-
br_cpf: "br_cpf";
|
|
1796
|
-
bs_tin: "bs_tin";
|
|
1797
|
-
by_tin: "by_tin";
|
|
1798
|
-
ca_bn: "ca_bn";
|
|
1799
|
-
ca_gst_hst: "ca_gst_hst";
|
|
1800
|
-
ca_pst_bc: "ca_pst_bc";
|
|
1801
|
-
ca_pst_mb: "ca_pst_mb";
|
|
1802
|
-
ca_pst_sk: "ca_pst_sk";
|
|
1803
|
-
ca_qst: "ca_qst";
|
|
1804
|
-
cd_nif: "cd_nif";
|
|
1805
|
-
ch_uid: "ch_uid";
|
|
1806
|
-
ch_vat: "ch_vat";
|
|
1807
|
-
cl_tin: "cl_tin";
|
|
1808
|
-
cn_tin: "cn_tin";
|
|
1809
|
-
co_nit: "co_nit";
|
|
1810
|
-
cr_tin: "cr_tin";
|
|
1811
|
-
cy_vat: "cy_vat";
|
|
1812
|
-
cz_vat: "cz_vat";
|
|
1813
|
-
de_stn: "de_stn";
|
|
1814
|
-
de_vat: "de_vat";
|
|
1815
|
-
dk_vat: "dk_vat";
|
|
1816
|
-
do_rcn: "do_rcn";
|
|
1817
|
-
ec_ruc: "ec_ruc";
|
|
1818
|
-
ee_vat: "ee_vat";
|
|
1819
|
-
eg_tin: "eg_tin";
|
|
1820
|
-
es_cif: "es_cif";
|
|
1821
|
-
es_vat: "es_vat";
|
|
1822
|
-
eu_oss_vat: "eu_oss_vat";
|
|
1823
|
-
fi_vat: "fi_vat";
|
|
1824
|
-
fr_vat: "fr_vat";
|
|
1825
|
-
gb_vat: "gb_vat";
|
|
1826
|
-
ge_vat: "ge_vat";
|
|
1827
|
-
gn_nif: "gn_nif";
|
|
1828
|
-
gr_vat: "gr_vat";
|
|
1829
|
-
hk_br: "hk_br";
|
|
1830
|
-
hr_oib: "hr_oib";
|
|
1831
|
-
hr_vat: "hr_vat";
|
|
1832
|
-
hu_tin: "hu_tin";
|
|
1833
|
-
hu_vat: "hu_vat";
|
|
1834
|
-
id_npwp: "id_npwp";
|
|
1835
|
-
ie_vat: "ie_vat";
|
|
1836
|
-
il_vat: "il_vat";
|
|
1837
|
-
in_gst: "in_gst";
|
|
1838
|
-
is_vat: "is_vat";
|
|
1839
|
-
it_vat: "it_vat";
|
|
1840
|
-
jp_cn: "jp_cn";
|
|
1841
|
-
jp_rn: "jp_rn";
|
|
1842
|
-
jp_trn: "jp_trn";
|
|
1843
|
-
ke_pin: "ke_pin";
|
|
1844
|
-
kh_tin: "kh_tin";
|
|
1845
|
-
kr_brn: "kr_brn";
|
|
1846
|
-
kz_bin: "kz_bin";
|
|
1847
|
-
li_uid: "li_uid";
|
|
1848
|
-
li_vat: "li_vat";
|
|
1849
|
-
lt_vat: "lt_vat";
|
|
1850
|
-
lu_vat: "lu_vat";
|
|
1851
|
-
lv_vat: "lv_vat";
|
|
1852
|
-
ma_vat: "ma_vat";
|
|
1853
|
-
md_vat: "md_vat";
|
|
1854
|
-
me_pib: "me_pib";
|
|
1855
|
-
mk_vat: "mk_vat";
|
|
1856
|
-
mr_nif: "mr_nif";
|
|
1857
|
-
mt_vat: "mt_vat";
|
|
1858
|
-
mx_rfc: "mx_rfc";
|
|
1859
|
-
my_frp: "my_frp";
|
|
1860
|
-
my_itn: "my_itn";
|
|
1861
|
-
my_sst: "my_sst";
|
|
1862
|
-
ng_tin: "ng_tin";
|
|
1863
|
-
nl_vat: "nl_vat";
|
|
1864
|
-
no_vat: "no_vat";
|
|
1865
|
-
no_voec: "no_voec";
|
|
1866
|
-
np_pan: "np_pan";
|
|
1867
|
-
nz_gst: "nz_gst";
|
|
1868
|
-
om_vat: "om_vat";
|
|
1869
|
-
pe_ruc: "pe_ruc";
|
|
1870
|
-
ph_tin: "ph_tin";
|
|
1871
|
-
pl_vat: "pl_vat";
|
|
1872
|
-
pt_vat: "pt_vat";
|
|
1873
|
-
ro_tin: "ro_tin";
|
|
1874
|
-
ro_vat: "ro_vat";
|
|
1875
|
-
rs_pib: "rs_pib";
|
|
1876
|
-
ru_inn: "ru_inn";
|
|
1877
|
-
ru_kpp: "ru_kpp";
|
|
1878
|
-
sa_vat: "sa_vat";
|
|
1879
|
-
se_vat: "se_vat";
|
|
1880
|
-
sg_gst: "sg_gst";
|
|
1881
|
-
sg_uen: "sg_uen";
|
|
1882
|
-
si_tin: "si_tin";
|
|
1883
|
-
si_vat: "si_vat";
|
|
1884
|
-
sk_vat: "sk_vat";
|
|
1885
|
-
sn_ninea: "sn_ninea";
|
|
1886
|
-
sr_fin: "sr_fin";
|
|
1887
|
-
sv_nit: "sv_nit";
|
|
1888
|
-
th_vat: "th_vat";
|
|
1889
|
-
tj_tin: "tj_tin";
|
|
1890
|
-
tr_tin: "tr_tin";
|
|
1891
|
-
tw_vat: "tw_vat";
|
|
1892
|
-
tz_vat: "tz_vat";
|
|
1893
|
-
ua_vat: "ua_vat";
|
|
1894
|
-
ug_tin: "ug_tin";
|
|
1895
|
-
us_ein: "us_ein";
|
|
1896
|
-
uy_ruc: "uy_ruc";
|
|
1897
|
-
uz_tin: "uz_tin";
|
|
1898
|
-
uz_vat: "uz_vat";
|
|
1899
|
-
ve_rif: "ve_rif";
|
|
1900
|
-
vn_tin: "vn_tin";
|
|
1901
|
-
xi_vat: "xi_vat";
|
|
1902
|
-
za_vat: "za_vat";
|
|
1903
|
-
zm_tin: "zm_tin";
|
|
1904
|
-
zw_tin: "zw_tin";
|
|
1905
|
-
}>>;
|
|
2013
|
+
first_name: z.ZodString;
|
|
2014
|
+
last_name: z.ZodString;
|
|
2015
|
+
company_name: z.ZodString;
|
|
2016
|
+
password: z.ZodString;
|
|
1906
2017
|
}, z.core.$strip>;
|
|
1907
2018
|
/**
|
|
1908
|
-
*
|
|
2019
|
+
* Organization signup accepted. Returns the generated organization id immediately; provisioning (billing, Keycloak realm, user) continues asynchronously in the background.
|
|
2020
|
+
*
|
|
1909
2021
|
*/
|
|
1910
|
-
export declare const
|
|
1911
|
-
id: z.
|
|
1912
|
-
|
|
1913
|
-
|
|
1914
|
-
|
|
2022
|
+
export declare const zCreateOrganizationResponse: z.ZodObject<{
|
|
2023
|
+
id: z.ZodString;
|
|
2024
|
+
}, z.core.$strip>;
|
|
2025
|
+
/**
|
|
2026
|
+
* Returns the current consent status.
|
|
2027
|
+
*/
|
|
2028
|
+
export declare const zGetBasicPriceConsentResponse: z.ZodObject<{
|
|
2029
|
+
status: z.ZodEnum<{
|
|
2030
|
+
pending: "pending";
|
|
2031
|
+
rejected: "rejected";
|
|
2032
|
+
accepted: "accepted";
|
|
2033
|
+
not_applicable: "not_applicable";
|
|
1915
2034
|
}>;
|
|
1916
|
-
|
|
1917
|
-
|
|
1918
|
-
code: z.ZodString;
|
|
1919
|
-
description: z.ZodOptional<z.ZodString>;
|
|
1920
|
-
value_total: z.ZodNumber;
|
|
1921
|
-
value_remaining: z.ZodOptional<z.ZodNumber>;
|
|
1922
|
-
}, z.core.$strip>>;
|
|
1923
|
-
export declare const zRedeemCreditsBody: z.ZodObject<{
|
|
1924
|
-
code: z.ZodOptional<z.ZodString>;
|
|
2035
|
+
decided_at: z.ZodOptional<z.ZodISODateTime>;
|
|
2036
|
+
decided_by: z.ZodOptional<z.ZodString>;
|
|
1925
2037
|
}, z.core.$strip>;
|
|
1926
|
-
export declare const
|
|
1927
|
-
|
|
2038
|
+
export declare const zSetBasicPriceConsentBody: z.ZodObject<{
|
|
2039
|
+
decision: z.ZodEnum<{
|
|
2040
|
+
rejected: "rejected";
|
|
2041
|
+
accepted: "accepted";
|
|
2042
|
+
}>;
|
|
1928
2043
|
}, z.core.$strip>;
|
|
1929
2044
|
/**
|
|
1930
|
-
*
|
|
2045
|
+
* Decision recorded. Returns the updated consent status.
|
|
1931
2046
|
*/
|
|
1932
|
-
export declare const
|
|
1933
|
-
values: z.ZodString;
|
|
1934
|
-
version_channel: z.ZodString;
|
|
1935
|
-
name: z.ZodString;
|
|
1936
|
-
namespace: z.ZodString;
|
|
1937
|
-
chart: z.ZodString;
|
|
2047
|
+
export declare const zSetBasicPriceConsentResponse: z.ZodObject<{
|
|
1938
2048
|
status: z.ZodEnum<{
|
|
1939
|
-
|
|
1940
|
-
|
|
1941
|
-
|
|
1942
|
-
|
|
1943
|
-
TestSucceeded: "TestSucceeded";
|
|
1944
|
-
TestFailed: "TestFailed";
|
|
1945
|
-
RollbackSucceeded: "RollbackSucceeded";
|
|
1946
|
-
RollbackFailed: "RollbackFailed";
|
|
1947
|
-
UninstallSucceeded: "UninstallSucceeded";
|
|
1948
|
-
UninstallFailed: "UninstallFailed";
|
|
1949
|
-
ArtifactFailed: "ArtifactFailed";
|
|
1950
|
-
DependencyNotReady: "DependencyNotReady";
|
|
1951
|
-
Progressing: "Progressing";
|
|
1952
|
-
SourceNotReady: "SourceNotReady";
|
|
2049
|
+
pending: "pending";
|
|
2050
|
+
rejected: "rejected";
|
|
2051
|
+
accepted: "accepted";
|
|
2052
|
+
not_applicable: "not_applicable";
|
|
1953
2053
|
}>;
|
|
1954
|
-
|
|
1955
|
-
|
|
1956
|
-
updated_at: z.ZodString;
|
|
1957
|
-
ready: z.ZodBoolean;
|
|
1958
|
-
}, z.core.$strip>>;
|
|
1959
|
-
export declare const zCreateChartBody: z.ZodObject<{
|
|
1960
|
-
values: z.ZodString;
|
|
1961
|
-
version_channel: z.ZodString;
|
|
1962
|
-
name: z.ZodString;
|
|
1963
|
-
namespace: z.ZodString;
|
|
1964
|
-
chart: z.ZodString;
|
|
2054
|
+
decided_at: z.ZodOptional<z.ZodISODateTime>;
|
|
2055
|
+
decided_by: z.ZodOptional<z.ZodString>;
|
|
1965
2056
|
}, z.core.$strip>;
|
|
1966
|
-
|
|
1967
|
-
|
|
2057
|
+
/**
|
|
2058
|
+
* JSON-RPC 2.0 request payload
|
|
2059
|
+
*/
|
|
2060
|
+
export declare const zPostMcpBody: z.ZodObject<{
|
|
2061
|
+
jsonrpc: z.ZodOptional<z.ZodString>;
|
|
2062
|
+
method: z.ZodOptional<z.ZodString>;
|
|
2063
|
+
id: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>;
|
|
2064
|
+
params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1968
2065
|
}, z.core.$strip>;
|
|
1969
2066
|
/**
|
|
1970
|
-
*
|
|
2067
|
+
* JSON-RPC 2.0 success or error response
|
|
1971
2068
|
*/
|
|
1972
|
-
export declare const
|
|
1973
|
-
|
|
1974
|
-
|
|
1975
|
-
|
|
2069
|
+
export declare const zPostMcpResponse: z.ZodObject<{
|
|
2070
|
+
jsonrpc: z.ZodOptional<z.ZodString>;
|
|
2071
|
+
id: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>;
|
|
2072
|
+
result: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2073
|
+
error: z.ZodOptional<z.ZodObject<{
|
|
2074
|
+
code: z.ZodOptional<z.ZodInt>;
|
|
2075
|
+
message: z.ZodOptional<z.ZodString>;
|
|
2076
|
+
}, z.core.$strip>>;
|
|
1976
2077
|
}, z.core.$strip>;
|
|
1977
2078
|
/**
|
|
1978
|
-
*
|
|
2079
|
+
* An array of chart listings in the marketplace.
|
|
1979
2080
|
*/
|
|
1980
|
-
export declare const
|
|
1981
|
-
|
|
1982
|
-
|
|
2081
|
+
export declare const zListMarketplaceChartsResponse: z.ZodArray<z.ZodObject<{
|
|
2082
|
+
name: z.ZodString;
|
|
2083
|
+
versions: z.ZodArray<z.ZodString>;
|
|
2084
|
+
version_channels: z.ZodArray<z.ZodString>;
|
|
2085
|
+
latestVersion: z.ZodString;
|
|
2086
|
+
metadata: z.ZodOptional<z.ZodObject<{
|
|
2087
|
+
name: z.ZodString;
|
|
2088
|
+
version: z.ZodString;
|
|
2089
|
+
description: z.ZodOptional<z.ZodString>;
|
|
2090
|
+
appVersion: z.ZodOptional<z.ZodString>;
|
|
2091
|
+
apiVersion: z.ZodOptional<z.ZodString>;
|
|
2092
|
+
keywords: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2093
|
+
home: z.ZodOptional<z.ZodString>;
|
|
2094
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
2095
|
+
sources: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2096
|
+
maintainers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2097
|
+
name: z.ZodString;
|
|
2098
|
+
email: z.ZodOptional<z.ZodString>;
|
|
2099
|
+
}, z.core.$strip>>>;
|
|
2100
|
+
}, z.core.$strip>>;
|
|
2101
|
+
}, z.core.$strip>>;
|
|
2102
|
+
export declare const zGetMarketplaceChartFilesPath: z.ZodObject<{
|
|
1983
2103
|
chart_name: z.ZodString;
|
|
2104
|
+
version_channel: z.ZodString;
|
|
1984
2105
|
}, z.core.$strip>;
|
|
1985
2106
|
/**
|
|
1986
|
-
* Returns
|
|
2107
|
+
* Returns an object containing the chart files for the latest matching version.
|
|
1987
2108
|
*/
|
|
1988
|
-
export declare const
|
|
1989
|
-
|
|
1990
|
-
|
|
1991
|
-
|
|
1992
|
-
namespace: z.ZodString;
|
|
1993
|
-
chart: z.ZodString;
|
|
1994
|
-
status: z.ZodEnum<{
|
|
1995
|
-
InstallSucceeded: "InstallSucceeded";
|
|
1996
|
-
InstallFailed: "InstallFailed";
|
|
1997
|
-
UpgradeSucceeded: "UpgradeSucceeded";
|
|
1998
|
-
UpgradeFailed: "UpgradeFailed";
|
|
1999
|
-
TestSucceeded: "TestSucceeded";
|
|
2000
|
-
TestFailed: "TestFailed";
|
|
2001
|
-
RollbackSucceeded: "RollbackSucceeded";
|
|
2002
|
-
RollbackFailed: "RollbackFailed";
|
|
2003
|
-
UninstallSucceeded: "UninstallSucceeded";
|
|
2004
|
-
UninstallFailed: "UninstallFailed";
|
|
2005
|
-
ArtifactFailed: "ArtifactFailed";
|
|
2006
|
-
DependencyNotReady: "DependencyNotReady";
|
|
2007
|
-
Progressing: "Progressing";
|
|
2008
|
-
SourceNotReady: "SourceNotReady";
|
|
2009
|
-
}>;
|
|
2010
|
-
version_current: z.ZodString;
|
|
2011
|
-
created_at: z.ZodString;
|
|
2012
|
-
updated_at: z.ZodString;
|
|
2013
|
-
ready: z.ZodBoolean;
|
|
2109
|
+
export declare const zGetMarketplaceChartFilesResponse: z.ZodObject<{
|
|
2110
|
+
chartYaml: z.ZodOptional<z.ZodString>;
|
|
2111
|
+
valuesYaml: z.ZodOptional<z.ZodString>;
|
|
2112
|
+
valuesSchemaJson: z.ZodOptional<z.ZodString>;
|
|
2014
2113
|
}, z.core.$strip>;
|
|
2015
|
-
|
|
2016
|
-
|
|
2017
|
-
|
|
2114
|
+
/**
|
|
2115
|
+
* An array of invites
|
|
2116
|
+
*/
|
|
2117
|
+
export declare const zListInvitesResponse: z.ZodArray<z.ZodObject<{
|
|
2118
|
+
id: z.ZodOptional<z.ZodString>;
|
|
2119
|
+
organization_id: z.ZodOptional<z.ZodUUID>;
|
|
2120
|
+
date_created: z.ZodISODateTime;
|
|
2121
|
+
email: z.ZodOptional<z.ZodEmail>;
|
|
2122
|
+
code: z.ZodOptional<z.ZodString>;
|
|
2123
|
+
role: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
2124
|
+
Administrator: "Administrator";
|
|
2125
|
+
User: "User";
|
|
2126
|
+
}>>>;
|
|
2127
|
+
}, z.core.$strip>>;
|
|
2128
|
+
export declare const zCreateInviteBody: z.ZodObject<{
|
|
2129
|
+
email: z.ZodEmail;
|
|
2130
|
+
role: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
2131
|
+
Administrator: "Administrator";
|
|
2132
|
+
User: "User";
|
|
2133
|
+
}>>>;
|
|
2018
2134
|
}, z.core.$strip>;
|
|
2019
|
-
|
|
2020
|
-
|
|
2021
|
-
|
|
2135
|
+
/**
|
|
2136
|
+
* Successfully created. Returns created invite details.
|
|
2137
|
+
*/
|
|
2138
|
+
export declare const zCreateInviteResponse: z.ZodObject<{
|
|
2139
|
+
id: z.ZodOptional<z.ZodString>;
|
|
2140
|
+
organization_id: z.ZodOptional<z.ZodUUID>;
|
|
2141
|
+
date_created: z.ZodISODateTime;
|
|
2142
|
+
email: z.ZodOptional<z.ZodEmail>;
|
|
2143
|
+
code: z.ZodOptional<z.ZodString>;
|
|
2144
|
+
role: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
2145
|
+
Administrator: "Administrator";
|
|
2146
|
+
User: "User";
|
|
2147
|
+
}>>>;
|
|
2148
|
+
}, z.core.$strip>;
|
|
2149
|
+
export declare const zGetInvitePath: z.ZodObject<{
|
|
2150
|
+
code: z.ZodString;
|
|
2022
2151
|
}, z.core.$strip>;
|
|
2023
2152
|
/**
|
|
2024
|
-
*
|
|
2153
|
+
* The invitation code is valid. Returns the invited email and organization.
|
|
2025
2154
|
*/
|
|
2026
|
-
export declare const
|
|
2155
|
+
export declare const zGetInviteResponse: z.ZodObject<{
|
|
2156
|
+
email: z.ZodOptional<z.ZodEmail>;
|
|
2157
|
+
organization_id: z.ZodOptional<z.ZodString>;
|
|
2158
|
+
}, z.core.$strip>;
|
|
2159
|
+
export declare const zDeleteInvitePath: z.ZodObject<{
|
|
2160
|
+
email: z.ZodEmail;
|
|
2161
|
+
}, z.core.$strip>;
|
|
2162
|
+
export declare const zQueryClusterPath: z.ZodObject<{
|
|
2163
|
+
cluster_id: z.ZodString;
|
|
2164
|
+
}, z.core.$strip>;
|
|
2027
2165
|
export declare const zListFleetsPath: z.ZodObject<{
|
|
2028
2166
|
cluster_id: z.ZodString;
|
|
2029
2167
|
}, z.core.$strip>;
|
|
@@ -2046,16 +2184,16 @@ export declare const zListFleetsResponse: z.ZodArray<z.ZodObject<{
|
|
|
2046
2184
|
enabled: z.ZodBoolean;
|
|
2047
2185
|
controllerRoleArn: z.ZodOptional<z.ZodString>;
|
|
2048
2186
|
}, z.core.$strip>>;
|
|
2049
|
-
constraints: z.
|
|
2050
|
-
'karpenter.sh/capacity-type': z.ZodDefault<z.
|
|
2187
|
+
constraints: z.ZodDefault<z.ZodObject<{
|
|
2188
|
+
'karpenter.sh/capacity-type': z.ZodDefault<z.ZodArray<z.ZodEnum<{
|
|
2051
2189
|
"on-demand": "on-demand";
|
|
2052
2190
|
spot: "spot";
|
|
2053
|
-
}
|
|
2054
|
-
'kubernetes.io/arch': z.ZodDefault<z.
|
|
2191
|
+
}>>>;
|
|
2192
|
+
'kubernetes.io/arch': z.ZodDefault<z.ZodArray<z.ZodEnum<{
|
|
2055
2193
|
amd64: "amd64";
|
|
2056
2194
|
arm64: "arm64";
|
|
2057
|
-
}
|
|
2058
|
-
'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2195
|
+
}>>>;
|
|
2196
|
+
'cfke.io/instance-family': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2059
2197
|
p3: "p3";
|
|
2060
2198
|
cx: "cx";
|
|
2061
2199
|
h1: "h1";
|
|
@@ -2214,8 +2352,8 @@ export declare const zListFleetsResponse: z.ZodArray<z.ZodObject<{
|
|
|
2214
2352
|
x8g: "x8g";
|
|
2215
2353
|
z1d: "z1d";
|
|
2216
2354
|
z3: "z3";
|
|
2217
|
-
}
|
|
2218
|
-
'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2355
|
+
}>>>>;
|
|
2356
|
+
'topology.kubernetes.io/region': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2219
2357
|
"africa-south1": "africa-south1";
|
|
2220
2358
|
"ap-northeast-1": "ap-northeast-1";
|
|
2221
2359
|
"ap-northeast-2": "ap-northeast-2";
|
|
@@ -2280,13 +2418,17 @@ export declare const zListFleetsResponse: z.ZodArray<z.ZodObject<{
|
|
|
2280
2418
|
"us-west2": "us-west2";
|
|
2281
2419
|
"us-west3": "us-west3";
|
|
2282
2420
|
"us-west4": "us-west4";
|
|
2283
|
-
}
|
|
2421
|
+
}>>>>;
|
|
2284
2422
|
}, z.core.$strip>>;
|
|
2285
2423
|
scalingProfile: z.ZodDefault<z.ZodEnum<{
|
|
2286
2424
|
aggressive: "aggressive";
|
|
2287
2425
|
conservative: "conservative";
|
|
2288
2426
|
}>>;
|
|
2289
2427
|
id: z.ZodString;
|
|
2428
|
+
ready: z.ZodBoolean;
|
|
2429
|
+
status_message: z.ZodOptional<z.ZodString>;
|
|
2430
|
+
created_at: z.ZodString;
|
|
2431
|
+
updated_at: z.ZodString;
|
|
2290
2432
|
}, z.core.$strip>>;
|
|
2291
2433
|
export declare const zCreateFleetBody: z.ZodObject<{
|
|
2292
2434
|
limits: z.ZodOptional<z.ZodObject<{
|
|
@@ -2304,7 +2446,7 @@ export declare const zCreateFleetBody: z.ZodObject<{
|
|
|
2304
2446
|
enabled: z.ZodBoolean;
|
|
2305
2447
|
controllerRoleArn: z.ZodOptional<z.ZodString>;
|
|
2306
2448
|
}, z.core.$strip>>;
|
|
2307
|
-
constraints: z.ZodOptional<z.ZodObject<{
|
|
2449
|
+
constraints: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
2308
2450
|
'karpenter.sh/capacity-type': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2309
2451
|
"on-demand": "on-demand";
|
|
2310
2452
|
spot: "spot";
|
|
@@ -2313,7 +2455,7 @@ export declare const zCreateFleetBody: z.ZodObject<{
|
|
|
2313
2455
|
amd64: "amd64";
|
|
2314
2456
|
arm64: "arm64";
|
|
2315
2457
|
}>>>>;
|
|
2316
|
-
'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2458
|
+
'cfke.io/instance-family': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2317
2459
|
p3: "p3";
|
|
2318
2460
|
cx: "cx";
|
|
2319
2461
|
h1: "h1";
|
|
@@ -2472,8 +2614,8 @@ export declare const zCreateFleetBody: z.ZodObject<{
|
|
|
2472
2614
|
x8g: "x8g";
|
|
2473
2615
|
z1d: "z1d";
|
|
2474
2616
|
z3: "z3";
|
|
2475
|
-
}
|
|
2476
|
-
'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2617
|
+
}>>>>;
|
|
2618
|
+
'topology.kubernetes.io/region': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2477
2619
|
"africa-south1": "africa-south1";
|
|
2478
2620
|
"ap-northeast-1": "ap-northeast-1";
|
|
2479
2621
|
"ap-northeast-2": "ap-northeast-2";
|
|
@@ -2538,8 +2680,8 @@ export declare const zCreateFleetBody: z.ZodObject<{
|
|
|
2538
2680
|
"us-west2": "us-west2";
|
|
2539
2681
|
"us-west3": "us-west3";
|
|
2540
2682
|
"us-west4": "us-west4";
|
|
2541
|
-
}
|
|
2542
|
-
}, z.core.$strip
|
|
2683
|
+
}>>>>;
|
|
2684
|
+
}, z.core.$strip>>>;
|
|
2543
2685
|
scalingProfile: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
2544
2686
|
aggressive: "aggressive";
|
|
2545
2687
|
conservative: "conservative";
|
|
@@ -2584,16 +2726,16 @@ export declare const zGetFleetResponse: z.ZodObject<{
|
|
|
2584
2726
|
enabled: z.ZodBoolean;
|
|
2585
2727
|
controllerRoleArn: z.ZodOptional<z.ZodString>;
|
|
2586
2728
|
}, z.core.$strip>>;
|
|
2587
|
-
constraints: z.
|
|
2588
|
-
'karpenter.sh/capacity-type': z.ZodDefault<z.
|
|
2729
|
+
constraints: z.ZodDefault<z.ZodObject<{
|
|
2730
|
+
'karpenter.sh/capacity-type': z.ZodDefault<z.ZodArray<z.ZodEnum<{
|
|
2589
2731
|
"on-demand": "on-demand";
|
|
2590
2732
|
spot: "spot";
|
|
2591
|
-
}
|
|
2592
|
-
'kubernetes.io/arch': z.ZodDefault<z.
|
|
2733
|
+
}>>>;
|
|
2734
|
+
'kubernetes.io/arch': z.ZodDefault<z.ZodArray<z.ZodEnum<{
|
|
2593
2735
|
amd64: "amd64";
|
|
2594
2736
|
arm64: "arm64";
|
|
2595
|
-
}
|
|
2596
|
-
'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2737
|
+
}>>>;
|
|
2738
|
+
'cfke.io/instance-family': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2597
2739
|
p3: "p3";
|
|
2598
2740
|
cx: "cx";
|
|
2599
2741
|
h1: "h1";
|
|
@@ -2752,8 +2894,8 @@ export declare const zGetFleetResponse: z.ZodObject<{
|
|
|
2752
2894
|
x8g: "x8g";
|
|
2753
2895
|
z1d: "z1d";
|
|
2754
2896
|
z3: "z3";
|
|
2755
|
-
}
|
|
2756
|
-
'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2897
|
+
}>>>>;
|
|
2898
|
+
'topology.kubernetes.io/region': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2757
2899
|
"africa-south1": "africa-south1";
|
|
2758
2900
|
"ap-northeast-1": "ap-northeast-1";
|
|
2759
2901
|
"ap-northeast-2": "ap-northeast-2";
|
|
@@ -2818,13 +2960,17 @@ export declare const zGetFleetResponse: z.ZodObject<{
|
|
|
2818
2960
|
"us-west2": "us-west2";
|
|
2819
2961
|
"us-west3": "us-west3";
|
|
2820
2962
|
"us-west4": "us-west4";
|
|
2821
|
-
}
|
|
2963
|
+
}>>>>;
|
|
2822
2964
|
}, z.core.$strip>>;
|
|
2823
2965
|
scalingProfile: z.ZodDefault<z.ZodEnum<{
|
|
2824
2966
|
aggressive: "aggressive";
|
|
2825
2967
|
conservative: "conservative";
|
|
2826
2968
|
}>>;
|
|
2827
2969
|
id: z.ZodString;
|
|
2970
|
+
ready: z.ZodBoolean;
|
|
2971
|
+
status_message: z.ZodOptional<z.ZodString>;
|
|
2972
|
+
created_at: z.ZodString;
|
|
2973
|
+
updated_at: z.ZodString;
|
|
2828
2974
|
}, z.core.$strip>;
|
|
2829
2975
|
export declare const zUpdateFleetBody: z.ZodObject<{
|
|
2830
2976
|
limits: z.ZodOptional<z.ZodObject<{
|
|
@@ -2842,16 +2988,16 @@ export declare const zUpdateFleetBody: z.ZodObject<{
|
|
|
2842
2988
|
enabled: z.ZodBoolean;
|
|
2843
2989
|
controllerRoleArn: z.ZodOptional<z.ZodString>;
|
|
2844
2990
|
}, z.core.$strip>>;
|
|
2845
|
-
constraints: z.ZodOptional<z.ZodObject<{
|
|
2846
|
-
'karpenter.sh/capacity-type': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2991
|
+
constraints: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
2992
|
+
'karpenter.sh/capacity-type': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2847
2993
|
"on-demand": "on-demand";
|
|
2848
2994
|
spot: "spot";
|
|
2849
|
-
}
|
|
2850
|
-
'kubernetes.io/arch': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2995
|
+
}>>>>;
|
|
2996
|
+
'kubernetes.io/arch': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2851
2997
|
amd64: "amd64";
|
|
2852
2998
|
arm64: "arm64";
|
|
2853
|
-
}
|
|
2854
|
-
'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2999
|
+
}>>>>;
|
|
3000
|
+
'cfke.io/instance-family': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2855
3001
|
p3: "p3";
|
|
2856
3002
|
cx: "cx";
|
|
2857
3003
|
h1: "h1";
|
|
@@ -3010,8 +3156,8 @@ export declare const zUpdateFleetBody: z.ZodObject<{
|
|
|
3010
3156
|
x8g: "x8g";
|
|
3011
3157
|
z1d: "z1d";
|
|
3012
3158
|
z3: "z3";
|
|
3013
|
-
}
|
|
3014
|
-
'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
3159
|
+
}>>>>;
|
|
3160
|
+
'topology.kubernetes.io/region': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
3015
3161
|
"africa-south1": "africa-south1";
|
|
3016
3162
|
"ap-northeast-1": "ap-northeast-1";
|
|
3017
3163
|
"ap-northeast-2": "ap-northeast-2";
|
|
@@ -3076,826 +3222,903 @@ export declare const zUpdateFleetBody: z.ZodObject<{
|
|
|
3076
3222
|
"us-west2": "us-west2";
|
|
3077
3223
|
"us-west3": "us-west3";
|
|
3078
3224
|
"us-west4": "us-west4";
|
|
3079
|
-
}
|
|
3080
|
-
}, z.core.$strip
|
|
3081
|
-
scalingProfile: z.ZodEnum<{
|
|
3082
|
-
aggressive: "aggressive";
|
|
3083
|
-
conservative: "conservative";
|
|
3084
|
-
}>;
|
|
3085
|
-
}, z.core.$strip>;
|
|
3086
|
-
export declare const zUpdateFleetPath: z.ZodObject<{
|
|
3087
|
-
cluster_id: z.ZodString;
|
|
3088
|
-
fleet_name: z.ZodString;
|
|
3089
|
-
}, z.core.$strip>;
|
|
3090
|
-
/**
|
|
3091
|
-
* Successfully updated.
|
|
3092
|
-
*/
|
|
3093
|
-
export declare const zUpdateFleetResponse: z.ZodString;
|
|
3094
|
-
export declare const zQueryClusterPath: z.ZodObject<{
|
|
3095
|
-
cluster_id: z.ZodString;
|
|
3096
|
-
}, z.core.$strip>;
|
|
3097
|
-
/**
|
|
3098
|
-
* An array of clusters
|
|
3099
|
-
*/
|
|
3100
|
-
export declare const zListClustersResponse: z.ZodArray<z.ZodObject<{
|
|
3101
|
-
name: z.ZodString;
|
|
3102
|
-
tier: z.ZodEnum<{
|
|
3103
|
-
basic: "basic";
|
|
3104
|
-
pro: "pro";
|
|
3105
|
-
}>;
|
|
3106
|
-
region: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
3107
|
-
"staging-1a": "staging-1a";
|
|
3108
|
-
"northamerica-central-1": "northamerica-central-1";
|
|
3109
|
-
"europe-central-1a": "europe-central-1a";
|
|
3110
|
-
"northamerica-central-1a": "northamerica-central-1a";
|
|
3111
|
-
}>>>;
|
|
3112
|
-
id: z.ZodUUID;
|
|
3113
|
-
status: z.ZodEnum<{
|
|
3114
|
-
deleted: "deleted";
|
|
3115
|
-
failed: "failed";
|
|
3116
|
-
active: "active";
|
|
3117
|
-
disabled: "disabled";
|
|
3118
|
-
creating: "creating";
|
|
3119
|
-
deployed: "deployed";
|
|
3120
|
-
updating: "updating";
|
|
3121
|
-
}>;
|
|
3122
|
-
endpoint: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
|
|
3123
|
-
"": "";
|
|
3124
|
-
}>]>>;
|
|
3125
|
-
endpoint_public: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
|
|
3126
|
-
"": "";
|
|
3127
|
-
}>]>>;
|
|
3128
|
-
certificate_ca: z.ZodOptional<z.ZodString>;
|
|
3129
|
-
version_current: z.ZodOptional<z.ZodString>;
|
|
3130
|
-
created_at: z.ZodOptional<z.ZodString>;
|
|
3131
|
-
updated_at: z.ZodOptional<z.ZodString>;
|
|
3132
|
-
ready: z.ZodOptional<z.ZodBoolean>;
|
|
3133
|
-
version_channel: z.ZodOptional<z.ZodString>;
|
|
3134
|
-
}, z.core.$strip>>;
|
|
3135
|
-
export declare const zCreateClusterBody: z.ZodObject<{
|
|
3136
|
-
name: z.ZodString;
|
|
3137
|
-
tier: z.ZodEnum<{
|
|
3138
|
-
basic: "basic";
|
|
3139
|
-
pro: "pro";
|
|
3140
|
-
}>;
|
|
3141
|
-
region: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
3142
|
-
"staging-1a": "staging-1a";
|
|
3143
|
-
"northamerica-central-1": "northamerica-central-1";
|
|
3144
|
-
"europe-central-1a": "europe-central-1a";
|
|
3145
|
-
"northamerica-central-1a": "northamerica-central-1a";
|
|
3146
|
-
}>>>;
|
|
3147
|
-
version_channel: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
3148
|
-
"1.x.x-cfke.x": "1.x.x-cfke.x";
|
|
3149
|
-
"1.31.x-cfke.x": "1.31.x-cfke.x";
|
|
3150
|
-
"1.32.x-cfke.x": "1.32.x-cfke.x";
|
|
3151
|
-
"1.33.x-cfke.x": "1.33.x-cfke.x";
|
|
3225
|
+
}>>>>;
|
|
3226
|
+
}, z.core.$strip>>>;
|
|
3227
|
+
scalingProfile: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
3228
|
+
aggressive: "aggressive";
|
|
3229
|
+
conservative: "conservative";
|
|
3152
3230
|
}>>>;
|
|
3153
3231
|
}, z.core.$strip>;
|
|
3154
|
-
|
|
3155
|
-
* Successfully created. Returns created Cluster ID.
|
|
3156
|
-
*/
|
|
3157
|
-
export declare const zCreateClusterResponse: z.ZodString;
|
|
3158
|
-
export declare const zDeleteClusterPath: z.ZodObject<{
|
|
3232
|
+
export declare const zUpdateFleetPath: z.ZodObject<{
|
|
3159
3233
|
cluster_id: z.ZodString;
|
|
3234
|
+
fleet_name: z.ZodString;
|
|
3160
3235
|
}, z.core.$strip>;
|
|
3161
3236
|
/**
|
|
3162
|
-
* Successfully
|
|
3237
|
+
* Successfully updated.
|
|
3163
3238
|
*/
|
|
3164
|
-
export declare const
|
|
3165
|
-
export declare const
|
|
3239
|
+
export declare const zUpdateFleetResponse: z.ZodString;
|
|
3240
|
+
export declare const zListChartsPath: z.ZodObject<{
|
|
3166
3241
|
cluster_id: z.ZodString;
|
|
3167
3242
|
}, z.core.$strip>;
|
|
3168
3243
|
/**
|
|
3169
|
-
*
|
|
3244
|
+
* An array of charts
|
|
3170
3245
|
*/
|
|
3171
|
-
export declare const
|
|
3246
|
+
export declare const zListChartsResponse: z.ZodArray<z.ZodObject<{
|
|
3247
|
+
values: z.ZodString;
|
|
3248
|
+
version_channel: z.ZodString;
|
|
3172
3249
|
name: z.ZodString;
|
|
3173
|
-
|
|
3174
|
-
|
|
3175
|
-
|
|
3176
|
-
|
|
3177
|
-
|
|
3178
|
-
|
|
3179
|
-
|
|
3180
|
-
|
|
3181
|
-
|
|
3182
|
-
|
|
3183
|
-
|
|
3184
|
-
status: z.ZodEnum<{
|
|
3185
|
-
deleted: "deleted";
|
|
3186
|
-
failed: "failed";
|
|
3187
|
-
active: "active";
|
|
3188
|
-
disabled: "disabled";
|
|
3189
|
-
creating: "creating";
|
|
3190
|
-
deployed: "deployed";
|
|
3191
|
-
updating: "updating";
|
|
3192
|
-
}>;
|
|
3193
|
-
endpoint: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
|
|
3194
|
-
"": "";
|
|
3195
|
-
}>]>>;
|
|
3196
|
-
endpoint_public: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
|
|
3197
|
-
"": "";
|
|
3198
|
-
}>]>>;
|
|
3199
|
-
certificate_ca: z.ZodOptional<z.ZodString>;
|
|
3200
|
-
version_current: z.ZodOptional<z.ZodString>;
|
|
3201
|
-
created_at: z.ZodOptional<z.ZodString>;
|
|
3202
|
-
updated_at: z.ZodOptional<z.ZodString>;
|
|
3203
|
-
ready: z.ZodOptional<z.ZodBoolean>;
|
|
3204
|
-
version_channel: z.ZodOptional<z.ZodString>;
|
|
3205
|
-
}, z.core.$strip>;
|
|
3206
|
-
export declare const zUpdateClusterBody: z.ZodObject<{
|
|
3207
|
-
name: z.ZodOptional<z.ZodString>;
|
|
3208
|
-
tier: z.ZodEnum<{
|
|
3209
|
-
basic: "basic";
|
|
3210
|
-
pro: "pro";
|
|
3211
|
-
}>;
|
|
3212
|
-
version_channel: z.ZodOptional<z.ZodString>;
|
|
3213
|
-
}, z.core.$strip>;
|
|
3214
|
-
export declare const zUpdateClusterPath: z.ZodObject<{
|
|
3215
|
-
cluster_id: z.ZodString;
|
|
3216
|
-
}, z.core.$strip>;
|
|
3217
|
-
/**
|
|
3218
|
-
* Successfully updated. Returns updated cluster details.
|
|
3219
|
-
*/
|
|
3220
|
-
export declare const zUpdateClusterResponse: z.ZodObject<{
|
|
3250
|
+
namespace: z.ZodString;
|
|
3251
|
+
chart: z.ZodString;
|
|
3252
|
+
status: z.ZodString;
|
|
3253
|
+
version_current: z.ZodString;
|
|
3254
|
+
created_at: z.ZodString;
|
|
3255
|
+
updated_at: z.ZodString;
|
|
3256
|
+
ready: z.ZodBoolean;
|
|
3257
|
+
}, z.core.$strip>>;
|
|
3258
|
+
export declare const zCreateChartBody: z.ZodObject<{
|
|
3259
|
+
values: z.ZodString;
|
|
3260
|
+
version_channel: z.ZodString;
|
|
3221
3261
|
name: z.ZodString;
|
|
3222
|
-
|
|
3223
|
-
|
|
3224
|
-
pro: "pro";
|
|
3225
|
-
}>;
|
|
3226
|
-
region: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
3227
|
-
"staging-1a": "staging-1a";
|
|
3228
|
-
"northamerica-central-1": "northamerica-central-1";
|
|
3229
|
-
"europe-central-1a": "europe-central-1a";
|
|
3230
|
-
"northamerica-central-1a": "northamerica-central-1a";
|
|
3231
|
-
}>>>;
|
|
3232
|
-
id: z.ZodUUID;
|
|
3233
|
-
status: z.ZodEnum<{
|
|
3234
|
-
deleted: "deleted";
|
|
3235
|
-
failed: "failed";
|
|
3236
|
-
active: "active";
|
|
3237
|
-
disabled: "disabled";
|
|
3238
|
-
creating: "creating";
|
|
3239
|
-
deployed: "deployed";
|
|
3240
|
-
updating: "updating";
|
|
3241
|
-
}>;
|
|
3242
|
-
endpoint: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
|
|
3243
|
-
"": "";
|
|
3244
|
-
}>]>>;
|
|
3245
|
-
endpoint_public: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
|
|
3246
|
-
"": "";
|
|
3247
|
-
}>]>>;
|
|
3248
|
-
certificate_ca: z.ZodOptional<z.ZodString>;
|
|
3249
|
-
version_current: z.ZodOptional<z.ZodString>;
|
|
3250
|
-
created_at: z.ZodOptional<z.ZodString>;
|
|
3251
|
-
updated_at: z.ZodOptional<z.ZodString>;
|
|
3252
|
-
ready: z.ZodOptional<z.ZodBoolean>;
|
|
3253
|
-
version_channel: z.ZodOptional<z.ZodString>;
|
|
3262
|
+
namespace: z.ZodString;
|
|
3263
|
+
chart: z.ZodString;
|
|
3254
3264
|
}, z.core.$strip>;
|
|
3255
|
-
export declare const
|
|
3265
|
+
export declare const zCreateChartPath: z.ZodObject<{
|
|
3256
3266
|
cluster_id: z.ZodString;
|
|
3257
3267
|
}, z.core.$strip>;
|
|
3258
3268
|
/**
|
|
3259
|
-
*
|
|
3260
|
-
*/
|
|
3261
|
-
export declare const zGetJoinInformationResponse: z.ZodObject<{
|
|
3262
|
-
certificate_authority: z.ZodString;
|
|
3263
|
-
endpoint: z.ZodURL;
|
|
3264
|
-
cluster_dns: z.ZodString;
|
|
3265
|
-
auth_key: z.ZodString;
|
|
3266
|
-
bootstrap_token: z.ZodString;
|
|
3267
|
-
versions: z.ZodObject<{
|
|
3268
|
-
kubernetes: z.ZodString;
|
|
3269
|
-
tailscale: z.ZodString;
|
|
3270
|
-
containerd: z.ZodString;
|
|
3271
|
-
nvidia_driver: z.ZodString;
|
|
3272
|
-
}, z.core.$strip>;
|
|
3273
|
-
third_party_api_access_config: z.ZodObject<{
|
|
3274
|
-
metadata_url: z.ZodString;
|
|
3275
|
-
aws_role_arn: z.ZodString;
|
|
3276
|
-
gcp_workload_identity_provider: z.ZodString;
|
|
3277
|
-
}, z.core.$strip>;
|
|
3278
|
-
}, z.core.$strip>;
|
|
3279
|
-
/**
|
|
3280
|
-
* An array of invites
|
|
3281
|
-
*/
|
|
3282
|
-
export declare const zListInvitesResponse: z.ZodArray<z.ZodObject<{
|
|
3283
|
-
id: z.ZodOptional<z.ZodString>;
|
|
3284
|
-
organization_id: z.ZodOptional<z.ZodUUID>;
|
|
3285
|
-
date_created: z.ZodISODateTime;
|
|
3286
|
-
email: z.ZodOptional<z.ZodEmail>;
|
|
3287
|
-
code: z.ZodOptional<z.ZodString>;
|
|
3288
|
-
}, z.core.$strip>>;
|
|
3289
|
-
export declare const zCreateInviteBody: z.ZodObject<{
|
|
3290
|
-
email: z.ZodOptional<z.ZodString>;
|
|
3291
|
-
}, z.core.$strip>;
|
|
3292
|
-
/**
|
|
3293
|
-
* Successfully created. Returns created invite details.
|
|
3294
|
-
*/
|
|
3295
|
-
export declare const zCreateInviteResponse: z.ZodObject<{
|
|
3296
|
-
id: z.ZodOptional<z.ZodString>;
|
|
3297
|
-
organization_id: z.ZodOptional<z.ZodUUID>;
|
|
3298
|
-
date_created: z.ZodISODateTime;
|
|
3299
|
-
email: z.ZodOptional<z.ZodEmail>;
|
|
3300
|
-
code: z.ZodOptional<z.ZodString>;
|
|
3301
|
-
}, z.core.$strip>;
|
|
3302
|
-
export declare const zGetInvitePath: z.ZodObject<{
|
|
3303
|
-
code: z.ZodString;
|
|
3304
|
-
}, z.core.$strip>;
|
|
3305
|
-
/**
|
|
3306
|
-
* Returns a single object containing invite details.
|
|
3307
|
-
*/
|
|
3308
|
-
export declare const zGetInviteResponse: z.ZodObject<{
|
|
3309
|
-
id: z.ZodOptional<z.ZodString>;
|
|
3310
|
-
organization_id: z.ZodOptional<z.ZodUUID>;
|
|
3311
|
-
date_created: z.ZodISODateTime;
|
|
3312
|
-
email: z.ZodOptional<z.ZodEmail>;
|
|
3313
|
-
code: z.ZodOptional<z.ZodString>;
|
|
3314
|
-
}, z.core.$strip>;
|
|
3315
|
-
export declare const zDeleteInvitePath: z.ZodObject<{
|
|
3316
|
-
email: z.ZodString;
|
|
3317
|
-
}, z.core.$strip>;
|
|
3318
|
-
/**
|
|
3319
|
-
* An array of chart listings in the marketplace.
|
|
3269
|
+
* Successfully created. Returns created Chart ID.
|
|
3320
3270
|
*/
|
|
3321
|
-
export declare const
|
|
3322
|
-
|
|
3323
|
-
|
|
3324
|
-
version_channels: z.ZodArray<z.ZodString>;
|
|
3325
|
-
latestVersion: z.ZodString;
|
|
3326
|
-
metadata: z.ZodOptional<z.ZodObject<{
|
|
3327
|
-
name: z.ZodString;
|
|
3328
|
-
version: z.ZodString;
|
|
3329
|
-
description: z.ZodOptional<z.ZodString>;
|
|
3330
|
-
appVersion: z.ZodOptional<z.ZodString>;
|
|
3331
|
-
apiVersion: z.ZodOptional<z.ZodString>;
|
|
3332
|
-
keywords: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3333
|
-
home: z.ZodOptional<z.ZodString>;
|
|
3334
|
-
icon: z.ZodOptional<z.ZodString>;
|
|
3335
|
-
sources: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3336
|
-
maintainers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3337
|
-
name: z.ZodString;
|
|
3338
|
-
email: z.ZodOptional<z.ZodString>;
|
|
3339
|
-
}, z.core.$strip>>>;
|
|
3340
|
-
}, z.core.$strip>>;
|
|
3341
|
-
}, z.core.$strip>>;
|
|
3342
|
-
export declare const zGetMarketplaceChartFilesPath: z.ZodObject<{
|
|
3271
|
+
export declare const zCreateChartResponse: z.ZodString;
|
|
3272
|
+
export declare const zDeleteChartPath: z.ZodObject<{
|
|
3273
|
+
cluster_id: z.ZodString;
|
|
3343
3274
|
chart_name: z.ZodString;
|
|
3344
|
-
version_channel: z.ZodString;
|
|
3345
|
-
}, z.core.$strip>;
|
|
3346
|
-
/**
|
|
3347
|
-
* Returns an object containing the chart files for the latest matching version.
|
|
3348
|
-
*/
|
|
3349
|
-
export declare const zGetMarketplaceChartFilesResponse: z.ZodObject<{
|
|
3350
|
-
chartYaml: z.ZodOptional<z.ZodString>;
|
|
3351
|
-
valuesYaml: z.ZodOptional<z.ZodString>;
|
|
3352
|
-
valuesSchemaJson: z.ZodOptional<z.ZodString>;
|
|
3353
|
-
}, z.core.$strip>;
|
|
3354
|
-
/**
|
|
3355
|
-
* JSON-RPC 2.0 request payload
|
|
3356
|
-
*/
|
|
3357
|
-
export declare const zPostMcpBody: z.ZodObject<{
|
|
3358
|
-
jsonrpc: z.ZodOptional<z.ZodString>;
|
|
3359
|
-
method: z.ZodOptional<z.ZodString>;
|
|
3360
|
-
id: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>;
|
|
3361
|
-
params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3362
|
-
}, z.core.$strip>;
|
|
3363
|
-
/**
|
|
3364
|
-
* JSON-RPC 2.0 success or error response
|
|
3365
|
-
*/
|
|
3366
|
-
export declare const zPostMcpResponse: z.ZodObject<{
|
|
3367
|
-
jsonrpc: z.ZodOptional<z.ZodString>;
|
|
3368
|
-
id: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>;
|
|
3369
|
-
result: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3370
|
-
error: z.ZodOptional<z.ZodObject<{
|
|
3371
|
-
code: z.ZodOptional<z.ZodInt>;
|
|
3372
|
-
message: z.ZodOptional<z.ZodString>;
|
|
3373
|
-
}, z.core.$strip>>;
|
|
3374
|
-
}, z.core.$strip>;
|
|
3375
|
-
/**
|
|
3376
|
-
* Returns a single object containing organization details.
|
|
3377
|
-
*/
|
|
3378
|
-
export declare const zGetOrganizationResponse: z.ZodObject<{
|
|
3379
|
-
id: z.ZodUUID;
|
|
3380
|
-
name: z.ZodOptional<z.ZodString>;
|
|
3381
|
-
date_created: z.ZodISODateTime;
|
|
3382
|
-
quota: z.ZodObject<{
|
|
3383
|
-
basic_clusters_max: z.ZodInt;
|
|
3384
|
-
basic_clusters_available: z.ZodInt;
|
|
3385
|
-
pro_clusters_max: z.ZodInt;
|
|
3386
|
-
pro_clusters_available: z.ZodInt;
|
|
3387
|
-
fleets_max: z.ZodInt;
|
|
3388
|
-
cluster_tiers: z.ZodArray<z.ZodString>;
|
|
3389
|
-
regions: z.ZodArray<z.ZodString>;
|
|
3390
|
-
versions: z.ZodArray<z.ZodObject<{
|
|
3391
|
-
id: z.ZodString;
|
|
3392
|
-
label: z.ZodString;
|
|
3393
|
-
}, z.core.$strip>>;
|
|
3394
|
-
cfcr_storage_gb: z.ZodInt;
|
|
3395
|
-
}, z.core.$strip>;
|
|
3396
|
-
status: z.ZodEnum<{
|
|
3397
|
-
active: "active";
|
|
3398
|
-
closed: "closed";
|
|
3399
|
-
suspended: "suspended";
|
|
3400
|
-
}>;
|
|
3401
|
-
}, z.core.$strip>;
|
|
3402
|
-
export declare const zCreateOrganizationBody: z.ZodObject<{
|
|
3403
|
-
email: z.ZodEmail;
|
|
3404
|
-
first_name: z.ZodString;
|
|
3405
|
-
last_name: z.ZodString;
|
|
3406
|
-
company_name: z.ZodString;
|
|
3407
|
-
password: z.ZodString;
|
|
3408
3275
|
}, z.core.$strip>;
|
|
3409
|
-
/**
|
|
3410
|
-
*
|
|
3411
|
-
*/
|
|
3412
|
-
export declare const
|
|
3413
|
-
|
|
3414
|
-
|
|
3415
|
-
|
|
3416
|
-
}, z.core.$strip>>;
|
|
3417
|
-
export declare const zListTagsPath: z.ZodObject<{
|
|
3418
|
-
region: z.ZodString;
|
|
3419
|
-
repository: z.ZodString;
|
|
3276
|
+
/**
|
|
3277
|
+
* Successfully deleted.
|
|
3278
|
+
*/
|
|
3279
|
+
export declare const zDeleteChartResponse: z.ZodString;
|
|
3280
|
+
export declare const zGetChartPath: z.ZodObject<{
|
|
3281
|
+
cluster_id: z.ZodString;
|
|
3282
|
+
chart_name: z.ZodString;
|
|
3420
3283
|
}, z.core.$strip>;
|
|
3421
3284
|
/**
|
|
3422
|
-
*
|
|
3285
|
+
* Returns a single object containing chart details.
|
|
3423
3286
|
*/
|
|
3424
|
-
export declare const
|
|
3287
|
+
export declare const zGetChartResponse: z.ZodObject<{
|
|
3288
|
+
values: z.ZodString;
|
|
3289
|
+
version_channel: z.ZodString;
|
|
3425
3290
|
name: z.ZodString;
|
|
3426
|
-
|
|
3427
|
-
|
|
3428
|
-
|
|
3429
|
-
|
|
3430
|
-
|
|
3431
|
-
|
|
3432
|
-
|
|
3433
|
-
}, z.core.$strip>>;
|
|
3434
|
-
totalSize: z.ZodNumber;
|
|
3291
|
+
namespace: z.ZodString;
|
|
3292
|
+
chart: z.ZodString;
|
|
3293
|
+
status: z.ZodString;
|
|
3294
|
+
version_current: z.ZodString;
|
|
3295
|
+
created_at: z.ZodString;
|
|
3296
|
+
updated_at: z.ZodString;
|
|
3297
|
+
ready: z.ZodBoolean;
|
|
3435
3298
|
}, z.core.$strip>;
|
|
3436
|
-
export declare const
|
|
3437
|
-
|
|
3438
|
-
|
|
3439
|
-
tag: z.ZodString;
|
|
3299
|
+
export declare const zUpdateChartBody: z.ZodObject<{
|
|
3300
|
+
values: z.ZodString;
|
|
3301
|
+
version_channel: z.ZodString;
|
|
3440
3302
|
}, z.core.$strip>;
|
|
3441
|
-
export declare const
|
|
3442
|
-
|
|
3443
|
-
|
|
3444
|
-
tag: z.ZodString;
|
|
3303
|
+
export declare const zUpdateChartPath: z.ZodObject<{
|
|
3304
|
+
cluster_id: z.ZodString;
|
|
3305
|
+
chart_name: z.ZodString;
|
|
3445
3306
|
}, z.core.$strip>;
|
|
3446
3307
|
/**
|
|
3447
|
-
*
|
|
3308
|
+
* Successfully updated.
|
|
3448
3309
|
*/
|
|
3449
|
-
export declare const
|
|
3310
|
+
export declare const zUpdateChartResponse: z.ZodString;
|
|
3311
|
+
/**
|
|
3312
|
+
* An array of clusters
|
|
3313
|
+
*/
|
|
3314
|
+
export declare const zListClustersResponse: z.ZodArray<z.ZodObject<{
|
|
3450
3315
|
name: z.ZodString;
|
|
3451
|
-
|
|
3452
|
-
|
|
3453
|
-
|
|
3454
|
-
|
|
3316
|
+
tier: z.ZodDefault<z.ZodEnum<{
|
|
3317
|
+
basic: "basic";
|
|
3318
|
+
enterprise: "enterprise";
|
|
3319
|
+
pro: "pro";
|
|
3320
|
+
}>>;
|
|
3321
|
+
version_channel: z.ZodDefault<z.ZodString>;
|
|
3322
|
+
release_channel: z.ZodDefault<z.ZodEnum<{
|
|
3323
|
+
stable: "stable";
|
|
3324
|
+
rapid: "rapid";
|
|
3325
|
+
extended: "extended";
|
|
3326
|
+
}>>;
|
|
3327
|
+
features: z.ZodDefault<z.ZodObject<{
|
|
3328
|
+
gpu_sharing_strategy: z.ZodDefault<z.ZodEnum<{
|
|
3329
|
+
none: "none";
|
|
3330
|
+
mps: "mps";
|
|
3331
|
+
time_slicing: "time_slicing";
|
|
3332
|
+
}>>;
|
|
3333
|
+
gpu_max_shared_clients_per_gpu: z.ZodDefault<z.ZodInt>;
|
|
3334
|
+
cilium_socket_lb_host_namespace_only: z.ZodBoolean;
|
|
3455
3335
|
}, z.core.$strip>>;
|
|
3456
|
-
|
|
3457
|
-
|
|
3458
|
-
|
|
3459
|
-
|
|
3460
|
-
|
|
3461
|
-
|
|
3462
|
-
|
|
3463
|
-
|
|
3464
|
-
|
|
3465
|
-
|
|
3466
|
-
|
|
3467
|
-
|
|
3468
|
-
|
|
3469
|
-
|
|
3470
|
-
|
|
3471
|
-
|
|
3336
|
+
region: z.ZodString;
|
|
3337
|
+
networking: z.ZodDefault<z.ZodObject<{
|
|
3338
|
+
pod_cidr: z.ZodDefault<z.ZodString>;
|
|
3339
|
+
service_cidr: z.ZodDefault<z.ZodString>;
|
|
3340
|
+
dual_stack: z.ZodBoolean;
|
|
3341
|
+
pod_cidr_v6: z.ZodDefault<z.ZodString>;
|
|
3342
|
+
service_cidr_v6: z.ZodDefault<z.ZodString>;
|
|
3343
|
+
}, z.core.$strip>>;
|
|
3344
|
+
id: z.ZodUUID;
|
|
3345
|
+
status: z.ZodEnum<{
|
|
3346
|
+
disabled: "disabled";
|
|
3347
|
+
creating: "creating";
|
|
3348
|
+
deployed: "deployed";
|
|
3349
|
+
updating: "updating";
|
|
3350
|
+
}>;
|
|
3351
|
+
endpoint: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
|
|
3352
|
+
"": "";
|
|
3353
|
+
}>]>>;
|
|
3354
|
+
endpoint_public: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
|
|
3355
|
+
"": "";
|
|
3356
|
+
}>]>>;
|
|
3357
|
+
certificate_ca: z.ZodOptional<z.ZodString>;
|
|
3358
|
+
version_current: z.ZodOptional<z.ZodString>;
|
|
3359
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
3360
|
+
updated_at: z.ZodOptional<z.ZodString>;
|
|
3361
|
+
ready: z.ZodBoolean;
|
|
3362
|
+
}, z.core.$strip>>;
|
|
3363
|
+
export declare const zCreateClusterBody: z.ZodObject<{
|
|
3364
|
+
name: z.ZodString;
|
|
3365
|
+
tier: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
3366
|
+
basic: "basic";
|
|
3367
|
+
enterprise: "enterprise";
|
|
3368
|
+
pro: "pro";
|
|
3369
|
+
}>>>;
|
|
3370
|
+
version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
3371
|
+
release_channel: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
3372
|
+
stable: "stable";
|
|
3373
|
+
rapid: "rapid";
|
|
3374
|
+
extended: "extended";
|
|
3375
|
+
}>>>;
|
|
3376
|
+
features: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
3377
|
+
gpu_sharing_strategy: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
3378
|
+
none: "none";
|
|
3379
|
+
mps: "mps";
|
|
3380
|
+
time_slicing: "time_slicing";
|
|
3381
|
+
}>>>;
|
|
3382
|
+
gpu_max_shared_clients_per_gpu: z.ZodDefault<z.ZodOptional<z.ZodInt>>;
|
|
3383
|
+
cilium_socket_lb_host_namespace_only: z.ZodOptional<z.ZodBoolean>;
|
|
3472
3384
|
}, z.core.$strip>>>;
|
|
3473
|
-
size: z.ZodNumber;
|
|
3474
3385
|
region: z.ZodString;
|
|
3475
|
-
|
|
3476
|
-
|
|
3386
|
+
networking: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
3387
|
+
pod_cidr: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
3388
|
+
service_cidr: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
3389
|
+
dual_stack: z.ZodOptional<z.ZodBoolean>;
|
|
3390
|
+
pod_cidr_v6: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
3391
|
+
service_cidr_v6: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
3392
|
+
}, z.core.$strip>>>;
|
|
3477
3393
|
}, z.core.$strip>;
|
|
3478
3394
|
/**
|
|
3479
|
-
*
|
|
3395
|
+
* Successfully created. Returns created Cluster ID.
|
|
3480
3396
|
*/
|
|
3481
|
-
export declare const
|
|
3482
|
-
|
|
3483
|
-
|
|
3484
|
-
status: z.ZodEnum<{
|
|
3485
|
-
closed: "closed";
|
|
3486
|
-
waiting_on_us: "waiting_on_us";
|
|
3487
|
-
waiting_on_user: "waiting_on_user";
|
|
3488
|
-
}>;
|
|
3489
|
-
category: z.ZodEnum<{
|
|
3490
|
-
billing: "billing";
|
|
3491
|
-
technical: "technical";
|
|
3492
|
-
general: "general";
|
|
3493
|
-
}>;
|
|
3494
|
-
summary: z.ZodString;
|
|
3495
|
-
closed_at: z.ZodOptional<z.ZodISODateTime>;
|
|
3496
|
-
date_created: z.ZodISODateTime;
|
|
3497
|
-
date_updated: z.ZodISODateTime;
|
|
3498
|
-
messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3499
|
-
id: z.ZodString;
|
|
3500
|
-
type: z.ZodEnum<{
|
|
3501
|
-
customer_reply: "customer_reply";
|
|
3502
|
-
agent_reply: "agent_reply";
|
|
3503
|
-
}>;
|
|
3504
|
-
body: z.ZodString;
|
|
3505
|
-
author_first_name: z.ZodOptional<z.ZodString>;
|
|
3506
|
-
author_last_name: z.ZodOptional<z.ZodString>;
|
|
3507
|
-
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3508
|
-
id: z.ZodString;
|
|
3509
|
-
filename: z.ZodString;
|
|
3510
|
-
content_type: z.ZodString;
|
|
3511
|
-
size: z.ZodInt;
|
|
3512
|
-
}, z.core.$strip>>>;
|
|
3513
|
-
date_created: z.ZodISODateTime;
|
|
3514
|
-
}, z.core.$strip>>>;
|
|
3515
|
-
}, z.core.$strip>>;
|
|
3397
|
+
export declare const zCreateClusterResponse: z.ZodString;
|
|
3398
|
+
export declare const zDeleteClusterPath: z.ZodObject<{
|
|
3399
|
+
cluster_id: z.ZodString;
|
|
3516
3400
|
}, z.core.$strip>;
|
|
3517
|
-
|
|
3518
|
-
|
|
3519
|
-
|
|
3401
|
+
/**
|
|
3402
|
+
* Successfully deleted. The cluster has been torn down.
|
|
3403
|
+
*/
|
|
3404
|
+
export declare const zDeleteClusterResponse: z.ZodString;
|
|
3405
|
+
export declare const zGetClusterPath: z.ZodObject<{
|
|
3406
|
+
cluster_id: z.ZodString;
|
|
3520
3407
|
}, z.core.$strip>;
|
|
3521
3408
|
/**
|
|
3522
|
-
*
|
|
3409
|
+
* Returns a single object containing cluster details.
|
|
3523
3410
|
*/
|
|
3524
|
-
export declare const
|
|
3525
|
-
|
|
3411
|
+
export declare const zGetClusterResponse: z.ZodObject<{
|
|
3412
|
+
name: z.ZodString;
|
|
3413
|
+
tier: z.ZodDefault<z.ZodEnum<{
|
|
3414
|
+
basic: "basic";
|
|
3415
|
+
enterprise: "enterprise";
|
|
3416
|
+
pro: "pro";
|
|
3417
|
+
}>>;
|
|
3418
|
+
version_channel: z.ZodDefault<z.ZodString>;
|
|
3419
|
+
release_channel: z.ZodDefault<z.ZodEnum<{
|
|
3420
|
+
stable: "stable";
|
|
3421
|
+
rapid: "rapid";
|
|
3422
|
+
extended: "extended";
|
|
3423
|
+
}>>;
|
|
3424
|
+
features: z.ZodDefault<z.ZodObject<{
|
|
3425
|
+
gpu_sharing_strategy: z.ZodDefault<z.ZodEnum<{
|
|
3426
|
+
none: "none";
|
|
3427
|
+
mps: "mps";
|
|
3428
|
+
time_slicing: "time_slicing";
|
|
3429
|
+
}>>;
|
|
3430
|
+
gpu_max_shared_clients_per_gpu: z.ZodDefault<z.ZodInt>;
|
|
3431
|
+
cilium_socket_lb_host_namespace_only: z.ZodBoolean;
|
|
3432
|
+
}, z.core.$strip>>;
|
|
3433
|
+
region: z.ZodString;
|
|
3434
|
+
networking: z.ZodDefault<z.ZodObject<{
|
|
3435
|
+
pod_cidr: z.ZodDefault<z.ZodString>;
|
|
3436
|
+
service_cidr: z.ZodDefault<z.ZodString>;
|
|
3437
|
+
dual_stack: z.ZodBoolean;
|
|
3438
|
+
pod_cidr_v6: z.ZodDefault<z.ZodString>;
|
|
3439
|
+
service_cidr_v6: z.ZodDefault<z.ZodString>;
|
|
3440
|
+
}, z.core.$strip>>;
|
|
3441
|
+
id: z.ZodUUID;
|
|
3526
3442
|
status: z.ZodEnum<{
|
|
3527
|
-
|
|
3528
|
-
|
|
3529
|
-
|
|
3530
|
-
|
|
3531
|
-
category: z.ZodEnum<{
|
|
3532
|
-
billing: "billing";
|
|
3533
|
-
technical: "technical";
|
|
3534
|
-
general: "general";
|
|
3443
|
+
disabled: "disabled";
|
|
3444
|
+
creating: "creating";
|
|
3445
|
+
deployed: "deployed";
|
|
3446
|
+
updating: "updating";
|
|
3535
3447
|
}>;
|
|
3536
|
-
|
|
3537
|
-
|
|
3538
|
-
|
|
3539
|
-
|
|
3540
|
-
|
|
3541
|
-
|
|
3542
|
-
|
|
3543
|
-
|
|
3544
|
-
|
|
3545
|
-
|
|
3546
|
-
|
|
3547
|
-
|
|
3548
|
-
|
|
3549
|
-
|
|
3550
|
-
|
|
3551
|
-
|
|
3552
|
-
|
|
3553
|
-
|
|
3554
|
-
|
|
3555
|
-
|
|
3448
|
+
endpoint: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
|
|
3449
|
+
"": "";
|
|
3450
|
+
}>]>>;
|
|
3451
|
+
endpoint_public: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
|
|
3452
|
+
"": "";
|
|
3453
|
+
}>]>>;
|
|
3454
|
+
certificate_ca: z.ZodOptional<z.ZodString>;
|
|
3455
|
+
version_current: z.ZodOptional<z.ZodString>;
|
|
3456
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
3457
|
+
updated_at: z.ZodOptional<z.ZodString>;
|
|
3458
|
+
ready: z.ZodBoolean;
|
|
3459
|
+
}, z.core.$strip>;
|
|
3460
|
+
export declare const zUpdateClusterBody: z.ZodObject<{
|
|
3461
|
+
name: z.ZodString;
|
|
3462
|
+
tier: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
3463
|
+
basic: "basic";
|
|
3464
|
+
enterprise: "enterprise";
|
|
3465
|
+
pro: "pro";
|
|
3466
|
+
}>>>;
|
|
3467
|
+
version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
3468
|
+
release_channel: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
3469
|
+
stable: "stable";
|
|
3470
|
+
rapid: "rapid";
|
|
3471
|
+
extended: "extended";
|
|
3472
|
+
}>>>;
|
|
3473
|
+
features: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
3474
|
+
gpu_sharing_strategy: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
3475
|
+
none: "none";
|
|
3476
|
+
mps: "mps";
|
|
3477
|
+
time_slicing: "time_slicing";
|
|
3478
|
+
}>>>;
|
|
3479
|
+
gpu_max_shared_clients_per_gpu: z.ZodDefault<z.ZodOptional<z.ZodInt>>;
|
|
3480
|
+
cilium_socket_lb_host_namespace_only: z.ZodOptional<z.ZodBoolean>;
|
|
3556
3481
|
}, z.core.$strip>>>;
|
|
3557
3482
|
}, z.core.$strip>;
|
|
3558
|
-
export declare const
|
|
3559
|
-
|
|
3483
|
+
export declare const zUpdateClusterPath: z.ZodObject<{
|
|
3484
|
+
cluster_id: z.ZodString;
|
|
3560
3485
|
}, z.core.$strip>;
|
|
3561
3486
|
/**
|
|
3562
|
-
*
|
|
3487
|
+
* Successfully updated. Returns updated cluster details.
|
|
3563
3488
|
*/
|
|
3564
|
-
export declare const
|
|
3565
|
-
|
|
3489
|
+
export declare const zUpdateClusterResponse: z.ZodObject<{
|
|
3490
|
+
name: z.ZodString;
|
|
3491
|
+
tier: z.ZodDefault<z.ZodEnum<{
|
|
3492
|
+
basic: "basic";
|
|
3493
|
+
enterprise: "enterprise";
|
|
3494
|
+
pro: "pro";
|
|
3495
|
+
}>>;
|
|
3496
|
+
version_channel: z.ZodDefault<z.ZodString>;
|
|
3497
|
+
release_channel: z.ZodDefault<z.ZodEnum<{
|
|
3498
|
+
stable: "stable";
|
|
3499
|
+
rapid: "rapid";
|
|
3500
|
+
extended: "extended";
|
|
3501
|
+
}>>;
|
|
3502
|
+
features: z.ZodDefault<z.ZodObject<{
|
|
3503
|
+
gpu_sharing_strategy: z.ZodDefault<z.ZodEnum<{
|
|
3504
|
+
none: "none";
|
|
3505
|
+
mps: "mps";
|
|
3506
|
+
time_slicing: "time_slicing";
|
|
3507
|
+
}>>;
|
|
3508
|
+
gpu_max_shared_clients_per_gpu: z.ZodDefault<z.ZodInt>;
|
|
3509
|
+
cilium_socket_lb_host_namespace_only: z.ZodBoolean;
|
|
3510
|
+
}, z.core.$strip>>;
|
|
3511
|
+
region: z.ZodString;
|
|
3512
|
+
networking: z.ZodDefault<z.ZodObject<{
|
|
3513
|
+
pod_cidr: z.ZodDefault<z.ZodString>;
|
|
3514
|
+
service_cidr: z.ZodDefault<z.ZodString>;
|
|
3515
|
+
dual_stack: z.ZodBoolean;
|
|
3516
|
+
pod_cidr_v6: z.ZodDefault<z.ZodString>;
|
|
3517
|
+
service_cidr_v6: z.ZodDefault<z.ZodString>;
|
|
3518
|
+
}, z.core.$strip>>;
|
|
3519
|
+
id: z.ZodUUID;
|
|
3566
3520
|
status: z.ZodEnum<{
|
|
3567
|
-
|
|
3568
|
-
|
|
3569
|
-
|
|
3570
|
-
|
|
3571
|
-
category: z.ZodEnum<{
|
|
3572
|
-
billing: "billing";
|
|
3573
|
-
technical: "technical";
|
|
3574
|
-
general: "general";
|
|
3521
|
+
disabled: "disabled";
|
|
3522
|
+
creating: "creating";
|
|
3523
|
+
deployed: "deployed";
|
|
3524
|
+
updating: "updating";
|
|
3575
3525
|
}>;
|
|
3576
|
-
|
|
3577
|
-
|
|
3578
|
-
|
|
3579
|
-
|
|
3580
|
-
|
|
3581
|
-
|
|
3582
|
-
|
|
3583
|
-
|
|
3584
|
-
|
|
3585
|
-
|
|
3586
|
-
|
|
3587
|
-
|
|
3588
|
-
|
|
3589
|
-
|
|
3590
|
-
|
|
3591
|
-
|
|
3592
|
-
|
|
3593
|
-
|
|
3594
|
-
|
|
3595
|
-
|
|
3596
|
-
|
|
3526
|
+
endpoint: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
|
|
3527
|
+
"": "";
|
|
3528
|
+
}>]>>;
|
|
3529
|
+
endpoint_public: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
|
|
3530
|
+
"": "";
|
|
3531
|
+
}>]>>;
|
|
3532
|
+
certificate_ca: z.ZodOptional<z.ZodString>;
|
|
3533
|
+
version_current: z.ZodOptional<z.ZodString>;
|
|
3534
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
3535
|
+
updated_at: z.ZodOptional<z.ZodString>;
|
|
3536
|
+
ready: z.ZodBoolean;
|
|
3537
|
+
}, z.core.$strip>;
|
|
3538
|
+
export declare const zGetJoinInformationPath: z.ZodObject<{
|
|
3539
|
+
cluster_id: z.ZodString;
|
|
3540
|
+
}, z.core.$strip>;
|
|
3541
|
+
/**
|
|
3542
|
+
* An object of cluster join information
|
|
3543
|
+
*/
|
|
3544
|
+
export declare const zGetJoinInformationResponse: z.ZodObject<{
|
|
3545
|
+
certificate_authority: z.ZodString;
|
|
3546
|
+
endpoint: z.ZodURL;
|
|
3547
|
+
cluster_dns: z.ZodString;
|
|
3548
|
+
pod_cidr: z.ZodString;
|
|
3549
|
+
auth_key: z.ZodString;
|
|
3550
|
+
login_server: z.ZodString;
|
|
3551
|
+
bootstrap_token: z.ZodString;
|
|
3552
|
+
versions: z.ZodObject<{
|
|
3553
|
+
kubernetes: z.ZodString;
|
|
3554
|
+
tailscale: z.ZodString;
|
|
3555
|
+
containerd: z.ZodString;
|
|
3556
|
+
nvidia_driver: z.ZodString;
|
|
3557
|
+
}, z.core.$strip>;
|
|
3558
|
+
third_party_api_access_config: z.ZodObject<{
|
|
3559
|
+
metadata_url: z.ZodString;
|
|
3560
|
+
aws_role_arn: z.ZodString;
|
|
3561
|
+
gcp_workload_identity_provider: z.ZodString;
|
|
3562
|
+
}, z.core.$strip>;
|
|
3597
3563
|
}, z.core.$strip>;
|
|
3598
|
-
export declare const
|
|
3599
|
-
|
|
3564
|
+
export declare const zGetUsageQuery: z.ZodObject<{
|
|
3565
|
+
granularity: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
3566
|
+
hourly: "hourly";
|
|
3567
|
+
daily: "daily";
|
|
3568
|
+
monthly: "monthly";
|
|
3569
|
+
}>>>;
|
|
3600
3570
|
}, z.core.$strip>;
|
|
3601
3571
|
/**
|
|
3602
|
-
*
|
|
3572
|
+
* Usage data with facets for filtering
|
|
3603
3573
|
*/
|
|
3604
|
-
export declare const
|
|
3605
|
-
|
|
3606
|
-
|
|
3607
|
-
|
|
3608
|
-
|
|
3609
|
-
|
|
3610
|
-
|
|
3611
|
-
|
|
3612
|
-
|
|
3613
|
-
|
|
3614
|
-
|
|
3615
|
-
|
|
3616
|
-
summary: z.ZodString;
|
|
3617
|
-
closed_at: z.ZodOptional<z.ZodISODateTime>;
|
|
3618
|
-
date_created: z.ZodISODateTime;
|
|
3619
|
-
date_updated: z.ZodISODateTime;
|
|
3620
|
-
messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3621
|
-
id: z.ZodString;
|
|
3622
|
-
type: z.ZodEnum<{
|
|
3623
|
-
customer_reply: "customer_reply";
|
|
3624
|
-
agent_reply: "agent_reply";
|
|
3574
|
+
export declare const zGetUsageResponse: z.ZodObject<{
|
|
3575
|
+
data: z.ZodArray<z.ZodObject<{
|
|
3576
|
+
hour: z.ZodString;
|
|
3577
|
+
cluster_id: z.ZodString;
|
|
3578
|
+
product: z.ZodEnum<{
|
|
3579
|
+
cfke_controlplane_basic: "cfke_controlplane_basic";
|
|
3580
|
+
cfke_controlplane_pro: "cfke_controlplane_pro";
|
|
3581
|
+
cfke_controlplane_enterprise: "cfke_controlplane_enterprise";
|
|
3582
|
+
cfke_connected_nodes_basic: "cfke_connected_nodes_basic";
|
|
3583
|
+
cfke_connected_nodes_pro: "cfke_connected_nodes_pro";
|
|
3584
|
+
cfke_connected_nodes_enterprise: "cfke_connected_nodes_enterprise";
|
|
3585
|
+
cfcr_storage: "cfcr_storage";
|
|
3625
3586
|
}>;
|
|
3626
|
-
|
|
3627
|
-
|
|
3628
|
-
|
|
3629
|
-
|
|
3630
|
-
|
|
3631
|
-
|
|
3632
|
-
|
|
3633
|
-
|
|
3634
|
-
|
|
3635
|
-
|
|
3636
|
-
|
|
3637
|
-
|
|
3638
|
-
|
|
3639
|
-
|
|
3640
|
-
|
|
3587
|
+
value: z.ZodNumber;
|
|
3588
|
+
price: z.ZodNumber;
|
|
3589
|
+
total: z.ZodNumber;
|
|
3590
|
+
}, z.core.$strip>>;
|
|
3591
|
+
facets: z.ZodObject<{
|
|
3592
|
+
cluster_id: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3593
|
+
product: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
3594
|
+
cfke_controlplane_basic: "cfke_controlplane_basic";
|
|
3595
|
+
cfke_controlplane_pro: "cfke_controlplane_pro";
|
|
3596
|
+
cfke_controlplane_enterprise: "cfke_controlplane_enterprise";
|
|
3597
|
+
cfke_connected_nodes_basic: "cfke_connected_nodes_basic";
|
|
3598
|
+
cfke_connected_nodes_pro: "cfke_connected_nodes_pro";
|
|
3599
|
+
cfke_connected_nodes_enterprise: "cfke_connected_nodes_enterprise";
|
|
3600
|
+
cfcr_storage: "cfcr_storage";
|
|
3601
|
+
}>>>;
|
|
3602
|
+
}, z.core.$strip>;
|
|
3641
3603
|
}, z.core.$strip>;
|
|
3642
|
-
|
|
3643
|
-
|
|
3604
|
+
/**
|
|
3605
|
+
* 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.
|
|
3606
|
+
*
|
|
3607
|
+
*/
|
|
3608
|
+
export declare const zGetPaymentMethodSecretResponse: z.ZodObject<{
|
|
3609
|
+
id: z.ZodOptional<z.ZodString>;
|
|
3644
3610
|
}, z.core.$strip>;
|
|
3645
3611
|
/**
|
|
3646
|
-
*
|
|
3612
|
+
* An array of payment methods.
|
|
3647
3613
|
*/
|
|
3648
|
-
export declare const
|
|
3614
|
+
export declare const zListPaymentMethodsResponse: z.ZodArray<z.ZodObject<{
|
|
3649
3615
|
id: z.ZodString;
|
|
3650
3616
|
type: z.ZodEnum<{
|
|
3651
|
-
|
|
3652
|
-
|
|
3617
|
+
card: "card";
|
|
3618
|
+
sepa_debit: "sepa_debit";
|
|
3619
|
+
bank_transfer: "bank_transfer";
|
|
3653
3620
|
}>;
|
|
3654
|
-
|
|
3655
|
-
|
|
3656
|
-
|
|
3657
|
-
|
|
3658
|
-
|
|
3659
|
-
|
|
3660
|
-
|
|
3661
|
-
|
|
3662
|
-
|
|
3663
|
-
|
|
3664
|
-
|
|
3665
|
-
export declare const zGetTicketAttachmentPath: z.ZodObject<{
|
|
3666
|
-
ticket_id: z.ZodString;
|
|
3667
|
-
attachment_id: z.ZodString;
|
|
3621
|
+
last4: z.ZodString;
|
|
3622
|
+
exp_month: z.ZodInt;
|
|
3623
|
+
exp_year: z.ZodInt;
|
|
3624
|
+
brand: z.ZodString;
|
|
3625
|
+
iban: z.ZodString;
|
|
3626
|
+
bic: z.ZodString;
|
|
3627
|
+
account_holder_name: z.ZodString;
|
|
3628
|
+
is_default: z.ZodBoolean;
|
|
3629
|
+
}, z.core.$strip>>;
|
|
3630
|
+
export declare const zSetDefaultPaymentMethodPath: z.ZodObject<{
|
|
3631
|
+
paymentMethodId: z.ZodString;
|
|
3668
3632
|
}, z.core.$strip>;
|
|
3669
3633
|
/**
|
|
3670
|
-
*
|
|
3634
|
+
* Default payment method updated.
|
|
3671
3635
|
*/
|
|
3672
|
-
export declare const
|
|
3636
|
+
export declare const zSetDefaultPaymentMethodResponse: z.ZodVoid;
|
|
3637
|
+
export declare const zDeletePaymentMethodPath: z.ZodObject<{
|
|
3638
|
+
paymentMethodId: z.ZodString;
|
|
3639
|
+
}, z.core.$strip>;
|
|
3673
3640
|
/**
|
|
3674
|
-
*
|
|
3641
|
+
* Payment method deleted.
|
|
3675
3642
|
*/
|
|
3676
|
-
export declare const
|
|
3677
|
-
name: z.ZodString;
|
|
3678
|
-
role: z.ZodEnum<{
|
|
3679
|
-
Administrator: "Administrator";
|
|
3680
|
-
User: "User";
|
|
3681
|
-
}>;
|
|
3682
|
-
id: z.ZodOptional<z.ZodString>;
|
|
3683
|
-
secret: z.ZodOptional<z.ZodString>;
|
|
3684
|
-
date_created: z.ZodISODateTime;
|
|
3685
|
-
}, z.core.$strip>>;
|
|
3686
|
-
export declare const zCreateTokenBody: z.ZodObject<{
|
|
3687
|
-
name: z.ZodString;
|
|
3688
|
-
role: z.ZodEnum<{
|
|
3689
|
-
Administrator: "Administrator";
|
|
3690
|
-
User: "User";
|
|
3691
|
-
}>;
|
|
3692
|
-
}, z.core.$strip>;
|
|
3643
|
+
export declare const zDeletePaymentMethodResponse: z.ZodVoid;
|
|
3693
3644
|
/**
|
|
3694
|
-
*
|
|
3645
|
+
* An array of usage records.
|
|
3695
3646
|
*/
|
|
3696
|
-
export declare const
|
|
3697
|
-
name: z.ZodString;
|
|
3698
|
-
role: z.ZodEnum<{
|
|
3699
|
-
Administrator: "Administrator";
|
|
3700
|
-
User: "User";
|
|
3701
|
-
}>;
|
|
3647
|
+
export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
3702
3648
|
id: z.ZodOptional<z.ZodString>;
|
|
3703
|
-
|
|
3704
|
-
|
|
3705
|
-
|
|
3706
|
-
|
|
3707
|
-
|
|
3708
|
-
|
|
3709
|
-
|
|
3710
|
-
|
|
3711
|
-
}, z.core.$strip
|
|
3649
|
+
number: z.ZodOptional<z.ZodString>;
|
|
3650
|
+
status: z.ZodOptional<z.ZodString>;
|
|
3651
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
3652
|
+
currency: z.ZodOptional<z.ZodString>;
|
|
3653
|
+
created: z.ZodISODateTime;
|
|
3654
|
+
period_start: z.ZodISODateTime;
|
|
3655
|
+
period_end: z.ZodISODateTime;
|
|
3656
|
+
invoice_pdf: z.ZodOptional<z.ZodString>;
|
|
3657
|
+
}, z.core.$strip>>;
|
|
3712
3658
|
/**
|
|
3713
|
-
* Returns
|
|
3659
|
+
* Returns a single object containing organization contact and billing address details.
|
|
3714
3660
|
*/
|
|
3715
|
-
export declare const
|
|
3716
|
-
|
|
3717
|
-
|
|
3718
|
-
|
|
3719
|
-
User: "User";
|
|
3661
|
+
export declare const zGetContactResponse: z.ZodObject<{
|
|
3662
|
+
type: z.ZodEnum<{
|
|
3663
|
+
business: "business";
|
|
3664
|
+
personal: "personal";
|
|
3720
3665
|
}>;
|
|
3721
|
-
|
|
3722
|
-
|
|
3723
|
-
|
|
3724
|
-
|
|
3725
|
-
|
|
3726
|
-
|
|
3727
|
-
|
|
3728
|
-
|
|
3729
|
-
|
|
3666
|
+
company: z.ZodOptional<z.ZodString>;
|
|
3667
|
+
address1: z.ZodOptional<z.ZodString>;
|
|
3668
|
+
address2: z.ZodOptional<z.ZodString>;
|
|
3669
|
+
postalCode: z.ZodOptional<z.ZodString>;
|
|
3670
|
+
city: z.ZodOptional<z.ZodString>;
|
|
3671
|
+
state: z.ZodOptional<z.ZodString>;
|
|
3672
|
+
country: z.ZodOptional<z.ZodString>;
|
|
3673
|
+
phone: z.ZodOptional<z.ZodString>;
|
|
3674
|
+
email: z.ZodEmail;
|
|
3675
|
+
individual_name: z.ZodString;
|
|
3676
|
+
tax_id: z.ZodOptional<z.ZodString>;
|
|
3677
|
+
tax_id_type: z.ZodOptional<z.ZodEnum<{
|
|
3678
|
+
"": "";
|
|
3679
|
+
ad_nrt: "ad_nrt";
|
|
3680
|
+
ae_trn: "ae_trn";
|
|
3681
|
+
al_tin: "al_tin";
|
|
3682
|
+
am_tin: "am_tin";
|
|
3683
|
+
ao_tin: "ao_tin";
|
|
3684
|
+
ar_cuit: "ar_cuit";
|
|
3685
|
+
at_vat: "at_vat";
|
|
3686
|
+
au_abn: "au_abn";
|
|
3687
|
+
au_arn: "au_arn";
|
|
3688
|
+
ba_tin: "ba_tin";
|
|
3689
|
+
bb_tin: "bb_tin";
|
|
3690
|
+
be_vat: "be_vat";
|
|
3691
|
+
bg_uic: "bg_uic";
|
|
3692
|
+
bg_vat: "bg_vat";
|
|
3693
|
+
bh_vat: "bh_vat";
|
|
3694
|
+
bo_tin: "bo_tin";
|
|
3695
|
+
br_cnpj: "br_cnpj";
|
|
3696
|
+
br_cpf: "br_cpf";
|
|
3697
|
+
bs_tin: "bs_tin";
|
|
3698
|
+
by_tin: "by_tin";
|
|
3699
|
+
ca_bn: "ca_bn";
|
|
3700
|
+
ca_gst_hst: "ca_gst_hst";
|
|
3701
|
+
ca_pst_bc: "ca_pst_bc";
|
|
3702
|
+
ca_pst_mb: "ca_pst_mb";
|
|
3703
|
+
ca_pst_sk: "ca_pst_sk";
|
|
3704
|
+
ca_qst: "ca_qst";
|
|
3705
|
+
cd_nif: "cd_nif";
|
|
3706
|
+
ch_uid: "ch_uid";
|
|
3707
|
+
ch_vat: "ch_vat";
|
|
3708
|
+
cl_tin: "cl_tin";
|
|
3709
|
+
cn_tin: "cn_tin";
|
|
3710
|
+
co_nit: "co_nit";
|
|
3711
|
+
cr_tin: "cr_tin";
|
|
3712
|
+
cy_vat: "cy_vat";
|
|
3713
|
+
cz_vat: "cz_vat";
|
|
3714
|
+
de_stn: "de_stn";
|
|
3715
|
+
de_vat: "de_vat";
|
|
3716
|
+
dk_vat: "dk_vat";
|
|
3717
|
+
do_rcn: "do_rcn";
|
|
3718
|
+
ec_ruc: "ec_ruc";
|
|
3719
|
+
ee_vat: "ee_vat";
|
|
3720
|
+
eg_tin: "eg_tin";
|
|
3721
|
+
es_cif: "es_cif";
|
|
3722
|
+
es_vat: "es_vat";
|
|
3723
|
+
eu_oss_vat: "eu_oss_vat";
|
|
3724
|
+
fi_vat: "fi_vat";
|
|
3725
|
+
fr_vat: "fr_vat";
|
|
3726
|
+
gb_vat: "gb_vat";
|
|
3727
|
+
ge_vat: "ge_vat";
|
|
3728
|
+
gn_nif: "gn_nif";
|
|
3729
|
+
gr_vat: "gr_vat";
|
|
3730
|
+
hk_br: "hk_br";
|
|
3731
|
+
hr_oib: "hr_oib";
|
|
3732
|
+
hr_vat: "hr_vat";
|
|
3733
|
+
hu_tin: "hu_tin";
|
|
3734
|
+
hu_vat: "hu_vat";
|
|
3735
|
+
id_npwp: "id_npwp";
|
|
3736
|
+
ie_vat: "ie_vat";
|
|
3737
|
+
il_vat: "il_vat";
|
|
3738
|
+
in_gst: "in_gst";
|
|
3739
|
+
is_vat: "is_vat";
|
|
3740
|
+
it_vat: "it_vat";
|
|
3741
|
+
jp_cn: "jp_cn";
|
|
3742
|
+
jp_rn: "jp_rn";
|
|
3743
|
+
jp_trn: "jp_trn";
|
|
3744
|
+
ke_pin: "ke_pin";
|
|
3745
|
+
kh_tin: "kh_tin";
|
|
3746
|
+
kr_brn: "kr_brn";
|
|
3747
|
+
kz_bin: "kz_bin";
|
|
3748
|
+
li_uid: "li_uid";
|
|
3749
|
+
li_vat: "li_vat";
|
|
3750
|
+
lt_vat: "lt_vat";
|
|
3751
|
+
lu_vat: "lu_vat";
|
|
3752
|
+
lv_vat: "lv_vat";
|
|
3753
|
+
ma_vat: "ma_vat";
|
|
3754
|
+
md_vat: "md_vat";
|
|
3755
|
+
me_pib: "me_pib";
|
|
3756
|
+
mk_vat: "mk_vat";
|
|
3757
|
+
mr_nif: "mr_nif";
|
|
3758
|
+
mt_vat: "mt_vat";
|
|
3759
|
+
mx_rfc: "mx_rfc";
|
|
3760
|
+
my_frp: "my_frp";
|
|
3761
|
+
my_itn: "my_itn";
|
|
3762
|
+
my_sst: "my_sst";
|
|
3763
|
+
ng_tin: "ng_tin";
|
|
3764
|
+
nl_vat: "nl_vat";
|
|
3765
|
+
no_vat: "no_vat";
|
|
3766
|
+
no_voec: "no_voec";
|
|
3767
|
+
np_pan: "np_pan";
|
|
3768
|
+
nz_gst: "nz_gst";
|
|
3769
|
+
om_vat: "om_vat";
|
|
3770
|
+
pe_ruc: "pe_ruc";
|
|
3771
|
+
ph_tin: "ph_tin";
|
|
3772
|
+
pl_vat: "pl_vat";
|
|
3773
|
+
pt_vat: "pt_vat";
|
|
3774
|
+
ro_tin: "ro_tin";
|
|
3775
|
+
ro_vat: "ro_vat";
|
|
3776
|
+
rs_pib: "rs_pib";
|
|
3777
|
+
ru_inn: "ru_inn";
|
|
3778
|
+
ru_kpp: "ru_kpp";
|
|
3779
|
+
sa_vat: "sa_vat";
|
|
3780
|
+
se_vat: "se_vat";
|
|
3781
|
+
sg_gst: "sg_gst";
|
|
3782
|
+
sg_uen: "sg_uen";
|
|
3783
|
+
si_tin: "si_tin";
|
|
3784
|
+
si_vat: "si_vat";
|
|
3785
|
+
sk_vat: "sk_vat";
|
|
3786
|
+
sn_ninea: "sn_ninea";
|
|
3787
|
+
sr_fin: "sr_fin";
|
|
3788
|
+
sv_nit: "sv_nit";
|
|
3789
|
+
th_vat: "th_vat";
|
|
3790
|
+
tj_tin: "tj_tin";
|
|
3791
|
+
tr_tin: "tr_tin";
|
|
3792
|
+
tw_vat: "tw_vat";
|
|
3793
|
+
tz_vat: "tz_vat";
|
|
3794
|
+
ua_vat: "ua_vat";
|
|
3795
|
+
ug_tin: "ug_tin";
|
|
3796
|
+
us_ein: "us_ein";
|
|
3797
|
+
uy_ruc: "uy_ruc";
|
|
3798
|
+
uz_tin: "uz_tin";
|
|
3799
|
+
uz_vat: "uz_vat";
|
|
3800
|
+
ve_rif: "ve_rif";
|
|
3801
|
+
vn_tin: "vn_tin";
|
|
3802
|
+
xi_vat: "xi_vat";
|
|
3803
|
+
za_vat: "za_vat";
|
|
3804
|
+
zm_tin: "zm_tin";
|
|
3805
|
+
zw_tin: "zw_tin";
|
|
3730
3806
|
}>>;
|
|
3731
3807
|
}, z.core.$strip>;
|
|
3732
|
-
export declare const
|
|
3733
|
-
|
|
3734
|
-
|
|
3735
|
-
|
|
3736
|
-
* Successfully updated. Returns updated token details with masked secret.
|
|
3737
|
-
*/
|
|
3738
|
-
export declare const zUpdateTokenResponse: z.ZodObject<{
|
|
3739
|
-
name: z.ZodString;
|
|
3740
|
-
role: z.ZodEnum<{
|
|
3741
|
-
Administrator: "Administrator";
|
|
3742
|
-
User: "User";
|
|
3743
|
-
}>;
|
|
3744
|
-
id: z.ZodOptional<z.ZodString>;
|
|
3745
|
-
secret: z.ZodOptional<z.ZodString>;
|
|
3746
|
-
date_created: z.ZodISODateTime;
|
|
3747
|
-
}, z.core.$strip>;
|
|
3748
|
-
export declare const zRegenerateTokenPath: z.ZodObject<{
|
|
3749
|
-
token_id: z.ZodString;
|
|
3750
|
-
}, z.core.$strip>;
|
|
3751
|
-
/**
|
|
3752
|
-
* Successfully updated. Returns updated token details with unmasked / raw secret.
|
|
3753
|
-
*/
|
|
3754
|
-
export declare const zRegenerateTokenResponse: z.ZodObject<{
|
|
3755
|
-
name: z.ZodString;
|
|
3756
|
-
role: z.ZodEnum<{
|
|
3757
|
-
Administrator: "Administrator";
|
|
3758
|
-
User: "User";
|
|
3759
|
-
}>;
|
|
3760
|
-
id: z.ZodOptional<z.ZodString>;
|
|
3761
|
-
secret: z.ZodOptional<z.ZodString>;
|
|
3762
|
-
date_created: z.ZodISODateTime;
|
|
3763
|
-
}, z.core.$strip>;
|
|
3764
|
-
export declare const zListUserOrganizationsPath: z.ZodObject<{
|
|
3765
|
-
email: z.ZodString;
|
|
3766
|
-
}, z.core.$strip>;
|
|
3767
|
-
/**
|
|
3768
|
-
* An array of organizations the user belongs to.
|
|
3769
|
-
*/
|
|
3770
|
-
export declare const zListUserOrganizationsResponse: z.ZodArray<z.ZodObject<{
|
|
3771
|
-
realm: z.ZodOptional<z.ZodString>;
|
|
3772
|
-
displayName: z.ZodOptional<z.ZodString>;
|
|
3773
|
-
}, z.core.$strip>>;
|
|
3774
|
-
/**
|
|
3775
|
-
* An array of users
|
|
3776
|
-
*/
|
|
3777
|
-
export declare const zListUsersResponse: z.ZodArray<z.ZodObject<{
|
|
3778
|
-
email: z.ZodEmail;
|
|
3779
|
-
first_name: z.ZodString;
|
|
3780
|
-
last_name: z.ZodString;
|
|
3781
|
-
role: z.ZodEnum<{
|
|
3782
|
-
Administrator: "Administrator";
|
|
3783
|
-
User: "User";
|
|
3784
|
-
}>;
|
|
3785
|
-
status: z.ZodEnum<{
|
|
3786
|
-
active: "active";
|
|
3787
|
-
inactive: "inactive";
|
|
3808
|
+
export declare const zUpdateContactBody: z.ZodObject<{
|
|
3809
|
+
type: z.ZodEnum<{
|
|
3810
|
+
business: "business";
|
|
3811
|
+
personal: "personal";
|
|
3788
3812
|
}>;
|
|
3789
|
-
|
|
3790
|
-
|
|
3791
|
-
|
|
3792
|
-
|
|
3813
|
+
company: z.ZodOptional<z.ZodString>;
|
|
3814
|
+
address1: z.ZodOptional<z.ZodString>;
|
|
3815
|
+
address2: z.ZodOptional<z.ZodString>;
|
|
3816
|
+
postalCode: z.ZodOptional<z.ZodString>;
|
|
3817
|
+
city: z.ZodOptional<z.ZodString>;
|
|
3818
|
+
state: z.ZodOptional<z.ZodString>;
|
|
3819
|
+
country: z.ZodOptional<z.ZodString>;
|
|
3820
|
+
phone: z.ZodOptional<z.ZodString>;
|
|
3793
3821
|
email: z.ZodEmail;
|
|
3794
|
-
|
|
3795
|
-
|
|
3796
|
-
|
|
3797
|
-
|
|
3798
|
-
|
|
3799
|
-
|
|
3800
|
-
|
|
3801
|
-
|
|
3802
|
-
|
|
3803
|
-
|
|
3804
|
-
|
|
3822
|
+
individual_name: z.ZodString;
|
|
3823
|
+
tax_id: z.ZodOptional<z.ZodString>;
|
|
3824
|
+
tax_id_type: z.ZodOptional<z.ZodEnum<{
|
|
3825
|
+
"": "";
|
|
3826
|
+
ad_nrt: "ad_nrt";
|
|
3827
|
+
ae_trn: "ae_trn";
|
|
3828
|
+
al_tin: "al_tin";
|
|
3829
|
+
am_tin: "am_tin";
|
|
3830
|
+
ao_tin: "ao_tin";
|
|
3831
|
+
ar_cuit: "ar_cuit";
|
|
3832
|
+
at_vat: "at_vat";
|
|
3833
|
+
au_abn: "au_abn";
|
|
3834
|
+
au_arn: "au_arn";
|
|
3835
|
+
ba_tin: "ba_tin";
|
|
3836
|
+
bb_tin: "bb_tin";
|
|
3837
|
+
be_vat: "be_vat";
|
|
3838
|
+
bg_uic: "bg_uic";
|
|
3839
|
+
bg_vat: "bg_vat";
|
|
3840
|
+
bh_vat: "bh_vat";
|
|
3841
|
+
bo_tin: "bo_tin";
|
|
3842
|
+
br_cnpj: "br_cnpj";
|
|
3843
|
+
br_cpf: "br_cpf";
|
|
3844
|
+
bs_tin: "bs_tin";
|
|
3845
|
+
by_tin: "by_tin";
|
|
3846
|
+
ca_bn: "ca_bn";
|
|
3847
|
+
ca_gst_hst: "ca_gst_hst";
|
|
3848
|
+
ca_pst_bc: "ca_pst_bc";
|
|
3849
|
+
ca_pst_mb: "ca_pst_mb";
|
|
3850
|
+
ca_pst_sk: "ca_pst_sk";
|
|
3851
|
+
ca_qst: "ca_qst";
|
|
3852
|
+
cd_nif: "cd_nif";
|
|
3853
|
+
ch_uid: "ch_uid";
|
|
3854
|
+
ch_vat: "ch_vat";
|
|
3855
|
+
cl_tin: "cl_tin";
|
|
3856
|
+
cn_tin: "cn_tin";
|
|
3857
|
+
co_nit: "co_nit";
|
|
3858
|
+
cr_tin: "cr_tin";
|
|
3859
|
+
cy_vat: "cy_vat";
|
|
3860
|
+
cz_vat: "cz_vat";
|
|
3861
|
+
de_stn: "de_stn";
|
|
3862
|
+
de_vat: "de_vat";
|
|
3863
|
+
dk_vat: "dk_vat";
|
|
3864
|
+
do_rcn: "do_rcn";
|
|
3865
|
+
ec_ruc: "ec_ruc";
|
|
3866
|
+
ee_vat: "ee_vat";
|
|
3867
|
+
eg_tin: "eg_tin";
|
|
3868
|
+
es_cif: "es_cif";
|
|
3869
|
+
es_vat: "es_vat";
|
|
3870
|
+
eu_oss_vat: "eu_oss_vat";
|
|
3871
|
+
fi_vat: "fi_vat";
|
|
3872
|
+
fr_vat: "fr_vat";
|
|
3873
|
+
gb_vat: "gb_vat";
|
|
3874
|
+
ge_vat: "ge_vat";
|
|
3875
|
+
gn_nif: "gn_nif";
|
|
3876
|
+
gr_vat: "gr_vat";
|
|
3877
|
+
hk_br: "hk_br";
|
|
3878
|
+
hr_oib: "hr_oib";
|
|
3879
|
+
hr_vat: "hr_vat";
|
|
3880
|
+
hu_tin: "hu_tin";
|
|
3881
|
+
hu_vat: "hu_vat";
|
|
3882
|
+
id_npwp: "id_npwp";
|
|
3883
|
+
ie_vat: "ie_vat";
|
|
3884
|
+
il_vat: "il_vat";
|
|
3885
|
+
in_gst: "in_gst";
|
|
3886
|
+
is_vat: "is_vat";
|
|
3887
|
+
it_vat: "it_vat";
|
|
3888
|
+
jp_cn: "jp_cn";
|
|
3889
|
+
jp_rn: "jp_rn";
|
|
3890
|
+
jp_trn: "jp_trn";
|
|
3891
|
+
ke_pin: "ke_pin";
|
|
3892
|
+
kh_tin: "kh_tin";
|
|
3893
|
+
kr_brn: "kr_brn";
|
|
3894
|
+
kz_bin: "kz_bin";
|
|
3895
|
+
li_uid: "li_uid";
|
|
3896
|
+
li_vat: "li_vat";
|
|
3897
|
+
lt_vat: "lt_vat";
|
|
3898
|
+
lu_vat: "lu_vat";
|
|
3899
|
+
lv_vat: "lv_vat";
|
|
3900
|
+
ma_vat: "ma_vat";
|
|
3901
|
+
md_vat: "md_vat";
|
|
3902
|
+
me_pib: "me_pib";
|
|
3903
|
+
mk_vat: "mk_vat";
|
|
3904
|
+
mr_nif: "mr_nif";
|
|
3905
|
+
mt_vat: "mt_vat";
|
|
3906
|
+
mx_rfc: "mx_rfc";
|
|
3907
|
+
my_frp: "my_frp";
|
|
3908
|
+
my_itn: "my_itn";
|
|
3909
|
+
my_sst: "my_sst";
|
|
3910
|
+
ng_tin: "ng_tin";
|
|
3911
|
+
nl_vat: "nl_vat";
|
|
3912
|
+
no_vat: "no_vat";
|
|
3913
|
+
no_voec: "no_voec";
|
|
3914
|
+
np_pan: "np_pan";
|
|
3915
|
+
nz_gst: "nz_gst";
|
|
3916
|
+
om_vat: "om_vat";
|
|
3917
|
+
pe_ruc: "pe_ruc";
|
|
3918
|
+
ph_tin: "ph_tin";
|
|
3919
|
+
pl_vat: "pl_vat";
|
|
3920
|
+
pt_vat: "pt_vat";
|
|
3921
|
+
ro_tin: "ro_tin";
|
|
3922
|
+
ro_vat: "ro_vat";
|
|
3923
|
+
rs_pib: "rs_pib";
|
|
3924
|
+
ru_inn: "ru_inn";
|
|
3925
|
+
ru_kpp: "ru_kpp";
|
|
3926
|
+
sa_vat: "sa_vat";
|
|
3927
|
+
se_vat: "se_vat";
|
|
3928
|
+
sg_gst: "sg_gst";
|
|
3929
|
+
sg_uen: "sg_uen";
|
|
3930
|
+
si_tin: "si_tin";
|
|
3931
|
+
si_vat: "si_vat";
|
|
3932
|
+
sk_vat: "sk_vat";
|
|
3933
|
+
sn_ninea: "sn_ninea";
|
|
3934
|
+
sr_fin: "sr_fin";
|
|
3935
|
+
sv_nit: "sv_nit";
|
|
3936
|
+
th_vat: "th_vat";
|
|
3937
|
+
tj_tin: "tj_tin";
|
|
3938
|
+
tr_tin: "tr_tin";
|
|
3939
|
+
tw_vat: "tw_vat";
|
|
3940
|
+
tz_vat: "tz_vat";
|
|
3941
|
+
ua_vat: "ua_vat";
|
|
3942
|
+
ug_tin: "ug_tin";
|
|
3943
|
+
us_ein: "us_ein";
|
|
3944
|
+
uy_ruc: "uy_ruc";
|
|
3945
|
+
uz_tin: "uz_tin";
|
|
3946
|
+
uz_vat: "uz_vat";
|
|
3947
|
+
ve_rif: "ve_rif";
|
|
3948
|
+
vn_tin: "vn_tin";
|
|
3949
|
+
xi_vat: "xi_vat";
|
|
3950
|
+
za_vat: "za_vat";
|
|
3951
|
+
zm_tin: "zm_tin";
|
|
3952
|
+
zw_tin: "zw_tin";
|
|
3805
3953
|
}>>;
|
|
3806
3954
|
}, z.core.$strip>;
|
|
3807
3955
|
/**
|
|
3808
|
-
* Successfully
|
|
3809
|
-
*/
|
|
3810
|
-
export declare const zCreateUserResponse: z.ZodObject<{
|
|
3811
|
-
email: z.ZodEmail;
|
|
3812
|
-
first_name: z.ZodString;
|
|
3813
|
-
last_name: z.ZodString;
|
|
3814
|
-
role: z.ZodEnum<{
|
|
3815
|
-
Administrator: "Administrator";
|
|
3816
|
-
User: "User";
|
|
3817
|
-
}>;
|
|
3818
|
-
status: z.ZodEnum<{
|
|
3819
|
-
active: "active";
|
|
3820
|
-
inactive: "inactive";
|
|
3821
|
-
}>;
|
|
3822
|
-
id: z.ZodUUID;
|
|
3823
|
-
date_created: z.ZodISODateTime;
|
|
3824
|
-
}, z.core.$strip>;
|
|
3825
|
-
export declare const zDeleteUserPath: z.ZodObject<{
|
|
3826
|
-
user_id: z.ZodString;
|
|
3827
|
-
}, z.core.$strip>;
|
|
3828
|
-
/**
|
|
3829
|
-
* User profile information
|
|
3956
|
+
* Successfully updated. Returns updated organization details.
|
|
3830
3957
|
*/
|
|
3831
|
-
export declare const
|
|
3832
|
-
|
|
3833
|
-
|
|
3834
|
-
|
|
3835
|
-
role: z.ZodEnum<{
|
|
3836
|
-
Administrator: "Administrator";
|
|
3837
|
-
User: "User";
|
|
3838
|
-
}>;
|
|
3839
|
-
status: z.ZodEnum<{
|
|
3840
|
-
active: "active";
|
|
3841
|
-
inactive: "inactive";
|
|
3958
|
+
export declare const zUpdateContactResponse: z.ZodObject<{
|
|
3959
|
+
type: z.ZodEnum<{
|
|
3960
|
+
business: "business";
|
|
3961
|
+
personal: "personal";
|
|
3842
3962
|
}>;
|
|
3843
|
-
|
|
3844
|
-
|
|
3845
|
-
|
|
3846
|
-
|
|
3847
|
-
|
|
3848
|
-
|
|
3849
|
-
|
|
3850
|
-
|
|
3851
|
-
*/
|
|
3852
|
-
export declare const zGetUserResponse: z.ZodObject<{
|
|
3963
|
+
company: z.ZodOptional<z.ZodString>;
|
|
3964
|
+
address1: z.ZodOptional<z.ZodString>;
|
|
3965
|
+
address2: z.ZodOptional<z.ZodString>;
|
|
3966
|
+
postalCode: z.ZodOptional<z.ZodString>;
|
|
3967
|
+
city: z.ZodOptional<z.ZodString>;
|
|
3968
|
+
state: z.ZodOptional<z.ZodString>;
|
|
3969
|
+
country: z.ZodOptional<z.ZodString>;
|
|
3970
|
+
phone: z.ZodOptional<z.ZodString>;
|
|
3853
3971
|
email: z.ZodEmail;
|
|
3854
|
-
|
|
3855
|
-
|
|
3856
|
-
|
|
3857
|
-
|
|
3858
|
-
|
|
3859
|
-
|
|
3860
|
-
|
|
3861
|
-
|
|
3862
|
-
|
|
3863
|
-
|
|
3864
|
-
|
|
3865
|
-
|
|
3866
|
-
|
|
3867
|
-
|
|
3868
|
-
|
|
3869
|
-
|
|
3870
|
-
|
|
3871
|
-
|
|
3872
|
-
|
|
3873
|
-
|
|
3874
|
-
|
|
3875
|
-
|
|
3876
|
-
|
|
3877
|
-
|
|
3972
|
+
individual_name: z.ZodString;
|
|
3973
|
+
tax_id: z.ZodOptional<z.ZodString>;
|
|
3974
|
+
tax_id_type: z.ZodOptional<z.ZodEnum<{
|
|
3975
|
+
"": "";
|
|
3976
|
+
ad_nrt: "ad_nrt";
|
|
3977
|
+
ae_trn: "ae_trn";
|
|
3978
|
+
al_tin: "al_tin";
|
|
3979
|
+
am_tin: "am_tin";
|
|
3980
|
+
ao_tin: "ao_tin";
|
|
3981
|
+
ar_cuit: "ar_cuit";
|
|
3982
|
+
at_vat: "at_vat";
|
|
3983
|
+
au_abn: "au_abn";
|
|
3984
|
+
au_arn: "au_arn";
|
|
3985
|
+
ba_tin: "ba_tin";
|
|
3986
|
+
bb_tin: "bb_tin";
|
|
3987
|
+
be_vat: "be_vat";
|
|
3988
|
+
bg_uic: "bg_uic";
|
|
3989
|
+
bg_vat: "bg_vat";
|
|
3990
|
+
bh_vat: "bh_vat";
|
|
3991
|
+
bo_tin: "bo_tin";
|
|
3992
|
+
br_cnpj: "br_cnpj";
|
|
3993
|
+
br_cpf: "br_cpf";
|
|
3994
|
+
bs_tin: "bs_tin";
|
|
3995
|
+
by_tin: "by_tin";
|
|
3996
|
+
ca_bn: "ca_bn";
|
|
3997
|
+
ca_gst_hst: "ca_gst_hst";
|
|
3998
|
+
ca_pst_bc: "ca_pst_bc";
|
|
3999
|
+
ca_pst_mb: "ca_pst_mb";
|
|
4000
|
+
ca_pst_sk: "ca_pst_sk";
|
|
4001
|
+
ca_qst: "ca_qst";
|
|
4002
|
+
cd_nif: "cd_nif";
|
|
4003
|
+
ch_uid: "ch_uid";
|
|
4004
|
+
ch_vat: "ch_vat";
|
|
4005
|
+
cl_tin: "cl_tin";
|
|
4006
|
+
cn_tin: "cn_tin";
|
|
4007
|
+
co_nit: "co_nit";
|
|
4008
|
+
cr_tin: "cr_tin";
|
|
4009
|
+
cy_vat: "cy_vat";
|
|
4010
|
+
cz_vat: "cz_vat";
|
|
4011
|
+
de_stn: "de_stn";
|
|
4012
|
+
de_vat: "de_vat";
|
|
4013
|
+
dk_vat: "dk_vat";
|
|
4014
|
+
do_rcn: "do_rcn";
|
|
4015
|
+
ec_ruc: "ec_ruc";
|
|
4016
|
+
ee_vat: "ee_vat";
|
|
4017
|
+
eg_tin: "eg_tin";
|
|
4018
|
+
es_cif: "es_cif";
|
|
4019
|
+
es_vat: "es_vat";
|
|
4020
|
+
eu_oss_vat: "eu_oss_vat";
|
|
4021
|
+
fi_vat: "fi_vat";
|
|
4022
|
+
fr_vat: "fr_vat";
|
|
4023
|
+
gb_vat: "gb_vat";
|
|
4024
|
+
ge_vat: "ge_vat";
|
|
4025
|
+
gn_nif: "gn_nif";
|
|
4026
|
+
gr_vat: "gr_vat";
|
|
4027
|
+
hk_br: "hk_br";
|
|
4028
|
+
hr_oib: "hr_oib";
|
|
4029
|
+
hr_vat: "hr_vat";
|
|
4030
|
+
hu_tin: "hu_tin";
|
|
4031
|
+
hu_vat: "hu_vat";
|
|
4032
|
+
id_npwp: "id_npwp";
|
|
4033
|
+
ie_vat: "ie_vat";
|
|
4034
|
+
il_vat: "il_vat";
|
|
4035
|
+
in_gst: "in_gst";
|
|
4036
|
+
is_vat: "is_vat";
|
|
4037
|
+
it_vat: "it_vat";
|
|
4038
|
+
jp_cn: "jp_cn";
|
|
4039
|
+
jp_rn: "jp_rn";
|
|
4040
|
+
jp_trn: "jp_trn";
|
|
4041
|
+
ke_pin: "ke_pin";
|
|
4042
|
+
kh_tin: "kh_tin";
|
|
4043
|
+
kr_brn: "kr_brn";
|
|
4044
|
+
kz_bin: "kz_bin";
|
|
4045
|
+
li_uid: "li_uid";
|
|
4046
|
+
li_vat: "li_vat";
|
|
4047
|
+
lt_vat: "lt_vat";
|
|
4048
|
+
lu_vat: "lu_vat";
|
|
4049
|
+
lv_vat: "lv_vat";
|
|
4050
|
+
ma_vat: "ma_vat";
|
|
4051
|
+
md_vat: "md_vat";
|
|
4052
|
+
me_pib: "me_pib";
|
|
4053
|
+
mk_vat: "mk_vat";
|
|
4054
|
+
mr_nif: "mr_nif";
|
|
4055
|
+
mt_vat: "mt_vat";
|
|
4056
|
+
mx_rfc: "mx_rfc";
|
|
4057
|
+
my_frp: "my_frp";
|
|
4058
|
+
my_itn: "my_itn";
|
|
4059
|
+
my_sst: "my_sst";
|
|
4060
|
+
ng_tin: "ng_tin";
|
|
4061
|
+
nl_vat: "nl_vat";
|
|
4062
|
+
no_vat: "no_vat";
|
|
4063
|
+
no_voec: "no_voec";
|
|
4064
|
+
np_pan: "np_pan";
|
|
4065
|
+
nz_gst: "nz_gst";
|
|
4066
|
+
om_vat: "om_vat";
|
|
4067
|
+
pe_ruc: "pe_ruc";
|
|
4068
|
+
ph_tin: "ph_tin";
|
|
4069
|
+
pl_vat: "pl_vat";
|
|
4070
|
+
pt_vat: "pt_vat";
|
|
4071
|
+
ro_tin: "ro_tin";
|
|
4072
|
+
ro_vat: "ro_vat";
|
|
4073
|
+
rs_pib: "rs_pib";
|
|
4074
|
+
ru_inn: "ru_inn";
|
|
4075
|
+
ru_kpp: "ru_kpp";
|
|
4076
|
+
sa_vat: "sa_vat";
|
|
4077
|
+
se_vat: "se_vat";
|
|
4078
|
+
sg_gst: "sg_gst";
|
|
4079
|
+
sg_uen: "sg_uen";
|
|
4080
|
+
si_tin: "si_tin";
|
|
4081
|
+
si_vat: "si_vat";
|
|
4082
|
+
sk_vat: "sk_vat";
|
|
4083
|
+
sn_ninea: "sn_ninea";
|
|
4084
|
+
sr_fin: "sr_fin";
|
|
4085
|
+
sv_nit: "sv_nit";
|
|
4086
|
+
th_vat: "th_vat";
|
|
4087
|
+
tj_tin: "tj_tin";
|
|
4088
|
+
tr_tin: "tr_tin";
|
|
4089
|
+
tw_vat: "tw_vat";
|
|
4090
|
+
tz_vat: "tz_vat";
|
|
4091
|
+
ua_vat: "ua_vat";
|
|
4092
|
+
ug_tin: "ug_tin";
|
|
4093
|
+
us_ein: "us_ein";
|
|
4094
|
+
uy_ruc: "uy_ruc";
|
|
4095
|
+
uz_tin: "uz_tin";
|
|
4096
|
+
uz_vat: "uz_vat";
|
|
4097
|
+
ve_rif: "ve_rif";
|
|
4098
|
+
vn_tin: "vn_tin";
|
|
4099
|
+
xi_vat: "xi_vat";
|
|
4100
|
+
za_vat: "za_vat";
|
|
4101
|
+
zm_tin: "zm_tin";
|
|
4102
|
+
zw_tin: "zw_tin";
|
|
3878
4103
|
}>>;
|
|
3879
4104
|
}, z.core.$strip>;
|
|
3880
|
-
export declare const zUpdateUserPath: z.ZodObject<{
|
|
3881
|
-
user_id: z.ZodString;
|
|
3882
|
-
}, z.core.$strip>;
|
|
3883
4105
|
/**
|
|
3884
|
-
*
|
|
4106
|
+
* An array of the applied promotional credits records.
|
|
3885
4107
|
*/
|
|
3886
|
-
export declare const
|
|
3887
|
-
|
|
3888
|
-
|
|
3889
|
-
|
|
3890
|
-
|
|
3891
|
-
Administrator: "Administrator";
|
|
3892
|
-
User: "User";
|
|
3893
|
-
}>;
|
|
3894
|
-
status: z.ZodEnum<{
|
|
3895
|
-
active: "active";
|
|
3896
|
-
inactive: "inactive";
|
|
4108
|
+
export declare const zGetCreditsResponse: z.ZodArray<z.ZodObject<{
|
|
4109
|
+
id: z.ZodOptional<z.ZodString>;
|
|
4110
|
+
type: z.ZodEnum<{
|
|
4111
|
+
credit: "credit";
|
|
4112
|
+
discount: "discount";
|
|
3897
4113
|
}>;
|
|
3898
|
-
|
|
3899
|
-
|
|
4114
|
+
date_start: z.ZodISODateTime;
|
|
4115
|
+
date_end: z.ZodOptional<z.ZodISODateTime>;
|
|
4116
|
+
code: z.ZodString;
|
|
4117
|
+
description: z.ZodOptional<z.ZodString>;
|
|
4118
|
+
value_total: z.ZodNumber;
|
|
4119
|
+
value_remaining: z.ZodOptional<z.ZodNumber>;
|
|
4120
|
+
}, z.core.$strip>>;
|
|
4121
|
+
export declare const zRedeemCreditsBody: z.ZodObject<{
|
|
4122
|
+
code: z.ZodOptional<z.ZodString>;
|
|
3900
4123
|
}, z.core.$strip>;
|
|
3901
4124
|
//# sourceMappingURL=zod.gen.d.ts.map
|