@cloudfleet/sdk 0.0.1-176cb2f → 0.0.1-17d20e1
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 +420 -386
- package/dist/@tanstack/react-query.gen.d.ts.map +1 -1
- package/dist/@tanstack/react-query.gen.js +428 -382
- 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 +426 -85
- package/dist/schemas.gen.d.ts.map +1 -1
- package/dist/schemas.gen.js +540 -143
- package/dist/schemas.gen.js.map +1 -1
- package/dist/sdk.gen.d.ts +237 -215
- package/dist/sdk.gen.d.ts.map +1 -1
- package/dist/sdk.gen.js +338 -312
- package/dist/sdk.gen.js.map +1 -1
- package/dist/types.gen.d.ts +1043 -699
- package/dist/types.gen.d.ts.map +1 -1
- package/dist/zod.gen.d.ts +1597 -1434
- package/dist/zod.gen.d.ts.map +1 -1
- package/dist/zod.gen.js +445 -313
- package/dist/zod.gen.js.map +1 -1
- package/package.json +8 -11
package/dist/zod.gen.d.ts
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
import * as z from 'zod';
|
|
2
2
|
export declare const zBillingContact: z.ZodObject<{
|
|
3
|
+
type: z.ZodEnum<{
|
|
4
|
+
business: "business";
|
|
5
|
+
personal: "personal";
|
|
6
|
+
}>;
|
|
3
7
|
company: z.ZodOptional<z.ZodString>;
|
|
4
8
|
address1: z.ZodOptional<z.ZodString>;
|
|
5
9
|
address2: z.ZodOptional<z.ZodString>;
|
|
@@ -168,22 +172,7 @@ export declare const zChart: z.ZodObject<{
|
|
|
168
172
|
name: z.ZodString;
|
|
169
173
|
namespace: z.ZodString;
|
|
170
174
|
chart: z.ZodString;
|
|
171
|
-
status: z.
|
|
172
|
-
InstallSucceeded: "InstallSucceeded";
|
|
173
|
-
InstallFailed: "InstallFailed";
|
|
174
|
-
UpgradeSucceeded: "UpgradeSucceeded";
|
|
175
|
-
UpgradeFailed: "UpgradeFailed";
|
|
176
|
-
TestSucceeded: "TestSucceeded";
|
|
177
|
-
TestFailed: "TestFailed";
|
|
178
|
-
RollbackSucceeded: "RollbackSucceeded";
|
|
179
|
-
RollbackFailed: "RollbackFailed";
|
|
180
|
-
UninstallSucceeded: "UninstallSucceeded";
|
|
181
|
-
UninstallFailed: "UninstallFailed";
|
|
182
|
-
ArtifactFailed: "ArtifactFailed";
|
|
183
|
-
DependencyNotReady: "DependencyNotReady";
|
|
184
|
-
Progressing: "Progressing";
|
|
185
|
-
SourceNotReady: "SourceNotReady";
|
|
186
|
-
}>;
|
|
175
|
+
status: z.ZodString;
|
|
187
176
|
version_current: z.ZodString;
|
|
188
177
|
created_at: z.ZodString;
|
|
189
178
|
updated_at: z.ZodString;
|
|
@@ -193,29 +182,45 @@ export declare const zChartUpdateInput: z.ZodObject<{
|
|
|
193
182
|
values: z.ZodString;
|
|
194
183
|
version_channel: z.ZodString;
|
|
195
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
|
+
*/
|
|
196
188
|
export declare const zClusterCreateInput: z.ZodObject<{
|
|
197
189
|
name: z.ZodString;
|
|
198
|
-
tier: z.ZodEnum<{
|
|
190
|
+
tier: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
199
191
|
basic: "basic";
|
|
192
|
+
enterprise: "enterprise";
|
|
200
193
|
pro: "pro";
|
|
201
|
-
}>;
|
|
202
|
-
region: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
203
|
-
"staging-1a": "staging-1a";
|
|
204
|
-
"northamerica-central-1": "northamerica-central-1";
|
|
205
|
-
"europe-central-1a": "europe-central-1a";
|
|
206
|
-
"northamerica-central-1a": "northamerica-central-1a";
|
|
207
194
|
}>>>;
|
|
208
|
-
version_channel: z.ZodDefault<z.ZodOptional<z.
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
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";
|
|
213
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>>>;
|
|
214
218
|
}, z.core.$strip>;
|
|
215
219
|
export declare const zClusterJoinInformation: z.ZodObject<{
|
|
216
220
|
certificate_authority: z.ZodString;
|
|
217
221
|
endpoint: z.ZodURL;
|
|
218
222
|
cluster_dns: z.ZodString;
|
|
223
|
+
pod_cidr: z.ZodString;
|
|
219
224
|
auth_key: z.ZodString;
|
|
220
225
|
bootstrap_token: z.ZodString;
|
|
221
226
|
versions: z.ZodObject<{
|
|
@@ -230,23 +235,41 @@ export declare const zClusterJoinInformation: z.ZodObject<{
|
|
|
230
235
|
gcp_workload_identity_provider: z.ZodString;
|
|
231
236
|
}, z.core.$strip>;
|
|
232
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
|
+
*/
|
|
233
241
|
export declare const zCluster: z.ZodObject<{
|
|
234
242
|
name: z.ZodString;
|
|
235
|
-
tier: z.ZodEnum<{
|
|
243
|
+
tier: z.ZodDefault<z.ZodEnum<{
|
|
236
244
|
basic: "basic";
|
|
245
|
+
enterprise: "enterprise";
|
|
237
246
|
pro: "pro";
|
|
238
|
-
}
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
}
|
|
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>>;
|
|
245
271
|
id: z.ZodUUID;
|
|
246
272
|
status: z.ZodEnum<{
|
|
247
|
-
deleted: "deleted";
|
|
248
|
-
failed: "failed";
|
|
249
|
-
active: "active";
|
|
250
273
|
disabled: "disabled";
|
|
251
274
|
creating: "creating";
|
|
252
275
|
deployed: "deployed";
|
|
@@ -262,17 +285,37 @@ export declare const zCluster: z.ZodObject<{
|
|
|
262
285
|
version_current: z.ZodOptional<z.ZodString>;
|
|
263
286
|
created_at: z.ZodOptional<z.ZodString>;
|
|
264
287
|
updated_at: z.ZodOptional<z.ZodString>;
|
|
265
|
-
ready: z.
|
|
266
|
-
version_channel: z.ZodOptional<z.ZodString>;
|
|
288
|
+
ready: z.ZodBoolean;
|
|
267
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
|
+
*/
|
|
268
293
|
export declare const zClusterUpdateInput: z.ZodObject<{
|
|
269
|
-
name: z.
|
|
270
|
-
tier: z.ZodEnum<{
|
|
294
|
+
name: z.ZodString;
|
|
295
|
+
tier: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
271
296
|
basic: "basic";
|
|
297
|
+
enterprise: "enterprise";
|
|
272
298
|
pro: "pro";
|
|
273
|
-
}
|
|
274
|
-
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>>>;
|
|
275
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
|
+
*/
|
|
276
319
|
export declare const zFleetCreateInput: z.ZodObject<{
|
|
277
320
|
limits: z.ZodOptional<z.ZodObject<{
|
|
278
321
|
cpu: z.ZodOptional<z.ZodInt>;
|
|
@@ -289,7 +332,7 @@ export declare const zFleetCreateInput: z.ZodObject<{
|
|
|
289
332
|
enabled: z.ZodBoolean;
|
|
290
333
|
controllerRoleArn: z.ZodOptional<z.ZodString>;
|
|
291
334
|
}, z.core.$strip>>;
|
|
292
|
-
constraints: z.ZodOptional<z.ZodObject<{
|
|
335
|
+
constraints: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
293
336
|
'karpenter.sh/capacity-type': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
294
337
|
"on-demand": "on-demand";
|
|
295
338
|
spot: "spot";
|
|
@@ -298,7 +341,7 @@ export declare const zFleetCreateInput: z.ZodObject<{
|
|
|
298
341
|
amd64: "amd64";
|
|
299
342
|
arm64: "arm64";
|
|
300
343
|
}>>>>;
|
|
301
|
-
'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
344
|
+
'cfke.io/instance-family': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
302
345
|
p3: "p3";
|
|
303
346
|
cx: "cx";
|
|
304
347
|
h1: "h1";
|
|
@@ -457,8 +500,8 @@ export declare const zFleetCreateInput: z.ZodObject<{
|
|
|
457
500
|
x8g: "x8g";
|
|
458
501
|
z1d: "z1d";
|
|
459
502
|
z3: "z3";
|
|
460
|
-
}
|
|
461
|
-
'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
503
|
+
}>>>>;
|
|
504
|
+
'topology.kubernetes.io/region': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
462
505
|
"africa-south1": "africa-south1";
|
|
463
506
|
"ap-northeast-1": "ap-northeast-1";
|
|
464
507
|
"ap-northeast-2": "ap-northeast-2";
|
|
@@ -523,14 +566,17 @@ export declare const zFleetCreateInput: z.ZodObject<{
|
|
|
523
566
|
"us-west2": "us-west2";
|
|
524
567
|
"us-west3": "us-west3";
|
|
525
568
|
"us-west4": "us-west4";
|
|
526
|
-
}
|
|
527
|
-
}, z.core.$strip
|
|
569
|
+
}>>>>;
|
|
570
|
+
}, z.core.$strip>>>;
|
|
528
571
|
scalingProfile: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
529
572
|
aggressive: "aggressive";
|
|
530
573
|
conservative: "conservative";
|
|
531
574
|
}>>>;
|
|
532
575
|
id: z.ZodString;
|
|
533
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
|
+
*/
|
|
534
580
|
export declare const zFleet: z.ZodObject<{
|
|
535
581
|
limits: z.ZodOptional<z.ZodObject<{
|
|
536
582
|
cpu: z.ZodOptional<z.ZodInt>;
|
|
@@ -547,16 +593,16 @@ export declare const zFleet: z.ZodObject<{
|
|
|
547
593
|
enabled: z.ZodBoolean;
|
|
548
594
|
controllerRoleArn: z.ZodOptional<z.ZodString>;
|
|
549
595
|
}, z.core.$strip>>;
|
|
550
|
-
constraints: z.
|
|
551
|
-
'karpenter.sh/capacity-type': z.ZodDefault<z.
|
|
596
|
+
constraints: z.ZodDefault<z.ZodObject<{
|
|
597
|
+
'karpenter.sh/capacity-type': z.ZodDefault<z.ZodArray<z.ZodEnum<{
|
|
552
598
|
"on-demand": "on-demand";
|
|
553
599
|
spot: "spot";
|
|
554
|
-
}
|
|
555
|
-
'kubernetes.io/arch': z.ZodDefault<z.
|
|
600
|
+
}>>>;
|
|
601
|
+
'kubernetes.io/arch': z.ZodDefault<z.ZodArray<z.ZodEnum<{
|
|
556
602
|
amd64: "amd64";
|
|
557
603
|
arm64: "arm64";
|
|
558
|
-
}
|
|
559
|
-
'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
604
|
+
}>>>;
|
|
605
|
+
'cfke.io/instance-family': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
560
606
|
p3: "p3";
|
|
561
607
|
cx: "cx";
|
|
562
608
|
h1: "h1";
|
|
@@ -715,8 +761,8 @@ export declare const zFleet: z.ZodObject<{
|
|
|
715
761
|
x8g: "x8g";
|
|
716
762
|
z1d: "z1d";
|
|
717
763
|
z3: "z3";
|
|
718
|
-
}
|
|
719
|
-
'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
764
|
+
}>>>>;
|
|
765
|
+
'topology.kubernetes.io/region': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
720
766
|
"africa-south1": "africa-south1";
|
|
721
767
|
"ap-northeast-1": "ap-northeast-1";
|
|
722
768
|
"ap-northeast-2": "ap-northeast-2";
|
|
@@ -781,14 +827,21 @@ export declare const zFleet: z.ZodObject<{
|
|
|
781
827
|
"us-west2": "us-west2";
|
|
782
828
|
"us-west3": "us-west3";
|
|
783
829
|
"us-west4": "us-west4";
|
|
784
|
-
}
|
|
830
|
+
}>>>>;
|
|
785
831
|
}, z.core.$strip>>;
|
|
786
832
|
scalingProfile: z.ZodDefault<z.ZodEnum<{
|
|
787
833
|
aggressive: "aggressive";
|
|
788
834
|
conservative: "conservative";
|
|
789
835
|
}>>;
|
|
790
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;
|
|
791
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
|
+
*/
|
|
792
845
|
export declare const zFleetUpdateInput: z.ZodObject<{
|
|
793
846
|
limits: z.ZodOptional<z.ZodObject<{
|
|
794
847
|
cpu: z.ZodOptional<z.ZodInt>;
|
|
@@ -805,16 +858,16 @@ export declare const zFleetUpdateInput: z.ZodObject<{
|
|
|
805
858
|
enabled: z.ZodBoolean;
|
|
806
859
|
controllerRoleArn: z.ZodOptional<z.ZodString>;
|
|
807
860
|
}, z.core.$strip>>;
|
|
808
|
-
constraints: z.ZodOptional<z.ZodObject<{
|
|
809
|
-
'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<{
|
|
810
863
|
"on-demand": "on-demand";
|
|
811
864
|
spot: "spot";
|
|
812
|
-
}
|
|
813
|
-
'kubernetes.io/arch': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
865
|
+
}>>>>;
|
|
866
|
+
'kubernetes.io/arch': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
814
867
|
amd64: "amd64";
|
|
815
868
|
arm64: "arm64";
|
|
816
|
-
}
|
|
817
|
-
'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
869
|
+
}>>>>;
|
|
870
|
+
'cfke.io/instance-family': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
818
871
|
p3: "p3";
|
|
819
872
|
cx: "cx";
|
|
820
873
|
h1: "h1";
|
|
@@ -973,8 +1026,8 @@ export declare const zFleetUpdateInput: z.ZodObject<{
|
|
|
973
1026
|
x8g: "x8g";
|
|
974
1027
|
z1d: "z1d";
|
|
975
1028
|
z3: "z3";
|
|
976
|
-
}
|
|
977
|
-
'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
1029
|
+
}>>>>;
|
|
1030
|
+
'topology.kubernetes.io/region': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
978
1031
|
"africa-south1": "africa-south1";
|
|
979
1032
|
"ap-northeast-1": "ap-northeast-1";
|
|
980
1033
|
"ap-northeast-2": "ap-northeast-2";
|
|
@@ -1039,12 +1092,19 @@ export declare const zFleetUpdateInput: z.ZodObject<{
|
|
|
1039
1092
|
"us-west2": "us-west2";
|
|
1040
1093
|
"us-west3": "us-west3";
|
|
1041
1094
|
"us-west4": "us-west4";
|
|
1042
|
-
}
|
|
1043
|
-
}, z.core.$strip
|
|
1044
|
-
scalingProfile: z.ZodEnum<{
|
|
1095
|
+
}>>>>;
|
|
1096
|
+
}, z.core.$strip>>>;
|
|
1097
|
+
scalingProfile: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
1045
1098
|
aggressive: "aggressive";
|
|
1046
1099
|
conservative: "conservative";
|
|
1047
|
-
}
|
|
1100
|
+
}>>>;
|
|
1101
|
+
}, z.core.$strip>;
|
|
1102
|
+
export declare const zInviteCreateInput: z.ZodObject<{
|
|
1103
|
+
email: z.ZodEmail;
|
|
1104
|
+
role: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
1105
|
+
Administrator: "Administrator";
|
|
1106
|
+
User: "User";
|
|
1107
|
+
}>>>;
|
|
1048
1108
|
}, z.core.$strip>;
|
|
1049
1109
|
export declare const zInvite: z.ZodObject<{
|
|
1050
1110
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -1052,6 +1112,10 @@ export declare const zInvite: z.ZodObject<{
|
|
|
1052
1112
|
date_created: z.ZodISODateTime;
|
|
1053
1113
|
email: z.ZodOptional<z.ZodEmail>;
|
|
1054
1114
|
code: z.ZodOptional<z.ZodString>;
|
|
1115
|
+
role: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
1116
|
+
Administrator: "Administrator";
|
|
1117
|
+
User: "User";
|
|
1118
|
+
}>>>;
|
|
1055
1119
|
}, z.core.$strip>;
|
|
1056
1120
|
export declare const zInvoice: z.ZodObject<{
|
|
1057
1121
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -1091,21 +1155,34 @@ export declare const zMarketplaceListing: z.ZodObject<{
|
|
|
1091
1155
|
}, z.core.$strip>>;
|
|
1092
1156
|
}, z.core.$strip>;
|
|
1093
1157
|
export declare const zOrganizationCreateInput: z.ZodObject<{
|
|
1158
|
+
type: z.ZodEnum<{
|
|
1159
|
+
business: "business";
|
|
1160
|
+
personal: "personal";
|
|
1161
|
+
}>;
|
|
1094
1162
|
email: z.ZodEmail;
|
|
1095
1163
|
first_name: z.ZodString;
|
|
1096
1164
|
last_name: z.ZodString;
|
|
1097
1165
|
company_name: z.ZodString;
|
|
1098
1166
|
password: z.ZodString;
|
|
1099
1167
|
}, z.core.$strip>;
|
|
1168
|
+
export declare const zOrganizationCreateOutput: z.ZodObject<{
|
|
1169
|
+
id: z.ZodString;
|
|
1170
|
+
}, z.core.$strip>;
|
|
1100
1171
|
export declare const zOrganization: z.ZodObject<{
|
|
1101
1172
|
id: z.ZodUUID;
|
|
1102
1173
|
name: z.ZodOptional<z.ZodString>;
|
|
1174
|
+
type: z.ZodEnum<{
|
|
1175
|
+
business: "business";
|
|
1176
|
+
personal: "personal";
|
|
1177
|
+
}>;
|
|
1103
1178
|
date_created: z.ZodISODateTime;
|
|
1104
1179
|
quota: z.ZodObject<{
|
|
1105
1180
|
basic_clusters_max: z.ZodInt;
|
|
1106
1181
|
basic_clusters_available: z.ZodInt;
|
|
1107
1182
|
pro_clusters_max: z.ZodInt;
|
|
1108
1183
|
pro_clusters_available: z.ZodInt;
|
|
1184
|
+
enterprise_clusters_max: z.ZodInt;
|
|
1185
|
+
enterprise_clusters_available: z.ZodInt;
|
|
1109
1186
|
fleets_max: z.ZodInt;
|
|
1110
1187
|
cluster_tiers: z.ZodArray<z.ZodString>;
|
|
1111
1188
|
regions: z.ZodArray<z.ZodString>;
|
|
@@ -1120,33 +1197,35 @@ export declare const zOrganization: z.ZodObject<{
|
|
|
1120
1197
|
closed: "closed";
|
|
1121
1198
|
suspended: "suspended";
|
|
1122
1199
|
}>;
|
|
1200
|
+
verification: z.ZodEnum<{
|
|
1201
|
+
none: "none";
|
|
1202
|
+
submitted: "submitted";
|
|
1203
|
+
verified: "verified";
|
|
1204
|
+
}>;
|
|
1123
1205
|
}, z.core.$strip>;
|
|
1124
1206
|
export declare const zPaymentMethod: z.ZodObject<{
|
|
1125
|
-
id: z.
|
|
1126
|
-
setup: z.ZodBoolean;
|
|
1207
|
+
id: z.ZodString;
|
|
1127
1208
|
type: z.ZodEnum<{
|
|
1128
1209
|
card: "card";
|
|
1210
|
+
sepa_debit: "sepa_debit";
|
|
1211
|
+
bank_transfer: "bank_transfer";
|
|
1129
1212
|
}>;
|
|
1130
1213
|
last4: z.ZodString;
|
|
1131
1214
|
exp_month: z.ZodInt;
|
|
1132
1215
|
exp_year: z.ZodInt;
|
|
1133
|
-
brand: z.
|
|
1134
|
-
|
|
1135
|
-
|
|
1136
|
-
|
|
1137
|
-
|
|
1138
|
-
eftpos_au: "eftpos_au";
|
|
1139
|
-
jcb: "jcb";
|
|
1140
|
-
mastercard: "mastercard";
|
|
1141
|
-
unionpay: "unionpay";
|
|
1142
|
-
visa: "visa";
|
|
1143
|
-
}>;
|
|
1216
|
+
brand: z.ZodString;
|
|
1217
|
+
iban: z.ZodString;
|
|
1218
|
+
bic: z.ZodString;
|
|
1219
|
+
account_holder_name: z.ZodString;
|
|
1220
|
+
is_default: z.ZodBoolean;
|
|
1144
1221
|
}, z.core.$strip>;
|
|
1145
1222
|
export declare const zPlatformQuota: z.ZodObject<{
|
|
1146
1223
|
basic_clusters_max: z.ZodInt;
|
|
1147
1224
|
basic_clusters_available: z.ZodInt;
|
|
1148
1225
|
pro_clusters_max: z.ZodInt;
|
|
1149
1226
|
pro_clusters_available: z.ZodInt;
|
|
1227
|
+
enterprise_clusters_max: z.ZodInt;
|
|
1228
|
+
enterprise_clusters_available: z.ZodInt;
|
|
1150
1229
|
fleets_max: z.ZodInt;
|
|
1151
1230
|
cluster_tiers: z.ZodArray<z.ZodString>;
|
|
1152
1231
|
regions: z.ZodArray<z.ZodString>;
|
|
@@ -1363,14 +1442,6 @@ export declare const zUserCreateInput: z.ZodObject<{
|
|
|
1363
1442
|
last_name: z.ZodString;
|
|
1364
1443
|
code: z.ZodString;
|
|
1365
1444
|
password: z.ZodString;
|
|
1366
|
-
status: z.ZodOptional<z.ZodEnum<{
|
|
1367
|
-
active: "active";
|
|
1368
|
-
inactive: "inactive";
|
|
1369
|
-
}>>;
|
|
1370
|
-
role: z.ZodOptional<z.ZodEnum<{
|
|
1371
|
-
Administrator: "Administrator";
|
|
1372
|
-
User: "User";
|
|
1373
|
-
}>>;
|
|
1374
1445
|
}, z.core.$strip>;
|
|
1375
1446
|
export declare const zUser: z.ZodObject<{
|
|
1376
1447
|
email: z.ZodEmail;
|
|
@@ -1400,630 +1471,654 @@ export declare const zUserUpdateInput: z.ZodObject<{
|
|
|
1400
1471
|
inactive: "inactive";
|
|
1401
1472
|
}>>;
|
|
1402
1473
|
}, z.core.$strip>;
|
|
1403
|
-
export declare const
|
|
1404
|
-
|
|
1405
|
-
hourly: "hourly";
|
|
1406
|
-
daily: "daily";
|
|
1407
|
-
monthly: "monthly";
|
|
1408
|
-
}>>>;
|
|
1474
|
+
export declare const zListUserOrganizationsPath: z.ZodObject<{
|
|
1475
|
+
email: z.ZodString;
|
|
1409
1476
|
}, z.core.$strip>;
|
|
1410
1477
|
/**
|
|
1411
|
-
*
|
|
1478
|
+
* An array of organizations the user belongs to.
|
|
1412
1479
|
*/
|
|
1413
|
-
export declare const
|
|
1414
|
-
|
|
1415
|
-
|
|
1416
|
-
|
|
1417
|
-
product: z.ZodString;
|
|
1418
|
-
value: z.ZodNumber;
|
|
1419
|
-
price: z.ZodNumber;
|
|
1420
|
-
total: z.ZodNumber;
|
|
1421
|
-
}, z.core.$strip>>;
|
|
1422
|
-
facets: z.ZodObject<{
|
|
1423
|
-
cluster_id: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1424
|
-
product: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1425
|
-
}, z.core.$strip>;
|
|
1426
|
-
}, z.core.$strip>;
|
|
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>>;
|
|
1427
1484
|
/**
|
|
1428
|
-
*
|
|
1485
|
+
* An array of users
|
|
1429
1486
|
*/
|
|
1430
|
-
export declare const
|
|
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
|
+
}>;
|
|
1431
1499
|
id: z.ZodUUID;
|
|
1432
|
-
|
|
1433
|
-
|
|
1434
|
-
|
|
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;
|
|
1508
|
+
}, z.core.$strip>;
|
|
1509
|
+
/**
|
|
1510
|
+
* Successfully created. Returns created user details.
|
|
1511
|
+
*/
|
|
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";
|
|
1435
1519
|
}>;
|
|
1436
|
-
|
|
1437
|
-
|
|
1438
|
-
|
|
1439
|
-
brand: z.ZodEnum<{
|
|
1440
|
-
unknown: "unknown";
|
|
1441
|
-
amex: "amex";
|
|
1442
|
-
diners: "diners";
|
|
1443
|
-
discover: "discover";
|
|
1444
|
-
eftpos_au: "eftpos_au";
|
|
1445
|
-
jcb: "jcb";
|
|
1446
|
-
mastercard: "mastercard";
|
|
1447
|
-
unionpay: "unionpay";
|
|
1448
|
-
visa: "visa";
|
|
1520
|
+
status: z.ZodEnum<{
|
|
1521
|
+
active: "active";
|
|
1522
|
+
inactive: "inactive";
|
|
1449
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;
|
|
1450
1529
|
}, z.core.$strip>;
|
|
1451
1530
|
/**
|
|
1452
|
-
*
|
|
1453
|
-
*
|
|
1531
|
+
* User profile information
|
|
1454
1532
|
*/
|
|
1455
|
-
export declare const
|
|
1456
|
-
|
|
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";
|
|
1540
|
+
}>;
|
|
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;
|
|
1457
1550
|
}, z.core.$strip>;
|
|
1458
1551
|
/**
|
|
1459
|
-
*
|
|
1552
|
+
* User profile information
|
|
1460
1553
|
*/
|
|
1461
|
-
export declare const
|
|
1462
|
-
|
|
1463
|
-
|
|
1464
|
-
|
|
1465
|
-
|
|
1466
|
-
|
|
1467
|
-
|
|
1468
|
-
|
|
1469
|
-
|
|
1470
|
-
|
|
1471
|
-
|
|
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;
|
|
1584
|
+
}, z.core.$strip>;
|
|
1472
1585
|
/**
|
|
1473
|
-
*
|
|
1586
|
+
* Successfully created. Returns created user details.
|
|
1474
1587
|
*/
|
|
1475
|
-
export declare const
|
|
1476
|
-
company: z.ZodOptional<z.ZodString>;
|
|
1477
|
-
address1: z.ZodOptional<z.ZodString>;
|
|
1478
|
-
address2: z.ZodOptional<z.ZodString>;
|
|
1479
|
-
postalCode: z.ZodOptional<z.ZodString>;
|
|
1480
|
-
city: z.ZodOptional<z.ZodString>;
|
|
1481
|
-
state: z.ZodOptional<z.ZodString>;
|
|
1482
|
-
country: z.ZodOptional<z.ZodString>;
|
|
1483
|
-
phone: z.ZodOptional<z.ZodString>;
|
|
1588
|
+
export declare const zUpdateUserResponse: z.ZodObject<{
|
|
1484
1589
|
email: z.ZodEmail;
|
|
1485
|
-
|
|
1486
|
-
|
|
1487
|
-
|
|
1488
|
-
|
|
1489
|
-
|
|
1490
|
-
|
|
1491
|
-
|
|
1492
|
-
|
|
1493
|
-
|
|
1494
|
-
|
|
1495
|
-
|
|
1496
|
-
|
|
1497
|
-
|
|
1498
|
-
|
|
1499
|
-
|
|
1500
|
-
|
|
1501
|
-
|
|
1502
|
-
|
|
1503
|
-
|
|
1504
|
-
|
|
1505
|
-
|
|
1506
|
-
|
|
1507
|
-
|
|
1508
|
-
|
|
1509
|
-
|
|
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
|
-
|
|
1537
|
-
|
|
1538
|
-
|
|
1539
|
-
|
|
1540
|
-
|
|
1541
|
-
|
|
1542
|
-
|
|
1543
|
-
|
|
1544
|
-
|
|
1545
|
-
|
|
1546
|
-
|
|
1547
|
-
|
|
1548
|
-
|
|
1549
|
-
|
|
1550
|
-
|
|
1551
|
-
|
|
1552
|
-
|
|
1553
|
-
|
|
1554
|
-
|
|
1555
|
-
kh_tin: "kh_tin";
|
|
1556
|
-
kr_brn: "kr_brn";
|
|
1557
|
-
kz_bin: "kz_bin";
|
|
1558
|
-
li_uid: "li_uid";
|
|
1559
|
-
li_vat: "li_vat";
|
|
1560
|
-
lt_vat: "lt_vat";
|
|
1561
|
-
lu_vat: "lu_vat";
|
|
1562
|
-
lv_vat: "lv_vat";
|
|
1563
|
-
ma_vat: "ma_vat";
|
|
1564
|
-
md_vat: "md_vat";
|
|
1565
|
-
me_pib: "me_pib";
|
|
1566
|
-
mk_vat: "mk_vat";
|
|
1567
|
-
mr_nif: "mr_nif";
|
|
1568
|
-
mt_vat: "mt_vat";
|
|
1569
|
-
mx_rfc: "mx_rfc";
|
|
1570
|
-
my_frp: "my_frp";
|
|
1571
|
-
my_itn: "my_itn";
|
|
1572
|
-
my_sst: "my_sst";
|
|
1573
|
-
ng_tin: "ng_tin";
|
|
1574
|
-
nl_vat: "nl_vat";
|
|
1575
|
-
no_vat: "no_vat";
|
|
1576
|
-
no_voec: "no_voec";
|
|
1577
|
-
np_pan: "np_pan";
|
|
1578
|
-
nz_gst: "nz_gst";
|
|
1579
|
-
om_vat: "om_vat";
|
|
1580
|
-
pe_ruc: "pe_ruc";
|
|
1581
|
-
ph_tin: "ph_tin";
|
|
1582
|
-
pl_vat: "pl_vat";
|
|
1583
|
-
pt_vat: "pt_vat";
|
|
1584
|
-
ro_tin: "ro_tin";
|
|
1585
|
-
ro_vat: "ro_vat";
|
|
1586
|
-
rs_pib: "rs_pib";
|
|
1587
|
-
ru_inn: "ru_inn";
|
|
1588
|
-
ru_kpp: "ru_kpp";
|
|
1589
|
-
sa_vat: "sa_vat";
|
|
1590
|
-
se_vat: "se_vat";
|
|
1591
|
-
sg_gst: "sg_gst";
|
|
1592
|
-
sg_uen: "sg_uen";
|
|
1593
|
-
si_tin: "si_tin";
|
|
1594
|
-
si_vat: "si_vat";
|
|
1595
|
-
sk_vat: "sk_vat";
|
|
1596
|
-
sn_ninea: "sn_ninea";
|
|
1597
|
-
sr_fin: "sr_fin";
|
|
1598
|
-
sv_nit: "sv_nit";
|
|
1599
|
-
th_vat: "th_vat";
|
|
1600
|
-
tj_tin: "tj_tin";
|
|
1601
|
-
tr_tin: "tr_tin";
|
|
1602
|
-
tw_vat: "tw_vat";
|
|
1603
|
-
tz_vat: "tz_vat";
|
|
1604
|
-
ua_vat: "ua_vat";
|
|
1605
|
-
ug_tin: "ug_tin";
|
|
1606
|
-
us_ein: "us_ein";
|
|
1607
|
-
uy_ruc: "uy_ruc";
|
|
1608
|
-
uz_tin: "uz_tin";
|
|
1609
|
-
uz_vat: "uz_vat";
|
|
1610
|
-
ve_rif: "ve_rif";
|
|
1611
|
-
vn_tin: "vn_tin";
|
|
1612
|
-
xi_vat: "xi_vat";
|
|
1613
|
-
za_vat: "za_vat";
|
|
1614
|
-
zm_tin: "zm_tin";
|
|
1615
|
-
zw_tin: "zw_tin";
|
|
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>;
|
|
1603
|
+
/**
|
|
1604
|
+
* Returns a list of access token details with masked secrets.
|
|
1605
|
+
*/
|
|
1606
|
+
export declare const zListTokensResponse: z.ZodArray<z.ZodObject<{
|
|
1607
|
+
name: z.ZodString;
|
|
1608
|
+
role: z.ZodEnum<{
|
|
1609
|
+
Administrator: "Administrator";
|
|
1610
|
+
User: "User";
|
|
1611
|
+
}>;
|
|
1612
|
+
id: z.ZodOptional<z.ZodString>;
|
|
1613
|
+
secret: z.ZodOptional<z.ZodString>;
|
|
1614
|
+
date_created: z.ZodISODateTime;
|
|
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>;
|
|
1623
|
+
/**
|
|
1624
|
+
* Successfully created. Returns created token details with unmasked/raw secret.
|
|
1625
|
+
*/
|
|
1626
|
+
export declare const zCreateTokenResponse: z.ZodObject<{
|
|
1627
|
+
name: z.ZodString;
|
|
1628
|
+
role: z.ZodEnum<{
|
|
1629
|
+
Administrator: "Administrator";
|
|
1630
|
+
User: "User";
|
|
1631
|
+
}>;
|
|
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";
|
|
1616
1660
|
}>>;
|
|
1617
1661
|
}, z.core.$strip>;
|
|
1618
|
-
export declare const
|
|
1619
|
-
|
|
1620
|
-
|
|
1621
|
-
|
|
1622
|
-
|
|
1623
|
-
|
|
1624
|
-
|
|
1625
|
-
|
|
1626
|
-
|
|
1627
|
-
|
|
1628
|
-
|
|
1629
|
-
|
|
1630
|
-
|
|
1631
|
-
|
|
1632
|
-
|
|
1633
|
-
|
|
1634
|
-
|
|
1635
|
-
|
|
1636
|
-
|
|
1637
|
-
|
|
1638
|
-
|
|
1639
|
-
|
|
1640
|
-
|
|
1641
|
-
|
|
1642
|
-
|
|
1643
|
-
|
|
1644
|
-
|
|
1645
|
-
|
|
1646
|
-
|
|
1647
|
-
|
|
1648
|
-
|
|
1649
|
-
|
|
1650
|
-
|
|
1651
|
-
|
|
1652
|
-
|
|
1653
|
-
|
|
1654
|
-
|
|
1655
|
-
|
|
1656
|
-
|
|
1657
|
-
|
|
1658
|
-
|
|
1659
|
-
|
|
1660
|
-
|
|
1661
|
-
|
|
1662
|
-
|
|
1663
|
-
|
|
1664
|
-
|
|
1665
|
-
|
|
1666
|
-
|
|
1667
|
-
|
|
1668
|
-
|
|
1669
|
-
|
|
1670
|
-
|
|
1671
|
-
|
|
1672
|
-
|
|
1673
|
-
|
|
1674
|
-
|
|
1675
|
-
|
|
1676
|
-
|
|
1677
|
-
|
|
1678
|
-
|
|
1679
|
-
|
|
1680
|
-
|
|
1681
|
-
|
|
1682
|
-
|
|
1683
|
-
|
|
1684
|
-
|
|
1685
|
-
|
|
1686
|
-
|
|
1687
|
-
|
|
1688
|
-
|
|
1689
|
-
|
|
1690
|
-
|
|
1691
|
-
|
|
1692
|
-
|
|
1693
|
-
|
|
1694
|
-
|
|
1695
|
-
|
|
1696
|
-
|
|
1697
|
-
|
|
1698
|
-
|
|
1699
|
-
|
|
1700
|
-
|
|
1701
|
-
|
|
1702
|
-
|
|
1703
|
-
|
|
1704
|
-
|
|
1705
|
-
|
|
1706
|
-
|
|
1707
|
-
|
|
1708
|
-
|
|
1709
|
-
|
|
1710
|
-
|
|
1711
|
-
|
|
1712
|
-
|
|
1713
|
-
|
|
1714
|
-
|
|
1715
|
-
|
|
1716
|
-
|
|
1717
|
-
|
|
1718
|
-
|
|
1719
|
-
|
|
1720
|
-
|
|
1721
|
-
|
|
1722
|
-
|
|
1723
|
-
|
|
1724
|
-
|
|
1725
|
-
|
|
1726
|
-
|
|
1727
|
-
|
|
1728
|
-
|
|
1729
|
-
|
|
1730
|
-
|
|
1731
|
-
|
|
1732
|
-
|
|
1733
|
-
|
|
1734
|
-
|
|
1735
|
-
|
|
1736
|
-
|
|
1737
|
-
|
|
1738
|
-
|
|
1739
|
-
|
|
1740
|
-
|
|
1741
|
-
|
|
1742
|
-
|
|
1743
|
-
|
|
1744
|
-
|
|
1745
|
-
|
|
1746
|
-
|
|
1747
|
-
|
|
1748
|
-
|
|
1749
|
-
|
|
1750
|
-
|
|
1751
|
-
|
|
1752
|
-
|
|
1753
|
-
|
|
1754
|
-
|
|
1755
|
-
|
|
1756
|
-
|
|
1757
|
-
|
|
1758
|
-
|
|
1759
|
-
|
|
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";
|
|
1673
|
+
}>;
|
|
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;
|
|
1680
|
+
}, z.core.$strip>;
|
|
1681
|
+
/**
|
|
1682
|
+
* Successfully updated. Returns updated token details with unmasked / raw secret.
|
|
1683
|
+
*/
|
|
1684
|
+
export declare const zRegenerateTokenResponse: z.ZodObject<{
|
|
1685
|
+
name: z.ZodString;
|
|
1686
|
+
role: z.ZodEnum<{
|
|
1687
|
+
Administrator: "Administrator";
|
|
1688
|
+
User: "User";
|
|
1689
|
+
}>;
|
|
1690
|
+
id: z.ZodOptional<z.ZodString>;
|
|
1691
|
+
secret: z.ZodOptional<z.ZodString>;
|
|
1692
|
+
date_created: z.ZodISODateTime;
|
|
1693
|
+
}, z.core.$strip>;
|
|
1694
|
+
/**
|
|
1695
|
+
* Tickets for the organization.
|
|
1696
|
+
*/
|
|
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>>;
|
|
1732
|
+
}, z.core.$strip>;
|
|
1733
|
+
export declare const zCreateTicketBody: z.ZodObject<{
|
|
1734
|
+
payload: z.ZodOptional<z.ZodString>;
|
|
1735
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1736
|
+
}, z.core.$strip>;
|
|
1737
|
+
/**
|
|
1738
|
+
* Ticket created.
|
|
1739
|
+
*/
|
|
1740
|
+
export declare const zCreateTicketResponse: z.ZodObject<{
|
|
1741
|
+
id: z.ZodString;
|
|
1742
|
+
status: z.ZodEnum<{
|
|
1743
|
+
closed: "closed";
|
|
1744
|
+
waiting_on_us: "waiting_on_us";
|
|
1745
|
+
waiting_on_user: "waiting_on_user";
|
|
1746
|
+
}>;
|
|
1747
|
+
category: z.ZodEnum<{
|
|
1748
|
+
billing: "billing";
|
|
1749
|
+
technical: "technical";
|
|
1750
|
+
general: "general";
|
|
1751
|
+
}>;
|
|
1752
|
+
summary: z.ZodString;
|
|
1753
|
+
closed_at: z.ZodOptional<z.ZodISODateTime>;
|
|
1754
|
+
date_created: z.ZodISODateTime;
|
|
1755
|
+
date_updated: z.ZodISODateTime;
|
|
1756
|
+
messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1757
|
+
id: z.ZodString;
|
|
1758
|
+
type: z.ZodEnum<{
|
|
1759
|
+
customer_reply: "customer_reply";
|
|
1760
|
+
agent_reply: "agent_reply";
|
|
1761
|
+
}>;
|
|
1762
|
+
body: z.ZodString;
|
|
1763
|
+
author_first_name: z.ZodOptional<z.ZodString>;
|
|
1764
|
+
author_last_name: z.ZodOptional<z.ZodString>;
|
|
1765
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1766
|
+
id: z.ZodString;
|
|
1767
|
+
filename: z.ZodString;
|
|
1768
|
+
content_type: z.ZodString;
|
|
1769
|
+
size: z.ZodInt;
|
|
1770
|
+
}, z.core.$strip>>>;
|
|
1771
|
+
date_created: z.ZodISODateTime;
|
|
1772
|
+
}, z.core.$strip>>>;
|
|
1773
|
+
}, z.core.$strip>;
|
|
1774
|
+
export declare const zCloseTicketPath: z.ZodObject<{
|
|
1775
|
+
ticket_id: z.ZodString;
|
|
1776
|
+
}, z.core.$strip>;
|
|
1777
|
+
/**
|
|
1778
|
+
* Ticket closed.
|
|
1779
|
+
*/
|
|
1780
|
+
export declare const zCloseTicketResponse: z.ZodObject<{
|
|
1781
|
+
id: z.ZodString;
|
|
1782
|
+
status: z.ZodEnum<{
|
|
1783
|
+
closed: "closed";
|
|
1784
|
+
waiting_on_us: "waiting_on_us";
|
|
1785
|
+
waiting_on_user: "waiting_on_user";
|
|
1786
|
+
}>;
|
|
1787
|
+
category: z.ZodEnum<{
|
|
1788
|
+
billing: "billing";
|
|
1789
|
+
technical: "technical";
|
|
1790
|
+
general: "general";
|
|
1791
|
+
}>;
|
|
1792
|
+
summary: z.ZodString;
|
|
1793
|
+
closed_at: z.ZodOptional<z.ZodISODateTime>;
|
|
1794
|
+
date_created: z.ZodISODateTime;
|
|
1795
|
+
date_updated: z.ZodISODateTime;
|
|
1796
|
+
messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1797
|
+
id: z.ZodString;
|
|
1798
|
+
type: z.ZodEnum<{
|
|
1799
|
+
customer_reply: "customer_reply";
|
|
1800
|
+
agent_reply: "agent_reply";
|
|
1801
|
+
}>;
|
|
1802
|
+
body: z.ZodString;
|
|
1803
|
+
author_first_name: z.ZodOptional<z.ZodString>;
|
|
1804
|
+
author_last_name: z.ZodOptional<z.ZodString>;
|
|
1805
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1806
|
+
id: z.ZodString;
|
|
1807
|
+
filename: z.ZodString;
|
|
1808
|
+
content_type: z.ZodString;
|
|
1809
|
+
size: z.ZodInt;
|
|
1810
|
+
}, z.core.$strip>>>;
|
|
1811
|
+
date_created: z.ZodISODateTime;
|
|
1812
|
+
}, z.core.$strip>>>;
|
|
1813
|
+
}, z.core.$strip>;
|
|
1814
|
+
export declare const zGetTicketPath: z.ZodObject<{
|
|
1815
|
+
ticket_id: z.ZodString;
|
|
1816
|
+
}, z.core.$strip>;
|
|
1817
|
+
/**
|
|
1818
|
+
* Ticket with messages (internal notes excluded).
|
|
1819
|
+
*/
|
|
1820
|
+
export declare const zGetTicketResponse: z.ZodObject<{
|
|
1821
|
+
id: z.ZodString;
|
|
1822
|
+
status: z.ZodEnum<{
|
|
1823
|
+
closed: "closed";
|
|
1824
|
+
waiting_on_us: "waiting_on_us";
|
|
1825
|
+
waiting_on_user: "waiting_on_user";
|
|
1826
|
+
}>;
|
|
1827
|
+
category: z.ZodEnum<{
|
|
1828
|
+
billing: "billing";
|
|
1829
|
+
technical: "technical";
|
|
1830
|
+
general: "general";
|
|
1831
|
+
}>;
|
|
1832
|
+
summary: z.ZodString;
|
|
1833
|
+
closed_at: z.ZodOptional<z.ZodISODateTime>;
|
|
1834
|
+
date_created: z.ZodISODateTime;
|
|
1835
|
+
date_updated: z.ZodISODateTime;
|
|
1836
|
+
messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1837
|
+
id: z.ZodString;
|
|
1838
|
+
type: z.ZodEnum<{
|
|
1839
|
+
customer_reply: "customer_reply";
|
|
1840
|
+
agent_reply: "agent_reply";
|
|
1841
|
+
}>;
|
|
1842
|
+
body: z.ZodString;
|
|
1843
|
+
author_first_name: z.ZodOptional<z.ZodString>;
|
|
1844
|
+
author_last_name: z.ZodOptional<z.ZodString>;
|
|
1845
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1846
|
+
id: z.ZodString;
|
|
1847
|
+
filename: z.ZodString;
|
|
1848
|
+
content_type: z.ZodString;
|
|
1849
|
+
size: z.ZodInt;
|
|
1850
|
+
}, z.core.$strip>>>;
|
|
1851
|
+
date_created: z.ZodISODateTime;
|
|
1852
|
+
}, z.core.$strip>>>;
|
|
1853
|
+
}, z.core.$strip>;
|
|
1854
|
+
export declare const zReplyTicketBody: z.ZodObject<{
|
|
1855
|
+
payload: z.ZodOptional<z.ZodString>;
|
|
1856
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1857
|
+
}, z.core.$strip>;
|
|
1858
|
+
export declare const zReplyTicketPath: z.ZodObject<{
|
|
1859
|
+
ticket_id: z.ZodString;
|
|
1860
|
+
}, z.core.$strip>;
|
|
1861
|
+
/**
|
|
1862
|
+
* Reply appended.
|
|
1863
|
+
*/
|
|
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;
|
|
1884
|
+
}, z.core.$strip>;
|
|
1885
|
+
/**
|
|
1886
|
+
* Attachment binary stream.
|
|
1887
|
+
*/
|
|
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;
|
|
1760
1900
|
}, z.core.$strip>;
|
|
1761
1901
|
/**
|
|
1762
|
-
*
|
|
1902
|
+
* Repository with tags
|
|
1763
1903
|
*/
|
|
1764
|
-
export declare const
|
|
1765
|
-
|
|
1766
|
-
|
|
1767
|
-
|
|
1768
|
-
|
|
1769
|
-
|
|
1770
|
-
|
|
1771
|
-
|
|
1772
|
-
|
|
1773
|
-
|
|
1774
|
-
|
|
1775
|
-
|
|
1776
|
-
|
|
1777
|
-
|
|
1778
|
-
|
|
1779
|
-
|
|
1780
|
-
|
|
1781
|
-
|
|
1782
|
-
|
|
1783
|
-
|
|
1784
|
-
|
|
1785
|
-
au_abn: "au_abn";
|
|
1786
|
-
au_arn: "au_arn";
|
|
1787
|
-
ba_tin: "ba_tin";
|
|
1788
|
-
bb_tin: "bb_tin";
|
|
1789
|
-
be_vat: "be_vat";
|
|
1790
|
-
bg_uic: "bg_uic";
|
|
1791
|
-
bg_vat: "bg_vat";
|
|
1792
|
-
bh_vat: "bh_vat";
|
|
1793
|
-
bo_tin: "bo_tin";
|
|
1794
|
-
br_cnpj: "br_cnpj";
|
|
1795
|
-
br_cpf: "br_cpf";
|
|
1796
|
-
bs_tin: "bs_tin";
|
|
1797
|
-
by_tin: "by_tin";
|
|
1798
|
-
ca_bn: "ca_bn";
|
|
1799
|
-
ca_gst_hst: "ca_gst_hst";
|
|
1800
|
-
ca_pst_bc: "ca_pst_bc";
|
|
1801
|
-
ca_pst_mb: "ca_pst_mb";
|
|
1802
|
-
ca_pst_sk: "ca_pst_sk";
|
|
1803
|
-
ca_qst: "ca_qst";
|
|
1804
|
-
cd_nif: "cd_nif";
|
|
1805
|
-
ch_uid: "ch_uid";
|
|
1806
|
-
ch_vat: "ch_vat";
|
|
1807
|
-
cl_tin: "cl_tin";
|
|
1808
|
-
cn_tin: "cn_tin";
|
|
1809
|
-
co_nit: "co_nit";
|
|
1810
|
-
cr_tin: "cr_tin";
|
|
1811
|
-
cy_vat: "cy_vat";
|
|
1812
|
-
cz_vat: "cz_vat";
|
|
1813
|
-
de_stn: "de_stn";
|
|
1814
|
-
de_vat: "de_vat";
|
|
1815
|
-
dk_vat: "dk_vat";
|
|
1816
|
-
do_rcn: "do_rcn";
|
|
1817
|
-
ec_ruc: "ec_ruc";
|
|
1818
|
-
ee_vat: "ee_vat";
|
|
1819
|
-
eg_tin: "eg_tin";
|
|
1820
|
-
es_cif: "es_cif";
|
|
1821
|
-
es_vat: "es_vat";
|
|
1822
|
-
eu_oss_vat: "eu_oss_vat";
|
|
1823
|
-
fi_vat: "fi_vat";
|
|
1824
|
-
fr_vat: "fr_vat";
|
|
1825
|
-
gb_vat: "gb_vat";
|
|
1826
|
-
ge_vat: "ge_vat";
|
|
1827
|
-
gn_nif: "gn_nif";
|
|
1828
|
-
gr_vat: "gr_vat";
|
|
1829
|
-
hk_br: "hk_br";
|
|
1830
|
-
hr_oib: "hr_oib";
|
|
1831
|
-
hr_vat: "hr_vat";
|
|
1832
|
-
hu_tin: "hu_tin";
|
|
1833
|
-
hu_vat: "hu_vat";
|
|
1834
|
-
id_npwp: "id_npwp";
|
|
1835
|
-
ie_vat: "ie_vat";
|
|
1836
|
-
il_vat: "il_vat";
|
|
1837
|
-
in_gst: "in_gst";
|
|
1838
|
-
is_vat: "is_vat";
|
|
1839
|
-
it_vat: "it_vat";
|
|
1840
|
-
jp_cn: "jp_cn";
|
|
1841
|
-
jp_rn: "jp_rn";
|
|
1842
|
-
jp_trn: "jp_trn";
|
|
1843
|
-
ke_pin: "ke_pin";
|
|
1844
|
-
kh_tin: "kh_tin";
|
|
1845
|
-
kr_brn: "kr_brn";
|
|
1846
|
-
kz_bin: "kz_bin";
|
|
1847
|
-
li_uid: "li_uid";
|
|
1848
|
-
li_vat: "li_vat";
|
|
1849
|
-
lt_vat: "lt_vat";
|
|
1850
|
-
lu_vat: "lu_vat";
|
|
1851
|
-
lv_vat: "lv_vat";
|
|
1852
|
-
ma_vat: "ma_vat";
|
|
1853
|
-
md_vat: "md_vat";
|
|
1854
|
-
me_pib: "me_pib";
|
|
1855
|
-
mk_vat: "mk_vat";
|
|
1856
|
-
mr_nif: "mr_nif";
|
|
1857
|
-
mt_vat: "mt_vat";
|
|
1858
|
-
mx_rfc: "mx_rfc";
|
|
1859
|
-
my_frp: "my_frp";
|
|
1860
|
-
my_itn: "my_itn";
|
|
1861
|
-
my_sst: "my_sst";
|
|
1862
|
-
ng_tin: "ng_tin";
|
|
1863
|
-
nl_vat: "nl_vat";
|
|
1864
|
-
no_vat: "no_vat";
|
|
1865
|
-
no_voec: "no_voec";
|
|
1866
|
-
np_pan: "np_pan";
|
|
1867
|
-
nz_gst: "nz_gst";
|
|
1868
|
-
om_vat: "om_vat";
|
|
1869
|
-
pe_ruc: "pe_ruc";
|
|
1870
|
-
ph_tin: "ph_tin";
|
|
1871
|
-
pl_vat: "pl_vat";
|
|
1872
|
-
pt_vat: "pt_vat";
|
|
1873
|
-
ro_tin: "ro_tin";
|
|
1874
|
-
ro_vat: "ro_vat";
|
|
1875
|
-
rs_pib: "rs_pib";
|
|
1876
|
-
ru_inn: "ru_inn";
|
|
1877
|
-
ru_kpp: "ru_kpp";
|
|
1878
|
-
sa_vat: "sa_vat";
|
|
1879
|
-
se_vat: "se_vat";
|
|
1880
|
-
sg_gst: "sg_gst";
|
|
1881
|
-
sg_uen: "sg_uen";
|
|
1882
|
-
si_tin: "si_tin";
|
|
1883
|
-
si_vat: "si_vat";
|
|
1884
|
-
sk_vat: "sk_vat";
|
|
1885
|
-
sn_ninea: "sn_ninea";
|
|
1886
|
-
sr_fin: "sr_fin";
|
|
1887
|
-
sv_nit: "sv_nit";
|
|
1888
|
-
th_vat: "th_vat";
|
|
1889
|
-
tj_tin: "tj_tin";
|
|
1890
|
-
tr_tin: "tr_tin";
|
|
1891
|
-
tw_vat: "tw_vat";
|
|
1892
|
-
tz_vat: "tz_vat";
|
|
1893
|
-
ua_vat: "ua_vat";
|
|
1894
|
-
ug_tin: "ug_tin";
|
|
1895
|
-
us_ein: "us_ein";
|
|
1896
|
-
uy_ruc: "uy_ruc";
|
|
1897
|
-
uz_tin: "uz_tin";
|
|
1898
|
-
uz_vat: "uz_vat";
|
|
1899
|
-
ve_rif: "ve_rif";
|
|
1900
|
-
vn_tin: "vn_tin";
|
|
1901
|
-
xi_vat: "xi_vat";
|
|
1902
|
-
za_vat: "za_vat";
|
|
1903
|
-
zm_tin: "zm_tin";
|
|
1904
|
-
zw_tin: "zw_tin";
|
|
1905
|
-
}>>;
|
|
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;
|
|
1906
1925
|
}, z.core.$strip>;
|
|
1907
1926
|
/**
|
|
1908
|
-
*
|
|
1927
|
+
* Tag details
|
|
1909
1928
|
*/
|
|
1910
|
-
export declare const
|
|
1911
|
-
|
|
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>;
|
|
1912
1964
|
type: z.ZodEnum<{
|
|
1913
|
-
|
|
1914
|
-
|
|
1965
|
+
business: "business";
|
|
1966
|
+
personal: "personal";
|
|
1915
1967
|
}>;
|
|
1916
|
-
|
|
1917
|
-
|
|
1918
|
-
|
|
1919
|
-
|
|
1920
|
-
|
|
1921
|
-
|
|
1922
|
-
|
|
1923
|
-
|
|
1924
|
-
|
|
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;
|
|
1925
2013
|
}, z.core.$strip>;
|
|
1926
|
-
|
|
1927
|
-
|
|
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>>;
|
|
1928
2022
|
}, z.core.$strip>;
|
|
1929
2023
|
/**
|
|
1930
|
-
*
|
|
2024
|
+
* JSON-RPC 2.0 success or error response
|
|
1931
2025
|
*/
|
|
1932
|
-
export declare const
|
|
1933
|
-
|
|
1934
|
-
|
|
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<{
|
|
1935
2039
|
name: z.ZodString;
|
|
1936
|
-
|
|
1937
|
-
|
|
1938
|
-
|
|
1939
|
-
|
|
1940
|
-
|
|
1941
|
-
|
|
1942
|
-
|
|
1943
|
-
|
|
1944
|
-
|
|
1945
|
-
|
|
1946
|
-
|
|
1947
|
-
|
|
1948
|
-
|
|
1949
|
-
|
|
1950
|
-
|
|
1951
|
-
|
|
1952
|
-
|
|
1953
|
-
}
|
|
1954
|
-
version_current: z.ZodString;
|
|
1955
|
-
created_at: z.ZodString;
|
|
1956
|
-
updated_at: z.ZodString;
|
|
1957
|
-
ready: z.ZodBoolean;
|
|
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>>;
|
|
1958
2058
|
}, z.core.$strip>>;
|
|
1959
|
-
export declare const
|
|
1960
|
-
|
|
2059
|
+
export declare const zGetMarketplaceChartFilesPath: z.ZodObject<{
|
|
2060
|
+
chart_name: z.ZodString;
|
|
1961
2061
|
version_channel: z.ZodString;
|
|
1962
|
-
name: z.ZodString;
|
|
1963
|
-
namespace: z.ZodString;
|
|
1964
|
-
chart: z.ZodString;
|
|
1965
2062
|
}, z.core.$strip>;
|
|
1966
|
-
|
|
1967
|
-
|
|
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>;
|
|
1968
2070
|
}, z.core.$strip>;
|
|
1969
2071
|
/**
|
|
1970
|
-
*
|
|
2072
|
+
* An array of invites
|
|
1971
2073
|
*/
|
|
1972
|
-
export declare const
|
|
1973
|
-
|
|
1974
|
-
|
|
1975
|
-
|
|
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
|
+
}>>>;
|
|
1976
2091
|
}, z.core.$strip>;
|
|
1977
2092
|
/**
|
|
1978
|
-
* Successfully
|
|
2093
|
+
* Successfully created. Returns created invite details.
|
|
1979
2094
|
*/
|
|
1980
|
-
export declare const
|
|
1981
|
-
|
|
1982
|
-
|
|
1983
|
-
|
|
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;
|
|
1984
2108
|
}, z.core.$strip>;
|
|
1985
2109
|
/**
|
|
1986
|
-
* Returns
|
|
2110
|
+
* The invitation code is valid. Returns the invited email and organization.
|
|
1987
2111
|
*/
|
|
1988
|
-
export declare const
|
|
1989
|
-
|
|
1990
|
-
|
|
1991
|
-
name: z.ZodString;
|
|
1992
|
-
namespace: z.ZodString;
|
|
1993
|
-
chart: z.ZodString;
|
|
1994
|
-
status: z.ZodEnum<{
|
|
1995
|
-
InstallSucceeded: "InstallSucceeded";
|
|
1996
|
-
InstallFailed: "InstallFailed";
|
|
1997
|
-
UpgradeSucceeded: "UpgradeSucceeded";
|
|
1998
|
-
UpgradeFailed: "UpgradeFailed";
|
|
1999
|
-
TestSucceeded: "TestSucceeded";
|
|
2000
|
-
TestFailed: "TestFailed";
|
|
2001
|
-
RollbackSucceeded: "RollbackSucceeded";
|
|
2002
|
-
RollbackFailed: "RollbackFailed";
|
|
2003
|
-
UninstallSucceeded: "UninstallSucceeded";
|
|
2004
|
-
UninstallFailed: "UninstallFailed";
|
|
2005
|
-
ArtifactFailed: "ArtifactFailed";
|
|
2006
|
-
DependencyNotReady: "DependencyNotReady";
|
|
2007
|
-
Progressing: "Progressing";
|
|
2008
|
-
SourceNotReady: "SourceNotReady";
|
|
2009
|
-
}>;
|
|
2010
|
-
version_current: z.ZodString;
|
|
2011
|
-
created_at: z.ZodString;
|
|
2012
|
-
updated_at: z.ZodString;
|
|
2013
|
-
ready: z.ZodBoolean;
|
|
2112
|
+
export declare const zGetInviteResponse: z.ZodObject<{
|
|
2113
|
+
email: z.ZodOptional<z.ZodEmail>;
|
|
2114
|
+
organization_id: z.ZodOptional<z.ZodString>;
|
|
2014
2115
|
}, z.core.$strip>;
|
|
2015
|
-
export declare const
|
|
2016
|
-
|
|
2017
|
-
version_channel: z.ZodString;
|
|
2116
|
+
export declare const zDeleteInvitePath: z.ZodObject<{
|
|
2117
|
+
email: z.ZodEmail;
|
|
2018
2118
|
}, z.core.$strip>;
|
|
2019
|
-
export declare const
|
|
2119
|
+
export declare const zQueryClusterPath: z.ZodObject<{
|
|
2020
2120
|
cluster_id: z.ZodString;
|
|
2021
|
-
chart_name: z.ZodString;
|
|
2022
2121
|
}, z.core.$strip>;
|
|
2023
|
-
/**
|
|
2024
|
-
* Successfully updated.
|
|
2025
|
-
*/
|
|
2026
|
-
export declare const zUpdateChartResponse: z.ZodString;
|
|
2027
2122
|
export declare const zListFleetsPath: z.ZodObject<{
|
|
2028
2123
|
cluster_id: z.ZodString;
|
|
2029
2124
|
}, z.core.$strip>;
|
|
@@ -2046,16 +2141,16 @@ export declare const zListFleetsResponse: z.ZodArray<z.ZodObject<{
|
|
|
2046
2141
|
enabled: z.ZodBoolean;
|
|
2047
2142
|
controllerRoleArn: z.ZodOptional<z.ZodString>;
|
|
2048
2143
|
}, z.core.$strip>>;
|
|
2049
|
-
constraints: z.
|
|
2050
|
-
'karpenter.sh/capacity-type': z.ZodDefault<z.
|
|
2144
|
+
constraints: z.ZodDefault<z.ZodObject<{
|
|
2145
|
+
'karpenter.sh/capacity-type': z.ZodDefault<z.ZodArray<z.ZodEnum<{
|
|
2051
2146
|
"on-demand": "on-demand";
|
|
2052
2147
|
spot: "spot";
|
|
2053
|
-
}
|
|
2054
|
-
'kubernetes.io/arch': z.ZodDefault<z.
|
|
2148
|
+
}>>>;
|
|
2149
|
+
'kubernetes.io/arch': z.ZodDefault<z.ZodArray<z.ZodEnum<{
|
|
2055
2150
|
amd64: "amd64";
|
|
2056
2151
|
arm64: "arm64";
|
|
2057
|
-
}
|
|
2058
|
-
'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2152
|
+
}>>>;
|
|
2153
|
+
'cfke.io/instance-family': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2059
2154
|
p3: "p3";
|
|
2060
2155
|
cx: "cx";
|
|
2061
2156
|
h1: "h1";
|
|
@@ -2214,8 +2309,8 @@ export declare const zListFleetsResponse: z.ZodArray<z.ZodObject<{
|
|
|
2214
2309
|
x8g: "x8g";
|
|
2215
2310
|
z1d: "z1d";
|
|
2216
2311
|
z3: "z3";
|
|
2217
|
-
}
|
|
2218
|
-
'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2312
|
+
}>>>>;
|
|
2313
|
+
'topology.kubernetes.io/region': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2219
2314
|
"africa-south1": "africa-south1";
|
|
2220
2315
|
"ap-northeast-1": "ap-northeast-1";
|
|
2221
2316
|
"ap-northeast-2": "ap-northeast-2";
|
|
@@ -2280,13 +2375,17 @@ export declare const zListFleetsResponse: z.ZodArray<z.ZodObject<{
|
|
|
2280
2375
|
"us-west2": "us-west2";
|
|
2281
2376
|
"us-west3": "us-west3";
|
|
2282
2377
|
"us-west4": "us-west4";
|
|
2283
|
-
}
|
|
2378
|
+
}>>>>;
|
|
2284
2379
|
}, z.core.$strip>>;
|
|
2285
2380
|
scalingProfile: z.ZodDefault<z.ZodEnum<{
|
|
2286
2381
|
aggressive: "aggressive";
|
|
2287
2382
|
conservative: "conservative";
|
|
2288
2383
|
}>>;
|
|
2289
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;
|
|
2290
2389
|
}, z.core.$strip>>;
|
|
2291
2390
|
export declare const zCreateFleetBody: z.ZodObject<{
|
|
2292
2391
|
limits: z.ZodOptional<z.ZodObject<{
|
|
@@ -2304,7 +2403,7 @@ export declare const zCreateFleetBody: z.ZodObject<{
|
|
|
2304
2403
|
enabled: z.ZodBoolean;
|
|
2305
2404
|
controllerRoleArn: z.ZodOptional<z.ZodString>;
|
|
2306
2405
|
}, z.core.$strip>>;
|
|
2307
|
-
constraints: z.ZodOptional<z.ZodObject<{
|
|
2406
|
+
constraints: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
2308
2407
|
'karpenter.sh/capacity-type': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2309
2408
|
"on-demand": "on-demand";
|
|
2310
2409
|
spot: "spot";
|
|
@@ -2313,7 +2412,7 @@ export declare const zCreateFleetBody: z.ZodObject<{
|
|
|
2313
2412
|
amd64: "amd64";
|
|
2314
2413
|
arm64: "arm64";
|
|
2315
2414
|
}>>>>;
|
|
2316
|
-
'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2415
|
+
'cfke.io/instance-family': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2317
2416
|
p3: "p3";
|
|
2318
2417
|
cx: "cx";
|
|
2319
2418
|
h1: "h1";
|
|
@@ -2472,8 +2571,8 @@ export declare const zCreateFleetBody: z.ZodObject<{
|
|
|
2472
2571
|
x8g: "x8g";
|
|
2473
2572
|
z1d: "z1d";
|
|
2474
2573
|
z3: "z3";
|
|
2475
|
-
}
|
|
2476
|
-
'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2574
|
+
}>>>>;
|
|
2575
|
+
'topology.kubernetes.io/region': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2477
2576
|
"africa-south1": "africa-south1";
|
|
2478
2577
|
"ap-northeast-1": "ap-northeast-1";
|
|
2479
2578
|
"ap-northeast-2": "ap-northeast-2";
|
|
@@ -2538,8 +2637,8 @@ export declare const zCreateFleetBody: z.ZodObject<{
|
|
|
2538
2637
|
"us-west2": "us-west2";
|
|
2539
2638
|
"us-west3": "us-west3";
|
|
2540
2639
|
"us-west4": "us-west4";
|
|
2541
|
-
}
|
|
2542
|
-
}, z.core.$strip
|
|
2640
|
+
}>>>>;
|
|
2641
|
+
}, z.core.$strip>>>;
|
|
2543
2642
|
scalingProfile: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
2544
2643
|
aggressive: "aggressive";
|
|
2545
2644
|
conservative: "conservative";
|
|
@@ -2584,16 +2683,16 @@ export declare const zGetFleetResponse: z.ZodObject<{
|
|
|
2584
2683
|
enabled: z.ZodBoolean;
|
|
2585
2684
|
controllerRoleArn: z.ZodOptional<z.ZodString>;
|
|
2586
2685
|
}, z.core.$strip>>;
|
|
2587
|
-
constraints: z.
|
|
2588
|
-
'karpenter.sh/capacity-type': z.ZodDefault<z.
|
|
2686
|
+
constraints: z.ZodDefault<z.ZodObject<{
|
|
2687
|
+
'karpenter.sh/capacity-type': z.ZodDefault<z.ZodArray<z.ZodEnum<{
|
|
2589
2688
|
"on-demand": "on-demand";
|
|
2590
2689
|
spot: "spot";
|
|
2591
|
-
}
|
|
2592
|
-
'kubernetes.io/arch': z.ZodDefault<z.
|
|
2690
|
+
}>>>;
|
|
2691
|
+
'kubernetes.io/arch': z.ZodDefault<z.ZodArray<z.ZodEnum<{
|
|
2593
2692
|
amd64: "amd64";
|
|
2594
2693
|
arm64: "arm64";
|
|
2595
|
-
}
|
|
2596
|
-
'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2694
|
+
}>>>;
|
|
2695
|
+
'cfke.io/instance-family': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2597
2696
|
p3: "p3";
|
|
2598
2697
|
cx: "cx";
|
|
2599
2698
|
h1: "h1";
|
|
@@ -2752,8 +2851,8 @@ export declare const zGetFleetResponse: z.ZodObject<{
|
|
|
2752
2851
|
x8g: "x8g";
|
|
2753
2852
|
z1d: "z1d";
|
|
2754
2853
|
z3: "z3";
|
|
2755
|
-
}
|
|
2756
|
-
'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2854
|
+
}>>>>;
|
|
2855
|
+
'topology.kubernetes.io/region': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2757
2856
|
"africa-south1": "africa-south1";
|
|
2758
2857
|
"ap-northeast-1": "ap-northeast-1";
|
|
2759
2858
|
"ap-northeast-2": "ap-northeast-2";
|
|
@@ -2818,13 +2917,17 @@ export declare const zGetFleetResponse: z.ZodObject<{
|
|
|
2818
2917
|
"us-west2": "us-west2";
|
|
2819
2918
|
"us-west3": "us-west3";
|
|
2820
2919
|
"us-west4": "us-west4";
|
|
2821
|
-
}
|
|
2920
|
+
}>>>>;
|
|
2822
2921
|
}, z.core.$strip>>;
|
|
2823
2922
|
scalingProfile: z.ZodDefault<z.ZodEnum<{
|
|
2824
2923
|
aggressive: "aggressive";
|
|
2825
2924
|
conservative: "conservative";
|
|
2826
2925
|
}>>;
|
|
2827
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;
|
|
2828
2931
|
}, z.core.$strip>;
|
|
2829
2932
|
export declare const zUpdateFleetBody: z.ZodObject<{
|
|
2830
2933
|
limits: z.ZodOptional<z.ZodObject<{
|
|
@@ -2842,16 +2945,16 @@ export declare const zUpdateFleetBody: z.ZodObject<{
|
|
|
2842
2945
|
enabled: z.ZodBoolean;
|
|
2843
2946
|
controllerRoleArn: z.ZodOptional<z.ZodString>;
|
|
2844
2947
|
}, z.core.$strip>>;
|
|
2845
|
-
constraints: z.ZodOptional<z.ZodObject<{
|
|
2846
|
-
'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<{
|
|
2847
2950
|
"on-demand": "on-demand";
|
|
2848
2951
|
spot: "spot";
|
|
2849
|
-
}
|
|
2850
|
-
'kubernetes.io/arch': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2952
|
+
}>>>>;
|
|
2953
|
+
'kubernetes.io/arch': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2851
2954
|
amd64: "amd64";
|
|
2852
2955
|
arm64: "arm64";
|
|
2853
|
-
}
|
|
2854
|
-
'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2956
|
+
}>>>>;
|
|
2957
|
+
'cfke.io/instance-family': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2855
2958
|
p3: "p3";
|
|
2856
2959
|
cx: "cx";
|
|
2857
2960
|
h1: "h1";
|
|
@@ -3010,8 +3113,8 @@ export declare const zUpdateFleetBody: z.ZodObject<{
|
|
|
3010
3113
|
x8g: "x8g";
|
|
3011
3114
|
z1d: "z1d";
|
|
3012
3115
|
z3: "z3";
|
|
3013
|
-
}
|
|
3014
|
-
'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
3116
|
+
}>>>>;
|
|
3117
|
+
'topology.kubernetes.io/region': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
3015
3118
|
"africa-south1": "africa-south1";
|
|
3016
3119
|
"ap-northeast-1": "ap-northeast-1";
|
|
3017
3120
|
"ap-northeast-2": "ap-northeast-2";
|
|
@@ -3076,826 +3179,886 @@ export declare const zUpdateFleetBody: z.ZodObject<{
|
|
|
3076
3179
|
"us-west2": "us-west2";
|
|
3077
3180
|
"us-west3": "us-west3";
|
|
3078
3181
|
"us-west4": "us-west4";
|
|
3079
|
-
}
|
|
3080
|
-
}, z.core.$strip
|
|
3081
|
-
scalingProfile: z.ZodEnum<{
|
|
3182
|
+
}>>>>;
|
|
3183
|
+
}, z.core.$strip>>>;
|
|
3184
|
+
scalingProfile: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
3082
3185
|
aggressive: "aggressive";
|
|
3083
3186
|
conservative: "conservative";
|
|
3084
|
-
}>;
|
|
3085
|
-
}, z.core.$strip>;
|
|
3086
|
-
export declare const zUpdateFleetPath: z.ZodObject<{
|
|
3087
|
-
cluster_id: z.ZodString;
|
|
3088
|
-
fleet_name: z.ZodString;
|
|
3089
|
-
}, z.core.$strip>;
|
|
3090
|
-
/**
|
|
3091
|
-
* Successfully updated.
|
|
3092
|
-
*/
|
|
3093
|
-
export declare const zUpdateFleetResponse: z.ZodString;
|
|
3094
|
-
export declare const zQueryClusterPath: z.ZodObject<{
|
|
3095
|
-
cluster_id: z.ZodString;
|
|
3096
|
-
}, z.core.$strip>;
|
|
3097
|
-
/**
|
|
3098
|
-
* An array of clusters
|
|
3099
|
-
*/
|
|
3100
|
-
export declare const zListClustersResponse: z.ZodArray<z.ZodObject<{
|
|
3101
|
-
name: z.ZodString;
|
|
3102
|
-
tier: z.ZodEnum<{
|
|
3103
|
-
basic: "basic";
|
|
3104
|
-
pro: "pro";
|
|
3105
|
-
}>;
|
|
3106
|
-
region: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
3107
|
-
"staging-1a": "staging-1a";
|
|
3108
|
-
"northamerica-central-1": "northamerica-central-1";
|
|
3109
|
-
"europe-central-1a": "europe-central-1a";
|
|
3110
|
-
"northamerica-central-1a": "northamerica-central-1a";
|
|
3111
|
-
}>>>;
|
|
3112
|
-
id: z.ZodUUID;
|
|
3113
|
-
status: z.ZodEnum<{
|
|
3114
|
-
deleted: "deleted";
|
|
3115
|
-
failed: "failed";
|
|
3116
|
-
active: "active";
|
|
3117
|
-
disabled: "disabled";
|
|
3118
|
-
creating: "creating";
|
|
3119
|
-
deployed: "deployed";
|
|
3120
|
-
updating: "updating";
|
|
3121
|
-
}>;
|
|
3122
|
-
endpoint: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
|
|
3123
|
-
"": "";
|
|
3124
|
-
}>]>>;
|
|
3125
|
-
endpoint_public: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
|
|
3126
|
-
"": "";
|
|
3127
|
-
}>]>>;
|
|
3128
|
-
certificate_ca: z.ZodOptional<z.ZodString>;
|
|
3129
|
-
version_current: z.ZodOptional<z.ZodString>;
|
|
3130
|
-
created_at: z.ZodOptional<z.ZodString>;
|
|
3131
|
-
updated_at: z.ZodOptional<z.ZodString>;
|
|
3132
|
-
ready: z.ZodOptional<z.ZodBoolean>;
|
|
3133
|
-
version_channel: z.ZodOptional<z.ZodString>;
|
|
3134
|
-
}, z.core.$strip>>;
|
|
3135
|
-
export declare const zCreateClusterBody: z.ZodObject<{
|
|
3136
|
-
name: z.ZodString;
|
|
3137
|
-
tier: z.ZodEnum<{
|
|
3138
|
-
basic: "basic";
|
|
3139
|
-
pro: "pro";
|
|
3140
|
-
}>;
|
|
3141
|
-
region: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
3142
|
-
"staging-1a": "staging-1a";
|
|
3143
|
-
"northamerica-central-1": "northamerica-central-1";
|
|
3144
|
-
"europe-central-1a": "europe-central-1a";
|
|
3145
|
-
"northamerica-central-1a": "northamerica-central-1a";
|
|
3146
|
-
}>>>;
|
|
3147
|
-
version_channel: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
3148
|
-
"1.x.x-cfke.x": "1.x.x-cfke.x";
|
|
3149
|
-
"1.31.x-cfke.x": "1.31.x-cfke.x";
|
|
3150
|
-
"1.32.x-cfke.x": "1.32.x-cfke.x";
|
|
3151
|
-
"1.33.x-cfke.x": "1.33.x-cfke.x";
|
|
3152
|
-
}>>>;
|
|
3153
|
-
}, z.core.$strip>;
|
|
3154
|
-
/**
|
|
3155
|
-
* Successfully created. Returns created Cluster ID.
|
|
3156
|
-
*/
|
|
3157
|
-
export declare const zCreateClusterResponse: z.ZodString;
|
|
3158
|
-
export declare const zDeleteClusterPath: z.ZodObject<{
|
|
3159
|
-
cluster_id: z.ZodString;
|
|
3160
|
-
}, z.core.$strip>;
|
|
3161
|
-
/**
|
|
3162
|
-
* Successfully deleted.
|
|
3163
|
-
*/
|
|
3164
|
-
export declare const zDeleteClusterResponse: z.ZodString;
|
|
3165
|
-
export declare const zGetClusterPath: z.ZodObject<{
|
|
3166
|
-
cluster_id: z.ZodString;
|
|
3167
|
-
}, z.core.$strip>;
|
|
3168
|
-
/**
|
|
3169
|
-
* Returns a single object containing cluster details.
|
|
3170
|
-
*/
|
|
3171
|
-
export declare const zGetClusterResponse: z.ZodObject<{
|
|
3172
|
-
name: z.ZodString;
|
|
3173
|
-
tier: z.ZodEnum<{
|
|
3174
|
-
basic: "basic";
|
|
3175
|
-
pro: "pro";
|
|
3176
|
-
}>;
|
|
3177
|
-
region: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
3178
|
-
"staging-1a": "staging-1a";
|
|
3179
|
-
"northamerica-central-1": "northamerica-central-1";
|
|
3180
|
-
"europe-central-1a": "europe-central-1a";
|
|
3181
|
-
"northamerica-central-1a": "northamerica-central-1a";
|
|
3182
3187
|
}>>>;
|
|
3183
|
-
id: z.ZodUUID;
|
|
3184
|
-
status: z.ZodEnum<{
|
|
3185
|
-
deleted: "deleted";
|
|
3186
|
-
failed: "failed";
|
|
3187
|
-
active: "active";
|
|
3188
|
-
disabled: "disabled";
|
|
3189
|
-
creating: "creating";
|
|
3190
|
-
deployed: "deployed";
|
|
3191
|
-
updating: "updating";
|
|
3192
|
-
}>;
|
|
3193
|
-
endpoint: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
|
|
3194
|
-
"": "";
|
|
3195
|
-
}>]>>;
|
|
3196
|
-
endpoint_public: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
|
|
3197
|
-
"": "";
|
|
3198
|
-
}>]>>;
|
|
3199
|
-
certificate_ca: z.ZodOptional<z.ZodString>;
|
|
3200
|
-
version_current: z.ZodOptional<z.ZodString>;
|
|
3201
|
-
created_at: z.ZodOptional<z.ZodString>;
|
|
3202
|
-
updated_at: z.ZodOptional<z.ZodString>;
|
|
3203
|
-
ready: z.ZodOptional<z.ZodBoolean>;
|
|
3204
|
-
version_channel: z.ZodOptional<z.ZodString>;
|
|
3205
|
-
}, z.core.$strip>;
|
|
3206
|
-
export declare const zUpdateClusterBody: z.ZodObject<{
|
|
3207
|
-
name: z.ZodOptional<z.ZodString>;
|
|
3208
|
-
tier: z.ZodEnum<{
|
|
3209
|
-
basic: "basic";
|
|
3210
|
-
pro: "pro";
|
|
3211
|
-
}>;
|
|
3212
|
-
version_channel: z.ZodOptional<z.ZodString>;
|
|
3213
3188
|
}, z.core.$strip>;
|
|
3214
|
-
export declare const
|
|
3189
|
+
export declare const zUpdateFleetPath: z.ZodObject<{
|
|
3215
3190
|
cluster_id: z.ZodString;
|
|
3191
|
+
fleet_name: z.ZodString;
|
|
3216
3192
|
}, z.core.$strip>;
|
|
3217
3193
|
/**
|
|
3218
|
-
* Successfully updated.
|
|
3194
|
+
* Successfully updated.
|
|
3219
3195
|
*/
|
|
3220
|
-
export declare const
|
|
3221
|
-
|
|
3222
|
-
tier: z.ZodEnum<{
|
|
3223
|
-
basic: "basic";
|
|
3224
|
-
pro: "pro";
|
|
3225
|
-
}>;
|
|
3226
|
-
region: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
3227
|
-
"staging-1a": "staging-1a";
|
|
3228
|
-
"northamerica-central-1": "northamerica-central-1";
|
|
3229
|
-
"europe-central-1a": "europe-central-1a";
|
|
3230
|
-
"northamerica-central-1a": "northamerica-central-1a";
|
|
3231
|
-
}>>>;
|
|
3232
|
-
id: z.ZodUUID;
|
|
3233
|
-
status: z.ZodEnum<{
|
|
3234
|
-
deleted: "deleted";
|
|
3235
|
-
failed: "failed";
|
|
3236
|
-
active: "active";
|
|
3237
|
-
disabled: "disabled";
|
|
3238
|
-
creating: "creating";
|
|
3239
|
-
deployed: "deployed";
|
|
3240
|
-
updating: "updating";
|
|
3241
|
-
}>;
|
|
3242
|
-
endpoint: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
|
|
3243
|
-
"": "";
|
|
3244
|
-
}>]>>;
|
|
3245
|
-
endpoint_public: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
|
|
3246
|
-
"": "";
|
|
3247
|
-
}>]>>;
|
|
3248
|
-
certificate_ca: z.ZodOptional<z.ZodString>;
|
|
3249
|
-
version_current: z.ZodOptional<z.ZodString>;
|
|
3250
|
-
created_at: z.ZodOptional<z.ZodString>;
|
|
3251
|
-
updated_at: z.ZodOptional<z.ZodString>;
|
|
3252
|
-
ready: z.ZodOptional<z.ZodBoolean>;
|
|
3253
|
-
version_channel: z.ZodOptional<z.ZodString>;
|
|
3254
|
-
}, z.core.$strip>;
|
|
3255
|
-
export declare const zGetJoinInformationPath: z.ZodObject<{
|
|
3196
|
+
export declare const zUpdateFleetResponse: z.ZodString;
|
|
3197
|
+
export declare const zListChartsPath: z.ZodObject<{
|
|
3256
3198
|
cluster_id: z.ZodString;
|
|
3257
3199
|
}, z.core.$strip>;
|
|
3258
3200
|
/**
|
|
3259
|
-
* An
|
|
3260
|
-
*/
|
|
3261
|
-
export declare const zGetJoinInformationResponse: z.ZodObject<{
|
|
3262
|
-
certificate_authority: z.ZodString;
|
|
3263
|
-
endpoint: z.ZodURL;
|
|
3264
|
-
cluster_dns: z.ZodString;
|
|
3265
|
-
auth_key: z.ZodString;
|
|
3266
|
-
bootstrap_token: z.ZodString;
|
|
3267
|
-
versions: z.ZodObject<{
|
|
3268
|
-
kubernetes: z.ZodString;
|
|
3269
|
-
tailscale: z.ZodString;
|
|
3270
|
-
containerd: z.ZodString;
|
|
3271
|
-
nvidia_driver: z.ZodString;
|
|
3272
|
-
}, z.core.$strip>;
|
|
3273
|
-
third_party_api_access_config: z.ZodObject<{
|
|
3274
|
-
metadata_url: z.ZodString;
|
|
3275
|
-
aws_role_arn: z.ZodString;
|
|
3276
|
-
gcp_workload_identity_provider: z.ZodString;
|
|
3277
|
-
}, z.core.$strip>;
|
|
3278
|
-
}, z.core.$strip>;
|
|
3279
|
-
/**
|
|
3280
|
-
* An array of invites
|
|
3281
|
-
*/
|
|
3282
|
-
export declare const zListInvitesResponse: z.ZodArray<z.ZodObject<{
|
|
3283
|
-
id: z.ZodOptional<z.ZodString>;
|
|
3284
|
-
organization_id: z.ZodOptional<z.ZodUUID>;
|
|
3285
|
-
date_created: z.ZodISODateTime;
|
|
3286
|
-
email: z.ZodOptional<z.ZodEmail>;
|
|
3287
|
-
code: z.ZodOptional<z.ZodString>;
|
|
3288
|
-
}, z.core.$strip>>;
|
|
3289
|
-
export declare const zCreateInviteBody: z.ZodObject<{
|
|
3290
|
-
email: z.ZodOptional<z.ZodString>;
|
|
3291
|
-
}, z.core.$strip>;
|
|
3292
|
-
/**
|
|
3293
|
-
* Successfully created. Returns created invite details.
|
|
3294
|
-
*/
|
|
3295
|
-
export declare const zCreateInviteResponse: z.ZodObject<{
|
|
3296
|
-
id: z.ZodOptional<z.ZodString>;
|
|
3297
|
-
organization_id: z.ZodOptional<z.ZodUUID>;
|
|
3298
|
-
date_created: z.ZodISODateTime;
|
|
3299
|
-
email: z.ZodOptional<z.ZodEmail>;
|
|
3300
|
-
code: z.ZodOptional<z.ZodString>;
|
|
3301
|
-
}, z.core.$strip>;
|
|
3302
|
-
export declare const zGetInvitePath: z.ZodObject<{
|
|
3303
|
-
code: z.ZodString;
|
|
3304
|
-
}, z.core.$strip>;
|
|
3305
|
-
/**
|
|
3306
|
-
* Returns a single object containing invite details.
|
|
3307
|
-
*/
|
|
3308
|
-
export declare const zGetInviteResponse: z.ZodObject<{
|
|
3309
|
-
id: z.ZodOptional<z.ZodString>;
|
|
3310
|
-
organization_id: z.ZodOptional<z.ZodUUID>;
|
|
3311
|
-
date_created: z.ZodISODateTime;
|
|
3312
|
-
email: z.ZodOptional<z.ZodEmail>;
|
|
3313
|
-
code: z.ZodOptional<z.ZodString>;
|
|
3314
|
-
}, z.core.$strip>;
|
|
3315
|
-
export declare const zDeleteInvitePath: z.ZodObject<{
|
|
3316
|
-
email: z.ZodString;
|
|
3317
|
-
}, z.core.$strip>;
|
|
3318
|
-
/**
|
|
3319
|
-
* An array of chart listings in the marketplace.
|
|
3201
|
+
* An array of charts
|
|
3320
3202
|
*/
|
|
3321
|
-
export declare const
|
|
3203
|
+
export declare const zListChartsResponse: z.ZodArray<z.ZodObject<{
|
|
3204
|
+
values: z.ZodString;
|
|
3205
|
+
version_channel: z.ZodString;
|
|
3322
3206
|
name: z.ZodString;
|
|
3323
|
-
|
|
3324
|
-
|
|
3325
|
-
|
|
3326
|
-
|
|
3327
|
-
|
|
3328
|
-
|
|
3329
|
-
|
|
3330
|
-
appVersion: z.ZodOptional<z.ZodString>;
|
|
3331
|
-
apiVersion: z.ZodOptional<z.ZodString>;
|
|
3332
|
-
keywords: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3333
|
-
home: z.ZodOptional<z.ZodString>;
|
|
3334
|
-
icon: z.ZodOptional<z.ZodString>;
|
|
3335
|
-
sources: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3336
|
-
maintainers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3337
|
-
name: z.ZodString;
|
|
3338
|
-
email: z.ZodOptional<z.ZodString>;
|
|
3339
|
-
}, z.core.$strip>>>;
|
|
3340
|
-
}, z.core.$strip>>;
|
|
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;
|
|
3341
3214
|
}, z.core.$strip>>;
|
|
3342
|
-
export declare const
|
|
3343
|
-
|
|
3215
|
+
export declare const zCreateChartBody: z.ZodObject<{
|
|
3216
|
+
values: z.ZodString;
|
|
3344
3217
|
version_channel: z.ZodString;
|
|
3218
|
+
name: z.ZodString;
|
|
3219
|
+
namespace: z.ZodString;
|
|
3220
|
+
chart: z.ZodString;
|
|
3345
3221
|
}, z.core.$strip>;
|
|
3346
|
-
|
|
3347
|
-
|
|
3348
|
-
*/
|
|
3349
|
-
export declare const zGetMarketplaceChartFilesResponse: z.ZodObject<{
|
|
3350
|
-
chartYaml: z.ZodOptional<z.ZodString>;
|
|
3351
|
-
valuesYaml: z.ZodOptional<z.ZodString>;
|
|
3352
|
-
valuesSchemaJson: z.ZodOptional<z.ZodString>;
|
|
3353
|
-
}, z.core.$strip>;
|
|
3354
|
-
/**
|
|
3355
|
-
* JSON-RPC 2.0 request payload
|
|
3356
|
-
*/
|
|
3357
|
-
export declare const zPostMcpBody: z.ZodObject<{
|
|
3358
|
-
jsonrpc: z.ZodOptional<z.ZodString>;
|
|
3359
|
-
method: z.ZodOptional<z.ZodString>;
|
|
3360
|
-
id: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>;
|
|
3361
|
-
params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3362
|
-
}, z.core.$strip>;
|
|
3363
|
-
/**
|
|
3364
|
-
* JSON-RPC 2.0 success or error response
|
|
3365
|
-
*/
|
|
3366
|
-
export declare const zPostMcpResponse: z.ZodObject<{
|
|
3367
|
-
jsonrpc: z.ZodOptional<z.ZodString>;
|
|
3368
|
-
id: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>;
|
|
3369
|
-
result: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3370
|
-
error: z.ZodOptional<z.ZodObject<{
|
|
3371
|
-
code: z.ZodOptional<z.ZodInt>;
|
|
3372
|
-
message: z.ZodOptional<z.ZodString>;
|
|
3373
|
-
}, z.core.$strip>>;
|
|
3222
|
+
export declare const zCreateChartPath: z.ZodObject<{
|
|
3223
|
+
cluster_id: z.ZodString;
|
|
3374
3224
|
}, z.core.$strip>;
|
|
3375
3225
|
/**
|
|
3376
|
-
*
|
|
3226
|
+
* Successfully created. Returns created Chart ID.
|
|
3377
3227
|
*/
|
|
3378
|
-
export declare const
|
|
3379
|
-
|
|
3380
|
-
|
|
3381
|
-
|
|
3382
|
-
quota: z.ZodObject<{
|
|
3383
|
-
basic_clusters_max: z.ZodInt;
|
|
3384
|
-
basic_clusters_available: z.ZodInt;
|
|
3385
|
-
pro_clusters_max: z.ZodInt;
|
|
3386
|
-
pro_clusters_available: z.ZodInt;
|
|
3387
|
-
fleets_max: z.ZodInt;
|
|
3388
|
-
cluster_tiers: z.ZodArray<z.ZodString>;
|
|
3389
|
-
regions: z.ZodArray<z.ZodString>;
|
|
3390
|
-
versions: z.ZodArray<z.ZodObject<{
|
|
3391
|
-
id: z.ZodString;
|
|
3392
|
-
label: z.ZodString;
|
|
3393
|
-
}, z.core.$strip>>;
|
|
3394
|
-
cfcr_storage_gb: z.ZodInt;
|
|
3395
|
-
}, z.core.$strip>;
|
|
3396
|
-
status: z.ZodEnum<{
|
|
3397
|
-
active: "active";
|
|
3398
|
-
closed: "closed";
|
|
3399
|
-
suspended: "suspended";
|
|
3400
|
-
}>;
|
|
3401
|
-
}, z.core.$strip>;
|
|
3402
|
-
export declare const zCreateOrganizationBody: z.ZodObject<{
|
|
3403
|
-
email: z.ZodEmail;
|
|
3404
|
-
first_name: z.ZodString;
|
|
3405
|
-
last_name: z.ZodString;
|
|
3406
|
-
company_name: z.ZodString;
|
|
3407
|
-
password: z.ZodString;
|
|
3228
|
+
export declare const zCreateChartResponse: z.ZodString;
|
|
3229
|
+
export declare const zDeleteChartPath: z.ZodObject<{
|
|
3230
|
+
cluster_id: z.ZodString;
|
|
3231
|
+
chart_name: z.ZodString;
|
|
3408
3232
|
}, z.core.$strip>;
|
|
3409
3233
|
/**
|
|
3410
|
-
*
|
|
3234
|
+
* Successfully deleted.
|
|
3411
3235
|
*/
|
|
3412
|
-
export declare const
|
|
3413
|
-
|
|
3414
|
-
|
|
3415
|
-
|
|
3416
|
-
}, z.core.$strip>>;
|
|
3417
|
-
export declare const zListTagsPath: z.ZodObject<{
|
|
3418
|
-
region: z.ZodString;
|
|
3419
|
-
repository: z.ZodString;
|
|
3236
|
+
export declare const zDeleteChartResponse: z.ZodString;
|
|
3237
|
+
export declare const zGetChartPath: z.ZodObject<{
|
|
3238
|
+
cluster_id: z.ZodString;
|
|
3239
|
+
chart_name: z.ZodString;
|
|
3420
3240
|
}, z.core.$strip>;
|
|
3421
3241
|
/**
|
|
3422
|
-
*
|
|
3242
|
+
* Returns a single object containing chart details.
|
|
3423
3243
|
*/
|
|
3424
|
-
export declare const
|
|
3244
|
+
export declare const zGetChartResponse: z.ZodObject<{
|
|
3245
|
+
values: z.ZodString;
|
|
3246
|
+
version_channel: z.ZodString;
|
|
3425
3247
|
name: z.ZodString;
|
|
3426
|
-
|
|
3427
|
-
|
|
3428
|
-
|
|
3429
|
-
|
|
3430
|
-
|
|
3431
|
-
|
|
3432
|
-
|
|
3433
|
-
}, z.core.$strip>>;
|
|
3434
|
-
totalSize: z.ZodNumber;
|
|
3435
|
-
}, z.core.$strip>;
|
|
3436
|
-
export declare const zDeleteTagPath: z.ZodObject<{
|
|
3437
|
-
region: z.ZodString;
|
|
3438
|
-
repository: z.ZodString;
|
|
3439
|
-
tag: 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;
|
|
3440
3255
|
}, z.core.$strip>;
|
|
3441
|
-
export declare const
|
|
3442
|
-
|
|
3443
|
-
|
|
3444
|
-
|
|
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<{
|
|
3261
|
+
cluster_id: z.ZodString;
|
|
3262
|
+
chart_name: z.ZodString;
|
|
3445
3263
|
}, z.core.$strip>;
|
|
3446
3264
|
/**
|
|
3447
|
-
*
|
|
3265
|
+
* Successfully updated.
|
|
3448
3266
|
*/
|
|
3449
|
-
export declare const
|
|
3267
|
+
export declare const zUpdateChartResponse: z.ZodString;
|
|
3268
|
+
/**
|
|
3269
|
+
* An array of clusters
|
|
3270
|
+
*/
|
|
3271
|
+
export declare const zListClustersResponse: z.ZodArray<z.ZodObject<{
|
|
3450
3272
|
name: z.ZodString;
|
|
3451
|
-
|
|
3452
|
-
|
|
3453
|
-
|
|
3454
|
-
|
|
3273
|
+
tier: z.ZodDefault<z.ZodEnum<{
|
|
3274
|
+
basic: "basic";
|
|
3275
|
+
enterprise: "enterprise";
|
|
3276
|
+
pro: "pro";
|
|
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;
|
|
3455
3292
|
}, z.core.$strip>>;
|
|
3456
|
-
|
|
3457
|
-
|
|
3458
|
-
|
|
3459
|
-
|
|
3460
|
-
|
|
3461
|
-
|
|
3462
|
-
|
|
3463
|
-
|
|
3464
|
-
|
|
3465
|
-
|
|
3466
|
-
|
|
3467
|
-
|
|
3468
|
-
|
|
3469
|
-
|
|
3470
|
-
|
|
3471
|
-
|
|
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>>;
|
|
3301
|
+
id: z.ZodUUID;
|
|
3302
|
+
status: z.ZodEnum<{
|
|
3303
|
+
disabled: "disabled";
|
|
3304
|
+
creating: "creating";
|
|
3305
|
+
deployed: "deployed";
|
|
3306
|
+
updating: "updating";
|
|
3307
|
+
}>;
|
|
3308
|
+
endpoint: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
|
|
3309
|
+
"": "";
|
|
3310
|
+
}>]>>;
|
|
3311
|
+
endpoint_public: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
|
|
3312
|
+
"": "";
|
|
3313
|
+
}>]>>;
|
|
3314
|
+
certificate_ca: z.ZodOptional<z.ZodString>;
|
|
3315
|
+
version_current: z.ZodOptional<z.ZodString>;
|
|
3316
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
3317
|
+
updated_at: z.ZodOptional<z.ZodString>;
|
|
3318
|
+
ready: z.ZodBoolean;
|
|
3319
|
+
}, z.core.$strip>>;
|
|
3320
|
+
export declare const zCreateClusterBody: z.ZodObject<{
|
|
3321
|
+
name: z.ZodString;
|
|
3322
|
+
tier: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
3323
|
+
basic: "basic";
|
|
3324
|
+
enterprise: "enterprise";
|
|
3325
|
+
pro: "pro";
|
|
3326
|
+
}>>>;
|
|
3327
|
+
version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
3328
|
+
release_channel: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
3329
|
+
stable: "stable";
|
|
3330
|
+
rapid: "rapid";
|
|
3331
|
+
extended: "extended";
|
|
3332
|
+
}>>>;
|
|
3333
|
+
features: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
3334
|
+
gpu_sharing_strategy: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
3335
|
+
none: "none";
|
|
3336
|
+
mps: "mps";
|
|
3337
|
+
time_slicing: "time_slicing";
|
|
3338
|
+
}>>>;
|
|
3339
|
+
gpu_max_shared_clients_per_gpu: z.ZodDefault<z.ZodOptional<z.ZodInt>>;
|
|
3340
|
+
cilium_socket_lb_host_namespace_only: z.ZodOptional<z.ZodBoolean>;
|
|
3472
3341
|
}, z.core.$strip>>>;
|
|
3473
|
-
size: z.ZodNumber;
|
|
3474
3342
|
region: z.ZodString;
|
|
3475
|
-
|
|
3476
|
-
|
|
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>>>;
|
|
3477
3350
|
}, z.core.$strip>;
|
|
3478
3351
|
/**
|
|
3479
|
-
*
|
|
3352
|
+
* Successfully created. Returns created Cluster ID.
|
|
3480
3353
|
*/
|
|
3481
|
-
export declare const
|
|
3482
|
-
|
|
3483
|
-
|
|
3484
|
-
status: z.ZodEnum<{
|
|
3485
|
-
closed: "closed";
|
|
3486
|
-
waiting_on_us: "waiting_on_us";
|
|
3487
|
-
waiting_on_user: "waiting_on_user";
|
|
3488
|
-
}>;
|
|
3489
|
-
category: z.ZodEnum<{
|
|
3490
|
-
billing: "billing";
|
|
3491
|
-
technical: "technical";
|
|
3492
|
-
general: "general";
|
|
3493
|
-
}>;
|
|
3494
|
-
summary: z.ZodString;
|
|
3495
|
-
closed_at: z.ZodOptional<z.ZodISODateTime>;
|
|
3496
|
-
date_created: z.ZodISODateTime;
|
|
3497
|
-
date_updated: z.ZodISODateTime;
|
|
3498
|
-
messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3499
|
-
id: z.ZodString;
|
|
3500
|
-
type: z.ZodEnum<{
|
|
3501
|
-
customer_reply: "customer_reply";
|
|
3502
|
-
agent_reply: "agent_reply";
|
|
3503
|
-
}>;
|
|
3504
|
-
body: z.ZodString;
|
|
3505
|
-
author_first_name: z.ZodOptional<z.ZodString>;
|
|
3506
|
-
author_last_name: z.ZodOptional<z.ZodString>;
|
|
3507
|
-
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3508
|
-
id: z.ZodString;
|
|
3509
|
-
filename: z.ZodString;
|
|
3510
|
-
content_type: z.ZodString;
|
|
3511
|
-
size: z.ZodInt;
|
|
3512
|
-
}, z.core.$strip>>>;
|
|
3513
|
-
date_created: z.ZodISODateTime;
|
|
3514
|
-
}, z.core.$strip>>>;
|
|
3515
|
-
}, z.core.$strip>>;
|
|
3354
|
+
export declare const zCreateClusterResponse: z.ZodString;
|
|
3355
|
+
export declare const zDeleteClusterPath: z.ZodObject<{
|
|
3356
|
+
cluster_id: z.ZodString;
|
|
3516
3357
|
}, z.core.$strip>;
|
|
3517
|
-
|
|
3518
|
-
|
|
3519
|
-
|
|
3358
|
+
/**
|
|
3359
|
+
* Successfully deleted. The cluster has been torn down.
|
|
3360
|
+
*/
|
|
3361
|
+
export declare const zDeleteClusterResponse: z.ZodString;
|
|
3362
|
+
export declare const zGetClusterPath: z.ZodObject<{
|
|
3363
|
+
cluster_id: z.ZodString;
|
|
3520
3364
|
}, z.core.$strip>;
|
|
3521
3365
|
/**
|
|
3522
|
-
*
|
|
3366
|
+
* Returns a single object containing cluster details.
|
|
3523
3367
|
*/
|
|
3524
|
-
export declare const
|
|
3525
|
-
|
|
3368
|
+
export declare const zGetClusterResponse: z.ZodObject<{
|
|
3369
|
+
name: z.ZodString;
|
|
3370
|
+
tier: z.ZodDefault<z.ZodEnum<{
|
|
3371
|
+
basic: "basic";
|
|
3372
|
+
enterprise: "enterprise";
|
|
3373
|
+
pro: "pro";
|
|
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>>;
|
|
3398
|
+
id: z.ZodUUID;
|
|
3526
3399
|
status: z.ZodEnum<{
|
|
3527
|
-
|
|
3528
|
-
|
|
3529
|
-
|
|
3530
|
-
|
|
3531
|
-
category: z.ZodEnum<{
|
|
3532
|
-
billing: "billing";
|
|
3533
|
-
technical: "technical";
|
|
3534
|
-
general: "general";
|
|
3400
|
+
disabled: "disabled";
|
|
3401
|
+
creating: "creating";
|
|
3402
|
+
deployed: "deployed";
|
|
3403
|
+
updating: "updating";
|
|
3535
3404
|
}>;
|
|
3536
|
-
|
|
3537
|
-
|
|
3538
|
-
|
|
3539
|
-
|
|
3540
|
-
|
|
3541
|
-
|
|
3542
|
-
|
|
3543
|
-
|
|
3544
|
-
|
|
3545
|
-
|
|
3546
|
-
|
|
3547
|
-
|
|
3548
|
-
|
|
3549
|
-
|
|
3550
|
-
|
|
3551
|
-
|
|
3552
|
-
|
|
3553
|
-
|
|
3554
|
-
|
|
3555
|
-
|
|
3405
|
+
endpoint: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
|
|
3406
|
+
"": "";
|
|
3407
|
+
}>]>>;
|
|
3408
|
+
endpoint_public: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
|
|
3409
|
+
"": "";
|
|
3410
|
+
}>]>>;
|
|
3411
|
+
certificate_ca: z.ZodOptional<z.ZodString>;
|
|
3412
|
+
version_current: z.ZodOptional<z.ZodString>;
|
|
3413
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
3414
|
+
updated_at: z.ZodOptional<z.ZodString>;
|
|
3415
|
+
ready: z.ZodBoolean;
|
|
3416
|
+
}, z.core.$strip>;
|
|
3417
|
+
export declare const zUpdateClusterBody: z.ZodObject<{
|
|
3418
|
+
name: z.ZodString;
|
|
3419
|
+
tier: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
3420
|
+
basic: "basic";
|
|
3421
|
+
enterprise: "enterprise";
|
|
3422
|
+
pro: "pro";
|
|
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>;
|
|
3556
3438
|
}, z.core.$strip>>>;
|
|
3557
3439
|
}, z.core.$strip>;
|
|
3558
|
-
export declare const
|
|
3559
|
-
|
|
3440
|
+
export declare const zUpdateClusterPath: z.ZodObject<{
|
|
3441
|
+
cluster_id: z.ZodString;
|
|
3560
3442
|
}, z.core.$strip>;
|
|
3561
3443
|
/**
|
|
3562
|
-
*
|
|
3444
|
+
* Successfully updated. Returns updated cluster details.
|
|
3563
3445
|
*/
|
|
3564
|
-
export declare const
|
|
3565
|
-
|
|
3446
|
+
export declare const zUpdateClusterResponse: z.ZodObject<{
|
|
3447
|
+
name: z.ZodString;
|
|
3448
|
+
tier: z.ZodDefault<z.ZodEnum<{
|
|
3449
|
+
basic: "basic";
|
|
3450
|
+
enterprise: "enterprise";
|
|
3451
|
+
pro: "pro";
|
|
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>>;
|
|
3476
|
+
id: z.ZodUUID;
|
|
3566
3477
|
status: z.ZodEnum<{
|
|
3567
|
-
|
|
3568
|
-
|
|
3569
|
-
|
|
3570
|
-
|
|
3571
|
-
category: z.ZodEnum<{
|
|
3572
|
-
billing: "billing";
|
|
3573
|
-
technical: "technical";
|
|
3574
|
-
general: "general";
|
|
3478
|
+
disabled: "disabled";
|
|
3479
|
+
creating: "creating";
|
|
3480
|
+
deployed: "deployed";
|
|
3481
|
+
updating: "updating";
|
|
3575
3482
|
}>;
|
|
3576
|
-
|
|
3577
|
-
|
|
3578
|
-
|
|
3579
|
-
|
|
3580
|
-
|
|
3581
|
-
|
|
3582
|
-
|
|
3583
|
-
|
|
3584
|
-
|
|
3585
|
-
|
|
3586
|
-
|
|
3587
|
-
author_first_name: z.ZodOptional<z.ZodString>;
|
|
3588
|
-
author_last_name: z.ZodOptional<z.ZodString>;
|
|
3589
|
-
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3590
|
-
id: z.ZodString;
|
|
3591
|
-
filename: z.ZodString;
|
|
3592
|
-
content_type: z.ZodString;
|
|
3593
|
-
size: z.ZodInt;
|
|
3594
|
-
}, z.core.$strip>>>;
|
|
3595
|
-
date_created: z.ZodISODateTime;
|
|
3596
|
-
}, z.core.$strip>>>;
|
|
3483
|
+
endpoint: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
|
|
3484
|
+
"": "";
|
|
3485
|
+
}>]>>;
|
|
3486
|
+
endpoint_public: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
|
|
3487
|
+
"": "";
|
|
3488
|
+
}>]>>;
|
|
3489
|
+
certificate_ca: z.ZodOptional<z.ZodString>;
|
|
3490
|
+
version_current: z.ZodOptional<z.ZodString>;
|
|
3491
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
3492
|
+
updated_at: z.ZodOptional<z.ZodString>;
|
|
3493
|
+
ready: z.ZodBoolean;
|
|
3597
3494
|
}, z.core.$strip>;
|
|
3598
|
-
export declare const
|
|
3599
|
-
|
|
3495
|
+
export declare const zGetJoinInformationPath: z.ZodObject<{
|
|
3496
|
+
cluster_id: z.ZodString;
|
|
3600
3497
|
}, z.core.$strip>;
|
|
3601
3498
|
/**
|
|
3602
|
-
*
|
|
3499
|
+
* An object of cluster join information
|
|
3603
3500
|
*/
|
|
3604
|
-
export declare const
|
|
3605
|
-
|
|
3606
|
-
|
|
3607
|
-
|
|
3608
|
-
|
|
3609
|
-
|
|
3610
|
-
|
|
3611
|
-
|
|
3612
|
-
|
|
3613
|
-
|
|
3614
|
-
|
|
3615
|
-
|
|
3616
|
-
|
|
3617
|
-
|
|
3618
|
-
|
|
3619
|
-
|
|
3620
|
-
|
|
3621
|
-
|
|
3622
|
-
type: z.ZodEnum<{
|
|
3623
|
-
customer_reply: "customer_reply";
|
|
3624
|
-
agent_reply: "agent_reply";
|
|
3625
|
-
}>;
|
|
3626
|
-
body: z.ZodString;
|
|
3627
|
-
author_first_name: z.ZodOptional<z.ZodString>;
|
|
3628
|
-
author_last_name: z.ZodOptional<z.ZodString>;
|
|
3629
|
-
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3630
|
-
id: z.ZodString;
|
|
3631
|
-
filename: z.ZodString;
|
|
3632
|
-
content_type: z.ZodString;
|
|
3633
|
-
size: z.ZodInt;
|
|
3634
|
-
}, z.core.$strip>>>;
|
|
3635
|
-
date_created: z.ZodISODateTime;
|
|
3636
|
-
}, z.core.$strip>>>;
|
|
3501
|
+
export declare const zGetJoinInformationResponse: z.ZodObject<{
|
|
3502
|
+
certificate_authority: z.ZodString;
|
|
3503
|
+
endpoint: z.ZodURL;
|
|
3504
|
+
cluster_dns: z.ZodString;
|
|
3505
|
+
pod_cidr: z.ZodString;
|
|
3506
|
+
auth_key: z.ZodString;
|
|
3507
|
+
bootstrap_token: z.ZodString;
|
|
3508
|
+
versions: z.ZodObject<{
|
|
3509
|
+
kubernetes: z.ZodString;
|
|
3510
|
+
tailscale: z.ZodString;
|
|
3511
|
+
containerd: z.ZodString;
|
|
3512
|
+
nvidia_driver: z.ZodString;
|
|
3513
|
+
}, z.core.$strip>;
|
|
3514
|
+
third_party_api_access_config: z.ZodObject<{
|
|
3515
|
+
metadata_url: z.ZodString;
|
|
3516
|
+
aws_role_arn: z.ZodString;
|
|
3517
|
+
gcp_workload_identity_provider: z.ZodString;
|
|
3518
|
+
}, z.core.$strip>;
|
|
3637
3519
|
}, z.core.$strip>;
|
|
3638
|
-
export declare const
|
|
3639
|
-
|
|
3640
|
-
|
|
3520
|
+
export declare const zGetUsageQuery: z.ZodObject<{
|
|
3521
|
+
granularity: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
3522
|
+
hourly: "hourly";
|
|
3523
|
+
daily: "daily";
|
|
3524
|
+
monthly: "monthly";
|
|
3525
|
+
}>>>;
|
|
3641
3526
|
}, z.core.$strip>;
|
|
3642
|
-
|
|
3643
|
-
|
|
3527
|
+
/**
|
|
3528
|
+
* Usage data with facets for filtering
|
|
3529
|
+
*/
|
|
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>;
|
|
3644
3543
|
}, z.core.$strip>;
|
|
3645
3544
|
/**
|
|
3646
|
-
*
|
|
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
|
+
*
|
|
3647
3547
|
*/
|
|
3648
|
-
export declare const
|
|
3548
|
+
export declare const zGetPaymentMethodSecretResponse: z.ZodObject<{
|
|
3549
|
+
id: z.ZodOptional<z.ZodString>;
|
|
3550
|
+
}, z.core.$strip>;
|
|
3551
|
+
/**
|
|
3552
|
+
* An array of payment methods.
|
|
3553
|
+
*/
|
|
3554
|
+
export declare const zListPaymentMethodsResponse: z.ZodArray<z.ZodObject<{
|
|
3649
3555
|
id: z.ZodString;
|
|
3650
3556
|
type: z.ZodEnum<{
|
|
3651
|
-
|
|
3652
|
-
|
|
3557
|
+
card: "card";
|
|
3558
|
+
sepa_debit: "sepa_debit";
|
|
3559
|
+
bank_transfer: "bank_transfer";
|
|
3653
3560
|
}>;
|
|
3654
|
-
|
|
3655
|
-
|
|
3656
|
-
|
|
3657
|
-
|
|
3658
|
-
|
|
3659
|
-
|
|
3660
|
-
|
|
3661
|
-
|
|
3662
|
-
|
|
3663
|
-
|
|
3664
|
-
|
|
3665
|
-
export declare const zGetTicketAttachmentPath: z.ZodObject<{
|
|
3666
|
-
ticket_id: z.ZodString;
|
|
3667
|
-
attachment_id: z.ZodString;
|
|
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;
|
|
3569
|
+
}, z.core.$strip>>;
|
|
3570
|
+
export declare const zSetDefaultPaymentMethodPath: z.ZodObject<{
|
|
3571
|
+
paymentMethodId: z.ZodString;
|
|
3668
3572
|
}, z.core.$strip>;
|
|
3669
3573
|
/**
|
|
3670
|
-
*
|
|
3574
|
+
* Default payment method updated.
|
|
3671
3575
|
*/
|
|
3672
|
-
export declare const
|
|
3576
|
+
export declare const zSetDefaultPaymentMethodResponse: z.ZodVoid;
|
|
3577
|
+
export declare const zDeletePaymentMethodPath: z.ZodObject<{
|
|
3578
|
+
paymentMethodId: z.ZodString;
|
|
3579
|
+
}, z.core.$strip>;
|
|
3673
3580
|
/**
|
|
3674
|
-
*
|
|
3581
|
+
* Payment method deleted.
|
|
3675
3582
|
*/
|
|
3676
|
-
export declare const
|
|
3677
|
-
name: z.ZodString;
|
|
3678
|
-
role: z.ZodEnum<{
|
|
3679
|
-
Administrator: "Administrator";
|
|
3680
|
-
User: "User";
|
|
3681
|
-
}>;
|
|
3682
|
-
id: z.ZodOptional<z.ZodString>;
|
|
3683
|
-
secret: z.ZodOptional<z.ZodString>;
|
|
3684
|
-
date_created: z.ZodISODateTime;
|
|
3685
|
-
}, z.core.$strip>>;
|
|
3686
|
-
export declare const zCreateTokenBody: z.ZodObject<{
|
|
3687
|
-
name: z.ZodString;
|
|
3688
|
-
role: z.ZodEnum<{
|
|
3689
|
-
Administrator: "Administrator";
|
|
3690
|
-
User: "User";
|
|
3691
|
-
}>;
|
|
3692
|
-
}, z.core.$strip>;
|
|
3583
|
+
export declare const zDeletePaymentMethodResponse: z.ZodVoid;
|
|
3693
3584
|
/**
|
|
3694
|
-
*
|
|
3585
|
+
* An array of usage records.
|
|
3695
3586
|
*/
|
|
3696
|
-
export declare const
|
|
3697
|
-
name: z.ZodString;
|
|
3698
|
-
role: z.ZodEnum<{
|
|
3699
|
-
Administrator: "Administrator";
|
|
3700
|
-
User: "User";
|
|
3701
|
-
}>;
|
|
3587
|
+
export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
3702
3588
|
id: z.ZodOptional<z.ZodString>;
|
|
3703
|
-
|
|
3704
|
-
|
|
3705
|
-
|
|
3706
|
-
|
|
3707
|
-
|
|
3708
|
-
|
|
3709
|
-
|
|
3710
|
-
|
|
3711
|
-
}, z.core.$strip
|
|
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>>;
|
|
3712
3598
|
/**
|
|
3713
|
-
* Returns
|
|
3599
|
+
* Returns a single object containing organization contact and billing address details.
|
|
3714
3600
|
*/
|
|
3715
|
-
export declare const
|
|
3716
|
-
|
|
3717
|
-
|
|
3718
|
-
|
|
3719
|
-
User: "User";
|
|
3601
|
+
export declare const zGetContactResponse: z.ZodObject<{
|
|
3602
|
+
type: z.ZodEnum<{
|
|
3603
|
+
business: "business";
|
|
3604
|
+
personal: "personal";
|
|
3720
3605
|
}>;
|
|
3721
|
-
|
|
3722
|
-
|
|
3723
|
-
|
|
3724
|
-
|
|
3725
|
-
|
|
3726
|
-
|
|
3727
|
-
|
|
3728
|
-
|
|
3729
|
-
|
|
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";
|
|
3730
3746
|
}>>;
|
|
3731
3747
|
}, z.core.$strip>;
|
|
3732
|
-
export declare const
|
|
3733
|
-
|
|
3734
|
-
|
|
3735
|
-
|
|
3736
|
-
* Successfully updated. Returns updated token details with masked secret.
|
|
3737
|
-
*/
|
|
3738
|
-
export declare const zUpdateTokenResponse: z.ZodObject<{
|
|
3739
|
-
name: z.ZodString;
|
|
3740
|
-
role: z.ZodEnum<{
|
|
3741
|
-
Administrator: "Administrator";
|
|
3742
|
-
User: "User";
|
|
3743
|
-
}>;
|
|
3744
|
-
id: z.ZodOptional<z.ZodString>;
|
|
3745
|
-
secret: z.ZodOptional<z.ZodString>;
|
|
3746
|
-
date_created: z.ZodISODateTime;
|
|
3747
|
-
}, z.core.$strip>;
|
|
3748
|
-
export declare const zRegenerateTokenPath: z.ZodObject<{
|
|
3749
|
-
token_id: z.ZodString;
|
|
3750
|
-
}, z.core.$strip>;
|
|
3751
|
-
/**
|
|
3752
|
-
* Successfully updated. Returns updated token details with unmasked / raw secret.
|
|
3753
|
-
*/
|
|
3754
|
-
export declare const zRegenerateTokenResponse: z.ZodObject<{
|
|
3755
|
-
name: z.ZodString;
|
|
3756
|
-
role: z.ZodEnum<{
|
|
3757
|
-
Administrator: "Administrator";
|
|
3758
|
-
User: "User";
|
|
3759
|
-
}>;
|
|
3760
|
-
id: z.ZodOptional<z.ZodString>;
|
|
3761
|
-
secret: z.ZodOptional<z.ZodString>;
|
|
3762
|
-
date_created: z.ZodISODateTime;
|
|
3763
|
-
}, z.core.$strip>;
|
|
3764
|
-
export declare const zListUserOrganizationsPath: z.ZodObject<{
|
|
3765
|
-
email: z.ZodString;
|
|
3766
|
-
}, z.core.$strip>;
|
|
3767
|
-
/**
|
|
3768
|
-
* An array of organizations the user belongs to.
|
|
3769
|
-
*/
|
|
3770
|
-
export declare const zListUserOrganizationsResponse: z.ZodArray<z.ZodObject<{
|
|
3771
|
-
realm: z.ZodOptional<z.ZodString>;
|
|
3772
|
-
displayName: z.ZodOptional<z.ZodString>;
|
|
3773
|
-
}, z.core.$strip>>;
|
|
3774
|
-
/**
|
|
3775
|
-
* An array of users
|
|
3776
|
-
*/
|
|
3777
|
-
export declare const zListUsersResponse: z.ZodArray<z.ZodObject<{
|
|
3778
|
-
email: z.ZodEmail;
|
|
3779
|
-
first_name: z.ZodString;
|
|
3780
|
-
last_name: z.ZodString;
|
|
3781
|
-
role: z.ZodEnum<{
|
|
3782
|
-
Administrator: "Administrator";
|
|
3783
|
-
User: "User";
|
|
3784
|
-
}>;
|
|
3785
|
-
status: z.ZodEnum<{
|
|
3786
|
-
active: "active";
|
|
3787
|
-
inactive: "inactive";
|
|
3748
|
+
export declare const zUpdateContactBody: z.ZodObject<{
|
|
3749
|
+
type: z.ZodEnum<{
|
|
3750
|
+
business: "business";
|
|
3751
|
+
personal: "personal";
|
|
3788
3752
|
}>;
|
|
3789
|
-
|
|
3790
|
-
|
|
3791
|
-
|
|
3792
|
-
|
|
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>;
|
|
3793
3761
|
email: z.ZodEmail;
|
|
3794
|
-
|
|
3795
|
-
|
|
3796
|
-
|
|
3797
|
-
|
|
3798
|
-
|
|
3799
|
-
|
|
3800
|
-
|
|
3801
|
-
|
|
3802
|
-
|
|
3803
|
-
|
|
3804
|
-
|
|
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";
|
|
3805
3893
|
}>>;
|
|
3806
3894
|
}, z.core.$strip>;
|
|
3807
3895
|
/**
|
|
3808
|
-
* Successfully
|
|
3809
|
-
*/
|
|
3810
|
-
export declare const zCreateUserResponse: z.ZodObject<{
|
|
3811
|
-
email: z.ZodEmail;
|
|
3812
|
-
first_name: z.ZodString;
|
|
3813
|
-
last_name: z.ZodString;
|
|
3814
|
-
role: z.ZodEnum<{
|
|
3815
|
-
Administrator: "Administrator";
|
|
3816
|
-
User: "User";
|
|
3817
|
-
}>;
|
|
3818
|
-
status: z.ZodEnum<{
|
|
3819
|
-
active: "active";
|
|
3820
|
-
inactive: "inactive";
|
|
3821
|
-
}>;
|
|
3822
|
-
id: z.ZodUUID;
|
|
3823
|
-
date_created: z.ZodISODateTime;
|
|
3824
|
-
}, z.core.$strip>;
|
|
3825
|
-
export declare const zDeleteUserPath: z.ZodObject<{
|
|
3826
|
-
user_id: z.ZodString;
|
|
3827
|
-
}, z.core.$strip>;
|
|
3828
|
-
/**
|
|
3829
|
-
* User profile information
|
|
3896
|
+
* Successfully updated. Returns updated organization details.
|
|
3830
3897
|
*/
|
|
3831
|
-
export declare const
|
|
3832
|
-
|
|
3833
|
-
|
|
3834
|
-
|
|
3835
|
-
role: z.ZodEnum<{
|
|
3836
|
-
Administrator: "Administrator";
|
|
3837
|
-
User: "User";
|
|
3838
|
-
}>;
|
|
3839
|
-
status: z.ZodEnum<{
|
|
3840
|
-
active: "active";
|
|
3841
|
-
inactive: "inactive";
|
|
3898
|
+
export declare const zUpdateContactResponse: z.ZodObject<{
|
|
3899
|
+
type: z.ZodEnum<{
|
|
3900
|
+
business: "business";
|
|
3901
|
+
personal: "personal";
|
|
3842
3902
|
}>;
|
|
3843
|
-
|
|
3844
|
-
|
|
3845
|
-
|
|
3846
|
-
|
|
3847
|
-
|
|
3848
|
-
|
|
3849
|
-
|
|
3850
|
-
|
|
3851
|
-
*/
|
|
3852
|
-
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>;
|
|
3853
3911
|
email: z.ZodEmail;
|
|
3854
|
-
|
|
3855
|
-
|
|
3856
|
-
|
|
3857
|
-
|
|
3858
|
-
|
|
3859
|
-
|
|
3860
|
-
|
|
3861
|
-
|
|
3862
|
-
|
|
3863
|
-
|
|
3864
|
-
|
|
3865
|
-
|
|
3866
|
-
|
|
3867
|
-
|
|
3868
|
-
|
|
3869
|
-
|
|
3870
|
-
|
|
3871
|
-
|
|
3872
|
-
|
|
3873
|
-
|
|
3874
|
-
|
|
3875
|
-
|
|
3876
|
-
|
|
3877
|
-
|
|
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";
|
|
3878
4043
|
}>>;
|
|
3879
4044
|
}, z.core.$strip>;
|
|
3880
|
-
export declare const zUpdateUserPath: z.ZodObject<{
|
|
3881
|
-
user_id: z.ZodString;
|
|
3882
|
-
}, z.core.$strip>;
|
|
3883
4045
|
/**
|
|
3884
|
-
*
|
|
4046
|
+
* An array of the applied promotional credits records.
|
|
3885
4047
|
*/
|
|
3886
|
-
export declare const
|
|
3887
|
-
|
|
3888
|
-
|
|
3889
|
-
|
|
3890
|
-
|
|
3891
|
-
Administrator: "Administrator";
|
|
3892
|
-
User: "User";
|
|
3893
|
-
}>;
|
|
3894
|
-
status: z.ZodEnum<{
|
|
3895
|
-
active: "active";
|
|
3896
|
-
inactive: "inactive";
|
|
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";
|
|
3897
4053
|
}>;
|
|
3898
|
-
|
|
3899
|
-
|
|
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>;
|
|
3900
4063
|
}, z.core.$strip>;
|
|
3901
4064
|
//# sourceMappingURL=zod.gen.d.ts.map
|