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