@cloudfleet/sdk 0.0.1-cfddf24 → 0.0.1-d32b155
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 +446 -372
- package/dist/@tanstack/react-query.gen.d.ts.map +1 -1
- package/dist/@tanstack/react-query.gen.js +478 -392
- 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 +474 -225
- package/dist/schemas.gen.d.ts.map +1 -1
- package/dist/schemas.gen.js +636 -317
- package/dist/schemas.gen.js.map +1 -1
- package/dist/sdk.gen.d.ts +249 -211
- package/dist/sdk.gen.d.ts.map +1 -1
- package/dist/sdk.gen.js +357 -304
- package/dist/sdk.gen.js.map +1 -1
- package/dist/types.gen.d.ts +1103 -787
- package/dist/types.gen.d.ts.map +1 -1
- package/dist/zod.gen.d.ts +1695 -1474
- package/dist/zod.gen.d.ts.map +1 -1
- package/dist/zod.gen.js +502 -349
- package/dist/zod.gen.js.map +1 -1
- package/package.json +8 -11
package/dist/zod.gen.d.ts
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
import * as z from 'zod';
|
|
2
|
+
export declare const zBasicPriceConsentInput: z.ZodObject<{
|
|
3
|
+
decision: z.ZodEnum<{
|
|
4
|
+
rejected: "rejected";
|
|
5
|
+
accepted: "accepted";
|
|
6
|
+
}>;
|
|
7
|
+
}, z.core.$strip>;
|
|
8
|
+
export declare const zBasicPriceConsent: z.ZodObject<{
|
|
9
|
+
status: z.ZodEnum<{
|
|
10
|
+
pending: "pending";
|
|
11
|
+
rejected: "rejected";
|
|
12
|
+
accepted: "accepted";
|
|
13
|
+
not_applicable: "not_applicable";
|
|
14
|
+
}>;
|
|
15
|
+
decided_at: z.ZodOptional<z.ZodISODateTime>;
|
|
16
|
+
decided_by: z.ZodOptional<z.ZodString>;
|
|
17
|
+
}, z.core.$strip>;
|
|
2
18
|
export declare const zBillingContact: z.ZodObject<{
|
|
19
|
+
type: z.ZodEnum<{
|
|
20
|
+
business: "business";
|
|
21
|
+
personal: "personal";
|
|
22
|
+
}>;
|
|
3
23
|
company: z.ZodOptional<z.ZodString>;
|
|
4
24
|
address1: z.ZodOptional<z.ZodString>;
|
|
5
25
|
address2: z.ZodOptional<z.ZodString>;
|
|
@@ -168,22 +188,7 @@ export declare const zChart: z.ZodObject<{
|
|
|
168
188
|
name: z.ZodString;
|
|
169
189
|
namespace: z.ZodString;
|
|
170
190
|
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
|
-
}>;
|
|
191
|
+
status: z.ZodString;
|
|
187
192
|
version_current: z.ZodString;
|
|
188
193
|
created_at: z.ZodString;
|
|
189
194
|
updated_at: z.ZodString;
|
|
@@ -193,29 +198,45 @@ export declare const zChartUpdateInput: z.ZodObject<{
|
|
|
193
198
|
values: z.ZodString;
|
|
194
199
|
version_channel: z.ZodString;
|
|
195
200
|
}, z.core.$strip>;
|
|
201
|
+
/**
|
|
202
|
+
* Mutable cluster configuration. Applied as a full overwrite: any omitted field is reset to its default rather than left unchanged.
|
|
203
|
+
*/
|
|
196
204
|
export declare const zClusterCreateInput: z.ZodObject<{
|
|
197
205
|
name: z.ZodString;
|
|
198
|
-
tier: z.ZodEnum<{
|
|
206
|
+
tier: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
199
207
|
basic: "basic";
|
|
208
|
+
enterprise: "enterprise";
|
|
200
209
|
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
210
|
}>>>;
|
|
208
|
-
version_channel: z.ZodDefault<z.ZodOptional<z.
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
211
|
+
version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
212
|
+
release_channel: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
213
|
+
stable: "stable";
|
|
214
|
+
rapid: "rapid";
|
|
215
|
+
extended: "extended";
|
|
213
216
|
}>>>;
|
|
217
|
+
features: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
218
|
+
gpu_sharing_strategy: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
219
|
+
none: "none";
|
|
220
|
+
mps: "mps";
|
|
221
|
+
time_slicing: "time_slicing";
|
|
222
|
+
}>>>;
|
|
223
|
+
gpu_max_shared_clients_per_gpu: z.ZodDefault<z.ZodOptional<z.ZodInt>>;
|
|
224
|
+
cilium_socket_lb_host_namespace_only: z.ZodOptional<z.ZodBoolean>;
|
|
225
|
+
}, z.core.$strip>>>;
|
|
226
|
+
region: z.ZodString;
|
|
227
|
+
networking: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
228
|
+
pod_cidr: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
229
|
+
service_cidr: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
230
|
+
dual_stack: z.ZodOptional<z.ZodBoolean>;
|
|
231
|
+
pod_cidr_v6: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
232
|
+
service_cidr_v6: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
233
|
+
}, z.core.$strip>>>;
|
|
214
234
|
}, z.core.$strip>;
|
|
215
235
|
export declare const zClusterJoinInformation: z.ZodObject<{
|
|
216
236
|
certificate_authority: z.ZodString;
|
|
217
237
|
endpoint: z.ZodURL;
|
|
218
238
|
cluster_dns: z.ZodString;
|
|
239
|
+
pod_cidr: z.ZodString;
|
|
219
240
|
auth_key: z.ZodString;
|
|
220
241
|
bootstrap_token: z.ZodString;
|
|
221
242
|
versions: z.ZodObject<{
|
|
@@ -230,23 +251,41 @@ export declare const zClusterJoinInformation: z.ZodObject<{
|
|
|
230
251
|
gcp_workload_identity_provider: z.ZodString;
|
|
231
252
|
}, z.core.$strip>;
|
|
232
253
|
}, z.core.$strip>;
|
|
254
|
+
/**
|
|
255
|
+
* Mutable cluster configuration. Applied as a full overwrite: any omitted field is reset to its default rather than left unchanged.
|
|
256
|
+
*/
|
|
233
257
|
export declare const zCluster: z.ZodObject<{
|
|
234
258
|
name: z.ZodString;
|
|
235
|
-
tier: z.ZodEnum<{
|
|
259
|
+
tier: z.ZodDefault<z.ZodEnum<{
|
|
236
260
|
basic: "basic";
|
|
261
|
+
enterprise: "enterprise";
|
|
237
262
|
pro: "pro";
|
|
238
|
-
}
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
}
|
|
263
|
+
}>>;
|
|
264
|
+
version_channel: z.ZodDefault<z.ZodString>;
|
|
265
|
+
release_channel: z.ZodDefault<z.ZodEnum<{
|
|
266
|
+
stable: "stable";
|
|
267
|
+
rapid: "rapid";
|
|
268
|
+
extended: "extended";
|
|
269
|
+
}>>;
|
|
270
|
+
features: z.ZodDefault<z.ZodObject<{
|
|
271
|
+
gpu_sharing_strategy: z.ZodDefault<z.ZodEnum<{
|
|
272
|
+
none: "none";
|
|
273
|
+
mps: "mps";
|
|
274
|
+
time_slicing: "time_slicing";
|
|
275
|
+
}>>;
|
|
276
|
+
gpu_max_shared_clients_per_gpu: z.ZodDefault<z.ZodInt>;
|
|
277
|
+
cilium_socket_lb_host_namespace_only: z.ZodBoolean;
|
|
278
|
+
}, z.core.$strip>>;
|
|
279
|
+
region: z.ZodString;
|
|
280
|
+
networking: z.ZodDefault<z.ZodObject<{
|
|
281
|
+
pod_cidr: z.ZodDefault<z.ZodString>;
|
|
282
|
+
service_cidr: z.ZodDefault<z.ZodString>;
|
|
283
|
+
dual_stack: z.ZodBoolean;
|
|
284
|
+
pod_cidr_v6: z.ZodDefault<z.ZodString>;
|
|
285
|
+
service_cidr_v6: z.ZodDefault<z.ZodString>;
|
|
286
|
+
}, z.core.$strip>>;
|
|
245
287
|
id: z.ZodUUID;
|
|
246
288
|
status: z.ZodEnum<{
|
|
247
|
-
deleted: "deleted";
|
|
248
|
-
failed: "failed";
|
|
249
|
-
active: "active";
|
|
250
289
|
disabled: "disabled";
|
|
251
290
|
creating: "creating";
|
|
252
291
|
deployed: "deployed";
|
|
@@ -262,17 +301,37 @@ export declare const zCluster: z.ZodObject<{
|
|
|
262
301
|
version_current: z.ZodOptional<z.ZodString>;
|
|
263
302
|
created_at: z.ZodOptional<z.ZodString>;
|
|
264
303
|
updated_at: z.ZodOptional<z.ZodString>;
|
|
265
|
-
ready: z.
|
|
266
|
-
version_channel: z.ZodOptional<z.ZodString>;
|
|
304
|
+
ready: z.ZodBoolean;
|
|
267
305
|
}, z.core.$strip>;
|
|
306
|
+
/**
|
|
307
|
+
* Mutable cluster configuration. Applied as a full overwrite: any omitted field is reset to its default rather than left unchanged.
|
|
308
|
+
*/
|
|
268
309
|
export declare const zClusterUpdateInput: z.ZodObject<{
|
|
269
|
-
name: z.
|
|
270
|
-
tier: z.ZodEnum<{
|
|
310
|
+
name: z.ZodString;
|
|
311
|
+
tier: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
271
312
|
basic: "basic";
|
|
313
|
+
enterprise: "enterprise";
|
|
272
314
|
pro: "pro";
|
|
273
|
-
}
|
|
274
|
-
version_channel: z.ZodOptional<z.ZodString
|
|
315
|
+
}>>>;
|
|
316
|
+
version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
317
|
+
release_channel: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
318
|
+
stable: "stable";
|
|
319
|
+
rapid: "rapid";
|
|
320
|
+
extended: "extended";
|
|
321
|
+
}>>>;
|
|
322
|
+
features: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
323
|
+
gpu_sharing_strategy: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
324
|
+
none: "none";
|
|
325
|
+
mps: "mps";
|
|
326
|
+
time_slicing: "time_slicing";
|
|
327
|
+
}>>>;
|
|
328
|
+
gpu_max_shared_clients_per_gpu: z.ZodDefault<z.ZodOptional<z.ZodInt>>;
|
|
329
|
+
cilium_socket_lb_host_namespace_only: z.ZodOptional<z.ZodBoolean>;
|
|
330
|
+
}, z.core.$strip>>>;
|
|
275
331
|
}, z.core.$strip>;
|
|
332
|
+
/**
|
|
333
|
+
* Mutable fleet configuration. Applied as a full overwrite: any omitted field is reset to its default rather than left unchanged.
|
|
334
|
+
*/
|
|
276
335
|
export declare const zFleetCreateInput: z.ZodObject<{
|
|
277
336
|
limits: z.ZodOptional<z.ZodObject<{
|
|
278
337
|
cpu: z.ZodOptional<z.ZodInt>;
|
|
@@ -289,7 +348,7 @@ export declare const zFleetCreateInput: z.ZodObject<{
|
|
|
289
348
|
enabled: z.ZodBoolean;
|
|
290
349
|
controllerRoleArn: z.ZodOptional<z.ZodString>;
|
|
291
350
|
}, z.core.$strip>>;
|
|
292
|
-
constraints: z.ZodOptional<z.ZodObject<{
|
|
351
|
+
constraints: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
293
352
|
'karpenter.sh/capacity-type': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
294
353
|
"on-demand": "on-demand";
|
|
295
354
|
spot: "spot";
|
|
@@ -298,7 +357,7 @@ export declare const zFleetCreateInput: z.ZodObject<{
|
|
|
298
357
|
amd64: "amd64";
|
|
299
358
|
arm64: "arm64";
|
|
300
359
|
}>>>>;
|
|
301
|
-
'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
360
|
+
'cfke.io/instance-family': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
302
361
|
p3: "p3";
|
|
303
362
|
cx: "cx";
|
|
304
363
|
h1: "h1";
|
|
@@ -457,8 +516,8 @@ export declare const zFleetCreateInput: z.ZodObject<{
|
|
|
457
516
|
x8g: "x8g";
|
|
458
517
|
z1d: "z1d";
|
|
459
518
|
z3: "z3";
|
|
460
|
-
}
|
|
461
|
-
'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
519
|
+
}>>>>;
|
|
520
|
+
'topology.kubernetes.io/region': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
462
521
|
"africa-south1": "africa-south1";
|
|
463
522
|
"ap-northeast-1": "ap-northeast-1";
|
|
464
523
|
"ap-northeast-2": "ap-northeast-2";
|
|
@@ -523,14 +582,17 @@ export declare const zFleetCreateInput: z.ZodObject<{
|
|
|
523
582
|
"us-west2": "us-west2";
|
|
524
583
|
"us-west3": "us-west3";
|
|
525
584
|
"us-west4": "us-west4";
|
|
526
|
-
}
|
|
527
|
-
}, z.core.$strip
|
|
585
|
+
}>>>>;
|
|
586
|
+
}, z.core.$strip>>>;
|
|
528
587
|
scalingProfile: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
529
588
|
aggressive: "aggressive";
|
|
530
589
|
conservative: "conservative";
|
|
531
590
|
}>>>;
|
|
532
591
|
id: z.ZodString;
|
|
533
592
|
}, z.core.$strip>;
|
|
593
|
+
/**
|
|
594
|
+
* Mutable fleet configuration. Applied as a full overwrite: any omitted field is reset to its default rather than left unchanged.
|
|
595
|
+
*/
|
|
534
596
|
export declare const zFleet: z.ZodObject<{
|
|
535
597
|
limits: z.ZodOptional<z.ZodObject<{
|
|
536
598
|
cpu: z.ZodOptional<z.ZodInt>;
|
|
@@ -547,16 +609,16 @@ export declare const zFleet: z.ZodObject<{
|
|
|
547
609
|
enabled: z.ZodBoolean;
|
|
548
610
|
controllerRoleArn: z.ZodOptional<z.ZodString>;
|
|
549
611
|
}, z.core.$strip>>;
|
|
550
|
-
constraints: z.
|
|
551
|
-
'karpenter.sh/capacity-type': z.ZodDefault<z.
|
|
612
|
+
constraints: z.ZodDefault<z.ZodObject<{
|
|
613
|
+
'karpenter.sh/capacity-type': z.ZodDefault<z.ZodArray<z.ZodEnum<{
|
|
552
614
|
"on-demand": "on-demand";
|
|
553
615
|
spot: "spot";
|
|
554
|
-
}
|
|
555
|
-
'kubernetes.io/arch': z.ZodDefault<z.
|
|
616
|
+
}>>>;
|
|
617
|
+
'kubernetes.io/arch': z.ZodDefault<z.ZodArray<z.ZodEnum<{
|
|
556
618
|
amd64: "amd64";
|
|
557
619
|
arm64: "arm64";
|
|
558
|
-
}
|
|
559
|
-
'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
620
|
+
}>>>;
|
|
621
|
+
'cfke.io/instance-family': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
560
622
|
p3: "p3";
|
|
561
623
|
cx: "cx";
|
|
562
624
|
h1: "h1";
|
|
@@ -715,8 +777,8 @@ export declare const zFleet: z.ZodObject<{
|
|
|
715
777
|
x8g: "x8g";
|
|
716
778
|
z1d: "z1d";
|
|
717
779
|
z3: "z3";
|
|
718
|
-
}
|
|
719
|
-
'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
780
|
+
}>>>>;
|
|
781
|
+
'topology.kubernetes.io/region': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
720
782
|
"africa-south1": "africa-south1";
|
|
721
783
|
"ap-northeast-1": "ap-northeast-1";
|
|
722
784
|
"ap-northeast-2": "ap-northeast-2";
|
|
@@ -781,14 +843,21 @@ export declare const zFleet: z.ZodObject<{
|
|
|
781
843
|
"us-west2": "us-west2";
|
|
782
844
|
"us-west3": "us-west3";
|
|
783
845
|
"us-west4": "us-west4";
|
|
784
|
-
}
|
|
846
|
+
}>>>>;
|
|
785
847
|
}, z.core.$strip>>;
|
|
786
848
|
scalingProfile: z.ZodDefault<z.ZodEnum<{
|
|
787
849
|
aggressive: "aggressive";
|
|
788
850
|
conservative: "conservative";
|
|
789
851
|
}>>;
|
|
790
852
|
id: z.ZodString;
|
|
853
|
+
ready: z.ZodBoolean;
|
|
854
|
+
status_message: z.ZodOptional<z.ZodString>;
|
|
855
|
+
created_at: z.ZodString;
|
|
856
|
+
updated_at: z.ZodString;
|
|
791
857
|
}, z.core.$strip>;
|
|
858
|
+
/**
|
|
859
|
+
* Mutable fleet configuration. Applied as a full overwrite: any omitted field is reset to its default rather than left unchanged.
|
|
860
|
+
*/
|
|
792
861
|
export declare const zFleetUpdateInput: z.ZodObject<{
|
|
793
862
|
limits: z.ZodOptional<z.ZodObject<{
|
|
794
863
|
cpu: z.ZodOptional<z.ZodInt>;
|
|
@@ -805,16 +874,16 @@ export declare const zFleetUpdateInput: z.ZodObject<{
|
|
|
805
874
|
enabled: z.ZodBoolean;
|
|
806
875
|
controllerRoleArn: z.ZodOptional<z.ZodString>;
|
|
807
876
|
}, z.core.$strip>>;
|
|
808
|
-
constraints: z.ZodOptional<z.ZodObject<{
|
|
809
|
-
'karpenter.sh/capacity-type': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
877
|
+
constraints: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
878
|
+
'karpenter.sh/capacity-type': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
810
879
|
"on-demand": "on-demand";
|
|
811
880
|
spot: "spot";
|
|
812
|
-
}
|
|
813
|
-
'kubernetes.io/arch': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
881
|
+
}>>>>;
|
|
882
|
+
'kubernetes.io/arch': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
814
883
|
amd64: "amd64";
|
|
815
884
|
arm64: "arm64";
|
|
816
|
-
}
|
|
817
|
-
'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
885
|
+
}>>>>;
|
|
886
|
+
'cfke.io/instance-family': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
818
887
|
p3: "p3";
|
|
819
888
|
cx: "cx";
|
|
820
889
|
h1: "h1";
|
|
@@ -973,8 +1042,8 @@ export declare const zFleetUpdateInput: z.ZodObject<{
|
|
|
973
1042
|
x8g: "x8g";
|
|
974
1043
|
z1d: "z1d";
|
|
975
1044
|
z3: "z3";
|
|
976
|
-
}
|
|
977
|
-
'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
1045
|
+
}>>>>;
|
|
1046
|
+
'topology.kubernetes.io/region': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
978
1047
|
"africa-south1": "africa-south1";
|
|
979
1048
|
"ap-northeast-1": "ap-northeast-1";
|
|
980
1049
|
"ap-northeast-2": "ap-northeast-2";
|
|
@@ -1039,12 +1108,19 @@ export declare const zFleetUpdateInput: z.ZodObject<{
|
|
|
1039
1108
|
"us-west2": "us-west2";
|
|
1040
1109
|
"us-west3": "us-west3";
|
|
1041
1110
|
"us-west4": "us-west4";
|
|
1042
|
-
}
|
|
1043
|
-
}, z.core.$strip
|
|
1044
|
-
scalingProfile: z.ZodEnum<{
|
|
1111
|
+
}>>>>;
|
|
1112
|
+
}, z.core.$strip>>>;
|
|
1113
|
+
scalingProfile: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
1045
1114
|
aggressive: "aggressive";
|
|
1046
1115
|
conservative: "conservative";
|
|
1047
|
-
}
|
|
1116
|
+
}>>>;
|
|
1117
|
+
}, z.core.$strip>;
|
|
1118
|
+
export declare const zInviteCreateInput: z.ZodObject<{
|
|
1119
|
+
email: z.ZodEmail;
|
|
1120
|
+
role: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
1121
|
+
Administrator: "Administrator";
|
|
1122
|
+
User: "User";
|
|
1123
|
+
}>>>;
|
|
1048
1124
|
}, z.core.$strip>;
|
|
1049
1125
|
export declare const zInvite: z.ZodObject<{
|
|
1050
1126
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -1052,6 +1128,10 @@ export declare const zInvite: z.ZodObject<{
|
|
|
1052
1128
|
date_created: z.ZodISODateTime;
|
|
1053
1129
|
email: z.ZodOptional<z.ZodEmail>;
|
|
1054
1130
|
code: z.ZodOptional<z.ZodString>;
|
|
1131
|
+
role: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
1132
|
+
Administrator: "Administrator";
|
|
1133
|
+
User: "User";
|
|
1134
|
+
}>>>;
|
|
1055
1135
|
}, z.core.$strip>;
|
|
1056
1136
|
export declare const zInvoice: z.ZodObject<{
|
|
1057
1137
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -1091,21 +1171,34 @@ export declare const zMarketplaceListing: z.ZodObject<{
|
|
|
1091
1171
|
}, z.core.$strip>>;
|
|
1092
1172
|
}, z.core.$strip>;
|
|
1093
1173
|
export declare const zOrganizationCreateInput: z.ZodObject<{
|
|
1174
|
+
type: z.ZodEnum<{
|
|
1175
|
+
business: "business";
|
|
1176
|
+
personal: "personal";
|
|
1177
|
+
}>;
|
|
1094
1178
|
email: z.ZodEmail;
|
|
1095
1179
|
first_name: z.ZodString;
|
|
1096
1180
|
last_name: z.ZodString;
|
|
1097
1181
|
company_name: z.ZodString;
|
|
1098
1182
|
password: z.ZodString;
|
|
1099
1183
|
}, z.core.$strip>;
|
|
1184
|
+
export declare const zOrganizationCreateOutput: z.ZodObject<{
|
|
1185
|
+
id: z.ZodString;
|
|
1186
|
+
}, z.core.$strip>;
|
|
1100
1187
|
export declare const zOrganization: z.ZodObject<{
|
|
1101
1188
|
id: z.ZodUUID;
|
|
1102
1189
|
name: z.ZodOptional<z.ZodString>;
|
|
1190
|
+
type: z.ZodEnum<{
|
|
1191
|
+
business: "business";
|
|
1192
|
+
personal: "personal";
|
|
1193
|
+
}>;
|
|
1103
1194
|
date_created: z.ZodISODateTime;
|
|
1104
1195
|
quota: z.ZodObject<{
|
|
1105
1196
|
basic_clusters_max: z.ZodInt;
|
|
1106
1197
|
basic_clusters_available: z.ZodInt;
|
|
1107
1198
|
pro_clusters_max: z.ZodInt;
|
|
1108
1199
|
pro_clusters_available: z.ZodInt;
|
|
1200
|
+
enterprise_clusters_max: z.ZodInt;
|
|
1201
|
+
enterprise_clusters_available: z.ZodInt;
|
|
1109
1202
|
fleets_max: z.ZodInt;
|
|
1110
1203
|
cluster_tiers: z.ZodArray<z.ZodString>;
|
|
1111
1204
|
regions: z.ZodArray<z.ZodString>;
|
|
@@ -1120,33 +1213,35 @@ export declare const zOrganization: z.ZodObject<{
|
|
|
1120
1213
|
closed: "closed";
|
|
1121
1214
|
suspended: "suspended";
|
|
1122
1215
|
}>;
|
|
1216
|
+
verification: z.ZodEnum<{
|
|
1217
|
+
none: "none";
|
|
1218
|
+
submitted: "submitted";
|
|
1219
|
+
verified: "verified";
|
|
1220
|
+
}>;
|
|
1123
1221
|
}, z.core.$strip>;
|
|
1124
1222
|
export declare const zPaymentMethod: z.ZodObject<{
|
|
1125
|
-
id: z.
|
|
1126
|
-
setup: z.ZodBoolean;
|
|
1223
|
+
id: z.ZodString;
|
|
1127
1224
|
type: z.ZodEnum<{
|
|
1128
1225
|
card: "card";
|
|
1226
|
+
sepa_debit: "sepa_debit";
|
|
1227
|
+
bank_transfer: "bank_transfer";
|
|
1129
1228
|
}>;
|
|
1130
1229
|
last4: z.ZodString;
|
|
1131
1230
|
exp_month: z.ZodInt;
|
|
1132
1231
|
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
|
-
}>;
|
|
1232
|
+
brand: z.ZodString;
|
|
1233
|
+
iban: z.ZodString;
|
|
1234
|
+
bic: z.ZodString;
|
|
1235
|
+
account_holder_name: z.ZodString;
|
|
1236
|
+
is_default: z.ZodBoolean;
|
|
1144
1237
|
}, z.core.$strip>;
|
|
1145
1238
|
export declare const zPlatformQuota: z.ZodObject<{
|
|
1146
1239
|
basic_clusters_max: z.ZodInt;
|
|
1147
1240
|
basic_clusters_available: z.ZodInt;
|
|
1148
1241
|
pro_clusters_max: z.ZodInt;
|
|
1149
1242
|
pro_clusters_available: z.ZodInt;
|
|
1243
|
+
enterprise_clusters_max: z.ZodInt;
|
|
1244
|
+
enterprise_clusters_available: z.ZodInt;
|
|
1150
1245
|
fleets_max: z.ZodInt;
|
|
1151
1246
|
cluster_tiers: z.ZodArray<z.ZodString>;
|
|
1152
1247
|
regions: z.ZodArray<z.ZodString>;
|
|
@@ -1217,42 +1312,6 @@ export declare const zTicketCreateInput: z.ZodObject<{
|
|
|
1217
1312
|
body: z.ZodString;
|
|
1218
1313
|
properties: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1219
1314
|
}, 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
1315
|
export declare const zTicketMessageInput: z.ZodObject<{
|
|
1257
1316
|
body: z.ZodString;
|
|
1258
1317
|
}, z.core.$strip>;
|
|
@@ -1333,26 +1392,58 @@ export declare const zTokenUpdateInput: z.ZodObject<{
|
|
|
1333
1392
|
}, z.core.$strip>;
|
|
1334
1393
|
export declare const zUsageFacets: z.ZodObject<{
|
|
1335
1394
|
cluster_id: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1336
|
-
product: z.ZodOptional<z.ZodArray<z.
|
|
1395
|
+
product: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
1396
|
+
cfke_controlplane_basic: "cfke_controlplane_basic";
|
|
1397
|
+
cfke_controlplane_pro: "cfke_controlplane_pro";
|
|
1398
|
+
cfke_controlplane_enterprise: "cfke_controlplane_enterprise";
|
|
1399
|
+
cfke_connected_nodes_basic: "cfke_connected_nodes_basic";
|
|
1400
|
+
cfke_connected_nodes_pro: "cfke_connected_nodes_pro";
|
|
1401
|
+
cfke_connected_nodes_enterprise: "cfke_connected_nodes_enterprise";
|
|
1402
|
+
cfcr_storage: "cfcr_storage";
|
|
1403
|
+
}>>>;
|
|
1337
1404
|
}, z.core.$strip>;
|
|
1338
1405
|
export declare const zUsageResponse: z.ZodObject<{
|
|
1339
1406
|
data: z.ZodArray<z.ZodObject<{
|
|
1340
1407
|
hour: z.ZodString;
|
|
1341
1408
|
cluster_id: z.ZodString;
|
|
1342
|
-
product: z.
|
|
1409
|
+
product: z.ZodEnum<{
|
|
1410
|
+
cfke_controlplane_basic: "cfke_controlplane_basic";
|
|
1411
|
+
cfke_controlplane_pro: "cfke_controlplane_pro";
|
|
1412
|
+
cfke_controlplane_enterprise: "cfke_controlplane_enterprise";
|
|
1413
|
+
cfke_connected_nodes_basic: "cfke_connected_nodes_basic";
|
|
1414
|
+
cfke_connected_nodes_pro: "cfke_connected_nodes_pro";
|
|
1415
|
+
cfke_connected_nodes_enterprise: "cfke_connected_nodes_enterprise";
|
|
1416
|
+
cfcr_storage: "cfcr_storage";
|
|
1417
|
+
}>;
|
|
1343
1418
|
value: z.ZodNumber;
|
|
1344
1419
|
price: z.ZodNumber;
|
|
1345
1420
|
total: z.ZodNumber;
|
|
1346
1421
|
}, z.core.$strip>>;
|
|
1347
1422
|
facets: z.ZodObject<{
|
|
1348
1423
|
cluster_id: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1349
|
-
product: z.ZodOptional<z.ZodArray<z.
|
|
1424
|
+
product: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
1425
|
+
cfke_controlplane_basic: "cfke_controlplane_basic";
|
|
1426
|
+
cfke_controlplane_pro: "cfke_controlplane_pro";
|
|
1427
|
+
cfke_controlplane_enterprise: "cfke_controlplane_enterprise";
|
|
1428
|
+
cfke_connected_nodes_basic: "cfke_connected_nodes_basic";
|
|
1429
|
+
cfke_connected_nodes_pro: "cfke_connected_nodes_pro";
|
|
1430
|
+
cfke_connected_nodes_enterprise: "cfke_connected_nodes_enterprise";
|
|
1431
|
+
cfcr_storage: "cfcr_storage";
|
|
1432
|
+
}>>>;
|
|
1350
1433
|
}, z.core.$strip>;
|
|
1351
1434
|
}, z.core.$strip>;
|
|
1352
1435
|
export declare const zUsage: z.ZodObject<{
|
|
1353
1436
|
hour: z.ZodString;
|
|
1354
1437
|
cluster_id: z.ZodString;
|
|
1355
|
-
product: z.
|
|
1438
|
+
product: z.ZodEnum<{
|
|
1439
|
+
cfke_controlplane_basic: "cfke_controlplane_basic";
|
|
1440
|
+
cfke_controlplane_pro: "cfke_controlplane_pro";
|
|
1441
|
+
cfke_controlplane_enterprise: "cfke_controlplane_enterprise";
|
|
1442
|
+
cfke_connected_nodes_basic: "cfke_connected_nodes_basic";
|
|
1443
|
+
cfke_connected_nodes_pro: "cfke_connected_nodes_pro";
|
|
1444
|
+
cfke_connected_nodes_enterprise: "cfke_connected_nodes_enterprise";
|
|
1445
|
+
cfcr_storage: "cfcr_storage";
|
|
1446
|
+
}>;
|
|
1356
1447
|
value: z.ZodNumber;
|
|
1357
1448
|
price: z.ZodNumber;
|
|
1358
1449
|
total: z.ZodNumber;
|
|
@@ -1363,14 +1454,6 @@ export declare const zUserCreateInput: z.ZodObject<{
|
|
|
1363
1454
|
last_name: z.ZodString;
|
|
1364
1455
|
code: z.ZodString;
|
|
1365
1456
|
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
1457
|
}, z.core.$strip>;
|
|
1375
1458
|
export declare const zUser: z.ZodObject<{
|
|
1376
1459
|
email: z.ZodEmail;
|
|
@@ -1400,630 +1483,684 @@ export declare const zUserUpdateInput: z.ZodObject<{
|
|
|
1400
1483
|
inactive: "inactive";
|
|
1401
1484
|
}>>;
|
|
1402
1485
|
}, z.core.$strip>;
|
|
1403
|
-
export declare const
|
|
1404
|
-
|
|
1405
|
-
hourly: "hourly";
|
|
1406
|
-
daily: "daily";
|
|
1407
|
-
monthly: "monthly";
|
|
1408
|
-
}>>>;
|
|
1486
|
+
export declare const zListUserOrganizationsPath: z.ZodObject<{
|
|
1487
|
+
email: z.ZodString;
|
|
1409
1488
|
}, z.core.$strip>;
|
|
1410
1489
|
/**
|
|
1411
|
-
*
|
|
1490
|
+
* An array of organizations the user belongs to.
|
|
1412
1491
|
*/
|
|
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>;
|
|
1492
|
+
export declare const zListUserOrganizationsResponse: z.ZodArray<z.ZodObject<{
|
|
1493
|
+
realm: z.ZodOptional<z.ZodString>;
|
|
1494
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
1495
|
+
}, z.core.$strip>>;
|
|
1427
1496
|
/**
|
|
1428
|
-
*
|
|
1497
|
+
* An array of users
|
|
1429
1498
|
*/
|
|
1430
|
-
export declare const
|
|
1431
|
-
|
|
1432
|
-
|
|
1433
|
-
|
|
1434
|
-
|
|
1499
|
+
export declare const zListUsersResponse: z.ZodArray<z.ZodObject<{
|
|
1500
|
+
email: z.ZodEmail;
|
|
1501
|
+
first_name: z.ZodString;
|
|
1502
|
+
last_name: z.ZodString;
|
|
1503
|
+
role: z.ZodEnum<{
|
|
1504
|
+
Administrator: "Administrator";
|
|
1505
|
+
User: "User";
|
|
1435
1506
|
}>;
|
|
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";
|
|
1507
|
+
status: z.ZodEnum<{
|
|
1508
|
+
active: "active";
|
|
1509
|
+
inactive: "inactive";
|
|
1449
1510
|
}>;
|
|
1511
|
+
id: z.ZodUUID;
|
|
1512
|
+
date_created: z.ZodISODateTime;
|
|
1513
|
+
}, z.core.$strip>>;
|
|
1514
|
+
export declare const zCreateUserBody: z.ZodObject<{
|
|
1515
|
+
email: z.ZodEmail;
|
|
1516
|
+
first_name: z.ZodString;
|
|
1517
|
+
last_name: z.ZodString;
|
|
1518
|
+
code: z.ZodString;
|
|
1519
|
+
password: z.ZodString;
|
|
1450
1520
|
}, z.core.$strip>;
|
|
1451
1521
|
/**
|
|
1452
|
-
*
|
|
1453
|
-
*
|
|
1522
|
+
* Successfully created. Returns created user details.
|
|
1454
1523
|
*/
|
|
1455
|
-
export declare const
|
|
1456
|
-
|
|
1524
|
+
export declare const zCreateUserResponse: z.ZodObject<{
|
|
1525
|
+
email: z.ZodEmail;
|
|
1526
|
+
first_name: z.ZodString;
|
|
1527
|
+
last_name: z.ZodString;
|
|
1528
|
+
role: z.ZodEnum<{
|
|
1529
|
+
Administrator: "Administrator";
|
|
1530
|
+
User: "User";
|
|
1531
|
+
}>;
|
|
1532
|
+
status: z.ZodEnum<{
|
|
1533
|
+
active: "active";
|
|
1534
|
+
inactive: "inactive";
|
|
1535
|
+
}>;
|
|
1536
|
+
id: z.ZodUUID;
|
|
1537
|
+
date_created: z.ZodISODateTime;
|
|
1538
|
+
}, z.core.$strip>;
|
|
1539
|
+
export declare const zDeleteUserPath: z.ZodObject<{
|
|
1540
|
+
user_id: z.ZodString;
|
|
1457
1541
|
}, z.core.$strip>;
|
|
1458
1542
|
/**
|
|
1459
|
-
*
|
|
1543
|
+
* User profile information
|
|
1460
1544
|
*/
|
|
1461
|
-
export declare const
|
|
1462
|
-
|
|
1463
|
-
|
|
1464
|
-
|
|
1465
|
-
|
|
1466
|
-
|
|
1467
|
-
|
|
1468
|
-
|
|
1469
|
-
|
|
1470
|
-
|
|
1471
|
-
|
|
1545
|
+
export declare const zDeleteUserResponse: z.ZodObject<{
|
|
1546
|
+
email: z.ZodEmail;
|
|
1547
|
+
first_name: z.ZodString;
|
|
1548
|
+
last_name: z.ZodString;
|
|
1549
|
+
role: z.ZodEnum<{
|
|
1550
|
+
Administrator: "Administrator";
|
|
1551
|
+
User: "User";
|
|
1552
|
+
}>;
|
|
1553
|
+
status: z.ZodEnum<{
|
|
1554
|
+
active: "active";
|
|
1555
|
+
inactive: "inactive";
|
|
1556
|
+
}>;
|
|
1557
|
+
id: z.ZodUUID;
|
|
1558
|
+
date_created: z.ZodISODateTime;
|
|
1559
|
+
}, z.core.$strip>;
|
|
1560
|
+
export declare const zGetUserPath: z.ZodObject<{
|
|
1561
|
+
user_id: z.ZodString;
|
|
1562
|
+
}, z.core.$strip>;
|
|
1472
1563
|
/**
|
|
1473
|
-
*
|
|
1564
|
+
* User profile information
|
|
1474
1565
|
*/
|
|
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>;
|
|
1566
|
+
export declare const zGetUserResponse: z.ZodObject<{
|
|
1484
1567
|
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";
|
|
1568
|
+
first_name: z.ZodString;
|
|
1569
|
+
last_name: z.ZodString;
|
|
1570
|
+
role: z.ZodEnum<{
|
|
1571
|
+
Administrator: "Administrator";
|
|
1572
|
+
User: "User";
|
|
1573
|
+
}>;
|
|
1574
|
+
status: z.ZodEnum<{
|
|
1575
|
+
active: "active";
|
|
1576
|
+
inactive: "inactive";
|
|
1577
|
+
}>;
|
|
1578
|
+
id: z.ZodUUID;
|
|
1579
|
+
date_created: z.ZodISODateTime;
|
|
1580
|
+
}, z.core.$strip>;
|
|
1581
|
+
export declare const zUpdateUserBody: z.ZodObject<{
|
|
1582
|
+
email: z.ZodOptional<z.ZodEmail>;
|
|
1583
|
+
first_name: z.ZodOptional<z.ZodString>;
|
|
1584
|
+
last_name: z.ZodOptional<z.ZodString>;
|
|
1585
|
+
role: z.ZodOptional<z.ZodEnum<{
|
|
1586
|
+
Administrator: "Administrator";
|
|
1587
|
+
User: "User";
|
|
1588
|
+
}>>;
|
|
1589
|
+
status: z.ZodOptional<z.ZodEnum<{
|
|
1590
|
+
active: "active";
|
|
1591
|
+
inactive: "inactive";
|
|
1616
1592
|
}>>;
|
|
1617
1593
|
}, 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>;
|
|
1594
|
+
export declare const zUpdateUserPath: z.ZodObject<{
|
|
1595
|
+
user_id: z.ZodString;
|
|
1596
|
+
}, z.core.$strip>;
|
|
1597
|
+
/**
|
|
1598
|
+
* Successfully created. Returns created user details.
|
|
1599
|
+
*/
|
|
1600
|
+
export declare const zUpdateUserResponse: z.ZodObject<{
|
|
1627
1601
|
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";
|
|
1602
|
+
first_name: z.ZodString;
|
|
1603
|
+
last_name: z.ZodString;
|
|
1604
|
+
role: z.ZodEnum<{
|
|
1605
|
+
Administrator: "Administrator";
|
|
1606
|
+
User: "User";
|
|
1607
|
+
}>;
|
|
1608
|
+
status: z.ZodEnum<{
|
|
1609
|
+
active: "active";
|
|
1610
|
+
inactive: "inactive";
|
|
1611
|
+
}>;
|
|
1612
|
+
id: z.ZodUUID;
|
|
1613
|
+
date_created: z.ZodISODateTime;
|
|
1614
|
+
}, z.core.$strip>;
|
|
1615
|
+
/**
|
|
1616
|
+
* Returns a list of access token details with masked secrets.
|
|
1617
|
+
*/
|
|
1618
|
+
export declare const zListTokensResponse: z.ZodArray<z.ZodObject<{
|
|
1619
|
+
name: z.ZodString;
|
|
1620
|
+
role: z.ZodEnum<{
|
|
1621
|
+
Administrator: "Administrator";
|
|
1622
|
+
User: "User";
|
|
1623
|
+
}>;
|
|
1624
|
+
id: z.ZodOptional<z.ZodString>;
|
|
1625
|
+
secret: z.ZodOptional<z.ZodString>;
|
|
1626
|
+
date_created: z.ZodISODateTime;
|
|
1627
|
+
}, z.core.$strip>>;
|
|
1628
|
+
export declare const zCreateTokenBody: z.ZodObject<{
|
|
1629
|
+
name: z.ZodString;
|
|
1630
|
+
role: z.ZodEnum<{
|
|
1631
|
+
Administrator: "Administrator";
|
|
1632
|
+
User: "User";
|
|
1633
|
+
}>;
|
|
1634
|
+
}, z.core.$strip>;
|
|
1635
|
+
/**
|
|
1636
|
+
* Successfully created. Returns created token details with unmasked/raw secret.
|
|
1637
|
+
*/
|
|
1638
|
+
export declare const zCreateTokenResponse: z.ZodObject<{
|
|
1639
|
+
name: z.ZodString;
|
|
1640
|
+
role: z.ZodEnum<{
|
|
1641
|
+
Administrator: "Administrator";
|
|
1642
|
+
User: "User";
|
|
1643
|
+
}>;
|
|
1644
|
+
id: z.ZodOptional<z.ZodString>;
|
|
1645
|
+
secret: z.ZodOptional<z.ZodString>;
|
|
1646
|
+
date_created: z.ZodISODateTime;
|
|
1647
|
+
}, z.core.$strip>;
|
|
1648
|
+
export declare const zDeleteTokenPath: z.ZodObject<{
|
|
1649
|
+
token_id: z.ZodString;
|
|
1650
|
+
}, z.core.$strip>;
|
|
1651
|
+
export declare const zGetTokenPath: z.ZodObject<{
|
|
1652
|
+
token_id: z.ZodString;
|
|
1653
|
+
}, z.core.$strip>;
|
|
1654
|
+
/**
|
|
1655
|
+
* Returns access token details with masked secret.
|
|
1656
|
+
*/
|
|
1657
|
+
export declare const zGetTokenResponse: z.ZodObject<{
|
|
1658
|
+
name: z.ZodString;
|
|
1659
|
+
role: z.ZodEnum<{
|
|
1660
|
+
Administrator: "Administrator";
|
|
1661
|
+
User: "User";
|
|
1662
|
+
}>;
|
|
1663
|
+
id: z.ZodOptional<z.ZodString>;
|
|
1664
|
+
secret: z.ZodOptional<z.ZodString>;
|
|
1665
|
+
date_created: z.ZodISODateTime;
|
|
1666
|
+
}, z.core.$strip>;
|
|
1667
|
+
export declare const zUpdateTokenBody: z.ZodObject<{
|
|
1668
|
+
name: z.ZodOptional<z.ZodString>;
|
|
1669
|
+
role: z.ZodOptional<z.ZodEnum<{
|
|
1670
|
+
Administrator: "Administrator";
|
|
1671
|
+
User: "User";
|
|
1759
1672
|
}>>;
|
|
1760
1673
|
}, z.core.$strip>;
|
|
1674
|
+
export declare const zUpdateTokenPath: z.ZodObject<{
|
|
1675
|
+
token_id: z.ZodString;
|
|
1676
|
+
}, z.core.$strip>;
|
|
1677
|
+
/**
|
|
1678
|
+
* Successfully updated. Returns updated token details with masked secret.
|
|
1679
|
+
*/
|
|
1680
|
+
export declare const zUpdateTokenResponse: 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
|
+
export declare const zRegenerateTokenPath: z.ZodObject<{
|
|
1691
|
+
token_id: z.ZodString;
|
|
1692
|
+
}, z.core.$strip>;
|
|
1693
|
+
/**
|
|
1694
|
+
* Successfully updated. Returns updated token details with unmasked / raw secret.
|
|
1695
|
+
*/
|
|
1696
|
+
export declare const zRegenerateTokenResponse: z.ZodObject<{
|
|
1697
|
+
name: z.ZodString;
|
|
1698
|
+
role: z.ZodEnum<{
|
|
1699
|
+
Administrator: "Administrator";
|
|
1700
|
+
User: "User";
|
|
1701
|
+
}>;
|
|
1702
|
+
id: z.ZodOptional<z.ZodString>;
|
|
1703
|
+
secret: z.ZodOptional<z.ZodString>;
|
|
1704
|
+
date_created: z.ZodISODateTime;
|
|
1705
|
+
}, z.core.$strip>;
|
|
1706
|
+
/**
|
|
1707
|
+
* An array of tickets for the organization, newest first.
|
|
1708
|
+
*/
|
|
1709
|
+
export declare const zListTicketsResponse: z.ZodArray<z.ZodObject<{
|
|
1710
|
+
id: z.ZodString;
|
|
1711
|
+
status: z.ZodEnum<{
|
|
1712
|
+
closed: "closed";
|
|
1713
|
+
waiting_on_us: "waiting_on_us";
|
|
1714
|
+
waiting_on_user: "waiting_on_user";
|
|
1715
|
+
}>;
|
|
1716
|
+
category: z.ZodEnum<{
|
|
1717
|
+
billing: "billing";
|
|
1718
|
+
technical: "technical";
|
|
1719
|
+
general: "general";
|
|
1720
|
+
}>;
|
|
1721
|
+
summary: z.ZodString;
|
|
1722
|
+
closed_at: z.ZodOptional<z.ZodISODateTime>;
|
|
1723
|
+
date_created: z.ZodISODateTime;
|
|
1724
|
+
date_updated: z.ZodISODateTime;
|
|
1725
|
+
messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1726
|
+
id: z.ZodString;
|
|
1727
|
+
type: z.ZodEnum<{
|
|
1728
|
+
customer_reply: "customer_reply";
|
|
1729
|
+
agent_reply: "agent_reply";
|
|
1730
|
+
}>;
|
|
1731
|
+
body: z.ZodString;
|
|
1732
|
+
author_first_name: z.ZodOptional<z.ZodString>;
|
|
1733
|
+
author_last_name: z.ZodOptional<z.ZodString>;
|
|
1734
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1735
|
+
id: z.ZodString;
|
|
1736
|
+
filename: z.ZodString;
|
|
1737
|
+
content_type: z.ZodString;
|
|
1738
|
+
size: z.ZodInt;
|
|
1739
|
+
}, z.core.$strip>>>;
|
|
1740
|
+
date_created: z.ZodISODateTime;
|
|
1741
|
+
}, z.core.$strip>>>;
|
|
1742
|
+
}, z.core.$strip>>;
|
|
1743
|
+
export declare const zCreateTicketBody: z.ZodObject<{
|
|
1744
|
+
payload: z.ZodOptional<z.ZodString>;
|
|
1745
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1746
|
+
}, z.core.$strip>;
|
|
1747
|
+
/**
|
|
1748
|
+
* Ticket created.
|
|
1749
|
+
*/
|
|
1750
|
+
export declare const zCreateTicketResponse: z.ZodObject<{
|
|
1751
|
+
id: z.ZodString;
|
|
1752
|
+
status: z.ZodEnum<{
|
|
1753
|
+
closed: "closed";
|
|
1754
|
+
waiting_on_us: "waiting_on_us";
|
|
1755
|
+
waiting_on_user: "waiting_on_user";
|
|
1756
|
+
}>;
|
|
1757
|
+
category: z.ZodEnum<{
|
|
1758
|
+
billing: "billing";
|
|
1759
|
+
technical: "technical";
|
|
1760
|
+
general: "general";
|
|
1761
|
+
}>;
|
|
1762
|
+
summary: z.ZodString;
|
|
1763
|
+
closed_at: z.ZodOptional<z.ZodISODateTime>;
|
|
1764
|
+
date_created: z.ZodISODateTime;
|
|
1765
|
+
date_updated: z.ZodISODateTime;
|
|
1766
|
+
messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1767
|
+
id: z.ZodString;
|
|
1768
|
+
type: z.ZodEnum<{
|
|
1769
|
+
customer_reply: "customer_reply";
|
|
1770
|
+
agent_reply: "agent_reply";
|
|
1771
|
+
}>;
|
|
1772
|
+
body: z.ZodString;
|
|
1773
|
+
author_first_name: z.ZodOptional<z.ZodString>;
|
|
1774
|
+
author_last_name: z.ZodOptional<z.ZodString>;
|
|
1775
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1776
|
+
id: z.ZodString;
|
|
1777
|
+
filename: z.ZodString;
|
|
1778
|
+
content_type: z.ZodString;
|
|
1779
|
+
size: z.ZodInt;
|
|
1780
|
+
}, z.core.$strip>>>;
|
|
1781
|
+
date_created: z.ZodISODateTime;
|
|
1782
|
+
}, z.core.$strip>>>;
|
|
1783
|
+
}, z.core.$strip>;
|
|
1784
|
+
export declare const zCloseTicketPath: z.ZodObject<{
|
|
1785
|
+
ticket_id: z.ZodString;
|
|
1786
|
+
}, z.core.$strip>;
|
|
1787
|
+
/**
|
|
1788
|
+
* Ticket closed.
|
|
1789
|
+
*/
|
|
1790
|
+
export declare const zCloseTicketResponse: z.ZodObject<{
|
|
1791
|
+
id: z.ZodString;
|
|
1792
|
+
status: z.ZodEnum<{
|
|
1793
|
+
closed: "closed";
|
|
1794
|
+
waiting_on_us: "waiting_on_us";
|
|
1795
|
+
waiting_on_user: "waiting_on_user";
|
|
1796
|
+
}>;
|
|
1797
|
+
category: z.ZodEnum<{
|
|
1798
|
+
billing: "billing";
|
|
1799
|
+
technical: "technical";
|
|
1800
|
+
general: "general";
|
|
1801
|
+
}>;
|
|
1802
|
+
summary: z.ZodString;
|
|
1803
|
+
closed_at: z.ZodOptional<z.ZodISODateTime>;
|
|
1804
|
+
date_created: z.ZodISODateTime;
|
|
1805
|
+
date_updated: z.ZodISODateTime;
|
|
1806
|
+
messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1807
|
+
id: z.ZodString;
|
|
1808
|
+
type: z.ZodEnum<{
|
|
1809
|
+
customer_reply: "customer_reply";
|
|
1810
|
+
agent_reply: "agent_reply";
|
|
1811
|
+
}>;
|
|
1812
|
+
body: z.ZodString;
|
|
1813
|
+
author_first_name: z.ZodOptional<z.ZodString>;
|
|
1814
|
+
author_last_name: z.ZodOptional<z.ZodString>;
|
|
1815
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1816
|
+
id: z.ZodString;
|
|
1817
|
+
filename: z.ZodString;
|
|
1818
|
+
content_type: z.ZodString;
|
|
1819
|
+
size: z.ZodInt;
|
|
1820
|
+
}, z.core.$strip>>>;
|
|
1821
|
+
date_created: z.ZodISODateTime;
|
|
1822
|
+
}, z.core.$strip>>>;
|
|
1823
|
+
}, z.core.$strip>;
|
|
1824
|
+
export declare const zGetTicketPath: z.ZodObject<{
|
|
1825
|
+
ticket_id: z.ZodString;
|
|
1826
|
+
}, z.core.$strip>;
|
|
1827
|
+
/**
|
|
1828
|
+
* Ticket with messages (internal notes excluded).
|
|
1829
|
+
*/
|
|
1830
|
+
export declare const zGetTicketResponse: z.ZodObject<{
|
|
1831
|
+
id: z.ZodString;
|
|
1832
|
+
status: z.ZodEnum<{
|
|
1833
|
+
closed: "closed";
|
|
1834
|
+
waiting_on_us: "waiting_on_us";
|
|
1835
|
+
waiting_on_user: "waiting_on_user";
|
|
1836
|
+
}>;
|
|
1837
|
+
category: z.ZodEnum<{
|
|
1838
|
+
billing: "billing";
|
|
1839
|
+
technical: "technical";
|
|
1840
|
+
general: "general";
|
|
1841
|
+
}>;
|
|
1842
|
+
summary: z.ZodString;
|
|
1843
|
+
closed_at: z.ZodOptional<z.ZodISODateTime>;
|
|
1844
|
+
date_created: z.ZodISODateTime;
|
|
1845
|
+
date_updated: z.ZodISODateTime;
|
|
1846
|
+
messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1847
|
+
id: z.ZodString;
|
|
1848
|
+
type: z.ZodEnum<{
|
|
1849
|
+
customer_reply: "customer_reply";
|
|
1850
|
+
agent_reply: "agent_reply";
|
|
1851
|
+
}>;
|
|
1852
|
+
body: z.ZodString;
|
|
1853
|
+
author_first_name: z.ZodOptional<z.ZodString>;
|
|
1854
|
+
author_last_name: z.ZodOptional<z.ZodString>;
|
|
1855
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1856
|
+
id: z.ZodString;
|
|
1857
|
+
filename: z.ZodString;
|
|
1858
|
+
content_type: z.ZodString;
|
|
1859
|
+
size: z.ZodInt;
|
|
1860
|
+
}, z.core.$strip>>>;
|
|
1861
|
+
date_created: z.ZodISODateTime;
|
|
1862
|
+
}, z.core.$strip>>>;
|
|
1863
|
+
}, z.core.$strip>;
|
|
1864
|
+
export declare const zReplyTicketBody: z.ZodObject<{
|
|
1865
|
+
payload: z.ZodOptional<z.ZodString>;
|
|
1866
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1867
|
+
}, z.core.$strip>;
|
|
1868
|
+
export declare const zReplyTicketPath: z.ZodObject<{
|
|
1869
|
+
ticket_id: z.ZodString;
|
|
1870
|
+
}, z.core.$strip>;
|
|
1871
|
+
/**
|
|
1872
|
+
* Reply appended.
|
|
1873
|
+
*/
|
|
1874
|
+
export declare const zReplyTicketResponse: z.ZodObject<{
|
|
1875
|
+
id: z.ZodString;
|
|
1876
|
+
type: z.ZodEnum<{
|
|
1877
|
+
customer_reply: "customer_reply";
|
|
1878
|
+
agent_reply: "agent_reply";
|
|
1879
|
+
}>;
|
|
1880
|
+
body: z.ZodString;
|
|
1881
|
+
author_first_name: z.ZodOptional<z.ZodString>;
|
|
1882
|
+
author_last_name: z.ZodOptional<z.ZodString>;
|
|
1883
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1884
|
+
id: z.ZodString;
|
|
1885
|
+
filename: z.ZodString;
|
|
1886
|
+
content_type: z.ZodString;
|
|
1887
|
+
size: z.ZodInt;
|
|
1888
|
+
}, z.core.$strip>>>;
|
|
1889
|
+
date_created: z.ZodISODateTime;
|
|
1890
|
+
}, z.core.$strip>;
|
|
1891
|
+
export declare const zGetTicketAttachmentPath: z.ZodObject<{
|
|
1892
|
+
ticket_id: z.ZodString;
|
|
1893
|
+
attachment_id: z.ZodString;
|
|
1894
|
+
}, z.core.$strip>;
|
|
1761
1895
|
/**
|
|
1762
|
-
*
|
|
1896
|
+
* Attachment binary stream.
|
|
1763
1897
|
*/
|
|
1764
|
-
export declare const
|
|
1765
|
-
|
|
1766
|
-
|
|
1767
|
-
|
|
1768
|
-
|
|
1769
|
-
|
|
1770
|
-
|
|
1771
|
-
|
|
1772
|
-
|
|
1898
|
+
export declare const zGetTicketAttachmentResponse: z.ZodString;
|
|
1899
|
+
/**
|
|
1900
|
+
* List of repositories
|
|
1901
|
+
*/
|
|
1902
|
+
export declare const zListRepositoriesResponse: z.ZodArray<z.ZodObject<{
|
|
1903
|
+
name: z.ZodString;
|
|
1904
|
+
region: z.ZodString;
|
|
1905
|
+
uri: z.ZodString;
|
|
1906
|
+
}, z.core.$strip>>;
|
|
1907
|
+
export declare const zListTagsPath: z.ZodObject<{
|
|
1908
|
+
region: z.ZodString;
|
|
1909
|
+
repository: z.ZodString;
|
|
1910
|
+
}, z.core.$strip>;
|
|
1911
|
+
/**
|
|
1912
|
+
* Repository with tags
|
|
1913
|
+
*/
|
|
1914
|
+
export declare const zListTagsResponse: z.ZodObject<{
|
|
1915
|
+
name: z.ZodString;
|
|
1916
|
+
region: z.ZodString;
|
|
1917
|
+
uri: z.ZodString;
|
|
1918
|
+
tags: z.ZodArray<z.ZodObject<{
|
|
1919
|
+
name: z.ZodString;
|
|
1920
|
+
size: z.ZodNumber;
|
|
1921
|
+
mediaType: z.ZodOptional<z.ZodString>;
|
|
1922
|
+
platforms: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1923
|
+
}, z.core.$strip>>;
|
|
1924
|
+
totalSize: z.ZodNumber;
|
|
1925
|
+
}, z.core.$strip>;
|
|
1926
|
+
export declare const zDeleteTagPath: z.ZodObject<{
|
|
1927
|
+
region: z.ZodString;
|
|
1928
|
+
repository: z.ZodString;
|
|
1929
|
+
tag: z.ZodString;
|
|
1930
|
+
}, z.core.$strip>;
|
|
1931
|
+
export declare const zGetTagPath: z.ZodObject<{
|
|
1932
|
+
region: z.ZodString;
|
|
1933
|
+
repository: z.ZodString;
|
|
1934
|
+
tag: z.ZodString;
|
|
1935
|
+
}, z.core.$strip>;
|
|
1936
|
+
/**
|
|
1937
|
+
* Tag details
|
|
1938
|
+
*/
|
|
1939
|
+
export declare const zGetTagResponse: z.ZodObject<{
|
|
1940
|
+
name: z.ZodString;
|
|
1941
|
+
digest: z.ZodString;
|
|
1942
|
+
mediaType: z.ZodOptional<z.ZodString>;
|
|
1943
|
+
config: z.ZodOptional<z.ZodObject<{
|
|
1944
|
+
size: z.ZodNumber;
|
|
1945
|
+
}, z.core.$strip>>;
|
|
1946
|
+
layers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1947
|
+
digest: z.ZodOptional<z.ZodString>;
|
|
1948
|
+
size: z.ZodNumber;
|
|
1949
|
+
}, z.core.$strip>>>;
|
|
1950
|
+
manifests: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1951
|
+
digest: z.ZodString;
|
|
1952
|
+
platform: z.ZodOptional<z.ZodObject<{
|
|
1953
|
+
architecture: z.ZodString;
|
|
1954
|
+
os: z.ZodString;
|
|
1955
|
+
variant: z.ZodOptional<z.ZodString>;
|
|
1956
|
+
}, z.core.$strip>>;
|
|
1957
|
+
layers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1958
|
+
digest: z.ZodOptional<z.ZodString>;
|
|
1959
|
+
size: z.ZodNumber;
|
|
1960
|
+
}, z.core.$strip>>>;
|
|
1961
|
+
size: z.ZodOptional<z.ZodNumber>;
|
|
1962
|
+
}, z.core.$strip>>>;
|
|
1963
|
+
size: z.ZodNumber;
|
|
1964
|
+
region: z.ZodString;
|
|
1965
|
+
repository: z.ZodString;
|
|
1966
|
+
uri: z.ZodString;
|
|
1967
|
+
}, z.core.$strip>;
|
|
1968
|
+
/**
|
|
1969
|
+
* Returns a single object containing organization details.
|
|
1970
|
+
*/
|
|
1971
|
+
export declare const zGetOrganizationResponse: z.ZodObject<{
|
|
1972
|
+
id: z.ZodUUID;
|
|
1973
|
+
name: z.ZodOptional<z.ZodString>;
|
|
1974
|
+
type: z.ZodEnum<{
|
|
1975
|
+
business: "business";
|
|
1976
|
+
personal: "personal";
|
|
1977
|
+
}>;
|
|
1978
|
+
date_created: z.ZodISODateTime;
|
|
1979
|
+
quota: z.ZodObject<{
|
|
1980
|
+
basic_clusters_max: z.ZodInt;
|
|
1981
|
+
basic_clusters_available: z.ZodInt;
|
|
1982
|
+
pro_clusters_max: z.ZodInt;
|
|
1983
|
+
pro_clusters_available: z.ZodInt;
|
|
1984
|
+
enterprise_clusters_max: z.ZodInt;
|
|
1985
|
+
enterprise_clusters_available: z.ZodInt;
|
|
1986
|
+
fleets_max: z.ZodInt;
|
|
1987
|
+
cluster_tiers: z.ZodArray<z.ZodString>;
|
|
1988
|
+
regions: z.ZodArray<z.ZodString>;
|
|
1989
|
+
versions: z.ZodArray<z.ZodObject<{
|
|
1990
|
+
id: z.ZodString;
|
|
1991
|
+
label: z.ZodString;
|
|
1992
|
+
}, z.core.$strip>>;
|
|
1993
|
+
cfcr_storage_gb: z.ZodInt;
|
|
1994
|
+
}, z.core.$strip>;
|
|
1995
|
+
status: z.ZodEnum<{
|
|
1996
|
+
active: "active";
|
|
1997
|
+
closed: "closed";
|
|
1998
|
+
suspended: "suspended";
|
|
1999
|
+
}>;
|
|
2000
|
+
verification: z.ZodEnum<{
|
|
2001
|
+
none: "none";
|
|
2002
|
+
submitted: "submitted";
|
|
2003
|
+
verified: "verified";
|
|
2004
|
+
}>;
|
|
2005
|
+
}, z.core.$strip>;
|
|
2006
|
+
export declare const zCreateOrganizationBody: z.ZodObject<{
|
|
2007
|
+
type: z.ZodEnum<{
|
|
2008
|
+
business: "business";
|
|
2009
|
+
personal: "personal";
|
|
2010
|
+
}>;
|
|
1773
2011
|
email: z.ZodEmail;
|
|
1774
|
-
|
|
1775
|
-
|
|
1776
|
-
|
|
1777
|
-
|
|
1778
|
-
ad_nrt: "ad_nrt";
|
|
1779
|
-
ae_trn: "ae_trn";
|
|
1780
|
-
al_tin: "al_tin";
|
|
1781
|
-
am_tin: "am_tin";
|
|
1782
|
-
ao_tin: "ao_tin";
|
|
1783
|
-
ar_cuit: "ar_cuit";
|
|
1784
|
-
at_vat: "at_vat";
|
|
1785
|
-
au_abn: "au_abn";
|
|
1786
|
-
au_arn: "au_arn";
|
|
1787
|
-
ba_tin: "ba_tin";
|
|
1788
|
-
bb_tin: "bb_tin";
|
|
1789
|
-
be_vat: "be_vat";
|
|
1790
|
-
bg_uic: "bg_uic";
|
|
1791
|
-
bg_vat: "bg_vat";
|
|
1792
|
-
bh_vat: "bh_vat";
|
|
1793
|
-
bo_tin: "bo_tin";
|
|
1794
|
-
br_cnpj: "br_cnpj";
|
|
1795
|
-
br_cpf: "br_cpf";
|
|
1796
|
-
bs_tin: "bs_tin";
|
|
1797
|
-
by_tin: "by_tin";
|
|
1798
|
-
ca_bn: "ca_bn";
|
|
1799
|
-
ca_gst_hst: "ca_gst_hst";
|
|
1800
|
-
ca_pst_bc: "ca_pst_bc";
|
|
1801
|
-
ca_pst_mb: "ca_pst_mb";
|
|
1802
|
-
ca_pst_sk: "ca_pst_sk";
|
|
1803
|
-
ca_qst: "ca_qst";
|
|
1804
|
-
cd_nif: "cd_nif";
|
|
1805
|
-
ch_uid: "ch_uid";
|
|
1806
|
-
ch_vat: "ch_vat";
|
|
1807
|
-
cl_tin: "cl_tin";
|
|
1808
|
-
cn_tin: "cn_tin";
|
|
1809
|
-
co_nit: "co_nit";
|
|
1810
|
-
cr_tin: "cr_tin";
|
|
1811
|
-
cy_vat: "cy_vat";
|
|
1812
|
-
cz_vat: "cz_vat";
|
|
1813
|
-
de_stn: "de_stn";
|
|
1814
|
-
de_vat: "de_vat";
|
|
1815
|
-
dk_vat: "dk_vat";
|
|
1816
|
-
do_rcn: "do_rcn";
|
|
1817
|
-
ec_ruc: "ec_ruc";
|
|
1818
|
-
ee_vat: "ee_vat";
|
|
1819
|
-
eg_tin: "eg_tin";
|
|
1820
|
-
es_cif: "es_cif";
|
|
1821
|
-
es_vat: "es_vat";
|
|
1822
|
-
eu_oss_vat: "eu_oss_vat";
|
|
1823
|
-
fi_vat: "fi_vat";
|
|
1824
|
-
fr_vat: "fr_vat";
|
|
1825
|
-
gb_vat: "gb_vat";
|
|
1826
|
-
ge_vat: "ge_vat";
|
|
1827
|
-
gn_nif: "gn_nif";
|
|
1828
|
-
gr_vat: "gr_vat";
|
|
1829
|
-
hk_br: "hk_br";
|
|
1830
|
-
hr_oib: "hr_oib";
|
|
1831
|
-
hr_vat: "hr_vat";
|
|
1832
|
-
hu_tin: "hu_tin";
|
|
1833
|
-
hu_vat: "hu_vat";
|
|
1834
|
-
id_npwp: "id_npwp";
|
|
1835
|
-
ie_vat: "ie_vat";
|
|
1836
|
-
il_vat: "il_vat";
|
|
1837
|
-
in_gst: "in_gst";
|
|
1838
|
-
is_vat: "is_vat";
|
|
1839
|
-
it_vat: "it_vat";
|
|
1840
|
-
jp_cn: "jp_cn";
|
|
1841
|
-
jp_rn: "jp_rn";
|
|
1842
|
-
jp_trn: "jp_trn";
|
|
1843
|
-
ke_pin: "ke_pin";
|
|
1844
|
-
kh_tin: "kh_tin";
|
|
1845
|
-
kr_brn: "kr_brn";
|
|
1846
|
-
kz_bin: "kz_bin";
|
|
1847
|
-
li_uid: "li_uid";
|
|
1848
|
-
li_vat: "li_vat";
|
|
1849
|
-
lt_vat: "lt_vat";
|
|
1850
|
-
lu_vat: "lu_vat";
|
|
1851
|
-
lv_vat: "lv_vat";
|
|
1852
|
-
ma_vat: "ma_vat";
|
|
1853
|
-
md_vat: "md_vat";
|
|
1854
|
-
me_pib: "me_pib";
|
|
1855
|
-
mk_vat: "mk_vat";
|
|
1856
|
-
mr_nif: "mr_nif";
|
|
1857
|
-
mt_vat: "mt_vat";
|
|
1858
|
-
mx_rfc: "mx_rfc";
|
|
1859
|
-
my_frp: "my_frp";
|
|
1860
|
-
my_itn: "my_itn";
|
|
1861
|
-
my_sst: "my_sst";
|
|
1862
|
-
ng_tin: "ng_tin";
|
|
1863
|
-
nl_vat: "nl_vat";
|
|
1864
|
-
no_vat: "no_vat";
|
|
1865
|
-
no_voec: "no_voec";
|
|
1866
|
-
np_pan: "np_pan";
|
|
1867
|
-
nz_gst: "nz_gst";
|
|
1868
|
-
om_vat: "om_vat";
|
|
1869
|
-
pe_ruc: "pe_ruc";
|
|
1870
|
-
ph_tin: "ph_tin";
|
|
1871
|
-
pl_vat: "pl_vat";
|
|
1872
|
-
pt_vat: "pt_vat";
|
|
1873
|
-
ro_tin: "ro_tin";
|
|
1874
|
-
ro_vat: "ro_vat";
|
|
1875
|
-
rs_pib: "rs_pib";
|
|
1876
|
-
ru_inn: "ru_inn";
|
|
1877
|
-
ru_kpp: "ru_kpp";
|
|
1878
|
-
sa_vat: "sa_vat";
|
|
1879
|
-
se_vat: "se_vat";
|
|
1880
|
-
sg_gst: "sg_gst";
|
|
1881
|
-
sg_uen: "sg_uen";
|
|
1882
|
-
si_tin: "si_tin";
|
|
1883
|
-
si_vat: "si_vat";
|
|
1884
|
-
sk_vat: "sk_vat";
|
|
1885
|
-
sn_ninea: "sn_ninea";
|
|
1886
|
-
sr_fin: "sr_fin";
|
|
1887
|
-
sv_nit: "sv_nit";
|
|
1888
|
-
th_vat: "th_vat";
|
|
1889
|
-
tj_tin: "tj_tin";
|
|
1890
|
-
tr_tin: "tr_tin";
|
|
1891
|
-
tw_vat: "tw_vat";
|
|
1892
|
-
tz_vat: "tz_vat";
|
|
1893
|
-
ua_vat: "ua_vat";
|
|
1894
|
-
ug_tin: "ug_tin";
|
|
1895
|
-
us_ein: "us_ein";
|
|
1896
|
-
uy_ruc: "uy_ruc";
|
|
1897
|
-
uz_tin: "uz_tin";
|
|
1898
|
-
uz_vat: "uz_vat";
|
|
1899
|
-
ve_rif: "ve_rif";
|
|
1900
|
-
vn_tin: "vn_tin";
|
|
1901
|
-
xi_vat: "xi_vat";
|
|
1902
|
-
za_vat: "za_vat";
|
|
1903
|
-
zm_tin: "zm_tin";
|
|
1904
|
-
zw_tin: "zw_tin";
|
|
1905
|
-
}>>;
|
|
2012
|
+
first_name: z.ZodString;
|
|
2013
|
+
last_name: z.ZodString;
|
|
2014
|
+
company_name: z.ZodString;
|
|
2015
|
+
password: z.ZodString;
|
|
1906
2016
|
}, z.core.$strip>;
|
|
1907
2017
|
/**
|
|
1908
|
-
*
|
|
2018
|
+
* Organization signup accepted. Returns the generated organization id immediately; provisioning (billing, Keycloak realm, user) continues asynchronously in the background.
|
|
2019
|
+
*
|
|
1909
2020
|
*/
|
|
1910
|
-
export declare const
|
|
1911
|
-
id: z.
|
|
1912
|
-
|
|
1913
|
-
|
|
1914
|
-
|
|
2021
|
+
export declare const zCreateOrganizationResponse: z.ZodObject<{
|
|
2022
|
+
id: z.ZodString;
|
|
2023
|
+
}, z.core.$strip>;
|
|
2024
|
+
/**
|
|
2025
|
+
* Returns the current consent status.
|
|
2026
|
+
*/
|
|
2027
|
+
export declare const zGetBasicPriceConsentResponse: z.ZodObject<{
|
|
2028
|
+
status: z.ZodEnum<{
|
|
2029
|
+
pending: "pending";
|
|
2030
|
+
rejected: "rejected";
|
|
2031
|
+
accepted: "accepted";
|
|
2032
|
+
not_applicable: "not_applicable";
|
|
1915
2033
|
}>;
|
|
1916
|
-
|
|
1917
|
-
|
|
1918
|
-
code: z.ZodString;
|
|
1919
|
-
description: z.ZodOptional<z.ZodString>;
|
|
1920
|
-
value_total: z.ZodNumber;
|
|
1921
|
-
value_remaining: z.ZodOptional<z.ZodNumber>;
|
|
1922
|
-
}, z.core.$strip>>;
|
|
1923
|
-
export declare const zRedeemCreditsBody: z.ZodObject<{
|
|
1924
|
-
code: z.ZodOptional<z.ZodString>;
|
|
2034
|
+
decided_at: z.ZodOptional<z.ZodISODateTime>;
|
|
2035
|
+
decided_by: z.ZodOptional<z.ZodString>;
|
|
1925
2036
|
}, z.core.$strip>;
|
|
1926
|
-
export declare const
|
|
1927
|
-
|
|
2037
|
+
export declare const zSetBasicPriceConsentBody: z.ZodObject<{
|
|
2038
|
+
decision: z.ZodEnum<{
|
|
2039
|
+
rejected: "rejected";
|
|
2040
|
+
accepted: "accepted";
|
|
2041
|
+
}>;
|
|
1928
2042
|
}, z.core.$strip>;
|
|
1929
2043
|
/**
|
|
1930
|
-
*
|
|
2044
|
+
* Decision recorded. Returns the updated consent status.
|
|
1931
2045
|
*/
|
|
1932
|
-
export declare const
|
|
1933
|
-
values: z.ZodString;
|
|
1934
|
-
version_channel: z.ZodString;
|
|
1935
|
-
name: z.ZodString;
|
|
1936
|
-
namespace: z.ZodString;
|
|
1937
|
-
chart: z.ZodString;
|
|
2046
|
+
export declare const zSetBasicPriceConsentResponse: z.ZodObject<{
|
|
1938
2047
|
status: z.ZodEnum<{
|
|
1939
|
-
|
|
1940
|
-
|
|
1941
|
-
|
|
1942
|
-
|
|
1943
|
-
TestSucceeded: "TestSucceeded";
|
|
1944
|
-
TestFailed: "TestFailed";
|
|
1945
|
-
RollbackSucceeded: "RollbackSucceeded";
|
|
1946
|
-
RollbackFailed: "RollbackFailed";
|
|
1947
|
-
UninstallSucceeded: "UninstallSucceeded";
|
|
1948
|
-
UninstallFailed: "UninstallFailed";
|
|
1949
|
-
ArtifactFailed: "ArtifactFailed";
|
|
1950
|
-
DependencyNotReady: "DependencyNotReady";
|
|
1951
|
-
Progressing: "Progressing";
|
|
1952
|
-
SourceNotReady: "SourceNotReady";
|
|
2048
|
+
pending: "pending";
|
|
2049
|
+
rejected: "rejected";
|
|
2050
|
+
accepted: "accepted";
|
|
2051
|
+
not_applicable: "not_applicable";
|
|
1953
2052
|
}>;
|
|
1954
|
-
|
|
1955
|
-
|
|
1956
|
-
updated_at: z.ZodString;
|
|
1957
|
-
ready: z.ZodBoolean;
|
|
1958
|
-
}, z.core.$strip>>;
|
|
1959
|
-
export declare const zCreateChartBody: z.ZodObject<{
|
|
1960
|
-
values: z.ZodString;
|
|
1961
|
-
version_channel: z.ZodString;
|
|
1962
|
-
name: z.ZodString;
|
|
1963
|
-
namespace: z.ZodString;
|
|
1964
|
-
chart: z.ZodString;
|
|
2053
|
+
decided_at: z.ZodOptional<z.ZodISODateTime>;
|
|
2054
|
+
decided_by: z.ZodOptional<z.ZodString>;
|
|
1965
2055
|
}, z.core.$strip>;
|
|
1966
|
-
|
|
1967
|
-
|
|
2056
|
+
/**
|
|
2057
|
+
* JSON-RPC 2.0 request payload
|
|
2058
|
+
*/
|
|
2059
|
+
export declare const zPostMcpBody: z.ZodObject<{
|
|
2060
|
+
jsonrpc: z.ZodOptional<z.ZodString>;
|
|
2061
|
+
method: z.ZodOptional<z.ZodString>;
|
|
2062
|
+
id: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>;
|
|
2063
|
+
params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1968
2064
|
}, z.core.$strip>;
|
|
1969
2065
|
/**
|
|
1970
|
-
*
|
|
2066
|
+
* JSON-RPC 2.0 success or error response
|
|
1971
2067
|
*/
|
|
1972
|
-
export declare const
|
|
1973
|
-
|
|
1974
|
-
|
|
1975
|
-
|
|
2068
|
+
export declare const zPostMcpResponse: z.ZodObject<{
|
|
2069
|
+
jsonrpc: z.ZodOptional<z.ZodString>;
|
|
2070
|
+
id: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>;
|
|
2071
|
+
result: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2072
|
+
error: z.ZodOptional<z.ZodObject<{
|
|
2073
|
+
code: z.ZodOptional<z.ZodInt>;
|
|
2074
|
+
message: z.ZodOptional<z.ZodString>;
|
|
2075
|
+
}, z.core.$strip>>;
|
|
1976
2076
|
}, z.core.$strip>;
|
|
1977
2077
|
/**
|
|
1978
|
-
*
|
|
2078
|
+
* An array of chart listings in the marketplace.
|
|
1979
2079
|
*/
|
|
1980
|
-
export declare const
|
|
1981
|
-
|
|
1982
|
-
|
|
2080
|
+
export declare const zListMarketplaceChartsResponse: z.ZodArray<z.ZodObject<{
|
|
2081
|
+
name: z.ZodString;
|
|
2082
|
+
versions: z.ZodArray<z.ZodString>;
|
|
2083
|
+
version_channels: z.ZodArray<z.ZodString>;
|
|
2084
|
+
latestVersion: z.ZodString;
|
|
2085
|
+
metadata: z.ZodOptional<z.ZodObject<{
|
|
2086
|
+
name: z.ZodString;
|
|
2087
|
+
version: z.ZodString;
|
|
2088
|
+
description: z.ZodOptional<z.ZodString>;
|
|
2089
|
+
appVersion: z.ZodOptional<z.ZodString>;
|
|
2090
|
+
apiVersion: z.ZodOptional<z.ZodString>;
|
|
2091
|
+
keywords: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2092
|
+
home: z.ZodOptional<z.ZodString>;
|
|
2093
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
2094
|
+
sources: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2095
|
+
maintainers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2096
|
+
name: z.ZodString;
|
|
2097
|
+
email: z.ZodOptional<z.ZodString>;
|
|
2098
|
+
}, z.core.$strip>>>;
|
|
2099
|
+
}, z.core.$strip>>;
|
|
2100
|
+
}, z.core.$strip>>;
|
|
2101
|
+
export declare const zGetMarketplaceChartFilesPath: z.ZodObject<{
|
|
1983
2102
|
chart_name: z.ZodString;
|
|
2103
|
+
version_channel: z.ZodString;
|
|
1984
2104
|
}, z.core.$strip>;
|
|
1985
2105
|
/**
|
|
1986
|
-
* Returns
|
|
2106
|
+
* Returns an object containing the chart files for the latest matching version.
|
|
1987
2107
|
*/
|
|
1988
|
-
export declare const
|
|
1989
|
-
|
|
1990
|
-
|
|
1991
|
-
|
|
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;
|
|
2108
|
+
export declare const zGetMarketplaceChartFilesResponse: z.ZodObject<{
|
|
2109
|
+
chartYaml: z.ZodOptional<z.ZodString>;
|
|
2110
|
+
valuesYaml: z.ZodOptional<z.ZodString>;
|
|
2111
|
+
valuesSchemaJson: z.ZodOptional<z.ZodString>;
|
|
2014
2112
|
}, z.core.$strip>;
|
|
2015
|
-
|
|
2016
|
-
|
|
2017
|
-
|
|
2113
|
+
/**
|
|
2114
|
+
* An array of invites
|
|
2115
|
+
*/
|
|
2116
|
+
export declare const zListInvitesResponse: z.ZodArray<z.ZodObject<{
|
|
2117
|
+
id: z.ZodOptional<z.ZodString>;
|
|
2118
|
+
organization_id: z.ZodOptional<z.ZodUUID>;
|
|
2119
|
+
date_created: z.ZodISODateTime;
|
|
2120
|
+
email: z.ZodOptional<z.ZodEmail>;
|
|
2121
|
+
code: z.ZodOptional<z.ZodString>;
|
|
2122
|
+
role: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
2123
|
+
Administrator: "Administrator";
|
|
2124
|
+
User: "User";
|
|
2125
|
+
}>>>;
|
|
2126
|
+
}, z.core.$strip>>;
|
|
2127
|
+
export declare const zCreateInviteBody: z.ZodObject<{
|
|
2128
|
+
email: z.ZodEmail;
|
|
2129
|
+
role: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
2130
|
+
Administrator: "Administrator";
|
|
2131
|
+
User: "User";
|
|
2132
|
+
}>>>;
|
|
2018
2133
|
}, z.core.$strip>;
|
|
2019
|
-
|
|
2020
|
-
|
|
2021
|
-
|
|
2134
|
+
/**
|
|
2135
|
+
* Successfully created. Returns created invite details.
|
|
2136
|
+
*/
|
|
2137
|
+
export declare const zCreateInviteResponse: z.ZodObject<{
|
|
2138
|
+
id: z.ZodOptional<z.ZodString>;
|
|
2139
|
+
organization_id: z.ZodOptional<z.ZodUUID>;
|
|
2140
|
+
date_created: z.ZodISODateTime;
|
|
2141
|
+
email: z.ZodOptional<z.ZodEmail>;
|
|
2142
|
+
code: z.ZodOptional<z.ZodString>;
|
|
2143
|
+
role: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
2144
|
+
Administrator: "Administrator";
|
|
2145
|
+
User: "User";
|
|
2146
|
+
}>>>;
|
|
2147
|
+
}, z.core.$strip>;
|
|
2148
|
+
export declare const zGetInvitePath: z.ZodObject<{
|
|
2149
|
+
code: z.ZodString;
|
|
2022
2150
|
}, z.core.$strip>;
|
|
2023
2151
|
/**
|
|
2024
|
-
*
|
|
2152
|
+
* The invitation code is valid. Returns the invited email and organization.
|
|
2025
2153
|
*/
|
|
2026
|
-
export declare const
|
|
2154
|
+
export declare const zGetInviteResponse: z.ZodObject<{
|
|
2155
|
+
email: z.ZodOptional<z.ZodEmail>;
|
|
2156
|
+
organization_id: z.ZodOptional<z.ZodString>;
|
|
2157
|
+
}, z.core.$strip>;
|
|
2158
|
+
export declare const zDeleteInvitePath: z.ZodObject<{
|
|
2159
|
+
email: z.ZodEmail;
|
|
2160
|
+
}, z.core.$strip>;
|
|
2161
|
+
export declare const zQueryClusterPath: z.ZodObject<{
|
|
2162
|
+
cluster_id: z.ZodString;
|
|
2163
|
+
}, z.core.$strip>;
|
|
2027
2164
|
export declare const zListFleetsPath: z.ZodObject<{
|
|
2028
2165
|
cluster_id: z.ZodString;
|
|
2029
2166
|
}, z.core.$strip>;
|
|
@@ -2046,16 +2183,16 @@ export declare const zListFleetsResponse: z.ZodArray<z.ZodObject<{
|
|
|
2046
2183
|
enabled: z.ZodBoolean;
|
|
2047
2184
|
controllerRoleArn: z.ZodOptional<z.ZodString>;
|
|
2048
2185
|
}, z.core.$strip>>;
|
|
2049
|
-
constraints: z.
|
|
2050
|
-
'karpenter.sh/capacity-type': z.ZodDefault<z.
|
|
2186
|
+
constraints: z.ZodDefault<z.ZodObject<{
|
|
2187
|
+
'karpenter.sh/capacity-type': z.ZodDefault<z.ZodArray<z.ZodEnum<{
|
|
2051
2188
|
"on-demand": "on-demand";
|
|
2052
2189
|
spot: "spot";
|
|
2053
|
-
}
|
|
2054
|
-
'kubernetes.io/arch': z.ZodDefault<z.
|
|
2190
|
+
}>>>;
|
|
2191
|
+
'kubernetes.io/arch': z.ZodDefault<z.ZodArray<z.ZodEnum<{
|
|
2055
2192
|
amd64: "amd64";
|
|
2056
2193
|
arm64: "arm64";
|
|
2057
|
-
}
|
|
2058
|
-
'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2194
|
+
}>>>;
|
|
2195
|
+
'cfke.io/instance-family': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2059
2196
|
p3: "p3";
|
|
2060
2197
|
cx: "cx";
|
|
2061
2198
|
h1: "h1";
|
|
@@ -2214,8 +2351,8 @@ export declare const zListFleetsResponse: z.ZodArray<z.ZodObject<{
|
|
|
2214
2351
|
x8g: "x8g";
|
|
2215
2352
|
z1d: "z1d";
|
|
2216
2353
|
z3: "z3";
|
|
2217
|
-
}
|
|
2218
|
-
'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2354
|
+
}>>>>;
|
|
2355
|
+
'topology.kubernetes.io/region': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2219
2356
|
"africa-south1": "africa-south1";
|
|
2220
2357
|
"ap-northeast-1": "ap-northeast-1";
|
|
2221
2358
|
"ap-northeast-2": "ap-northeast-2";
|
|
@@ -2280,13 +2417,17 @@ export declare const zListFleetsResponse: z.ZodArray<z.ZodObject<{
|
|
|
2280
2417
|
"us-west2": "us-west2";
|
|
2281
2418
|
"us-west3": "us-west3";
|
|
2282
2419
|
"us-west4": "us-west4";
|
|
2283
|
-
}
|
|
2420
|
+
}>>>>;
|
|
2284
2421
|
}, z.core.$strip>>;
|
|
2285
2422
|
scalingProfile: z.ZodDefault<z.ZodEnum<{
|
|
2286
2423
|
aggressive: "aggressive";
|
|
2287
2424
|
conservative: "conservative";
|
|
2288
2425
|
}>>;
|
|
2289
2426
|
id: z.ZodString;
|
|
2427
|
+
ready: z.ZodBoolean;
|
|
2428
|
+
status_message: z.ZodOptional<z.ZodString>;
|
|
2429
|
+
created_at: z.ZodString;
|
|
2430
|
+
updated_at: z.ZodString;
|
|
2290
2431
|
}, z.core.$strip>>;
|
|
2291
2432
|
export declare const zCreateFleetBody: z.ZodObject<{
|
|
2292
2433
|
limits: z.ZodOptional<z.ZodObject<{
|
|
@@ -2304,7 +2445,7 @@ export declare const zCreateFleetBody: z.ZodObject<{
|
|
|
2304
2445
|
enabled: z.ZodBoolean;
|
|
2305
2446
|
controllerRoleArn: z.ZodOptional<z.ZodString>;
|
|
2306
2447
|
}, z.core.$strip>>;
|
|
2307
|
-
constraints: z.ZodOptional<z.ZodObject<{
|
|
2448
|
+
constraints: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
2308
2449
|
'karpenter.sh/capacity-type': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2309
2450
|
"on-demand": "on-demand";
|
|
2310
2451
|
spot: "spot";
|
|
@@ -2313,7 +2454,7 @@ export declare const zCreateFleetBody: z.ZodObject<{
|
|
|
2313
2454
|
amd64: "amd64";
|
|
2314
2455
|
arm64: "arm64";
|
|
2315
2456
|
}>>>>;
|
|
2316
|
-
'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2457
|
+
'cfke.io/instance-family': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2317
2458
|
p3: "p3";
|
|
2318
2459
|
cx: "cx";
|
|
2319
2460
|
h1: "h1";
|
|
@@ -2472,8 +2613,8 @@ export declare const zCreateFleetBody: z.ZodObject<{
|
|
|
2472
2613
|
x8g: "x8g";
|
|
2473
2614
|
z1d: "z1d";
|
|
2474
2615
|
z3: "z3";
|
|
2475
|
-
}
|
|
2476
|
-
'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2616
|
+
}>>>>;
|
|
2617
|
+
'topology.kubernetes.io/region': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2477
2618
|
"africa-south1": "africa-south1";
|
|
2478
2619
|
"ap-northeast-1": "ap-northeast-1";
|
|
2479
2620
|
"ap-northeast-2": "ap-northeast-2";
|
|
@@ -2538,8 +2679,8 @@ export declare const zCreateFleetBody: z.ZodObject<{
|
|
|
2538
2679
|
"us-west2": "us-west2";
|
|
2539
2680
|
"us-west3": "us-west3";
|
|
2540
2681
|
"us-west4": "us-west4";
|
|
2541
|
-
}
|
|
2542
|
-
}, z.core.$strip
|
|
2682
|
+
}>>>>;
|
|
2683
|
+
}, z.core.$strip>>>;
|
|
2543
2684
|
scalingProfile: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
2544
2685
|
aggressive: "aggressive";
|
|
2545
2686
|
conservative: "conservative";
|
|
@@ -2584,16 +2725,16 @@ export declare const zGetFleetResponse: z.ZodObject<{
|
|
|
2584
2725
|
enabled: z.ZodBoolean;
|
|
2585
2726
|
controllerRoleArn: z.ZodOptional<z.ZodString>;
|
|
2586
2727
|
}, z.core.$strip>>;
|
|
2587
|
-
constraints: z.
|
|
2588
|
-
'karpenter.sh/capacity-type': z.ZodDefault<z.
|
|
2728
|
+
constraints: z.ZodDefault<z.ZodObject<{
|
|
2729
|
+
'karpenter.sh/capacity-type': z.ZodDefault<z.ZodArray<z.ZodEnum<{
|
|
2589
2730
|
"on-demand": "on-demand";
|
|
2590
2731
|
spot: "spot";
|
|
2591
|
-
}
|
|
2592
|
-
'kubernetes.io/arch': z.ZodDefault<z.
|
|
2732
|
+
}>>>;
|
|
2733
|
+
'kubernetes.io/arch': z.ZodDefault<z.ZodArray<z.ZodEnum<{
|
|
2593
2734
|
amd64: "amd64";
|
|
2594
2735
|
arm64: "arm64";
|
|
2595
|
-
}
|
|
2596
|
-
'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2736
|
+
}>>>;
|
|
2737
|
+
'cfke.io/instance-family': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2597
2738
|
p3: "p3";
|
|
2598
2739
|
cx: "cx";
|
|
2599
2740
|
h1: "h1";
|
|
@@ -2752,8 +2893,8 @@ export declare const zGetFleetResponse: z.ZodObject<{
|
|
|
2752
2893
|
x8g: "x8g";
|
|
2753
2894
|
z1d: "z1d";
|
|
2754
2895
|
z3: "z3";
|
|
2755
|
-
}
|
|
2756
|
-
'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2896
|
+
}>>>>;
|
|
2897
|
+
'topology.kubernetes.io/region': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2757
2898
|
"africa-south1": "africa-south1";
|
|
2758
2899
|
"ap-northeast-1": "ap-northeast-1";
|
|
2759
2900
|
"ap-northeast-2": "ap-northeast-2";
|
|
@@ -2818,13 +2959,17 @@ export declare const zGetFleetResponse: z.ZodObject<{
|
|
|
2818
2959
|
"us-west2": "us-west2";
|
|
2819
2960
|
"us-west3": "us-west3";
|
|
2820
2961
|
"us-west4": "us-west4";
|
|
2821
|
-
}
|
|
2962
|
+
}>>>>;
|
|
2822
2963
|
}, z.core.$strip>>;
|
|
2823
2964
|
scalingProfile: z.ZodDefault<z.ZodEnum<{
|
|
2824
2965
|
aggressive: "aggressive";
|
|
2825
2966
|
conservative: "conservative";
|
|
2826
2967
|
}>>;
|
|
2827
2968
|
id: z.ZodString;
|
|
2969
|
+
ready: z.ZodBoolean;
|
|
2970
|
+
status_message: z.ZodOptional<z.ZodString>;
|
|
2971
|
+
created_at: z.ZodString;
|
|
2972
|
+
updated_at: z.ZodString;
|
|
2828
2973
|
}, z.core.$strip>;
|
|
2829
2974
|
export declare const zUpdateFleetBody: z.ZodObject<{
|
|
2830
2975
|
limits: z.ZodOptional<z.ZodObject<{
|
|
@@ -2842,16 +2987,16 @@ export declare const zUpdateFleetBody: z.ZodObject<{
|
|
|
2842
2987
|
enabled: z.ZodBoolean;
|
|
2843
2988
|
controllerRoleArn: z.ZodOptional<z.ZodString>;
|
|
2844
2989
|
}, z.core.$strip>>;
|
|
2845
|
-
constraints: z.ZodOptional<z.ZodObject<{
|
|
2846
|
-
'karpenter.sh/capacity-type': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2990
|
+
constraints: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
2991
|
+
'karpenter.sh/capacity-type': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2847
2992
|
"on-demand": "on-demand";
|
|
2848
2993
|
spot: "spot";
|
|
2849
|
-
}
|
|
2850
|
-
'kubernetes.io/arch': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2994
|
+
}>>>>;
|
|
2995
|
+
'kubernetes.io/arch': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2851
2996
|
amd64: "amd64";
|
|
2852
2997
|
arm64: "arm64";
|
|
2853
|
-
}
|
|
2854
|
-
'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2998
|
+
}>>>>;
|
|
2999
|
+
'cfke.io/instance-family': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2855
3000
|
p3: "p3";
|
|
2856
3001
|
cx: "cx";
|
|
2857
3002
|
h1: "h1";
|
|
@@ -3010,8 +3155,8 @@ export declare const zUpdateFleetBody: z.ZodObject<{
|
|
|
3010
3155
|
x8g: "x8g";
|
|
3011
3156
|
z1d: "z1d";
|
|
3012
3157
|
z3: "z3";
|
|
3013
|
-
}
|
|
3014
|
-
'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
3158
|
+
}>>>>;
|
|
3159
|
+
'topology.kubernetes.io/region': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
3015
3160
|
"africa-south1": "africa-south1";
|
|
3016
3161
|
"ap-northeast-1": "ap-northeast-1";
|
|
3017
3162
|
"ap-northeast-2": "ap-northeast-2";
|
|
@@ -3076,826 +3221,902 @@ export declare const zUpdateFleetBody: z.ZodObject<{
|
|
|
3076
3221
|
"us-west2": "us-west2";
|
|
3077
3222
|
"us-west3": "us-west3";
|
|
3078
3223
|
"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";
|
|
3224
|
+
}>>>>;
|
|
3225
|
+
}, z.core.$strip>>>;
|
|
3226
|
+
scalingProfile: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
3227
|
+
aggressive: "aggressive";
|
|
3228
|
+
conservative: "conservative";
|
|
3152
3229
|
}>>>;
|
|
3153
3230
|
}, 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<{
|
|
3231
|
+
export declare const zUpdateFleetPath: z.ZodObject<{
|
|
3159
3232
|
cluster_id: z.ZodString;
|
|
3233
|
+
fleet_name: z.ZodString;
|
|
3160
3234
|
}, z.core.$strip>;
|
|
3161
3235
|
/**
|
|
3162
|
-
* Successfully
|
|
3236
|
+
* Successfully updated.
|
|
3163
3237
|
*/
|
|
3164
|
-
export declare const
|
|
3165
|
-
export declare const
|
|
3238
|
+
export declare const zUpdateFleetResponse: z.ZodString;
|
|
3239
|
+
export declare const zListChartsPath: z.ZodObject<{
|
|
3166
3240
|
cluster_id: z.ZodString;
|
|
3167
3241
|
}, z.core.$strip>;
|
|
3168
3242
|
/**
|
|
3169
|
-
*
|
|
3243
|
+
* An array of charts
|
|
3170
3244
|
*/
|
|
3171
|
-
export declare const
|
|
3245
|
+
export declare const zListChartsResponse: z.ZodArray<z.ZodObject<{
|
|
3246
|
+
values: z.ZodString;
|
|
3247
|
+
version_channel: z.ZodString;
|
|
3172
3248
|
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<{
|
|
3249
|
+
namespace: z.ZodString;
|
|
3250
|
+
chart: z.ZodString;
|
|
3251
|
+
status: z.ZodString;
|
|
3252
|
+
version_current: z.ZodString;
|
|
3253
|
+
created_at: z.ZodString;
|
|
3254
|
+
updated_at: z.ZodString;
|
|
3255
|
+
ready: z.ZodBoolean;
|
|
3256
|
+
}, z.core.$strip>>;
|
|
3257
|
+
export declare const zCreateChartBody: z.ZodObject<{
|
|
3258
|
+
values: z.ZodString;
|
|
3259
|
+
version_channel: z.ZodString;
|
|
3221
3260
|
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>;
|
|
3261
|
+
namespace: z.ZodString;
|
|
3262
|
+
chart: z.ZodString;
|
|
3254
3263
|
}, z.core.$strip>;
|
|
3255
|
-
export declare const
|
|
3264
|
+
export declare const zCreateChartPath: z.ZodObject<{
|
|
3256
3265
|
cluster_id: z.ZodString;
|
|
3257
3266
|
}, z.core.$strip>;
|
|
3258
3267
|
/**
|
|
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.
|
|
3268
|
+
* Successfully created. Returns created Chart ID.
|
|
3320
3269
|
*/
|
|
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<{
|
|
3270
|
+
export declare const zCreateChartResponse: z.ZodString;
|
|
3271
|
+
export declare const zDeleteChartPath: z.ZodObject<{
|
|
3272
|
+
cluster_id: z.ZodString;
|
|
3343
3273
|
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
3274
|
}, 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;
|
|
3275
|
+
/**
|
|
3276
|
+
* Successfully deleted.
|
|
3277
|
+
*/
|
|
3278
|
+
export declare const zDeleteChartResponse: z.ZodString;
|
|
3279
|
+
export declare const zGetChartPath: z.ZodObject<{
|
|
3280
|
+
cluster_id: z.ZodString;
|
|
3281
|
+
chart_name: z.ZodString;
|
|
3420
3282
|
}, z.core.$strip>;
|
|
3421
3283
|
/**
|
|
3422
|
-
*
|
|
3284
|
+
* Returns a single object containing chart details.
|
|
3423
3285
|
*/
|
|
3424
|
-
export declare const
|
|
3286
|
+
export declare const zGetChartResponse: z.ZodObject<{
|
|
3287
|
+
values: z.ZodString;
|
|
3288
|
+
version_channel: z.ZodString;
|
|
3425
3289
|
name: z.ZodString;
|
|
3426
|
-
|
|
3427
|
-
|
|
3428
|
-
|
|
3429
|
-
|
|
3430
|
-
|
|
3431
|
-
|
|
3432
|
-
|
|
3433
|
-
}, z.core.$strip>>;
|
|
3434
|
-
totalSize: z.ZodNumber;
|
|
3290
|
+
namespace: z.ZodString;
|
|
3291
|
+
chart: z.ZodString;
|
|
3292
|
+
status: z.ZodString;
|
|
3293
|
+
version_current: z.ZodString;
|
|
3294
|
+
created_at: z.ZodString;
|
|
3295
|
+
updated_at: z.ZodString;
|
|
3296
|
+
ready: z.ZodBoolean;
|
|
3435
3297
|
}, z.core.$strip>;
|
|
3436
|
-
export declare const
|
|
3437
|
-
|
|
3438
|
-
|
|
3439
|
-
tag: z.ZodString;
|
|
3298
|
+
export declare const zUpdateChartBody: z.ZodObject<{
|
|
3299
|
+
values: z.ZodString;
|
|
3300
|
+
version_channel: z.ZodString;
|
|
3440
3301
|
}, z.core.$strip>;
|
|
3441
|
-
export declare const
|
|
3442
|
-
|
|
3443
|
-
|
|
3444
|
-
tag: z.ZodString;
|
|
3302
|
+
export declare const zUpdateChartPath: z.ZodObject<{
|
|
3303
|
+
cluster_id: z.ZodString;
|
|
3304
|
+
chart_name: z.ZodString;
|
|
3445
3305
|
}, z.core.$strip>;
|
|
3446
3306
|
/**
|
|
3447
|
-
*
|
|
3307
|
+
* Successfully updated.
|
|
3448
3308
|
*/
|
|
3449
|
-
export declare const
|
|
3309
|
+
export declare const zUpdateChartResponse: z.ZodString;
|
|
3310
|
+
/**
|
|
3311
|
+
* An array of clusters
|
|
3312
|
+
*/
|
|
3313
|
+
export declare const zListClustersResponse: z.ZodArray<z.ZodObject<{
|
|
3450
3314
|
name: z.ZodString;
|
|
3451
|
-
|
|
3452
|
-
|
|
3453
|
-
|
|
3454
|
-
|
|
3315
|
+
tier: z.ZodDefault<z.ZodEnum<{
|
|
3316
|
+
basic: "basic";
|
|
3317
|
+
enterprise: "enterprise";
|
|
3318
|
+
pro: "pro";
|
|
3319
|
+
}>>;
|
|
3320
|
+
version_channel: z.ZodDefault<z.ZodString>;
|
|
3321
|
+
release_channel: z.ZodDefault<z.ZodEnum<{
|
|
3322
|
+
stable: "stable";
|
|
3323
|
+
rapid: "rapid";
|
|
3324
|
+
extended: "extended";
|
|
3325
|
+
}>>;
|
|
3326
|
+
features: z.ZodDefault<z.ZodObject<{
|
|
3327
|
+
gpu_sharing_strategy: z.ZodDefault<z.ZodEnum<{
|
|
3328
|
+
none: "none";
|
|
3329
|
+
mps: "mps";
|
|
3330
|
+
time_slicing: "time_slicing";
|
|
3331
|
+
}>>;
|
|
3332
|
+
gpu_max_shared_clients_per_gpu: z.ZodDefault<z.ZodInt>;
|
|
3333
|
+
cilium_socket_lb_host_namespace_only: z.ZodBoolean;
|
|
3455
3334
|
}, z.core.$strip>>;
|
|
3456
|
-
|
|
3457
|
-
|
|
3458
|
-
|
|
3459
|
-
|
|
3460
|
-
|
|
3461
|
-
|
|
3462
|
-
|
|
3463
|
-
|
|
3464
|
-
|
|
3465
|
-
|
|
3466
|
-
|
|
3467
|
-
|
|
3468
|
-
|
|
3469
|
-
|
|
3470
|
-
|
|
3471
|
-
|
|
3335
|
+
region: z.ZodString;
|
|
3336
|
+
networking: z.ZodDefault<z.ZodObject<{
|
|
3337
|
+
pod_cidr: z.ZodDefault<z.ZodString>;
|
|
3338
|
+
service_cidr: z.ZodDefault<z.ZodString>;
|
|
3339
|
+
dual_stack: z.ZodBoolean;
|
|
3340
|
+
pod_cidr_v6: z.ZodDefault<z.ZodString>;
|
|
3341
|
+
service_cidr_v6: z.ZodDefault<z.ZodString>;
|
|
3342
|
+
}, z.core.$strip>>;
|
|
3343
|
+
id: z.ZodUUID;
|
|
3344
|
+
status: z.ZodEnum<{
|
|
3345
|
+
disabled: "disabled";
|
|
3346
|
+
creating: "creating";
|
|
3347
|
+
deployed: "deployed";
|
|
3348
|
+
updating: "updating";
|
|
3349
|
+
}>;
|
|
3350
|
+
endpoint: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
|
|
3351
|
+
"": "";
|
|
3352
|
+
}>]>>;
|
|
3353
|
+
endpoint_public: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
|
|
3354
|
+
"": "";
|
|
3355
|
+
}>]>>;
|
|
3356
|
+
certificate_ca: z.ZodOptional<z.ZodString>;
|
|
3357
|
+
version_current: z.ZodOptional<z.ZodString>;
|
|
3358
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
3359
|
+
updated_at: z.ZodOptional<z.ZodString>;
|
|
3360
|
+
ready: z.ZodBoolean;
|
|
3361
|
+
}, z.core.$strip>>;
|
|
3362
|
+
export declare const zCreateClusterBody: z.ZodObject<{
|
|
3363
|
+
name: z.ZodString;
|
|
3364
|
+
tier: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
3365
|
+
basic: "basic";
|
|
3366
|
+
enterprise: "enterprise";
|
|
3367
|
+
pro: "pro";
|
|
3368
|
+
}>>>;
|
|
3369
|
+
version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
3370
|
+
release_channel: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
3371
|
+
stable: "stable";
|
|
3372
|
+
rapid: "rapid";
|
|
3373
|
+
extended: "extended";
|
|
3374
|
+
}>>>;
|
|
3375
|
+
features: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
3376
|
+
gpu_sharing_strategy: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
3377
|
+
none: "none";
|
|
3378
|
+
mps: "mps";
|
|
3379
|
+
time_slicing: "time_slicing";
|
|
3380
|
+
}>>>;
|
|
3381
|
+
gpu_max_shared_clients_per_gpu: z.ZodDefault<z.ZodOptional<z.ZodInt>>;
|
|
3382
|
+
cilium_socket_lb_host_namespace_only: z.ZodOptional<z.ZodBoolean>;
|
|
3472
3383
|
}, z.core.$strip>>>;
|
|
3473
|
-
size: z.ZodNumber;
|
|
3474
3384
|
region: z.ZodString;
|
|
3475
|
-
|
|
3476
|
-
|
|
3385
|
+
networking: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
3386
|
+
pod_cidr: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
3387
|
+
service_cidr: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
3388
|
+
dual_stack: z.ZodOptional<z.ZodBoolean>;
|
|
3389
|
+
pod_cidr_v6: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
3390
|
+
service_cidr_v6: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
3391
|
+
}, z.core.$strip>>>;
|
|
3477
3392
|
}, z.core.$strip>;
|
|
3478
3393
|
/**
|
|
3479
|
-
*
|
|
3394
|
+
* Successfully created. Returns created Cluster ID.
|
|
3480
3395
|
*/
|
|
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>>;
|
|
3396
|
+
export declare const zCreateClusterResponse: z.ZodString;
|
|
3397
|
+
export declare const zDeleteClusterPath: z.ZodObject<{
|
|
3398
|
+
cluster_id: z.ZodString;
|
|
3516
3399
|
}, z.core.$strip>;
|
|
3517
|
-
|
|
3518
|
-
|
|
3519
|
-
|
|
3400
|
+
/**
|
|
3401
|
+
* Successfully deleted. The cluster has been torn down.
|
|
3402
|
+
*/
|
|
3403
|
+
export declare const zDeleteClusterResponse: z.ZodString;
|
|
3404
|
+
export declare const zGetClusterPath: z.ZodObject<{
|
|
3405
|
+
cluster_id: z.ZodString;
|
|
3520
3406
|
}, z.core.$strip>;
|
|
3521
3407
|
/**
|
|
3522
|
-
*
|
|
3408
|
+
* Returns a single object containing cluster details.
|
|
3523
3409
|
*/
|
|
3524
|
-
export declare const
|
|
3525
|
-
|
|
3410
|
+
export declare const zGetClusterResponse: z.ZodObject<{
|
|
3411
|
+
name: z.ZodString;
|
|
3412
|
+
tier: z.ZodDefault<z.ZodEnum<{
|
|
3413
|
+
basic: "basic";
|
|
3414
|
+
enterprise: "enterprise";
|
|
3415
|
+
pro: "pro";
|
|
3416
|
+
}>>;
|
|
3417
|
+
version_channel: z.ZodDefault<z.ZodString>;
|
|
3418
|
+
release_channel: z.ZodDefault<z.ZodEnum<{
|
|
3419
|
+
stable: "stable";
|
|
3420
|
+
rapid: "rapid";
|
|
3421
|
+
extended: "extended";
|
|
3422
|
+
}>>;
|
|
3423
|
+
features: z.ZodDefault<z.ZodObject<{
|
|
3424
|
+
gpu_sharing_strategy: z.ZodDefault<z.ZodEnum<{
|
|
3425
|
+
none: "none";
|
|
3426
|
+
mps: "mps";
|
|
3427
|
+
time_slicing: "time_slicing";
|
|
3428
|
+
}>>;
|
|
3429
|
+
gpu_max_shared_clients_per_gpu: z.ZodDefault<z.ZodInt>;
|
|
3430
|
+
cilium_socket_lb_host_namespace_only: z.ZodBoolean;
|
|
3431
|
+
}, z.core.$strip>>;
|
|
3432
|
+
region: z.ZodString;
|
|
3433
|
+
networking: z.ZodDefault<z.ZodObject<{
|
|
3434
|
+
pod_cidr: z.ZodDefault<z.ZodString>;
|
|
3435
|
+
service_cidr: z.ZodDefault<z.ZodString>;
|
|
3436
|
+
dual_stack: z.ZodBoolean;
|
|
3437
|
+
pod_cidr_v6: z.ZodDefault<z.ZodString>;
|
|
3438
|
+
service_cidr_v6: z.ZodDefault<z.ZodString>;
|
|
3439
|
+
}, z.core.$strip>>;
|
|
3440
|
+
id: z.ZodUUID;
|
|
3526
3441
|
status: z.ZodEnum<{
|
|
3527
|
-
|
|
3528
|
-
|
|
3529
|
-
|
|
3530
|
-
|
|
3531
|
-
category: z.ZodEnum<{
|
|
3532
|
-
billing: "billing";
|
|
3533
|
-
technical: "technical";
|
|
3534
|
-
general: "general";
|
|
3442
|
+
disabled: "disabled";
|
|
3443
|
+
creating: "creating";
|
|
3444
|
+
deployed: "deployed";
|
|
3445
|
+
updating: "updating";
|
|
3535
3446
|
}>;
|
|
3536
|
-
|
|
3537
|
-
|
|
3538
|
-
|
|
3539
|
-
|
|
3540
|
-
|
|
3541
|
-
|
|
3542
|
-
|
|
3543
|
-
|
|
3544
|
-
|
|
3545
|
-
|
|
3546
|
-
|
|
3547
|
-
|
|
3548
|
-
|
|
3549
|
-
|
|
3550
|
-
|
|
3551
|
-
|
|
3552
|
-
|
|
3553
|
-
|
|
3554
|
-
|
|
3555
|
-
|
|
3447
|
+
endpoint: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
|
|
3448
|
+
"": "";
|
|
3449
|
+
}>]>>;
|
|
3450
|
+
endpoint_public: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
|
|
3451
|
+
"": "";
|
|
3452
|
+
}>]>>;
|
|
3453
|
+
certificate_ca: z.ZodOptional<z.ZodString>;
|
|
3454
|
+
version_current: z.ZodOptional<z.ZodString>;
|
|
3455
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
3456
|
+
updated_at: z.ZodOptional<z.ZodString>;
|
|
3457
|
+
ready: z.ZodBoolean;
|
|
3458
|
+
}, z.core.$strip>;
|
|
3459
|
+
export declare const zUpdateClusterBody: z.ZodObject<{
|
|
3460
|
+
name: z.ZodString;
|
|
3461
|
+
tier: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
3462
|
+
basic: "basic";
|
|
3463
|
+
enterprise: "enterprise";
|
|
3464
|
+
pro: "pro";
|
|
3465
|
+
}>>>;
|
|
3466
|
+
version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
3467
|
+
release_channel: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
3468
|
+
stable: "stable";
|
|
3469
|
+
rapid: "rapid";
|
|
3470
|
+
extended: "extended";
|
|
3471
|
+
}>>>;
|
|
3472
|
+
features: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
3473
|
+
gpu_sharing_strategy: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
3474
|
+
none: "none";
|
|
3475
|
+
mps: "mps";
|
|
3476
|
+
time_slicing: "time_slicing";
|
|
3477
|
+
}>>>;
|
|
3478
|
+
gpu_max_shared_clients_per_gpu: z.ZodDefault<z.ZodOptional<z.ZodInt>>;
|
|
3479
|
+
cilium_socket_lb_host_namespace_only: z.ZodOptional<z.ZodBoolean>;
|
|
3556
3480
|
}, z.core.$strip>>>;
|
|
3557
3481
|
}, z.core.$strip>;
|
|
3558
|
-
export declare const
|
|
3559
|
-
|
|
3482
|
+
export declare const zUpdateClusterPath: z.ZodObject<{
|
|
3483
|
+
cluster_id: z.ZodString;
|
|
3560
3484
|
}, z.core.$strip>;
|
|
3561
3485
|
/**
|
|
3562
|
-
*
|
|
3486
|
+
* Successfully updated. Returns updated cluster details.
|
|
3563
3487
|
*/
|
|
3564
|
-
export declare const
|
|
3565
|
-
|
|
3488
|
+
export declare const zUpdateClusterResponse: z.ZodObject<{
|
|
3489
|
+
name: z.ZodString;
|
|
3490
|
+
tier: z.ZodDefault<z.ZodEnum<{
|
|
3491
|
+
basic: "basic";
|
|
3492
|
+
enterprise: "enterprise";
|
|
3493
|
+
pro: "pro";
|
|
3494
|
+
}>>;
|
|
3495
|
+
version_channel: z.ZodDefault<z.ZodString>;
|
|
3496
|
+
release_channel: z.ZodDefault<z.ZodEnum<{
|
|
3497
|
+
stable: "stable";
|
|
3498
|
+
rapid: "rapid";
|
|
3499
|
+
extended: "extended";
|
|
3500
|
+
}>>;
|
|
3501
|
+
features: z.ZodDefault<z.ZodObject<{
|
|
3502
|
+
gpu_sharing_strategy: z.ZodDefault<z.ZodEnum<{
|
|
3503
|
+
none: "none";
|
|
3504
|
+
mps: "mps";
|
|
3505
|
+
time_slicing: "time_slicing";
|
|
3506
|
+
}>>;
|
|
3507
|
+
gpu_max_shared_clients_per_gpu: z.ZodDefault<z.ZodInt>;
|
|
3508
|
+
cilium_socket_lb_host_namespace_only: z.ZodBoolean;
|
|
3509
|
+
}, z.core.$strip>>;
|
|
3510
|
+
region: z.ZodString;
|
|
3511
|
+
networking: z.ZodDefault<z.ZodObject<{
|
|
3512
|
+
pod_cidr: z.ZodDefault<z.ZodString>;
|
|
3513
|
+
service_cidr: z.ZodDefault<z.ZodString>;
|
|
3514
|
+
dual_stack: z.ZodBoolean;
|
|
3515
|
+
pod_cidr_v6: z.ZodDefault<z.ZodString>;
|
|
3516
|
+
service_cidr_v6: z.ZodDefault<z.ZodString>;
|
|
3517
|
+
}, z.core.$strip>>;
|
|
3518
|
+
id: z.ZodUUID;
|
|
3566
3519
|
status: z.ZodEnum<{
|
|
3567
|
-
|
|
3568
|
-
|
|
3569
|
-
|
|
3570
|
-
|
|
3571
|
-
category: z.ZodEnum<{
|
|
3572
|
-
billing: "billing";
|
|
3573
|
-
technical: "technical";
|
|
3574
|
-
general: "general";
|
|
3520
|
+
disabled: "disabled";
|
|
3521
|
+
creating: "creating";
|
|
3522
|
+
deployed: "deployed";
|
|
3523
|
+
updating: "updating";
|
|
3575
3524
|
}>;
|
|
3576
|
-
|
|
3577
|
-
|
|
3578
|
-
|
|
3579
|
-
|
|
3580
|
-
|
|
3581
|
-
|
|
3582
|
-
|
|
3583
|
-
|
|
3584
|
-
|
|
3585
|
-
|
|
3586
|
-
|
|
3587
|
-
|
|
3588
|
-
|
|
3589
|
-
|
|
3590
|
-
|
|
3591
|
-
|
|
3592
|
-
|
|
3593
|
-
|
|
3594
|
-
|
|
3595
|
-
|
|
3596
|
-
|
|
3525
|
+
endpoint: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
|
|
3526
|
+
"": "";
|
|
3527
|
+
}>]>>;
|
|
3528
|
+
endpoint_public: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
|
|
3529
|
+
"": "";
|
|
3530
|
+
}>]>>;
|
|
3531
|
+
certificate_ca: z.ZodOptional<z.ZodString>;
|
|
3532
|
+
version_current: z.ZodOptional<z.ZodString>;
|
|
3533
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
3534
|
+
updated_at: z.ZodOptional<z.ZodString>;
|
|
3535
|
+
ready: z.ZodBoolean;
|
|
3536
|
+
}, z.core.$strip>;
|
|
3537
|
+
export declare const zGetJoinInformationPath: z.ZodObject<{
|
|
3538
|
+
cluster_id: z.ZodString;
|
|
3539
|
+
}, z.core.$strip>;
|
|
3540
|
+
/**
|
|
3541
|
+
* An object of cluster join information
|
|
3542
|
+
*/
|
|
3543
|
+
export declare const zGetJoinInformationResponse: z.ZodObject<{
|
|
3544
|
+
certificate_authority: z.ZodString;
|
|
3545
|
+
endpoint: z.ZodURL;
|
|
3546
|
+
cluster_dns: z.ZodString;
|
|
3547
|
+
pod_cidr: z.ZodString;
|
|
3548
|
+
auth_key: z.ZodString;
|
|
3549
|
+
bootstrap_token: z.ZodString;
|
|
3550
|
+
versions: z.ZodObject<{
|
|
3551
|
+
kubernetes: z.ZodString;
|
|
3552
|
+
tailscale: z.ZodString;
|
|
3553
|
+
containerd: z.ZodString;
|
|
3554
|
+
nvidia_driver: z.ZodString;
|
|
3555
|
+
}, z.core.$strip>;
|
|
3556
|
+
third_party_api_access_config: z.ZodObject<{
|
|
3557
|
+
metadata_url: z.ZodString;
|
|
3558
|
+
aws_role_arn: z.ZodString;
|
|
3559
|
+
gcp_workload_identity_provider: z.ZodString;
|
|
3560
|
+
}, z.core.$strip>;
|
|
3597
3561
|
}, z.core.$strip>;
|
|
3598
|
-
export declare const
|
|
3599
|
-
|
|
3562
|
+
export declare const zGetUsageQuery: z.ZodObject<{
|
|
3563
|
+
granularity: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
3564
|
+
hourly: "hourly";
|
|
3565
|
+
daily: "daily";
|
|
3566
|
+
monthly: "monthly";
|
|
3567
|
+
}>>>;
|
|
3600
3568
|
}, z.core.$strip>;
|
|
3601
3569
|
/**
|
|
3602
|
-
*
|
|
3570
|
+
* Usage data with facets for filtering
|
|
3603
3571
|
*/
|
|
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";
|
|
3572
|
+
export declare const zGetUsageResponse: z.ZodObject<{
|
|
3573
|
+
data: z.ZodArray<z.ZodObject<{
|
|
3574
|
+
hour: z.ZodString;
|
|
3575
|
+
cluster_id: z.ZodString;
|
|
3576
|
+
product: z.ZodEnum<{
|
|
3577
|
+
cfke_controlplane_basic: "cfke_controlplane_basic";
|
|
3578
|
+
cfke_controlplane_pro: "cfke_controlplane_pro";
|
|
3579
|
+
cfke_controlplane_enterprise: "cfke_controlplane_enterprise";
|
|
3580
|
+
cfke_connected_nodes_basic: "cfke_connected_nodes_basic";
|
|
3581
|
+
cfke_connected_nodes_pro: "cfke_connected_nodes_pro";
|
|
3582
|
+
cfke_connected_nodes_enterprise: "cfke_connected_nodes_enterprise";
|
|
3583
|
+
cfcr_storage: "cfcr_storage";
|
|
3625
3584
|
}>;
|
|
3626
|
-
|
|
3627
|
-
|
|
3628
|
-
|
|
3629
|
-
|
|
3630
|
-
|
|
3631
|
-
|
|
3632
|
-
|
|
3633
|
-
|
|
3634
|
-
|
|
3635
|
-
|
|
3636
|
-
|
|
3637
|
-
|
|
3638
|
-
|
|
3639
|
-
|
|
3640
|
-
|
|
3585
|
+
value: z.ZodNumber;
|
|
3586
|
+
price: z.ZodNumber;
|
|
3587
|
+
total: z.ZodNumber;
|
|
3588
|
+
}, z.core.$strip>>;
|
|
3589
|
+
facets: z.ZodObject<{
|
|
3590
|
+
cluster_id: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3591
|
+
product: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
3592
|
+
cfke_controlplane_basic: "cfke_controlplane_basic";
|
|
3593
|
+
cfke_controlplane_pro: "cfke_controlplane_pro";
|
|
3594
|
+
cfke_controlplane_enterprise: "cfke_controlplane_enterprise";
|
|
3595
|
+
cfke_connected_nodes_basic: "cfke_connected_nodes_basic";
|
|
3596
|
+
cfke_connected_nodes_pro: "cfke_connected_nodes_pro";
|
|
3597
|
+
cfke_connected_nodes_enterprise: "cfke_connected_nodes_enterprise";
|
|
3598
|
+
cfcr_storage: "cfcr_storage";
|
|
3599
|
+
}>>>;
|
|
3600
|
+
}, z.core.$strip>;
|
|
3641
3601
|
}, z.core.$strip>;
|
|
3642
|
-
|
|
3643
|
-
|
|
3602
|
+
/**
|
|
3603
|
+
* 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.
|
|
3604
|
+
*
|
|
3605
|
+
*/
|
|
3606
|
+
export declare const zGetPaymentMethodSecretResponse: z.ZodObject<{
|
|
3607
|
+
id: z.ZodOptional<z.ZodString>;
|
|
3644
3608
|
}, z.core.$strip>;
|
|
3645
3609
|
/**
|
|
3646
|
-
*
|
|
3610
|
+
* An array of payment methods.
|
|
3647
3611
|
*/
|
|
3648
|
-
export declare const
|
|
3612
|
+
export declare const zListPaymentMethodsResponse: z.ZodArray<z.ZodObject<{
|
|
3649
3613
|
id: z.ZodString;
|
|
3650
3614
|
type: z.ZodEnum<{
|
|
3651
|
-
|
|
3652
|
-
|
|
3615
|
+
card: "card";
|
|
3616
|
+
sepa_debit: "sepa_debit";
|
|
3617
|
+
bank_transfer: "bank_transfer";
|
|
3653
3618
|
}>;
|
|
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;
|
|
3619
|
+
last4: z.ZodString;
|
|
3620
|
+
exp_month: z.ZodInt;
|
|
3621
|
+
exp_year: z.ZodInt;
|
|
3622
|
+
brand: z.ZodString;
|
|
3623
|
+
iban: z.ZodString;
|
|
3624
|
+
bic: z.ZodString;
|
|
3625
|
+
account_holder_name: z.ZodString;
|
|
3626
|
+
is_default: z.ZodBoolean;
|
|
3627
|
+
}, z.core.$strip>>;
|
|
3628
|
+
export declare const zSetDefaultPaymentMethodPath: z.ZodObject<{
|
|
3629
|
+
paymentMethodId: z.ZodString;
|
|
3668
3630
|
}, z.core.$strip>;
|
|
3669
3631
|
/**
|
|
3670
|
-
*
|
|
3632
|
+
* Default payment method updated.
|
|
3671
3633
|
*/
|
|
3672
|
-
export declare const
|
|
3634
|
+
export declare const zSetDefaultPaymentMethodResponse: z.ZodVoid;
|
|
3635
|
+
export declare const zDeletePaymentMethodPath: z.ZodObject<{
|
|
3636
|
+
paymentMethodId: z.ZodString;
|
|
3637
|
+
}, z.core.$strip>;
|
|
3673
3638
|
/**
|
|
3674
|
-
*
|
|
3639
|
+
* Payment method deleted.
|
|
3675
3640
|
*/
|
|
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>;
|
|
3641
|
+
export declare const zDeletePaymentMethodResponse: z.ZodVoid;
|
|
3693
3642
|
/**
|
|
3694
|
-
*
|
|
3643
|
+
* An array of usage records.
|
|
3695
3644
|
*/
|
|
3696
|
-
export declare const
|
|
3697
|
-
name: z.ZodString;
|
|
3698
|
-
role: z.ZodEnum<{
|
|
3699
|
-
Administrator: "Administrator";
|
|
3700
|
-
User: "User";
|
|
3701
|
-
}>;
|
|
3645
|
+
export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
3702
3646
|
id: z.ZodOptional<z.ZodString>;
|
|
3703
|
-
|
|
3704
|
-
|
|
3705
|
-
|
|
3706
|
-
|
|
3707
|
-
|
|
3708
|
-
|
|
3709
|
-
|
|
3710
|
-
|
|
3711
|
-
}, z.core.$strip
|
|
3647
|
+
number: z.ZodOptional<z.ZodString>;
|
|
3648
|
+
status: z.ZodOptional<z.ZodString>;
|
|
3649
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
3650
|
+
currency: z.ZodOptional<z.ZodString>;
|
|
3651
|
+
created: z.ZodISODateTime;
|
|
3652
|
+
period_start: z.ZodISODateTime;
|
|
3653
|
+
period_end: z.ZodISODateTime;
|
|
3654
|
+
invoice_pdf: z.ZodOptional<z.ZodString>;
|
|
3655
|
+
}, z.core.$strip>>;
|
|
3712
3656
|
/**
|
|
3713
|
-
* Returns
|
|
3657
|
+
* Returns a single object containing organization contact and billing address details.
|
|
3714
3658
|
*/
|
|
3715
|
-
export declare const
|
|
3716
|
-
|
|
3717
|
-
|
|
3718
|
-
|
|
3719
|
-
User: "User";
|
|
3659
|
+
export declare const zGetContactResponse: z.ZodObject<{
|
|
3660
|
+
type: z.ZodEnum<{
|
|
3661
|
+
business: "business";
|
|
3662
|
+
personal: "personal";
|
|
3720
3663
|
}>;
|
|
3721
|
-
|
|
3722
|
-
|
|
3723
|
-
|
|
3724
|
-
|
|
3725
|
-
|
|
3726
|
-
|
|
3727
|
-
|
|
3728
|
-
|
|
3729
|
-
|
|
3664
|
+
company: z.ZodOptional<z.ZodString>;
|
|
3665
|
+
address1: z.ZodOptional<z.ZodString>;
|
|
3666
|
+
address2: z.ZodOptional<z.ZodString>;
|
|
3667
|
+
postalCode: z.ZodOptional<z.ZodString>;
|
|
3668
|
+
city: z.ZodOptional<z.ZodString>;
|
|
3669
|
+
state: z.ZodOptional<z.ZodString>;
|
|
3670
|
+
country: z.ZodOptional<z.ZodString>;
|
|
3671
|
+
phone: z.ZodOptional<z.ZodString>;
|
|
3672
|
+
email: z.ZodEmail;
|
|
3673
|
+
individual_name: z.ZodString;
|
|
3674
|
+
tax_id: z.ZodOptional<z.ZodString>;
|
|
3675
|
+
tax_id_type: z.ZodOptional<z.ZodEnum<{
|
|
3676
|
+
"": "";
|
|
3677
|
+
ad_nrt: "ad_nrt";
|
|
3678
|
+
ae_trn: "ae_trn";
|
|
3679
|
+
al_tin: "al_tin";
|
|
3680
|
+
am_tin: "am_tin";
|
|
3681
|
+
ao_tin: "ao_tin";
|
|
3682
|
+
ar_cuit: "ar_cuit";
|
|
3683
|
+
at_vat: "at_vat";
|
|
3684
|
+
au_abn: "au_abn";
|
|
3685
|
+
au_arn: "au_arn";
|
|
3686
|
+
ba_tin: "ba_tin";
|
|
3687
|
+
bb_tin: "bb_tin";
|
|
3688
|
+
be_vat: "be_vat";
|
|
3689
|
+
bg_uic: "bg_uic";
|
|
3690
|
+
bg_vat: "bg_vat";
|
|
3691
|
+
bh_vat: "bh_vat";
|
|
3692
|
+
bo_tin: "bo_tin";
|
|
3693
|
+
br_cnpj: "br_cnpj";
|
|
3694
|
+
br_cpf: "br_cpf";
|
|
3695
|
+
bs_tin: "bs_tin";
|
|
3696
|
+
by_tin: "by_tin";
|
|
3697
|
+
ca_bn: "ca_bn";
|
|
3698
|
+
ca_gst_hst: "ca_gst_hst";
|
|
3699
|
+
ca_pst_bc: "ca_pst_bc";
|
|
3700
|
+
ca_pst_mb: "ca_pst_mb";
|
|
3701
|
+
ca_pst_sk: "ca_pst_sk";
|
|
3702
|
+
ca_qst: "ca_qst";
|
|
3703
|
+
cd_nif: "cd_nif";
|
|
3704
|
+
ch_uid: "ch_uid";
|
|
3705
|
+
ch_vat: "ch_vat";
|
|
3706
|
+
cl_tin: "cl_tin";
|
|
3707
|
+
cn_tin: "cn_tin";
|
|
3708
|
+
co_nit: "co_nit";
|
|
3709
|
+
cr_tin: "cr_tin";
|
|
3710
|
+
cy_vat: "cy_vat";
|
|
3711
|
+
cz_vat: "cz_vat";
|
|
3712
|
+
de_stn: "de_stn";
|
|
3713
|
+
de_vat: "de_vat";
|
|
3714
|
+
dk_vat: "dk_vat";
|
|
3715
|
+
do_rcn: "do_rcn";
|
|
3716
|
+
ec_ruc: "ec_ruc";
|
|
3717
|
+
ee_vat: "ee_vat";
|
|
3718
|
+
eg_tin: "eg_tin";
|
|
3719
|
+
es_cif: "es_cif";
|
|
3720
|
+
es_vat: "es_vat";
|
|
3721
|
+
eu_oss_vat: "eu_oss_vat";
|
|
3722
|
+
fi_vat: "fi_vat";
|
|
3723
|
+
fr_vat: "fr_vat";
|
|
3724
|
+
gb_vat: "gb_vat";
|
|
3725
|
+
ge_vat: "ge_vat";
|
|
3726
|
+
gn_nif: "gn_nif";
|
|
3727
|
+
gr_vat: "gr_vat";
|
|
3728
|
+
hk_br: "hk_br";
|
|
3729
|
+
hr_oib: "hr_oib";
|
|
3730
|
+
hr_vat: "hr_vat";
|
|
3731
|
+
hu_tin: "hu_tin";
|
|
3732
|
+
hu_vat: "hu_vat";
|
|
3733
|
+
id_npwp: "id_npwp";
|
|
3734
|
+
ie_vat: "ie_vat";
|
|
3735
|
+
il_vat: "il_vat";
|
|
3736
|
+
in_gst: "in_gst";
|
|
3737
|
+
is_vat: "is_vat";
|
|
3738
|
+
it_vat: "it_vat";
|
|
3739
|
+
jp_cn: "jp_cn";
|
|
3740
|
+
jp_rn: "jp_rn";
|
|
3741
|
+
jp_trn: "jp_trn";
|
|
3742
|
+
ke_pin: "ke_pin";
|
|
3743
|
+
kh_tin: "kh_tin";
|
|
3744
|
+
kr_brn: "kr_brn";
|
|
3745
|
+
kz_bin: "kz_bin";
|
|
3746
|
+
li_uid: "li_uid";
|
|
3747
|
+
li_vat: "li_vat";
|
|
3748
|
+
lt_vat: "lt_vat";
|
|
3749
|
+
lu_vat: "lu_vat";
|
|
3750
|
+
lv_vat: "lv_vat";
|
|
3751
|
+
ma_vat: "ma_vat";
|
|
3752
|
+
md_vat: "md_vat";
|
|
3753
|
+
me_pib: "me_pib";
|
|
3754
|
+
mk_vat: "mk_vat";
|
|
3755
|
+
mr_nif: "mr_nif";
|
|
3756
|
+
mt_vat: "mt_vat";
|
|
3757
|
+
mx_rfc: "mx_rfc";
|
|
3758
|
+
my_frp: "my_frp";
|
|
3759
|
+
my_itn: "my_itn";
|
|
3760
|
+
my_sst: "my_sst";
|
|
3761
|
+
ng_tin: "ng_tin";
|
|
3762
|
+
nl_vat: "nl_vat";
|
|
3763
|
+
no_vat: "no_vat";
|
|
3764
|
+
no_voec: "no_voec";
|
|
3765
|
+
np_pan: "np_pan";
|
|
3766
|
+
nz_gst: "nz_gst";
|
|
3767
|
+
om_vat: "om_vat";
|
|
3768
|
+
pe_ruc: "pe_ruc";
|
|
3769
|
+
ph_tin: "ph_tin";
|
|
3770
|
+
pl_vat: "pl_vat";
|
|
3771
|
+
pt_vat: "pt_vat";
|
|
3772
|
+
ro_tin: "ro_tin";
|
|
3773
|
+
ro_vat: "ro_vat";
|
|
3774
|
+
rs_pib: "rs_pib";
|
|
3775
|
+
ru_inn: "ru_inn";
|
|
3776
|
+
ru_kpp: "ru_kpp";
|
|
3777
|
+
sa_vat: "sa_vat";
|
|
3778
|
+
se_vat: "se_vat";
|
|
3779
|
+
sg_gst: "sg_gst";
|
|
3780
|
+
sg_uen: "sg_uen";
|
|
3781
|
+
si_tin: "si_tin";
|
|
3782
|
+
si_vat: "si_vat";
|
|
3783
|
+
sk_vat: "sk_vat";
|
|
3784
|
+
sn_ninea: "sn_ninea";
|
|
3785
|
+
sr_fin: "sr_fin";
|
|
3786
|
+
sv_nit: "sv_nit";
|
|
3787
|
+
th_vat: "th_vat";
|
|
3788
|
+
tj_tin: "tj_tin";
|
|
3789
|
+
tr_tin: "tr_tin";
|
|
3790
|
+
tw_vat: "tw_vat";
|
|
3791
|
+
tz_vat: "tz_vat";
|
|
3792
|
+
ua_vat: "ua_vat";
|
|
3793
|
+
ug_tin: "ug_tin";
|
|
3794
|
+
us_ein: "us_ein";
|
|
3795
|
+
uy_ruc: "uy_ruc";
|
|
3796
|
+
uz_tin: "uz_tin";
|
|
3797
|
+
uz_vat: "uz_vat";
|
|
3798
|
+
ve_rif: "ve_rif";
|
|
3799
|
+
vn_tin: "vn_tin";
|
|
3800
|
+
xi_vat: "xi_vat";
|
|
3801
|
+
za_vat: "za_vat";
|
|
3802
|
+
zm_tin: "zm_tin";
|
|
3803
|
+
zw_tin: "zw_tin";
|
|
3730
3804
|
}>>;
|
|
3731
3805
|
}, 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";
|
|
3806
|
+
export declare const zUpdateContactBody: z.ZodObject<{
|
|
3807
|
+
type: z.ZodEnum<{
|
|
3808
|
+
business: "business";
|
|
3809
|
+
personal: "personal";
|
|
3788
3810
|
}>;
|
|
3789
|
-
|
|
3790
|
-
|
|
3791
|
-
|
|
3792
|
-
|
|
3811
|
+
company: z.ZodOptional<z.ZodString>;
|
|
3812
|
+
address1: z.ZodOptional<z.ZodString>;
|
|
3813
|
+
address2: z.ZodOptional<z.ZodString>;
|
|
3814
|
+
postalCode: z.ZodOptional<z.ZodString>;
|
|
3815
|
+
city: z.ZodOptional<z.ZodString>;
|
|
3816
|
+
state: z.ZodOptional<z.ZodString>;
|
|
3817
|
+
country: z.ZodOptional<z.ZodString>;
|
|
3818
|
+
phone: z.ZodOptional<z.ZodString>;
|
|
3793
3819
|
email: z.ZodEmail;
|
|
3794
|
-
|
|
3795
|
-
|
|
3796
|
-
|
|
3797
|
-
|
|
3798
|
-
|
|
3799
|
-
|
|
3800
|
-
|
|
3801
|
-
|
|
3802
|
-
|
|
3803
|
-
|
|
3804
|
-
|
|
3820
|
+
individual_name: z.ZodString;
|
|
3821
|
+
tax_id: z.ZodOptional<z.ZodString>;
|
|
3822
|
+
tax_id_type: z.ZodOptional<z.ZodEnum<{
|
|
3823
|
+
"": "";
|
|
3824
|
+
ad_nrt: "ad_nrt";
|
|
3825
|
+
ae_trn: "ae_trn";
|
|
3826
|
+
al_tin: "al_tin";
|
|
3827
|
+
am_tin: "am_tin";
|
|
3828
|
+
ao_tin: "ao_tin";
|
|
3829
|
+
ar_cuit: "ar_cuit";
|
|
3830
|
+
at_vat: "at_vat";
|
|
3831
|
+
au_abn: "au_abn";
|
|
3832
|
+
au_arn: "au_arn";
|
|
3833
|
+
ba_tin: "ba_tin";
|
|
3834
|
+
bb_tin: "bb_tin";
|
|
3835
|
+
be_vat: "be_vat";
|
|
3836
|
+
bg_uic: "bg_uic";
|
|
3837
|
+
bg_vat: "bg_vat";
|
|
3838
|
+
bh_vat: "bh_vat";
|
|
3839
|
+
bo_tin: "bo_tin";
|
|
3840
|
+
br_cnpj: "br_cnpj";
|
|
3841
|
+
br_cpf: "br_cpf";
|
|
3842
|
+
bs_tin: "bs_tin";
|
|
3843
|
+
by_tin: "by_tin";
|
|
3844
|
+
ca_bn: "ca_bn";
|
|
3845
|
+
ca_gst_hst: "ca_gst_hst";
|
|
3846
|
+
ca_pst_bc: "ca_pst_bc";
|
|
3847
|
+
ca_pst_mb: "ca_pst_mb";
|
|
3848
|
+
ca_pst_sk: "ca_pst_sk";
|
|
3849
|
+
ca_qst: "ca_qst";
|
|
3850
|
+
cd_nif: "cd_nif";
|
|
3851
|
+
ch_uid: "ch_uid";
|
|
3852
|
+
ch_vat: "ch_vat";
|
|
3853
|
+
cl_tin: "cl_tin";
|
|
3854
|
+
cn_tin: "cn_tin";
|
|
3855
|
+
co_nit: "co_nit";
|
|
3856
|
+
cr_tin: "cr_tin";
|
|
3857
|
+
cy_vat: "cy_vat";
|
|
3858
|
+
cz_vat: "cz_vat";
|
|
3859
|
+
de_stn: "de_stn";
|
|
3860
|
+
de_vat: "de_vat";
|
|
3861
|
+
dk_vat: "dk_vat";
|
|
3862
|
+
do_rcn: "do_rcn";
|
|
3863
|
+
ec_ruc: "ec_ruc";
|
|
3864
|
+
ee_vat: "ee_vat";
|
|
3865
|
+
eg_tin: "eg_tin";
|
|
3866
|
+
es_cif: "es_cif";
|
|
3867
|
+
es_vat: "es_vat";
|
|
3868
|
+
eu_oss_vat: "eu_oss_vat";
|
|
3869
|
+
fi_vat: "fi_vat";
|
|
3870
|
+
fr_vat: "fr_vat";
|
|
3871
|
+
gb_vat: "gb_vat";
|
|
3872
|
+
ge_vat: "ge_vat";
|
|
3873
|
+
gn_nif: "gn_nif";
|
|
3874
|
+
gr_vat: "gr_vat";
|
|
3875
|
+
hk_br: "hk_br";
|
|
3876
|
+
hr_oib: "hr_oib";
|
|
3877
|
+
hr_vat: "hr_vat";
|
|
3878
|
+
hu_tin: "hu_tin";
|
|
3879
|
+
hu_vat: "hu_vat";
|
|
3880
|
+
id_npwp: "id_npwp";
|
|
3881
|
+
ie_vat: "ie_vat";
|
|
3882
|
+
il_vat: "il_vat";
|
|
3883
|
+
in_gst: "in_gst";
|
|
3884
|
+
is_vat: "is_vat";
|
|
3885
|
+
it_vat: "it_vat";
|
|
3886
|
+
jp_cn: "jp_cn";
|
|
3887
|
+
jp_rn: "jp_rn";
|
|
3888
|
+
jp_trn: "jp_trn";
|
|
3889
|
+
ke_pin: "ke_pin";
|
|
3890
|
+
kh_tin: "kh_tin";
|
|
3891
|
+
kr_brn: "kr_brn";
|
|
3892
|
+
kz_bin: "kz_bin";
|
|
3893
|
+
li_uid: "li_uid";
|
|
3894
|
+
li_vat: "li_vat";
|
|
3895
|
+
lt_vat: "lt_vat";
|
|
3896
|
+
lu_vat: "lu_vat";
|
|
3897
|
+
lv_vat: "lv_vat";
|
|
3898
|
+
ma_vat: "ma_vat";
|
|
3899
|
+
md_vat: "md_vat";
|
|
3900
|
+
me_pib: "me_pib";
|
|
3901
|
+
mk_vat: "mk_vat";
|
|
3902
|
+
mr_nif: "mr_nif";
|
|
3903
|
+
mt_vat: "mt_vat";
|
|
3904
|
+
mx_rfc: "mx_rfc";
|
|
3905
|
+
my_frp: "my_frp";
|
|
3906
|
+
my_itn: "my_itn";
|
|
3907
|
+
my_sst: "my_sst";
|
|
3908
|
+
ng_tin: "ng_tin";
|
|
3909
|
+
nl_vat: "nl_vat";
|
|
3910
|
+
no_vat: "no_vat";
|
|
3911
|
+
no_voec: "no_voec";
|
|
3912
|
+
np_pan: "np_pan";
|
|
3913
|
+
nz_gst: "nz_gst";
|
|
3914
|
+
om_vat: "om_vat";
|
|
3915
|
+
pe_ruc: "pe_ruc";
|
|
3916
|
+
ph_tin: "ph_tin";
|
|
3917
|
+
pl_vat: "pl_vat";
|
|
3918
|
+
pt_vat: "pt_vat";
|
|
3919
|
+
ro_tin: "ro_tin";
|
|
3920
|
+
ro_vat: "ro_vat";
|
|
3921
|
+
rs_pib: "rs_pib";
|
|
3922
|
+
ru_inn: "ru_inn";
|
|
3923
|
+
ru_kpp: "ru_kpp";
|
|
3924
|
+
sa_vat: "sa_vat";
|
|
3925
|
+
se_vat: "se_vat";
|
|
3926
|
+
sg_gst: "sg_gst";
|
|
3927
|
+
sg_uen: "sg_uen";
|
|
3928
|
+
si_tin: "si_tin";
|
|
3929
|
+
si_vat: "si_vat";
|
|
3930
|
+
sk_vat: "sk_vat";
|
|
3931
|
+
sn_ninea: "sn_ninea";
|
|
3932
|
+
sr_fin: "sr_fin";
|
|
3933
|
+
sv_nit: "sv_nit";
|
|
3934
|
+
th_vat: "th_vat";
|
|
3935
|
+
tj_tin: "tj_tin";
|
|
3936
|
+
tr_tin: "tr_tin";
|
|
3937
|
+
tw_vat: "tw_vat";
|
|
3938
|
+
tz_vat: "tz_vat";
|
|
3939
|
+
ua_vat: "ua_vat";
|
|
3940
|
+
ug_tin: "ug_tin";
|
|
3941
|
+
us_ein: "us_ein";
|
|
3942
|
+
uy_ruc: "uy_ruc";
|
|
3943
|
+
uz_tin: "uz_tin";
|
|
3944
|
+
uz_vat: "uz_vat";
|
|
3945
|
+
ve_rif: "ve_rif";
|
|
3946
|
+
vn_tin: "vn_tin";
|
|
3947
|
+
xi_vat: "xi_vat";
|
|
3948
|
+
za_vat: "za_vat";
|
|
3949
|
+
zm_tin: "zm_tin";
|
|
3950
|
+
zw_tin: "zw_tin";
|
|
3805
3951
|
}>>;
|
|
3806
3952
|
}, z.core.$strip>;
|
|
3807
3953
|
/**
|
|
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
|
|
3954
|
+
* Successfully updated. Returns updated organization details.
|
|
3830
3955
|
*/
|
|
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";
|
|
3956
|
+
export declare const zUpdateContactResponse: z.ZodObject<{
|
|
3957
|
+
type: z.ZodEnum<{
|
|
3958
|
+
business: "business";
|
|
3959
|
+
personal: "personal";
|
|
3842
3960
|
}>;
|
|
3843
|
-
|
|
3844
|
-
|
|
3845
|
-
|
|
3846
|
-
|
|
3847
|
-
|
|
3848
|
-
|
|
3849
|
-
|
|
3850
|
-
|
|
3851
|
-
*/
|
|
3852
|
-
export declare const zGetUserResponse: z.ZodObject<{
|
|
3961
|
+
company: z.ZodOptional<z.ZodString>;
|
|
3962
|
+
address1: z.ZodOptional<z.ZodString>;
|
|
3963
|
+
address2: z.ZodOptional<z.ZodString>;
|
|
3964
|
+
postalCode: z.ZodOptional<z.ZodString>;
|
|
3965
|
+
city: z.ZodOptional<z.ZodString>;
|
|
3966
|
+
state: z.ZodOptional<z.ZodString>;
|
|
3967
|
+
country: z.ZodOptional<z.ZodString>;
|
|
3968
|
+
phone: z.ZodOptional<z.ZodString>;
|
|
3853
3969
|
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
|
-
|
|
3970
|
+
individual_name: z.ZodString;
|
|
3971
|
+
tax_id: z.ZodOptional<z.ZodString>;
|
|
3972
|
+
tax_id_type: z.ZodOptional<z.ZodEnum<{
|
|
3973
|
+
"": "";
|
|
3974
|
+
ad_nrt: "ad_nrt";
|
|
3975
|
+
ae_trn: "ae_trn";
|
|
3976
|
+
al_tin: "al_tin";
|
|
3977
|
+
am_tin: "am_tin";
|
|
3978
|
+
ao_tin: "ao_tin";
|
|
3979
|
+
ar_cuit: "ar_cuit";
|
|
3980
|
+
at_vat: "at_vat";
|
|
3981
|
+
au_abn: "au_abn";
|
|
3982
|
+
au_arn: "au_arn";
|
|
3983
|
+
ba_tin: "ba_tin";
|
|
3984
|
+
bb_tin: "bb_tin";
|
|
3985
|
+
be_vat: "be_vat";
|
|
3986
|
+
bg_uic: "bg_uic";
|
|
3987
|
+
bg_vat: "bg_vat";
|
|
3988
|
+
bh_vat: "bh_vat";
|
|
3989
|
+
bo_tin: "bo_tin";
|
|
3990
|
+
br_cnpj: "br_cnpj";
|
|
3991
|
+
br_cpf: "br_cpf";
|
|
3992
|
+
bs_tin: "bs_tin";
|
|
3993
|
+
by_tin: "by_tin";
|
|
3994
|
+
ca_bn: "ca_bn";
|
|
3995
|
+
ca_gst_hst: "ca_gst_hst";
|
|
3996
|
+
ca_pst_bc: "ca_pst_bc";
|
|
3997
|
+
ca_pst_mb: "ca_pst_mb";
|
|
3998
|
+
ca_pst_sk: "ca_pst_sk";
|
|
3999
|
+
ca_qst: "ca_qst";
|
|
4000
|
+
cd_nif: "cd_nif";
|
|
4001
|
+
ch_uid: "ch_uid";
|
|
4002
|
+
ch_vat: "ch_vat";
|
|
4003
|
+
cl_tin: "cl_tin";
|
|
4004
|
+
cn_tin: "cn_tin";
|
|
4005
|
+
co_nit: "co_nit";
|
|
4006
|
+
cr_tin: "cr_tin";
|
|
4007
|
+
cy_vat: "cy_vat";
|
|
4008
|
+
cz_vat: "cz_vat";
|
|
4009
|
+
de_stn: "de_stn";
|
|
4010
|
+
de_vat: "de_vat";
|
|
4011
|
+
dk_vat: "dk_vat";
|
|
4012
|
+
do_rcn: "do_rcn";
|
|
4013
|
+
ec_ruc: "ec_ruc";
|
|
4014
|
+
ee_vat: "ee_vat";
|
|
4015
|
+
eg_tin: "eg_tin";
|
|
4016
|
+
es_cif: "es_cif";
|
|
4017
|
+
es_vat: "es_vat";
|
|
4018
|
+
eu_oss_vat: "eu_oss_vat";
|
|
4019
|
+
fi_vat: "fi_vat";
|
|
4020
|
+
fr_vat: "fr_vat";
|
|
4021
|
+
gb_vat: "gb_vat";
|
|
4022
|
+
ge_vat: "ge_vat";
|
|
4023
|
+
gn_nif: "gn_nif";
|
|
4024
|
+
gr_vat: "gr_vat";
|
|
4025
|
+
hk_br: "hk_br";
|
|
4026
|
+
hr_oib: "hr_oib";
|
|
4027
|
+
hr_vat: "hr_vat";
|
|
4028
|
+
hu_tin: "hu_tin";
|
|
4029
|
+
hu_vat: "hu_vat";
|
|
4030
|
+
id_npwp: "id_npwp";
|
|
4031
|
+
ie_vat: "ie_vat";
|
|
4032
|
+
il_vat: "il_vat";
|
|
4033
|
+
in_gst: "in_gst";
|
|
4034
|
+
is_vat: "is_vat";
|
|
4035
|
+
it_vat: "it_vat";
|
|
4036
|
+
jp_cn: "jp_cn";
|
|
4037
|
+
jp_rn: "jp_rn";
|
|
4038
|
+
jp_trn: "jp_trn";
|
|
4039
|
+
ke_pin: "ke_pin";
|
|
4040
|
+
kh_tin: "kh_tin";
|
|
4041
|
+
kr_brn: "kr_brn";
|
|
4042
|
+
kz_bin: "kz_bin";
|
|
4043
|
+
li_uid: "li_uid";
|
|
4044
|
+
li_vat: "li_vat";
|
|
4045
|
+
lt_vat: "lt_vat";
|
|
4046
|
+
lu_vat: "lu_vat";
|
|
4047
|
+
lv_vat: "lv_vat";
|
|
4048
|
+
ma_vat: "ma_vat";
|
|
4049
|
+
md_vat: "md_vat";
|
|
4050
|
+
me_pib: "me_pib";
|
|
4051
|
+
mk_vat: "mk_vat";
|
|
4052
|
+
mr_nif: "mr_nif";
|
|
4053
|
+
mt_vat: "mt_vat";
|
|
4054
|
+
mx_rfc: "mx_rfc";
|
|
4055
|
+
my_frp: "my_frp";
|
|
4056
|
+
my_itn: "my_itn";
|
|
4057
|
+
my_sst: "my_sst";
|
|
4058
|
+
ng_tin: "ng_tin";
|
|
4059
|
+
nl_vat: "nl_vat";
|
|
4060
|
+
no_vat: "no_vat";
|
|
4061
|
+
no_voec: "no_voec";
|
|
4062
|
+
np_pan: "np_pan";
|
|
4063
|
+
nz_gst: "nz_gst";
|
|
4064
|
+
om_vat: "om_vat";
|
|
4065
|
+
pe_ruc: "pe_ruc";
|
|
4066
|
+
ph_tin: "ph_tin";
|
|
4067
|
+
pl_vat: "pl_vat";
|
|
4068
|
+
pt_vat: "pt_vat";
|
|
4069
|
+
ro_tin: "ro_tin";
|
|
4070
|
+
ro_vat: "ro_vat";
|
|
4071
|
+
rs_pib: "rs_pib";
|
|
4072
|
+
ru_inn: "ru_inn";
|
|
4073
|
+
ru_kpp: "ru_kpp";
|
|
4074
|
+
sa_vat: "sa_vat";
|
|
4075
|
+
se_vat: "se_vat";
|
|
4076
|
+
sg_gst: "sg_gst";
|
|
4077
|
+
sg_uen: "sg_uen";
|
|
4078
|
+
si_tin: "si_tin";
|
|
4079
|
+
si_vat: "si_vat";
|
|
4080
|
+
sk_vat: "sk_vat";
|
|
4081
|
+
sn_ninea: "sn_ninea";
|
|
4082
|
+
sr_fin: "sr_fin";
|
|
4083
|
+
sv_nit: "sv_nit";
|
|
4084
|
+
th_vat: "th_vat";
|
|
4085
|
+
tj_tin: "tj_tin";
|
|
4086
|
+
tr_tin: "tr_tin";
|
|
4087
|
+
tw_vat: "tw_vat";
|
|
4088
|
+
tz_vat: "tz_vat";
|
|
4089
|
+
ua_vat: "ua_vat";
|
|
4090
|
+
ug_tin: "ug_tin";
|
|
4091
|
+
us_ein: "us_ein";
|
|
4092
|
+
uy_ruc: "uy_ruc";
|
|
4093
|
+
uz_tin: "uz_tin";
|
|
4094
|
+
uz_vat: "uz_vat";
|
|
4095
|
+
ve_rif: "ve_rif";
|
|
4096
|
+
vn_tin: "vn_tin";
|
|
4097
|
+
xi_vat: "xi_vat";
|
|
4098
|
+
za_vat: "za_vat";
|
|
4099
|
+
zm_tin: "zm_tin";
|
|
4100
|
+
zw_tin: "zw_tin";
|
|
3878
4101
|
}>>;
|
|
3879
4102
|
}, z.core.$strip>;
|
|
3880
|
-
export declare const zUpdateUserPath: z.ZodObject<{
|
|
3881
|
-
user_id: z.ZodString;
|
|
3882
|
-
}, z.core.$strip>;
|
|
3883
4103
|
/**
|
|
3884
|
-
*
|
|
4104
|
+
* An array of the applied promotional credits records.
|
|
3885
4105
|
*/
|
|
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";
|
|
4106
|
+
export declare const zGetCreditsResponse: z.ZodArray<z.ZodObject<{
|
|
4107
|
+
id: z.ZodOptional<z.ZodString>;
|
|
4108
|
+
type: z.ZodEnum<{
|
|
4109
|
+
credit: "credit";
|
|
4110
|
+
discount: "discount";
|
|
3897
4111
|
}>;
|
|
3898
|
-
|
|
3899
|
-
|
|
4112
|
+
date_start: z.ZodISODateTime;
|
|
4113
|
+
date_end: z.ZodOptional<z.ZodISODateTime>;
|
|
4114
|
+
code: z.ZodString;
|
|
4115
|
+
description: z.ZodOptional<z.ZodString>;
|
|
4116
|
+
value_total: z.ZodNumber;
|
|
4117
|
+
value_remaining: z.ZodOptional<z.ZodNumber>;
|
|
4118
|
+
}, z.core.$strip>>;
|
|
4119
|
+
export declare const zRedeemCreditsBody: z.ZodObject<{
|
|
4120
|
+
code: z.ZodOptional<z.ZodString>;
|
|
3900
4121
|
}, z.core.$strip>;
|
|
3901
4122
|
//# sourceMappingURL=zod.gen.d.ts.map
|