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