@cloudfleet/sdk 0.12.3 → 1.0.0
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 +394 -384
- package/dist/@tanstack/react-query.gen.d.ts.map +1 -1
- package/dist/@tanstack/react-query.gen.js +419 -409
- 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 +312 -37
- package/dist/schemas.gen.d.ts.map +1 -1
- package/dist/schemas.gen.js +397 -55
- package/dist/schemas.gen.js.map +1 -1
- package/dist/sdk.gen.d.ts +232 -222
- package/dist/sdk.gen.d.ts.map +1 -1
- package/dist/sdk.gen.js +334 -324
- package/dist/sdk.gen.js.map +1 -1
- package/dist/types.gen.d.ts +952 -736
- package/dist/types.gen.d.ts.map +1 -1
- package/dist/zod.gen.d.ts +1467 -1281
- package/dist/zod.gen.d.ts.map +1 -1
- package/dist/zod.gen.js +408 -278
- package/dist/zod.gen.js.map +1 -1
- package/package.json +8 -11
package/dist/zod.gen.d.ts
CHANGED
|
@@ -182,14 +182,39 @@ export declare const zChartUpdateInput: z.ZodObject<{
|
|
|
182
182
|
values: z.ZodString;
|
|
183
183
|
version_channel: z.ZodString;
|
|
184
184
|
}, z.core.$strip>;
|
|
185
|
+
/**
|
|
186
|
+
* Mutable cluster configuration. Applied as a full overwrite: any omitted field is reset to its default rather than left unchanged.
|
|
187
|
+
*/
|
|
185
188
|
export declare const zClusterCreateInput: z.ZodObject<{
|
|
186
189
|
name: z.ZodString;
|
|
187
|
-
tier: z.ZodEnum<{
|
|
190
|
+
tier: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
188
191
|
basic: "basic";
|
|
192
|
+
enterprise: "enterprise";
|
|
189
193
|
pro: "pro";
|
|
190
|
-
}
|
|
191
|
-
region: z.ZodString;
|
|
194
|
+
}>>>;
|
|
192
195
|
version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
196
|
+
release_channel: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
197
|
+
stable: "stable";
|
|
198
|
+
rapid: "rapid";
|
|
199
|
+
extended: "extended";
|
|
200
|
+
}>>>;
|
|
201
|
+
features: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
202
|
+
gpu_sharing_strategy: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
203
|
+
none: "none";
|
|
204
|
+
mps: "mps";
|
|
205
|
+
time_slicing: "time_slicing";
|
|
206
|
+
}>>>;
|
|
207
|
+
gpu_max_shared_clients_per_gpu: z.ZodDefault<z.ZodOptional<z.ZodInt>>;
|
|
208
|
+
cilium_socket_lb_host_namespace_only: z.ZodOptional<z.ZodBoolean>;
|
|
209
|
+
}, z.core.$strip>>>;
|
|
210
|
+
region: z.ZodString;
|
|
211
|
+
networking: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
212
|
+
pod_cidr: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
213
|
+
service_cidr: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
214
|
+
dual_stack: z.ZodOptional<z.ZodBoolean>;
|
|
215
|
+
pod_cidr_v6: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
216
|
+
service_cidr_v6: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
217
|
+
}, z.core.$strip>>>;
|
|
193
218
|
}, z.core.$strip>;
|
|
194
219
|
export declare const zClusterJoinInformation: z.ZodObject<{
|
|
195
220
|
certificate_authority: z.ZodString;
|
|
@@ -210,18 +235,41 @@ export declare const zClusterJoinInformation: z.ZodObject<{
|
|
|
210
235
|
gcp_workload_identity_provider: z.ZodString;
|
|
211
236
|
}, z.core.$strip>;
|
|
212
237
|
}, z.core.$strip>;
|
|
238
|
+
/**
|
|
239
|
+
* Mutable cluster configuration. Applied as a full overwrite: any omitted field is reset to its default rather than left unchanged.
|
|
240
|
+
*/
|
|
213
241
|
export declare const zCluster: z.ZodObject<{
|
|
214
242
|
name: z.ZodString;
|
|
215
|
-
tier: z.ZodEnum<{
|
|
243
|
+
tier: z.ZodDefault<z.ZodEnum<{
|
|
216
244
|
basic: "basic";
|
|
245
|
+
enterprise: "enterprise";
|
|
217
246
|
pro: "pro";
|
|
218
|
-
}
|
|
247
|
+
}>>;
|
|
248
|
+
version_channel: z.ZodDefault<z.ZodString>;
|
|
249
|
+
release_channel: z.ZodDefault<z.ZodEnum<{
|
|
250
|
+
stable: "stable";
|
|
251
|
+
rapid: "rapid";
|
|
252
|
+
extended: "extended";
|
|
253
|
+
}>>;
|
|
254
|
+
features: z.ZodDefault<z.ZodObject<{
|
|
255
|
+
gpu_sharing_strategy: z.ZodDefault<z.ZodEnum<{
|
|
256
|
+
none: "none";
|
|
257
|
+
mps: "mps";
|
|
258
|
+
time_slicing: "time_slicing";
|
|
259
|
+
}>>;
|
|
260
|
+
gpu_max_shared_clients_per_gpu: z.ZodDefault<z.ZodInt>;
|
|
261
|
+
cilium_socket_lb_host_namespace_only: z.ZodBoolean;
|
|
262
|
+
}, z.core.$strip>>;
|
|
219
263
|
region: z.ZodString;
|
|
264
|
+
networking: z.ZodDefault<z.ZodObject<{
|
|
265
|
+
pod_cidr: z.ZodDefault<z.ZodString>;
|
|
266
|
+
service_cidr: z.ZodDefault<z.ZodString>;
|
|
267
|
+
dual_stack: z.ZodBoolean;
|
|
268
|
+
pod_cidr_v6: z.ZodDefault<z.ZodString>;
|
|
269
|
+
service_cidr_v6: z.ZodDefault<z.ZodString>;
|
|
270
|
+
}, z.core.$strip>>;
|
|
220
271
|
id: z.ZodUUID;
|
|
221
272
|
status: z.ZodEnum<{
|
|
222
|
-
deleted: "deleted";
|
|
223
|
-
failed: "failed";
|
|
224
|
-
active: "active";
|
|
225
273
|
disabled: "disabled";
|
|
226
274
|
creating: "creating";
|
|
227
275
|
deployed: "deployed";
|
|
@@ -237,17 +285,37 @@ export declare const zCluster: z.ZodObject<{
|
|
|
237
285
|
version_current: z.ZodOptional<z.ZodString>;
|
|
238
286
|
created_at: z.ZodOptional<z.ZodString>;
|
|
239
287
|
updated_at: z.ZodOptional<z.ZodString>;
|
|
240
|
-
ready: z.
|
|
241
|
-
version_channel: z.ZodOptional<z.ZodString>;
|
|
288
|
+
ready: z.ZodBoolean;
|
|
242
289
|
}, z.core.$strip>;
|
|
290
|
+
/**
|
|
291
|
+
* Mutable cluster configuration. Applied as a full overwrite: any omitted field is reset to its default rather than left unchanged.
|
|
292
|
+
*/
|
|
243
293
|
export declare const zClusterUpdateInput: z.ZodObject<{
|
|
244
|
-
name: z.
|
|
245
|
-
tier: z.ZodEnum<{
|
|
294
|
+
name: z.ZodString;
|
|
295
|
+
tier: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
246
296
|
basic: "basic";
|
|
297
|
+
enterprise: "enterprise";
|
|
247
298
|
pro: "pro";
|
|
248
|
-
}
|
|
249
|
-
version_channel: z.ZodOptional<z.ZodString
|
|
299
|
+
}>>>;
|
|
300
|
+
version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
301
|
+
release_channel: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
302
|
+
stable: "stable";
|
|
303
|
+
rapid: "rapid";
|
|
304
|
+
extended: "extended";
|
|
305
|
+
}>>>;
|
|
306
|
+
features: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
307
|
+
gpu_sharing_strategy: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
308
|
+
none: "none";
|
|
309
|
+
mps: "mps";
|
|
310
|
+
time_slicing: "time_slicing";
|
|
311
|
+
}>>>;
|
|
312
|
+
gpu_max_shared_clients_per_gpu: z.ZodDefault<z.ZodOptional<z.ZodInt>>;
|
|
313
|
+
cilium_socket_lb_host_namespace_only: z.ZodOptional<z.ZodBoolean>;
|
|
314
|
+
}, z.core.$strip>>>;
|
|
250
315
|
}, z.core.$strip>;
|
|
316
|
+
/**
|
|
317
|
+
* Mutable fleet configuration. Applied as a full overwrite: any omitted field is reset to its default rather than left unchanged.
|
|
318
|
+
*/
|
|
251
319
|
export declare const zFleetCreateInput: z.ZodObject<{
|
|
252
320
|
limits: z.ZodOptional<z.ZodObject<{
|
|
253
321
|
cpu: z.ZodOptional<z.ZodInt>;
|
|
@@ -264,7 +332,7 @@ export declare const zFleetCreateInput: z.ZodObject<{
|
|
|
264
332
|
enabled: z.ZodBoolean;
|
|
265
333
|
controllerRoleArn: z.ZodOptional<z.ZodString>;
|
|
266
334
|
}, z.core.$strip>>;
|
|
267
|
-
constraints: z.ZodOptional<z.ZodObject<{
|
|
335
|
+
constraints: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
268
336
|
'karpenter.sh/capacity-type': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
269
337
|
"on-demand": "on-demand";
|
|
270
338
|
spot: "spot";
|
|
@@ -273,7 +341,7 @@ export declare const zFleetCreateInput: z.ZodObject<{
|
|
|
273
341
|
amd64: "amd64";
|
|
274
342
|
arm64: "arm64";
|
|
275
343
|
}>>>>;
|
|
276
|
-
'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
344
|
+
'cfke.io/instance-family': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
277
345
|
p3: "p3";
|
|
278
346
|
cx: "cx";
|
|
279
347
|
h1: "h1";
|
|
@@ -432,8 +500,8 @@ export declare const zFleetCreateInput: z.ZodObject<{
|
|
|
432
500
|
x8g: "x8g";
|
|
433
501
|
z1d: "z1d";
|
|
434
502
|
z3: "z3";
|
|
435
|
-
}
|
|
436
|
-
'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
503
|
+
}>>>>;
|
|
504
|
+
'topology.kubernetes.io/region': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
437
505
|
"africa-south1": "africa-south1";
|
|
438
506
|
"ap-northeast-1": "ap-northeast-1";
|
|
439
507
|
"ap-northeast-2": "ap-northeast-2";
|
|
@@ -498,14 +566,17 @@ export declare const zFleetCreateInput: z.ZodObject<{
|
|
|
498
566
|
"us-west2": "us-west2";
|
|
499
567
|
"us-west3": "us-west3";
|
|
500
568
|
"us-west4": "us-west4";
|
|
501
|
-
}
|
|
502
|
-
}, z.core.$strip
|
|
569
|
+
}>>>>;
|
|
570
|
+
}, z.core.$strip>>>;
|
|
503
571
|
scalingProfile: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
504
572
|
aggressive: "aggressive";
|
|
505
573
|
conservative: "conservative";
|
|
506
574
|
}>>>;
|
|
507
575
|
id: z.ZodString;
|
|
508
576
|
}, z.core.$strip>;
|
|
577
|
+
/**
|
|
578
|
+
* Mutable fleet configuration. Applied as a full overwrite: any omitted field is reset to its default rather than left unchanged.
|
|
579
|
+
*/
|
|
509
580
|
export declare const zFleet: z.ZodObject<{
|
|
510
581
|
limits: z.ZodOptional<z.ZodObject<{
|
|
511
582
|
cpu: z.ZodOptional<z.ZodInt>;
|
|
@@ -522,16 +593,16 @@ export declare const zFleet: z.ZodObject<{
|
|
|
522
593
|
enabled: z.ZodBoolean;
|
|
523
594
|
controllerRoleArn: z.ZodOptional<z.ZodString>;
|
|
524
595
|
}, z.core.$strip>>;
|
|
525
|
-
constraints: z.
|
|
526
|
-
'karpenter.sh/capacity-type': z.ZodDefault<z.
|
|
596
|
+
constraints: z.ZodDefault<z.ZodObject<{
|
|
597
|
+
'karpenter.sh/capacity-type': z.ZodDefault<z.ZodArray<z.ZodEnum<{
|
|
527
598
|
"on-demand": "on-demand";
|
|
528
599
|
spot: "spot";
|
|
529
|
-
}
|
|
530
|
-
'kubernetes.io/arch': z.ZodDefault<z.
|
|
600
|
+
}>>>;
|
|
601
|
+
'kubernetes.io/arch': z.ZodDefault<z.ZodArray<z.ZodEnum<{
|
|
531
602
|
amd64: "amd64";
|
|
532
603
|
arm64: "arm64";
|
|
533
|
-
}
|
|
534
|
-
'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
604
|
+
}>>>;
|
|
605
|
+
'cfke.io/instance-family': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
535
606
|
p3: "p3";
|
|
536
607
|
cx: "cx";
|
|
537
608
|
h1: "h1";
|
|
@@ -690,8 +761,8 @@ export declare const zFleet: z.ZodObject<{
|
|
|
690
761
|
x8g: "x8g";
|
|
691
762
|
z1d: "z1d";
|
|
692
763
|
z3: "z3";
|
|
693
|
-
}
|
|
694
|
-
'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
764
|
+
}>>>>;
|
|
765
|
+
'topology.kubernetes.io/region': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
695
766
|
"africa-south1": "africa-south1";
|
|
696
767
|
"ap-northeast-1": "ap-northeast-1";
|
|
697
768
|
"ap-northeast-2": "ap-northeast-2";
|
|
@@ -756,14 +827,21 @@ export declare const zFleet: z.ZodObject<{
|
|
|
756
827
|
"us-west2": "us-west2";
|
|
757
828
|
"us-west3": "us-west3";
|
|
758
829
|
"us-west4": "us-west4";
|
|
759
|
-
}
|
|
830
|
+
}>>>>;
|
|
760
831
|
}, z.core.$strip>>;
|
|
761
832
|
scalingProfile: z.ZodDefault<z.ZodEnum<{
|
|
762
833
|
aggressive: "aggressive";
|
|
763
834
|
conservative: "conservative";
|
|
764
835
|
}>>;
|
|
765
836
|
id: z.ZodString;
|
|
837
|
+
ready: z.ZodBoolean;
|
|
838
|
+
status_message: z.ZodOptional<z.ZodString>;
|
|
839
|
+
created_at: z.ZodString;
|
|
840
|
+
updated_at: z.ZodString;
|
|
766
841
|
}, z.core.$strip>;
|
|
842
|
+
/**
|
|
843
|
+
* Mutable fleet configuration. Applied as a full overwrite: any omitted field is reset to its default rather than left unchanged.
|
|
844
|
+
*/
|
|
767
845
|
export declare const zFleetUpdateInput: z.ZodObject<{
|
|
768
846
|
limits: z.ZodOptional<z.ZodObject<{
|
|
769
847
|
cpu: z.ZodOptional<z.ZodInt>;
|
|
@@ -780,16 +858,16 @@ export declare const zFleetUpdateInput: z.ZodObject<{
|
|
|
780
858
|
enabled: z.ZodBoolean;
|
|
781
859
|
controllerRoleArn: z.ZodOptional<z.ZodString>;
|
|
782
860
|
}, z.core.$strip>>;
|
|
783
|
-
constraints: z.ZodOptional<z.ZodObject<{
|
|
784
|
-
'karpenter.sh/capacity-type': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
861
|
+
constraints: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
862
|
+
'karpenter.sh/capacity-type': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
785
863
|
"on-demand": "on-demand";
|
|
786
864
|
spot: "spot";
|
|
787
|
-
}
|
|
788
|
-
'kubernetes.io/arch': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
865
|
+
}>>>>;
|
|
866
|
+
'kubernetes.io/arch': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
789
867
|
amd64: "amd64";
|
|
790
868
|
arm64: "arm64";
|
|
791
|
-
}
|
|
792
|
-
'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
869
|
+
}>>>>;
|
|
870
|
+
'cfke.io/instance-family': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
793
871
|
p3: "p3";
|
|
794
872
|
cx: "cx";
|
|
795
873
|
h1: "h1";
|
|
@@ -948,8 +1026,8 @@ export declare const zFleetUpdateInput: z.ZodObject<{
|
|
|
948
1026
|
x8g: "x8g";
|
|
949
1027
|
z1d: "z1d";
|
|
950
1028
|
z3: "z3";
|
|
951
|
-
}
|
|
952
|
-
'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
1029
|
+
}>>>>;
|
|
1030
|
+
'topology.kubernetes.io/region': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
953
1031
|
"africa-south1": "africa-south1";
|
|
954
1032
|
"ap-northeast-1": "ap-northeast-1";
|
|
955
1033
|
"ap-northeast-2": "ap-northeast-2";
|
|
@@ -1014,12 +1092,12 @@ export declare const zFleetUpdateInput: z.ZodObject<{
|
|
|
1014
1092
|
"us-west2": "us-west2";
|
|
1015
1093
|
"us-west3": "us-west3";
|
|
1016
1094
|
"us-west4": "us-west4";
|
|
1017
|
-
}
|
|
1018
|
-
}, z.core.$strip
|
|
1019
|
-
scalingProfile: z.ZodEnum<{
|
|
1095
|
+
}>>>>;
|
|
1096
|
+
}, z.core.$strip>>>;
|
|
1097
|
+
scalingProfile: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
1020
1098
|
aggressive: "aggressive";
|
|
1021
1099
|
conservative: "conservative";
|
|
1022
|
-
}
|
|
1100
|
+
}>>>;
|
|
1023
1101
|
}, z.core.$strip>;
|
|
1024
1102
|
export declare const zInviteCreateInput: z.ZodObject<{
|
|
1025
1103
|
email: z.ZodEmail;
|
|
@@ -1103,6 +1181,8 @@ export declare const zOrganization: z.ZodObject<{
|
|
|
1103
1181
|
basic_clusters_available: z.ZodInt;
|
|
1104
1182
|
pro_clusters_max: z.ZodInt;
|
|
1105
1183
|
pro_clusters_available: z.ZodInt;
|
|
1184
|
+
enterprise_clusters_max: z.ZodInt;
|
|
1185
|
+
enterprise_clusters_available: z.ZodInt;
|
|
1106
1186
|
fleets_max: z.ZodInt;
|
|
1107
1187
|
cluster_tiers: z.ZodArray<z.ZodString>;
|
|
1108
1188
|
regions: z.ZodArray<z.ZodString>;
|
|
@@ -1144,6 +1224,8 @@ export declare const zPlatformQuota: z.ZodObject<{
|
|
|
1144
1224
|
basic_clusters_available: z.ZodInt;
|
|
1145
1225
|
pro_clusters_max: z.ZodInt;
|
|
1146
1226
|
pro_clusters_available: z.ZodInt;
|
|
1227
|
+
enterprise_clusters_max: z.ZodInt;
|
|
1228
|
+
enterprise_clusters_available: z.ZodInt;
|
|
1147
1229
|
fleets_max: z.ZodInt;
|
|
1148
1230
|
cluster_tiers: z.ZodArray<z.ZodString>;
|
|
1149
1231
|
regions: z.ZodArray<z.ZodString>;
|
|
@@ -1389,630 +1471,663 @@ export declare const zUserUpdateInput: z.ZodObject<{
|
|
|
1389
1471
|
inactive: "inactive";
|
|
1390
1472
|
}>>;
|
|
1391
1473
|
}, z.core.$strip>;
|
|
1392
|
-
export declare const
|
|
1393
|
-
|
|
1394
|
-
hourly: "hourly";
|
|
1395
|
-
daily: "daily";
|
|
1396
|
-
monthly: "monthly";
|
|
1397
|
-
}>>>;
|
|
1474
|
+
export declare const zListUserOrganizationsPath: z.ZodObject<{
|
|
1475
|
+
email: z.ZodString;
|
|
1398
1476
|
}, z.core.$strip>;
|
|
1399
1477
|
/**
|
|
1400
|
-
*
|
|
1478
|
+
* An array of organizations the user belongs to.
|
|
1401
1479
|
*/
|
|
1402
|
-
export declare const
|
|
1403
|
-
|
|
1404
|
-
|
|
1405
|
-
|
|
1406
|
-
|
|
1407
|
-
|
|
1408
|
-
|
|
1409
|
-
|
|
1410
|
-
|
|
1411
|
-
|
|
1412
|
-
|
|
1413
|
-
|
|
1414
|
-
|
|
1480
|
+
export declare const zListUserOrganizationsResponse: z.ZodArray<z.ZodObject<{
|
|
1481
|
+
realm: z.ZodOptional<z.ZodString>;
|
|
1482
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
1483
|
+
}, z.core.$strip>>;
|
|
1484
|
+
/**
|
|
1485
|
+
* An array of users
|
|
1486
|
+
*/
|
|
1487
|
+
export declare const zListUsersResponse: z.ZodArray<z.ZodObject<{
|
|
1488
|
+
email: z.ZodEmail;
|
|
1489
|
+
first_name: z.ZodString;
|
|
1490
|
+
last_name: z.ZodString;
|
|
1491
|
+
role: z.ZodEnum<{
|
|
1492
|
+
Administrator: "Administrator";
|
|
1493
|
+
User: "User";
|
|
1494
|
+
}>;
|
|
1495
|
+
status: z.ZodEnum<{
|
|
1496
|
+
active: "active";
|
|
1497
|
+
inactive: "inactive";
|
|
1498
|
+
}>;
|
|
1499
|
+
id: z.ZodUUID;
|
|
1500
|
+
date_created: z.ZodISODateTime;
|
|
1501
|
+
}, z.core.$strip>>;
|
|
1502
|
+
export declare const zCreateUserBody: z.ZodObject<{
|
|
1503
|
+
email: z.ZodEmail;
|
|
1504
|
+
first_name: z.ZodString;
|
|
1505
|
+
last_name: z.ZodString;
|
|
1506
|
+
code: z.ZodString;
|
|
1507
|
+
password: z.ZodString;
|
|
1415
1508
|
}, z.core.$strip>;
|
|
1416
1509
|
/**
|
|
1417
|
-
*
|
|
1418
|
-
*
|
|
1510
|
+
* Successfully created. Returns created user details.
|
|
1419
1511
|
*/
|
|
1420
|
-
export declare const
|
|
1421
|
-
|
|
1512
|
+
export declare const zCreateUserResponse: z.ZodObject<{
|
|
1513
|
+
email: z.ZodEmail;
|
|
1514
|
+
first_name: z.ZodString;
|
|
1515
|
+
last_name: z.ZodString;
|
|
1516
|
+
role: z.ZodEnum<{
|
|
1517
|
+
Administrator: "Administrator";
|
|
1518
|
+
User: "User";
|
|
1519
|
+
}>;
|
|
1520
|
+
status: z.ZodEnum<{
|
|
1521
|
+
active: "active";
|
|
1522
|
+
inactive: "inactive";
|
|
1523
|
+
}>;
|
|
1524
|
+
id: z.ZodUUID;
|
|
1525
|
+
date_created: z.ZodISODateTime;
|
|
1526
|
+
}, z.core.$strip>;
|
|
1527
|
+
export declare const zDeleteUserPath: z.ZodObject<{
|
|
1528
|
+
user_id: z.ZodString;
|
|
1422
1529
|
}, z.core.$strip>;
|
|
1423
1530
|
/**
|
|
1424
|
-
*
|
|
1531
|
+
* User profile information
|
|
1425
1532
|
*/
|
|
1426
|
-
export declare const
|
|
1427
|
-
|
|
1428
|
-
|
|
1429
|
-
|
|
1430
|
-
|
|
1431
|
-
|
|
1533
|
+
export declare const zDeleteUserResponse: z.ZodObject<{
|
|
1534
|
+
email: z.ZodEmail;
|
|
1535
|
+
first_name: z.ZodString;
|
|
1536
|
+
last_name: z.ZodString;
|
|
1537
|
+
role: z.ZodEnum<{
|
|
1538
|
+
Administrator: "Administrator";
|
|
1539
|
+
User: "User";
|
|
1432
1540
|
}>;
|
|
1433
|
-
|
|
1434
|
-
|
|
1435
|
-
|
|
1436
|
-
|
|
1437
|
-
|
|
1438
|
-
|
|
1439
|
-
|
|
1440
|
-
|
|
1441
|
-
|
|
1442
|
-
export declare const zSetDefaultPaymentMethodPath: z.ZodObject<{
|
|
1443
|
-
paymentMethodId: z.ZodString;
|
|
1541
|
+
status: z.ZodEnum<{
|
|
1542
|
+
active: "active";
|
|
1543
|
+
inactive: "inactive";
|
|
1544
|
+
}>;
|
|
1545
|
+
id: z.ZodUUID;
|
|
1546
|
+
date_created: z.ZodISODateTime;
|
|
1547
|
+
}, z.core.$strip>;
|
|
1548
|
+
export declare const zGetUserPath: z.ZodObject<{
|
|
1549
|
+
user_id: z.ZodString;
|
|
1444
1550
|
}, z.core.$strip>;
|
|
1445
1551
|
/**
|
|
1446
|
-
*
|
|
1552
|
+
* User profile information
|
|
1447
1553
|
*/
|
|
1448
|
-
export declare const
|
|
1449
|
-
|
|
1450
|
-
|
|
1554
|
+
export declare const zGetUserResponse: z.ZodObject<{
|
|
1555
|
+
email: z.ZodEmail;
|
|
1556
|
+
first_name: z.ZodString;
|
|
1557
|
+
last_name: z.ZodString;
|
|
1558
|
+
role: z.ZodEnum<{
|
|
1559
|
+
Administrator: "Administrator";
|
|
1560
|
+
User: "User";
|
|
1561
|
+
}>;
|
|
1562
|
+
status: z.ZodEnum<{
|
|
1563
|
+
active: "active";
|
|
1564
|
+
inactive: "inactive";
|
|
1565
|
+
}>;
|
|
1566
|
+
id: z.ZodUUID;
|
|
1567
|
+
date_created: z.ZodISODateTime;
|
|
1568
|
+
}, z.core.$strip>;
|
|
1569
|
+
export declare const zUpdateUserBody: z.ZodObject<{
|
|
1570
|
+
email: z.ZodOptional<z.ZodEmail>;
|
|
1571
|
+
first_name: z.ZodOptional<z.ZodString>;
|
|
1572
|
+
last_name: z.ZodOptional<z.ZodString>;
|
|
1573
|
+
role: z.ZodOptional<z.ZodEnum<{
|
|
1574
|
+
Administrator: "Administrator";
|
|
1575
|
+
User: "User";
|
|
1576
|
+
}>>;
|
|
1577
|
+
status: z.ZodOptional<z.ZodEnum<{
|
|
1578
|
+
active: "active";
|
|
1579
|
+
inactive: "inactive";
|
|
1580
|
+
}>>;
|
|
1581
|
+
}, z.core.$strip>;
|
|
1582
|
+
export declare const zUpdateUserPath: z.ZodObject<{
|
|
1583
|
+
user_id: z.ZodString;
|
|
1451
1584
|
}, z.core.$strip>;
|
|
1452
1585
|
/**
|
|
1453
|
-
*
|
|
1586
|
+
* Successfully created. Returns created user details.
|
|
1454
1587
|
*/
|
|
1455
|
-
export declare const
|
|
1588
|
+
export declare const zUpdateUserResponse: z.ZodObject<{
|
|
1589
|
+
email: z.ZodEmail;
|
|
1590
|
+
first_name: z.ZodString;
|
|
1591
|
+
last_name: z.ZodString;
|
|
1592
|
+
role: z.ZodEnum<{
|
|
1593
|
+
Administrator: "Administrator";
|
|
1594
|
+
User: "User";
|
|
1595
|
+
}>;
|
|
1596
|
+
status: z.ZodEnum<{
|
|
1597
|
+
active: "active";
|
|
1598
|
+
inactive: "inactive";
|
|
1599
|
+
}>;
|
|
1600
|
+
id: z.ZodUUID;
|
|
1601
|
+
date_created: z.ZodISODateTime;
|
|
1602
|
+
}, z.core.$strip>;
|
|
1456
1603
|
/**
|
|
1457
|
-
*
|
|
1604
|
+
* Returns a list of access token details with masked secrets.
|
|
1458
1605
|
*/
|
|
1459
|
-
export declare const
|
|
1606
|
+
export declare const zListTokensResponse: z.ZodArray<z.ZodObject<{
|
|
1607
|
+
name: z.ZodString;
|
|
1608
|
+
role: z.ZodEnum<{
|
|
1609
|
+
Administrator: "Administrator";
|
|
1610
|
+
User: "User";
|
|
1611
|
+
}>;
|
|
1460
1612
|
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>;
|
|
1613
|
+
secret: z.ZodOptional<z.ZodString>;
|
|
1614
|
+
date_created: z.ZodISODateTime;
|
|
1469
1615
|
}, z.core.$strip>>;
|
|
1616
|
+
export declare const zCreateTokenBody: z.ZodObject<{
|
|
1617
|
+
name: z.ZodString;
|
|
1618
|
+
role: z.ZodEnum<{
|
|
1619
|
+
Administrator: "Administrator";
|
|
1620
|
+
User: "User";
|
|
1621
|
+
}>;
|
|
1622
|
+
}, z.core.$strip>;
|
|
1470
1623
|
/**
|
|
1471
|
-
*
|
|
1624
|
+
* Successfully created. Returns created token details with unmasked/raw secret.
|
|
1472
1625
|
*/
|
|
1473
|
-
export declare const
|
|
1474
|
-
|
|
1475
|
-
|
|
1476
|
-
|
|
1626
|
+
export declare const zCreateTokenResponse: z.ZodObject<{
|
|
1627
|
+
name: z.ZodString;
|
|
1628
|
+
role: z.ZodEnum<{
|
|
1629
|
+
Administrator: "Administrator";
|
|
1630
|
+
User: "User";
|
|
1477
1631
|
}>;
|
|
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";
|
|
1632
|
+
id: z.ZodOptional<z.ZodString>;
|
|
1633
|
+
secret: z.ZodOptional<z.ZodString>;
|
|
1634
|
+
date_created: z.ZodISODateTime;
|
|
1635
|
+
}, z.core.$strip>;
|
|
1636
|
+
export declare const zDeleteTokenPath: z.ZodObject<{
|
|
1637
|
+
token_id: z.ZodString;
|
|
1638
|
+
}, z.core.$strip>;
|
|
1639
|
+
export declare const zGetTokenPath: z.ZodObject<{
|
|
1640
|
+
token_id: z.ZodString;
|
|
1641
|
+
}, z.core.$strip>;
|
|
1642
|
+
/**
|
|
1643
|
+
* Returns access token details with masked secret.
|
|
1644
|
+
*/
|
|
1645
|
+
export declare const zGetTokenResponse: z.ZodObject<{
|
|
1646
|
+
name: z.ZodString;
|
|
1647
|
+
role: z.ZodEnum<{
|
|
1648
|
+
Administrator: "Administrator";
|
|
1649
|
+
User: "User";
|
|
1650
|
+
}>;
|
|
1651
|
+
id: z.ZodOptional<z.ZodString>;
|
|
1652
|
+
secret: z.ZodOptional<z.ZodString>;
|
|
1653
|
+
date_created: z.ZodISODateTime;
|
|
1654
|
+
}, z.core.$strip>;
|
|
1655
|
+
export declare const zUpdateTokenBody: z.ZodObject<{
|
|
1656
|
+
name: z.ZodOptional<z.ZodString>;
|
|
1657
|
+
role: z.ZodOptional<z.ZodEnum<{
|
|
1658
|
+
Administrator: "Administrator";
|
|
1659
|
+
User: "User";
|
|
1618
1660
|
}>>;
|
|
1619
1661
|
}, z.core.$strip>;
|
|
1620
|
-
export declare const
|
|
1621
|
-
|
|
1622
|
-
|
|
1623
|
-
|
|
1662
|
+
export declare const zUpdateTokenPath: z.ZodObject<{
|
|
1663
|
+
token_id: z.ZodString;
|
|
1664
|
+
}, z.core.$strip>;
|
|
1665
|
+
/**
|
|
1666
|
+
* Successfully updated. Returns updated token details with masked secret.
|
|
1667
|
+
*/
|
|
1668
|
+
export declare const zUpdateTokenResponse: z.ZodObject<{
|
|
1669
|
+
name: z.ZodString;
|
|
1670
|
+
role: z.ZodEnum<{
|
|
1671
|
+
Administrator: "Administrator";
|
|
1672
|
+
User: "User";
|
|
1624
1673
|
}>;
|
|
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
|
-
}>>;
|
|
1674
|
+
id: z.ZodOptional<z.ZodString>;
|
|
1675
|
+
secret: z.ZodOptional<z.ZodString>;
|
|
1676
|
+
date_created: z.ZodISODateTime;
|
|
1677
|
+
}, z.core.$strip>;
|
|
1678
|
+
export declare const zRegenerateTokenPath: z.ZodObject<{
|
|
1679
|
+
token_id: z.ZodString;
|
|
1766
1680
|
}, z.core.$strip>;
|
|
1767
1681
|
/**
|
|
1768
|
-
* Successfully updated. Returns updated
|
|
1682
|
+
* Successfully updated. Returns updated token details with unmasked / raw secret.
|
|
1769
1683
|
*/
|
|
1770
|
-
export declare const
|
|
1771
|
-
|
|
1772
|
-
|
|
1773
|
-
|
|
1684
|
+
export declare const zRegenerateTokenResponse: z.ZodObject<{
|
|
1685
|
+
name: z.ZodString;
|
|
1686
|
+
role: z.ZodEnum<{
|
|
1687
|
+
Administrator: "Administrator";
|
|
1688
|
+
User: "User";
|
|
1774
1689
|
}>;
|
|
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
|
-
}>>;
|
|
1690
|
+
id: z.ZodOptional<z.ZodString>;
|
|
1691
|
+
secret: z.ZodOptional<z.ZodString>;
|
|
1692
|
+
date_created: z.ZodISODateTime;
|
|
1916
1693
|
}, z.core.$strip>;
|
|
1917
1694
|
/**
|
|
1918
|
-
*
|
|
1695
|
+
* Tickets for the organization.
|
|
1919
1696
|
*/
|
|
1920
|
-
export declare const
|
|
1921
|
-
|
|
1922
|
-
|
|
1923
|
-
|
|
1924
|
-
|
|
1925
|
-
|
|
1926
|
-
|
|
1927
|
-
|
|
1928
|
-
|
|
1929
|
-
|
|
1930
|
-
|
|
1931
|
-
|
|
1932
|
-
}
|
|
1933
|
-
|
|
1934
|
-
|
|
1697
|
+
export declare const zListTicketsResponse: z.ZodObject<{
|
|
1698
|
+
items: z.ZodArray<z.ZodObject<{
|
|
1699
|
+
id: z.ZodString;
|
|
1700
|
+
status: z.ZodEnum<{
|
|
1701
|
+
closed: "closed";
|
|
1702
|
+
waiting_on_us: "waiting_on_us";
|
|
1703
|
+
waiting_on_user: "waiting_on_user";
|
|
1704
|
+
}>;
|
|
1705
|
+
category: z.ZodEnum<{
|
|
1706
|
+
billing: "billing";
|
|
1707
|
+
technical: "technical";
|
|
1708
|
+
general: "general";
|
|
1709
|
+
}>;
|
|
1710
|
+
summary: z.ZodString;
|
|
1711
|
+
closed_at: z.ZodOptional<z.ZodISODateTime>;
|
|
1712
|
+
date_created: z.ZodISODateTime;
|
|
1713
|
+
date_updated: z.ZodISODateTime;
|
|
1714
|
+
messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1715
|
+
id: z.ZodString;
|
|
1716
|
+
type: z.ZodEnum<{
|
|
1717
|
+
customer_reply: "customer_reply";
|
|
1718
|
+
agent_reply: "agent_reply";
|
|
1719
|
+
}>;
|
|
1720
|
+
body: z.ZodString;
|
|
1721
|
+
author_first_name: z.ZodOptional<z.ZodString>;
|
|
1722
|
+
author_last_name: z.ZodOptional<z.ZodString>;
|
|
1723
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1724
|
+
id: z.ZodString;
|
|
1725
|
+
filename: z.ZodString;
|
|
1726
|
+
content_type: z.ZodString;
|
|
1727
|
+
size: z.ZodInt;
|
|
1728
|
+
}, z.core.$strip>>>;
|
|
1729
|
+
date_created: z.ZodISODateTime;
|
|
1730
|
+
}, z.core.$strip>>>;
|
|
1731
|
+
}, z.core.$strip>>;
|
|
1935
1732
|
}, z.core.$strip>;
|
|
1936
|
-
export declare const
|
|
1937
|
-
|
|
1733
|
+
export declare const zCreateTicketBody: z.ZodObject<{
|
|
1734
|
+
payload: z.ZodOptional<z.ZodString>;
|
|
1735
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1938
1736
|
}, z.core.$strip>;
|
|
1939
1737
|
/**
|
|
1940
|
-
*
|
|
1738
|
+
* Ticket created.
|
|
1941
1739
|
*/
|
|
1942
|
-
export declare const
|
|
1943
|
-
|
|
1944
|
-
|
|
1945
|
-
|
|
1946
|
-
|
|
1947
|
-
|
|
1948
|
-
|
|
1949
|
-
|
|
1950
|
-
|
|
1951
|
-
|
|
1952
|
-
|
|
1953
|
-
}
|
|
1954
|
-
|
|
1955
|
-
|
|
1956
|
-
|
|
1957
|
-
|
|
1958
|
-
|
|
1959
|
-
|
|
1740
|
+
export declare const zCreateTicketResponse: z.ZodObject<{
|
|
1741
|
+
id: z.ZodString;
|
|
1742
|
+
status: z.ZodEnum<{
|
|
1743
|
+
closed: "closed";
|
|
1744
|
+
waiting_on_us: "waiting_on_us";
|
|
1745
|
+
waiting_on_user: "waiting_on_user";
|
|
1746
|
+
}>;
|
|
1747
|
+
category: z.ZodEnum<{
|
|
1748
|
+
billing: "billing";
|
|
1749
|
+
technical: "technical";
|
|
1750
|
+
general: "general";
|
|
1751
|
+
}>;
|
|
1752
|
+
summary: z.ZodString;
|
|
1753
|
+
closed_at: z.ZodOptional<z.ZodISODateTime>;
|
|
1754
|
+
date_created: z.ZodISODateTime;
|
|
1755
|
+
date_updated: z.ZodISODateTime;
|
|
1756
|
+
messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1757
|
+
id: z.ZodString;
|
|
1758
|
+
type: z.ZodEnum<{
|
|
1759
|
+
customer_reply: "customer_reply";
|
|
1760
|
+
agent_reply: "agent_reply";
|
|
1761
|
+
}>;
|
|
1762
|
+
body: z.ZodString;
|
|
1763
|
+
author_first_name: z.ZodOptional<z.ZodString>;
|
|
1764
|
+
author_last_name: z.ZodOptional<z.ZodString>;
|
|
1765
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1766
|
+
id: z.ZodString;
|
|
1767
|
+
filename: z.ZodString;
|
|
1768
|
+
content_type: z.ZodString;
|
|
1769
|
+
size: z.ZodInt;
|
|
1770
|
+
}, z.core.$strip>>>;
|
|
1771
|
+
date_created: z.ZodISODateTime;
|
|
1772
|
+
}, z.core.$strip>>>;
|
|
1960
1773
|
}, z.core.$strip>;
|
|
1961
|
-
export declare const
|
|
1962
|
-
|
|
1774
|
+
export declare const zCloseTicketPath: z.ZodObject<{
|
|
1775
|
+
ticket_id: z.ZodString;
|
|
1963
1776
|
}, z.core.$strip>;
|
|
1964
1777
|
/**
|
|
1965
|
-
*
|
|
1778
|
+
* Ticket closed.
|
|
1966
1779
|
*/
|
|
1967
|
-
export declare const
|
|
1968
|
-
|
|
1969
|
-
|
|
1970
|
-
|
|
1780
|
+
export declare const zCloseTicketResponse: z.ZodObject<{
|
|
1781
|
+
id: z.ZodString;
|
|
1782
|
+
status: z.ZodEnum<{
|
|
1783
|
+
closed: "closed";
|
|
1784
|
+
waiting_on_us: "waiting_on_us";
|
|
1785
|
+
waiting_on_user: "waiting_on_user";
|
|
1786
|
+
}>;
|
|
1787
|
+
category: z.ZodEnum<{
|
|
1788
|
+
billing: "billing";
|
|
1789
|
+
technical: "technical";
|
|
1790
|
+
general: "general";
|
|
1791
|
+
}>;
|
|
1792
|
+
summary: z.ZodString;
|
|
1793
|
+
closed_at: z.ZodOptional<z.ZodISODateTime>;
|
|
1794
|
+
date_created: z.ZodISODateTime;
|
|
1795
|
+
date_updated: z.ZodISODateTime;
|
|
1796
|
+
messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1797
|
+
id: z.ZodString;
|
|
1798
|
+
type: z.ZodEnum<{
|
|
1799
|
+
customer_reply: "customer_reply";
|
|
1800
|
+
agent_reply: "agent_reply";
|
|
1801
|
+
}>;
|
|
1802
|
+
body: z.ZodString;
|
|
1803
|
+
author_first_name: z.ZodOptional<z.ZodString>;
|
|
1804
|
+
author_last_name: z.ZodOptional<z.ZodString>;
|
|
1805
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1806
|
+
id: z.ZodString;
|
|
1807
|
+
filename: z.ZodString;
|
|
1808
|
+
content_type: z.ZodString;
|
|
1809
|
+
size: z.ZodInt;
|
|
1810
|
+
}, z.core.$strip>>>;
|
|
1811
|
+
date_created: z.ZodISODateTime;
|
|
1812
|
+
}, z.core.$strip>>>;
|
|
1813
|
+
}, z.core.$strip>;
|
|
1814
|
+
export declare const zGetTicketPath: z.ZodObject<{
|
|
1815
|
+
ticket_id: z.ZodString;
|
|
1971
1816
|
}, z.core.$strip>;
|
|
1972
1817
|
/**
|
|
1973
|
-
*
|
|
1818
|
+
* Ticket with messages (internal notes excluded).
|
|
1974
1819
|
*/
|
|
1975
|
-
export declare const
|
|
1976
|
-
|
|
1977
|
-
|
|
1978
|
-
|
|
1820
|
+
export declare const zGetTicketResponse: z.ZodObject<{
|
|
1821
|
+
id: z.ZodString;
|
|
1822
|
+
status: z.ZodEnum<{
|
|
1823
|
+
closed: "closed";
|
|
1824
|
+
waiting_on_us: "waiting_on_us";
|
|
1825
|
+
waiting_on_user: "waiting_on_user";
|
|
1826
|
+
}>;
|
|
1827
|
+
category: z.ZodEnum<{
|
|
1828
|
+
billing: "billing";
|
|
1829
|
+
technical: "technical";
|
|
1830
|
+
general: "general";
|
|
1831
|
+
}>;
|
|
1832
|
+
summary: z.ZodString;
|
|
1833
|
+
closed_at: z.ZodOptional<z.ZodISODateTime>;
|
|
1834
|
+
date_created: z.ZodISODateTime;
|
|
1835
|
+
date_updated: z.ZodISODateTime;
|
|
1836
|
+
messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1837
|
+
id: z.ZodString;
|
|
1838
|
+
type: z.ZodEnum<{
|
|
1839
|
+
customer_reply: "customer_reply";
|
|
1840
|
+
agent_reply: "agent_reply";
|
|
1841
|
+
}>;
|
|
1842
|
+
body: z.ZodString;
|
|
1843
|
+
author_first_name: z.ZodOptional<z.ZodString>;
|
|
1844
|
+
author_last_name: z.ZodOptional<z.ZodString>;
|
|
1845
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1846
|
+
id: z.ZodString;
|
|
1847
|
+
filename: z.ZodString;
|
|
1848
|
+
content_type: z.ZodString;
|
|
1849
|
+
size: z.ZodInt;
|
|
1850
|
+
}, z.core.$strip>>>;
|
|
1851
|
+
date_created: z.ZodISODateTime;
|
|
1852
|
+
}, z.core.$strip>>>;
|
|
1853
|
+
}, z.core.$strip>;
|
|
1854
|
+
export declare const zReplyTicketBody: z.ZodObject<{
|
|
1855
|
+
payload: z.ZodOptional<z.ZodString>;
|
|
1856
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1857
|
+
}, z.core.$strip>;
|
|
1858
|
+
export declare const zReplyTicketPath: z.ZodObject<{
|
|
1859
|
+
ticket_id: z.ZodString;
|
|
1979
1860
|
}, z.core.$strip>;
|
|
1980
1861
|
/**
|
|
1981
|
-
*
|
|
1862
|
+
* Reply appended.
|
|
1982
1863
|
*/
|
|
1983
|
-
export declare const
|
|
1984
|
-
|
|
1985
|
-
|
|
1986
|
-
|
|
1987
|
-
|
|
1988
|
-
|
|
1989
|
-
|
|
1990
|
-
|
|
1991
|
-
|
|
1992
|
-
|
|
1993
|
-
|
|
1994
|
-
|
|
1995
|
-
|
|
1996
|
-
|
|
1997
|
-
|
|
1864
|
+
export declare const zReplyTicketResponse: z.ZodObject<{
|
|
1865
|
+
id: z.ZodString;
|
|
1866
|
+
type: z.ZodEnum<{
|
|
1867
|
+
customer_reply: "customer_reply";
|
|
1868
|
+
agent_reply: "agent_reply";
|
|
1869
|
+
}>;
|
|
1870
|
+
body: z.ZodString;
|
|
1871
|
+
author_first_name: z.ZodOptional<z.ZodString>;
|
|
1872
|
+
author_last_name: z.ZodOptional<z.ZodString>;
|
|
1873
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1874
|
+
id: z.ZodString;
|
|
1875
|
+
filename: z.ZodString;
|
|
1876
|
+
content_type: z.ZodString;
|
|
1877
|
+
size: z.ZodInt;
|
|
1878
|
+
}, z.core.$strip>>>;
|
|
1879
|
+
date_created: z.ZodISODateTime;
|
|
1998
1880
|
}, z.core.$strip>;
|
|
1999
|
-
export declare const
|
|
2000
|
-
|
|
2001
|
-
|
|
1881
|
+
export declare const zGetTicketAttachmentPath: z.ZodObject<{
|
|
1882
|
+
ticket_id: z.ZodString;
|
|
1883
|
+
attachment_id: z.ZodString;
|
|
2002
1884
|
}, z.core.$strip>;
|
|
2003
1885
|
/**
|
|
2004
|
-
*
|
|
1886
|
+
* Attachment binary stream.
|
|
2005
1887
|
*/
|
|
2006
|
-
export declare const
|
|
2007
|
-
|
|
2008
|
-
|
|
1888
|
+
export declare const zGetTicketAttachmentResponse: z.ZodString;
|
|
1889
|
+
/**
|
|
1890
|
+
* List of repositories
|
|
1891
|
+
*/
|
|
1892
|
+
export declare const zListRepositoriesResponse: z.ZodArray<z.ZodObject<{
|
|
1893
|
+
name: z.ZodString;
|
|
1894
|
+
region: z.ZodString;
|
|
1895
|
+
uri: z.ZodString;
|
|
1896
|
+
}, z.core.$strip>>;
|
|
1897
|
+
export declare const zListTagsPath: z.ZodObject<{
|
|
1898
|
+
region: z.ZodString;
|
|
1899
|
+
repository: z.ZodString;
|
|
2009
1900
|
}, z.core.$strip>;
|
|
2010
1901
|
/**
|
|
2011
|
-
*
|
|
1902
|
+
* Repository with tags
|
|
2012
1903
|
*/
|
|
2013
|
-
export declare const
|
|
2014
|
-
|
|
2015
|
-
|
|
1904
|
+
export declare const zListTagsResponse: z.ZodObject<{
|
|
1905
|
+
name: z.ZodString;
|
|
1906
|
+
region: z.ZodString;
|
|
1907
|
+
uri: z.ZodString;
|
|
1908
|
+
tags: z.ZodArray<z.ZodObject<{
|
|
1909
|
+
name: z.ZodString;
|
|
1910
|
+
size: z.ZodNumber;
|
|
1911
|
+
mediaType: z.ZodOptional<z.ZodString>;
|
|
1912
|
+
platforms: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1913
|
+
}, z.core.$strip>>;
|
|
1914
|
+
totalSize: z.ZodNumber;
|
|
1915
|
+
}, z.core.$strip>;
|
|
1916
|
+
export declare const zDeleteTagPath: z.ZodObject<{
|
|
1917
|
+
region: z.ZodString;
|
|
1918
|
+
repository: z.ZodString;
|
|
1919
|
+
tag: z.ZodString;
|
|
1920
|
+
}, z.core.$strip>;
|
|
1921
|
+
export declare const zGetTagPath: z.ZodObject<{
|
|
1922
|
+
region: z.ZodString;
|
|
1923
|
+
repository: z.ZodString;
|
|
1924
|
+
tag: z.ZodString;
|
|
1925
|
+
}, z.core.$strip>;
|
|
1926
|
+
/**
|
|
1927
|
+
* Tag details
|
|
1928
|
+
*/
|
|
1929
|
+
export declare const zGetTagResponse: z.ZodObject<{
|
|
1930
|
+
name: z.ZodString;
|
|
1931
|
+
digest: z.ZodString;
|
|
1932
|
+
mediaType: z.ZodOptional<z.ZodString>;
|
|
1933
|
+
config: z.ZodOptional<z.ZodObject<{
|
|
1934
|
+
size: z.ZodNumber;
|
|
1935
|
+
}, z.core.$strip>>;
|
|
1936
|
+
layers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1937
|
+
digest: z.ZodOptional<z.ZodString>;
|
|
1938
|
+
size: z.ZodNumber;
|
|
1939
|
+
}, z.core.$strip>>>;
|
|
1940
|
+
manifests: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1941
|
+
digest: z.ZodString;
|
|
1942
|
+
platform: z.ZodOptional<z.ZodObject<{
|
|
1943
|
+
architecture: z.ZodString;
|
|
1944
|
+
os: z.ZodString;
|
|
1945
|
+
variant: z.ZodOptional<z.ZodString>;
|
|
1946
|
+
}, z.core.$strip>>;
|
|
1947
|
+
layers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1948
|
+
digest: z.ZodOptional<z.ZodString>;
|
|
1949
|
+
size: z.ZodNumber;
|
|
1950
|
+
}, z.core.$strip>>>;
|
|
1951
|
+
size: z.ZodOptional<z.ZodNumber>;
|
|
1952
|
+
}, z.core.$strip>>>;
|
|
1953
|
+
size: z.ZodNumber;
|
|
1954
|
+
region: z.ZodString;
|
|
1955
|
+
repository: z.ZodString;
|
|
1956
|
+
uri: z.ZodString;
|
|
1957
|
+
}, z.core.$strip>;
|
|
1958
|
+
/**
|
|
1959
|
+
* Returns a single object containing organization details.
|
|
1960
|
+
*/
|
|
1961
|
+
export declare const zGetOrganizationResponse: z.ZodObject<{
|
|
1962
|
+
id: z.ZodUUID;
|
|
1963
|
+
name: z.ZodOptional<z.ZodString>;
|
|
1964
|
+
type: z.ZodEnum<{
|
|
1965
|
+
business: "business";
|
|
1966
|
+
personal: "personal";
|
|
1967
|
+
}>;
|
|
1968
|
+
date_created: z.ZodISODateTime;
|
|
1969
|
+
quota: z.ZodObject<{
|
|
1970
|
+
basic_clusters_max: z.ZodInt;
|
|
1971
|
+
basic_clusters_available: z.ZodInt;
|
|
1972
|
+
pro_clusters_max: z.ZodInt;
|
|
1973
|
+
pro_clusters_available: z.ZodInt;
|
|
1974
|
+
enterprise_clusters_max: z.ZodInt;
|
|
1975
|
+
enterprise_clusters_available: z.ZodInt;
|
|
1976
|
+
fleets_max: z.ZodInt;
|
|
1977
|
+
cluster_tiers: z.ZodArray<z.ZodString>;
|
|
1978
|
+
regions: z.ZodArray<z.ZodString>;
|
|
1979
|
+
versions: z.ZodArray<z.ZodObject<{
|
|
1980
|
+
id: z.ZodString;
|
|
1981
|
+
label: z.ZodString;
|
|
1982
|
+
}, z.core.$strip>>;
|
|
1983
|
+
cfcr_storage_gb: z.ZodInt;
|
|
1984
|
+
}, z.core.$strip>;
|
|
1985
|
+
status: z.ZodEnum<{
|
|
1986
|
+
active: "active";
|
|
1987
|
+
closed: "closed";
|
|
1988
|
+
suspended: "suspended";
|
|
1989
|
+
}>;
|
|
1990
|
+
verification: z.ZodEnum<{
|
|
1991
|
+
none: "none";
|
|
1992
|
+
submitted: "submitted";
|
|
1993
|
+
verified: "verified";
|
|
1994
|
+
}>;
|
|
1995
|
+
}, z.core.$strip>;
|
|
1996
|
+
export declare const zCreateOrganizationBody: z.ZodObject<{
|
|
1997
|
+
type: z.ZodEnum<{
|
|
1998
|
+
business: "business";
|
|
1999
|
+
personal: "personal";
|
|
2000
|
+
}>;
|
|
2001
|
+
email: z.ZodEmail;
|
|
2002
|
+
first_name: z.ZodString;
|
|
2003
|
+
last_name: z.ZodString;
|
|
2004
|
+
company_name: z.ZodString;
|
|
2005
|
+
password: z.ZodString;
|
|
2006
|
+
}, z.core.$strip>;
|
|
2007
|
+
/**
|
|
2008
|
+
* Organization signup accepted. Returns the generated organization id immediately; provisioning (billing, Keycloak realm, user) continues asynchronously in the background.
|
|
2009
|
+
*
|
|
2010
|
+
*/
|
|
2011
|
+
export declare const zCreateOrganizationResponse: z.ZodObject<{
|
|
2012
|
+
id: z.ZodString;
|
|
2013
|
+
}, z.core.$strip>;
|
|
2014
|
+
/**
|
|
2015
|
+
* JSON-RPC 2.0 request payload
|
|
2016
|
+
*/
|
|
2017
|
+
export declare const zPostMcpBody: z.ZodObject<{
|
|
2018
|
+
jsonrpc: z.ZodOptional<z.ZodString>;
|
|
2019
|
+
method: z.ZodOptional<z.ZodString>;
|
|
2020
|
+
id: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>;
|
|
2021
|
+
params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2022
|
+
}, z.core.$strip>;
|
|
2023
|
+
/**
|
|
2024
|
+
* JSON-RPC 2.0 success or error response
|
|
2025
|
+
*/
|
|
2026
|
+
export declare const zPostMcpResponse: z.ZodObject<{
|
|
2027
|
+
jsonrpc: z.ZodOptional<z.ZodString>;
|
|
2028
|
+
id: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>;
|
|
2029
|
+
result: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2030
|
+
error: z.ZodOptional<z.ZodObject<{
|
|
2031
|
+
code: z.ZodOptional<z.ZodInt>;
|
|
2032
|
+
message: z.ZodOptional<z.ZodString>;
|
|
2033
|
+
}, z.core.$strip>>;
|
|
2034
|
+
}, z.core.$strip>;
|
|
2035
|
+
/**
|
|
2036
|
+
* An array of chart listings in the marketplace.
|
|
2037
|
+
*/
|
|
2038
|
+
export declare const zListMarketplaceChartsResponse: z.ZodArray<z.ZodObject<{
|
|
2039
|
+
name: z.ZodString;
|
|
2040
|
+
versions: z.ZodArray<z.ZodString>;
|
|
2041
|
+
version_channels: z.ZodArray<z.ZodString>;
|
|
2042
|
+
latestVersion: z.ZodString;
|
|
2043
|
+
metadata: z.ZodOptional<z.ZodObject<{
|
|
2044
|
+
name: z.ZodString;
|
|
2045
|
+
version: z.ZodString;
|
|
2046
|
+
description: z.ZodOptional<z.ZodString>;
|
|
2047
|
+
appVersion: z.ZodOptional<z.ZodString>;
|
|
2048
|
+
apiVersion: z.ZodOptional<z.ZodString>;
|
|
2049
|
+
keywords: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2050
|
+
home: z.ZodOptional<z.ZodString>;
|
|
2051
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
2052
|
+
sources: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2053
|
+
maintainers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2054
|
+
name: z.ZodString;
|
|
2055
|
+
email: z.ZodOptional<z.ZodString>;
|
|
2056
|
+
}, z.core.$strip>>>;
|
|
2057
|
+
}, z.core.$strip>>;
|
|
2058
|
+
}, z.core.$strip>>;
|
|
2059
|
+
export declare const zGetMarketplaceChartFilesPath: z.ZodObject<{
|
|
2060
|
+
chart_name: z.ZodString;
|
|
2061
|
+
version_channel: z.ZodString;
|
|
2062
|
+
}, z.core.$strip>;
|
|
2063
|
+
/**
|
|
2064
|
+
* Returns an object containing the chart files for the latest matching version.
|
|
2065
|
+
*/
|
|
2066
|
+
export declare const zGetMarketplaceChartFilesResponse: z.ZodObject<{
|
|
2067
|
+
chartYaml: z.ZodOptional<z.ZodString>;
|
|
2068
|
+
valuesYaml: z.ZodOptional<z.ZodString>;
|
|
2069
|
+
valuesSchemaJson: z.ZodOptional<z.ZodString>;
|
|
2070
|
+
}, z.core.$strip>;
|
|
2071
|
+
/**
|
|
2072
|
+
* An array of invites
|
|
2073
|
+
*/
|
|
2074
|
+
export declare const zListInvitesResponse: z.ZodArray<z.ZodObject<{
|
|
2075
|
+
id: z.ZodOptional<z.ZodString>;
|
|
2076
|
+
organization_id: z.ZodOptional<z.ZodUUID>;
|
|
2077
|
+
date_created: z.ZodISODateTime;
|
|
2078
|
+
email: z.ZodOptional<z.ZodEmail>;
|
|
2079
|
+
code: z.ZodOptional<z.ZodString>;
|
|
2080
|
+
role: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
2081
|
+
Administrator: "Administrator";
|
|
2082
|
+
User: "User";
|
|
2083
|
+
}>>>;
|
|
2084
|
+
}, z.core.$strip>>;
|
|
2085
|
+
export declare const zCreateInviteBody: z.ZodObject<{
|
|
2086
|
+
email: z.ZodEmail;
|
|
2087
|
+
role: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
2088
|
+
Administrator: "Administrator";
|
|
2089
|
+
User: "User";
|
|
2090
|
+
}>>>;
|
|
2091
|
+
}, z.core.$strip>;
|
|
2092
|
+
/**
|
|
2093
|
+
* Successfully created. Returns created invite details.
|
|
2094
|
+
*/
|
|
2095
|
+
export declare const zCreateInviteResponse: z.ZodObject<{
|
|
2096
|
+
id: z.ZodOptional<z.ZodString>;
|
|
2097
|
+
organization_id: z.ZodOptional<z.ZodUUID>;
|
|
2098
|
+
date_created: z.ZodISODateTime;
|
|
2099
|
+
email: z.ZodOptional<z.ZodEmail>;
|
|
2100
|
+
code: z.ZodOptional<z.ZodString>;
|
|
2101
|
+
role: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
2102
|
+
Administrator: "Administrator";
|
|
2103
|
+
User: "User";
|
|
2104
|
+
}>>>;
|
|
2105
|
+
}, z.core.$strip>;
|
|
2106
|
+
export declare const zGetInvitePath: z.ZodObject<{
|
|
2107
|
+
code: z.ZodString;
|
|
2108
|
+
}, z.core.$strip>;
|
|
2109
|
+
/**
|
|
2110
|
+
* The invitation code is valid. Returns the invited email and organization.
|
|
2111
|
+
*/
|
|
2112
|
+
export declare const zGetInviteResponse: z.ZodObject<{
|
|
2113
|
+
email: z.ZodOptional<z.ZodEmail>;
|
|
2114
|
+
organization_id: z.ZodOptional<z.ZodString>;
|
|
2115
|
+
}, z.core.$strip>;
|
|
2116
|
+
export declare const zDeleteInvitePath: z.ZodObject<{
|
|
2117
|
+
email: z.ZodEmail;
|
|
2118
|
+
}, z.core.$strip>;
|
|
2119
|
+
export declare const zQueryClusterPath: z.ZodObject<{
|
|
2120
|
+
cluster_id: z.ZodString;
|
|
2121
|
+
}, z.core.$strip>;
|
|
2122
|
+
export declare const zListFleetsPath: z.ZodObject<{
|
|
2123
|
+
cluster_id: z.ZodString;
|
|
2124
|
+
}, z.core.$strip>;
|
|
2125
|
+
/**
|
|
2126
|
+
* An array of fleets
|
|
2127
|
+
*/
|
|
2128
|
+
export declare const zListFleetsResponse: z.ZodArray<z.ZodObject<{
|
|
2129
|
+
limits: z.ZodOptional<z.ZodObject<{
|
|
2130
|
+
cpu: z.ZodOptional<z.ZodInt>;
|
|
2016
2131
|
}, z.core.$strip>>;
|
|
2017
2132
|
gcp: z.ZodOptional<z.ZodObject<{
|
|
2018
2133
|
enabled: z.ZodBoolean;
|
|
@@ -2026,16 +2141,16 @@ export declare const zListFleetsResponse: z.ZodArray<z.ZodObject<{
|
|
|
2026
2141
|
enabled: z.ZodBoolean;
|
|
2027
2142
|
controllerRoleArn: z.ZodOptional<z.ZodString>;
|
|
2028
2143
|
}, z.core.$strip>>;
|
|
2029
|
-
constraints: z.
|
|
2030
|
-
'karpenter.sh/capacity-type': z.ZodDefault<z.
|
|
2144
|
+
constraints: z.ZodDefault<z.ZodObject<{
|
|
2145
|
+
'karpenter.sh/capacity-type': z.ZodDefault<z.ZodArray<z.ZodEnum<{
|
|
2031
2146
|
"on-demand": "on-demand";
|
|
2032
2147
|
spot: "spot";
|
|
2033
|
-
}
|
|
2034
|
-
'kubernetes.io/arch': z.ZodDefault<z.
|
|
2148
|
+
}>>>;
|
|
2149
|
+
'kubernetes.io/arch': z.ZodDefault<z.ZodArray<z.ZodEnum<{
|
|
2035
2150
|
amd64: "amd64";
|
|
2036
2151
|
arm64: "arm64";
|
|
2037
|
-
}
|
|
2038
|
-
'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2152
|
+
}>>>;
|
|
2153
|
+
'cfke.io/instance-family': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2039
2154
|
p3: "p3";
|
|
2040
2155
|
cx: "cx";
|
|
2041
2156
|
h1: "h1";
|
|
@@ -2194,8 +2309,8 @@ export declare const zListFleetsResponse: z.ZodArray<z.ZodObject<{
|
|
|
2194
2309
|
x8g: "x8g";
|
|
2195
2310
|
z1d: "z1d";
|
|
2196
2311
|
z3: "z3";
|
|
2197
|
-
}
|
|
2198
|
-
'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2312
|
+
}>>>>;
|
|
2313
|
+
'topology.kubernetes.io/region': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2199
2314
|
"africa-south1": "africa-south1";
|
|
2200
2315
|
"ap-northeast-1": "ap-northeast-1";
|
|
2201
2316
|
"ap-northeast-2": "ap-northeast-2";
|
|
@@ -2260,13 +2375,17 @@ export declare const zListFleetsResponse: z.ZodArray<z.ZodObject<{
|
|
|
2260
2375
|
"us-west2": "us-west2";
|
|
2261
2376
|
"us-west3": "us-west3";
|
|
2262
2377
|
"us-west4": "us-west4";
|
|
2263
|
-
}
|
|
2378
|
+
}>>>>;
|
|
2264
2379
|
}, z.core.$strip>>;
|
|
2265
2380
|
scalingProfile: z.ZodDefault<z.ZodEnum<{
|
|
2266
2381
|
aggressive: "aggressive";
|
|
2267
2382
|
conservative: "conservative";
|
|
2268
2383
|
}>>;
|
|
2269
2384
|
id: z.ZodString;
|
|
2385
|
+
ready: z.ZodBoolean;
|
|
2386
|
+
status_message: z.ZodOptional<z.ZodString>;
|
|
2387
|
+
created_at: z.ZodString;
|
|
2388
|
+
updated_at: z.ZodString;
|
|
2270
2389
|
}, z.core.$strip>>;
|
|
2271
2390
|
export declare const zCreateFleetBody: z.ZodObject<{
|
|
2272
2391
|
limits: z.ZodOptional<z.ZodObject<{
|
|
@@ -2284,7 +2403,7 @@ export declare const zCreateFleetBody: z.ZodObject<{
|
|
|
2284
2403
|
enabled: z.ZodBoolean;
|
|
2285
2404
|
controllerRoleArn: z.ZodOptional<z.ZodString>;
|
|
2286
2405
|
}, z.core.$strip>>;
|
|
2287
|
-
constraints: z.ZodOptional<z.ZodObject<{
|
|
2406
|
+
constraints: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
2288
2407
|
'karpenter.sh/capacity-type': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2289
2408
|
"on-demand": "on-demand";
|
|
2290
2409
|
spot: "spot";
|
|
@@ -2293,7 +2412,7 @@ export declare const zCreateFleetBody: z.ZodObject<{
|
|
|
2293
2412
|
amd64: "amd64";
|
|
2294
2413
|
arm64: "arm64";
|
|
2295
2414
|
}>>>>;
|
|
2296
|
-
'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2415
|
+
'cfke.io/instance-family': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2297
2416
|
p3: "p3";
|
|
2298
2417
|
cx: "cx";
|
|
2299
2418
|
h1: "h1";
|
|
@@ -2452,8 +2571,8 @@ export declare const zCreateFleetBody: z.ZodObject<{
|
|
|
2452
2571
|
x8g: "x8g";
|
|
2453
2572
|
z1d: "z1d";
|
|
2454
2573
|
z3: "z3";
|
|
2455
|
-
}
|
|
2456
|
-
'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2574
|
+
}>>>>;
|
|
2575
|
+
'topology.kubernetes.io/region': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2457
2576
|
"africa-south1": "africa-south1";
|
|
2458
2577
|
"ap-northeast-1": "ap-northeast-1";
|
|
2459
2578
|
"ap-northeast-2": "ap-northeast-2";
|
|
@@ -2518,8 +2637,8 @@ export declare const zCreateFleetBody: z.ZodObject<{
|
|
|
2518
2637
|
"us-west2": "us-west2";
|
|
2519
2638
|
"us-west3": "us-west3";
|
|
2520
2639
|
"us-west4": "us-west4";
|
|
2521
|
-
}
|
|
2522
|
-
}, z.core.$strip
|
|
2640
|
+
}>>>>;
|
|
2641
|
+
}, z.core.$strip>>>;
|
|
2523
2642
|
scalingProfile: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
2524
2643
|
aggressive: "aggressive";
|
|
2525
2644
|
conservative: "conservative";
|
|
@@ -2564,16 +2683,16 @@ export declare const zGetFleetResponse: z.ZodObject<{
|
|
|
2564
2683
|
enabled: z.ZodBoolean;
|
|
2565
2684
|
controllerRoleArn: z.ZodOptional<z.ZodString>;
|
|
2566
2685
|
}, z.core.$strip>>;
|
|
2567
|
-
constraints: z.
|
|
2568
|
-
'karpenter.sh/capacity-type': z.ZodDefault<z.
|
|
2686
|
+
constraints: z.ZodDefault<z.ZodObject<{
|
|
2687
|
+
'karpenter.sh/capacity-type': z.ZodDefault<z.ZodArray<z.ZodEnum<{
|
|
2569
2688
|
"on-demand": "on-demand";
|
|
2570
2689
|
spot: "spot";
|
|
2571
|
-
}
|
|
2572
|
-
'kubernetes.io/arch': z.ZodDefault<z.
|
|
2690
|
+
}>>>;
|
|
2691
|
+
'kubernetes.io/arch': z.ZodDefault<z.ZodArray<z.ZodEnum<{
|
|
2573
2692
|
amd64: "amd64";
|
|
2574
2693
|
arm64: "arm64";
|
|
2575
|
-
}
|
|
2576
|
-
'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2694
|
+
}>>>;
|
|
2695
|
+
'cfke.io/instance-family': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2577
2696
|
p3: "p3";
|
|
2578
2697
|
cx: "cx";
|
|
2579
2698
|
h1: "h1";
|
|
@@ -2732,8 +2851,8 @@ export declare const zGetFleetResponse: z.ZodObject<{
|
|
|
2732
2851
|
x8g: "x8g";
|
|
2733
2852
|
z1d: "z1d";
|
|
2734
2853
|
z3: "z3";
|
|
2735
|
-
}
|
|
2736
|
-
'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2854
|
+
}>>>>;
|
|
2855
|
+
'topology.kubernetes.io/region': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2737
2856
|
"africa-south1": "africa-south1";
|
|
2738
2857
|
"ap-northeast-1": "ap-northeast-1";
|
|
2739
2858
|
"ap-northeast-2": "ap-northeast-2";
|
|
@@ -2798,13 +2917,17 @@ export declare const zGetFleetResponse: z.ZodObject<{
|
|
|
2798
2917
|
"us-west2": "us-west2";
|
|
2799
2918
|
"us-west3": "us-west3";
|
|
2800
2919
|
"us-west4": "us-west4";
|
|
2801
|
-
}
|
|
2920
|
+
}>>>>;
|
|
2802
2921
|
}, z.core.$strip>>;
|
|
2803
2922
|
scalingProfile: z.ZodDefault<z.ZodEnum<{
|
|
2804
2923
|
aggressive: "aggressive";
|
|
2805
2924
|
conservative: "conservative";
|
|
2806
2925
|
}>>;
|
|
2807
2926
|
id: z.ZodString;
|
|
2927
|
+
ready: z.ZodBoolean;
|
|
2928
|
+
status_message: z.ZodOptional<z.ZodString>;
|
|
2929
|
+
created_at: z.ZodString;
|
|
2930
|
+
updated_at: z.ZodString;
|
|
2808
2931
|
}, z.core.$strip>;
|
|
2809
2932
|
export declare const zUpdateFleetBody: z.ZodObject<{
|
|
2810
2933
|
limits: z.ZodOptional<z.ZodObject<{
|
|
@@ -2822,16 +2945,16 @@ export declare const zUpdateFleetBody: z.ZodObject<{
|
|
|
2822
2945
|
enabled: z.ZodBoolean;
|
|
2823
2946
|
controllerRoleArn: z.ZodOptional<z.ZodString>;
|
|
2824
2947
|
}, z.core.$strip>>;
|
|
2825
|
-
constraints: z.ZodOptional<z.ZodObject<{
|
|
2826
|
-
'karpenter.sh/capacity-type': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2948
|
+
constraints: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
2949
|
+
'karpenter.sh/capacity-type': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2827
2950
|
"on-demand": "on-demand";
|
|
2828
2951
|
spot: "spot";
|
|
2829
|
-
}
|
|
2830
|
-
'kubernetes.io/arch': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2952
|
+
}>>>>;
|
|
2953
|
+
'kubernetes.io/arch': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2831
2954
|
amd64: "amd64";
|
|
2832
2955
|
arm64: "arm64";
|
|
2833
|
-
}
|
|
2834
|
-
'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2956
|
+
}>>>>;
|
|
2957
|
+
'cfke.io/instance-family': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2835
2958
|
p3: "p3";
|
|
2836
2959
|
cx: "cx";
|
|
2837
2960
|
h1: "h1";
|
|
@@ -2990,8 +3113,8 @@ export declare const zUpdateFleetBody: z.ZodObject<{
|
|
|
2990
3113
|
x8g: "x8g";
|
|
2991
3114
|
z1d: "z1d";
|
|
2992
3115
|
z3: "z3";
|
|
2993
|
-
}
|
|
2994
|
-
'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
3116
|
+
}>>>>;
|
|
3117
|
+
'topology.kubernetes.io/region': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2995
3118
|
"africa-south1": "africa-south1";
|
|
2996
3119
|
"ap-northeast-1": "ap-northeast-1";
|
|
2997
3120
|
"ap-northeast-2": "ap-northeast-2";
|
|
@@ -3056,12 +3179,12 @@ export declare const zUpdateFleetBody: z.ZodObject<{
|
|
|
3056
3179
|
"us-west2": "us-west2";
|
|
3057
3180
|
"us-west3": "us-west3";
|
|
3058
3181
|
"us-west4": "us-west4";
|
|
3059
|
-
}
|
|
3060
|
-
}, z.core.$strip
|
|
3061
|
-
scalingProfile: z.ZodEnum<{
|
|
3182
|
+
}>>>>;
|
|
3183
|
+
}, z.core.$strip>>>;
|
|
3184
|
+
scalingProfile: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
3062
3185
|
aggressive: "aggressive";
|
|
3063
3186
|
conservative: "conservative";
|
|
3064
|
-
}
|
|
3187
|
+
}>>>;
|
|
3065
3188
|
}, z.core.$strip>;
|
|
3066
3189
|
export declare const zUpdateFleetPath: z.ZodObject<{
|
|
3067
3190
|
cluster_id: z.ZodString;
|
|
@@ -3071,24 +3194,112 @@ export declare const zUpdateFleetPath: z.ZodObject<{
|
|
|
3071
3194
|
* Successfully updated.
|
|
3072
3195
|
*/
|
|
3073
3196
|
export declare const zUpdateFleetResponse: z.ZodString;
|
|
3074
|
-
export declare const
|
|
3197
|
+
export declare const zListChartsPath: z.ZodObject<{
|
|
3198
|
+
cluster_id: z.ZodString;
|
|
3199
|
+
}, z.core.$strip>;
|
|
3200
|
+
/**
|
|
3201
|
+
* An array of charts
|
|
3202
|
+
*/
|
|
3203
|
+
export declare const zListChartsResponse: z.ZodArray<z.ZodObject<{
|
|
3204
|
+
values: z.ZodString;
|
|
3205
|
+
version_channel: z.ZodString;
|
|
3206
|
+
name: z.ZodString;
|
|
3207
|
+
namespace: z.ZodString;
|
|
3208
|
+
chart: z.ZodString;
|
|
3209
|
+
status: z.ZodString;
|
|
3210
|
+
version_current: z.ZodString;
|
|
3211
|
+
created_at: z.ZodString;
|
|
3212
|
+
updated_at: z.ZodString;
|
|
3213
|
+
ready: z.ZodBoolean;
|
|
3214
|
+
}, z.core.$strip>>;
|
|
3215
|
+
export declare const zCreateChartBody: z.ZodObject<{
|
|
3216
|
+
values: z.ZodString;
|
|
3217
|
+
version_channel: z.ZodString;
|
|
3218
|
+
name: z.ZodString;
|
|
3219
|
+
namespace: z.ZodString;
|
|
3220
|
+
chart: z.ZodString;
|
|
3221
|
+
}, z.core.$strip>;
|
|
3222
|
+
export declare const zCreateChartPath: z.ZodObject<{
|
|
3223
|
+
cluster_id: z.ZodString;
|
|
3224
|
+
}, z.core.$strip>;
|
|
3225
|
+
/**
|
|
3226
|
+
* Successfully created. Returns created Chart ID.
|
|
3227
|
+
*/
|
|
3228
|
+
export declare const zCreateChartResponse: z.ZodString;
|
|
3229
|
+
export declare const zDeleteChartPath: z.ZodObject<{
|
|
3230
|
+
cluster_id: z.ZodString;
|
|
3231
|
+
chart_name: z.ZodString;
|
|
3232
|
+
}, z.core.$strip>;
|
|
3233
|
+
/**
|
|
3234
|
+
* Successfully deleted.
|
|
3235
|
+
*/
|
|
3236
|
+
export declare const zDeleteChartResponse: z.ZodString;
|
|
3237
|
+
export declare const zGetChartPath: z.ZodObject<{
|
|
3238
|
+
cluster_id: z.ZodString;
|
|
3239
|
+
chart_name: z.ZodString;
|
|
3240
|
+
}, z.core.$strip>;
|
|
3241
|
+
/**
|
|
3242
|
+
* Returns a single object containing chart details.
|
|
3243
|
+
*/
|
|
3244
|
+
export declare const zGetChartResponse: z.ZodObject<{
|
|
3245
|
+
values: z.ZodString;
|
|
3246
|
+
version_channel: z.ZodString;
|
|
3247
|
+
name: z.ZodString;
|
|
3248
|
+
namespace: z.ZodString;
|
|
3249
|
+
chart: z.ZodString;
|
|
3250
|
+
status: z.ZodString;
|
|
3251
|
+
version_current: z.ZodString;
|
|
3252
|
+
created_at: z.ZodString;
|
|
3253
|
+
updated_at: z.ZodString;
|
|
3254
|
+
ready: z.ZodBoolean;
|
|
3255
|
+
}, z.core.$strip>;
|
|
3256
|
+
export declare const zUpdateChartBody: z.ZodObject<{
|
|
3257
|
+
values: z.ZodString;
|
|
3258
|
+
version_channel: z.ZodString;
|
|
3259
|
+
}, z.core.$strip>;
|
|
3260
|
+
export declare const zUpdateChartPath: z.ZodObject<{
|
|
3075
3261
|
cluster_id: z.ZodString;
|
|
3262
|
+
chart_name: z.ZodString;
|
|
3076
3263
|
}, z.core.$strip>;
|
|
3264
|
+
/**
|
|
3265
|
+
* Successfully updated.
|
|
3266
|
+
*/
|
|
3267
|
+
export declare const zUpdateChartResponse: z.ZodString;
|
|
3077
3268
|
/**
|
|
3078
3269
|
* An array of clusters
|
|
3079
3270
|
*/
|
|
3080
3271
|
export declare const zListClustersResponse: z.ZodArray<z.ZodObject<{
|
|
3081
3272
|
name: z.ZodString;
|
|
3082
|
-
tier: z.ZodEnum<{
|
|
3273
|
+
tier: z.ZodDefault<z.ZodEnum<{
|
|
3083
3274
|
basic: "basic";
|
|
3275
|
+
enterprise: "enterprise";
|
|
3084
3276
|
pro: "pro";
|
|
3085
|
-
}
|
|
3277
|
+
}>>;
|
|
3278
|
+
version_channel: z.ZodDefault<z.ZodString>;
|
|
3279
|
+
release_channel: z.ZodDefault<z.ZodEnum<{
|
|
3280
|
+
stable: "stable";
|
|
3281
|
+
rapid: "rapid";
|
|
3282
|
+
extended: "extended";
|
|
3283
|
+
}>>;
|
|
3284
|
+
features: z.ZodDefault<z.ZodObject<{
|
|
3285
|
+
gpu_sharing_strategy: z.ZodDefault<z.ZodEnum<{
|
|
3286
|
+
none: "none";
|
|
3287
|
+
mps: "mps";
|
|
3288
|
+
time_slicing: "time_slicing";
|
|
3289
|
+
}>>;
|
|
3290
|
+
gpu_max_shared_clients_per_gpu: z.ZodDefault<z.ZodInt>;
|
|
3291
|
+
cilium_socket_lb_host_namespace_only: z.ZodBoolean;
|
|
3292
|
+
}, z.core.$strip>>;
|
|
3086
3293
|
region: z.ZodString;
|
|
3294
|
+
networking: z.ZodDefault<z.ZodObject<{
|
|
3295
|
+
pod_cidr: z.ZodDefault<z.ZodString>;
|
|
3296
|
+
service_cidr: z.ZodDefault<z.ZodString>;
|
|
3297
|
+
dual_stack: z.ZodBoolean;
|
|
3298
|
+
pod_cidr_v6: z.ZodDefault<z.ZodString>;
|
|
3299
|
+
service_cidr_v6: z.ZodDefault<z.ZodString>;
|
|
3300
|
+
}, z.core.$strip>>;
|
|
3087
3301
|
id: z.ZodUUID;
|
|
3088
3302
|
status: z.ZodEnum<{
|
|
3089
|
-
deleted: "deleted";
|
|
3090
|
-
failed: "failed";
|
|
3091
|
-
active: "active";
|
|
3092
3303
|
disabled: "disabled";
|
|
3093
3304
|
creating: "creating";
|
|
3094
3305
|
deployed: "deployed";
|
|
@@ -3104,17 +3315,38 @@ export declare const zListClustersResponse: z.ZodArray<z.ZodObject<{
|
|
|
3104
3315
|
version_current: z.ZodOptional<z.ZodString>;
|
|
3105
3316
|
created_at: z.ZodOptional<z.ZodString>;
|
|
3106
3317
|
updated_at: z.ZodOptional<z.ZodString>;
|
|
3107
|
-
ready: z.
|
|
3108
|
-
version_channel: z.ZodOptional<z.ZodString>;
|
|
3318
|
+
ready: z.ZodBoolean;
|
|
3109
3319
|
}, z.core.$strip>>;
|
|
3110
3320
|
export declare const zCreateClusterBody: z.ZodObject<{
|
|
3111
3321
|
name: z.ZodString;
|
|
3112
|
-
tier: z.ZodEnum<{
|
|
3322
|
+
tier: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
3113
3323
|
basic: "basic";
|
|
3324
|
+
enterprise: "enterprise";
|
|
3114
3325
|
pro: "pro";
|
|
3115
|
-
}
|
|
3116
|
-
region: z.ZodString;
|
|
3326
|
+
}>>>;
|
|
3117
3327
|
version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
3328
|
+
release_channel: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
3329
|
+
stable: "stable";
|
|
3330
|
+
rapid: "rapid";
|
|
3331
|
+
extended: "extended";
|
|
3332
|
+
}>>>;
|
|
3333
|
+
features: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
3334
|
+
gpu_sharing_strategy: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
3335
|
+
none: "none";
|
|
3336
|
+
mps: "mps";
|
|
3337
|
+
time_slicing: "time_slicing";
|
|
3338
|
+
}>>>;
|
|
3339
|
+
gpu_max_shared_clients_per_gpu: z.ZodDefault<z.ZodOptional<z.ZodInt>>;
|
|
3340
|
+
cilium_socket_lb_host_namespace_only: z.ZodOptional<z.ZodBoolean>;
|
|
3341
|
+
}, z.core.$strip>>>;
|
|
3342
|
+
region: z.ZodString;
|
|
3343
|
+
networking: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
3344
|
+
pod_cidr: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
3345
|
+
service_cidr: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
3346
|
+
dual_stack: z.ZodOptional<z.ZodBoolean>;
|
|
3347
|
+
pod_cidr_v6: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
3348
|
+
service_cidr_v6: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
3349
|
+
}, z.core.$strip>>>;
|
|
3118
3350
|
}, z.core.$strip>;
|
|
3119
3351
|
/**
|
|
3120
3352
|
* Successfully created. Returns created Cluster ID.
|
|
@@ -3135,16 +3367,36 @@ export declare const zGetClusterPath: z.ZodObject<{
|
|
|
3135
3367
|
*/
|
|
3136
3368
|
export declare const zGetClusterResponse: z.ZodObject<{
|
|
3137
3369
|
name: z.ZodString;
|
|
3138
|
-
tier: z.ZodEnum<{
|
|
3370
|
+
tier: z.ZodDefault<z.ZodEnum<{
|
|
3139
3371
|
basic: "basic";
|
|
3372
|
+
enterprise: "enterprise";
|
|
3140
3373
|
pro: "pro";
|
|
3141
|
-
}
|
|
3374
|
+
}>>;
|
|
3375
|
+
version_channel: z.ZodDefault<z.ZodString>;
|
|
3376
|
+
release_channel: z.ZodDefault<z.ZodEnum<{
|
|
3377
|
+
stable: "stable";
|
|
3378
|
+
rapid: "rapid";
|
|
3379
|
+
extended: "extended";
|
|
3380
|
+
}>>;
|
|
3381
|
+
features: z.ZodDefault<z.ZodObject<{
|
|
3382
|
+
gpu_sharing_strategy: z.ZodDefault<z.ZodEnum<{
|
|
3383
|
+
none: "none";
|
|
3384
|
+
mps: "mps";
|
|
3385
|
+
time_slicing: "time_slicing";
|
|
3386
|
+
}>>;
|
|
3387
|
+
gpu_max_shared_clients_per_gpu: z.ZodDefault<z.ZodInt>;
|
|
3388
|
+
cilium_socket_lb_host_namespace_only: z.ZodBoolean;
|
|
3389
|
+
}, z.core.$strip>>;
|
|
3142
3390
|
region: z.ZodString;
|
|
3391
|
+
networking: z.ZodDefault<z.ZodObject<{
|
|
3392
|
+
pod_cidr: z.ZodDefault<z.ZodString>;
|
|
3393
|
+
service_cidr: z.ZodDefault<z.ZodString>;
|
|
3394
|
+
dual_stack: z.ZodBoolean;
|
|
3395
|
+
pod_cidr_v6: z.ZodDefault<z.ZodString>;
|
|
3396
|
+
service_cidr_v6: z.ZodDefault<z.ZodString>;
|
|
3397
|
+
}, z.core.$strip>>;
|
|
3143
3398
|
id: z.ZodUUID;
|
|
3144
3399
|
status: z.ZodEnum<{
|
|
3145
|
-
deleted: "deleted";
|
|
3146
|
-
failed: "failed";
|
|
3147
|
-
active: "active";
|
|
3148
3400
|
disabled: "disabled";
|
|
3149
3401
|
creating: "creating";
|
|
3150
3402
|
deployed: "deployed";
|
|
@@ -3160,16 +3412,30 @@ export declare const zGetClusterResponse: z.ZodObject<{
|
|
|
3160
3412
|
version_current: z.ZodOptional<z.ZodString>;
|
|
3161
3413
|
created_at: z.ZodOptional<z.ZodString>;
|
|
3162
3414
|
updated_at: z.ZodOptional<z.ZodString>;
|
|
3163
|
-
ready: z.
|
|
3164
|
-
version_channel: z.ZodOptional<z.ZodString>;
|
|
3415
|
+
ready: z.ZodBoolean;
|
|
3165
3416
|
}, z.core.$strip>;
|
|
3166
3417
|
export declare const zUpdateClusterBody: z.ZodObject<{
|
|
3167
|
-
name: z.
|
|
3168
|
-
tier: z.ZodEnum<{
|
|
3418
|
+
name: z.ZodString;
|
|
3419
|
+
tier: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
3169
3420
|
basic: "basic";
|
|
3421
|
+
enterprise: "enterprise";
|
|
3170
3422
|
pro: "pro";
|
|
3171
|
-
}
|
|
3172
|
-
version_channel: z.ZodOptional<z.ZodString
|
|
3423
|
+
}>>>;
|
|
3424
|
+
version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
3425
|
+
release_channel: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
3426
|
+
stable: "stable";
|
|
3427
|
+
rapid: "rapid";
|
|
3428
|
+
extended: "extended";
|
|
3429
|
+
}>>>;
|
|
3430
|
+
features: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
3431
|
+
gpu_sharing_strategy: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
3432
|
+
none: "none";
|
|
3433
|
+
mps: "mps";
|
|
3434
|
+
time_slicing: "time_slicing";
|
|
3435
|
+
}>>>;
|
|
3436
|
+
gpu_max_shared_clients_per_gpu: z.ZodDefault<z.ZodOptional<z.ZodInt>>;
|
|
3437
|
+
cilium_socket_lb_host_namespace_only: z.ZodOptional<z.ZodBoolean>;
|
|
3438
|
+
}, z.core.$strip>>>;
|
|
3173
3439
|
}, z.core.$strip>;
|
|
3174
3440
|
export declare const zUpdateClusterPath: z.ZodObject<{
|
|
3175
3441
|
cluster_id: z.ZodString;
|
|
@@ -3179,16 +3445,36 @@ export declare const zUpdateClusterPath: z.ZodObject<{
|
|
|
3179
3445
|
*/
|
|
3180
3446
|
export declare const zUpdateClusterResponse: z.ZodObject<{
|
|
3181
3447
|
name: z.ZodString;
|
|
3182
|
-
tier: z.ZodEnum<{
|
|
3448
|
+
tier: z.ZodDefault<z.ZodEnum<{
|
|
3183
3449
|
basic: "basic";
|
|
3450
|
+
enterprise: "enterprise";
|
|
3184
3451
|
pro: "pro";
|
|
3185
|
-
}
|
|
3452
|
+
}>>;
|
|
3453
|
+
version_channel: z.ZodDefault<z.ZodString>;
|
|
3454
|
+
release_channel: z.ZodDefault<z.ZodEnum<{
|
|
3455
|
+
stable: "stable";
|
|
3456
|
+
rapid: "rapid";
|
|
3457
|
+
extended: "extended";
|
|
3458
|
+
}>>;
|
|
3459
|
+
features: z.ZodDefault<z.ZodObject<{
|
|
3460
|
+
gpu_sharing_strategy: z.ZodDefault<z.ZodEnum<{
|
|
3461
|
+
none: "none";
|
|
3462
|
+
mps: "mps";
|
|
3463
|
+
time_slicing: "time_slicing";
|
|
3464
|
+
}>>;
|
|
3465
|
+
gpu_max_shared_clients_per_gpu: z.ZodDefault<z.ZodInt>;
|
|
3466
|
+
cilium_socket_lb_host_namespace_only: z.ZodBoolean;
|
|
3467
|
+
}, z.core.$strip>>;
|
|
3186
3468
|
region: z.ZodString;
|
|
3469
|
+
networking: z.ZodDefault<z.ZodObject<{
|
|
3470
|
+
pod_cidr: z.ZodDefault<z.ZodString>;
|
|
3471
|
+
service_cidr: z.ZodDefault<z.ZodString>;
|
|
3472
|
+
dual_stack: z.ZodBoolean;
|
|
3473
|
+
pod_cidr_v6: z.ZodDefault<z.ZodString>;
|
|
3474
|
+
service_cidr_v6: z.ZodDefault<z.ZodString>;
|
|
3475
|
+
}, z.core.$strip>>;
|
|
3187
3476
|
id: z.ZodUUID;
|
|
3188
3477
|
status: z.ZodEnum<{
|
|
3189
|
-
deleted: "deleted";
|
|
3190
|
-
failed: "failed";
|
|
3191
|
-
active: "active";
|
|
3192
3478
|
disabled: "disabled";
|
|
3193
3479
|
creating: "creating";
|
|
3194
3480
|
deployed: "deployed";
|
|
@@ -3204,8 +3490,7 @@ export declare const zUpdateClusterResponse: z.ZodObject<{
|
|
|
3204
3490
|
version_current: z.ZodOptional<z.ZodString>;
|
|
3205
3491
|
created_at: z.ZodOptional<z.ZodString>;
|
|
3206
3492
|
updated_at: z.ZodOptional<z.ZodString>;
|
|
3207
|
-
ready: z.
|
|
3208
|
-
version_channel: z.ZodOptional<z.ZodString>;
|
|
3493
|
+
ready: z.ZodBoolean;
|
|
3209
3494
|
}, z.core.$strip>;
|
|
3210
3495
|
export declare const zGetJoinInformationPath: z.ZodObject<{
|
|
3211
3496
|
cluster_id: z.ZodString;
|
|
@@ -3232,647 +3517,548 @@ export declare const zGetJoinInformationResponse: z.ZodObject<{
|
|
|
3232
3517
|
gcp_workload_identity_provider: z.ZodString;
|
|
3233
3518
|
}, z.core.$strip>;
|
|
3234
3519
|
}, 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";
|
|
3520
|
+
export declare const zGetUsageQuery: z.ZodObject<{
|
|
3521
|
+
granularity: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
3522
|
+
hourly: "hourly";
|
|
3523
|
+
daily: "daily";
|
|
3524
|
+
monthly: "monthly";
|
|
3254
3525
|
}>>>;
|
|
3255
3526
|
}, z.core.$strip>;
|
|
3256
3527
|
/**
|
|
3257
|
-
*
|
|
3528
|
+
* Usage data with facets for filtering
|
|
3258
3529
|
*/
|
|
3259
|
-
export declare const
|
|
3260
|
-
|
|
3261
|
-
|
|
3262
|
-
|
|
3263
|
-
|
|
3264
|
-
|
|
3265
|
-
|
|
3266
|
-
|
|
3267
|
-
|
|
3268
|
-
|
|
3269
|
-
|
|
3270
|
-
|
|
3271
|
-
|
|
3530
|
+
export declare const zGetUsageResponse: z.ZodObject<{
|
|
3531
|
+
data: z.ZodArray<z.ZodObject<{
|
|
3532
|
+
hour: z.ZodString;
|
|
3533
|
+
cluster_id: z.ZodString;
|
|
3534
|
+
product: z.ZodString;
|
|
3535
|
+
value: z.ZodNumber;
|
|
3536
|
+
price: z.ZodNumber;
|
|
3537
|
+
total: z.ZodNumber;
|
|
3538
|
+
}, z.core.$strip>>;
|
|
3539
|
+
facets: z.ZodObject<{
|
|
3540
|
+
cluster_id: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3541
|
+
product: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3542
|
+
}, z.core.$strip>;
|
|
3272
3543
|
}, z.core.$strip>;
|
|
3273
3544
|
/**
|
|
3274
|
-
* The
|
|
3545
|
+
* 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.
|
|
3546
|
+
*
|
|
3275
3547
|
*/
|
|
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;
|
|
3548
|
+
export declare const zGetPaymentMethodSecretResponse: z.ZodObject<{
|
|
3549
|
+
id: z.ZodOptional<z.ZodString>;
|
|
3282
3550
|
}, z.core.$strip>;
|
|
3283
3551
|
/**
|
|
3284
|
-
* An array of
|
|
3552
|
+
* An array of payment methods.
|
|
3285
3553
|
*/
|
|
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>>;
|
|
3554
|
+
export declare const zListPaymentMethodsResponse: z.ZodArray<z.ZodObject<{
|
|
3555
|
+
id: z.ZodString;
|
|
3556
|
+
type: z.ZodEnum<{
|
|
3557
|
+
card: "card";
|
|
3558
|
+
sepa_debit: "sepa_debit";
|
|
3559
|
+
bank_transfer: "bank_transfer";
|
|
3560
|
+
}>;
|
|
3561
|
+
last4: z.ZodString;
|
|
3562
|
+
exp_month: z.ZodInt;
|
|
3563
|
+
exp_year: z.ZodInt;
|
|
3564
|
+
brand: z.ZodString;
|
|
3565
|
+
iban: z.ZodString;
|
|
3566
|
+
bic: z.ZodString;
|
|
3567
|
+
account_holder_name: z.ZodString;
|
|
3568
|
+
is_default: z.ZodBoolean;
|
|
3306
3569
|
}, z.core.$strip>>;
|
|
3307
|
-
export declare const
|
|
3308
|
-
|
|
3309
|
-
version_channel: z.ZodString;
|
|
3310
|
-
}, z.core.$strip>;
|
|
3311
|
-
/**
|
|
3312
|
-
* Returns an object containing the chart files for the latest matching version.
|
|
3313
|
-
*/
|
|
3314
|
-
export declare const zGetMarketplaceChartFilesResponse: z.ZodObject<{
|
|
3315
|
-
chartYaml: z.ZodOptional<z.ZodString>;
|
|
3316
|
-
valuesYaml: z.ZodOptional<z.ZodString>;
|
|
3317
|
-
valuesSchemaJson: z.ZodOptional<z.ZodString>;
|
|
3570
|
+
export declare const zSetDefaultPaymentMethodPath: z.ZodObject<{
|
|
3571
|
+
paymentMethodId: z.ZodString;
|
|
3318
3572
|
}, z.core.$strip>;
|
|
3319
3573
|
/**
|
|
3320
|
-
*
|
|
3574
|
+
* Default payment method updated.
|
|
3321
3575
|
*/
|
|
3322
|
-
export declare const
|
|
3323
|
-
|
|
3324
|
-
|
|
3325
|
-
id: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>;
|
|
3326
|
-
params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3576
|
+
export declare const zSetDefaultPaymentMethodResponse: z.ZodVoid;
|
|
3577
|
+
export declare const zDeletePaymentMethodPath: z.ZodObject<{
|
|
3578
|
+
paymentMethodId: z.ZodString;
|
|
3327
3579
|
}, z.core.$strip>;
|
|
3328
3580
|
/**
|
|
3329
|
-
*
|
|
3581
|
+
* Payment method deleted.
|
|
3330
3582
|
*/
|
|
3331
|
-
export declare const
|
|
3332
|
-
jsonrpc: z.ZodOptional<z.ZodString>;
|
|
3333
|
-
id: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>;
|
|
3334
|
-
result: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3335
|
-
error: z.ZodOptional<z.ZodObject<{
|
|
3336
|
-
code: z.ZodOptional<z.ZodInt>;
|
|
3337
|
-
message: z.ZodOptional<z.ZodString>;
|
|
3338
|
-
}, z.core.$strip>>;
|
|
3339
|
-
}, z.core.$strip>;
|
|
3583
|
+
export declare const zDeletePaymentMethodResponse: z.ZodVoid;
|
|
3340
3584
|
/**
|
|
3341
|
-
*
|
|
3585
|
+
* An array of usage records.
|
|
3342
3586
|
*/
|
|
3343
|
-
export declare const
|
|
3344
|
-
id: z.
|
|
3345
|
-
|
|
3346
|
-
|
|
3347
|
-
|
|
3587
|
+
export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
3588
|
+
id: z.ZodOptional<z.ZodString>;
|
|
3589
|
+
number: z.ZodOptional<z.ZodString>;
|
|
3590
|
+
status: z.ZodOptional<z.ZodString>;
|
|
3591
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
3592
|
+
currency: z.ZodOptional<z.ZodString>;
|
|
3593
|
+
created: z.ZodISODateTime;
|
|
3594
|
+
period_start: z.ZodISODateTime;
|
|
3595
|
+
period_end: z.ZodISODateTime;
|
|
3596
|
+
invoice_pdf: z.ZodOptional<z.ZodString>;
|
|
3597
|
+
}, z.core.$strip>>;
|
|
3598
|
+
/**
|
|
3599
|
+
* Returns a single object containing organization contact and billing address details.
|
|
3600
|
+
*/
|
|
3601
|
+
export declare const zGetContactResponse: z.ZodObject<{
|
|
3602
|
+
type: z.ZodEnum<{
|
|
3603
|
+
business: "business";
|
|
3348
3604
|
personal: "personal";
|
|
3349
3605
|
}>;
|
|
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
|
-
|
|
3606
|
+
company: z.ZodOptional<z.ZodString>;
|
|
3607
|
+
address1: z.ZodOptional<z.ZodString>;
|
|
3608
|
+
address2: z.ZodOptional<z.ZodString>;
|
|
3609
|
+
postalCode: z.ZodOptional<z.ZodString>;
|
|
3610
|
+
city: z.ZodOptional<z.ZodString>;
|
|
3611
|
+
state: z.ZodOptional<z.ZodString>;
|
|
3612
|
+
country: z.ZodOptional<z.ZodString>;
|
|
3613
|
+
phone: z.ZodOptional<z.ZodString>;
|
|
3614
|
+
email: z.ZodEmail;
|
|
3615
|
+
individual_name: z.ZodString;
|
|
3616
|
+
tax_id: z.ZodOptional<z.ZodString>;
|
|
3617
|
+
tax_id_type: z.ZodOptional<z.ZodEnum<{
|
|
3618
|
+
"": "";
|
|
3619
|
+
ad_nrt: "ad_nrt";
|
|
3620
|
+
ae_trn: "ae_trn";
|
|
3621
|
+
al_tin: "al_tin";
|
|
3622
|
+
am_tin: "am_tin";
|
|
3623
|
+
ao_tin: "ao_tin";
|
|
3624
|
+
ar_cuit: "ar_cuit";
|
|
3625
|
+
at_vat: "at_vat";
|
|
3626
|
+
au_abn: "au_abn";
|
|
3627
|
+
au_arn: "au_arn";
|
|
3628
|
+
ba_tin: "ba_tin";
|
|
3629
|
+
bb_tin: "bb_tin";
|
|
3630
|
+
be_vat: "be_vat";
|
|
3631
|
+
bg_uic: "bg_uic";
|
|
3632
|
+
bg_vat: "bg_vat";
|
|
3633
|
+
bh_vat: "bh_vat";
|
|
3634
|
+
bo_tin: "bo_tin";
|
|
3635
|
+
br_cnpj: "br_cnpj";
|
|
3636
|
+
br_cpf: "br_cpf";
|
|
3637
|
+
bs_tin: "bs_tin";
|
|
3638
|
+
by_tin: "by_tin";
|
|
3639
|
+
ca_bn: "ca_bn";
|
|
3640
|
+
ca_gst_hst: "ca_gst_hst";
|
|
3641
|
+
ca_pst_bc: "ca_pst_bc";
|
|
3642
|
+
ca_pst_mb: "ca_pst_mb";
|
|
3643
|
+
ca_pst_sk: "ca_pst_sk";
|
|
3644
|
+
ca_qst: "ca_qst";
|
|
3645
|
+
cd_nif: "cd_nif";
|
|
3646
|
+
ch_uid: "ch_uid";
|
|
3647
|
+
ch_vat: "ch_vat";
|
|
3648
|
+
cl_tin: "cl_tin";
|
|
3649
|
+
cn_tin: "cn_tin";
|
|
3650
|
+
co_nit: "co_nit";
|
|
3651
|
+
cr_tin: "cr_tin";
|
|
3652
|
+
cy_vat: "cy_vat";
|
|
3653
|
+
cz_vat: "cz_vat";
|
|
3654
|
+
de_stn: "de_stn";
|
|
3655
|
+
de_vat: "de_vat";
|
|
3656
|
+
dk_vat: "dk_vat";
|
|
3657
|
+
do_rcn: "do_rcn";
|
|
3658
|
+
ec_ruc: "ec_ruc";
|
|
3659
|
+
ee_vat: "ee_vat";
|
|
3660
|
+
eg_tin: "eg_tin";
|
|
3661
|
+
es_cif: "es_cif";
|
|
3662
|
+
es_vat: "es_vat";
|
|
3663
|
+
eu_oss_vat: "eu_oss_vat";
|
|
3664
|
+
fi_vat: "fi_vat";
|
|
3665
|
+
fr_vat: "fr_vat";
|
|
3666
|
+
gb_vat: "gb_vat";
|
|
3667
|
+
ge_vat: "ge_vat";
|
|
3668
|
+
gn_nif: "gn_nif";
|
|
3669
|
+
gr_vat: "gr_vat";
|
|
3670
|
+
hk_br: "hk_br";
|
|
3671
|
+
hr_oib: "hr_oib";
|
|
3672
|
+
hr_vat: "hr_vat";
|
|
3673
|
+
hu_tin: "hu_tin";
|
|
3674
|
+
hu_vat: "hu_vat";
|
|
3675
|
+
id_npwp: "id_npwp";
|
|
3676
|
+
ie_vat: "ie_vat";
|
|
3677
|
+
il_vat: "il_vat";
|
|
3678
|
+
in_gst: "in_gst";
|
|
3679
|
+
is_vat: "is_vat";
|
|
3680
|
+
it_vat: "it_vat";
|
|
3681
|
+
jp_cn: "jp_cn";
|
|
3682
|
+
jp_rn: "jp_rn";
|
|
3683
|
+
jp_trn: "jp_trn";
|
|
3684
|
+
ke_pin: "ke_pin";
|
|
3685
|
+
kh_tin: "kh_tin";
|
|
3686
|
+
kr_brn: "kr_brn";
|
|
3687
|
+
kz_bin: "kz_bin";
|
|
3688
|
+
li_uid: "li_uid";
|
|
3689
|
+
li_vat: "li_vat";
|
|
3690
|
+
lt_vat: "lt_vat";
|
|
3691
|
+
lu_vat: "lu_vat";
|
|
3692
|
+
lv_vat: "lv_vat";
|
|
3693
|
+
ma_vat: "ma_vat";
|
|
3694
|
+
md_vat: "md_vat";
|
|
3695
|
+
me_pib: "me_pib";
|
|
3696
|
+
mk_vat: "mk_vat";
|
|
3697
|
+
mr_nif: "mr_nif";
|
|
3698
|
+
mt_vat: "mt_vat";
|
|
3699
|
+
mx_rfc: "mx_rfc";
|
|
3700
|
+
my_frp: "my_frp";
|
|
3701
|
+
my_itn: "my_itn";
|
|
3702
|
+
my_sst: "my_sst";
|
|
3703
|
+
ng_tin: "ng_tin";
|
|
3704
|
+
nl_vat: "nl_vat";
|
|
3705
|
+
no_vat: "no_vat";
|
|
3706
|
+
no_voec: "no_voec";
|
|
3707
|
+
np_pan: "np_pan";
|
|
3708
|
+
nz_gst: "nz_gst";
|
|
3709
|
+
om_vat: "om_vat";
|
|
3710
|
+
pe_ruc: "pe_ruc";
|
|
3711
|
+
ph_tin: "ph_tin";
|
|
3712
|
+
pl_vat: "pl_vat";
|
|
3713
|
+
pt_vat: "pt_vat";
|
|
3714
|
+
ro_tin: "ro_tin";
|
|
3715
|
+
ro_vat: "ro_vat";
|
|
3716
|
+
rs_pib: "rs_pib";
|
|
3717
|
+
ru_inn: "ru_inn";
|
|
3718
|
+
ru_kpp: "ru_kpp";
|
|
3719
|
+
sa_vat: "sa_vat";
|
|
3720
|
+
se_vat: "se_vat";
|
|
3721
|
+
sg_gst: "sg_gst";
|
|
3722
|
+
sg_uen: "sg_uen";
|
|
3723
|
+
si_tin: "si_tin";
|
|
3724
|
+
si_vat: "si_vat";
|
|
3725
|
+
sk_vat: "sk_vat";
|
|
3726
|
+
sn_ninea: "sn_ninea";
|
|
3727
|
+
sr_fin: "sr_fin";
|
|
3728
|
+
sv_nit: "sv_nit";
|
|
3729
|
+
th_vat: "th_vat";
|
|
3730
|
+
tj_tin: "tj_tin";
|
|
3731
|
+
tr_tin: "tr_tin";
|
|
3732
|
+
tw_vat: "tw_vat";
|
|
3733
|
+
tz_vat: "tz_vat";
|
|
3734
|
+
ua_vat: "ua_vat";
|
|
3735
|
+
ug_tin: "ug_tin";
|
|
3736
|
+
us_ein: "us_ein";
|
|
3737
|
+
uy_ruc: "uy_ruc";
|
|
3738
|
+
uz_tin: "uz_tin";
|
|
3739
|
+
uz_vat: "uz_vat";
|
|
3740
|
+
ve_rif: "ve_rif";
|
|
3741
|
+
vn_tin: "vn_tin";
|
|
3742
|
+
xi_vat: "xi_vat";
|
|
3743
|
+
za_vat: "za_vat";
|
|
3744
|
+
zm_tin: "zm_tin";
|
|
3745
|
+
zw_tin: "zw_tin";
|
|
3746
|
+
}>>;
|
|
3375
3747
|
}, z.core.$strip>;
|
|
3376
|
-
export declare const
|
|
3748
|
+
export declare const zUpdateContactBody: z.ZodObject<{
|
|
3377
3749
|
type: z.ZodEnum<{
|
|
3378
3750
|
business: "business";
|
|
3379
3751
|
personal: "personal";
|
|
3380
3752
|
}>;
|
|
3753
|
+
company: z.ZodOptional<z.ZodString>;
|
|
3754
|
+
address1: z.ZodOptional<z.ZodString>;
|
|
3755
|
+
address2: z.ZodOptional<z.ZodString>;
|
|
3756
|
+
postalCode: z.ZodOptional<z.ZodString>;
|
|
3757
|
+
city: z.ZodOptional<z.ZodString>;
|
|
3758
|
+
state: z.ZodOptional<z.ZodString>;
|
|
3759
|
+
country: z.ZodOptional<z.ZodString>;
|
|
3760
|
+
phone: z.ZodOptional<z.ZodString>;
|
|
3381
3761
|
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;
|
|
3762
|
+
individual_name: z.ZodString;
|
|
3763
|
+
tax_id: z.ZodOptional<z.ZodString>;
|
|
3764
|
+
tax_id_type: z.ZodOptional<z.ZodEnum<{
|
|
3765
|
+
"": "";
|
|
3766
|
+
ad_nrt: "ad_nrt";
|
|
3767
|
+
ae_trn: "ae_trn";
|
|
3768
|
+
al_tin: "al_tin";
|
|
3769
|
+
am_tin: "am_tin";
|
|
3770
|
+
ao_tin: "ao_tin";
|
|
3771
|
+
ar_cuit: "ar_cuit";
|
|
3772
|
+
at_vat: "at_vat";
|
|
3773
|
+
au_abn: "au_abn";
|
|
3774
|
+
au_arn: "au_arn";
|
|
3775
|
+
ba_tin: "ba_tin";
|
|
3776
|
+
bb_tin: "bb_tin";
|
|
3777
|
+
be_vat: "be_vat";
|
|
3778
|
+
bg_uic: "bg_uic";
|
|
3779
|
+
bg_vat: "bg_vat";
|
|
3780
|
+
bh_vat: "bh_vat";
|
|
3781
|
+
bo_tin: "bo_tin";
|
|
3782
|
+
br_cnpj: "br_cnpj";
|
|
3783
|
+
br_cpf: "br_cpf";
|
|
3784
|
+
bs_tin: "bs_tin";
|
|
3785
|
+
by_tin: "by_tin";
|
|
3786
|
+
ca_bn: "ca_bn";
|
|
3787
|
+
ca_gst_hst: "ca_gst_hst";
|
|
3788
|
+
ca_pst_bc: "ca_pst_bc";
|
|
3789
|
+
ca_pst_mb: "ca_pst_mb";
|
|
3790
|
+
ca_pst_sk: "ca_pst_sk";
|
|
3791
|
+
ca_qst: "ca_qst";
|
|
3792
|
+
cd_nif: "cd_nif";
|
|
3793
|
+
ch_uid: "ch_uid";
|
|
3794
|
+
ch_vat: "ch_vat";
|
|
3795
|
+
cl_tin: "cl_tin";
|
|
3796
|
+
cn_tin: "cn_tin";
|
|
3797
|
+
co_nit: "co_nit";
|
|
3798
|
+
cr_tin: "cr_tin";
|
|
3799
|
+
cy_vat: "cy_vat";
|
|
3800
|
+
cz_vat: "cz_vat";
|
|
3801
|
+
de_stn: "de_stn";
|
|
3802
|
+
de_vat: "de_vat";
|
|
3803
|
+
dk_vat: "dk_vat";
|
|
3804
|
+
do_rcn: "do_rcn";
|
|
3805
|
+
ec_ruc: "ec_ruc";
|
|
3806
|
+
ee_vat: "ee_vat";
|
|
3807
|
+
eg_tin: "eg_tin";
|
|
3808
|
+
es_cif: "es_cif";
|
|
3809
|
+
es_vat: "es_vat";
|
|
3810
|
+
eu_oss_vat: "eu_oss_vat";
|
|
3811
|
+
fi_vat: "fi_vat";
|
|
3812
|
+
fr_vat: "fr_vat";
|
|
3813
|
+
gb_vat: "gb_vat";
|
|
3814
|
+
ge_vat: "ge_vat";
|
|
3815
|
+
gn_nif: "gn_nif";
|
|
3816
|
+
gr_vat: "gr_vat";
|
|
3817
|
+
hk_br: "hk_br";
|
|
3818
|
+
hr_oib: "hr_oib";
|
|
3819
|
+
hr_vat: "hr_vat";
|
|
3820
|
+
hu_tin: "hu_tin";
|
|
3821
|
+
hu_vat: "hu_vat";
|
|
3822
|
+
id_npwp: "id_npwp";
|
|
3823
|
+
ie_vat: "ie_vat";
|
|
3824
|
+
il_vat: "il_vat";
|
|
3825
|
+
in_gst: "in_gst";
|
|
3826
|
+
is_vat: "is_vat";
|
|
3827
|
+
it_vat: "it_vat";
|
|
3828
|
+
jp_cn: "jp_cn";
|
|
3829
|
+
jp_rn: "jp_rn";
|
|
3830
|
+
jp_trn: "jp_trn";
|
|
3831
|
+
ke_pin: "ke_pin";
|
|
3832
|
+
kh_tin: "kh_tin";
|
|
3833
|
+
kr_brn: "kr_brn";
|
|
3834
|
+
kz_bin: "kz_bin";
|
|
3835
|
+
li_uid: "li_uid";
|
|
3836
|
+
li_vat: "li_vat";
|
|
3837
|
+
lt_vat: "lt_vat";
|
|
3838
|
+
lu_vat: "lu_vat";
|
|
3839
|
+
lv_vat: "lv_vat";
|
|
3840
|
+
ma_vat: "ma_vat";
|
|
3841
|
+
md_vat: "md_vat";
|
|
3842
|
+
me_pib: "me_pib";
|
|
3843
|
+
mk_vat: "mk_vat";
|
|
3844
|
+
mr_nif: "mr_nif";
|
|
3845
|
+
mt_vat: "mt_vat";
|
|
3846
|
+
mx_rfc: "mx_rfc";
|
|
3847
|
+
my_frp: "my_frp";
|
|
3848
|
+
my_itn: "my_itn";
|
|
3849
|
+
my_sst: "my_sst";
|
|
3850
|
+
ng_tin: "ng_tin";
|
|
3851
|
+
nl_vat: "nl_vat";
|
|
3852
|
+
no_vat: "no_vat";
|
|
3853
|
+
no_voec: "no_voec";
|
|
3854
|
+
np_pan: "np_pan";
|
|
3855
|
+
nz_gst: "nz_gst";
|
|
3856
|
+
om_vat: "om_vat";
|
|
3857
|
+
pe_ruc: "pe_ruc";
|
|
3858
|
+
ph_tin: "ph_tin";
|
|
3859
|
+
pl_vat: "pl_vat";
|
|
3860
|
+
pt_vat: "pt_vat";
|
|
3861
|
+
ro_tin: "ro_tin";
|
|
3862
|
+
ro_vat: "ro_vat";
|
|
3863
|
+
rs_pib: "rs_pib";
|
|
3864
|
+
ru_inn: "ru_inn";
|
|
3865
|
+
ru_kpp: "ru_kpp";
|
|
3866
|
+
sa_vat: "sa_vat";
|
|
3867
|
+
se_vat: "se_vat";
|
|
3868
|
+
sg_gst: "sg_gst";
|
|
3869
|
+
sg_uen: "sg_uen";
|
|
3870
|
+
si_tin: "si_tin";
|
|
3871
|
+
si_vat: "si_vat";
|
|
3872
|
+
sk_vat: "sk_vat";
|
|
3873
|
+
sn_ninea: "sn_ninea";
|
|
3874
|
+
sr_fin: "sr_fin";
|
|
3875
|
+
sv_nit: "sv_nit";
|
|
3876
|
+
th_vat: "th_vat";
|
|
3877
|
+
tj_tin: "tj_tin";
|
|
3878
|
+
tr_tin: "tr_tin";
|
|
3879
|
+
tw_vat: "tw_vat";
|
|
3880
|
+
tz_vat: "tz_vat";
|
|
3881
|
+
ua_vat: "ua_vat";
|
|
3882
|
+
ug_tin: "ug_tin";
|
|
3883
|
+
us_ein: "us_ein";
|
|
3884
|
+
uy_ruc: "uy_ruc";
|
|
3885
|
+
uz_tin: "uz_tin";
|
|
3886
|
+
uz_vat: "uz_vat";
|
|
3887
|
+
ve_rif: "ve_rif";
|
|
3888
|
+
vn_tin: "vn_tin";
|
|
3889
|
+
xi_vat: "xi_vat";
|
|
3890
|
+
za_vat: "za_vat";
|
|
3891
|
+
zm_tin: "zm_tin";
|
|
3892
|
+
zw_tin: "zw_tin";
|
|
3893
|
+
}>>;
|
|
3804
3894
|
}, z.core.$strip>;
|
|
3805
3895
|
/**
|
|
3806
|
-
*
|
|
3896
|
+
* Successfully updated. Returns updated organization details.
|
|
3807
3897
|
*/
|
|
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";
|
|
3898
|
+
export declare const zUpdateContactResponse: z.ZodObject<{
|
|
3899
|
+
type: z.ZodEnum<{
|
|
3900
|
+
business: "business";
|
|
3901
|
+
personal: "personal";
|
|
3819
3902
|
}>;
|
|
3820
|
-
|
|
3821
|
-
|
|
3822
|
-
|
|
3823
|
-
|
|
3824
|
-
|
|
3825
|
-
|
|
3826
|
-
|
|
3827
|
-
|
|
3828
|
-
*/
|
|
3829
|
-
export declare const zGetUserResponse: z.ZodObject<{
|
|
3903
|
+
company: z.ZodOptional<z.ZodString>;
|
|
3904
|
+
address1: z.ZodOptional<z.ZodString>;
|
|
3905
|
+
address2: z.ZodOptional<z.ZodString>;
|
|
3906
|
+
postalCode: z.ZodOptional<z.ZodString>;
|
|
3907
|
+
city: z.ZodOptional<z.ZodString>;
|
|
3908
|
+
state: z.ZodOptional<z.ZodString>;
|
|
3909
|
+
country: z.ZodOptional<z.ZodString>;
|
|
3910
|
+
phone: z.ZodOptional<z.ZodString>;
|
|
3830
3911
|
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
|
-
|
|
3912
|
+
individual_name: z.ZodString;
|
|
3913
|
+
tax_id: z.ZodOptional<z.ZodString>;
|
|
3914
|
+
tax_id_type: z.ZodOptional<z.ZodEnum<{
|
|
3915
|
+
"": "";
|
|
3916
|
+
ad_nrt: "ad_nrt";
|
|
3917
|
+
ae_trn: "ae_trn";
|
|
3918
|
+
al_tin: "al_tin";
|
|
3919
|
+
am_tin: "am_tin";
|
|
3920
|
+
ao_tin: "ao_tin";
|
|
3921
|
+
ar_cuit: "ar_cuit";
|
|
3922
|
+
at_vat: "at_vat";
|
|
3923
|
+
au_abn: "au_abn";
|
|
3924
|
+
au_arn: "au_arn";
|
|
3925
|
+
ba_tin: "ba_tin";
|
|
3926
|
+
bb_tin: "bb_tin";
|
|
3927
|
+
be_vat: "be_vat";
|
|
3928
|
+
bg_uic: "bg_uic";
|
|
3929
|
+
bg_vat: "bg_vat";
|
|
3930
|
+
bh_vat: "bh_vat";
|
|
3931
|
+
bo_tin: "bo_tin";
|
|
3932
|
+
br_cnpj: "br_cnpj";
|
|
3933
|
+
br_cpf: "br_cpf";
|
|
3934
|
+
bs_tin: "bs_tin";
|
|
3935
|
+
by_tin: "by_tin";
|
|
3936
|
+
ca_bn: "ca_bn";
|
|
3937
|
+
ca_gst_hst: "ca_gst_hst";
|
|
3938
|
+
ca_pst_bc: "ca_pst_bc";
|
|
3939
|
+
ca_pst_mb: "ca_pst_mb";
|
|
3940
|
+
ca_pst_sk: "ca_pst_sk";
|
|
3941
|
+
ca_qst: "ca_qst";
|
|
3942
|
+
cd_nif: "cd_nif";
|
|
3943
|
+
ch_uid: "ch_uid";
|
|
3944
|
+
ch_vat: "ch_vat";
|
|
3945
|
+
cl_tin: "cl_tin";
|
|
3946
|
+
cn_tin: "cn_tin";
|
|
3947
|
+
co_nit: "co_nit";
|
|
3948
|
+
cr_tin: "cr_tin";
|
|
3949
|
+
cy_vat: "cy_vat";
|
|
3950
|
+
cz_vat: "cz_vat";
|
|
3951
|
+
de_stn: "de_stn";
|
|
3952
|
+
de_vat: "de_vat";
|
|
3953
|
+
dk_vat: "dk_vat";
|
|
3954
|
+
do_rcn: "do_rcn";
|
|
3955
|
+
ec_ruc: "ec_ruc";
|
|
3956
|
+
ee_vat: "ee_vat";
|
|
3957
|
+
eg_tin: "eg_tin";
|
|
3958
|
+
es_cif: "es_cif";
|
|
3959
|
+
es_vat: "es_vat";
|
|
3960
|
+
eu_oss_vat: "eu_oss_vat";
|
|
3961
|
+
fi_vat: "fi_vat";
|
|
3962
|
+
fr_vat: "fr_vat";
|
|
3963
|
+
gb_vat: "gb_vat";
|
|
3964
|
+
ge_vat: "ge_vat";
|
|
3965
|
+
gn_nif: "gn_nif";
|
|
3966
|
+
gr_vat: "gr_vat";
|
|
3967
|
+
hk_br: "hk_br";
|
|
3968
|
+
hr_oib: "hr_oib";
|
|
3969
|
+
hr_vat: "hr_vat";
|
|
3970
|
+
hu_tin: "hu_tin";
|
|
3971
|
+
hu_vat: "hu_vat";
|
|
3972
|
+
id_npwp: "id_npwp";
|
|
3973
|
+
ie_vat: "ie_vat";
|
|
3974
|
+
il_vat: "il_vat";
|
|
3975
|
+
in_gst: "in_gst";
|
|
3976
|
+
is_vat: "is_vat";
|
|
3977
|
+
it_vat: "it_vat";
|
|
3978
|
+
jp_cn: "jp_cn";
|
|
3979
|
+
jp_rn: "jp_rn";
|
|
3980
|
+
jp_trn: "jp_trn";
|
|
3981
|
+
ke_pin: "ke_pin";
|
|
3982
|
+
kh_tin: "kh_tin";
|
|
3983
|
+
kr_brn: "kr_brn";
|
|
3984
|
+
kz_bin: "kz_bin";
|
|
3985
|
+
li_uid: "li_uid";
|
|
3986
|
+
li_vat: "li_vat";
|
|
3987
|
+
lt_vat: "lt_vat";
|
|
3988
|
+
lu_vat: "lu_vat";
|
|
3989
|
+
lv_vat: "lv_vat";
|
|
3990
|
+
ma_vat: "ma_vat";
|
|
3991
|
+
md_vat: "md_vat";
|
|
3992
|
+
me_pib: "me_pib";
|
|
3993
|
+
mk_vat: "mk_vat";
|
|
3994
|
+
mr_nif: "mr_nif";
|
|
3995
|
+
mt_vat: "mt_vat";
|
|
3996
|
+
mx_rfc: "mx_rfc";
|
|
3997
|
+
my_frp: "my_frp";
|
|
3998
|
+
my_itn: "my_itn";
|
|
3999
|
+
my_sst: "my_sst";
|
|
4000
|
+
ng_tin: "ng_tin";
|
|
4001
|
+
nl_vat: "nl_vat";
|
|
4002
|
+
no_vat: "no_vat";
|
|
4003
|
+
no_voec: "no_voec";
|
|
4004
|
+
np_pan: "np_pan";
|
|
4005
|
+
nz_gst: "nz_gst";
|
|
4006
|
+
om_vat: "om_vat";
|
|
4007
|
+
pe_ruc: "pe_ruc";
|
|
4008
|
+
ph_tin: "ph_tin";
|
|
4009
|
+
pl_vat: "pl_vat";
|
|
4010
|
+
pt_vat: "pt_vat";
|
|
4011
|
+
ro_tin: "ro_tin";
|
|
4012
|
+
ro_vat: "ro_vat";
|
|
4013
|
+
rs_pib: "rs_pib";
|
|
4014
|
+
ru_inn: "ru_inn";
|
|
4015
|
+
ru_kpp: "ru_kpp";
|
|
4016
|
+
sa_vat: "sa_vat";
|
|
4017
|
+
se_vat: "se_vat";
|
|
4018
|
+
sg_gst: "sg_gst";
|
|
4019
|
+
sg_uen: "sg_uen";
|
|
4020
|
+
si_tin: "si_tin";
|
|
4021
|
+
si_vat: "si_vat";
|
|
4022
|
+
sk_vat: "sk_vat";
|
|
4023
|
+
sn_ninea: "sn_ninea";
|
|
4024
|
+
sr_fin: "sr_fin";
|
|
4025
|
+
sv_nit: "sv_nit";
|
|
4026
|
+
th_vat: "th_vat";
|
|
4027
|
+
tj_tin: "tj_tin";
|
|
4028
|
+
tr_tin: "tr_tin";
|
|
4029
|
+
tw_vat: "tw_vat";
|
|
4030
|
+
tz_vat: "tz_vat";
|
|
4031
|
+
ua_vat: "ua_vat";
|
|
4032
|
+
ug_tin: "ug_tin";
|
|
4033
|
+
us_ein: "us_ein";
|
|
4034
|
+
uy_ruc: "uy_ruc";
|
|
4035
|
+
uz_tin: "uz_tin";
|
|
4036
|
+
uz_vat: "uz_vat";
|
|
4037
|
+
ve_rif: "ve_rif";
|
|
4038
|
+
vn_tin: "vn_tin";
|
|
4039
|
+
xi_vat: "xi_vat";
|
|
4040
|
+
za_vat: "za_vat";
|
|
4041
|
+
zm_tin: "zm_tin";
|
|
4042
|
+
zw_tin: "zw_tin";
|
|
3855
4043
|
}>>;
|
|
3856
4044
|
}, z.core.$strip>;
|
|
3857
|
-
export declare const zUpdateUserPath: z.ZodObject<{
|
|
3858
|
-
user_id: z.ZodString;
|
|
3859
|
-
}, z.core.$strip>;
|
|
3860
4045
|
/**
|
|
3861
|
-
*
|
|
4046
|
+
* An array of the applied promotional credits records.
|
|
3862
4047
|
*/
|
|
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";
|
|
4048
|
+
export declare const zGetCreditsResponse: z.ZodArray<z.ZodObject<{
|
|
4049
|
+
id: z.ZodOptional<z.ZodString>;
|
|
4050
|
+
type: z.ZodEnum<{
|
|
4051
|
+
credit: "credit";
|
|
4052
|
+
discount: "discount";
|
|
3874
4053
|
}>;
|
|
3875
|
-
|
|
3876
|
-
|
|
4054
|
+
date_start: z.ZodISODateTime;
|
|
4055
|
+
date_end: z.ZodOptional<z.ZodISODateTime>;
|
|
4056
|
+
code: z.ZodString;
|
|
4057
|
+
description: z.ZodOptional<z.ZodString>;
|
|
4058
|
+
value_total: z.ZodNumber;
|
|
4059
|
+
value_remaining: z.ZodOptional<z.ZodNumber>;
|
|
4060
|
+
}, z.core.$strip>>;
|
|
4061
|
+
export declare const zRedeemCreditsBody: z.ZodObject<{
|
|
4062
|
+
code: z.ZodOptional<z.ZodString>;
|
|
3877
4063
|
}, z.core.$strip>;
|
|
3878
4064
|
//# sourceMappingURL=zod.gen.d.ts.map
|