@cloudfleet/sdk 0.0.1-c144916 → 0.0.1-c3098ca
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 +410 -386
- package/dist/@tanstack/react-query.gen.d.ts.map +1 -1
- package/dist/@tanstack/react-query.gen.js +419 -383
- 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 +405 -76
- package/dist/schemas.gen.d.ts.map +1 -1
- package/dist/schemas.gen.js +528 -140
- package/dist/schemas.gen.js.map +1 -1
- package/dist/sdk.gen.d.ts +228 -216
- package/dist/sdk.gen.d.ts.map +1 -1
- package/dist/sdk.gen.js +328 -312
- package/dist/sdk.gen.js.map +1 -1
- package/dist/types.gen.d.ts +1045 -717
- package/dist/types.gen.d.ts.map +1 -1
- package/dist/zod.gen.d.ts +1585 -1436
- package/dist/zod.gen.d.ts.map +1 -1
- package/dist/zod.gen.js +429 -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,44 @@ 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";
|
|
200
192
|
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
193
|
}>>>;
|
|
208
|
-
version_channel: z.ZodDefault<z.ZodOptional<z.
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
194
|
+
version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
195
|
+
release_channel: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
196
|
+
stable: "stable";
|
|
197
|
+
rapid: "rapid";
|
|
198
|
+
extended: "extended";
|
|
213
199
|
}>>>;
|
|
200
|
+
features: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
201
|
+
gpu_sharing_strategy: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
202
|
+
none: "none";
|
|
203
|
+
mps: "mps";
|
|
204
|
+
time_slicing: "time_slicing";
|
|
205
|
+
}>>>;
|
|
206
|
+
gpu_max_shared_clients_per_gpu: z.ZodDefault<z.ZodOptional<z.ZodInt>>;
|
|
207
|
+
cilium_socket_lb_host_namespace_only: z.ZodOptional<z.ZodBoolean>;
|
|
208
|
+
}, z.core.$strip>>>;
|
|
209
|
+
region: z.ZodString;
|
|
210
|
+
networking: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
211
|
+
pod_cidr: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
212
|
+
service_cidr: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
213
|
+
dual_stack: z.ZodOptional<z.ZodBoolean>;
|
|
214
|
+
pod_cidr_v6: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
215
|
+
service_cidr_v6: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
216
|
+
}, z.core.$strip>>>;
|
|
214
217
|
}, z.core.$strip>;
|
|
215
218
|
export declare const zClusterJoinInformation: z.ZodObject<{
|
|
216
219
|
certificate_authority: z.ZodString;
|
|
217
220
|
endpoint: z.ZodURL;
|
|
218
221
|
cluster_dns: z.ZodString;
|
|
222
|
+
pod_cidr: z.ZodString;
|
|
219
223
|
auth_key: z.ZodString;
|
|
220
224
|
bootstrap_token: z.ZodString;
|
|
221
225
|
versions: z.ZodObject<{
|
|
@@ -230,23 +234,40 @@ export declare const zClusterJoinInformation: z.ZodObject<{
|
|
|
230
234
|
gcp_workload_identity_provider: z.ZodString;
|
|
231
235
|
}, z.core.$strip>;
|
|
232
236
|
}, z.core.$strip>;
|
|
237
|
+
/**
|
|
238
|
+
* Mutable cluster configuration. Applied as a full overwrite: any omitted field is reset to its default rather than left unchanged.
|
|
239
|
+
*/
|
|
233
240
|
export declare const zCluster: z.ZodObject<{
|
|
234
241
|
name: z.ZodString;
|
|
235
|
-
tier: z.ZodEnum<{
|
|
242
|
+
tier: z.ZodDefault<z.ZodEnum<{
|
|
236
243
|
basic: "basic";
|
|
237
244
|
pro: "pro";
|
|
238
|
-
}
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
}
|
|
245
|
+
}>>;
|
|
246
|
+
version_channel: z.ZodDefault<z.ZodString>;
|
|
247
|
+
release_channel: z.ZodDefault<z.ZodEnum<{
|
|
248
|
+
stable: "stable";
|
|
249
|
+
rapid: "rapid";
|
|
250
|
+
extended: "extended";
|
|
251
|
+
}>>;
|
|
252
|
+
features: z.ZodDefault<z.ZodObject<{
|
|
253
|
+
gpu_sharing_strategy: z.ZodDefault<z.ZodEnum<{
|
|
254
|
+
none: "none";
|
|
255
|
+
mps: "mps";
|
|
256
|
+
time_slicing: "time_slicing";
|
|
257
|
+
}>>;
|
|
258
|
+
gpu_max_shared_clients_per_gpu: z.ZodDefault<z.ZodInt>;
|
|
259
|
+
cilium_socket_lb_host_namespace_only: z.ZodBoolean;
|
|
260
|
+
}, z.core.$strip>>;
|
|
261
|
+
region: z.ZodString;
|
|
262
|
+
networking: z.ZodDefault<z.ZodObject<{
|
|
263
|
+
pod_cidr: z.ZodDefault<z.ZodString>;
|
|
264
|
+
service_cidr: z.ZodDefault<z.ZodString>;
|
|
265
|
+
dual_stack: z.ZodBoolean;
|
|
266
|
+
pod_cidr_v6: z.ZodDefault<z.ZodString>;
|
|
267
|
+
service_cidr_v6: z.ZodDefault<z.ZodString>;
|
|
268
|
+
}, z.core.$strip>>;
|
|
245
269
|
id: z.ZodUUID;
|
|
246
270
|
status: z.ZodEnum<{
|
|
247
|
-
deleted: "deleted";
|
|
248
|
-
failed: "failed";
|
|
249
|
-
active: "active";
|
|
250
271
|
disabled: "disabled";
|
|
251
272
|
creating: "creating";
|
|
252
273
|
deployed: "deployed";
|
|
@@ -262,17 +283,36 @@ export declare const zCluster: z.ZodObject<{
|
|
|
262
283
|
version_current: z.ZodOptional<z.ZodString>;
|
|
263
284
|
created_at: z.ZodOptional<z.ZodString>;
|
|
264
285
|
updated_at: z.ZodOptional<z.ZodString>;
|
|
265
|
-
ready: z.
|
|
266
|
-
version_channel: z.ZodOptional<z.ZodString>;
|
|
286
|
+
ready: z.ZodBoolean;
|
|
267
287
|
}, z.core.$strip>;
|
|
288
|
+
/**
|
|
289
|
+
* Mutable cluster configuration. Applied as a full overwrite: any omitted field is reset to its default rather than left unchanged.
|
|
290
|
+
*/
|
|
268
291
|
export declare const zClusterUpdateInput: z.ZodObject<{
|
|
269
|
-
name: z.
|
|
270
|
-
tier: z.ZodEnum<{
|
|
292
|
+
name: z.ZodString;
|
|
293
|
+
tier: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
271
294
|
basic: "basic";
|
|
272
295
|
pro: "pro";
|
|
273
|
-
}
|
|
274
|
-
version_channel: z.ZodOptional<z.ZodString
|
|
296
|
+
}>>>;
|
|
297
|
+
version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
298
|
+
release_channel: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
299
|
+
stable: "stable";
|
|
300
|
+
rapid: "rapid";
|
|
301
|
+
extended: "extended";
|
|
302
|
+
}>>>;
|
|
303
|
+
features: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
304
|
+
gpu_sharing_strategy: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
305
|
+
none: "none";
|
|
306
|
+
mps: "mps";
|
|
307
|
+
time_slicing: "time_slicing";
|
|
308
|
+
}>>>;
|
|
309
|
+
gpu_max_shared_clients_per_gpu: z.ZodDefault<z.ZodOptional<z.ZodInt>>;
|
|
310
|
+
cilium_socket_lb_host_namespace_only: z.ZodOptional<z.ZodBoolean>;
|
|
311
|
+
}, z.core.$strip>>>;
|
|
275
312
|
}, z.core.$strip>;
|
|
313
|
+
/**
|
|
314
|
+
* Mutable fleet configuration. Applied as a full overwrite: any omitted field is reset to its default rather than left unchanged.
|
|
315
|
+
*/
|
|
276
316
|
export declare const zFleetCreateInput: z.ZodObject<{
|
|
277
317
|
limits: z.ZodOptional<z.ZodObject<{
|
|
278
318
|
cpu: z.ZodOptional<z.ZodInt>;
|
|
@@ -289,16 +329,16 @@ export declare const zFleetCreateInput: z.ZodObject<{
|
|
|
289
329
|
enabled: z.ZodBoolean;
|
|
290
330
|
controllerRoleArn: z.ZodOptional<z.ZodString>;
|
|
291
331
|
}, z.core.$strip>>;
|
|
292
|
-
constraints: z.ZodOptional<z.ZodObject<{
|
|
293
|
-
'karpenter.sh/capacity-type': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
332
|
+
constraints: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
333
|
+
'karpenter.sh/capacity-type': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
294
334
|
"on-demand": "on-demand";
|
|
295
335
|
spot: "spot";
|
|
296
|
-
}
|
|
297
|
-
'kubernetes.io/arch': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
336
|
+
}>>>>;
|
|
337
|
+
'kubernetes.io/arch': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
298
338
|
amd64: "amd64";
|
|
299
339
|
arm64: "arm64";
|
|
300
|
-
}
|
|
301
|
-
'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
340
|
+
}>>>>;
|
|
341
|
+
'cfke.io/instance-family': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
302
342
|
p3: "p3";
|
|
303
343
|
cx: "cx";
|
|
304
344
|
h1: "h1";
|
|
@@ -457,8 +497,8 @@ export declare const zFleetCreateInput: z.ZodObject<{
|
|
|
457
497
|
x8g: "x8g";
|
|
458
498
|
z1d: "z1d";
|
|
459
499
|
z3: "z3";
|
|
460
|
-
}
|
|
461
|
-
'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
500
|
+
}>>>>;
|
|
501
|
+
'topology.kubernetes.io/region': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
462
502
|
"africa-south1": "africa-south1";
|
|
463
503
|
"ap-northeast-1": "ap-northeast-1";
|
|
464
504
|
"ap-northeast-2": "ap-northeast-2";
|
|
@@ -523,14 +563,17 @@ export declare const zFleetCreateInput: z.ZodObject<{
|
|
|
523
563
|
"us-west2": "us-west2";
|
|
524
564
|
"us-west3": "us-west3";
|
|
525
565
|
"us-west4": "us-west4";
|
|
526
|
-
}
|
|
527
|
-
}, z.core.$strip
|
|
566
|
+
}>>>>;
|
|
567
|
+
}, z.core.$strip>>>;
|
|
528
568
|
scalingProfile: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
529
569
|
aggressive: "aggressive";
|
|
530
570
|
conservative: "conservative";
|
|
531
571
|
}>>>;
|
|
532
572
|
id: z.ZodString;
|
|
533
573
|
}, z.core.$strip>;
|
|
574
|
+
/**
|
|
575
|
+
* Mutable fleet configuration. Applied as a full overwrite: any omitted field is reset to its default rather than left unchanged.
|
|
576
|
+
*/
|
|
534
577
|
export declare const zFleet: z.ZodObject<{
|
|
535
578
|
limits: z.ZodOptional<z.ZodObject<{
|
|
536
579
|
cpu: z.ZodOptional<z.ZodInt>;
|
|
@@ -547,16 +590,16 @@ export declare const zFleet: z.ZodObject<{
|
|
|
547
590
|
enabled: z.ZodBoolean;
|
|
548
591
|
controllerRoleArn: z.ZodOptional<z.ZodString>;
|
|
549
592
|
}, z.core.$strip>>;
|
|
550
|
-
constraints: z.
|
|
551
|
-
'karpenter.sh/capacity-type': z.
|
|
593
|
+
constraints: z.ZodDefault<z.ZodObject<{
|
|
594
|
+
'karpenter.sh/capacity-type': z.ZodDefault<z.ZodArray<z.ZodEnum<{
|
|
552
595
|
"on-demand": "on-demand";
|
|
553
596
|
spot: "spot";
|
|
554
597
|
}>>>;
|
|
555
|
-
'kubernetes.io/arch': z.
|
|
598
|
+
'kubernetes.io/arch': z.ZodDefault<z.ZodArray<z.ZodEnum<{
|
|
556
599
|
amd64: "amd64";
|
|
557
600
|
arm64: "arm64";
|
|
558
601
|
}>>>;
|
|
559
|
-
'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
602
|
+
'cfke.io/instance-family': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
560
603
|
p3: "p3";
|
|
561
604
|
cx: "cx";
|
|
562
605
|
h1: "h1";
|
|
@@ -715,8 +758,8 @@ export declare const zFleet: z.ZodObject<{
|
|
|
715
758
|
x8g: "x8g";
|
|
716
759
|
z1d: "z1d";
|
|
717
760
|
z3: "z3";
|
|
718
|
-
}
|
|
719
|
-
'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
761
|
+
}>>>>;
|
|
762
|
+
'topology.kubernetes.io/region': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
720
763
|
"africa-south1": "africa-south1";
|
|
721
764
|
"ap-northeast-1": "ap-northeast-1";
|
|
722
765
|
"ap-northeast-2": "ap-northeast-2";
|
|
@@ -781,14 +824,21 @@ export declare const zFleet: z.ZodObject<{
|
|
|
781
824
|
"us-west2": "us-west2";
|
|
782
825
|
"us-west3": "us-west3";
|
|
783
826
|
"us-west4": "us-west4";
|
|
784
|
-
}
|
|
827
|
+
}>>>>;
|
|
785
828
|
}, z.core.$strip>>;
|
|
786
829
|
scalingProfile: z.ZodDefault<z.ZodEnum<{
|
|
787
830
|
aggressive: "aggressive";
|
|
788
831
|
conservative: "conservative";
|
|
789
832
|
}>>;
|
|
790
833
|
id: z.ZodString;
|
|
834
|
+
ready: z.ZodBoolean;
|
|
835
|
+
status_message: z.ZodOptional<z.ZodString>;
|
|
836
|
+
created_at: z.ZodString;
|
|
837
|
+
updated_at: z.ZodString;
|
|
791
838
|
}, z.core.$strip>;
|
|
839
|
+
/**
|
|
840
|
+
* Mutable fleet configuration. Applied as a full overwrite: any omitted field is reset to its default rather than left unchanged.
|
|
841
|
+
*/
|
|
792
842
|
export declare const zFleetUpdateInput: z.ZodObject<{
|
|
793
843
|
limits: z.ZodOptional<z.ZodObject<{
|
|
794
844
|
cpu: z.ZodOptional<z.ZodInt>;
|
|
@@ -805,16 +855,16 @@ export declare const zFleetUpdateInput: z.ZodObject<{
|
|
|
805
855
|
enabled: z.ZodBoolean;
|
|
806
856
|
controllerRoleArn: z.ZodOptional<z.ZodString>;
|
|
807
857
|
}, z.core.$strip>>;
|
|
808
|
-
constraints: z.ZodOptional<z.ZodObject<{
|
|
809
|
-
'karpenter.sh/capacity-type': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
858
|
+
constraints: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
859
|
+
'karpenter.sh/capacity-type': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
810
860
|
"on-demand": "on-demand";
|
|
811
861
|
spot: "spot";
|
|
812
|
-
}
|
|
813
|
-
'kubernetes.io/arch': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
862
|
+
}>>>>;
|
|
863
|
+
'kubernetes.io/arch': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
814
864
|
amd64: "amd64";
|
|
815
865
|
arm64: "arm64";
|
|
816
|
-
}
|
|
817
|
-
'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
866
|
+
}>>>>;
|
|
867
|
+
'cfke.io/instance-family': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
818
868
|
p3: "p3";
|
|
819
869
|
cx: "cx";
|
|
820
870
|
h1: "h1";
|
|
@@ -973,8 +1023,8 @@ export declare const zFleetUpdateInput: z.ZodObject<{
|
|
|
973
1023
|
x8g: "x8g";
|
|
974
1024
|
z1d: "z1d";
|
|
975
1025
|
z3: "z3";
|
|
976
|
-
}
|
|
977
|
-
'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
1026
|
+
}>>>>;
|
|
1027
|
+
'topology.kubernetes.io/region': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
978
1028
|
"africa-south1": "africa-south1";
|
|
979
1029
|
"ap-northeast-1": "ap-northeast-1";
|
|
980
1030
|
"ap-northeast-2": "ap-northeast-2";
|
|
@@ -1039,12 +1089,19 @@ export declare const zFleetUpdateInput: z.ZodObject<{
|
|
|
1039
1089
|
"us-west2": "us-west2";
|
|
1040
1090
|
"us-west3": "us-west3";
|
|
1041
1091
|
"us-west4": "us-west4";
|
|
1042
|
-
}
|
|
1043
|
-
}, z.core.$strip
|
|
1044
|
-
scalingProfile: z.ZodEnum<{
|
|
1092
|
+
}>>>>;
|
|
1093
|
+
}, z.core.$strip>>>;
|
|
1094
|
+
scalingProfile: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
1045
1095
|
aggressive: "aggressive";
|
|
1046
1096
|
conservative: "conservative";
|
|
1047
|
-
}
|
|
1097
|
+
}>>>;
|
|
1098
|
+
}, z.core.$strip>;
|
|
1099
|
+
export declare const zInviteCreateInput: z.ZodObject<{
|
|
1100
|
+
email: z.ZodEmail;
|
|
1101
|
+
role: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
1102
|
+
Administrator: "Administrator";
|
|
1103
|
+
User: "User";
|
|
1104
|
+
}>>>;
|
|
1048
1105
|
}, z.core.$strip>;
|
|
1049
1106
|
export declare const zInvite: z.ZodObject<{
|
|
1050
1107
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -1052,6 +1109,10 @@ export declare const zInvite: z.ZodObject<{
|
|
|
1052
1109
|
date_created: z.ZodISODateTime;
|
|
1053
1110
|
email: z.ZodOptional<z.ZodEmail>;
|
|
1054
1111
|
code: z.ZodOptional<z.ZodString>;
|
|
1112
|
+
role: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
1113
|
+
Administrator: "Administrator";
|
|
1114
|
+
User: "User";
|
|
1115
|
+
}>>>;
|
|
1055
1116
|
}, z.core.$strip>;
|
|
1056
1117
|
export declare const zInvoice: z.ZodObject<{
|
|
1057
1118
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -1091,15 +1152,26 @@ export declare const zMarketplaceListing: z.ZodObject<{
|
|
|
1091
1152
|
}, z.core.$strip>>;
|
|
1092
1153
|
}, z.core.$strip>;
|
|
1093
1154
|
export declare const zOrganizationCreateInput: z.ZodObject<{
|
|
1155
|
+
type: z.ZodEnum<{
|
|
1156
|
+
business: "business";
|
|
1157
|
+
personal: "personal";
|
|
1158
|
+
}>;
|
|
1094
1159
|
email: z.ZodEmail;
|
|
1095
1160
|
first_name: z.ZodString;
|
|
1096
1161
|
last_name: z.ZodString;
|
|
1097
1162
|
company_name: z.ZodString;
|
|
1098
1163
|
password: z.ZodString;
|
|
1099
1164
|
}, z.core.$strip>;
|
|
1165
|
+
export declare const zOrganizationCreateOutput: z.ZodObject<{
|
|
1166
|
+
id: z.ZodString;
|
|
1167
|
+
}, z.core.$strip>;
|
|
1100
1168
|
export declare const zOrganization: z.ZodObject<{
|
|
1101
1169
|
id: z.ZodUUID;
|
|
1102
1170
|
name: z.ZodOptional<z.ZodString>;
|
|
1171
|
+
type: z.ZodEnum<{
|
|
1172
|
+
business: "business";
|
|
1173
|
+
personal: "personal";
|
|
1174
|
+
}>;
|
|
1103
1175
|
date_created: z.ZodISODateTime;
|
|
1104
1176
|
quota: z.ZodObject<{
|
|
1105
1177
|
basic_clusters_max: z.ZodInt;
|
|
@@ -1120,27 +1192,27 @@ export declare const zOrganization: z.ZodObject<{
|
|
|
1120
1192
|
closed: "closed";
|
|
1121
1193
|
suspended: "suspended";
|
|
1122
1194
|
}>;
|
|
1195
|
+
verification: z.ZodEnum<{
|
|
1196
|
+
none: "none";
|
|
1197
|
+
submitted: "submitted";
|
|
1198
|
+
verified: "verified";
|
|
1199
|
+
}>;
|
|
1123
1200
|
}, z.core.$strip>;
|
|
1124
1201
|
export declare const zPaymentMethod: z.ZodObject<{
|
|
1125
|
-
id: z.
|
|
1126
|
-
setup: z.ZodBoolean;
|
|
1202
|
+
id: z.ZodString;
|
|
1127
1203
|
type: z.ZodEnum<{
|
|
1128
1204
|
card: "card";
|
|
1205
|
+
sepa_debit: "sepa_debit";
|
|
1206
|
+
bank_transfer: "bank_transfer";
|
|
1129
1207
|
}>;
|
|
1130
1208
|
last4: z.ZodString;
|
|
1131
1209
|
exp_month: z.ZodInt;
|
|
1132
1210
|
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
|
-
}>;
|
|
1211
|
+
brand: z.ZodString;
|
|
1212
|
+
iban: z.ZodString;
|
|
1213
|
+
bic: z.ZodString;
|
|
1214
|
+
account_holder_name: z.ZodString;
|
|
1215
|
+
is_default: z.ZodBoolean;
|
|
1144
1216
|
}, z.core.$strip>;
|
|
1145
1217
|
export declare const zPlatformQuota: z.ZodObject<{
|
|
1146
1218
|
basic_clusters_max: z.ZodInt;
|
|
@@ -1363,14 +1435,6 @@ export declare const zUserCreateInput: z.ZodObject<{
|
|
|
1363
1435
|
last_name: z.ZodString;
|
|
1364
1436
|
code: z.ZodString;
|
|
1365
1437
|
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
1438
|
}, z.core.$strip>;
|
|
1375
1439
|
export declare const zUser: z.ZodObject<{
|
|
1376
1440
|
email: z.ZodEmail;
|
|
@@ -1400,630 +1464,652 @@ export declare const zUserUpdateInput: z.ZodObject<{
|
|
|
1400
1464
|
inactive: "inactive";
|
|
1401
1465
|
}>>;
|
|
1402
1466
|
}, z.core.$strip>;
|
|
1403
|
-
export declare const
|
|
1404
|
-
|
|
1405
|
-
hourly: "hourly";
|
|
1406
|
-
daily: "daily";
|
|
1407
|
-
monthly: "monthly";
|
|
1408
|
-
}>>>;
|
|
1467
|
+
export declare const zListUserOrganizationsPath: z.ZodObject<{
|
|
1468
|
+
email: z.ZodString;
|
|
1409
1469
|
}, z.core.$strip>;
|
|
1410
1470
|
/**
|
|
1411
|
-
*
|
|
1471
|
+
* An array of organizations the user belongs to.
|
|
1412
1472
|
*/
|
|
1413
|
-
export declare const
|
|
1414
|
-
|
|
1415
|
-
|
|
1416
|
-
|
|
1417
|
-
|
|
1418
|
-
|
|
1419
|
-
|
|
1420
|
-
|
|
1421
|
-
|
|
1422
|
-
|
|
1423
|
-
|
|
1424
|
-
|
|
1425
|
-
|
|
1473
|
+
export declare const zListUserOrganizationsResponse: z.ZodArray<z.ZodObject<{
|
|
1474
|
+
realm: z.ZodOptional<z.ZodString>;
|
|
1475
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
1476
|
+
}, z.core.$strip>>;
|
|
1477
|
+
/**
|
|
1478
|
+
* An array of users
|
|
1479
|
+
*/
|
|
1480
|
+
export declare const zListUsersResponse: z.ZodArray<z.ZodObject<{
|
|
1481
|
+
email: z.ZodEmail;
|
|
1482
|
+
first_name: z.ZodString;
|
|
1483
|
+
last_name: z.ZodString;
|
|
1484
|
+
role: z.ZodEnum<{
|
|
1485
|
+
Administrator: "Administrator";
|
|
1486
|
+
User: "User";
|
|
1487
|
+
}>;
|
|
1488
|
+
status: z.ZodEnum<{
|
|
1489
|
+
active: "active";
|
|
1490
|
+
inactive: "inactive";
|
|
1491
|
+
}>;
|
|
1492
|
+
id: z.ZodUUID;
|
|
1493
|
+
date_created: z.ZodISODateTime;
|
|
1494
|
+
}, z.core.$strip>>;
|
|
1495
|
+
export declare const zCreateUserBody: z.ZodObject<{
|
|
1496
|
+
email: z.ZodEmail;
|
|
1497
|
+
first_name: z.ZodString;
|
|
1498
|
+
last_name: z.ZodString;
|
|
1499
|
+
code: z.ZodString;
|
|
1500
|
+
password: z.ZodString;
|
|
1426
1501
|
}, z.core.$strip>;
|
|
1427
1502
|
/**
|
|
1428
|
-
*
|
|
1503
|
+
* Successfully created. Returns created user details.
|
|
1429
1504
|
*/
|
|
1430
|
-
export declare const
|
|
1505
|
+
export declare const zCreateUserResponse: z.ZodObject<{
|
|
1506
|
+
email: z.ZodEmail;
|
|
1507
|
+
first_name: z.ZodString;
|
|
1508
|
+
last_name: z.ZodString;
|
|
1509
|
+
role: z.ZodEnum<{
|
|
1510
|
+
Administrator: "Administrator";
|
|
1511
|
+
User: "User";
|
|
1512
|
+
}>;
|
|
1513
|
+
status: z.ZodEnum<{
|
|
1514
|
+
active: "active";
|
|
1515
|
+
inactive: "inactive";
|
|
1516
|
+
}>;
|
|
1431
1517
|
id: z.ZodUUID;
|
|
1432
|
-
|
|
1433
|
-
|
|
1434
|
-
|
|
1518
|
+
date_created: z.ZodISODateTime;
|
|
1519
|
+
}, z.core.$strip>;
|
|
1520
|
+
export declare const zDeleteUserPath: z.ZodObject<{
|
|
1521
|
+
user_id: z.ZodString;
|
|
1522
|
+
}, z.core.$strip>;
|
|
1523
|
+
/**
|
|
1524
|
+
* User profile information
|
|
1525
|
+
*/
|
|
1526
|
+
export declare const zDeleteUserResponse: z.ZodObject<{
|
|
1527
|
+
email: z.ZodEmail;
|
|
1528
|
+
first_name: z.ZodString;
|
|
1529
|
+
last_name: z.ZodString;
|
|
1530
|
+
role: z.ZodEnum<{
|
|
1531
|
+
Administrator: "Administrator";
|
|
1532
|
+
User: "User";
|
|
1435
1533
|
}>;
|
|
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";
|
|
1534
|
+
status: z.ZodEnum<{
|
|
1535
|
+
active: "active";
|
|
1536
|
+
inactive: "inactive";
|
|
1449
1537
|
}>;
|
|
1538
|
+
id: z.ZodUUID;
|
|
1539
|
+
date_created: z.ZodISODateTime;
|
|
1540
|
+
}, z.core.$strip>;
|
|
1541
|
+
export declare const zGetUserPath: z.ZodObject<{
|
|
1542
|
+
user_id: z.ZodString;
|
|
1450
1543
|
}, z.core.$strip>;
|
|
1451
1544
|
/**
|
|
1452
|
-
*
|
|
1453
|
-
*
|
|
1545
|
+
* User profile information
|
|
1454
1546
|
*/
|
|
1455
|
-
export declare const
|
|
1456
|
-
|
|
1547
|
+
export declare const zGetUserResponse: z.ZodObject<{
|
|
1548
|
+
email: z.ZodEmail;
|
|
1549
|
+
first_name: z.ZodString;
|
|
1550
|
+
last_name: z.ZodString;
|
|
1551
|
+
role: z.ZodEnum<{
|
|
1552
|
+
Administrator: "Administrator";
|
|
1553
|
+
User: "User";
|
|
1554
|
+
}>;
|
|
1555
|
+
status: z.ZodEnum<{
|
|
1556
|
+
active: "active";
|
|
1557
|
+
inactive: "inactive";
|
|
1558
|
+
}>;
|
|
1559
|
+
id: z.ZodUUID;
|
|
1560
|
+
date_created: z.ZodISODateTime;
|
|
1561
|
+
}, z.core.$strip>;
|
|
1562
|
+
export declare const zUpdateUserBody: z.ZodObject<{
|
|
1563
|
+
email: z.ZodOptional<z.ZodEmail>;
|
|
1564
|
+
first_name: z.ZodOptional<z.ZodString>;
|
|
1565
|
+
last_name: z.ZodOptional<z.ZodString>;
|
|
1566
|
+
role: z.ZodOptional<z.ZodEnum<{
|
|
1567
|
+
Administrator: "Administrator";
|
|
1568
|
+
User: "User";
|
|
1569
|
+
}>>;
|
|
1570
|
+
status: z.ZodOptional<z.ZodEnum<{
|
|
1571
|
+
active: "active";
|
|
1572
|
+
inactive: "inactive";
|
|
1573
|
+
}>>;
|
|
1574
|
+
}, z.core.$strip>;
|
|
1575
|
+
export declare const zUpdateUserPath: z.ZodObject<{
|
|
1576
|
+
user_id: z.ZodString;
|
|
1457
1577
|
}, z.core.$strip>;
|
|
1458
1578
|
/**
|
|
1459
|
-
*
|
|
1579
|
+
* Successfully created. Returns created user details.
|
|
1460
1580
|
*/
|
|
1461
|
-
export declare const
|
|
1581
|
+
export declare const zUpdateUserResponse: z.ZodObject<{
|
|
1582
|
+
email: z.ZodEmail;
|
|
1583
|
+
first_name: z.ZodString;
|
|
1584
|
+
last_name: z.ZodString;
|
|
1585
|
+
role: z.ZodEnum<{
|
|
1586
|
+
Administrator: "Administrator";
|
|
1587
|
+
User: "User";
|
|
1588
|
+
}>;
|
|
1589
|
+
status: z.ZodEnum<{
|
|
1590
|
+
active: "active";
|
|
1591
|
+
inactive: "inactive";
|
|
1592
|
+
}>;
|
|
1593
|
+
id: z.ZodUUID;
|
|
1594
|
+
date_created: z.ZodISODateTime;
|
|
1595
|
+
}, z.core.$strip>;
|
|
1596
|
+
/**
|
|
1597
|
+
* Returns a list of access token details with masked secrets.
|
|
1598
|
+
*/
|
|
1599
|
+
export declare const zListTokensResponse: z.ZodArray<z.ZodObject<{
|
|
1600
|
+
name: z.ZodString;
|
|
1601
|
+
role: z.ZodEnum<{
|
|
1602
|
+
Administrator: "Administrator";
|
|
1603
|
+
User: "User";
|
|
1604
|
+
}>;
|
|
1462
1605
|
id: z.ZodOptional<z.ZodString>;
|
|
1463
|
-
|
|
1464
|
-
|
|
1465
|
-
total: z.ZodOptional<z.ZodNumber>;
|
|
1466
|
-
currency: z.ZodOptional<z.ZodString>;
|
|
1467
|
-
created: z.ZodISODateTime;
|
|
1468
|
-
period_start: z.ZodISODateTime;
|
|
1469
|
-
period_end: z.ZodISODateTime;
|
|
1470
|
-
invoice_pdf: z.ZodOptional<z.ZodString>;
|
|
1606
|
+
secret: z.ZodOptional<z.ZodString>;
|
|
1607
|
+
date_created: z.ZodISODateTime;
|
|
1471
1608
|
}, z.core.$strip>>;
|
|
1609
|
+
export declare const zCreateTokenBody: z.ZodObject<{
|
|
1610
|
+
name: z.ZodString;
|
|
1611
|
+
role: z.ZodEnum<{
|
|
1612
|
+
Administrator: "Administrator";
|
|
1613
|
+
User: "User";
|
|
1614
|
+
}>;
|
|
1615
|
+
}, z.core.$strip>;
|
|
1472
1616
|
/**
|
|
1473
|
-
*
|
|
1617
|
+
* Successfully created. Returns created token details with unmasked/raw secret.
|
|
1474
1618
|
*/
|
|
1475
|
-
export declare const
|
|
1476
|
-
|
|
1477
|
-
|
|
1478
|
-
|
|
1479
|
-
|
|
1480
|
-
|
|
1481
|
-
|
|
1482
|
-
|
|
1483
|
-
|
|
1484
|
-
|
|
1485
|
-
|
|
1486
|
-
|
|
1487
|
-
|
|
1488
|
-
|
|
1489
|
-
|
|
1490
|
-
|
|
1491
|
-
|
|
1492
|
-
|
|
1493
|
-
|
|
1494
|
-
|
|
1495
|
-
|
|
1496
|
-
|
|
1497
|
-
|
|
1498
|
-
|
|
1499
|
-
|
|
1500
|
-
|
|
1501
|
-
|
|
1502
|
-
|
|
1503
|
-
|
|
1504
|
-
|
|
1505
|
-
|
|
1506
|
-
|
|
1507
|
-
|
|
1508
|
-
|
|
1509
|
-
ca_bn: "ca_bn";
|
|
1510
|
-
ca_gst_hst: "ca_gst_hst";
|
|
1511
|
-
ca_pst_bc: "ca_pst_bc";
|
|
1512
|
-
ca_pst_mb: "ca_pst_mb";
|
|
1513
|
-
ca_pst_sk: "ca_pst_sk";
|
|
1514
|
-
ca_qst: "ca_qst";
|
|
1515
|
-
cd_nif: "cd_nif";
|
|
1516
|
-
ch_uid: "ch_uid";
|
|
1517
|
-
ch_vat: "ch_vat";
|
|
1518
|
-
cl_tin: "cl_tin";
|
|
1519
|
-
cn_tin: "cn_tin";
|
|
1520
|
-
co_nit: "co_nit";
|
|
1521
|
-
cr_tin: "cr_tin";
|
|
1522
|
-
cy_vat: "cy_vat";
|
|
1523
|
-
cz_vat: "cz_vat";
|
|
1524
|
-
de_stn: "de_stn";
|
|
1525
|
-
de_vat: "de_vat";
|
|
1526
|
-
dk_vat: "dk_vat";
|
|
1527
|
-
do_rcn: "do_rcn";
|
|
1528
|
-
ec_ruc: "ec_ruc";
|
|
1529
|
-
ee_vat: "ee_vat";
|
|
1530
|
-
eg_tin: "eg_tin";
|
|
1531
|
-
es_cif: "es_cif";
|
|
1532
|
-
es_vat: "es_vat";
|
|
1533
|
-
eu_oss_vat: "eu_oss_vat";
|
|
1534
|
-
fi_vat: "fi_vat";
|
|
1535
|
-
fr_vat: "fr_vat";
|
|
1536
|
-
gb_vat: "gb_vat";
|
|
1537
|
-
ge_vat: "ge_vat";
|
|
1538
|
-
gn_nif: "gn_nif";
|
|
1539
|
-
gr_vat: "gr_vat";
|
|
1540
|
-
hk_br: "hk_br";
|
|
1541
|
-
hr_oib: "hr_oib";
|
|
1542
|
-
hr_vat: "hr_vat";
|
|
1543
|
-
hu_tin: "hu_tin";
|
|
1544
|
-
hu_vat: "hu_vat";
|
|
1545
|
-
id_npwp: "id_npwp";
|
|
1546
|
-
ie_vat: "ie_vat";
|
|
1547
|
-
il_vat: "il_vat";
|
|
1548
|
-
in_gst: "in_gst";
|
|
1549
|
-
is_vat: "is_vat";
|
|
1550
|
-
it_vat: "it_vat";
|
|
1551
|
-
jp_cn: "jp_cn";
|
|
1552
|
-
jp_rn: "jp_rn";
|
|
1553
|
-
jp_trn: "jp_trn";
|
|
1554
|
-
ke_pin: "ke_pin";
|
|
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";
|
|
1619
|
+
export declare const zCreateTokenResponse: z.ZodObject<{
|
|
1620
|
+
name: z.ZodString;
|
|
1621
|
+
role: z.ZodEnum<{
|
|
1622
|
+
Administrator: "Administrator";
|
|
1623
|
+
User: "User";
|
|
1624
|
+
}>;
|
|
1625
|
+
id: z.ZodOptional<z.ZodString>;
|
|
1626
|
+
secret: z.ZodOptional<z.ZodString>;
|
|
1627
|
+
date_created: z.ZodISODateTime;
|
|
1628
|
+
}, z.core.$strip>;
|
|
1629
|
+
export declare const zDeleteTokenPath: z.ZodObject<{
|
|
1630
|
+
token_id: z.ZodString;
|
|
1631
|
+
}, z.core.$strip>;
|
|
1632
|
+
export declare const zGetTokenPath: z.ZodObject<{
|
|
1633
|
+
token_id: z.ZodString;
|
|
1634
|
+
}, z.core.$strip>;
|
|
1635
|
+
/**
|
|
1636
|
+
* Returns access token details with masked secret.
|
|
1637
|
+
*/
|
|
1638
|
+
export declare const zGetTokenResponse: z.ZodObject<{
|
|
1639
|
+
name: z.ZodString;
|
|
1640
|
+
role: z.ZodEnum<{
|
|
1641
|
+
Administrator: "Administrator";
|
|
1642
|
+
User: "User";
|
|
1643
|
+
}>;
|
|
1644
|
+
id: z.ZodOptional<z.ZodString>;
|
|
1645
|
+
secret: z.ZodOptional<z.ZodString>;
|
|
1646
|
+
date_created: z.ZodISODateTime;
|
|
1647
|
+
}, z.core.$strip>;
|
|
1648
|
+
export declare const zUpdateTokenBody: z.ZodObject<{
|
|
1649
|
+
name: z.ZodOptional<z.ZodString>;
|
|
1650
|
+
role: z.ZodOptional<z.ZodEnum<{
|
|
1651
|
+
Administrator: "Administrator";
|
|
1652
|
+
User: "User";
|
|
1616
1653
|
}>>;
|
|
1617
1654
|
}, 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
|
-
|
|
1655
|
+
export declare const zUpdateTokenPath: z.ZodObject<{
|
|
1656
|
+
token_id: z.ZodString;
|
|
1657
|
+
}, z.core.$strip>;
|
|
1658
|
+
/**
|
|
1659
|
+
* Successfully updated. Returns updated token details with masked secret.
|
|
1660
|
+
*/
|
|
1661
|
+
export declare const zUpdateTokenResponse: z.ZodObject<{
|
|
1662
|
+
name: z.ZodString;
|
|
1663
|
+
role: z.ZodEnum<{
|
|
1664
|
+
Administrator: "Administrator";
|
|
1665
|
+
User: "User";
|
|
1666
|
+
}>;
|
|
1667
|
+
id: z.ZodOptional<z.ZodString>;
|
|
1668
|
+
secret: z.ZodOptional<z.ZodString>;
|
|
1669
|
+
date_created: z.ZodISODateTime;
|
|
1670
|
+
}, z.core.$strip>;
|
|
1671
|
+
export declare const zRegenerateTokenPath: z.ZodObject<{
|
|
1672
|
+
token_id: z.ZodString;
|
|
1673
|
+
}, z.core.$strip>;
|
|
1674
|
+
/**
|
|
1675
|
+
* Successfully updated. Returns updated token details with unmasked / raw secret.
|
|
1676
|
+
*/
|
|
1677
|
+
export declare const zRegenerateTokenResponse: z.ZodObject<{
|
|
1678
|
+
name: z.ZodString;
|
|
1679
|
+
role: z.ZodEnum<{
|
|
1680
|
+
Administrator: "Administrator";
|
|
1681
|
+
User: "User";
|
|
1682
|
+
}>;
|
|
1683
|
+
id: z.ZodOptional<z.ZodString>;
|
|
1684
|
+
secret: z.ZodOptional<z.ZodString>;
|
|
1685
|
+
date_created: z.ZodISODateTime;
|
|
1686
|
+
}, z.core.$strip>;
|
|
1687
|
+
/**
|
|
1688
|
+
* Tickets for the organization.
|
|
1689
|
+
*/
|
|
1690
|
+
export declare const zListTicketsResponse: z.ZodObject<{
|
|
1691
|
+
items: z.ZodArray<z.ZodObject<{
|
|
1692
|
+
id: z.ZodString;
|
|
1693
|
+
status: z.ZodEnum<{
|
|
1694
|
+
closed: "closed";
|
|
1695
|
+
waiting_on_us: "waiting_on_us";
|
|
1696
|
+
waiting_on_user: "waiting_on_user";
|
|
1697
|
+
}>;
|
|
1698
|
+
category: z.ZodEnum<{
|
|
1699
|
+
billing: "billing";
|
|
1700
|
+
technical: "technical";
|
|
1701
|
+
general: "general";
|
|
1702
|
+
}>;
|
|
1703
|
+
summary: z.ZodString;
|
|
1704
|
+
closed_at: z.ZodOptional<z.ZodISODateTime>;
|
|
1705
|
+
date_created: z.ZodISODateTime;
|
|
1706
|
+
date_updated: z.ZodISODateTime;
|
|
1707
|
+
messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1708
|
+
id: z.ZodString;
|
|
1709
|
+
type: z.ZodEnum<{
|
|
1710
|
+
customer_reply: "customer_reply";
|
|
1711
|
+
agent_reply: "agent_reply";
|
|
1712
|
+
}>;
|
|
1713
|
+
body: z.ZodString;
|
|
1714
|
+
author_first_name: z.ZodOptional<z.ZodString>;
|
|
1715
|
+
author_last_name: z.ZodOptional<z.ZodString>;
|
|
1716
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1717
|
+
id: z.ZodString;
|
|
1718
|
+
filename: z.ZodString;
|
|
1719
|
+
content_type: z.ZodString;
|
|
1720
|
+
size: z.ZodInt;
|
|
1721
|
+
}, z.core.$strip>>>;
|
|
1722
|
+
date_created: z.ZodISODateTime;
|
|
1723
|
+
}, z.core.$strip>>>;
|
|
1724
|
+
}, z.core.$strip>>;
|
|
1725
|
+
}, z.core.$strip>;
|
|
1726
|
+
export declare const zCreateTicketBody: z.ZodObject<{
|
|
1727
|
+
payload: z.ZodOptional<z.ZodString>;
|
|
1728
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1729
|
+
}, z.core.$strip>;
|
|
1730
|
+
/**
|
|
1731
|
+
* Ticket created.
|
|
1732
|
+
*/
|
|
1733
|
+
export declare const zCreateTicketResponse: z.ZodObject<{
|
|
1734
|
+
id: z.ZodString;
|
|
1735
|
+
status: z.ZodEnum<{
|
|
1736
|
+
closed: "closed";
|
|
1737
|
+
waiting_on_us: "waiting_on_us";
|
|
1738
|
+
waiting_on_user: "waiting_on_user";
|
|
1739
|
+
}>;
|
|
1740
|
+
category: z.ZodEnum<{
|
|
1741
|
+
billing: "billing";
|
|
1742
|
+
technical: "technical";
|
|
1743
|
+
general: "general";
|
|
1744
|
+
}>;
|
|
1745
|
+
summary: z.ZodString;
|
|
1746
|
+
closed_at: z.ZodOptional<z.ZodISODateTime>;
|
|
1747
|
+
date_created: z.ZodISODateTime;
|
|
1748
|
+
date_updated: z.ZodISODateTime;
|
|
1749
|
+
messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1750
|
+
id: z.ZodString;
|
|
1751
|
+
type: z.ZodEnum<{
|
|
1752
|
+
customer_reply: "customer_reply";
|
|
1753
|
+
agent_reply: "agent_reply";
|
|
1754
|
+
}>;
|
|
1755
|
+
body: z.ZodString;
|
|
1756
|
+
author_first_name: z.ZodOptional<z.ZodString>;
|
|
1757
|
+
author_last_name: z.ZodOptional<z.ZodString>;
|
|
1758
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1759
|
+
id: z.ZodString;
|
|
1760
|
+
filename: z.ZodString;
|
|
1761
|
+
content_type: z.ZodString;
|
|
1762
|
+
size: z.ZodInt;
|
|
1763
|
+
}, z.core.$strip>>>;
|
|
1764
|
+
date_created: z.ZodISODateTime;
|
|
1765
|
+
}, z.core.$strip>>>;
|
|
1766
|
+
}, z.core.$strip>;
|
|
1767
|
+
export declare const zCloseTicketPath: z.ZodObject<{
|
|
1768
|
+
ticket_id: z.ZodString;
|
|
1769
|
+
}, z.core.$strip>;
|
|
1770
|
+
/**
|
|
1771
|
+
* Ticket closed.
|
|
1772
|
+
*/
|
|
1773
|
+
export declare const zCloseTicketResponse: z.ZodObject<{
|
|
1774
|
+
id: z.ZodString;
|
|
1775
|
+
status: z.ZodEnum<{
|
|
1776
|
+
closed: "closed";
|
|
1777
|
+
waiting_on_us: "waiting_on_us";
|
|
1778
|
+
waiting_on_user: "waiting_on_user";
|
|
1779
|
+
}>;
|
|
1780
|
+
category: z.ZodEnum<{
|
|
1781
|
+
billing: "billing";
|
|
1782
|
+
technical: "technical";
|
|
1783
|
+
general: "general";
|
|
1784
|
+
}>;
|
|
1785
|
+
summary: z.ZodString;
|
|
1786
|
+
closed_at: z.ZodOptional<z.ZodISODateTime>;
|
|
1787
|
+
date_created: z.ZodISODateTime;
|
|
1788
|
+
date_updated: z.ZodISODateTime;
|
|
1789
|
+
messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1790
|
+
id: z.ZodString;
|
|
1791
|
+
type: z.ZodEnum<{
|
|
1792
|
+
customer_reply: "customer_reply";
|
|
1793
|
+
agent_reply: "agent_reply";
|
|
1794
|
+
}>;
|
|
1795
|
+
body: z.ZodString;
|
|
1796
|
+
author_first_name: z.ZodOptional<z.ZodString>;
|
|
1797
|
+
author_last_name: z.ZodOptional<z.ZodString>;
|
|
1798
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1799
|
+
id: z.ZodString;
|
|
1800
|
+
filename: z.ZodString;
|
|
1801
|
+
content_type: z.ZodString;
|
|
1802
|
+
size: z.ZodInt;
|
|
1803
|
+
}, z.core.$strip>>>;
|
|
1804
|
+
date_created: z.ZodISODateTime;
|
|
1805
|
+
}, z.core.$strip>>>;
|
|
1806
|
+
}, z.core.$strip>;
|
|
1807
|
+
export declare const zGetTicketPath: z.ZodObject<{
|
|
1808
|
+
ticket_id: z.ZodString;
|
|
1809
|
+
}, z.core.$strip>;
|
|
1810
|
+
/**
|
|
1811
|
+
* Ticket with messages (internal notes excluded).
|
|
1812
|
+
*/
|
|
1813
|
+
export declare const zGetTicketResponse: z.ZodObject<{
|
|
1814
|
+
id: z.ZodString;
|
|
1815
|
+
status: z.ZodEnum<{
|
|
1816
|
+
closed: "closed";
|
|
1817
|
+
waiting_on_us: "waiting_on_us";
|
|
1818
|
+
waiting_on_user: "waiting_on_user";
|
|
1819
|
+
}>;
|
|
1820
|
+
category: z.ZodEnum<{
|
|
1821
|
+
billing: "billing";
|
|
1822
|
+
technical: "technical";
|
|
1823
|
+
general: "general";
|
|
1824
|
+
}>;
|
|
1825
|
+
summary: z.ZodString;
|
|
1826
|
+
closed_at: z.ZodOptional<z.ZodISODateTime>;
|
|
1827
|
+
date_created: z.ZodISODateTime;
|
|
1828
|
+
date_updated: z.ZodISODateTime;
|
|
1829
|
+
messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1830
|
+
id: z.ZodString;
|
|
1831
|
+
type: z.ZodEnum<{
|
|
1832
|
+
customer_reply: "customer_reply";
|
|
1833
|
+
agent_reply: "agent_reply";
|
|
1834
|
+
}>;
|
|
1835
|
+
body: z.ZodString;
|
|
1836
|
+
author_first_name: z.ZodOptional<z.ZodString>;
|
|
1837
|
+
author_last_name: z.ZodOptional<z.ZodString>;
|
|
1838
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1839
|
+
id: z.ZodString;
|
|
1840
|
+
filename: z.ZodString;
|
|
1841
|
+
content_type: z.ZodString;
|
|
1842
|
+
size: z.ZodInt;
|
|
1843
|
+
}, z.core.$strip>>>;
|
|
1844
|
+
date_created: z.ZodISODateTime;
|
|
1845
|
+
}, z.core.$strip>>>;
|
|
1846
|
+
}, z.core.$strip>;
|
|
1847
|
+
export declare const zReplyTicketBody: z.ZodObject<{
|
|
1848
|
+
payload: z.ZodOptional<z.ZodString>;
|
|
1849
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1850
|
+
}, z.core.$strip>;
|
|
1851
|
+
export declare const zReplyTicketPath: z.ZodObject<{
|
|
1852
|
+
ticket_id: z.ZodString;
|
|
1853
|
+
}, z.core.$strip>;
|
|
1854
|
+
/**
|
|
1855
|
+
* Reply appended.
|
|
1856
|
+
*/
|
|
1857
|
+
export declare const zReplyTicketResponse: z.ZodObject<{
|
|
1858
|
+
id: z.ZodString;
|
|
1859
|
+
type: z.ZodEnum<{
|
|
1860
|
+
customer_reply: "customer_reply";
|
|
1861
|
+
agent_reply: "agent_reply";
|
|
1862
|
+
}>;
|
|
1863
|
+
body: z.ZodString;
|
|
1864
|
+
author_first_name: z.ZodOptional<z.ZodString>;
|
|
1865
|
+
author_last_name: z.ZodOptional<z.ZodString>;
|
|
1866
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1867
|
+
id: z.ZodString;
|
|
1868
|
+
filename: z.ZodString;
|
|
1869
|
+
content_type: z.ZodString;
|
|
1870
|
+
size: z.ZodInt;
|
|
1871
|
+
}, z.core.$strip>>>;
|
|
1872
|
+
date_created: z.ZodISODateTime;
|
|
1873
|
+
}, z.core.$strip>;
|
|
1874
|
+
export declare const zGetTicketAttachmentPath: z.ZodObject<{
|
|
1875
|
+
ticket_id: z.ZodString;
|
|
1876
|
+
attachment_id: z.ZodString;
|
|
1760
1877
|
}, z.core.$strip>;
|
|
1761
1878
|
/**
|
|
1762
|
-
*
|
|
1879
|
+
* Attachment binary stream.
|
|
1763
1880
|
*/
|
|
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
|
-
|
|
1786
|
-
|
|
1787
|
-
|
|
1788
|
-
|
|
1789
|
-
|
|
1790
|
-
|
|
1791
|
-
|
|
1792
|
-
|
|
1793
|
-
|
|
1794
|
-
|
|
1795
|
-
|
|
1796
|
-
|
|
1797
|
-
|
|
1798
|
-
|
|
1799
|
-
|
|
1800
|
-
|
|
1801
|
-
|
|
1802
|
-
|
|
1803
|
-
|
|
1804
|
-
|
|
1805
|
-
|
|
1806
|
-
|
|
1807
|
-
|
|
1808
|
-
|
|
1809
|
-
|
|
1810
|
-
|
|
1811
|
-
|
|
1812
|
-
|
|
1813
|
-
|
|
1814
|
-
|
|
1815
|
-
|
|
1816
|
-
|
|
1817
|
-
|
|
1818
|
-
|
|
1819
|
-
|
|
1820
|
-
|
|
1821
|
-
|
|
1822
|
-
|
|
1823
|
-
|
|
1824
|
-
|
|
1825
|
-
|
|
1826
|
-
|
|
1827
|
-
|
|
1828
|
-
|
|
1829
|
-
|
|
1830
|
-
|
|
1831
|
-
|
|
1832
|
-
|
|
1833
|
-
|
|
1834
|
-
|
|
1835
|
-
|
|
1836
|
-
|
|
1837
|
-
|
|
1838
|
-
|
|
1839
|
-
|
|
1840
|
-
|
|
1841
|
-
|
|
1842
|
-
|
|
1843
|
-
|
|
1844
|
-
|
|
1845
|
-
|
|
1846
|
-
|
|
1847
|
-
|
|
1848
|
-
|
|
1849
|
-
|
|
1850
|
-
|
|
1851
|
-
|
|
1852
|
-
|
|
1853
|
-
|
|
1854
|
-
|
|
1855
|
-
|
|
1856
|
-
|
|
1857
|
-
|
|
1858
|
-
|
|
1859
|
-
|
|
1860
|
-
|
|
1861
|
-
|
|
1862
|
-
|
|
1863
|
-
|
|
1864
|
-
|
|
1865
|
-
|
|
1866
|
-
|
|
1867
|
-
|
|
1868
|
-
|
|
1869
|
-
|
|
1870
|
-
|
|
1871
|
-
|
|
1872
|
-
|
|
1873
|
-
|
|
1874
|
-
|
|
1875
|
-
|
|
1876
|
-
|
|
1877
|
-
|
|
1878
|
-
|
|
1879
|
-
|
|
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
|
-
}>>;
|
|
1881
|
+
export declare const zGetTicketAttachmentResponse: z.ZodString;
|
|
1882
|
+
/**
|
|
1883
|
+
* List of repositories
|
|
1884
|
+
*/
|
|
1885
|
+
export declare const zListRepositoriesResponse: z.ZodArray<z.ZodObject<{
|
|
1886
|
+
name: z.ZodString;
|
|
1887
|
+
region: z.ZodString;
|
|
1888
|
+
uri: z.ZodString;
|
|
1889
|
+
}, z.core.$strip>>;
|
|
1890
|
+
export declare const zListTagsPath: z.ZodObject<{
|
|
1891
|
+
region: z.ZodString;
|
|
1892
|
+
repository: z.ZodString;
|
|
1893
|
+
}, z.core.$strip>;
|
|
1894
|
+
/**
|
|
1895
|
+
* Repository with tags
|
|
1896
|
+
*/
|
|
1897
|
+
export declare const zListTagsResponse: z.ZodObject<{
|
|
1898
|
+
name: z.ZodString;
|
|
1899
|
+
region: z.ZodString;
|
|
1900
|
+
uri: z.ZodString;
|
|
1901
|
+
tags: z.ZodArray<z.ZodObject<{
|
|
1902
|
+
name: z.ZodString;
|
|
1903
|
+
size: z.ZodNumber;
|
|
1904
|
+
mediaType: z.ZodOptional<z.ZodString>;
|
|
1905
|
+
platforms: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1906
|
+
}, z.core.$strip>>;
|
|
1907
|
+
totalSize: z.ZodNumber;
|
|
1908
|
+
}, z.core.$strip>;
|
|
1909
|
+
export declare const zDeleteTagPath: z.ZodObject<{
|
|
1910
|
+
region: z.ZodString;
|
|
1911
|
+
repository: z.ZodString;
|
|
1912
|
+
tag: z.ZodString;
|
|
1913
|
+
}, z.core.$strip>;
|
|
1914
|
+
export declare const zGetTagPath: z.ZodObject<{
|
|
1915
|
+
region: z.ZodString;
|
|
1916
|
+
repository: z.ZodString;
|
|
1917
|
+
tag: z.ZodString;
|
|
1918
|
+
}, z.core.$strip>;
|
|
1919
|
+
/**
|
|
1920
|
+
* Tag details
|
|
1921
|
+
*/
|
|
1922
|
+
export declare const zGetTagResponse: z.ZodObject<{
|
|
1923
|
+
name: z.ZodString;
|
|
1924
|
+
digest: z.ZodString;
|
|
1925
|
+
mediaType: z.ZodOptional<z.ZodString>;
|
|
1926
|
+
config: z.ZodOptional<z.ZodObject<{
|
|
1927
|
+
size: z.ZodNumber;
|
|
1928
|
+
}, z.core.$strip>>;
|
|
1929
|
+
layers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1930
|
+
digest: z.ZodOptional<z.ZodString>;
|
|
1931
|
+
size: z.ZodNumber;
|
|
1932
|
+
}, z.core.$strip>>>;
|
|
1933
|
+
manifests: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1934
|
+
digest: z.ZodString;
|
|
1935
|
+
platform: z.ZodOptional<z.ZodObject<{
|
|
1936
|
+
architecture: z.ZodString;
|
|
1937
|
+
os: z.ZodString;
|
|
1938
|
+
variant: z.ZodOptional<z.ZodString>;
|
|
1939
|
+
}, z.core.$strip>>;
|
|
1940
|
+
layers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1941
|
+
digest: z.ZodOptional<z.ZodString>;
|
|
1942
|
+
size: z.ZodNumber;
|
|
1943
|
+
}, z.core.$strip>>>;
|
|
1944
|
+
size: z.ZodOptional<z.ZodNumber>;
|
|
1945
|
+
}, z.core.$strip>>>;
|
|
1946
|
+
size: z.ZodNumber;
|
|
1947
|
+
region: z.ZodString;
|
|
1948
|
+
repository: z.ZodString;
|
|
1949
|
+
uri: z.ZodString;
|
|
1950
|
+
}, z.core.$strip>;
|
|
1951
|
+
/**
|
|
1952
|
+
* Returns a single object containing organization details.
|
|
1953
|
+
*/
|
|
1954
|
+
export declare const zGetOrganizationResponse: z.ZodObject<{
|
|
1955
|
+
id: z.ZodUUID;
|
|
1956
|
+
name: z.ZodOptional<z.ZodString>;
|
|
1957
|
+
type: z.ZodEnum<{
|
|
1958
|
+
business: "business";
|
|
1959
|
+
personal: "personal";
|
|
1960
|
+
}>;
|
|
1961
|
+
date_created: z.ZodISODateTime;
|
|
1962
|
+
quota: z.ZodObject<{
|
|
1963
|
+
basic_clusters_max: z.ZodInt;
|
|
1964
|
+
basic_clusters_available: z.ZodInt;
|
|
1965
|
+
pro_clusters_max: z.ZodInt;
|
|
1966
|
+
pro_clusters_available: z.ZodInt;
|
|
1967
|
+
fleets_max: z.ZodInt;
|
|
1968
|
+
cluster_tiers: z.ZodArray<z.ZodString>;
|
|
1969
|
+
regions: z.ZodArray<z.ZodString>;
|
|
1970
|
+
versions: z.ZodArray<z.ZodObject<{
|
|
1971
|
+
id: z.ZodString;
|
|
1972
|
+
label: z.ZodString;
|
|
1973
|
+
}, z.core.$strip>>;
|
|
1974
|
+
cfcr_storage_gb: z.ZodInt;
|
|
1975
|
+
}, z.core.$strip>;
|
|
1976
|
+
status: z.ZodEnum<{
|
|
1977
|
+
active: "active";
|
|
1978
|
+
closed: "closed";
|
|
1979
|
+
suspended: "suspended";
|
|
1980
|
+
}>;
|
|
1981
|
+
verification: z.ZodEnum<{
|
|
1982
|
+
none: "none";
|
|
1983
|
+
submitted: "submitted";
|
|
1984
|
+
verified: "verified";
|
|
1985
|
+
}>;
|
|
1986
|
+
}, z.core.$strip>;
|
|
1987
|
+
export declare const zCreateOrganizationBody: z.ZodObject<{
|
|
1988
|
+
type: z.ZodEnum<{
|
|
1989
|
+
business: "business";
|
|
1990
|
+
personal: "personal";
|
|
1991
|
+
}>;
|
|
1992
|
+
email: z.ZodEmail;
|
|
1993
|
+
first_name: z.ZodString;
|
|
1994
|
+
last_name: z.ZodString;
|
|
1995
|
+
company_name: z.ZodString;
|
|
1996
|
+
password: z.ZodString;
|
|
1906
1997
|
}, z.core.$strip>;
|
|
1907
1998
|
/**
|
|
1908
|
-
*
|
|
1999
|
+
* Organization signup accepted. Returns the generated organization id immediately; provisioning (billing, Keycloak realm, user) continues asynchronously in the background.
|
|
2000
|
+
*
|
|
1909
2001
|
*/
|
|
1910
|
-
export declare const
|
|
1911
|
-
id: z.
|
|
1912
|
-
type: z.ZodEnum<{
|
|
1913
|
-
credit: "credit";
|
|
1914
|
-
discount: "discount";
|
|
1915
|
-
}>;
|
|
1916
|
-
date_start: z.ZodISODateTime;
|
|
1917
|
-
date_end: z.ZodOptional<z.ZodISODateTime>;
|
|
1918
|
-
code: z.ZodString;
|
|
1919
|
-
description: z.ZodOptional<z.ZodString>;
|
|
1920
|
-
value_total: z.ZodNumber;
|
|
1921
|
-
value_remaining: z.ZodOptional<z.ZodNumber>;
|
|
1922
|
-
}, z.core.$strip>>;
|
|
1923
|
-
export declare const zRedeemCreditsBody: z.ZodObject<{
|
|
1924
|
-
code: z.ZodOptional<z.ZodString>;
|
|
2002
|
+
export declare const zCreateOrganizationResponse: z.ZodObject<{
|
|
2003
|
+
id: z.ZodString;
|
|
1925
2004
|
}, z.core.$strip>;
|
|
1926
|
-
|
|
1927
|
-
|
|
2005
|
+
/**
|
|
2006
|
+
* JSON-RPC 2.0 request payload
|
|
2007
|
+
*/
|
|
2008
|
+
export declare const zPostMcpBody: z.ZodObject<{
|
|
2009
|
+
jsonrpc: z.ZodOptional<z.ZodString>;
|
|
2010
|
+
method: z.ZodOptional<z.ZodString>;
|
|
2011
|
+
id: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>;
|
|
2012
|
+
params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1928
2013
|
}, z.core.$strip>;
|
|
1929
2014
|
/**
|
|
1930
|
-
*
|
|
2015
|
+
* JSON-RPC 2.0 success or error response
|
|
1931
2016
|
*/
|
|
1932
|
-
export declare const
|
|
1933
|
-
|
|
1934
|
-
|
|
2017
|
+
export declare const zPostMcpResponse: z.ZodObject<{
|
|
2018
|
+
jsonrpc: z.ZodOptional<z.ZodString>;
|
|
2019
|
+
id: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>;
|
|
2020
|
+
result: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2021
|
+
error: z.ZodOptional<z.ZodObject<{
|
|
2022
|
+
code: z.ZodOptional<z.ZodInt>;
|
|
2023
|
+
message: z.ZodOptional<z.ZodString>;
|
|
2024
|
+
}, z.core.$strip>>;
|
|
2025
|
+
}, z.core.$strip>;
|
|
2026
|
+
/**
|
|
2027
|
+
* An array of chart listings in the marketplace.
|
|
2028
|
+
*/
|
|
2029
|
+
export declare const zListMarketplaceChartsResponse: z.ZodArray<z.ZodObject<{
|
|
1935
2030
|
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;
|
|
2031
|
+
versions: z.ZodArray<z.ZodString>;
|
|
2032
|
+
version_channels: z.ZodArray<z.ZodString>;
|
|
2033
|
+
latestVersion: z.ZodString;
|
|
2034
|
+
metadata: z.ZodOptional<z.ZodObject<{
|
|
2035
|
+
name: z.ZodString;
|
|
2036
|
+
version: z.ZodString;
|
|
2037
|
+
description: z.ZodOptional<z.ZodString>;
|
|
2038
|
+
appVersion: z.ZodOptional<z.ZodString>;
|
|
2039
|
+
apiVersion: z.ZodOptional<z.ZodString>;
|
|
2040
|
+
keywords: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2041
|
+
home: z.ZodOptional<z.ZodString>;
|
|
2042
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
2043
|
+
sources: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2044
|
+
maintainers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2045
|
+
name: z.ZodString;
|
|
2046
|
+
email: z.ZodOptional<z.ZodString>;
|
|
2047
|
+
}, z.core.$strip>>>;
|
|
2048
|
+
}, z.core.$strip>>;
|
|
1958
2049
|
}, z.core.$strip>>;
|
|
1959
|
-
export declare const
|
|
1960
|
-
|
|
2050
|
+
export declare const zGetMarketplaceChartFilesPath: z.ZodObject<{
|
|
2051
|
+
chart_name: z.ZodString;
|
|
1961
2052
|
version_channel: z.ZodString;
|
|
1962
|
-
name: z.ZodString;
|
|
1963
|
-
namespace: z.ZodString;
|
|
1964
|
-
chart: z.ZodString;
|
|
1965
2053
|
}, z.core.$strip>;
|
|
1966
|
-
|
|
1967
|
-
|
|
2054
|
+
/**
|
|
2055
|
+
* Returns an object containing the chart files for the latest matching version.
|
|
2056
|
+
*/
|
|
2057
|
+
export declare const zGetMarketplaceChartFilesResponse: z.ZodObject<{
|
|
2058
|
+
chartYaml: z.ZodOptional<z.ZodString>;
|
|
2059
|
+
valuesYaml: z.ZodOptional<z.ZodString>;
|
|
2060
|
+
valuesSchemaJson: z.ZodOptional<z.ZodString>;
|
|
1968
2061
|
}, z.core.$strip>;
|
|
1969
2062
|
/**
|
|
1970
|
-
*
|
|
2063
|
+
* An array of invites
|
|
1971
2064
|
*/
|
|
1972
|
-
export declare const
|
|
1973
|
-
|
|
1974
|
-
|
|
1975
|
-
|
|
2065
|
+
export declare const zListInvitesResponse: z.ZodArray<z.ZodObject<{
|
|
2066
|
+
id: z.ZodOptional<z.ZodString>;
|
|
2067
|
+
organization_id: z.ZodOptional<z.ZodUUID>;
|
|
2068
|
+
date_created: z.ZodISODateTime;
|
|
2069
|
+
email: z.ZodOptional<z.ZodEmail>;
|
|
2070
|
+
code: z.ZodOptional<z.ZodString>;
|
|
2071
|
+
role: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
2072
|
+
Administrator: "Administrator";
|
|
2073
|
+
User: "User";
|
|
2074
|
+
}>>>;
|
|
2075
|
+
}, z.core.$strip>>;
|
|
2076
|
+
export declare const zCreateInviteBody: z.ZodObject<{
|
|
2077
|
+
email: z.ZodEmail;
|
|
2078
|
+
role: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
2079
|
+
Administrator: "Administrator";
|
|
2080
|
+
User: "User";
|
|
2081
|
+
}>>>;
|
|
1976
2082
|
}, z.core.$strip>;
|
|
1977
2083
|
/**
|
|
1978
|
-
* Successfully
|
|
2084
|
+
* Successfully created. Returns created invite details.
|
|
1979
2085
|
*/
|
|
1980
|
-
export declare const
|
|
1981
|
-
|
|
1982
|
-
|
|
1983
|
-
|
|
2086
|
+
export declare const zCreateInviteResponse: z.ZodObject<{
|
|
2087
|
+
id: z.ZodOptional<z.ZodString>;
|
|
2088
|
+
organization_id: z.ZodOptional<z.ZodUUID>;
|
|
2089
|
+
date_created: z.ZodISODateTime;
|
|
2090
|
+
email: z.ZodOptional<z.ZodEmail>;
|
|
2091
|
+
code: z.ZodOptional<z.ZodString>;
|
|
2092
|
+
role: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
2093
|
+
Administrator: "Administrator";
|
|
2094
|
+
User: "User";
|
|
2095
|
+
}>>>;
|
|
2096
|
+
}, z.core.$strip>;
|
|
2097
|
+
export declare const zGetInvitePath: z.ZodObject<{
|
|
2098
|
+
code: z.ZodString;
|
|
1984
2099
|
}, z.core.$strip>;
|
|
1985
2100
|
/**
|
|
1986
|
-
* Returns
|
|
2101
|
+
* The invitation code is valid. Returns the invited email and organization.
|
|
1987
2102
|
*/
|
|
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;
|
|
2103
|
+
export declare const zGetInviteResponse: z.ZodObject<{
|
|
2104
|
+
email: z.ZodOptional<z.ZodEmail>;
|
|
2105
|
+
organization_id: z.ZodOptional<z.ZodString>;
|
|
2014
2106
|
}, z.core.$strip>;
|
|
2015
|
-
export declare const
|
|
2016
|
-
|
|
2017
|
-
version_channel: z.ZodString;
|
|
2107
|
+
export declare const zDeleteInvitePath: z.ZodObject<{
|
|
2108
|
+
email: z.ZodEmail;
|
|
2018
2109
|
}, z.core.$strip>;
|
|
2019
|
-
export declare const
|
|
2110
|
+
export declare const zQueryClusterPath: z.ZodObject<{
|
|
2020
2111
|
cluster_id: z.ZodString;
|
|
2021
|
-
chart_name: z.ZodString;
|
|
2022
2112
|
}, z.core.$strip>;
|
|
2023
|
-
/**
|
|
2024
|
-
* Successfully updated.
|
|
2025
|
-
*/
|
|
2026
|
-
export declare const zUpdateChartResponse: z.ZodString;
|
|
2027
2113
|
export declare const zListFleetsPath: z.ZodObject<{
|
|
2028
2114
|
cluster_id: z.ZodString;
|
|
2029
2115
|
}, z.core.$strip>;
|
|
@@ -2046,16 +2132,16 @@ export declare const zListFleetsResponse: z.ZodArray<z.ZodObject<{
|
|
|
2046
2132
|
enabled: z.ZodBoolean;
|
|
2047
2133
|
controllerRoleArn: z.ZodOptional<z.ZodString>;
|
|
2048
2134
|
}, z.core.$strip>>;
|
|
2049
|
-
constraints: z.
|
|
2050
|
-
'karpenter.sh/capacity-type': z.
|
|
2135
|
+
constraints: z.ZodDefault<z.ZodObject<{
|
|
2136
|
+
'karpenter.sh/capacity-type': z.ZodDefault<z.ZodArray<z.ZodEnum<{
|
|
2051
2137
|
"on-demand": "on-demand";
|
|
2052
2138
|
spot: "spot";
|
|
2053
2139
|
}>>>;
|
|
2054
|
-
'kubernetes.io/arch': z.
|
|
2140
|
+
'kubernetes.io/arch': z.ZodDefault<z.ZodArray<z.ZodEnum<{
|
|
2055
2141
|
amd64: "amd64";
|
|
2056
2142
|
arm64: "arm64";
|
|
2057
2143
|
}>>>;
|
|
2058
|
-
'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2144
|
+
'cfke.io/instance-family': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2059
2145
|
p3: "p3";
|
|
2060
2146
|
cx: "cx";
|
|
2061
2147
|
h1: "h1";
|
|
@@ -2214,8 +2300,8 @@ export declare const zListFleetsResponse: z.ZodArray<z.ZodObject<{
|
|
|
2214
2300
|
x8g: "x8g";
|
|
2215
2301
|
z1d: "z1d";
|
|
2216
2302
|
z3: "z3";
|
|
2217
|
-
}
|
|
2218
|
-
'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2303
|
+
}>>>>;
|
|
2304
|
+
'topology.kubernetes.io/region': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2219
2305
|
"africa-south1": "africa-south1";
|
|
2220
2306
|
"ap-northeast-1": "ap-northeast-1";
|
|
2221
2307
|
"ap-northeast-2": "ap-northeast-2";
|
|
@@ -2280,13 +2366,17 @@ export declare const zListFleetsResponse: z.ZodArray<z.ZodObject<{
|
|
|
2280
2366
|
"us-west2": "us-west2";
|
|
2281
2367
|
"us-west3": "us-west3";
|
|
2282
2368
|
"us-west4": "us-west4";
|
|
2283
|
-
}
|
|
2369
|
+
}>>>>;
|
|
2284
2370
|
}, z.core.$strip>>;
|
|
2285
2371
|
scalingProfile: z.ZodDefault<z.ZodEnum<{
|
|
2286
2372
|
aggressive: "aggressive";
|
|
2287
2373
|
conservative: "conservative";
|
|
2288
2374
|
}>>;
|
|
2289
2375
|
id: z.ZodString;
|
|
2376
|
+
ready: z.ZodBoolean;
|
|
2377
|
+
status_message: z.ZodOptional<z.ZodString>;
|
|
2378
|
+
created_at: z.ZodString;
|
|
2379
|
+
updated_at: z.ZodString;
|
|
2290
2380
|
}, z.core.$strip>>;
|
|
2291
2381
|
export declare const zCreateFleetBody: z.ZodObject<{
|
|
2292
2382
|
limits: z.ZodOptional<z.ZodObject<{
|
|
@@ -2304,16 +2394,16 @@ export declare const zCreateFleetBody: z.ZodObject<{
|
|
|
2304
2394
|
enabled: z.ZodBoolean;
|
|
2305
2395
|
controllerRoleArn: z.ZodOptional<z.ZodString>;
|
|
2306
2396
|
}, z.core.$strip>>;
|
|
2307
|
-
constraints: z.ZodOptional<z.ZodObject<{
|
|
2308
|
-
'karpenter.sh/capacity-type': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2397
|
+
constraints: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
2398
|
+
'karpenter.sh/capacity-type': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2309
2399
|
"on-demand": "on-demand";
|
|
2310
2400
|
spot: "spot";
|
|
2311
|
-
}
|
|
2312
|
-
'kubernetes.io/arch': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2401
|
+
}>>>>;
|
|
2402
|
+
'kubernetes.io/arch': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2313
2403
|
amd64: "amd64";
|
|
2314
2404
|
arm64: "arm64";
|
|
2315
|
-
}
|
|
2316
|
-
'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2405
|
+
}>>>>;
|
|
2406
|
+
'cfke.io/instance-family': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2317
2407
|
p3: "p3";
|
|
2318
2408
|
cx: "cx";
|
|
2319
2409
|
h1: "h1";
|
|
@@ -2472,8 +2562,8 @@ export declare const zCreateFleetBody: z.ZodObject<{
|
|
|
2472
2562
|
x8g: "x8g";
|
|
2473
2563
|
z1d: "z1d";
|
|
2474
2564
|
z3: "z3";
|
|
2475
|
-
}
|
|
2476
|
-
'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2565
|
+
}>>>>;
|
|
2566
|
+
'topology.kubernetes.io/region': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2477
2567
|
"africa-south1": "africa-south1";
|
|
2478
2568
|
"ap-northeast-1": "ap-northeast-1";
|
|
2479
2569
|
"ap-northeast-2": "ap-northeast-2";
|
|
@@ -2538,8 +2628,8 @@ export declare const zCreateFleetBody: z.ZodObject<{
|
|
|
2538
2628
|
"us-west2": "us-west2";
|
|
2539
2629
|
"us-west3": "us-west3";
|
|
2540
2630
|
"us-west4": "us-west4";
|
|
2541
|
-
}
|
|
2542
|
-
}, z.core.$strip
|
|
2631
|
+
}>>>>;
|
|
2632
|
+
}, z.core.$strip>>>;
|
|
2543
2633
|
scalingProfile: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
2544
2634
|
aggressive: "aggressive";
|
|
2545
2635
|
conservative: "conservative";
|
|
@@ -2584,16 +2674,16 @@ export declare const zGetFleetResponse: z.ZodObject<{
|
|
|
2584
2674
|
enabled: z.ZodBoolean;
|
|
2585
2675
|
controllerRoleArn: z.ZodOptional<z.ZodString>;
|
|
2586
2676
|
}, z.core.$strip>>;
|
|
2587
|
-
constraints: z.
|
|
2588
|
-
'karpenter.sh/capacity-type': z.
|
|
2677
|
+
constraints: z.ZodDefault<z.ZodObject<{
|
|
2678
|
+
'karpenter.sh/capacity-type': z.ZodDefault<z.ZodArray<z.ZodEnum<{
|
|
2589
2679
|
"on-demand": "on-demand";
|
|
2590
2680
|
spot: "spot";
|
|
2591
2681
|
}>>>;
|
|
2592
|
-
'kubernetes.io/arch': z.
|
|
2682
|
+
'kubernetes.io/arch': z.ZodDefault<z.ZodArray<z.ZodEnum<{
|
|
2593
2683
|
amd64: "amd64";
|
|
2594
2684
|
arm64: "arm64";
|
|
2595
2685
|
}>>>;
|
|
2596
|
-
'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2686
|
+
'cfke.io/instance-family': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2597
2687
|
p3: "p3";
|
|
2598
2688
|
cx: "cx";
|
|
2599
2689
|
h1: "h1";
|
|
@@ -2752,8 +2842,8 @@ export declare const zGetFleetResponse: z.ZodObject<{
|
|
|
2752
2842
|
x8g: "x8g";
|
|
2753
2843
|
z1d: "z1d";
|
|
2754
2844
|
z3: "z3";
|
|
2755
|
-
}
|
|
2756
|
-
'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2845
|
+
}>>>>;
|
|
2846
|
+
'topology.kubernetes.io/region': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2757
2847
|
"africa-south1": "africa-south1";
|
|
2758
2848
|
"ap-northeast-1": "ap-northeast-1";
|
|
2759
2849
|
"ap-northeast-2": "ap-northeast-2";
|
|
@@ -2818,13 +2908,17 @@ export declare const zGetFleetResponse: z.ZodObject<{
|
|
|
2818
2908
|
"us-west2": "us-west2";
|
|
2819
2909
|
"us-west3": "us-west3";
|
|
2820
2910
|
"us-west4": "us-west4";
|
|
2821
|
-
}
|
|
2911
|
+
}>>>>;
|
|
2822
2912
|
}, z.core.$strip>>;
|
|
2823
2913
|
scalingProfile: z.ZodDefault<z.ZodEnum<{
|
|
2824
2914
|
aggressive: "aggressive";
|
|
2825
2915
|
conservative: "conservative";
|
|
2826
2916
|
}>>;
|
|
2827
2917
|
id: z.ZodString;
|
|
2918
|
+
ready: z.ZodBoolean;
|
|
2919
|
+
status_message: z.ZodOptional<z.ZodString>;
|
|
2920
|
+
created_at: z.ZodString;
|
|
2921
|
+
updated_at: z.ZodString;
|
|
2828
2922
|
}, z.core.$strip>;
|
|
2829
2923
|
export declare const zUpdateFleetBody: z.ZodObject<{
|
|
2830
2924
|
limits: z.ZodOptional<z.ZodObject<{
|
|
@@ -2842,16 +2936,16 @@ export declare const zUpdateFleetBody: z.ZodObject<{
|
|
|
2842
2936
|
enabled: z.ZodBoolean;
|
|
2843
2937
|
controllerRoleArn: z.ZodOptional<z.ZodString>;
|
|
2844
2938
|
}, z.core.$strip>>;
|
|
2845
|
-
constraints: z.ZodOptional<z.ZodObject<{
|
|
2846
|
-
'karpenter.sh/capacity-type': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2939
|
+
constraints: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
2940
|
+
'karpenter.sh/capacity-type': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2847
2941
|
"on-demand": "on-demand";
|
|
2848
2942
|
spot: "spot";
|
|
2849
|
-
}
|
|
2850
|
-
'kubernetes.io/arch': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2943
|
+
}>>>>;
|
|
2944
|
+
'kubernetes.io/arch': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2851
2945
|
amd64: "amd64";
|
|
2852
2946
|
arm64: "arm64";
|
|
2853
|
-
}
|
|
2854
|
-
'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2947
|
+
}>>>>;
|
|
2948
|
+
'cfke.io/instance-family': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2855
2949
|
p3: "p3";
|
|
2856
2950
|
cx: "cx";
|
|
2857
2951
|
h1: "h1";
|
|
@@ -3010,8 +3104,8 @@ export declare const zUpdateFleetBody: z.ZodObject<{
|
|
|
3010
3104
|
x8g: "x8g";
|
|
3011
3105
|
z1d: "z1d";
|
|
3012
3106
|
z3: "z3";
|
|
3013
|
-
}
|
|
3014
|
-
'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
3107
|
+
}>>>>;
|
|
3108
|
+
'topology.kubernetes.io/region': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
3015
3109
|
"africa-south1": "africa-south1";
|
|
3016
3110
|
"ap-northeast-1": "ap-northeast-1";
|
|
3017
3111
|
"ap-northeast-2": "ap-northeast-2";
|
|
@@ -3076,826 +3170,881 @@ export declare const zUpdateFleetBody: z.ZodObject<{
|
|
|
3076
3170
|
"us-west2": "us-west2";
|
|
3077
3171
|
"us-west3": "us-west3";
|
|
3078
3172
|
"us-west4": "us-west4";
|
|
3079
|
-
}
|
|
3080
|
-
}, z.core.$strip
|
|
3081
|
-
scalingProfile: z.ZodEnum<{
|
|
3173
|
+
}>>>>;
|
|
3174
|
+
}, z.core.$strip>>>;
|
|
3175
|
+
scalingProfile: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
3082
3176
|
aggressive: "aggressive";
|
|
3083
3177
|
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
3178
|
}>>>;
|
|
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
3179
|
}, z.core.$strip>;
|
|
3214
|
-
export declare const
|
|
3180
|
+
export declare const zUpdateFleetPath: z.ZodObject<{
|
|
3215
3181
|
cluster_id: z.ZodString;
|
|
3182
|
+
fleet_name: z.ZodString;
|
|
3216
3183
|
}, z.core.$strip>;
|
|
3217
3184
|
/**
|
|
3218
|
-
* Successfully updated.
|
|
3185
|
+
* Successfully updated.
|
|
3219
3186
|
*/
|
|
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<{
|
|
3187
|
+
export declare const zUpdateFleetResponse: z.ZodString;
|
|
3188
|
+
export declare const zListChartsPath: z.ZodObject<{
|
|
3256
3189
|
cluster_id: z.ZodString;
|
|
3257
3190
|
}, z.core.$strip>;
|
|
3258
3191
|
/**
|
|
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.
|
|
3192
|
+
* An array of charts
|
|
3320
3193
|
*/
|
|
3321
|
-
export declare const
|
|
3194
|
+
export declare const zListChartsResponse: z.ZodArray<z.ZodObject<{
|
|
3195
|
+
values: z.ZodString;
|
|
3196
|
+
version_channel: z.ZodString;
|
|
3322
3197
|
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>>;
|
|
3198
|
+
namespace: z.ZodString;
|
|
3199
|
+
chart: z.ZodString;
|
|
3200
|
+
status: z.ZodString;
|
|
3201
|
+
version_current: z.ZodString;
|
|
3202
|
+
created_at: z.ZodString;
|
|
3203
|
+
updated_at: z.ZodString;
|
|
3204
|
+
ready: z.ZodBoolean;
|
|
3341
3205
|
}, z.core.$strip>>;
|
|
3342
|
-
export declare const
|
|
3343
|
-
|
|
3206
|
+
export declare const zCreateChartBody: z.ZodObject<{
|
|
3207
|
+
values: z.ZodString;
|
|
3344
3208
|
version_channel: z.ZodString;
|
|
3209
|
+
name: z.ZodString;
|
|
3210
|
+
namespace: z.ZodString;
|
|
3211
|
+
chart: z.ZodString;
|
|
3345
3212
|
}, 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>>;
|
|
3213
|
+
export declare const zCreateChartPath: z.ZodObject<{
|
|
3214
|
+
cluster_id: z.ZodString;
|
|
3374
3215
|
}, z.core.$strip>;
|
|
3375
3216
|
/**
|
|
3376
|
-
*
|
|
3217
|
+
* Successfully created. Returns created Chart ID.
|
|
3377
3218
|
*/
|
|
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;
|
|
3219
|
+
export declare const zCreateChartResponse: z.ZodString;
|
|
3220
|
+
export declare const zDeleteChartPath: z.ZodObject<{
|
|
3221
|
+
cluster_id: z.ZodString;
|
|
3222
|
+
chart_name: z.ZodString;
|
|
3408
3223
|
}, z.core.$strip>;
|
|
3409
3224
|
/**
|
|
3410
|
-
*
|
|
3225
|
+
* Successfully deleted.
|
|
3411
3226
|
*/
|
|
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;
|
|
3227
|
+
export declare const zDeleteChartResponse: z.ZodString;
|
|
3228
|
+
export declare const zGetChartPath: z.ZodObject<{
|
|
3229
|
+
cluster_id: z.ZodString;
|
|
3230
|
+
chart_name: z.ZodString;
|
|
3420
3231
|
}, z.core.$strip>;
|
|
3421
3232
|
/**
|
|
3422
|
-
*
|
|
3233
|
+
* Returns a single object containing chart details.
|
|
3423
3234
|
*/
|
|
3424
|
-
export declare const
|
|
3235
|
+
export declare const zGetChartResponse: z.ZodObject<{
|
|
3236
|
+
values: z.ZodString;
|
|
3237
|
+
version_channel: z.ZodString;
|
|
3425
3238
|
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;
|
|
3239
|
+
namespace: z.ZodString;
|
|
3240
|
+
chart: z.ZodString;
|
|
3241
|
+
status: z.ZodString;
|
|
3242
|
+
version_current: z.ZodString;
|
|
3243
|
+
created_at: z.ZodString;
|
|
3244
|
+
updated_at: z.ZodString;
|
|
3245
|
+
ready: z.ZodBoolean;
|
|
3440
3246
|
}, z.core.$strip>;
|
|
3441
|
-
export declare const
|
|
3442
|
-
|
|
3443
|
-
|
|
3444
|
-
|
|
3247
|
+
export declare const zUpdateChartBody: z.ZodObject<{
|
|
3248
|
+
values: z.ZodString;
|
|
3249
|
+
version_channel: z.ZodString;
|
|
3250
|
+
}, z.core.$strip>;
|
|
3251
|
+
export declare const zUpdateChartPath: z.ZodObject<{
|
|
3252
|
+
cluster_id: z.ZodString;
|
|
3253
|
+
chart_name: z.ZodString;
|
|
3445
3254
|
}, z.core.$strip>;
|
|
3446
3255
|
/**
|
|
3447
|
-
*
|
|
3256
|
+
* Successfully updated.
|
|
3448
3257
|
*/
|
|
3449
|
-
export declare const
|
|
3258
|
+
export declare const zUpdateChartResponse: z.ZodString;
|
|
3259
|
+
/**
|
|
3260
|
+
* An array of clusters
|
|
3261
|
+
*/
|
|
3262
|
+
export declare const zListClustersResponse: z.ZodArray<z.ZodObject<{
|
|
3450
3263
|
name: z.ZodString;
|
|
3451
|
-
|
|
3452
|
-
|
|
3453
|
-
|
|
3454
|
-
|
|
3264
|
+
tier: z.ZodDefault<z.ZodEnum<{
|
|
3265
|
+
basic: "basic";
|
|
3266
|
+
pro: "pro";
|
|
3267
|
+
}>>;
|
|
3268
|
+
version_channel: z.ZodDefault<z.ZodString>;
|
|
3269
|
+
release_channel: z.ZodDefault<z.ZodEnum<{
|
|
3270
|
+
stable: "stable";
|
|
3271
|
+
rapid: "rapid";
|
|
3272
|
+
extended: "extended";
|
|
3273
|
+
}>>;
|
|
3274
|
+
features: z.ZodDefault<z.ZodObject<{
|
|
3275
|
+
gpu_sharing_strategy: z.ZodDefault<z.ZodEnum<{
|
|
3276
|
+
none: "none";
|
|
3277
|
+
mps: "mps";
|
|
3278
|
+
time_slicing: "time_slicing";
|
|
3279
|
+
}>>;
|
|
3280
|
+
gpu_max_shared_clients_per_gpu: z.ZodDefault<z.ZodInt>;
|
|
3281
|
+
cilium_socket_lb_host_namespace_only: z.ZodBoolean;
|
|
3455
3282
|
}, z.core.$strip>>;
|
|
3456
|
-
|
|
3457
|
-
|
|
3458
|
-
|
|
3459
|
-
|
|
3460
|
-
|
|
3461
|
-
|
|
3462
|
-
|
|
3463
|
-
|
|
3464
|
-
|
|
3465
|
-
|
|
3466
|
-
|
|
3467
|
-
|
|
3468
|
-
|
|
3469
|
-
|
|
3470
|
-
|
|
3471
|
-
|
|
3283
|
+
region: z.ZodString;
|
|
3284
|
+
networking: z.ZodDefault<z.ZodObject<{
|
|
3285
|
+
pod_cidr: z.ZodDefault<z.ZodString>;
|
|
3286
|
+
service_cidr: z.ZodDefault<z.ZodString>;
|
|
3287
|
+
dual_stack: z.ZodBoolean;
|
|
3288
|
+
pod_cidr_v6: z.ZodDefault<z.ZodString>;
|
|
3289
|
+
service_cidr_v6: z.ZodDefault<z.ZodString>;
|
|
3290
|
+
}, z.core.$strip>>;
|
|
3291
|
+
id: z.ZodUUID;
|
|
3292
|
+
status: z.ZodEnum<{
|
|
3293
|
+
disabled: "disabled";
|
|
3294
|
+
creating: "creating";
|
|
3295
|
+
deployed: "deployed";
|
|
3296
|
+
updating: "updating";
|
|
3297
|
+
}>;
|
|
3298
|
+
endpoint: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
|
|
3299
|
+
"": "";
|
|
3300
|
+
}>]>>;
|
|
3301
|
+
endpoint_public: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
|
|
3302
|
+
"": "";
|
|
3303
|
+
}>]>>;
|
|
3304
|
+
certificate_ca: z.ZodOptional<z.ZodString>;
|
|
3305
|
+
version_current: z.ZodOptional<z.ZodString>;
|
|
3306
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
3307
|
+
updated_at: z.ZodOptional<z.ZodString>;
|
|
3308
|
+
ready: z.ZodBoolean;
|
|
3309
|
+
}, z.core.$strip>>;
|
|
3310
|
+
export declare const zCreateClusterBody: z.ZodObject<{
|
|
3311
|
+
name: z.ZodString;
|
|
3312
|
+
tier: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
3313
|
+
basic: "basic";
|
|
3314
|
+
pro: "pro";
|
|
3315
|
+
}>>>;
|
|
3316
|
+
version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
3317
|
+
release_channel: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
3318
|
+
stable: "stable";
|
|
3319
|
+
rapid: "rapid";
|
|
3320
|
+
extended: "extended";
|
|
3321
|
+
}>>>;
|
|
3322
|
+
features: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
3323
|
+
gpu_sharing_strategy: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
3324
|
+
none: "none";
|
|
3325
|
+
mps: "mps";
|
|
3326
|
+
time_slicing: "time_slicing";
|
|
3327
|
+
}>>>;
|
|
3328
|
+
gpu_max_shared_clients_per_gpu: z.ZodDefault<z.ZodOptional<z.ZodInt>>;
|
|
3329
|
+
cilium_socket_lb_host_namespace_only: z.ZodOptional<z.ZodBoolean>;
|
|
3472
3330
|
}, z.core.$strip>>>;
|
|
3473
|
-
size: z.ZodNumber;
|
|
3474
3331
|
region: z.ZodString;
|
|
3475
|
-
|
|
3476
|
-
|
|
3332
|
+
networking: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
3333
|
+
pod_cidr: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
3334
|
+
service_cidr: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
3335
|
+
dual_stack: z.ZodOptional<z.ZodBoolean>;
|
|
3336
|
+
pod_cidr_v6: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
3337
|
+
service_cidr_v6: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
3338
|
+
}, z.core.$strip>>>;
|
|
3477
3339
|
}, z.core.$strip>;
|
|
3478
3340
|
/**
|
|
3479
|
-
*
|
|
3341
|
+
* Successfully created. Returns created Cluster ID.
|
|
3480
3342
|
*/
|
|
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>>;
|
|
3343
|
+
export declare const zCreateClusterResponse: z.ZodString;
|
|
3344
|
+
export declare const zDeleteClusterPath: z.ZodObject<{
|
|
3345
|
+
cluster_id: z.ZodString;
|
|
3516
3346
|
}, z.core.$strip>;
|
|
3517
|
-
|
|
3518
|
-
|
|
3519
|
-
|
|
3347
|
+
/**
|
|
3348
|
+
* Successfully deleted. The cluster has been torn down.
|
|
3349
|
+
*/
|
|
3350
|
+
export declare const zDeleteClusterResponse: z.ZodString;
|
|
3351
|
+
export declare const zGetClusterPath: z.ZodObject<{
|
|
3352
|
+
cluster_id: z.ZodString;
|
|
3520
3353
|
}, z.core.$strip>;
|
|
3521
3354
|
/**
|
|
3522
|
-
*
|
|
3355
|
+
* Returns a single object containing cluster details.
|
|
3523
3356
|
*/
|
|
3524
|
-
export declare const
|
|
3525
|
-
|
|
3357
|
+
export declare const zGetClusterResponse: z.ZodObject<{
|
|
3358
|
+
name: z.ZodString;
|
|
3359
|
+
tier: z.ZodDefault<z.ZodEnum<{
|
|
3360
|
+
basic: "basic";
|
|
3361
|
+
pro: "pro";
|
|
3362
|
+
}>>;
|
|
3363
|
+
version_channel: z.ZodDefault<z.ZodString>;
|
|
3364
|
+
release_channel: z.ZodDefault<z.ZodEnum<{
|
|
3365
|
+
stable: "stable";
|
|
3366
|
+
rapid: "rapid";
|
|
3367
|
+
extended: "extended";
|
|
3368
|
+
}>>;
|
|
3369
|
+
features: z.ZodDefault<z.ZodObject<{
|
|
3370
|
+
gpu_sharing_strategy: z.ZodDefault<z.ZodEnum<{
|
|
3371
|
+
none: "none";
|
|
3372
|
+
mps: "mps";
|
|
3373
|
+
time_slicing: "time_slicing";
|
|
3374
|
+
}>>;
|
|
3375
|
+
gpu_max_shared_clients_per_gpu: z.ZodDefault<z.ZodInt>;
|
|
3376
|
+
cilium_socket_lb_host_namespace_only: z.ZodBoolean;
|
|
3377
|
+
}, z.core.$strip>>;
|
|
3378
|
+
region: z.ZodString;
|
|
3379
|
+
networking: z.ZodDefault<z.ZodObject<{
|
|
3380
|
+
pod_cidr: z.ZodDefault<z.ZodString>;
|
|
3381
|
+
service_cidr: z.ZodDefault<z.ZodString>;
|
|
3382
|
+
dual_stack: z.ZodBoolean;
|
|
3383
|
+
pod_cidr_v6: z.ZodDefault<z.ZodString>;
|
|
3384
|
+
service_cidr_v6: z.ZodDefault<z.ZodString>;
|
|
3385
|
+
}, z.core.$strip>>;
|
|
3386
|
+
id: z.ZodUUID;
|
|
3526
3387
|
status: z.ZodEnum<{
|
|
3527
|
-
|
|
3528
|
-
|
|
3529
|
-
|
|
3530
|
-
|
|
3531
|
-
category: z.ZodEnum<{
|
|
3532
|
-
billing: "billing";
|
|
3533
|
-
technical: "technical";
|
|
3534
|
-
general: "general";
|
|
3388
|
+
disabled: "disabled";
|
|
3389
|
+
creating: "creating";
|
|
3390
|
+
deployed: "deployed";
|
|
3391
|
+
updating: "updating";
|
|
3535
3392
|
}>;
|
|
3536
|
-
|
|
3537
|
-
|
|
3538
|
-
|
|
3539
|
-
|
|
3540
|
-
|
|
3541
|
-
|
|
3542
|
-
|
|
3543
|
-
|
|
3544
|
-
|
|
3545
|
-
|
|
3546
|
-
|
|
3547
|
-
|
|
3548
|
-
|
|
3549
|
-
|
|
3550
|
-
|
|
3551
|
-
|
|
3552
|
-
|
|
3553
|
-
|
|
3554
|
-
|
|
3555
|
-
|
|
3393
|
+
endpoint: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
|
|
3394
|
+
"": "";
|
|
3395
|
+
}>]>>;
|
|
3396
|
+
endpoint_public: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
|
|
3397
|
+
"": "";
|
|
3398
|
+
}>]>>;
|
|
3399
|
+
certificate_ca: z.ZodOptional<z.ZodString>;
|
|
3400
|
+
version_current: z.ZodOptional<z.ZodString>;
|
|
3401
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
3402
|
+
updated_at: z.ZodOptional<z.ZodString>;
|
|
3403
|
+
ready: z.ZodBoolean;
|
|
3404
|
+
}, z.core.$strip>;
|
|
3405
|
+
export declare const zUpdateClusterBody: z.ZodObject<{
|
|
3406
|
+
name: z.ZodString;
|
|
3407
|
+
tier: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
3408
|
+
basic: "basic";
|
|
3409
|
+
pro: "pro";
|
|
3410
|
+
}>>>;
|
|
3411
|
+
version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
3412
|
+
release_channel: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
3413
|
+
stable: "stable";
|
|
3414
|
+
rapid: "rapid";
|
|
3415
|
+
extended: "extended";
|
|
3416
|
+
}>>>;
|
|
3417
|
+
features: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
3418
|
+
gpu_sharing_strategy: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
3419
|
+
none: "none";
|
|
3420
|
+
mps: "mps";
|
|
3421
|
+
time_slicing: "time_slicing";
|
|
3422
|
+
}>>>;
|
|
3423
|
+
gpu_max_shared_clients_per_gpu: z.ZodDefault<z.ZodOptional<z.ZodInt>>;
|
|
3424
|
+
cilium_socket_lb_host_namespace_only: z.ZodOptional<z.ZodBoolean>;
|
|
3556
3425
|
}, z.core.$strip>>>;
|
|
3557
3426
|
}, z.core.$strip>;
|
|
3558
|
-
export declare const
|
|
3559
|
-
|
|
3427
|
+
export declare const zUpdateClusterPath: z.ZodObject<{
|
|
3428
|
+
cluster_id: z.ZodString;
|
|
3560
3429
|
}, z.core.$strip>;
|
|
3561
3430
|
/**
|
|
3562
|
-
*
|
|
3431
|
+
* Successfully updated. Returns updated cluster details.
|
|
3563
3432
|
*/
|
|
3564
|
-
export declare const
|
|
3565
|
-
|
|
3433
|
+
export declare const zUpdateClusterResponse: z.ZodObject<{
|
|
3434
|
+
name: z.ZodString;
|
|
3435
|
+
tier: z.ZodDefault<z.ZodEnum<{
|
|
3436
|
+
basic: "basic";
|
|
3437
|
+
pro: "pro";
|
|
3438
|
+
}>>;
|
|
3439
|
+
version_channel: z.ZodDefault<z.ZodString>;
|
|
3440
|
+
release_channel: z.ZodDefault<z.ZodEnum<{
|
|
3441
|
+
stable: "stable";
|
|
3442
|
+
rapid: "rapid";
|
|
3443
|
+
extended: "extended";
|
|
3444
|
+
}>>;
|
|
3445
|
+
features: z.ZodDefault<z.ZodObject<{
|
|
3446
|
+
gpu_sharing_strategy: z.ZodDefault<z.ZodEnum<{
|
|
3447
|
+
none: "none";
|
|
3448
|
+
mps: "mps";
|
|
3449
|
+
time_slicing: "time_slicing";
|
|
3450
|
+
}>>;
|
|
3451
|
+
gpu_max_shared_clients_per_gpu: z.ZodDefault<z.ZodInt>;
|
|
3452
|
+
cilium_socket_lb_host_namespace_only: z.ZodBoolean;
|
|
3453
|
+
}, z.core.$strip>>;
|
|
3454
|
+
region: z.ZodString;
|
|
3455
|
+
networking: z.ZodDefault<z.ZodObject<{
|
|
3456
|
+
pod_cidr: z.ZodDefault<z.ZodString>;
|
|
3457
|
+
service_cidr: z.ZodDefault<z.ZodString>;
|
|
3458
|
+
dual_stack: z.ZodBoolean;
|
|
3459
|
+
pod_cidr_v6: z.ZodDefault<z.ZodString>;
|
|
3460
|
+
service_cidr_v6: z.ZodDefault<z.ZodString>;
|
|
3461
|
+
}, z.core.$strip>>;
|
|
3462
|
+
id: z.ZodUUID;
|
|
3566
3463
|
status: z.ZodEnum<{
|
|
3567
|
-
|
|
3568
|
-
|
|
3569
|
-
|
|
3570
|
-
|
|
3571
|
-
category: z.ZodEnum<{
|
|
3572
|
-
billing: "billing";
|
|
3573
|
-
technical: "technical";
|
|
3574
|
-
general: "general";
|
|
3464
|
+
disabled: "disabled";
|
|
3465
|
+
creating: "creating";
|
|
3466
|
+
deployed: "deployed";
|
|
3467
|
+
updating: "updating";
|
|
3575
3468
|
}>;
|
|
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>>>;
|
|
3469
|
+
endpoint: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
|
|
3470
|
+
"": "";
|
|
3471
|
+
}>]>>;
|
|
3472
|
+
endpoint_public: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
|
|
3473
|
+
"": "";
|
|
3474
|
+
}>]>>;
|
|
3475
|
+
certificate_ca: z.ZodOptional<z.ZodString>;
|
|
3476
|
+
version_current: z.ZodOptional<z.ZodString>;
|
|
3477
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
3478
|
+
updated_at: z.ZodOptional<z.ZodString>;
|
|
3479
|
+
ready: z.ZodBoolean;
|
|
3597
3480
|
}, z.core.$strip>;
|
|
3598
|
-
export declare const
|
|
3599
|
-
|
|
3481
|
+
export declare const zGetJoinInformationPath: z.ZodObject<{
|
|
3482
|
+
cluster_id: z.ZodString;
|
|
3600
3483
|
}, z.core.$strip>;
|
|
3601
3484
|
/**
|
|
3602
|
-
*
|
|
3485
|
+
* An object of cluster join information
|
|
3603
3486
|
*/
|
|
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>>>;
|
|
3487
|
+
export declare const zGetJoinInformationResponse: z.ZodObject<{
|
|
3488
|
+
certificate_authority: z.ZodString;
|
|
3489
|
+
endpoint: z.ZodURL;
|
|
3490
|
+
cluster_dns: z.ZodString;
|
|
3491
|
+
pod_cidr: z.ZodString;
|
|
3492
|
+
auth_key: z.ZodString;
|
|
3493
|
+
bootstrap_token: z.ZodString;
|
|
3494
|
+
versions: z.ZodObject<{
|
|
3495
|
+
kubernetes: z.ZodString;
|
|
3496
|
+
tailscale: z.ZodString;
|
|
3497
|
+
containerd: z.ZodString;
|
|
3498
|
+
nvidia_driver: z.ZodString;
|
|
3499
|
+
}, z.core.$strip>;
|
|
3500
|
+
third_party_api_access_config: z.ZodObject<{
|
|
3501
|
+
metadata_url: z.ZodString;
|
|
3502
|
+
aws_role_arn: z.ZodString;
|
|
3503
|
+
gcp_workload_identity_provider: z.ZodString;
|
|
3504
|
+
}, z.core.$strip>;
|
|
3637
3505
|
}, z.core.$strip>;
|
|
3638
|
-
export declare const
|
|
3639
|
-
|
|
3640
|
-
|
|
3506
|
+
export declare const zGetUsageQuery: z.ZodObject<{
|
|
3507
|
+
granularity: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
3508
|
+
hourly: "hourly";
|
|
3509
|
+
daily: "daily";
|
|
3510
|
+
monthly: "monthly";
|
|
3511
|
+
}>>>;
|
|
3641
3512
|
}, z.core.$strip>;
|
|
3642
|
-
|
|
3643
|
-
|
|
3513
|
+
/**
|
|
3514
|
+
* Usage data with facets for filtering
|
|
3515
|
+
*/
|
|
3516
|
+
export declare const zGetUsageResponse: z.ZodObject<{
|
|
3517
|
+
data: z.ZodArray<z.ZodObject<{
|
|
3518
|
+
hour: z.ZodString;
|
|
3519
|
+
cluster_id: z.ZodString;
|
|
3520
|
+
product: z.ZodString;
|
|
3521
|
+
value: z.ZodNumber;
|
|
3522
|
+
price: z.ZodNumber;
|
|
3523
|
+
total: z.ZodNumber;
|
|
3524
|
+
}, z.core.$strip>>;
|
|
3525
|
+
facets: z.ZodObject<{
|
|
3526
|
+
cluster_id: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3527
|
+
product: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3528
|
+
}, z.core.$strip>;
|
|
3644
3529
|
}, z.core.$strip>;
|
|
3645
3530
|
/**
|
|
3646
|
-
*
|
|
3531
|
+
* The client secret. Used for client-side retrieval using a publishable key. The client secret can be used to complete a payment from your frontend. It should not be stored, logged, or exposed to anyone other than the customer. Make sure that you have TLS enabled on any page that includes the client secret.
|
|
3532
|
+
*
|
|
3647
3533
|
*/
|
|
3648
|
-
export declare const
|
|
3534
|
+
export declare const zGetPaymentMethodSecretResponse: z.ZodObject<{
|
|
3535
|
+
id: z.ZodOptional<z.ZodString>;
|
|
3536
|
+
}, z.core.$strip>;
|
|
3537
|
+
/**
|
|
3538
|
+
* An array of payment methods.
|
|
3539
|
+
*/
|
|
3540
|
+
export declare const zListPaymentMethodsResponse: z.ZodArray<z.ZodObject<{
|
|
3649
3541
|
id: z.ZodString;
|
|
3650
3542
|
type: z.ZodEnum<{
|
|
3651
|
-
|
|
3652
|
-
|
|
3543
|
+
card: "card";
|
|
3544
|
+
sepa_debit: "sepa_debit";
|
|
3545
|
+
bank_transfer: "bank_transfer";
|
|
3653
3546
|
}>;
|
|
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;
|
|
3547
|
+
last4: z.ZodString;
|
|
3548
|
+
exp_month: z.ZodInt;
|
|
3549
|
+
exp_year: z.ZodInt;
|
|
3550
|
+
brand: z.ZodString;
|
|
3551
|
+
iban: z.ZodString;
|
|
3552
|
+
bic: z.ZodString;
|
|
3553
|
+
account_holder_name: z.ZodString;
|
|
3554
|
+
is_default: z.ZodBoolean;
|
|
3555
|
+
}, z.core.$strip>>;
|
|
3556
|
+
export declare const zSetDefaultPaymentMethodPath: z.ZodObject<{
|
|
3557
|
+
paymentMethodId: z.ZodString;
|
|
3668
3558
|
}, z.core.$strip>;
|
|
3669
3559
|
/**
|
|
3670
|
-
*
|
|
3560
|
+
* Default payment method updated.
|
|
3671
3561
|
*/
|
|
3672
|
-
export declare const
|
|
3562
|
+
export declare const zSetDefaultPaymentMethodResponse: z.ZodVoid;
|
|
3563
|
+
export declare const zDeletePaymentMethodPath: z.ZodObject<{
|
|
3564
|
+
paymentMethodId: z.ZodString;
|
|
3565
|
+
}, z.core.$strip>;
|
|
3673
3566
|
/**
|
|
3674
|
-
*
|
|
3567
|
+
* Payment method deleted.
|
|
3675
3568
|
*/
|
|
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>;
|
|
3569
|
+
export declare const zDeletePaymentMethodResponse: z.ZodVoid;
|
|
3693
3570
|
/**
|
|
3694
|
-
*
|
|
3571
|
+
* An array of usage records.
|
|
3695
3572
|
*/
|
|
3696
|
-
export declare const
|
|
3697
|
-
name: z.ZodString;
|
|
3698
|
-
role: z.ZodEnum<{
|
|
3699
|
-
Administrator: "Administrator";
|
|
3700
|
-
User: "User";
|
|
3701
|
-
}>;
|
|
3573
|
+
export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
3702
3574
|
id: z.ZodOptional<z.ZodString>;
|
|
3703
|
-
|
|
3704
|
-
|
|
3705
|
-
|
|
3706
|
-
|
|
3707
|
-
|
|
3708
|
-
|
|
3709
|
-
|
|
3710
|
-
|
|
3711
|
-
}, z.core.$strip
|
|
3575
|
+
number: z.ZodOptional<z.ZodString>;
|
|
3576
|
+
status: z.ZodOptional<z.ZodString>;
|
|
3577
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
3578
|
+
currency: z.ZodOptional<z.ZodString>;
|
|
3579
|
+
created: z.ZodISODateTime;
|
|
3580
|
+
period_start: z.ZodISODateTime;
|
|
3581
|
+
period_end: z.ZodISODateTime;
|
|
3582
|
+
invoice_pdf: z.ZodOptional<z.ZodString>;
|
|
3583
|
+
}, z.core.$strip>>;
|
|
3712
3584
|
/**
|
|
3713
|
-
* Returns
|
|
3585
|
+
* Returns a single object containing organization contact and billing address details.
|
|
3714
3586
|
*/
|
|
3715
|
-
export declare const
|
|
3716
|
-
|
|
3717
|
-
|
|
3718
|
-
|
|
3719
|
-
User: "User";
|
|
3587
|
+
export declare const zGetContactResponse: z.ZodObject<{
|
|
3588
|
+
type: z.ZodEnum<{
|
|
3589
|
+
business: "business";
|
|
3590
|
+
personal: "personal";
|
|
3720
3591
|
}>;
|
|
3721
|
-
|
|
3722
|
-
|
|
3723
|
-
|
|
3724
|
-
|
|
3725
|
-
|
|
3726
|
-
|
|
3727
|
-
|
|
3728
|
-
|
|
3729
|
-
|
|
3592
|
+
company: z.ZodOptional<z.ZodString>;
|
|
3593
|
+
address1: z.ZodOptional<z.ZodString>;
|
|
3594
|
+
address2: z.ZodOptional<z.ZodString>;
|
|
3595
|
+
postalCode: z.ZodOptional<z.ZodString>;
|
|
3596
|
+
city: z.ZodOptional<z.ZodString>;
|
|
3597
|
+
state: z.ZodOptional<z.ZodString>;
|
|
3598
|
+
country: z.ZodOptional<z.ZodString>;
|
|
3599
|
+
phone: z.ZodOptional<z.ZodString>;
|
|
3600
|
+
email: z.ZodEmail;
|
|
3601
|
+
individual_name: z.ZodString;
|
|
3602
|
+
tax_id: z.ZodOptional<z.ZodString>;
|
|
3603
|
+
tax_id_type: z.ZodOptional<z.ZodEnum<{
|
|
3604
|
+
"": "";
|
|
3605
|
+
ad_nrt: "ad_nrt";
|
|
3606
|
+
ae_trn: "ae_trn";
|
|
3607
|
+
al_tin: "al_tin";
|
|
3608
|
+
am_tin: "am_tin";
|
|
3609
|
+
ao_tin: "ao_tin";
|
|
3610
|
+
ar_cuit: "ar_cuit";
|
|
3611
|
+
at_vat: "at_vat";
|
|
3612
|
+
au_abn: "au_abn";
|
|
3613
|
+
au_arn: "au_arn";
|
|
3614
|
+
ba_tin: "ba_tin";
|
|
3615
|
+
bb_tin: "bb_tin";
|
|
3616
|
+
be_vat: "be_vat";
|
|
3617
|
+
bg_uic: "bg_uic";
|
|
3618
|
+
bg_vat: "bg_vat";
|
|
3619
|
+
bh_vat: "bh_vat";
|
|
3620
|
+
bo_tin: "bo_tin";
|
|
3621
|
+
br_cnpj: "br_cnpj";
|
|
3622
|
+
br_cpf: "br_cpf";
|
|
3623
|
+
bs_tin: "bs_tin";
|
|
3624
|
+
by_tin: "by_tin";
|
|
3625
|
+
ca_bn: "ca_bn";
|
|
3626
|
+
ca_gst_hst: "ca_gst_hst";
|
|
3627
|
+
ca_pst_bc: "ca_pst_bc";
|
|
3628
|
+
ca_pst_mb: "ca_pst_mb";
|
|
3629
|
+
ca_pst_sk: "ca_pst_sk";
|
|
3630
|
+
ca_qst: "ca_qst";
|
|
3631
|
+
cd_nif: "cd_nif";
|
|
3632
|
+
ch_uid: "ch_uid";
|
|
3633
|
+
ch_vat: "ch_vat";
|
|
3634
|
+
cl_tin: "cl_tin";
|
|
3635
|
+
cn_tin: "cn_tin";
|
|
3636
|
+
co_nit: "co_nit";
|
|
3637
|
+
cr_tin: "cr_tin";
|
|
3638
|
+
cy_vat: "cy_vat";
|
|
3639
|
+
cz_vat: "cz_vat";
|
|
3640
|
+
de_stn: "de_stn";
|
|
3641
|
+
de_vat: "de_vat";
|
|
3642
|
+
dk_vat: "dk_vat";
|
|
3643
|
+
do_rcn: "do_rcn";
|
|
3644
|
+
ec_ruc: "ec_ruc";
|
|
3645
|
+
ee_vat: "ee_vat";
|
|
3646
|
+
eg_tin: "eg_tin";
|
|
3647
|
+
es_cif: "es_cif";
|
|
3648
|
+
es_vat: "es_vat";
|
|
3649
|
+
eu_oss_vat: "eu_oss_vat";
|
|
3650
|
+
fi_vat: "fi_vat";
|
|
3651
|
+
fr_vat: "fr_vat";
|
|
3652
|
+
gb_vat: "gb_vat";
|
|
3653
|
+
ge_vat: "ge_vat";
|
|
3654
|
+
gn_nif: "gn_nif";
|
|
3655
|
+
gr_vat: "gr_vat";
|
|
3656
|
+
hk_br: "hk_br";
|
|
3657
|
+
hr_oib: "hr_oib";
|
|
3658
|
+
hr_vat: "hr_vat";
|
|
3659
|
+
hu_tin: "hu_tin";
|
|
3660
|
+
hu_vat: "hu_vat";
|
|
3661
|
+
id_npwp: "id_npwp";
|
|
3662
|
+
ie_vat: "ie_vat";
|
|
3663
|
+
il_vat: "il_vat";
|
|
3664
|
+
in_gst: "in_gst";
|
|
3665
|
+
is_vat: "is_vat";
|
|
3666
|
+
it_vat: "it_vat";
|
|
3667
|
+
jp_cn: "jp_cn";
|
|
3668
|
+
jp_rn: "jp_rn";
|
|
3669
|
+
jp_trn: "jp_trn";
|
|
3670
|
+
ke_pin: "ke_pin";
|
|
3671
|
+
kh_tin: "kh_tin";
|
|
3672
|
+
kr_brn: "kr_brn";
|
|
3673
|
+
kz_bin: "kz_bin";
|
|
3674
|
+
li_uid: "li_uid";
|
|
3675
|
+
li_vat: "li_vat";
|
|
3676
|
+
lt_vat: "lt_vat";
|
|
3677
|
+
lu_vat: "lu_vat";
|
|
3678
|
+
lv_vat: "lv_vat";
|
|
3679
|
+
ma_vat: "ma_vat";
|
|
3680
|
+
md_vat: "md_vat";
|
|
3681
|
+
me_pib: "me_pib";
|
|
3682
|
+
mk_vat: "mk_vat";
|
|
3683
|
+
mr_nif: "mr_nif";
|
|
3684
|
+
mt_vat: "mt_vat";
|
|
3685
|
+
mx_rfc: "mx_rfc";
|
|
3686
|
+
my_frp: "my_frp";
|
|
3687
|
+
my_itn: "my_itn";
|
|
3688
|
+
my_sst: "my_sst";
|
|
3689
|
+
ng_tin: "ng_tin";
|
|
3690
|
+
nl_vat: "nl_vat";
|
|
3691
|
+
no_vat: "no_vat";
|
|
3692
|
+
no_voec: "no_voec";
|
|
3693
|
+
np_pan: "np_pan";
|
|
3694
|
+
nz_gst: "nz_gst";
|
|
3695
|
+
om_vat: "om_vat";
|
|
3696
|
+
pe_ruc: "pe_ruc";
|
|
3697
|
+
ph_tin: "ph_tin";
|
|
3698
|
+
pl_vat: "pl_vat";
|
|
3699
|
+
pt_vat: "pt_vat";
|
|
3700
|
+
ro_tin: "ro_tin";
|
|
3701
|
+
ro_vat: "ro_vat";
|
|
3702
|
+
rs_pib: "rs_pib";
|
|
3703
|
+
ru_inn: "ru_inn";
|
|
3704
|
+
ru_kpp: "ru_kpp";
|
|
3705
|
+
sa_vat: "sa_vat";
|
|
3706
|
+
se_vat: "se_vat";
|
|
3707
|
+
sg_gst: "sg_gst";
|
|
3708
|
+
sg_uen: "sg_uen";
|
|
3709
|
+
si_tin: "si_tin";
|
|
3710
|
+
si_vat: "si_vat";
|
|
3711
|
+
sk_vat: "sk_vat";
|
|
3712
|
+
sn_ninea: "sn_ninea";
|
|
3713
|
+
sr_fin: "sr_fin";
|
|
3714
|
+
sv_nit: "sv_nit";
|
|
3715
|
+
th_vat: "th_vat";
|
|
3716
|
+
tj_tin: "tj_tin";
|
|
3717
|
+
tr_tin: "tr_tin";
|
|
3718
|
+
tw_vat: "tw_vat";
|
|
3719
|
+
tz_vat: "tz_vat";
|
|
3720
|
+
ua_vat: "ua_vat";
|
|
3721
|
+
ug_tin: "ug_tin";
|
|
3722
|
+
us_ein: "us_ein";
|
|
3723
|
+
uy_ruc: "uy_ruc";
|
|
3724
|
+
uz_tin: "uz_tin";
|
|
3725
|
+
uz_vat: "uz_vat";
|
|
3726
|
+
ve_rif: "ve_rif";
|
|
3727
|
+
vn_tin: "vn_tin";
|
|
3728
|
+
xi_vat: "xi_vat";
|
|
3729
|
+
za_vat: "za_vat";
|
|
3730
|
+
zm_tin: "zm_tin";
|
|
3731
|
+
zw_tin: "zw_tin";
|
|
3730
3732
|
}>>;
|
|
3731
3733
|
}, 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";
|
|
3734
|
+
export declare const zUpdateContactBody: z.ZodObject<{
|
|
3735
|
+
type: z.ZodEnum<{
|
|
3736
|
+
business: "business";
|
|
3737
|
+
personal: "personal";
|
|
3788
3738
|
}>;
|
|
3789
|
-
|
|
3790
|
-
|
|
3791
|
-
|
|
3792
|
-
|
|
3739
|
+
company: z.ZodOptional<z.ZodString>;
|
|
3740
|
+
address1: z.ZodOptional<z.ZodString>;
|
|
3741
|
+
address2: z.ZodOptional<z.ZodString>;
|
|
3742
|
+
postalCode: z.ZodOptional<z.ZodString>;
|
|
3743
|
+
city: z.ZodOptional<z.ZodString>;
|
|
3744
|
+
state: z.ZodOptional<z.ZodString>;
|
|
3745
|
+
country: z.ZodOptional<z.ZodString>;
|
|
3746
|
+
phone: z.ZodOptional<z.ZodString>;
|
|
3793
3747
|
email: z.ZodEmail;
|
|
3794
|
-
|
|
3795
|
-
|
|
3796
|
-
|
|
3797
|
-
|
|
3798
|
-
|
|
3799
|
-
|
|
3800
|
-
|
|
3801
|
-
|
|
3802
|
-
|
|
3803
|
-
|
|
3804
|
-
|
|
3748
|
+
individual_name: z.ZodString;
|
|
3749
|
+
tax_id: z.ZodOptional<z.ZodString>;
|
|
3750
|
+
tax_id_type: z.ZodOptional<z.ZodEnum<{
|
|
3751
|
+
"": "";
|
|
3752
|
+
ad_nrt: "ad_nrt";
|
|
3753
|
+
ae_trn: "ae_trn";
|
|
3754
|
+
al_tin: "al_tin";
|
|
3755
|
+
am_tin: "am_tin";
|
|
3756
|
+
ao_tin: "ao_tin";
|
|
3757
|
+
ar_cuit: "ar_cuit";
|
|
3758
|
+
at_vat: "at_vat";
|
|
3759
|
+
au_abn: "au_abn";
|
|
3760
|
+
au_arn: "au_arn";
|
|
3761
|
+
ba_tin: "ba_tin";
|
|
3762
|
+
bb_tin: "bb_tin";
|
|
3763
|
+
be_vat: "be_vat";
|
|
3764
|
+
bg_uic: "bg_uic";
|
|
3765
|
+
bg_vat: "bg_vat";
|
|
3766
|
+
bh_vat: "bh_vat";
|
|
3767
|
+
bo_tin: "bo_tin";
|
|
3768
|
+
br_cnpj: "br_cnpj";
|
|
3769
|
+
br_cpf: "br_cpf";
|
|
3770
|
+
bs_tin: "bs_tin";
|
|
3771
|
+
by_tin: "by_tin";
|
|
3772
|
+
ca_bn: "ca_bn";
|
|
3773
|
+
ca_gst_hst: "ca_gst_hst";
|
|
3774
|
+
ca_pst_bc: "ca_pst_bc";
|
|
3775
|
+
ca_pst_mb: "ca_pst_mb";
|
|
3776
|
+
ca_pst_sk: "ca_pst_sk";
|
|
3777
|
+
ca_qst: "ca_qst";
|
|
3778
|
+
cd_nif: "cd_nif";
|
|
3779
|
+
ch_uid: "ch_uid";
|
|
3780
|
+
ch_vat: "ch_vat";
|
|
3781
|
+
cl_tin: "cl_tin";
|
|
3782
|
+
cn_tin: "cn_tin";
|
|
3783
|
+
co_nit: "co_nit";
|
|
3784
|
+
cr_tin: "cr_tin";
|
|
3785
|
+
cy_vat: "cy_vat";
|
|
3786
|
+
cz_vat: "cz_vat";
|
|
3787
|
+
de_stn: "de_stn";
|
|
3788
|
+
de_vat: "de_vat";
|
|
3789
|
+
dk_vat: "dk_vat";
|
|
3790
|
+
do_rcn: "do_rcn";
|
|
3791
|
+
ec_ruc: "ec_ruc";
|
|
3792
|
+
ee_vat: "ee_vat";
|
|
3793
|
+
eg_tin: "eg_tin";
|
|
3794
|
+
es_cif: "es_cif";
|
|
3795
|
+
es_vat: "es_vat";
|
|
3796
|
+
eu_oss_vat: "eu_oss_vat";
|
|
3797
|
+
fi_vat: "fi_vat";
|
|
3798
|
+
fr_vat: "fr_vat";
|
|
3799
|
+
gb_vat: "gb_vat";
|
|
3800
|
+
ge_vat: "ge_vat";
|
|
3801
|
+
gn_nif: "gn_nif";
|
|
3802
|
+
gr_vat: "gr_vat";
|
|
3803
|
+
hk_br: "hk_br";
|
|
3804
|
+
hr_oib: "hr_oib";
|
|
3805
|
+
hr_vat: "hr_vat";
|
|
3806
|
+
hu_tin: "hu_tin";
|
|
3807
|
+
hu_vat: "hu_vat";
|
|
3808
|
+
id_npwp: "id_npwp";
|
|
3809
|
+
ie_vat: "ie_vat";
|
|
3810
|
+
il_vat: "il_vat";
|
|
3811
|
+
in_gst: "in_gst";
|
|
3812
|
+
is_vat: "is_vat";
|
|
3813
|
+
it_vat: "it_vat";
|
|
3814
|
+
jp_cn: "jp_cn";
|
|
3815
|
+
jp_rn: "jp_rn";
|
|
3816
|
+
jp_trn: "jp_trn";
|
|
3817
|
+
ke_pin: "ke_pin";
|
|
3818
|
+
kh_tin: "kh_tin";
|
|
3819
|
+
kr_brn: "kr_brn";
|
|
3820
|
+
kz_bin: "kz_bin";
|
|
3821
|
+
li_uid: "li_uid";
|
|
3822
|
+
li_vat: "li_vat";
|
|
3823
|
+
lt_vat: "lt_vat";
|
|
3824
|
+
lu_vat: "lu_vat";
|
|
3825
|
+
lv_vat: "lv_vat";
|
|
3826
|
+
ma_vat: "ma_vat";
|
|
3827
|
+
md_vat: "md_vat";
|
|
3828
|
+
me_pib: "me_pib";
|
|
3829
|
+
mk_vat: "mk_vat";
|
|
3830
|
+
mr_nif: "mr_nif";
|
|
3831
|
+
mt_vat: "mt_vat";
|
|
3832
|
+
mx_rfc: "mx_rfc";
|
|
3833
|
+
my_frp: "my_frp";
|
|
3834
|
+
my_itn: "my_itn";
|
|
3835
|
+
my_sst: "my_sst";
|
|
3836
|
+
ng_tin: "ng_tin";
|
|
3837
|
+
nl_vat: "nl_vat";
|
|
3838
|
+
no_vat: "no_vat";
|
|
3839
|
+
no_voec: "no_voec";
|
|
3840
|
+
np_pan: "np_pan";
|
|
3841
|
+
nz_gst: "nz_gst";
|
|
3842
|
+
om_vat: "om_vat";
|
|
3843
|
+
pe_ruc: "pe_ruc";
|
|
3844
|
+
ph_tin: "ph_tin";
|
|
3845
|
+
pl_vat: "pl_vat";
|
|
3846
|
+
pt_vat: "pt_vat";
|
|
3847
|
+
ro_tin: "ro_tin";
|
|
3848
|
+
ro_vat: "ro_vat";
|
|
3849
|
+
rs_pib: "rs_pib";
|
|
3850
|
+
ru_inn: "ru_inn";
|
|
3851
|
+
ru_kpp: "ru_kpp";
|
|
3852
|
+
sa_vat: "sa_vat";
|
|
3853
|
+
se_vat: "se_vat";
|
|
3854
|
+
sg_gst: "sg_gst";
|
|
3855
|
+
sg_uen: "sg_uen";
|
|
3856
|
+
si_tin: "si_tin";
|
|
3857
|
+
si_vat: "si_vat";
|
|
3858
|
+
sk_vat: "sk_vat";
|
|
3859
|
+
sn_ninea: "sn_ninea";
|
|
3860
|
+
sr_fin: "sr_fin";
|
|
3861
|
+
sv_nit: "sv_nit";
|
|
3862
|
+
th_vat: "th_vat";
|
|
3863
|
+
tj_tin: "tj_tin";
|
|
3864
|
+
tr_tin: "tr_tin";
|
|
3865
|
+
tw_vat: "tw_vat";
|
|
3866
|
+
tz_vat: "tz_vat";
|
|
3867
|
+
ua_vat: "ua_vat";
|
|
3868
|
+
ug_tin: "ug_tin";
|
|
3869
|
+
us_ein: "us_ein";
|
|
3870
|
+
uy_ruc: "uy_ruc";
|
|
3871
|
+
uz_tin: "uz_tin";
|
|
3872
|
+
uz_vat: "uz_vat";
|
|
3873
|
+
ve_rif: "ve_rif";
|
|
3874
|
+
vn_tin: "vn_tin";
|
|
3875
|
+
xi_vat: "xi_vat";
|
|
3876
|
+
za_vat: "za_vat";
|
|
3877
|
+
zm_tin: "zm_tin";
|
|
3878
|
+
zw_tin: "zw_tin";
|
|
3805
3879
|
}>>;
|
|
3806
3880
|
}, z.core.$strip>;
|
|
3807
3881
|
/**
|
|
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
|
|
3882
|
+
* Successfully updated. Returns updated organization details.
|
|
3830
3883
|
*/
|
|
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";
|
|
3884
|
+
export declare const zUpdateContactResponse: z.ZodObject<{
|
|
3885
|
+
type: z.ZodEnum<{
|
|
3886
|
+
business: "business";
|
|
3887
|
+
personal: "personal";
|
|
3842
3888
|
}>;
|
|
3843
|
-
|
|
3844
|
-
|
|
3845
|
-
|
|
3846
|
-
|
|
3847
|
-
|
|
3848
|
-
|
|
3849
|
-
|
|
3850
|
-
|
|
3851
|
-
*/
|
|
3852
|
-
export declare const zGetUserResponse: z.ZodObject<{
|
|
3889
|
+
company: z.ZodOptional<z.ZodString>;
|
|
3890
|
+
address1: z.ZodOptional<z.ZodString>;
|
|
3891
|
+
address2: z.ZodOptional<z.ZodString>;
|
|
3892
|
+
postalCode: z.ZodOptional<z.ZodString>;
|
|
3893
|
+
city: z.ZodOptional<z.ZodString>;
|
|
3894
|
+
state: z.ZodOptional<z.ZodString>;
|
|
3895
|
+
country: z.ZodOptional<z.ZodString>;
|
|
3896
|
+
phone: z.ZodOptional<z.ZodString>;
|
|
3853
3897
|
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
|
-
|
|
3898
|
+
individual_name: z.ZodString;
|
|
3899
|
+
tax_id: z.ZodOptional<z.ZodString>;
|
|
3900
|
+
tax_id_type: z.ZodOptional<z.ZodEnum<{
|
|
3901
|
+
"": "";
|
|
3902
|
+
ad_nrt: "ad_nrt";
|
|
3903
|
+
ae_trn: "ae_trn";
|
|
3904
|
+
al_tin: "al_tin";
|
|
3905
|
+
am_tin: "am_tin";
|
|
3906
|
+
ao_tin: "ao_tin";
|
|
3907
|
+
ar_cuit: "ar_cuit";
|
|
3908
|
+
at_vat: "at_vat";
|
|
3909
|
+
au_abn: "au_abn";
|
|
3910
|
+
au_arn: "au_arn";
|
|
3911
|
+
ba_tin: "ba_tin";
|
|
3912
|
+
bb_tin: "bb_tin";
|
|
3913
|
+
be_vat: "be_vat";
|
|
3914
|
+
bg_uic: "bg_uic";
|
|
3915
|
+
bg_vat: "bg_vat";
|
|
3916
|
+
bh_vat: "bh_vat";
|
|
3917
|
+
bo_tin: "bo_tin";
|
|
3918
|
+
br_cnpj: "br_cnpj";
|
|
3919
|
+
br_cpf: "br_cpf";
|
|
3920
|
+
bs_tin: "bs_tin";
|
|
3921
|
+
by_tin: "by_tin";
|
|
3922
|
+
ca_bn: "ca_bn";
|
|
3923
|
+
ca_gst_hst: "ca_gst_hst";
|
|
3924
|
+
ca_pst_bc: "ca_pst_bc";
|
|
3925
|
+
ca_pst_mb: "ca_pst_mb";
|
|
3926
|
+
ca_pst_sk: "ca_pst_sk";
|
|
3927
|
+
ca_qst: "ca_qst";
|
|
3928
|
+
cd_nif: "cd_nif";
|
|
3929
|
+
ch_uid: "ch_uid";
|
|
3930
|
+
ch_vat: "ch_vat";
|
|
3931
|
+
cl_tin: "cl_tin";
|
|
3932
|
+
cn_tin: "cn_tin";
|
|
3933
|
+
co_nit: "co_nit";
|
|
3934
|
+
cr_tin: "cr_tin";
|
|
3935
|
+
cy_vat: "cy_vat";
|
|
3936
|
+
cz_vat: "cz_vat";
|
|
3937
|
+
de_stn: "de_stn";
|
|
3938
|
+
de_vat: "de_vat";
|
|
3939
|
+
dk_vat: "dk_vat";
|
|
3940
|
+
do_rcn: "do_rcn";
|
|
3941
|
+
ec_ruc: "ec_ruc";
|
|
3942
|
+
ee_vat: "ee_vat";
|
|
3943
|
+
eg_tin: "eg_tin";
|
|
3944
|
+
es_cif: "es_cif";
|
|
3945
|
+
es_vat: "es_vat";
|
|
3946
|
+
eu_oss_vat: "eu_oss_vat";
|
|
3947
|
+
fi_vat: "fi_vat";
|
|
3948
|
+
fr_vat: "fr_vat";
|
|
3949
|
+
gb_vat: "gb_vat";
|
|
3950
|
+
ge_vat: "ge_vat";
|
|
3951
|
+
gn_nif: "gn_nif";
|
|
3952
|
+
gr_vat: "gr_vat";
|
|
3953
|
+
hk_br: "hk_br";
|
|
3954
|
+
hr_oib: "hr_oib";
|
|
3955
|
+
hr_vat: "hr_vat";
|
|
3956
|
+
hu_tin: "hu_tin";
|
|
3957
|
+
hu_vat: "hu_vat";
|
|
3958
|
+
id_npwp: "id_npwp";
|
|
3959
|
+
ie_vat: "ie_vat";
|
|
3960
|
+
il_vat: "il_vat";
|
|
3961
|
+
in_gst: "in_gst";
|
|
3962
|
+
is_vat: "is_vat";
|
|
3963
|
+
it_vat: "it_vat";
|
|
3964
|
+
jp_cn: "jp_cn";
|
|
3965
|
+
jp_rn: "jp_rn";
|
|
3966
|
+
jp_trn: "jp_trn";
|
|
3967
|
+
ke_pin: "ke_pin";
|
|
3968
|
+
kh_tin: "kh_tin";
|
|
3969
|
+
kr_brn: "kr_brn";
|
|
3970
|
+
kz_bin: "kz_bin";
|
|
3971
|
+
li_uid: "li_uid";
|
|
3972
|
+
li_vat: "li_vat";
|
|
3973
|
+
lt_vat: "lt_vat";
|
|
3974
|
+
lu_vat: "lu_vat";
|
|
3975
|
+
lv_vat: "lv_vat";
|
|
3976
|
+
ma_vat: "ma_vat";
|
|
3977
|
+
md_vat: "md_vat";
|
|
3978
|
+
me_pib: "me_pib";
|
|
3979
|
+
mk_vat: "mk_vat";
|
|
3980
|
+
mr_nif: "mr_nif";
|
|
3981
|
+
mt_vat: "mt_vat";
|
|
3982
|
+
mx_rfc: "mx_rfc";
|
|
3983
|
+
my_frp: "my_frp";
|
|
3984
|
+
my_itn: "my_itn";
|
|
3985
|
+
my_sst: "my_sst";
|
|
3986
|
+
ng_tin: "ng_tin";
|
|
3987
|
+
nl_vat: "nl_vat";
|
|
3988
|
+
no_vat: "no_vat";
|
|
3989
|
+
no_voec: "no_voec";
|
|
3990
|
+
np_pan: "np_pan";
|
|
3991
|
+
nz_gst: "nz_gst";
|
|
3992
|
+
om_vat: "om_vat";
|
|
3993
|
+
pe_ruc: "pe_ruc";
|
|
3994
|
+
ph_tin: "ph_tin";
|
|
3995
|
+
pl_vat: "pl_vat";
|
|
3996
|
+
pt_vat: "pt_vat";
|
|
3997
|
+
ro_tin: "ro_tin";
|
|
3998
|
+
ro_vat: "ro_vat";
|
|
3999
|
+
rs_pib: "rs_pib";
|
|
4000
|
+
ru_inn: "ru_inn";
|
|
4001
|
+
ru_kpp: "ru_kpp";
|
|
4002
|
+
sa_vat: "sa_vat";
|
|
4003
|
+
se_vat: "se_vat";
|
|
4004
|
+
sg_gst: "sg_gst";
|
|
4005
|
+
sg_uen: "sg_uen";
|
|
4006
|
+
si_tin: "si_tin";
|
|
4007
|
+
si_vat: "si_vat";
|
|
4008
|
+
sk_vat: "sk_vat";
|
|
4009
|
+
sn_ninea: "sn_ninea";
|
|
4010
|
+
sr_fin: "sr_fin";
|
|
4011
|
+
sv_nit: "sv_nit";
|
|
4012
|
+
th_vat: "th_vat";
|
|
4013
|
+
tj_tin: "tj_tin";
|
|
4014
|
+
tr_tin: "tr_tin";
|
|
4015
|
+
tw_vat: "tw_vat";
|
|
4016
|
+
tz_vat: "tz_vat";
|
|
4017
|
+
ua_vat: "ua_vat";
|
|
4018
|
+
ug_tin: "ug_tin";
|
|
4019
|
+
us_ein: "us_ein";
|
|
4020
|
+
uy_ruc: "uy_ruc";
|
|
4021
|
+
uz_tin: "uz_tin";
|
|
4022
|
+
uz_vat: "uz_vat";
|
|
4023
|
+
ve_rif: "ve_rif";
|
|
4024
|
+
vn_tin: "vn_tin";
|
|
4025
|
+
xi_vat: "xi_vat";
|
|
4026
|
+
za_vat: "za_vat";
|
|
4027
|
+
zm_tin: "zm_tin";
|
|
4028
|
+
zw_tin: "zw_tin";
|
|
3878
4029
|
}>>;
|
|
3879
4030
|
}, z.core.$strip>;
|
|
3880
|
-
export declare const zUpdateUserPath: z.ZodObject<{
|
|
3881
|
-
user_id: z.ZodString;
|
|
3882
|
-
}, z.core.$strip>;
|
|
3883
4031
|
/**
|
|
3884
|
-
*
|
|
4032
|
+
* An array of the applied promotional credits records.
|
|
3885
4033
|
*/
|
|
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";
|
|
4034
|
+
export declare const zGetCreditsResponse: z.ZodArray<z.ZodObject<{
|
|
4035
|
+
id: z.ZodOptional<z.ZodString>;
|
|
4036
|
+
type: z.ZodEnum<{
|
|
4037
|
+
credit: "credit";
|
|
4038
|
+
discount: "discount";
|
|
3897
4039
|
}>;
|
|
3898
|
-
|
|
3899
|
-
|
|
4040
|
+
date_start: z.ZodISODateTime;
|
|
4041
|
+
date_end: z.ZodOptional<z.ZodISODateTime>;
|
|
4042
|
+
code: z.ZodString;
|
|
4043
|
+
description: z.ZodOptional<z.ZodString>;
|
|
4044
|
+
value_total: z.ZodNumber;
|
|
4045
|
+
value_remaining: z.ZodOptional<z.ZodNumber>;
|
|
4046
|
+
}, z.core.$strip>>;
|
|
4047
|
+
export declare const zRedeemCreditsBody: z.ZodObject<{
|
|
4048
|
+
code: z.ZodOptional<z.ZodString>;
|
|
3900
4049
|
}, z.core.$strip>;
|
|
3901
4050
|
//# sourceMappingURL=zod.gen.d.ts.map
|