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