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