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