@cloudfleet/sdk 0.0.1-7d8c04e → 0.0.1-7f36848
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/dist/client.gen.d.ts +13 -0
- package/dist/client.gen.d.ts.map +1 -0
- package/dist/client.gen.js +6 -0
- package/dist/client.gen.js.map +1 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +3 -0
- package/dist/index.js.map +1 -1
- package/dist/schemas.gen.d.ts +415 -596
- package/dist/schemas.gen.d.ts.map +1 -1
- package/dist/schemas.gen.js +407 -576
- package/dist/schemas.gen.js.map +1 -1
- package/dist/sdk.gen.d.ts +105 -92
- package/dist/sdk.gen.d.ts.map +1 -1
- package/dist/sdk.gen.js +196 -130
- package/dist/sdk.gen.js.map +1 -1
- package/dist/services/kubernetes/api.d.ts +196 -0
- package/dist/services/kubernetes/api.d.ts.map +1 -0
- package/dist/services/kubernetes/api.js +140 -0
- package/dist/services/kubernetes/api.js.map +1 -0
- package/dist/services/kubernetes/index.d.ts +44 -0
- package/dist/services/kubernetes/index.d.ts.map +1 -0
- package/dist/services/kubernetes/index.js +68 -0
- package/dist/services/kubernetes/index.js.map +1 -0
- package/dist/services/kubernetes/types.d.ts +1335 -0
- package/dist/services/kubernetes/types.d.ts.map +1 -0
- package/dist/services/kubernetes/types.js +2 -0
- package/dist/services/kubernetes/types.js.map +1 -0
- package/dist/types.gen.d.ts +451 -707
- package/dist/types.gen.d.ts.map +1 -1
- package/dist/zod.gen.d.ts +604 -1257
- package/dist/zod.gen.d.ts.map +1 -1
- package/dist/zod.gen.js +126 -157
- package/dist/zod.gen.js.map +1 -1
- package/package.json +9 -5
package/dist/zod.gen.d.ts
CHANGED
|
@@ -1,4 +1,135 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
+
export declare const zBillingContact: z.ZodObject<{
|
|
3
|
+
company: z.ZodOptional<z.ZodString>;
|
|
4
|
+
address1: z.ZodOptional<z.ZodString>;
|
|
5
|
+
address2: z.ZodOptional<z.ZodString>;
|
|
6
|
+
postalCode: z.ZodOptional<z.ZodString>;
|
|
7
|
+
city: z.ZodOptional<z.ZodString>;
|
|
8
|
+
state: z.ZodOptional<z.ZodString>;
|
|
9
|
+
country: z.ZodOptional<z.ZodString>;
|
|
10
|
+
phone: z.ZodOptional<z.ZodString>;
|
|
11
|
+
email: z.ZodString;
|
|
12
|
+
first_name: z.ZodString;
|
|
13
|
+
last_name: z.ZodString;
|
|
14
|
+
}, "strip", z.ZodTypeAny, {
|
|
15
|
+
email: string;
|
|
16
|
+
first_name: string;
|
|
17
|
+
last_name: string;
|
|
18
|
+
state?: string | undefined;
|
|
19
|
+
country?: string | undefined;
|
|
20
|
+
company?: string | undefined;
|
|
21
|
+
address1?: string | undefined;
|
|
22
|
+
address2?: string | undefined;
|
|
23
|
+
postalCode?: string | undefined;
|
|
24
|
+
city?: string | undefined;
|
|
25
|
+
phone?: string | undefined;
|
|
26
|
+
}, {
|
|
27
|
+
email: string;
|
|
28
|
+
first_name: string;
|
|
29
|
+
last_name: string;
|
|
30
|
+
state?: string | undefined;
|
|
31
|
+
country?: string | undefined;
|
|
32
|
+
company?: string | undefined;
|
|
33
|
+
address1?: string | undefined;
|
|
34
|
+
address2?: string | undefined;
|
|
35
|
+
postalCode?: string | undefined;
|
|
36
|
+
city?: string | undefined;
|
|
37
|
+
phone?: string | undefined;
|
|
38
|
+
}>;
|
|
39
|
+
export declare const zBillingCredits: z.ZodObject<{
|
|
40
|
+
id: z.ZodOptional<z.ZodString>;
|
|
41
|
+
date_created: z.ZodString;
|
|
42
|
+
code: z.ZodString;
|
|
43
|
+
description: z.ZodOptional<z.ZodString>;
|
|
44
|
+
products: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
45
|
+
type: z.ZodEnum<["credit", "discount"]>;
|
|
46
|
+
value: z.ZodNumber;
|
|
47
|
+
billing_period: z.ZodString;
|
|
48
|
+
value_remaining: z.ZodOptional<z.ZodNumber>;
|
|
49
|
+
}, "strip", z.ZodTypeAny, {
|
|
50
|
+
code: string;
|
|
51
|
+
type: "credit" | "discount";
|
|
52
|
+
value: number;
|
|
53
|
+
date_created: string;
|
|
54
|
+
billing_period: string;
|
|
55
|
+
id?: string | undefined;
|
|
56
|
+
description?: string | undefined;
|
|
57
|
+
products?: string[] | undefined;
|
|
58
|
+
value_remaining?: number | undefined;
|
|
59
|
+
}, {
|
|
60
|
+
code: string;
|
|
61
|
+
type: "credit" | "discount";
|
|
62
|
+
value: number;
|
|
63
|
+
date_created: string;
|
|
64
|
+
billing_period: string;
|
|
65
|
+
id?: string | undefined;
|
|
66
|
+
description?: string | undefined;
|
|
67
|
+
products?: string[] | undefined;
|
|
68
|
+
value_remaining?: number | undefined;
|
|
69
|
+
}>;
|
|
70
|
+
export declare const zChartCreateInput: z.ZodObject<{
|
|
71
|
+
values: z.ZodString;
|
|
72
|
+
version_channel: z.ZodString;
|
|
73
|
+
name: z.ZodString;
|
|
74
|
+
namespace: z.ZodString;
|
|
75
|
+
chart: z.ZodString;
|
|
76
|
+
}, "strip", z.ZodTypeAny, {
|
|
77
|
+
values: string;
|
|
78
|
+
name: string;
|
|
79
|
+
version_channel: string;
|
|
80
|
+
namespace: string;
|
|
81
|
+
chart: string;
|
|
82
|
+
}, {
|
|
83
|
+
values: string;
|
|
84
|
+
name: string;
|
|
85
|
+
version_channel: string;
|
|
86
|
+
namespace: string;
|
|
87
|
+
chart: string;
|
|
88
|
+
}>;
|
|
89
|
+
export declare const zChart: z.ZodObject<{
|
|
90
|
+
values: z.ZodString;
|
|
91
|
+
version_channel: z.ZodString;
|
|
92
|
+
name: z.ZodString;
|
|
93
|
+
namespace: z.ZodString;
|
|
94
|
+
chart: z.ZodString;
|
|
95
|
+
status: z.ZodEnum<["InstallSucceeded", "InstallFailed", "UpgradeSucceeded", "UpgradeFailed", "TestSucceeded", "TestFailed", "RollbackSucceeded", "RollbackFailed", "UninstallSucceeded", "UninstallFailed", "ArtifactFailed", "DependencyNotReady"]>;
|
|
96
|
+
version_current: z.ZodString;
|
|
97
|
+
created_at: z.ZodString;
|
|
98
|
+
updated_at: z.ZodString;
|
|
99
|
+
ready: z.ZodBoolean;
|
|
100
|
+
}, "strip", z.ZodTypeAny, {
|
|
101
|
+
values: string;
|
|
102
|
+
name: string;
|
|
103
|
+
ready: boolean;
|
|
104
|
+
status: "InstallSucceeded" | "InstallFailed" | "UpgradeSucceeded" | "UpgradeFailed" | "TestSucceeded" | "TestFailed" | "RollbackSucceeded" | "RollbackFailed" | "UninstallSucceeded" | "UninstallFailed" | "ArtifactFailed" | "DependencyNotReady";
|
|
105
|
+
version_channel: string;
|
|
106
|
+
namespace: string;
|
|
107
|
+
chart: string;
|
|
108
|
+
version_current: string;
|
|
109
|
+
created_at: string;
|
|
110
|
+
updated_at: string;
|
|
111
|
+
}, {
|
|
112
|
+
values: string;
|
|
113
|
+
name: string;
|
|
114
|
+
ready: boolean;
|
|
115
|
+
status: "InstallSucceeded" | "InstallFailed" | "UpgradeSucceeded" | "UpgradeFailed" | "TestSucceeded" | "TestFailed" | "RollbackSucceeded" | "RollbackFailed" | "UninstallSucceeded" | "UninstallFailed" | "ArtifactFailed" | "DependencyNotReady";
|
|
116
|
+
version_channel: string;
|
|
117
|
+
namespace: string;
|
|
118
|
+
chart: string;
|
|
119
|
+
version_current: string;
|
|
120
|
+
created_at: string;
|
|
121
|
+
updated_at: string;
|
|
122
|
+
}>;
|
|
123
|
+
export declare const zChartUpdateInput: z.ZodObject<{
|
|
124
|
+
values: z.ZodString;
|
|
125
|
+
version_channel: z.ZodString;
|
|
126
|
+
}, "strip", z.ZodTypeAny, {
|
|
127
|
+
values: string;
|
|
128
|
+
version_channel: string;
|
|
129
|
+
}, {
|
|
130
|
+
values: string;
|
|
131
|
+
version_channel: string;
|
|
132
|
+
}>;
|
|
2
133
|
export declare const zClusterCreateInput: z.ZodObject<{
|
|
3
134
|
name: z.ZodString;
|
|
4
135
|
region: z.ZodOptional<z.ZodEnum<["staging", "northamerica-central-1"]>>;
|
|
@@ -6,8 +137,8 @@ export declare const zClusterCreateInput: z.ZodObject<{
|
|
|
6
137
|
version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
7
138
|
}, "strip", z.ZodTypeAny, {
|
|
8
139
|
name: string;
|
|
9
|
-
tier: "basic" | "pro";
|
|
10
140
|
version_channel: string;
|
|
141
|
+
tier: "basic" | "pro";
|
|
11
142
|
region?: "staging" | "northamerica-central-1" | undefined;
|
|
12
143
|
}, {
|
|
13
144
|
name: string;
|
|
@@ -94,28 +225,28 @@ export declare const zCluster: z.ZodObject<{
|
|
|
94
225
|
name: string;
|
|
95
226
|
id: string;
|
|
96
227
|
status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
|
|
97
|
-
tier: "basic" | "pro";
|
|
98
228
|
version_channel: string;
|
|
229
|
+
tier: "basic" | "pro";
|
|
230
|
+
ready?: boolean | undefined;
|
|
99
231
|
region?: "staging" | "northamerica-central-1" | undefined;
|
|
100
|
-
endpoint?: string | undefined;
|
|
101
|
-
certificate_ca?: string | undefined;
|
|
102
232
|
version_current?: string | undefined;
|
|
103
233
|
created_at?: string | undefined;
|
|
104
234
|
updated_at?: string | undefined;
|
|
105
|
-
|
|
235
|
+
endpoint?: string | undefined;
|
|
236
|
+
certificate_ca?: string | undefined;
|
|
106
237
|
}, {
|
|
107
238
|
name: string;
|
|
108
239
|
id: string;
|
|
109
240
|
status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
|
|
110
241
|
tier: "basic" | "pro";
|
|
242
|
+
ready?: boolean | undefined;
|
|
111
243
|
region?: "staging" | "northamerica-central-1" | undefined;
|
|
112
|
-
endpoint?: string | undefined;
|
|
113
244
|
version_channel?: string | undefined;
|
|
114
|
-
certificate_ca?: string | undefined;
|
|
115
245
|
version_current?: string | undefined;
|
|
116
246
|
created_at?: string | undefined;
|
|
117
247
|
updated_at?: string | undefined;
|
|
118
|
-
|
|
248
|
+
endpoint?: string | undefined;
|
|
249
|
+
certificate_ca?: string | undefined;
|
|
119
250
|
}>;
|
|
120
251
|
export declare const zClusterUpdateInput: z.ZodObject<{
|
|
121
252
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -397,140 +528,6 @@ export declare const zFleetUpdateInput: z.ZodObject<{
|
|
|
397
528
|
enabled?: boolean | undefined;
|
|
398
529
|
} | undefined;
|
|
399
530
|
}>;
|
|
400
|
-
export declare const zInfrastructureFilter: z.ZodObject<{
|
|
401
|
-
version: z.ZodOptional<z.ZodUnknown>;
|
|
402
|
-
provider: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
403
|
-
region: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
404
|
-
sub_region: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
405
|
-
csp_region: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
406
|
-
instance_type: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
407
|
-
accelerator_name: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
408
|
-
accelerator_manufacturer: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
409
|
-
accelerator_count_min: z.ZodOptional<z.ZodNumber>;
|
|
410
|
-
accelerator_count_max: z.ZodOptional<z.ZodNumber>;
|
|
411
|
-
accelerator_memory_min: z.ZodOptional<z.ZodNumber>;
|
|
412
|
-
accelerator_memory_max: z.ZodOptional<z.ZodNumber>;
|
|
413
|
-
memory_min: z.ZodOptional<z.ZodNumber>;
|
|
414
|
-
memory_max: z.ZodOptional<z.ZodNumber>;
|
|
415
|
-
vcpu_min: z.ZodOptional<z.ZodNumber>;
|
|
416
|
-
vcpu_max: z.ZodOptional<z.ZodNumber>;
|
|
417
|
-
storage_total_min: z.ZodOptional<z.ZodNumber>;
|
|
418
|
-
storage_total_max: z.ZodOptional<z.ZodNumber>;
|
|
419
|
-
storage_local_min: z.ZodOptional<z.ZodNumber>;
|
|
420
|
-
storage_local_max: z.ZodOptional<z.ZodNumber>;
|
|
421
|
-
price_min: z.ZodOptional<z.ZodNumber>;
|
|
422
|
-
price_max: z.ZodOptional<z.ZodNumber>;
|
|
423
|
-
}, "strip", z.ZodTypeAny, {
|
|
424
|
-
region?: string[] | undefined;
|
|
425
|
-
provider?: string[] | undefined;
|
|
426
|
-
sub_region?: string[] | undefined;
|
|
427
|
-
csp_region?: string[] | undefined;
|
|
428
|
-
instance_type?: string[] | undefined;
|
|
429
|
-
version?: unknown;
|
|
430
|
-
accelerator_name?: string[] | undefined;
|
|
431
|
-
accelerator_manufacturer?: string[] | undefined;
|
|
432
|
-
accelerator_count_min?: number | undefined;
|
|
433
|
-
accelerator_count_max?: number | undefined;
|
|
434
|
-
accelerator_memory_min?: number | undefined;
|
|
435
|
-
accelerator_memory_max?: number | undefined;
|
|
436
|
-
memory_min?: number | undefined;
|
|
437
|
-
memory_max?: number | undefined;
|
|
438
|
-
vcpu_min?: number | undefined;
|
|
439
|
-
vcpu_max?: number | undefined;
|
|
440
|
-
storage_total_min?: number | undefined;
|
|
441
|
-
storage_total_max?: number | undefined;
|
|
442
|
-
storage_local_min?: number | undefined;
|
|
443
|
-
storage_local_max?: number | undefined;
|
|
444
|
-
price_min?: number | undefined;
|
|
445
|
-
price_max?: number | undefined;
|
|
446
|
-
}, {
|
|
447
|
-
region?: string[] | undefined;
|
|
448
|
-
provider?: string[] | undefined;
|
|
449
|
-
sub_region?: string[] | undefined;
|
|
450
|
-
csp_region?: string[] | undefined;
|
|
451
|
-
instance_type?: string[] | undefined;
|
|
452
|
-
version?: unknown;
|
|
453
|
-
accelerator_name?: string[] | undefined;
|
|
454
|
-
accelerator_manufacturer?: string[] | undefined;
|
|
455
|
-
accelerator_count_min?: number | undefined;
|
|
456
|
-
accelerator_count_max?: number | undefined;
|
|
457
|
-
accelerator_memory_min?: number | undefined;
|
|
458
|
-
accelerator_memory_max?: number | undefined;
|
|
459
|
-
memory_min?: number | undefined;
|
|
460
|
-
memory_max?: number | undefined;
|
|
461
|
-
vcpu_min?: number | undefined;
|
|
462
|
-
vcpu_max?: number | undefined;
|
|
463
|
-
storage_total_min?: number | undefined;
|
|
464
|
-
storage_total_max?: number | undefined;
|
|
465
|
-
storage_local_min?: number | undefined;
|
|
466
|
-
storage_local_max?: number | undefined;
|
|
467
|
-
price_min?: number | undefined;
|
|
468
|
-
price_max?: number | undefined;
|
|
469
|
-
}>;
|
|
470
|
-
export declare const zInfrastructureInstance: z.ZodObject<{
|
|
471
|
-
sku: z.ZodString;
|
|
472
|
-
provider: z.ZodString;
|
|
473
|
-
region: z.ZodString;
|
|
474
|
-
sub_region: z.ZodString;
|
|
475
|
-
csp_region: z.ZodString;
|
|
476
|
-
csp_zone: z.ZodString;
|
|
477
|
-
instance_type: z.ZodString;
|
|
478
|
-
architecture: z.ZodString;
|
|
479
|
-
os: z.ZodString;
|
|
480
|
-
vcpu: z.ZodNumber;
|
|
481
|
-
memory: z.ZodNumber;
|
|
482
|
-
local_storage: z.ZodNumber;
|
|
483
|
-
accelerator_name: z.ZodOptional<z.ZodString>;
|
|
484
|
-
accelerator_manufacturer: z.ZodOptional<z.ZodString>;
|
|
485
|
-
accelerator_count: z.ZodOptional<z.ZodNumber>;
|
|
486
|
-
accelerator_memory: z.ZodOptional<z.ZodNumber>;
|
|
487
|
-
pods_capacity: z.ZodOptional<z.ZodNumber>;
|
|
488
|
-
capacity_type: z.ZodOptional<z.ZodString>;
|
|
489
|
-
price: z.ZodNumber;
|
|
490
|
-
available: z.ZodOptional<z.ZodBoolean>;
|
|
491
|
-
}, "strip", z.ZodTypeAny, {
|
|
492
|
-
memory: number;
|
|
493
|
-
region: string;
|
|
494
|
-
sku: string;
|
|
495
|
-
provider: string;
|
|
496
|
-
sub_region: string;
|
|
497
|
-
csp_region: string;
|
|
498
|
-
csp_zone: string;
|
|
499
|
-
instance_type: string;
|
|
500
|
-
architecture: string;
|
|
501
|
-
os: string;
|
|
502
|
-
vcpu: number;
|
|
503
|
-
local_storage: number;
|
|
504
|
-
price: number;
|
|
505
|
-
accelerator_name?: string | undefined;
|
|
506
|
-
accelerator_manufacturer?: string | undefined;
|
|
507
|
-
accelerator_count?: number | undefined;
|
|
508
|
-
accelerator_memory?: number | undefined;
|
|
509
|
-
pods_capacity?: number | undefined;
|
|
510
|
-
capacity_type?: string | undefined;
|
|
511
|
-
available?: boolean | undefined;
|
|
512
|
-
}, {
|
|
513
|
-
memory: number;
|
|
514
|
-
region: string;
|
|
515
|
-
sku: string;
|
|
516
|
-
provider: string;
|
|
517
|
-
sub_region: string;
|
|
518
|
-
csp_region: string;
|
|
519
|
-
csp_zone: string;
|
|
520
|
-
instance_type: string;
|
|
521
|
-
architecture: string;
|
|
522
|
-
os: string;
|
|
523
|
-
vcpu: number;
|
|
524
|
-
local_storage: number;
|
|
525
|
-
price: number;
|
|
526
|
-
accelerator_name?: string | undefined;
|
|
527
|
-
accelerator_manufacturer?: string | undefined;
|
|
528
|
-
accelerator_count?: number | undefined;
|
|
529
|
-
accelerator_memory?: number | undefined;
|
|
530
|
-
pods_capacity?: number | undefined;
|
|
531
|
-
capacity_type?: string | undefined;
|
|
532
|
-
available?: boolean | undefined;
|
|
533
|
-
}>;
|
|
534
531
|
export declare const zInvite: z.ZodObject<{
|
|
535
532
|
id: z.ZodOptional<z.ZodString>;
|
|
536
533
|
organization_id: z.ZodOptional<z.ZodString>;
|
|
@@ -586,7 +583,7 @@ export declare const zInvoice: z.ZodObject<{
|
|
|
586
583
|
catalogEffectiveDate: z.ZodOptional<z.ZodString>;
|
|
587
584
|
childItems: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
|
|
588
585
|
}, "strip", z.ZodTypeAny, {
|
|
589
|
-
currency?: "
|
|
586
|
+
currency?: "AED" | "AFN" | "ALL" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BRL" | "BSD" | "BTN" | "BWP" | "BYR" | "BZD" | "CAD" | "CDF" | "CHF" | "CLP" | "CNY" | "COP" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GGP" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "IMP" | "INR" | "IQD" | "IRR" | "ISK" | "JEP" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LTL" | "LVL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRO" | "MUR" | "MVR" | "MWK" | "MXN" | "MYR" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SPL" | "SRD" | "STD" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TVD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "UYU" | "UZS" | "VEF" | "VND" | "VUV" | "WST" | "XAF" | "XCD" | "XDR" | "XOF" | "XPF" | "YER" | "ZAR" | "ZMW" | "ZWD" | "BTC" | undefined;
|
|
590
587
|
id?: string | undefined;
|
|
591
588
|
description?: string | undefined;
|
|
592
589
|
amount?: number | undefined;
|
|
@@ -608,7 +605,7 @@ export declare const zInvoice: z.ZodObject<{
|
|
|
608
605
|
catalogEffectiveDate?: string | undefined;
|
|
609
606
|
childItems?: unknown[] | undefined;
|
|
610
607
|
}, {
|
|
611
|
-
currency?: "
|
|
608
|
+
currency?: "AED" | "AFN" | "ALL" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BRL" | "BSD" | "BTN" | "BWP" | "BYR" | "BZD" | "CAD" | "CDF" | "CHF" | "CLP" | "CNY" | "COP" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GGP" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "IMP" | "INR" | "IQD" | "IRR" | "ISK" | "JEP" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LTL" | "LVL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRO" | "MUR" | "MVR" | "MWK" | "MXN" | "MYR" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SPL" | "SRD" | "STD" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TVD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "UYU" | "UZS" | "VEF" | "VND" | "VUV" | "WST" | "XAF" | "XCD" | "XDR" | "XOF" | "XPF" | "YER" | "ZAR" | "ZMW" | "ZWD" | "BTC" | undefined;
|
|
612
609
|
id?: string | undefined;
|
|
613
610
|
description?: string | undefined;
|
|
614
611
|
amount?: number | undefined;
|
|
@@ -653,7 +650,7 @@ export declare const zInvoice: z.ZodObject<{
|
|
|
653
650
|
catalogEffectiveDate: z.ZodOptional<z.ZodString>;
|
|
654
651
|
childItems: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
|
|
655
652
|
}, "strip", z.ZodTypeAny, {
|
|
656
|
-
currency?: "
|
|
653
|
+
currency?: "AED" | "AFN" | "ALL" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BRL" | "BSD" | "BTN" | "BWP" | "BYR" | "BZD" | "CAD" | "CDF" | "CHF" | "CLP" | "CNY" | "COP" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GGP" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "IMP" | "INR" | "IQD" | "IRR" | "ISK" | "JEP" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LTL" | "LVL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRO" | "MUR" | "MVR" | "MWK" | "MXN" | "MYR" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SPL" | "SRD" | "STD" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TVD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "UYU" | "UZS" | "VEF" | "VND" | "VUV" | "WST" | "XAF" | "XCD" | "XDR" | "XOF" | "XPF" | "YER" | "ZAR" | "ZMW" | "ZWD" | "BTC" | undefined;
|
|
657
654
|
id?: string | undefined;
|
|
658
655
|
description?: string | undefined;
|
|
659
656
|
amount?: number | undefined;
|
|
@@ -675,7 +672,7 @@ export declare const zInvoice: z.ZodObject<{
|
|
|
675
672
|
catalogEffectiveDate?: string | undefined;
|
|
676
673
|
childItems?: unknown[] | undefined;
|
|
677
674
|
}, {
|
|
678
|
-
currency?: "
|
|
675
|
+
currency?: "AED" | "AFN" | "ALL" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BRL" | "BSD" | "BTN" | "BWP" | "BYR" | "BZD" | "CAD" | "CDF" | "CHF" | "CLP" | "CNY" | "COP" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GGP" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "IMP" | "INR" | "IQD" | "IRR" | "ISK" | "JEP" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LTL" | "LVL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRO" | "MUR" | "MVR" | "MWK" | "MXN" | "MYR" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SPL" | "SRD" | "STD" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TVD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "UYU" | "UZS" | "VEF" | "VND" | "VUV" | "WST" | "XAF" | "XCD" | "XDR" | "XOF" | "XPF" | "YER" | "ZAR" | "ZMW" | "ZWD" | "BTC" | undefined;
|
|
679
676
|
id?: string | undefined;
|
|
680
677
|
description?: string | undefined;
|
|
681
678
|
amount?: number | undefined;
|
|
@@ -698,12 +695,11 @@ export declare const zInvoice: z.ZodObject<{
|
|
|
698
695
|
childItems?: unknown[] | undefined;
|
|
699
696
|
}>, "many">>;
|
|
700
697
|
}, "strip", z.ZodTypeAny, {
|
|
701
|
-
currency?: "
|
|
698
|
+
currency?: "AED" | "AFN" | "ALL" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BRL" | "BSD" | "BTN" | "BWP" | "BYR" | "BZD" | "CAD" | "CDF" | "CHF" | "CLP" | "CNY" | "COP" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GGP" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "IMP" | "INR" | "IQD" | "IRR" | "ISK" | "JEP" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LTL" | "LVL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRO" | "MUR" | "MVR" | "MWK" | "MXN" | "MYR" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SPL" | "SRD" | "STD" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TVD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "UYU" | "UZS" | "VEF" | "VND" | "VUV" | "WST" | "XAF" | "XCD" | "XDR" | "XOF" | "XPF" | "YER" | "ZAR" | "ZMW" | "ZWD" | "BTC" | undefined;
|
|
702
699
|
id?: string | undefined;
|
|
703
700
|
status?: "DRAFT" | "COMMITTED" | "VOID" | undefined;
|
|
704
|
-
amount?: number | undefined;
|
|
705
701
|
items?: {
|
|
706
|
-
currency?: "
|
|
702
|
+
currency?: "AED" | "AFN" | "ALL" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BRL" | "BSD" | "BTN" | "BWP" | "BYR" | "BZD" | "CAD" | "CDF" | "CHF" | "CLP" | "CNY" | "COP" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GGP" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "IMP" | "INR" | "IQD" | "IRR" | "ISK" | "JEP" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LTL" | "LVL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRO" | "MUR" | "MVR" | "MWK" | "MXN" | "MYR" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SPL" | "SRD" | "STD" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TVD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "UYU" | "UZS" | "VEF" | "VND" | "VUV" | "WST" | "XAF" | "XCD" | "XDR" | "XOF" | "XPF" | "YER" | "ZAR" | "ZMW" | "ZWD" | "BTC" | undefined;
|
|
707
703
|
id?: string | undefined;
|
|
708
704
|
description?: string | undefined;
|
|
709
705
|
amount?: number | undefined;
|
|
@@ -726,6 +722,7 @@ export declare const zInvoice: z.ZodObject<{
|
|
|
726
722
|
childItems?: unknown[] | undefined;
|
|
727
723
|
}[] | undefined;
|
|
728
724
|
organizationId?: string | undefined;
|
|
725
|
+
amount?: number | undefined;
|
|
729
726
|
creditAdj?: number | undefined;
|
|
730
727
|
refundAdj?: number | undefined;
|
|
731
728
|
invoiceDate?: string | undefined;
|
|
@@ -734,7 +731,7 @@ export declare const zInvoice: z.ZodObject<{
|
|
|
734
731
|
balance?: number | undefined;
|
|
735
732
|
bundleKeys?: string | undefined;
|
|
736
733
|
credits?: {
|
|
737
|
-
currency?: "
|
|
734
|
+
currency?: "AED" | "AFN" | "ALL" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BRL" | "BSD" | "BTN" | "BWP" | "BYR" | "BZD" | "CAD" | "CDF" | "CHF" | "CLP" | "CNY" | "COP" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GGP" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "IMP" | "INR" | "IQD" | "IRR" | "ISK" | "JEP" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LTL" | "LVL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRO" | "MUR" | "MVR" | "MWK" | "MXN" | "MYR" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SPL" | "SRD" | "STD" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TVD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "UYU" | "UZS" | "VEF" | "VND" | "VUV" | "WST" | "XAF" | "XCD" | "XDR" | "XOF" | "XPF" | "YER" | "ZAR" | "ZMW" | "ZWD" | "BTC" | undefined;
|
|
738
735
|
id?: string | undefined;
|
|
739
736
|
description?: string | undefined;
|
|
740
737
|
amount?: number | undefined;
|
|
@@ -757,12 +754,11 @@ export declare const zInvoice: z.ZodObject<{
|
|
|
757
754
|
childItems?: unknown[] | undefined;
|
|
758
755
|
}[] | undefined;
|
|
759
756
|
}, {
|
|
760
|
-
currency?: "
|
|
757
|
+
currency?: "AED" | "AFN" | "ALL" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BRL" | "BSD" | "BTN" | "BWP" | "BYR" | "BZD" | "CAD" | "CDF" | "CHF" | "CLP" | "CNY" | "COP" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GGP" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "IMP" | "INR" | "IQD" | "IRR" | "ISK" | "JEP" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LTL" | "LVL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRO" | "MUR" | "MVR" | "MWK" | "MXN" | "MYR" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SPL" | "SRD" | "STD" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TVD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "UYU" | "UZS" | "VEF" | "VND" | "VUV" | "WST" | "XAF" | "XCD" | "XDR" | "XOF" | "XPF" | "YER" | "ZAR" | "ZMW" | "ZWD" | "BTC" | undefined;
|
|
761
758
|
id?: string | undefined;
|
|
762
759
|
status?: "DRAFT" | "COMMITTED" | "VOID" | undefined;
|
|
763
|
-
amount?: number | undefined;
|
|
764
760
|
items?: {
|
|
765
|
-
currency?: "
|
|
761
|
+
currency?: "AED" | "AFN" | "ALL" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BRL" | "BSD" | "BTN" | "BWP" | "BYR" | "BZD" | "CAD" | "CDF" | "CHF" | "CLP" | "CNY" | "COP" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GGP" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "IMP" | "INR" | "IQD" | "IRR" | "ISK" | "JEP" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LTL" | "LVL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRO" | "MUR" | "MVR" | "MWK" | "MXN" | "MYR" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SPL" | "SRD" | "STD" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TVD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "UYU" | "UZS" | "VEF" | "VND" | "VUV" | "WST" | "XAF" | "XCD" | "XDR" | "XOF" | "XPF" | "YER" | "ZAR" | "ZMW" | "ZWD" | "BTC" | undefined;
|
|
766
762
|
id?: string | undefined;
|
|
767
763
|
description?: string | undefined;
|
|
768
764
|
amount?: number | undefined;
|
|
@@ -785,6 +781,7 @@ export declare const zInvoice: z.ZodObject<{
|
|
|
785
781
|
childItems?: unknown[] | undefined;
|
|
786
782
|
}[] | undefined;
|
|
787
783
|
organizationId?: string | undefined;
|
|
784
|
+
amount?: number | undefined;
|
|
788
785
|
creditAdj?: number | undefined;
|
|
789
786
|
refundAdj?: number | undefined;
|
|
790
787
|
invoiceDate?: string | undefined;
|
|
@@ -793,7 +790,7 @@ export declare const zInvoice: z.ZodObject<{
|
|
|
793
790
|
balance?: number | undefined;
|
|
794
791
|
bundleKeys?: string | undefined;
|
|
795
792
|
credits?: {
|
|
796
|
-
currency?: "
|
|
793
|
+
currency?: "AED" | "AFN" | "ALL" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BRL" | "BSD" | "BTN" | "BWP" | "BYR" | "BZD" | "CAD" | "CDF" | "CHF" | "CLP" | "CNY" | "COP" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GGP" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "IMP" | "INR" | "IQD" | "IRR" | "ISK" | "JEP" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LTL" | "LVL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRO" | "MUR" | "MVR" | "MWK" | "MXN" | "MYR" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SPL" | "SRD" | "STD" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TVD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "UYU" | "UZS" | "VEF" | "VND" | "VUV" | "WST" | "XAF" | "XCD" | "XDR" | "XOF" | "XPF" | "YER" | "ZAR" | "ZMW" | "ZWD" | "BTC" | undefined;
|
|
797
794
|
id?: string | undefined;
|
|
798
795
|
description?: string | undefined;
|
|
799
796
|
amount?: number | undefined;
|
|
@@ -816,145 +813,53 @@ export declare const zInvoice: z.ZodObject<{
|
|
|
816
813
|
childItems?: unknown[] | undefined;
|
|
817
814
|
}[] | undefined;
|
|
818
815
|
}>;
|
|
819
|
-
export declare const
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
|
|
816
|
+
export declare const zMarketplaceListing: z.ZodObject<{
|
|
817
|
+
id: z.ZodString;
|
|
818
|
+
name: z.ZodString;
|
|
819
|
+
developer: z.ZodString;
|
|
820
|
+
description: z.ZodString;
|
|
821
|
+
logoUrl: z.ZodString;
|
|
822
|
+
longDescription: z.ZodString;
|
|
823
|
+
categories: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
824
|
+
}, "strip", z.ZodTypeAny, {
|
|
825
|
+
name: string;
|
|
826
|
+
id: string;
|
|
827
|
+
description: string;
|
|
828
|
+
developer: string;
|
|
829
|
+
logoUrl: string;
|
|
830
|
+
longDescription: string;
|
|
831
|
+
categories?: string[] | undefined;
|
|
832
|
+
}, {
|
|
833
|
+
name: string;
|
|
834
|
+
id: string;
|
|
835
|
+
description: string;
|
|
836
|
+
developer: string;
|
|
837
|
+
logoUrl: string;
|
|
838
|
+
longDescription: string;
|
|
839
|
+
categories?: string[] | undefined;
|
|
840
|
+
}>;
|
|
841
|
+
export declare const zOrganizationCreateInput: z.ZodObject<{
|
|
827
842
|
email: z.ZodString;
|
|
828
843
|
first_name: z.ZodString;
|
|
829
844
|
last_name: z.ZodString;
|
|
845
|
+
company_name: z.ZodString;
|
|
846
|
+
password: z.ZodString;
|
|
830
847
|
}, "strip", z.ZodTypeAny, {
|
|
831
848
|
email: string;
|
|
832
849
|
first_name: string;
|
|
833
850
|
last_name: string;
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
address1?: string | undefined;
|
|
837
|
-
address2?: string | undefined;
|
|
838
|
-
postalCode?: string | undefined;
|
|
839
|
-
city?: string | undefined;
|
|
840
|
-
phone?: string | undefined;
|
|
851
|
+
company_name: string;
|
|
852
|
+
password: string;
|
|
841
853
|
}, {
|
|
842
854
|
email: string;
|
|
843
855
|
first_name: string;
|
|
844
856
|
last_name: string;
|
|
845
|
-
|
|
846
|
-
country?: string | undefined;
|
|
847
|
-
address1?: string | undefined;
|
|
848
|
-
address2?: string | undefined;
|
|
849
|
-
postalCode?: string | undefined;
|
|
850
|
-
city?: string | undefined;
|
|
851
|
-
phone?: string | undefined;
|
|
852
|
-
}>;
|
|
853
|
-
export declare const zOrganizationCreateInput: z.ZodObject<{
|
|
854
|
-
name: z.ZodString;
|
|
855
|
-
contactInfo: z.ZodObject<{
|
|
856
|
-
address1: z.ZodOptional<z.ZodString>;
|
|
857
|
-
address2: z.ZodOptional<z.ZodString>;
|
|
858
|
-
postalCode: z.ZodOptional<z.ZodString>;
|
|
859
|
-
city: z.ZodOptional<z.ZodString>;
|
|
860
|
-
state: z.ZodOptional<z.ZodString>;
|
|
861
|
-
country: z.ZodOptional<z.ZodString>;
|
|
862
|
-
phone: z.ZodOptional<z.ZodString>;
|
|
863
|
-
email: z.ZodString;
|
|
864
|
-
first_name: z.ZodString;
|
|
865
|
-
last_name: z.ZodString;
|
|
866
|
-
}, "strip", z.ZodTypeAny, {
|
|
867
|
-
email: string;
|
|
868
|
-
first_name: string;
|
|
869
|
-
last_name: string;
|
|
870
|
-
state?: string | undefined;
|
|
871
|
-
country?: string | undefined;
|
|
872
|
-
address1?: string | undefined;
|
|
873
|
-
address2?: string | undefined;
|
|
874
|
-
postalCode?: string | undefined;
|
|
875
|
-
city?: string | undefined;
|
|
876
|
-
phone?: string | undefined;
|
|
877
|
-
}, {
|
|
878
|
-
email: string;
|
|
879
|
-
first_name: string;
|
|
880
|
-
last_name: string;
|
|
881
|
-
state?: string | undefined;
|
|
882
|
-
country?: string | undefined;
|
|
883
|
-
address1?: string | undefined;
|
|
884
|
-
address2?: string | undefined;
|
|
885
|
-
postalCode?: string | undefined;
|
|
886
|
-
city?: string | undefined;
|
|
887
|
-
phone?: string | undefined;
|
|
888
|
-
}>;
|
|
889
|
-
password: z.ZodString;
|
|
890
|
-
}, "strip", z.ZodTypeAny, {
|
|
891
|
-
name: string;
|
|
892
|
-
contactInfo: {
|
|
893
|
-
email: string;
|
|
894
|
-
first_name: string;
|
|
895
|
-
last_name: string;
|
|
896
|
-
state?: string | undefined;
|
|
897
|
-
country?: string | undefined;
|
|
898
|
-
address1?: string | undefined;
|
|
899
|
-
address2?: string | undefined;
|
|
900
|
-
postalCode?: string | undefined;
|
|
901
|
-
city?: string | undefined;
|
|
902
|
-
phone?: string | undefined;
|
|
903
|
-
};
|
|
904
|
-
password: string;
|
|
905
|
-
}, {
|
|
906
|
-
name: string;
|
|
907
|
-
contactInfo: {
|
|
908
|
-
email: string;
|
|
909
|
-
first_name: string;
|
|
910
|
-
last_name: string;
|
|
911
|
-
state?: string | undefined;
|
|
912
|
-
country?: string | undefined;
|
|
913
|
-
address1?: string | undefined;
|
|
914
|
-
address2?: string | undefined;
|
|
915
|
-
postalCode?: string | undefined;
|
|
916
|
-
city?: string | undefined;
|
|
917
|
-
phone?: string | undefined;
|
|
918
|
-
};
|
|
857
|
+
company_name: string;
|
|
919
858
|
password: string;
|
|
920
859
|
}>;
|
|
921
860
|
export declare const zOrganization: z.ZodObject<{
|
|
922
|
-
name: z.ZodString;
|
|
923
|
-
contactInfo: z.ZodObject<{
|
|
924
|
-
address1: z.ZodOptional<z.ZodString>;
|
|
925
|
-
address2: z.ZodOptional<z.ZodString>;
|
|
926
|
-
postalCode: z.ZodOptional<z.ZodString>;
|
|
927
|
-
city: z.ZodOptional<z.ZodString>;
|
|
928
|
-
state: z.ZodOptional<z.ZodString>;
|
|
929
|
-
country: z.ZodOptional<z.ZodString>;
|
|
930
|
-
phone: z.ZodOptional<z.ZodString>;
|
|
931
|
-
email: z.ZodString;
|
|
932
|
-
first_name: z.ZodString;
|
|
933
|
-
last_name: z.ZodString;
|
|
934
|
-
}, "strip", z.ZodTypeAny, {
|
|
935
|
-
email: string;
|
|
936
|
-
first_name: string;
|
|
937
|
-
last_name: string;
|
|
938
|
-
state?: string | undefined;
|
|
939
|
-
country?: string | undefined;
|
|
940
|
-
address1?: string | undefined;
|
|
941
|
-
address2?: string | undefined;
|
|
942
|
-
postalCode?: string | undefined;
|
|
943
|
-
city?: string | undefined;
|
|
944
|
-
phone?: string | undefined;
|
|
945
|
-
}, {
|
|
946
|
-
email: string;
|
|
947
|
-
first_name: string;
|
|
948
|
-
last_name: string;
|
|
949
|
-
state?: string | undefined;
|
|
950
|
-
country?: string | undefined;
|
|
951
|
-
address1?: string | undefined;
|
|
952
|
-
address2?: string | undefined;
|
|
953
|
-
postalCode?: string | undefined;
|
|
954
|
-
city?: string | undefined;
|
|
955
|
-
phone?: string | undefined;
|
|
956
|
-
}>;
|
|
957
861
|
id: z.ZodString;
|
|
862
|
+
name: z.ZodOptional<z.ZodString>;
|
|
958
863
|
date_created: z.ZodString;
|
|
959
864
|
quota: z.ZodObject<{
|
|
960
865
|
basic_clusters_max: z.ZodNumber;
|
|
@@ -1002,25 +907,11 @@ export declare const zOrganization: z.ZodObject<{
|
|
|
1002
907
|
cluster_tiers: string[];
|
|
1003
908
|
regions: string[];
|
|
1004
909
|
}>;
|
|
1005
|
-
pending_actions: z.ZodArray<z.ZodEnum<["signup-billing-address", "signup-payment-method", "signup-invite-team", "signup-create-cluster"]>, "many">;
|
|
1006
910
|
status: z.ZodEnum<["active", "closed", "suspended"]>;
|
|
1007
911
|
}, "strip", z.ZodTypeAny, {
|
|
1008
|
-
name: string;
|
|
1009
912
|
id: string;
|
|
1010
913
|
status: "active" | "closed" | "suspended";
|
|
1011
914
|
date_created: string;
|
|
1012
|
-
contactInfo: {
|
|
1013
|
-
email: string;
|
|
1014
|
-
first_name: string;
|
|
1015
|
-
last_name: string;
|
|
1016
|
-
state?: string | undefined;
|
|
1017
|
-
country?: string | undefined;
|
|
1018
|
-
address1?: string | undefined;
|
|
1019
|
-
address2?: string | undefined;
|
|
1020
|
-
postalCode?: string | undefined;
|
|
1021
|
-
city?: string | undefined;
|
|
1022
|
-
phone?: string | undefined;
|
|
1023
|
-
};
|
|
1024
915
|
quota: {
|
|
1025
916
|
versions: {
|
|
1026
917
|
id: string;
|
|
@@ -1035,24 +926,11 @@ export declare const zOrganization: z.ZodObject<{
|
|
|
1035
926
|
cluster_tiers: string[];
|
|
1036
927
|
regions: string[];
|
|
1037
928
|
};
|
|
1038
|
-
|
|
929
|
+
name?: string | undefined;
|
|
1039
930
|
}, {
|
|
1040
|
-
name: string;
|
|
1041
931
|
id: string;
|
|
1042
932
|
status: "active" | "closed" | "suspended";
|
|
1043
933
|
date_created: string;
|
|
1044
|
-
contactInfo: {
|
|
1045
|
-
email: string;
|
|
1046
|
-
first_name: string;
|
|
1047
|
-
last_name: string;
|
|
1048
|
-
state?: string | undefined;
|
|
1049
|
-
country?: string | undefined;
|
|
1050
|
-
address1?: string | undefined;
|
|
1051
|
-
address2?: string | undefined;
|
|
1052
|
-
postalCode?: string | undefined;
|
|
1053
|
-
city?: string | undefined;
|
|
1054
|
-
phone?: string | undefined;
|
|
1055
|
-
};
|
|
1056
934
|
quota: {
|
|
1057
935
|
versions: {
|
|
1058
936
|
id: string;
|
|
@@ -1067,71 +945,6 @@ export declare const zOrganization: z.ZodObject<{
|
|
|
1067
945
|
cluster_tiers: string[];
|
|
1068
946
|
regions: string[];
|
|
1069
947
|
};
|
|
1070
|
-
pending_actions: ("signup-payment-method" | "signup-billing-address" | "signup-invite-team" | "signup-create-cluster")[];
|
|
1071
|
-
}>;
|
|
1072
|
-
export declare const zOrganizationUpdateInput: z.ZodObject<{
|
|
1073
|
-
name: z.ZodOptional<z.ZodString>;
|
|
1074
|
-
contactInfo: z.ZodObject<{
|
|
1075
|
-
address1: z.ZodOptional<z.ZodString>;
|
|
1076
|
-
address2: z.ZodOptional<z.ZodString>;
|
|
1077
|
-
postalCode: z.ZodOptional<z.ZodString>;
|
|
1078
|
-
city: z.ZodOptional<z.ZodString>;
|
|
1079
|
-
state: z.ZodOptional<z.ZodString>;
|
|
1080
|
-
country: z.ZodOptional<z.ZodString>;
|
|
1081
|
-
phone: z.ZodOptional<z.ZodString>;
|
|
1082
|
-
email: z.ZodString;
|
|
1083
|
-
first_name: z.ZodString;
|
|
1084
|
-
last_name: z.ZodString;
|
|
1085
|
-
}, "strip", z.ZodTypeAny, {
|
|
1086
|
-
email: string;
|
|
1087
|
-
first_name: string;
|
|
1088
|
-
last_name: string;
|
|
1089
|
-
state?: string | undefined;
|
|
1090
|
-
country?: string | undefined;
|
|
1091
|
-
address1?: string | undefined;
|
|
1092
|
-
address2?: string | undefined;
|
|
1093
|
-
postalCode?: string | undefined;
|
|
1094
|
-
city?: string | undefined;
|
|
1095
|
-
phone?: string | undefined;
|
|
1096
|
-
}, {
|
|
1097
|
-
email: string;
|
|
1098
|
-
first_name: string;
|
|
1099
|
-
last_name: string;
|
|
1100
|
-
state?: string | undefined;
|
|
1101
|
-
country?: string | undefined;
|
|
1102
|
-
address1?: string | undefined;
|
|
1103
|
-
address2?: string | undefined;
|
|
1104
|
-
postalCode?: string | undefined;
|
|
1105
|
-
city?: string | undefined;
|
|
1106
|
-
phone?: string | undefined;
|
|
1107
|
-
}>;
|
|
1108
|
-
}, "strip", z.ZodTypeAny, {
|
|
1109
|
-
contactInfo: {
|
|
1110
|
-
email: string;
|
|
1111
|
-
first_name: string;
|
|
1112
|
-
last_name: string;
|
|
1113
|
-
state?: string | undefined;
|
|
1114
|
-
country?: string | undefined;
|
|
1115
|
-
address1?: string | undefined;
|
|
1116
|
-
address2?: string | undefined;
|
|
1117
|
-
postalCode?: string | undefined;
|
|
1118
|
-
city?: string | undefined;
|
|
1119
|
-
phone?: string | undefined;
|
|
1120
|
-
};
|
|
1121
|
-
name?: string | undefined;
|
|
1122
|
-
}, {
|
|
1123
|
-
contactInfo: {
|
|
1124
|
-
email: string;
|
|
1125
|
-
first_name: string;
|
|
1126
|
-
last_name: string;
|
|
1127
|
-
state?: string | undefined;
|
|
1128
|
-
country?: string | undefined;
|
|
1129
|
-
address1?: string | undefined;
|
|
1130
|
-
address2?: string | undefined;
|
|
1131
|
-
postalCode?: string | undefined;
|
|
1132
|
-
city?: string | undefined;
|
|
1133
|
-
phone?: string | undefined;
|
|
1134
|
-
};
|
|
1135
948
|
name?: string | undefined;
|
|
1136
949
|
}>;
|
|
1137
950
|
export declare const zPaymentMethod: z.ZodObject<{
|
|
@@ -1149,7 +962,7 @@ export declare const zPaymentMethod: z.ZodObject<{
|
|
|
1149
962
|
last4: string;
|
|
1150
963
|
exp_month: number;
|
|
1151
964
|
exp_year: number;
|
|
1152
|
-
brand: "unknown" | "
|
|
965
|
+
brand: "unknown" | "amex" | "diners" | "discover" | "eftpos_au" | "jcb" | "mastercard" | "unionpay" | "visa";
|
|
1153
966
|
}, {
|
|
1154
967
|
type: "card";
|
|
1155
968
|
id: string;
|
|
@@ -1157,17 +970,17 @@ export declare const zPaymentMethod: z.ZodObject<{
|
|
|
1157
970
|
last4: string;
|
|
1158
971
|
exp_month: number;
|
|
1159
972
|
exp_year: number;
|
|
1160
|
-
brand: "unknown" | "
|
|
973
|
+
brand: "unknown" | "amex" | "diners" | "discover" | "eftpos_au" | "jcb" | "mastercard" | "unionpay" | "visa";
|
|
1161
974
|
}>;
|
|
1162
975
|
export declare const zTokenCreateInput: z.ZodObject<{
|
|
1163
976
|
name: z.ZodString;
|
|
1164
977
|
role: z.ZodEnum<["Administrator", "User"]>;
|
|
1165
978
|
}, "strip", z.ZodTypeAny, {
|
|
1166
979
|
name: string;
|
|
1167
|
-
role: "
|
|
980
|
+
role: "Administrator" | "User";
|
|
1168
981
|
}, {
|
|
1169
982
|
name: string;
|
|
1170
|
-
role: "
|
|
983
|
+
role: "Administrator" | "User";
|
|
1171
984
|
}>;
|
|
1172
985
|
export declare const zToken: z.ZodObject<{
|
|
1173
986
|
name: z.ZodString;
|
|
@@ -1177,13 +990,13 @@ export declare const zToken: z.ZodObject<{
|
|
|
1177
990
|
date_created: z.ZodString;
|
|
1178
991
|
}, "strip", z.ZodTypeAny, {
|
|
1179
992
|
name: string;
|
|
1180
|
-
role: "
|
|
993
|
+
role: "Administrator" | "User";
|
|
1181
994
|
date_created: string;
|
|
1182
995
|
id?: string | undefined;
|
|
1183
996
|
secret?: string | undefined;
|
|
1184
997
|
}, {
|
|
1185
998
|
name: string;
|
|
1186
|
-
role: "
|
|
999
|
+
role: "Administrator" | "User";
|
|
1187
1000
|
date_created: string;
|
|
1188
1001
|
id?: string | undefined;
|
|
1189
1002
|
secret?: string | undefined;
|
|
@@ -1193,26 +1006,44 @@ export declare const zTokenUpdateInput: z.ZodObject<{
|
|
|
1193
1006
|
role: z.ZodOptional<z.ZodEnum<["Administrator", "User"]>>;
|
|
1194
1007
|
}, "strip", z.ZodTypeAny, {
|
|
1195
1008
|
name?: string | undefined;
|
|
1196
|
-
role?: "
|
|
1009
|
+
role?: "Administrator" | "User" | undefined;
|
|
1197
1010
|
}, {
|
|
1198
1011
|
name?: string | undefined;
|
|
1199
|
-
role?: "
|
|
1012
|
+
role?: "Administrator" | "User" | undefined;
|
|
1200
1013
|
}>;
|
|
1201
1014
|
export declare const zUsage: z.ZodObject<{
|
|
1202
|
-
|
|
1203
|
-
|
|
1204
|
-
|
|
1205
|
-
|
|
1015
|
+
hour: z.ZodOptional<z.ZodString>;
|
|
1016
|
+
cluster_id: z.ZodString;
|
|
1017
|
+
cluster_tier: z.ZodEnum<[""]>;
|
|
1018
|
+
product: z.ZodEnum<["cfke_infra_compute", "cfke_nodes", "cfke_controlplane"]>;
|
|
1019
|
+
node_name: z.ZodString;
|
|
1020
|
+
sku: z.ZodString;
|
|
1021
|
+
cpu: z.ZodUnion<[z.ZodNumber, z.ZodEnum<[""]>]>;
|
|
1022
|
+
price: z.ZodUnion<[z.ZodNumber, z.ZodEnum<[""]>]>;
|
|
1023
|
+
value: z.ZodUnion<[z.ZodNumber, z.ZodEnum<[""]>]>;
|
|
1024
|
+
total: z.ZodUnion<[z.ZodNumber, z.ZodEnum<[""]>]>;
|
|
1206
1025
|
}, "strip", z.ZodTypeAny, {
|
|
1207
|
-
|
|
1208
|
-
|
|
1209
|
-
|
|
1210
|
-
|
|
1026
|
+
total: number | "";
|
|
1027
|
+
cpu: number | "";
|
|
1028
|
+
product: "cfke_infra_compute" | "cfke_nodes" | "cfke_controlplane";
|
|
1029
|
+
value: number | "";
|
|
1030
|
+
cluster_id: string;
|
|
1031
|
+
cluster_tier: "";
|
|
1032
|
+
node_name: string;
|
|
1033
|
+
sku: string;
|
|
1034
|
+
price: number | "";
|
|
1035
|
+
hour?: string | undefined;
|
|
1211
1036
|
}, {
|
|
1212
|
-
|
|
1213
|
-
|
|
1214
|
-
|
|
1215
|
-
|
|
1037
|
+
total: number | "";
|
|
1038
|
+
cpu: number | "";
|
|
1039
|
+
product: "cfke_infra_compute" | "cfke_nodes" | "cfke_controlplane";
|
|
1040
|
+
value: number | "";
|
|
1041
|
+
cluster_id: string;
|
|
1042
|
+
cluster_tier: "";
|
|
1043
|
+
node_name: string;
|
|
1044
|
+
sku: string;
|
|
1045
|
+
price: number | "";
|
|
1046
|
+
hour?: string | undefined;
|
|
1216
1047
|
}>;
|
|
1217
1048
|
export declare const zUserCreateInput: z.ZodObject<{
|
|
1218
1049
|
email: z.ZodString;
|
|
@@ -1228,7 +1059,7 @@ export declare const zUserCreateInput: z.ZodObject<{
|
|
|
1228
1059
|
first_name: string;
|
|
1229
1060
|
last_name: string;
|
|
1230
1061
|
password: string;
|
|
1231
|
-
role?: "
|
|
1062
|
+
role?: "Administrator" | "User" | undefined;
|
|
1232
1063
|
status?: "active" | "inactive" | undefined;
|
|
1233
1064
|
}, {
|
|
1234
1065
|
code: string;
|
|
@@ -1236,7 +1067,7 @@ export declare const zUserCreateInput: z.ZodObject<{
|
|
|
1236
1067
|
first_name: string;
|
|
1237
1068
|
last_name: string;
|
|
1238
1069
|
password: string;
|
|
1239
|
-
role?: "
|
|
1070
|
+
role?: "Administrator" | "User" | undefined;
|
|
1240
1071
|
status?: "active" | "inactive" | undefined;
|
|
1241
1072
|
}>;
|
|
1242
1073
|
export declare const zUser: z.ZodObject<{
|
|
@@ -1247,40 +1078,22 @@ export declare const zUser: z.ZodObject<{
|
|
|
1247
1078
|
status: z.ZodEnum<["active", "inactive"]>;
|
|
1248
1079
|
id: z.ZodString;
|
|
1249
1080
|
date_created: z.ZodString;
|
|
1250
|
-
cluster_permissions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1251
|
-
cluster_id: z.ZodString;
|
|
1252
|
-
permissions: z.ZodEnum<["readwrite", "readonly"]>;
|
|
1253
|
-
}, "strip", z.ZodTypeAny, {
|
|
1254
|
-
cluster_id: string;
|
|
1255
|
-
permissions: "readonly" | "readwrite";
|
|
1256
|
-
}, {
|
|
1257
|
-
cluster_id: string;
|
|
1258
|
-
permissions: "readonly" | "readwrite";
|
|
1259
|
-
}>, "many">>;
|
|
1260
1081
|
}, "strip", z.ZodTypeAny, {
|
|
1261
1082
|
id: string;
|
|
1262
|
-
role: "
|
|
1083
|
+
role: "Administrator" | "User";
|
|
1263
1084
|
email: string;
|
|
1264
1085
|
status: "active" | "inactive";
|
|
1265
|
-
date_created: string;
|
|
1266
1086
|
first_name: string;
|
|
1267
1087
|
last_name: string;
|
|
1268
|
-
|
|
1269
|
-
cluster_id: string;
|
|
1270
|
-
permissions: "readonly" | "readwrite";
|
|
1271
|
-
}[] | undefined;
|
|
1088
|
+
date_created: string;
|
|
1272
1089
|
}, {
|
|
1273
1090
|
id: string;
|
|
1274
|
-
role: "
|
|
1091
|
+
role: "Administrator" | "User";
|
|
1275
1092
|
email: string;
|
|
1276
1093
|
status: "active" | "inactive";
|
|
1277
|
-
date_created: string;
|
|
1278
1094
|
first_name: string;
|
|
1279
1095
|
last_name: string;
|
|
1280
|
-
|
|
1281
|
-
cluster_id: string;
|
|
1282
|
-
permissions: "readonly" | "readwrite";
|
|
1283
|
-
}[] | undefined;
|
|
1096
|
+
date_created: string;
|
|
1284
1097
|
}>;
|
|
1285
1098
|
export declare const zUserUpdateInput: z.ZodObject<{
|
|
1286
1099
|
email: z.ZodOptional<z.ZodString>;
|
|
@@ -1289,33 +1102,51 @@ export declare const zUserUpdateInput: z.ZodObject<{
|
|
|
1289
1102
|
role: z.ZodOptional<z.ZodEnum<["Administrator", "User"]>>;
|
|
1290
1103
|
status: z.ZodOptional<z.ZodEnum<["active", "inactive"]>>;
|
|
1291
1104
|
}, "strip", z.ZodTypeAny, {
|
|
1292
|
-
role?: "
|
|
1105
|
+
role?: "Administrator" | "User" | undefined;
|
|
1293
1106
|
email?: string | undefined;
|
|
1294
1107
|
status?: "active" | "inactive" | undefined;
|
|
1295
1108
|
first_name?: string | undefined;
|
|
1296
1109
|
last_name?: string | undefined;
|
|
1297
1110
|
}, {
|
|
1298
|
-
role?: "
|
|
1111
|
+
role?: "Administrator" | "User" | undefined;
|
|
1299
1112
|
email?: string | undefined;
|
|
1300
1113
|
status?: "active" | "inactive" | undefined;
|
|
1301
1114
|
first_name?: string | undefined;
|
|
1302
1115
|
last_name?: string | undefined;
|
|
1303
1116
|
}>;
|
|
1304
1117
|
export declare const zGetUsageResponse: z.ZodArray<z.ZodObject<{
|
|
1305
|
-
|
|
1306
|
-
|
|
1307
|
-
|
|
1308
|
-
|
|
1118
|
+
hour: z.ZodOptional<z.ZodString>;
|
|
1119
|
+
cluster_id: z.ZodString;
|
|
1120
|
+
cluster_tier: z.ZodEnum<[""]>;
|
|
1121
|
+
product: z.ZodEnum<["cfke_infra_compute", "cfke_nodes", "cfke_controlplane"]>;
|
|
1122
|
+
node_name: z.ZodString;
|
|
1123
|
+
sku: z.ZodString;
|
|
1124
|
+
cpu: z.ZodUnion<[z.ZodNumber, z.ZodEnum<[""]>]>;
|
|
1125
|
+
price: z.ZodUnion<[z.ZodNumber, z.ZodEnum<[""]>]>;
|
|
1126
|
+
value: z.ZodUnion<[z.ZodNumber, z.ZodEnum<[""]>]>;
|
|
1127
|
+
total: z.ZodUnion<[z.ZodNumber, z.ZodEnum<[""]>]>;
|
|
1309
1128
|
}, "strip", z.ZodTypeAny, {
|
|
1310
|
-
|
|
1311
|
-
|
|
1312
|
-
|
|
1313
|
-
|
|
1129
|
+
total: number | "";
|
|
1130
|
+
cpu: number | "";
|
|
1131
|
+
product: "cfke_infra_compute" | "cfke_nodes" | "cfke_controlplane";
|
|
1132
|
+
value: number | "";
|
|
1133
|
+
cluster_id: string;
|
|
1134
|
+
cluster_tier: "";
|
|
1135
|
+
node_name: string;
|
|
1136
|
+
sku: string;
|
|
1137
|
+
price: number | "";
|
|
1138
|
+
hour?: string | undefined;
|
|
1314
1139
|
}, {
|
|
1315
|
-
|
|
1316
|
-
|
|
1317
|
-
|
|
1318
|
-
|
|
1140
|
+
total: number | "";
|
|
1141
|
+
cpu: number | "";
|
|
1142
|
+
product: "cfke_infra_compute" | "cfke_nodes" | "cfke_controlplane";
|
|
1143
|
+
value: number | "";
|
|
1144
|
+
cluster_id: string;
|
|
1145
|
+
cluster_tier: "";
|
|
1146
|
+
node_name: string;
|
|
1147
|
+
sku: string;
|
|
1148
|
+
price: number | "";
|
|
1149
|
+
hour?: string | undefined;
|
|
1319
1150
|
}>, "many">;
|
|
1320
1151
|
export declare const zGetBalanceResponse: z.ZodNumber;
|
|
1321
1152
|
export declare const zGetPaymentMethodResponse: z.ZodObject<{
|
|
@@ -1333,7 +1164,7 @@ export declare const zGetPaymentMethodResponse: z.ZodObject<{
|
|
|
1333
1164
|
last4: string;
|
|
1334
1165
|
exp_month: number;
|
|
1335
1166
|
exp_year: number;
|
|
1336
|
-
brand: "unknown" | "
|
|
1167
|
+
brand: "unknown" | "amex" | "diners" | "discover" | "eftpos_au" | "jcb" | "mastercard" | "unionpay" | "visa";
|
|
1337
1168
|
}, {
|
|
1338
1169
|
type: "card";
|
|
1339
1170
|
id: string;
|
|
@@ -1341,7 +1172,7 @@ export declare const zGetPaymentMethodResponse: z.ZodObject<{
|
|
|
1341
1172
|
last4: string;
|
|
1342
1173
|
exp_month: number;
|
|
1343
1174
|
exp_year: number;
|
|
1344
|
-
brand: "unknown" | "
|
|
1175
|
+
brand: "unknown" | "amex" | "diners" | "discover" | "eftpos_au" | "jcb" | "mastercard" | "unionpay" | "visa";
|
|
1345
1176
|
}>;
|
|
1346
1177
|
export declare const zGetPaymentMethodSecretResponse: z.ZodObject<{
|
|
1347
1178
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -1386,7 +1217,7 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1386
1217
|
catalogEffectiveDate: z.ZodOptional<z.ZodString>;
|
|
1387
1218
|
childItems: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
|
|
1388
1219
|
}, "strip", z.ZodTypeAny, {
|
|
1389
|
-
currency?: "
|
|
1220
|
+
currency?: "AED" | "AFN" | "ALL" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BRL" | "BSD" | "BTN" | "BWP" | "BYR" | "BZD" | "CAD" | "CDF" | "CHF" | "CLP" | "CNY" | "COP" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GGP" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "IMP" | "INR" | "IQD" | "IRR" | "ISK" | "JEP" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LTL" | "LVL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRO" | "MUR" | "MVR" | "MWK" | "MXN" | "MYR" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SPL" | "SRD" | "STD" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TVD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "UYU" | "UZS" | "VEF" | "VND" | "VUV" | "WST" | "XAF" | "XCD" | "XDR" | "XOF" | "XPF" | "YER" | "ZAR" | "ZMW" | "ZWD" | "BTC" | undefined;
|
|
1390
1221
|
id?: string | undefined;
|
|
1391
1222
|
description?: string | undefined;
|
|
1392
1223
|
amount?: number | undefined;
|
|
@@ -1408,7 +1239,7 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1408
1239
|
catalogEffectiveDate?: string | undefined;
|
|
1409
1240
|
childItems?: unknown[] | undefined;
|
|
1410
1241
|
}, {
|
|
1411
|
-
currency?: "
|
|
1242
|
+
currency?: "AED" | "AFN" | "ALL" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BRL" | "BSD" | "BTN" | "BWP" | "BYR" | "BZD" | "CAD" | "CDF" | "CHF" | "CLP" | "CNY" | "COP" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GGP" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "IMP" | "INR" | "IQD" | "IRR" | "ISK" | "JEP" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LTL" | "LVL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRO" | "MUR" | "MVR" | "MWK" | "MXN" | "MYR" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SPL" | "SRD" | "STD" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TVD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "UYU" | "UZS" | "VEF" | "VND" | "VUV" | "WST" | "XAF" | "XCD" | "XDR" | "XOF" | "XPF" | "YER" | "ZAR" | "ZMW" | "ZWD" | "BTC" | undefined;
|
|
1412
1243
|
id?: string | undefined;
|
|
1413
1244
|
description?: string | undefined;
|
|
1414
1245
|
amount?: number | undefined;
|
|
@@ -1453,7 +1284,7 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1453
1284
|
catalogEffectiveDate: z.ZodOptional<z.ZodString>;
|
|
1454
1285
|
childItems: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
|
|
1455
1286
|
}, "strip", z.ZodTypeAny, {
|
|
1456
|
-
currency?: "
|
|
1287
|
+
currency?: "AED" | "AFN" | "ALL" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BRL" | "BSD" | "BTN" | "BWP" | "BYR" | "BZD" | "CAD" | "CDF" | "CHF" | "CLP" | "CNY" | "COP" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GGP" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "IMP" | "INR" | "IQD" | "IRR" | "ISK" | "JEP" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LTL" | "LVL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRO" | "MUR" | "MVR" | "MWK" | "MXN" | "MYR" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SPL" | "SRD" | "STD" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TVD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "UYU" | "UZS" | "VEF" | "VND" | "VUV" | "WST" | "XAF" | "XCD" | "XDR" | "XOF" | "XPF" | "YER" | "ZAR" | "ZMW" | "ZWD" | "BTC" | undefined;
|
|
1457
1288
|
id?: string | undefined;
|
|
1458
1289
|
description?: string | undefined;
|
|
1459
1290
|
amount?: number | undefined;
|
|
@@ -1475,7 +1306,7 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1475
1306
|
catalogEffectiveDate?: string | undefined;
|
|
1476
1307
|
childItems?: unknown[] | undefined;
|
|
1477
1308
|
}, {
|
|
1478
|
-
currency?: "
|
|
1309
|
+
currency?: "AED" | "AFN" | "ALL" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BRL" | "BSD" | "BTN" | "BWP" | "BYR" | "BZD" | "CAD" | "CDF" | "CHF" | "CLP" | "CNY" | "COP" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GGP" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "IMP" | "INR" | "IQD" | "IRR" | "ISK" | "JEP" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LTL" | "LVL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRO" | "MUR" | "MVR" | "MWK" | "MXN" | "MYR" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SPL" | "SRD" | "STD" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TVD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "UYU" | "UZS" | "VEF" | "VND" | "VUV" | "WST" | "XAF" | "XCD" | "XDR" | "XOF" | "XPF" | "YER" | "ZAR" | "ZMW" | "ZWD" | "BTC" | undefined;
|
|
1479
1310
|
id?: string | undefined;
|
|
1480
1311
|
description?: string | undefined;
|
|
1481
1312
|
amount?: number | undefined;
|
|
@@ -1498,12 +1329,11 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1498
1329
|
childItems?: unknown[] | undefined;
|
|
1499
1330
|
}>, "many">>;
|
|
1500
1331
|
}, "strip", z.ZodTypeAny, {
|
|
1501
|
-
currency?: "
|
|
1332
|
+
currency?: "AED" | "AFN" | "ALL" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BRL" | "BSD" | "BTN" | "BWP" | "BYR" | "BZD" | "CAD" | "CDF" | "CHF" | "CLP" | "CNY" | "COP" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GGP" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "IMP" | "INR" | "IQD" | "IRR" | "ISK" | "JEP" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LTL" | "LVL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRO" | "MUR" | "MVR" | "MWK" | "MXN" | "MYR" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SPL" | "SRD" | "STD" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TVD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "UYU" | "UZS" | "VEF" | "VND" | "VUV" | "WST" | "XAF" | "XCD" | "XDR" | "XOF" | "XPF" | "YER" | "ZAR" | "ZMW" | "ZWD" | "BTC" | undefined;
|
|
1502
1333
|
id?: string | undefined;
|
|
1503
1334
|
status?: "DRAFT" | "COMMITTED" | "VOID" | undefined;
|
|
1504
|
-
amount?: number | undefined;
|
|
1505
1335
|
items?: {
|
|
1506
|
-
currency?: "
|
|
1336
|
+
currency?: "AED" | "AFN" | "ALL" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BRL" | "BSD" | "BTN" | "BWP" | "BYR" | "BZD" | "CAD" | "CDF" | "CHF" | "CLP" | "CNY" | "COP" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GGP" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "IMP" | "INR" | "IQD" | "IRR" | "ISK" | "JEP" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LTL" | "LVL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRO" | "MUR" | "MVR" | "MWK" | "MXN" | "MYR" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SPL" | "SRD" | "STD" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TVD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "UYU" | "UZS" | "VEF" | "VND" | "VUV" | "WST" | "XAF" | "XCD" | "XDR" | "XOF" | "XPF" | "YER" | "ZAR" | "ZMW" | "ZWD" | "BTC" | undefined;
|
|
1507
1337
|
id?: string | undefined;
|
|
1508
1338
|
description?: string | undefined;
|
|
1509
1339
|
amount?: number | undefined;
|
|
@@ -1526,6 +1356,7 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1526
1356
|
childItems?: unknown[] | undefined;
|
|
1527
1357
|
}[] | undefined;
|
|
1528
1358
|
organizationId?: string | undefined;
|
|
1359
|
+
amount?: number | undefined;
|
|
1529
1360
|
creditAdj?: number | undefined;
|
|
1530
1361
|
refundAdj?: number | undefined;
|
|
1531
1362
|
invoiceDate?: string | undefined;
|
|
@@ -1534,7 +1365,7 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1534
1365
|
balance?: number | undefined;
|
|
1535
1366
|
bundleKeys?: string | undefined;
|
|
1536
1367
|
credits?: {
|
|
1537
|
-
currency?: "
|
|
1368
|
+
currency?: "AED" | "AFN" | "ALL" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BRL" | "BSD" | "BTN" | "BWP" | "BYR" | "BZD" | "CAD" | "CDF" | "CHF" | "CLP" | "CNY" | "COP" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GGP" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "IMP" | "INR" | "IQD" | "IRR" | "ISK" | "JEP" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LTL" | "LVL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRO" | "MUR" | "MVR" | "MWK" | "MXN" | "MYR" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SPL" | "SRD" | "STD" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TVD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "UYU" | "UZS" | "VEF" | "VND" | "VUV" | "WST" | "XAF" | "XCD" | "XDR" | "XOF" | "XPF" | "YER" | "ZAR" | "ZMW" | "ZWD" | "BTC" | undefined;
|
|
1538
1369
|
id?: string | undefined;
|
|
1539
1370
|
description?: string | undefined;
|
|
1540
1371
|
amount?: number | undefined;
|
|
@@ -1557,12 +1388,11 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1557
1388
|
childItems?: unknown[] | undefined;
|
|
1558
1389
|
}[] | undefined;
|
|
1559
1390
|
}, {
|
|
1560
|
-
currency?: "
|
|
1391
|
+
currency?: "AED" | "AFN" | "ALL" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BRL" | "BSD" | "BTN" | "BWP" | "BYR" | "BZD" | "CAD" | "CDF" | "CHF" | "CLP" | "CNY" | "COP" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GGP" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "IMP" | "INR" | "IQD" | "IRR" | "ISK" | "JEP" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LTL" | "LVL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRO" | "MUR" | "MVR" | "MWK" | "MXN" | "MYR" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SPL" | "SRD" | "STD" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TVD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "UYU" | "UZS" | "VEF" | "VND" | "VUV" | "WST" | "XAF" | "XCD" | "XDR" | "XOF" | "XPF" | "YER" | "ZAR" | "ZMW" | "ZWD" | "BTC" | undefined;
|
|
1561
1392
|
id?: string | undefined;
|
|
1562
1393
|
status?: "DRAFT" | "COMMITTED" | "VOID" | undefined;
|
|
1563
|
-
amount?: number | undefined;
|
|
1564
1394
|
items?: {
|
|
1565
|
-
currency?: "
|
|
1395
|
+
currency?: "AED" | "AFN" | "ALL" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BRL" | "BSD" | "BTN" | "BWP" | "BYR" | "BZD" | "CAD" | "CDF" | "CHF" | "CLP" | "CNY" | "COP" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GGP" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "IMP" | "INR" | "IQD" | "IRR" | "ISK" | "JEP" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LTL" | "LVL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRO" | "MUR" | "MVR" | "MWK" | "MXN" | "MYR" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SPL" | "SRD" | "STD" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TVD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "UYU" | "UZS" | "VEF" | "VND" | "VUV" | "WST" | "XAF" | "XCD" | "XDR" | "XOF" | "XPF" | "YER" | "ZAR" | "ZMW" | "ZWD" | "BTC" | undefined;
|
|
1566
1396
|
id?: string | undefined;
|
|
1567
1397
|
description?: string | undefined;
|
|
1568
1398
|
amount?: number | undefined;
|
|
@@ -1585,6 +1415,7 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1585
1415
|
childItems?: unknown[] | undefined;
|
|
1586
1416
|
}[] | undefined;
|
|
1587
1417
|
organizationId?: string | undefined;
|
|
1418
|
+
amount?: number | undefined;
|
|
1588
1419
|
creditAdj?: number | undefined;
|
|
1589
1420
|
refundAdj?: number | undefined;
|
|
1590
1421
|
invoiceDate?: string | undefined;
|
|
@@ -1593,7 +1424,7 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1593
1424
|
balance?: number | undefined;
|
|
1594
1425
|
bundleKeys?: string | undefined;
|
|
1595
1426
|
credits?: {
|
|
1596
|
-
currency?: "
|
|
1427
|
+
currency?: "AED" | "AFN" | "ALL" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BRL" | "BSD" | "BTN" | "BWP" | "BYR" | "BZD" | "CAD" | "CDF" | "CHF" | "CLP" | "CNY" | "COP" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GGP" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "IMP" | "INR" | "IQD" | "IRR" | "ISK" | "JEP" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LTL" | "LVL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRO" | "MUR" | "MVR" | "MWK" | "MXN" | "MYR" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SPL" | "SRD" | "STD" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TVD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "UYU" | "UZS" | "VEF" | "VND" | "VUV" | "WST" | "XAF" | "XCD" | "XDR" | "XOF" | "XPF" | "YER" | "ZAR" | "ZMW" | "ZWD" | "BTC" | undefined;
|
|
1597
1428
|
id?: string | undefined;
|
|
1598
1429
|
description?: string | undefined;
|
|
1599
1430
|
amount?: number | undefined;
|
|
@@ -1623,66 +1454,242 @@ export declare const zGetInvoiceResponse: z.ZodObject<{
|
|
|
1623
1454
|
}, {
|
|
1624
1455
|
html?: string | undefined;
|
|
1625
1456
|
}>;
|
|
1626
|
-
export declare const
|
|
1627
|
-
|
|
1628
|
-
|
|
1629
|
-
|
|
1630
|
-
|
|
1631
|
-
|
|
1632
|
-
|
|
1633
|
-
|
|
1634
|
-
|
|
1635
|
-
|
|
1636
|
-
|
|
1637
|
-
|
|
1638
|
-
project: string;
|
|
1639
|
-
enabled: boolean;
|
|
1640
|
-
}, {
|
|
1641
|
-
project: string;
|
|
1642
|
-
enabled?: boolean | undefined;
|
|
1643
|
-
}>>;
|
|
1644
|
-
hetzner: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
1645
|
-
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1646
|
-
apiKey: z.ZodOptional<z.ZodString>;
|
|
1647
|
-
}, "strip", z.ZodTypeAny, {
|
|
1648
|
-
enabled: boolean;
|
|
1649
|
-
apiKey?: string | undefined;
|
|
1650
|
-
}, {
|
|
1651
|
-
apiKey?: string | undefined;
|
|
1652
|
-
enabled?: boolean | undefined;
|
|
1653
|
-
}>, z.ZodObject<{
|
|
1654
|
-
apiKey: z.ZodOptional<z.ZodString>;
|
|
1655
|
-
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1656
|
-
}, "strip", z.ZodTypeAny, {
|
|
1657
|
-
enabled: boolean;
|
|
1658
|
-
apiKey?: string | undefined;
|
|
1659
|
-
}, {
|
|
1660
|
-
apiKey?: string | undefined;
|
|
1661
|
-
enabled?: boolean | undefined;
|
|
1662
|
-
}>]>>;
|
|
1663
|
-
aws: z.ZodOptional<z.ZodObject<{
|
|
1664
|
-
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1665
|
-
controllerRoleArn: z.ZodString;
|
|
1666
|
-
}, "strip", z.ZodTypeAny, {
|
|
1667
|
-
controllerRoleArn: string;
|
|
1668
|
-
enabled: boolean;
|
|
1669
|
-
}, {
|
|
1670
|
-
controllerRoleArn: string;
|
|
1671
|
-
enabled?: boolean | undefined;
|
|
1672
|
-
}>>;
|
|
1673
|
-
id: z.ZodString;
|
|
1674
|
-
type: z.ZodEnum<["managed", "connected"]>;
|
|
1457
|
+
export declare const zGetContactResponse: z.ZodObject<{
|
|
1458
|
+
company: z.ZodOptional<z.ZodString>;
|
|
1459
|
+
address1: z.ZodOptional<z.ZodString>;
|
|
1460
|
+
address2: z.ZodOptional<z.ZodString>;
|
|
1461
|
+
postalCode: z.ZodOptional<z.ZodString>;
|
|
1462
|
+
city: z.ZodOptional<z.ZodString>;
|
|
1463
|
+
state: z.ZodOptional<z.ZodString>;
|
|
1464
|
+
country: z.ZodOptional<z.ZodString>;
|
|
1465
|
+
phone: z.ZodOptional<z.ZodString>;
|
|
1466
|
+
email: z.ZodString;
|
|
1467
|
+
first_name: z.ZodString;
|
|
1468
|
+
last_name: z.ZodString;
|
|
1675
1469
|
}, "strip", z.ZodTypeAny, {
|
|
1676
|
-
|
|
1677
|
-
|
|
1678
|
-
|
|
1679
|
-
|
|
1680
|
-
|
|
1681
|
-
|
|
1682
|
-
|
|
1683
|
-
|
|
1684
|
-
|
|
1685
|
-
|
|
1470
|
+
email: string;
|
|
1471
|
+
first_name: string;
|
|
1472
|
+
last_name: string;
|
|
1473
|
+
state?: string | undefined;
|
|
1474
|
+
country?: string | undefined;
|
|
1475
|
+
company?: string | undefined;
|
|
1476
|
+
address1?: string | undefined;
|
|
1477
|
+
address2?: string | undefined;
|
|
1478
|
+
postalCode?: string | undefined;
|
|
1479
|
+
city?: string | undefined;
|
|
1480
|
+
phone?: string | undefined;
|
|
1481
|
+
}, {
|
|
1482
|
+
email: string;
|
|
1483
|
+
first_name: string;
|
|
1484
|
+
last_name: string;
|
|
1485
|
+
state?: string | undefined;
|
|
1486
|
+
country?: string | undefined;
|
|
1487
|
+
company?: string | undefined;
|
|
1488
|
+
address1?: string | undefined;
|
|
1489
|
+
address2?: string | undefined;
|
|
1490
|
+
postalCode?: string | undefined;
|
|
1491
|
+
city?: string | undefined;
|
|
1492
|
+
phone?: string | undefined;
|
|
1493
|
+
}>;
|
|
1494
|
+
export declare const zUpdateContactResponse: z.ZodObject<{
|
|
1495
|
+
company: z.ZodOptional<z.ZodString>;
|
|
1496
|
+
address1: z.ZodOptional<z.ZodString>;
|
|
1497
|
+
address2: z.ZodOptional<z.ZodString>;
|
|
1498
|
+
postalCode: z.ZodOptional<z.ZodString>;
|
|
1499
|
+
city: z.ZodOptional<z.ZodString>;
|
|
1500
|
+
state: z.ZodOptional<z.ZodString>;
|
|
1501
|
+
country: z.ZodOptional<z.ZodString>;
|
|
1502
|
+
phone: z.ZodOptional<z.ZodString>;
|
|
1503
|
+
email: z.ZodString;
|
|
1504
|
+
first_name: z.ZodString;
|
|
1505
|
+
last_name: z.ZodString;
|
|
1506
|
+
}, "strip", z.ZodTypeAny, {
|
|
1507
|
+
email: string;
|
|
1508
|
+
first_name: string;
|
|
1509
|
+
last_name: string;
|
|
1510
|
+
state?: string | undefined;
|
|
1511
|
+
country?: string | undefined;
|
|
1512
|
+
company?: string | undefined;
|
|
1513
|
+
address1?: string | undefined;
|
|
1514
|
+
address2?: string | undefined;
|
|
1515
|
+
postalCode?: string | undefined;
|
|
1516
|
+
city?: string | undefined;
|
|
1517
|
+
phone?: string | undefined;
|
|
1518
|
+
}, {
|
|
1519
|
+
email: string;
|
|
1520
|
+
first_name: string;
|
|
1521
|
+
last_name: string;
|
|
1522
|
+
state?: string | undefined;
|
|
1523
|
+
country?: string | undefined;
|
|
1524
|
+
company?: string | undefined;
|
|
1525
|
+
address1?: string | undefined;
|
|
1526
|
+
address2?: string | undefined;
|
|
1527
|
+
postalCode?: string | undefined;
|
|
1528
|
+
city?: string | undefined;
|
|
1529
|
+
phone?: string | undefined;
|
|
1530
|
+
}>;
|
|
1531
|
+
export declare const zGetCreditsResponse: z.ZodArray<z.ZodObject<{
|
|
1532
|
+
id: z.ZodOptional<z.ZodString>;
|
|
1533
|
+
date_created: z.ZodString;
|
|
1534
|
+
code: z.ZodString;
|
|
1535
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1536
|
+
products: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1537
|
+
type: z.ZodEnum<["credit", "discount"]>;
|
|
1538
|
+
value: z.ZodNumber;
|
|
1539
|
+
billing_period: z.ZodString;
|
|
1540
|
+
value_remaining: z.ZodOptional<z.ZodNumber>;
|
|
1541
|
+
}, "strip", z.ZodTypeAny, {
|
|
1542
|
+
code: string;
|
|
1543
|
+
type: "credit" | "discount";
|
|
1544
|
+
value: number;
|
|
1545
|
+
date_created: string;
|
|
1546
|
+
billing_period: string;
|
|
1547
|
+
id?: string | undefined;
|
|
1548
|
+
description?: string | undefined;
|
|
1549
|
+
products?: string[] | undefined;
|
|
1550
|
+
value_remaining?: number | undefined;
|
|
1551
|
+
}, {
|
|
1552
|
+
code: string;
|
|
1553
|
+
type: "credit" | "discount";
|
|
1554
|
+
value: number;
|
|
1555
|
+
date_created: string;
|
|
1556
|
+
billing_period: string;
|
|
1557
|
+
id?: string | undefined;
|
|
1558
|
+
description?: string | undefined;
|
|
1559
|
+
products?: string[] | undefined;
|
|
1560
|
+
value_remaining?: number | undefined;
|
|
1561
|
+
}>, "many">;
|
|
1562
|
+
export declare const zListChartsResponse: z.ZodArray<z.ZodObject<{
|
|
1563
|
+
values: z.ZodString;
|
|
1564
|
+
version_channel: z.ZodString;
|
|
1565
|
+
name: z.ZodString;
|
|
1566
|
+
namespace: z.ZodString;
|
|
1567
|
+
chart: z.ZodString;
|
|
1568
|
+
status: z.ZodEnum<["InstallSucceeded", "InstallFailed", "UpgradeSucceeded", "UpgradeFailed", "TestSucceeded", "TestFailed", "RollbackSucceeded", "RollbackFailed", "UninstallSucceeded", "UninstallFailed", "ArtifactFailed", "DependencyNotReady"]>;
|
|
1569
|
+
version_current: z.ZodString;
|
|
1570
|
+
created_at: z.ZodString;
|
|
1571
|
+
updated_at: z.ZodString;
|
|
1572
|
+
ready: z.ZodBoolean;
|
|
1573
|
+
}, "strip", z.ZodTypeAny, {
|
|
1574
|
+
values: string;
|
|
1575
|
+
name: string;
|
|
1576
|
+
ready: boolean;
|
|
1577
|
+
status: "InstallSucceeded" | "InstallFailed" | "UpgradeSucceeded" | "UpgradeFailed" | "TestSucceeded" | "TestFailed" | "RollbackSucceeded" | "RollbackFailed" | "UninstallSucceeded" | "UninstallFailed" | "ArtifactFailed" | "DependencyNotReady";
|
|
1578
|
+
version_channel: string;
|
|
1579
|
+
namespace: string;
|
|
1580
|
+
chart: string;
|
|
1581
|
+
version_current: string;
|
|
1582
|
+
created_at: string;
|
|
1583
|
+
updated_at: string;
|
|
1584
|
+
}, {
|
|
1585
|
+
values: string;
|
|
1586
|
+
name: string;
|
|
1587
|
+
ready: boolean;
|
|
1588
|
+
status: "InstallSucceeded" | "InstallFailed" | "UpgradeSucceeded" | "UpgradeFailed" | "TestSucceeded" | "TestFailed" | "RollbackSucceeded" | "RollbackFailed" | "UninstallSucceeded" | "UninstallFailed" | "ArtifactFailed" | "DependencyNotReady";
|
|
1589
|
+
version_channel: string;
|
|
1590
|
+
namespace: string;
|
|
1591
|
+
chart: string;
|
|
1592
|
+
version_current: string;
|
|
1593
|
+
created_at: string;
|
|
1594
|
+
updated_at: string;
|
|
1595
|
+
}>, "many">;
|
|
1596
|
+
export declare const zCreateChartResponse: z.ZodString;
|
|
1597
|
+
export declare const zDeleteChartResponse: z.ZodString;
|
|
1598
|
+
export declare const zGetChartResponse: z.ZodObject<{
|
|
1599
|
+
values: z.ZodString;
|
|
1600
|
+
version_channel: z.ZodString;
|
|
1601
|
+
name: z.ZodString;
|
|
1602
|
+
namespace: z.ZodString;
|
|
1603
|
+
chart: z.ZodString;
|
|
1604
|
+
status: z.ZodEnum<["InstallSucceeded", "InstallFailed", "UpgradeSucceeded", "UpgradeFailed", "TestSucceeded", "TestFailed", "RollbackSucceeded", "RollbackFailed", "UninstallSucceeded", "UninstallFailed", "ArtifactFailed", "DependencyNotReady"]>;
|
|
1605
|
+
version_current: z.ZodString;
|
|
1606
|
+
created_at: z.ZodString;
|
|
1607
|
+
updated_at: z.ZodString;
|
|
1608
|
+
ready: z.ZodBoolean;
|
|
1609
|
+
}, "strip", z.ZodTypeAny, {
|
|
1610
|
+
values: string;
|
|
1611
|
+
name: string;
|
|
1612
|
+
ready: boolean;
|
|
1613
|
+
status: "InstallSucceeded" | "InstallFailed" | "UpgradeSucceeded" | "UpgradeFailed" | "TestSucceeded" | "TestFailed" | "RollbackSucceeded" | "RollbackFailed" | "UninstallSucceeded" | "UninstallFailed" | "ArtifactFailed" | "DependencyNotReady";
|
|
1614
|
+
version_channel: string;
|
|
1615
|
+
namespace: string;
|
|
1616
|
+
chart: string;
|
|
1617
|
+
version_current: string;
|
|
1618
|
+
created_at: string;
|
|
1619
|
+
updated_at: string;
|
|
1620
|
+
}, {
|
|
1621
|
+
values: string;
|
|
1622
|
+
name: string;
|
|
1623
|
+
ready: boolean;
|
|
1624
|
+
status: "InstallSucceeded" | "InstallFailed" | "UpgradeSucceeded" | "UpgradeFailed" | "TestSucceeded" | "TestFailed" | "RollbackSucceeded" | "RollbackFailed" | "UninstallSucceeded" | "UninstallFailed" | "ArtifactFailed" | "DependencyNotReady";
|
|
1625
|
+
version_channel: string;
|
|
1626
|
+
namespace: string;
|
|
1627
|
+
chart: string;
|
|
1628
|
+
version_current: string;
|
|
1629
|
+
created_at: string;
|
|
1630
|
+
updated_at: string;
|
|
1631
|
+
}>;
|
|
1632
|
+
export declare const zUpdateChartResponse: z.ZodString;
|
|
1633
|
+
export declare const zListFleetsResponse: z.ZodArray<z.ZodObject<{
|
|
1634
|
+
limits: z.ZodOptional<z.ZodObject<{
|
|
1635
|
+
cpu: z.ZodNumber;
|
|
1636
|
+
}, "strip", z.ZodTypeAny, {
|
|
1637
|
+
cpu: number;
|
|
1638
|
+
}, {
|
|
1639
|
+
cpu: number;
|
|
1640
|
+
}>>;
|
|
1641
|
+
gcp: z.ZodOptional<z.ZodObject<{
|
|
1642
|
+
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1643
|
+
project: z.ZodString;
|
|
1644
|
+
}, "strip", z.ZodTypeAny, {
|
|
1645
|
+
project: string;
|
|
1646
|
+
enabled: boolean;
|
|
1647
|
+
}, {
|
|
1648
|
+
project: string;
|
|
1649
|
+
enabled?: boolean | undefined;
|
|
1650
|
+
}>>;
|
|
1651
|
+
hetzner: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
1652
|
+
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1653
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
1654
|
+
}, "strip", z.ZodTypeAny, {
|
|
1655
|
+
enabled: boolean;
|
|
1656
|
+
apiKey?: string | undefined;
|
|
1657
|
+
}, {
|
|
1658
|
+
apiKey?: string | undefined;
|
|
1659
|
+
enabled?: boolean | undefined;
|
|
1660
|
+
}>, z.ZodObject<{
|
|
1661
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
1662
|
+
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1663
|
+
}, "strip", z.ZodTypeAny, {
|
|
1664
|
+
enabled: boolean;
|
|
1665
|
+
apiKey?: string | undefined;
|
|
1666
|
+
}, {
|
|
1667
|
+
apiKey?: string | undefined;
|
|
1668
|
+
enabled?: boolean | undefined;
|
|
1669
|
+
}>]>>;
|
|
1670
|
+
aws: z.ZodOptional<z.ZodObject<{
|
|
1671
|
+
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1672
|
+
controllerRoleArn: z.ZodString;
|
|
1673
|
+
}, "strip", z.ZodTypeAny, {
|
|
1674
|
+
controllerRoleArn: string;
|
|
1675
|
+
enabled: boolean;
|
|
1676
|
+
}, {
|
|
1677
|
+
controllerRoleArn: string;
|
|
1678
|
+
enabled?: boolean | undefined;
|
|
1679
|
+
}>>;
|
|
1680
|
+
id: z.ZodString;
|
|
1681
|
+
type: z.ZodEnum<["managed", "connected"]>;
|
|
1682
|
+
}, "strip", z.ZodTypeAny, {
|
|
1683
|
+
type: "connected" | "managed";
|
|
1684
|
+
id: string;
|
|
1685
|
+
limits?: {
|
|
1686
|
+
cpu: number;
|
|
1687
|
+
} | undefined;
|
|
1688
|
+
gcp?: {
|
|
1689
|
+
project: string;
|
|
1690
|
+
enabled: boolean;
|
|
1691
|
+
} | undefined;
|
|
1692
|
+
hetzner?: {
|
|
1686
1693
|
enabled: boolean;
|
|
1687
1694
|
apiKey?: string | undefined;
|
|
1688
1695
|
} | {
|
|
@@ -1827,28 +1834,28 @@ export declare const zListClustersResponse: z.ZodArray<z.ZodObject<{
|
|
|
1827
1834
|
name: string;
|
|
1828
1835
|
id: string;
|
|
1829
1836
|
status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
|
|
1830
|
-
tier: "basic" | "pro";
|
|
1831
1837
|
version_channel: string;
|
|
1838
|
+
tier: "basic" | "pro";
|
|
1839
|
+
ready?: boolean | undefined;
|
|
1832
1840
|
region?: "staging" | "northamerica-central-1" | undefined;
|
|
1833
|
-
endpoint?: string | undefined;
|
|
1834
|
-
certificate_ca?: string | undefined;
|
|
1835
1841
|
version_current?: string | undefined;
|
|
1836
1842
|
created_at?: string | undefined;
|
|
1837
1843
|
updated_at?: string | undefined;
|
|
1838
|
-
|
|
1844
|
+
endpoint?: string | undefined;
|
|
1845
|
+
certificate_ca?: string | undefined;
|
|
1839
1846
|
}, {
|
|
1840
1847
|
name: string;
|
|
1841
1848
|
id: string;
|
|
1842
1849
|
status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
|
|
1843
1850
|
tier: "basic" | "pro";
|
|
1851
|
+
ready?: boolean | undefined;
|
|
1844
1852
|
region?: "staging" | "northamerica-central-1" | undefined;
|
|
1845
|
-
endpoint?: string | undefined;
|
|
1846
1853
|
version_channel?: string | undefined;
|
|
1847
|
-
certificate_ca?: string | undefined;
|
|
1848
1854
|
version_current?: string | undefined;
|
|
1849
1855
|
created_at?: string | undefined;
|
|
1850
1856
|
updated_at?: string | undefined;
|
|
1851
|
-
|
|
1857
|
+
endpoint?: string | undefined;
|
|
1858
|
+
certificate_ca?: string | undefined;
|
|
1852
1859
|
}>, "many">;
|
|
1853
1860
|
export declare const zCreateClusterResponse: z.ZodString;
|
|
1854
1861
|
export declare const zDeleteClusterResponse: z.ZodString;
|
|
@@ -1869,28 +1876,28 @@ export declare const zGetClusterResponse: z.ZodObject<{
|
|
|
1869
1876
|
name: string;
|
|
1870
1877
|
id: string;
|
|
1871
1878
|
status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
|
|
1872
|
-
tier: "basic" | "pro";
|
|
1873
1879
|
version_channel: string;
|
|
1880
|
+
tier: "basic" | "pro";
|
|
1881
|
+
ready?: boolean | undefined;
|
|
1874
1882
|
region?: "staging" | "northamerica-central-1" | undefined;
|
|
1875
|
-
endpoint?: string | undefined;
|
|
1876
|
-
certificate_ca?: string | undefined;
|
|
1877
1883
|
version_current?: string | undefined;
|
|
1878
1884
|
created_at?: string | undefined;
|
|
1879
1885
|
updated_at?: string | undefined;
|
|
1880
|
-
|
|
1886
|
+
endpoint?: string | undefined;
|
|
1887
|
+
certificate_ca?: string | undefined;
|
|
1881
1888
|
}, {
|
|
1882
1889
|
name: string;
|
|
1883
1890
|
id: string;
|
|
1884
1891
|
status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
|
|
1885
1892
|
tier: "basic" | "pro";
|
|
1893
|
+
ready?: boolean | undefined;
|
|
1886
1894
|
region?: "staging" | "northamerica-central-1" | undefined;
|
|
1887
|
-
endpoint?: string | undefined;
|
|
1888
1895
|
version_channel?: string | undefined;
|
|
1889
|
-
certificate_ca?: string | undefined;
|
|
1890
1896
|
version_current?: string | undefined;
|
|
1891
1897
|
created_at?: string | undefined;
|
|
1892
1898
|
updated_at?: string | undefined;
|
|
1893
|
-
|
|
1899
|
+
endpoint?: string | undefined;
|
|
1900
|
+
certificate_ca?: string | undefined;
|
|
1894
1901
|
}>;
|
|
1895
1902
|
export declare const zUpdateClusterResponse: z.ZodObject<{
|
|
1896
1903
|
name: z.ZodString;
|
|
@@ -1909,28 +1916,28 @@ export declare const zUpdateClusterResponse: z.ZodObject<{
|
|
|
1909
1916
|
name: string;
|
|
1910
1917
|
id: string;
|
|
1911
1918
|
status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
|
|
1912
|
-
tier: "basic" | "pro";
|
|
1913
1919
|
version_channel: string;
|
|
1920
|
+
tier: "basic" | "pro";
|
|
1921
|
+
ready?: boolean | undefined;
|
|
1914
1922
|
region?: "staging" | "northamerica-central-1" | undefined;
|
|
1915
|
-
endpoint?: string | undefined;
|
|
1916
|
-
certificate_ca?: string | undefined;
|
|
1917
1923
|
version_current?: string | undefined;
|
|
1918
1924
|
created_at?: string | undefined;
|
|
1919
1925
|
updated_at?: string | undefined;
|
|
1920
|
-
|
|
1926
|
+
endpoint?: string | undefined;
|
|
1927
|
+
certificate_ca?: string | undefined;
|
|
1921
1928
|
}, {
|
|
1922
1929
|
name: string;
|
|
1923
1930
|
id: string;
|
|
1924
1931
|
status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
|
|
1925
1932
|
tier: "basic" | "pro";
|
|
1933
|
+
ready?: boolean | undefined;
|
|
1926
1934
|
region?: "staging" | "northamerica-central-1" | undefined;
|
|
1927
|
-
endpoint?: string | undefined;
|
|
1928
1935
|
version_channel?: string | undefined;
|
|
1929
|
-
certificate_ca?: string | undefined;
|
|
1930
1936
|
version_current?: string | undefined;
|
|
1931
1937
|
created_at?: string | undefined;
|
|
1932
1938
|
updated_at?: string | undefined;
|
|
1933
|
-
|
|
1939
|
+
endpoint?: string | undefined;
|
|
1940
|
+
certificate_ca?: string | undefined;
|
|
1934
1941
|
}>;
|
|
1935
1942
|
export declare const zGetJoinInformationResponse: z.ZodObject<{
|
|
1936
1943
|
name: z.ZodString;
|
|
@@ -1949,200 +1956,29 @@ export declare const zGetJoinInformationResponse: z.ZodObject<{
|
|
|
1949
1956
|
name: string;
|
|
1950
1957
|
id: string;
|
|
1951
1958
|
status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
|
|
1952
|
-
tier: "basic" | "pro";
|
|
1953
1959
|
version_channel: string;
|
|
1960
|
+
tier: "basic" | "pro";
|
|
1961
|
+
ready?: boolean | undefined;
|
|
1954
1962
|
region?: "staging" | "northamerica-central-1" | undefined;
|
|
1955
|
-
endpoint?: string | undefined;
|
|
1956
|
-
certificate_ca?: string | undefined;
|
|
1957
1963
|
version_current?: string | undefined;
|
|
1958
1964
|
created_at?: string | undefined;
|
|
1959
1965
|
updated_at?: string | undefined;
|
|
1960
|
-
|
|
1966
|
+
endpoint?: string | undefined;
|
|
1967
|
+
certificate_ca?: string | undefined;
|
|
1961
1968
|
}, {
|
|
1962
1969
|
name: string;
|
|
1963
1970
|
id: string;
|
|
1964
1971
|
status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
|
|
1965
1972
|
tier: "basic" | "pro";
|
|
1973
|
+
ready?: boolean | undefined;
|
|
1966
1974
|
region?: "staging" | "northamerica-central-1" | undefined;
|
|
1967
|
-
endpoint?: string | undefined;
|
|
1968
1975
|
version_channel?: string | undefined;
|
|
1969
|
-
certificate_ca?: string | undefined;
|
|
1970
1976
|
version_current?: string | undefined;
|
|
1971
1977
|
created_at?: string | undefined;
|
|
1972
1978
|
updated_at?: string | undefined;
|
|
1973
|
-
|
|
1979
|
+
endpoint?: string | undefined;
|
|
1980
|
+
certificate_ca?: string | undefined;
|
|
1974
1981
|
}>;
|
|
1975
|
-
export declare const zGetInfrastructureResponse: z.ZodArray<z.ZodObject<{
|
|
1976
|
-
sku: z.ZodString;
|
|
1977
|
-
provider: z.ZodString;
|
|
1978
|
-
region: z.ZodString;
|
|
1979
|
-
sub_region: z.ZodString;
|
|
1980
|
-
csp_region: z.ZodString;
|
|
1981
|
-
csp_zone: z.ZodString;
|
|
1982
|
-
instance_type: z.ZodString;
|
|
1983
|
-
architecture: z.ZodString;
|
|
1984
|
-
os: z.ZodString;
|
|
1985
|
-
vcpu: z.ZodNumber;
|
|
1986
|
-
memory: z.ZodNumber;
|
|
1987
|
-
local_storage: z.ZodNumber;
|
|
1988
|
-
accelerator_name: z.ZodOptional<z.ZodString>;
|
|
1989
|
-
accelerator_manufacturer: z.ZodOptional<z.ZodString>;
|
|
1990
|
-
accelerator_count: z.ZodOptional<z.ZodNumber>;
|
|
1991
|
-
accelerator_memory: z.ZodOptional<z.ZodNumber>;
|
|
1992
|
-
pods_capacity: z.ZodOptional<z.ZodNumber>;
|
|
1993
|
-
capacity_type: z.ZodOptional<z.ZodString>;
|
|
1994
|
-
price: z.ZodNumber;
|
|
1995
|
-
available: z.ZodOptional<z.ZodBoolean>;
|
|
1996
|
-
}, "strip", z.ZodTypeAny, {
|
|
1997
|
-
memory: number;
|
|
1998
|
-
region: string;
|
|
1999
|
-
sku: string;
|
|
2000
|
-
provider: string;
|
|
2001
|
-
sub_region: string;
|
|
2002
|
-
csp_region: string;
|
|
2003
|
-
csp_zone: string;
|
|
2004
|
-
instance_type: string;
|
|
2005
|
-
architecture: string;
|
|
2006
|
-
os: string;
|
|
2007
|
-
vcpu: number;
|
|
2008
|
-
local_storage: number;
|
|
2009
|
-
price: number;
|
|
2010
|
-
accelerator_name?: string | undefined;
|
|
2011
|
-
accelerator_manufacturer?: string | undefined;
|
|
2012
|
-
accelerator_count?: number | undefined;
|
|
2013
|
-
accelerator_memory?: number | undefined;
|
|
2014
|
-
pods_capacity?: number | undefined;
|
|
2015
|
-
capacity_type?: string | undefined;
|
|
2016
|
-
available?: boolean | undefined;
|
|
2017
|
-
}, {
|
|
2018
|
-
memory: number;
|
|
2019
|
-
region: string;
|
|
2020
|
-
sku: string;
|
|
2021
|
-
provider: string;
|
|
2022
|
-
sub_region: string;
|
|
2023
|
-
csp_region: string;
|
|
2024
|
-
csp_zone: string;
|
|
2025
|
-
instance_type: string;
|
|
2026
|
-
architecture: string;
|
|
2027
|
-
os: string;
|
|
2028
|
-
vcpu: number;
|
|
2029
|
-
local_storage: number;
|
|
2030
|
-
price: number;
|
|
2031
|
-
accelerator_name?: string | undefined;
|
|
2032
|
-
accelerator_manufacturer?: string | undefined;
|
|
2033
|
-
accelerator_count?: number | undefined;
|
|
2034
|
-
accelerator_memory?: number | undefined;
|
|
2035
|
-
pods_capacity?: number | undefined;
|
|
2036
|
-
capacity_type?: string | undefined;
|
|
2037
|
-
available?: boolean | undefined;
|
|
2038
|
-
}>, "many">;
|
|
2039
|
-
export declare const zGetFacetsResponse: z.ZodArray<z.ZodObject<{
|
|
2040
|
-
provider: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2041
|
-
region: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2042
|
-
sub_region: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2043
|
-
csp_region: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2044
|
-
vcpu_min: z.ZodOptional<z.ZodNumber>;
|
|
2045
|
-
vcpu_max: z.ZodOptional<z.ZodNumber>;
|
|
2046
|
-
memory_min: z.ZodOptional<z.ZodNumber>;
|
|
2047
|
-
memory_max: z.ZodOptional<z.ZodNumber>;
|
|
2048
|
-
storage_local_min: z.ZodOptional<z.ZodNumber>;
|
|
2049
|
-
storage_local_max: z.ZodOptional<z.ZodNumber>;
|
|
2050
|
-
accelerator_name: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2051
|
-
accelerator_manufacturer: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2052
|
-
accelerator_count_min: z.ZodOptional<z.ZodNumber>;
|
|
2053
|
-
accelerator_count_max: z.ZodOptional<z.ZodNumber>;
|
|
2054
|
-
accelerator_memory_min: z.ZodOptional<z.ZodNumber>;
|
|
2055
|
-
accelerator_memory_max: z.ZodOptional<z.ZodNumber>;
|
|
2056
|
-
price_min: z.ZodOptional<z.ZodNumber>;
|
|
2057
|
-
price_max: z.ZodOptional<z.ZodNumber>;
|
|
2058
|
-
regions_struct: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2059
|
-
region: z.ZodOptional<z.ZodString>;
|
|
2060
|
-
sub_region: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2061
|
-
}, "strip", z.ZodTypeAny, {
|
|
2062
|
-
region?: string | undefined;
|
|
2063
|
-
sub_region?: string[] | undefined;
|
|
2064
|
-
}, {
|
|
2065
|
-
region?: string | undefined;
|
|
2066
|
-
sub_region?: string[] | undefined;
|
|
2067
|
-
}>, "many">>;
|
|
2068
|
-
accelerators_struct: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2069
|
-
accelerator_manufacturer: z.ZodOptional<z.ZodString>;
|
|
2070
|
-
accelerator_name: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2071
|
-
}, "strip", z.ZodTypeAny, {
|
|
2072
|
-
accelerator_name?: string[] | undefined;
|
|
2073
|
-
accelerator_manufacturer?: string | undefined;
|
|
2074
|
-
}, {
|
|
2075
|
-
accelerator_name?: string[] | undefined;
|
|
2076
|
-
accelerator_manufacturer?: string | undefined;
|
|
2077
|
-
}>, "many">>;
|
|
2078
|
-
count_total: z.ZodOptional<z.ZodNumber>;
|
|
2079
|
-
count_accelerators: z.ZodOptional<z.ZodNumber>;
|
|
2080
|
-
count_instance_types: z.ZodOptional<z.ZodNumber>;
|
|
2081
|
-
count_accelerators_instance_types: z.ZodOptional<z.ZodNumber>;
|
|
2082
|
-
}, "strip", z.ZodTypeAny, {
|
|
2083
|
-
region?: string[] | undefined;
|
|
2084
|
-
provider?: string[] | undefined;
|
|
2085
|
-
sub_region?: string[] | undefined;
|
|
2086
|
-
csp_region?: string[] | undefined;
|
|
2087
|
-
accelerator_name?: string[] | undefined;
|
|
2088
|
-
accelerator_manufacturer?: string[] | undefined;
|
|
2089
|
-
accelerator_count_min?: number | undefined;
|
|
2090
|
-
accelerator_count_max?: number | undefined;
|
|
2091
|
-
accelerator_memory_min?: number | undefined;
|
|
2092
|
-
accelerator_memory_max?: number | undefined;
|
|
2093
|
-
memory_min?: number | undefined;
|
|
2094
|
-
memory_max?: number | undefined;
|
|
2095
|
-
vcpu_min?: number | undefined;
|
|
2096
|
-
vcpu_max?: number | undefined;
|
|
2097
|
-
storage_local_min?: number | undefined;
|
|
2098
|
-
storage_local_max?: number | undefined;
|
|
2099
|
-
price_min?: number | undefined;
|
|
2100
|
-
price_max?: number | undefined;
|
|
2101
|
-
regions_struct?: {
|
|
2102
|
-
region?: string | undefined;
|
|
2103
|
-
sub_region?: string[] | undefined;
|
|
2104
|
-
}[] | undefined;
|
|
2105
|
-
accelerators_struct?: {
|
|
2106
|
-
accelerator_name?: string[] | undefined;
|
|
2107
|
-
accelerator_manufacturer?: string | undefined;
|
|
2108
|
-
}[] | undefined;
|
|
2109
|
-
count_total?: number | undefined;
|
|
2110
|
-
count_accelerators?: number | undefined;
|
|
2111
|
-
count_instance_types?: number | undefined;
|
|
2112
|
-
count_accelerators_instance_types?: number | undefined;
|
|
2113
|
-
}, {
|
|
2114
|
-
region?: string[] | undefined;
|
|
2115
|
-
provider?: string[] | undefined;
|
|
2116
|
-
sub_region?: string[] | undefined;
|
|
2117
|
-
csp_region?: string[] | undefined;
|
|
2118
|
-
accelerator_name?: string[] | undefined;
|
|
2119
|
-
accelerator_manufacturer?: string[] | undefined;
|
|
2120
|
-
accelerator_count_min?: number | undefined;
|
|
2121
|
-
accelerator_count_max?: number | undefined;
|
|
2122
|
-
accelerator_memory_min?: number | undefined;
|
|
2123
|
-
accelerator_memory_max?: number | undefined;
|
|
2124
|
-
memory_min?: number | undefined;
|
|
2125
|
-
memory_max?: number | undefined;
|
|
2126
|
-
vcpu_min?: number | undefined;
|
|
2127
|
-
vcpu_max?: number | undefined;
|
|
2128
|
-
storage_local_min?: number | undefined;
|
|
2129
|
-
storage_local_max?: number | undefined;
|
|
2130
|
-
price_min?: number | undefined;
|
|
2131
|
-
price_max?: number | undefined;
|
|
2132
|
-
regions_struct?: {
|
|
2133
|
-
region?: string | undefined;
|
|
2134
|
-
sub_region?: string[] | undefined;
|
|
2135
|
-
}[] | undefined;
|
|
2136
|
-
accelerators_struct?: {
|
|
2137
|
-
accelerator_name?: string[] | undefined;
|
|
2138
|
-
accelerator_manufacturer?: string | undefined;
|
|
2139
|
-
}[] | undefined;
|
|
2140
|
-
count_total?: number | undefined;
|
|
2141
|
-
count_accelerators?: number | undefined;
|
|
2142
|
-
count_instance_types?: number | undefined;
|
|
2143
|
-
count_accelerators_instance_types?: number | undefined;
|
|
2144
|
-
}>, "many">;
|
|
2145
|
-
export declare const zGetRegionsResponse: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
|
|
2146
1982
|
export declare const zListInvitesResponse: z.ZodArray<z.ZodObject<{
|
|
2147
1983
|
id: z.ZodOptional<z.ZodString>;
|
|
2148
1984
|
organization_id: z.ZodOptional<z.ZodString>;
|
|
@@ -2200,345 +2036,59 @@ export declare const zGetInviteResponse: z.ZodObject<{
|
|
|
2200
2036
|
email?: string | undefined;
|
|
2201
2037
|
organization_id?: string | undefined;
|
|
2202
2038
|
}>;
|
|
2203
|
-
export declare const
|
|
2204
|
-
name: z.ZodString;
|
|
2205
|
-
contactInfo: z.ZodObject<{
|
|
2206
|
-
address1: z.ZodOptional<z.ZodString>;
|
|
2207
|
-
address2: z.ZodOptional<z.ZodString>;
|
|
2208
|
-
postalCode: z.ZodOptional<z.ZodString>;
|
|
2209
|
-
city: z.ZodOptional<z.ZodString>;
|
|
2210
|
-
state: z.ZodOptional<z.ZodString>;
|
|
2211
|
-
country: z.ZodOptional<z.ZodString>;
|
|
2212
|
-
phone: z.ZodOptional<z.ZodString>;
|
|
2213
|
-
email: z.ZodString;
|
|
2214
|
-
first_name: z.ZodString;
|
|
2215
|
-
last_name: z.ZodString;
|
|
2216
|
-
}, "strip", z.ZodTypeAny, {
|
|
2217
|
-
email: string;
|
|
2218
|
-
first_name: string;
|
|
2219
|
-
last_name: string;
|
|
2220
|
-
state?: string | undefined;
|
|
2221
|
-
country?: string | undefined;
|
|
2222
|
-
address1?: string | undefined;
|
|
2223
|
-
address2?: string | undefined;
|
|
2224
|
-
postalCode?: string | undefined;
|
|
2225
|
-
city?: string | undefined;
|
|
2226
|
-
phone?: string | undefined;
|
|
2227
|
-
}, {
|
|
2228
|
-
email: string;
|
|
2229
|
-
first_name: string;
|
|
2230
|
-
last_name: string;
|
|
2231
|
-
state?: string | undefined;
|
|
2232
|
-
country?: string | undefined;
|
|
2233
|
-
address1?: string | undefined;
|
|
2234
|
-
address2?: string | undefined;
|
|
2235
|
-
postalCode?: string | undefined;
|
|
2236
|
-
city?: string | undefined;
|
|
2237
|
-
phone?: string | undefined;
|
|
2238
|
-
}>;
|
|
2039
|
+
export declare const zListMarketplaceChartsResponse: z.ZodArray<z.ZodObject<{
|
|
2239
2040
|
id: z.ZodString;
|
|
2240
|
-
|
|
2241
|
-
|
|
2242
|
-
|
|
2243
|
-
|
|
2244
|
-
|
|
2245
|
-
|
|
2246
|
-
fleets_max: z.ZodNumber;
|
|
2247
|
-
managed_fleets_cpu_max: z.ZodNumber;
|
|
2248
|
-
cluster_tiers: z.ZodArray<z.ZodString, "many">;
|
|
2249
|
-
regions: z.ZodArray<z.ZodString, "many">;
|
|
2250
|
-
versions: z.ZodArray<z.ZodObject<{
|
|
2251
|
-
id: z.ZodString;
|
|
2252
|
-
label: z.ZodString;
|
|
2253
|
-
}, "strip", z.ZodTypeAny, {
|
|
2254
|
-
id: string;
|
|
2255
|
-
label: string;
|
|
2256
|
-
}, {
|
|
2257
|
-
id: string;
|
|
2258
|
-
label: string;
|
|
2259
|
-
}>, "many">;
|
|
2260
|
-
}, "strip", z.ZodTypeAny, {
|
|
2261
|
-
versions: {
|
|
2262
|
-
id: string;
|
|
2263
|
-
label: string;
|
|
2264
|
-
}[];
|
|
2265
|
-
basic_clusters_max: number;
|
|
2266
|
-
basic_clusters_available: number;
|
|
2267
|
-
pro_clusters_max: number;
|
|
2268
|
-
pro_clusters_available: number;
|
|
2269
|
-
fleets_max: number;
|
|
2270
|
-
managed_fleets_cpu_max: number;
|
|
2271
|
-
cluster_tiers: string[];
|
|
2272
|
-
regions: string[];
|
|
2273
|
-
}, {
|
|
2274
|
-
versions: {
|
|
2275
|
-
id: string;
|
|
2276
|
-
label: string;
|
|
2277
|
-
}[];
|
|
2278
|
-
basic_clusters_max: number;
|
|
2279
|
-
basic_clusters_available: number;
|
|
2280
|
-
pro_clusters_max: number;
|
|
2281
|
-
pro_clusters_available: number;
|
|
2282
|
-
fleets_max: number;
|
|
2283
|
-
managed_fleets_cpu_max: number;
|
|
2284
|
-
cluster_tiers: string[];
|
|
2285
|
-
regions: string[];
|
|
2286
|
-
}>;
|
|
2287
|
-
pending_actions: z.ZodArray<z.ZodEnum<["signup-billing-address", "signup-payment-method", "signup-invite-team", "signup-create-cluster"]>, "many">;
|
|
2288
|
-
status: z.ZodEnum<["active", "closed", "suspended"]>;
|
|
2041
|
+
name: z.ZodString;
|
|
2042
|
+
developer: z.ZodString;
|
|
2043
|
+
description: z.ZodString;
|
|
2044
|
+
logoUrl: z.ZodString;
|
|
2045
|
+
longDescription: z.ZodString;
|
|
2046
|
+
categories: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2289
2047
|
}, "strip", z.ZodTypeAny, {
|
|
2290
2048
|
name: string;
|
|
2291
2049
|
id: string;
|
|
2292
|
-
|
|
2293
|
-
|
|
2294
|
-
|
|
2295
|
-
|
|
2296
|
-
|
|
2297
|
-
last_name: string;
|
|
2298
|
-
state?: string | undefined;
|
|
2299
|
-
country?: string | undefined;
|
|
2300
|
-
address1?: string | undefined;
|
|
2301
|
-
address2?: string | undefined;
|
|
2302
|
-
postalCode?: string | undefined;
|
|
2303
|
-
city?: string | undefined;
|
|
2304
|
-
phone?: string | undefined;
|
|
2305
|
-
};
|
|
2306
|
-
quota: {
|
|
2307
|
-
versions: {
|
|
2308
|
-
id: string;
|
|
2309
|
-
label: string;
|
|
2310
|
-
}[];
|
|
2311
|
-
basic_clusters_max: number;
|
|
2312
|
-
basic_clusters_available: number;
|
|
2313
|
-
pro_clusters_max: number;
|
|
2314
|
-
pro_clusters_available: number;
|
|
2315
|
-
fleets_max: number;
|
|
2316
|
-
managed_fleets_cpu_max: number;
|
|
2317
|
-
cluster_tiers: string[];
|
|
2318
|
-
regions: string[];
|
|
2319
|
-
};
|
|
2320
|
-
pending_actions: ("signup-payment-method" | "signup-billing-address" | "signup-invite-team" | "signup-create-cluster")[];
|
|
2050
|
+
description: string;
|
|
2051
|
+
developer: string;
|
|
2052
|
+
logoUrl: string;
|
|
2053
|
+
longDescription: string;
|
|
2054
|
+
categories?: string[] | undefined;
|
|
2321
2055
|
}, {
|
|
2322
2056
|
name: string;
|
|
2323
2057
|
id: string;
|
|
2324
|
-
|
|
2325
|
-
|
|
2326
|
-
|
|
2327
|
-
|
|
2328
|
-
|
|
2329
|
-
|
|
2330
|
-
|
|
2331
|
-
country?: string | undefined;
|
|
2332
|
-
address1?: string | undefined;
|
|
2333
|
-
address2?: string | undefined;
|
|
2334
|
-
postalCode?: string | undefined;
|
|
2335
|
-
city?: string | undefined;
|
|
2336
|
-
phone?: string | undefined;
|
|
2337
|
-
};
|
|
2338
|
-
quota: {
|
|
2339
|
-
versions: {
|
|
2340
|
-
id: string;
|
|
2341
|
-
label: string;
|
|
2342
|
-
}[];
|
|
2343
|
-
basic_clusters_max: number;
|
|
2344
|
-
basic_clusters_available: number;
|
|
2345
|
-
pro_clusters_max: number;
|
|
2346
|
-
pro_clusters_available: number;
|
|
2347
|
-
fleets_max: number;
|
|
2348
|
-
managed_fleets_cpu_max: number;
|
|
2349
|
-
cluster_tiers: string[];
|
|
2350
|
-
regions: string[];
|
|
2351
|
-
};
|
|
2352
|
-
pending_actions: ("signup-payment-method" | "signup-billing-address" | "signup-invite-team" | "signup-create-cluster")[];
|
|
2353
|
-
}>;
|
|
2354
|
-
export declare const zCreateOrganizationResponse: z.ZodObject<{
|
|
2355
|
-
name: z.ZodString;
|
|
2356
|
-
contactInfo: z.ZodObject<{
|
|
2357
|
-
address1: z.ZodOptional<z.ZodString>;
|
|
2358
|
-
address2: z.ZodOptional<z.ZodString>;
|
|
2359
|
-
postalCode: z.ZodOptional<z.ZodString>;
|
|
2360
|
-
city: z.ZodOptional<z.ZodString>;
|
|
2361
|
-
state: z.ZodOptional<z.ZodString>;
|
|
2362
|
-
country: z.ZodOptional<z.ZodString>;
|
|
2363
|
-
phone: z.ZodOptional<z.ZodString>;
|
|
2364
|
-
email: z.ZodString;
|
|
2365
|
-
first_name: z.ZodString;
|
|
2366
|
-
last_name: z.ZodString;
|
|
2367
|
-
}, "strip", z.ZodTypeAny, {
|
|
2368
|
-
email: string;
|
|
2369
|
-
first_name: string;
|
|
2370
|
-
last_name: string;
|
|
2371
|
-
state?: string | undefined;
|
|
2372
|
-
country?: string | undefined;
|
|
2373
|
-
address1?: string | undefined;
|
|
2374
|
-
address2?: string | undefined;
|
|
2375
|
-
postalCode?: string | undefined;
|
|
2376
|
-
city?: string | undefined;
|
|
2377
|
-
phone?: string | undefined;
|
|
2378
|
-
}, {
|
|
2379
|
-
email: string;
|
|
2380
|
-
first_name: string;
|
|
2381
|
-
last_name: string;
|
|
2382
|
-
state?: string | undefined;
|
|
2383
|
-
country?: string | undefined;
|
|
2384
|
-
address1?: string | undefined;
|
|
2385
|
-
address2?: string | undefined;
|
|
2386
|
-
postalCode?: string | undefined;
|
|
2387
|
-
city?: string | undefined;
|
|
2388
|
-
phone?: string | undefined;
|
|
2389
|
-
}>;
|
|
2058
|
+
description: string;
|
|
2059
|
+
developer: string;
|
|
2060
|
+
logoUrl: string;
|
|
2061
|
+
longDescription: string;
|
|
2062
|
+
categories?: string[] | undefined;
|
|
2063
|
+
}>, "many">;
|
|
2064
|
+
export declare const zGetMarketplaceChartResponse: z.ZodObject<{
|
|
2390
2065
|
id: z.ZodString;
|
|
2391
|
-
|
|
2392
|
-
|
|
2393
|
-
|
|
2394
|
-
|
|
2395
|
-
|
|
2396
|
-
|
|
2397
|
-
fleets_max: z.ZodNumber;
|
|
2398
|
-
managed_fleets_cpu_max: z.ZodNumber;
|
|
2399
|
-
cluster_tiers: z.ZodArray<z.ZodString, "many">;
|
|
2400
|
-
regions: z.ZodArray<z.ZodString, "many">;
|
|
2401
|
-
versions: z.ZodArray<z.ZodObject<{
|
|
2402
|
-
id: z.ZodString;
|
|
2403
|
-
label: z.ZodString;
|
|
2404
|
-
}, "strip", z.ZodTypeAny, {
|
|
2405
|
-
id: string;
|
|
2406
|
-
label: string;
|
|
2407
|
-
}, {
|
|
2408
|
-
id: string;
|
|
2409
|
-
label: string;
|
|
2410
|
-
}>, "many">;
|
|
2411
|
-
}, "strip", z.ZodTypeAny, {
|
|
2412
|
-
versions: {
|
|
2413
|
-
id: string;
|
|
2414
|
-
label: string;
|
|
2415
|
-
}[];
|
|
2416
|
-
basic_clusters_max: number;
|
|
2417
|
-
basic_clusters_available: number;
|
|
2418
|
-
pro_clusters_max: number;
|
|
2419
|
-
pro_clusters_available: number;
|
|
2420
|
-
fleets_max: number;
|
|
2421
|
-
managed_fleets_cpu_max: number;
|
|
2422
|
-
cluster_tiers: string[];
|
|
2423
|
-
regions: string[];
|
|
2424
|
-
}, {
|
|
2425
|
-
versions: {
|
|
2426
|
-
id: string;
|
|
2427
|
-
label: string;
|
|
2428
|
-
}[];
|
|
2429
|
-
basic_clusters_max: number;
|
|
2430
|
-
basic_clusters_available: number;
|
|
2431
|
-
pro_clusters_max: number;
|
|
2432
|
-
pro_clusters_available: number;
|
|
2433
|
-
fleets_max: number;
|
|
2434
|
-
managed_fleets_cpu_max: number;
|
|
2435
|
-
cluster_tiers: string[];
|
|
2436
|
-
regions: string[];
|
|
2437
|
-
}>;
|
|
2438
|
-
pending_actions: z.ZodArray<z.ZodEnum<["signup-billing-address", "signup-payment-method", "signup-invite-team", "signup-create-cluster"]>, "many">;
|
|
2439
|
-
status: z.ZodEnum<["active", "closed", "suspended"]>;
|
|
2066
|
+
name: z.ZodString;
|
|
2067
|
+
developer: z.ZodString;
|
|
2068
|
+
description: z.ZodString;
|
|
2069
|
+
logoUrl: z.ZodString;
|
|
2070
|
+
longDescription: z.ZodString;
|
|
2071
|
+
categories: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2440
2072
|
}, "strip", z.ZodTypeAny, {
|
|
2441
2073
|
name: string;
|
|
2442
2074
|
id: string;
|
|
2443
|
-
|
|
2444
|
-
|
|
2445
|
-
|
|
2446
|
-
|
|
2447
|
-
|
|
2448
|
-
last_name: string;
|
|
2449
|
-
state?: string | undefined;
|
|
2450
|
-
country?: string | undefined;
|
|
2451
|
-
address1?: string | undefined;
|
|
2452
|
-
address2?: string | undefined;
|
|
2453
|
-
postalCode?: string | undefined;
|
|
2454
|
-
city?: string | undefined;
|
|
2455
|
-
phone?: string | undefined;
|
|
2456
|
-
};
|
|
2457
|
-
quota: {
|
|
2458
|
-
versions: {
|
|
2459
|
-
id: string;
|
|
2460
|
-
label: string;
|
|
2461
|
-
}[];
|
|
2462
|
-
basic_clusters_max: number;
|
|
2463
|
-
basic_clusters_available: number;
|
|
2464
|
-
pro_clusters_max: number;
|
|
2465
|
-
pro_clusters_available: number;
|
|
2466
|
-
fleets_max: number;
|
|
2467
|
-
managed_fleets_cpu_max: number;
|
|
2468
|
-
cluster_tiers: string[];
|
|
2469
|
-
regions: string[];
|
|
2470
|
-
};
|
|
2471
|
-
pending_actions: ("signup-payment-method" | "signup-billing-address" | "signup-invite-team" | "signup-create-cluster")[];
|
|
2075
|
+
description: string;
|
|
2076
|
+
developer: string;
|
|
2077
|
+
logoUrl: string;
|
|
2078
|
+
longDescription: string;
|
|
2079
|
+
categories?: string[] | undefined;
|
|
2472
2080
|
}, {
|
|
2473
2081
|
name: string;
|
|
2474
2082
|
id: string;
|
|
2475
|
-
|
|
2476
|
-
|
|
2477
|
-
|
|
2478
|
-
|
|
2479
|
-
|
|
2480
|
-
last_name: string;
|
|
2481
|
-
state?: string | undefined;
|
|
2482
|
-
country?: string | undefined;
|
|
2483
|
-
address1?: string | undefined;
|
|
2484
|
-
address2?: string | undefined;
|
|
2485
|
-
postalCode?: string | undefined;
|
|
2486
|
-
city?: string | undefined;
|
|
2487
|
-
phone?: string | undefined;
|
|
2488
|
-
};
|
|
2489
|
-
quota: {
|
|
2490
|
-
versions: {
|
|
2491
|
-
id: string;
|
|
2492
|
-
label: string;
|
|
2493
|
-
}[];
|
|
2494
|
-
basic_clusters_max: number;
|
|
2495
|
-
basic_clusters_available: number;
|
|
2496
|
-
pro_clusters_max: number;
|
|
2497
|
-
pro_clusters_available: number;
|
|
2498
|
-
fleets_max: number;
|
|
2499
|
-
managed_fleets_cpu_max: number;
|
|
2500
|
-
cluster_tiers: string[];
|
|
2501
|
-
regions: string[];
|
|
2502
|
-
};
|
|
2503
|
-
pending_actions: ("signup-payment-method" | "signup-billing-address" | "signup-invite-team" | "signup-create-cluster")[];
|
|
2083
|
+
description: string;
|
|
2084
|
+
developer: string;
|
|
2085
|
+
logoUrl: string;
|
|
2086
|
+
longDescription: string;
|
|
2087
|
+
categories?: string[] | undefined;
|
|
2504
2088
|
}>;
|
|
2505
|
-
export declare const
|
|
2506
|
-
name: z.ZodString;
|
|
2507
|
-
contactInfo: z.ZodObject<{
|
|
2508
|
-
address1: z.ZodOptional<z.ZodString>;
|
|
2509
|
-
address2: z.ZodOptional<z.ZodString>;
|
|
2510
|
-
postalCode: z.ZodOptional<z.ZodString>;
|
|
2511
|
-
city: z.ZodOptional<z.ZodString>;
|
|
2512
|
-
state: z.ZodOptional<z.ZodString>;
|
|
2513
|
-
country: z.ZodOptional<z.ZodString>;
|
|
2514
|
-
phone: z.ZodOptional<z.ZodString>;
|
|
2515
|
-
email: z.ZodString;
|
|
2516
|
-
first_name: z.ZodString;
|
|
2517
|
-
last_name: z.ZodString;
|
|
2518
|
-
}, "strip", z.ZodTypeAny, {
|
|
2519
|
-
email: string;
|
|
2520
|
-
first_name: string;
|
|
2521
|
-
last_name: string;
|
|
2522
|
-
state?: string | undefined;
|
|
2523
|
-
country?: string | undefined;
|
|
2524
|
-
address1?: string | undefined;
|
|
2525
|
-
address2?: string | undefined;
|
|
2526
|
-
postalCode?: string | undefined;
|
|
2527
|
-
city?: string | undefined;
|
|
2528
|
-
phone?: string | undefined;
|
|
2529
|
-
}, {
|
|
2530
|
-
email: string;
|
|
2531
|
-
first_name: string;
|
|
2532
|
-
last_name: string;
|
|
2533
|
-
state?: string | undefined;
|
|
2534
|
-
country?: string | undefined;
|
|
2535
|
-
address1?: string | undefined;
|
|
2536
|
-
address2?: string | undefined;
|
|
2537
|
-
postalCode?: string | undefined;
|
|
2538
|
-
city?: string | undefined;
|
|
2539
|
-
phone?: string | undefined;
|
|
2540
|
-
}>;
|
|
2089
|
+
export declare const zGetOrganizationResponse: z.ZodObject<{
|
|
2541
2090
|
id: z.ZodString;
|
|
2091
|
+
name: z.ZodOptional<z.ZodString>;
|
|
2542
2092
|
date_created: z.ZodString;
|
|
2543
2093
|
quota: z.ZodObject<{
|
|
2544
2094
|
basic_clusters_max: z.ZodNumber;
|
|
@@ -2586,25 +2136,11 @@ export declare const zUpdateOrganizationResponse: z.ZodObject<{
|
|
|
2586
2136
|
cluster_tiers: string[];
|
|
2587
2137
|
regions: string[];
|
|
2588
2138
|
}>;
|
|
2589
|
-
pending_actions: z.ZodArray<z.ZodEnum<["signup-billing-address", "signup-payment-method", "signup-invite-team", "signup-create-cluster"]>, "many">;
|
|
2590
2139
|
status: z.ZodEnum<["active", "closed", "suspended"]>;
|
|
2591
2140
|
}, "strip", z.ZodTypeAny, {
|
|
2592
|
-
name: string;
|
|
2593
2141
|
id: string;
|
|
2594
2142
|
status: "active" | "closed" | "suspended";
|
|
2595
2143
|
date_created: string;
|
|
2596
|
-
contactInfo: {
|
|
2597
|
-
email: string;
|
|
2598
|
-
first_name: string;
|
|
2599
|
-
last_name: string;
|
|
2600
|
-
state?: string | undefined;
|
|
2601
|
-
country?: string | undefined;
|
|
2602
|
-
address1?: string | undefined;
|
|
2603
|
-
address2?: string | undefined;
|
|
2604
|
-
postalCode?: string | undefined;
|
|
2605
|
-
city?: string | undefined;
|
|
2606
|
-
phone?: string | undefined;
|
|
2607
|
-
};
|
|
2608
2144
|
quota: {
|
|
2609
2145
|
versions: {
|
|
2610
2146
|
id: string;
|
|
@@ -2619,24 +2155,11 @@ export declare const zUpdateOrganizationResponse: z.ZodObject<{
|
|
|
2619
2155
|
cluster_tiers: string[];
|
|
2620
2156
|
regions: string[];
|
|
2621
2157
|
};
|
|
2622
|
-
|
|
2158
|
+
name?: string | undefined;
|
|
2623
2159
|
}, {
|
|
2624
|
-
name: string;
|
|
2625
2160
|
id: string;
|
|
2626
2161
|
status: "active" | "closed" | "suspended";
|
|
2627
2162
|
date_created: string;
|
|
2628
|
-
contactInfo: {
|
|
2629
|
-
email: string;
|
|
2630
|
-
first_name: string;
|
|
2631
|
-
last_name: string;
|
|
2632
|
-
state?: string | undefined;
|
|
2633
|
-
country?: string | undefined;
|
|
2634
|
-
address1?: string | undefined;
|
|
2635
|
-
address2?: string | undefined;
|
|
2636
|
-
postalCode?: string | undefined;
|
|
2637
|
-
city?: string | undefined;
|
|
2638
|
-
phone?: string | undefined;
|
|
2639
|
-
};
|
|
2640
2163
|
quota: {
|
|
2641
2164
|
versions: {
|
|
2642
2165
|
id: string;
|
|
@@ -2651,7 +2174,7 @@ export declare const zUpdateOrganizationResponse: z.ZodObject<{
|
|
|
2651
2174
|
cluster_tiers: string[];
|
|
2652
2175
|
regions: string[];
|
|
2653
2176
|
};
|
|
2654
|
-
|
|
2177
|
+
name?: string | undefined;
|
|
2655
2178
|
}>;
|
|
2656
2179
|
export declare const zListTokensResponse: z.ZodArray<z.ZodObject<{
|
|
2657
2180
|
name: z.ZodString;
|
|
@@ -2661,13 +2184,13 @@ export declare const zListTokensResponse: z.ZodArray<z.ZodObject<{
|
|
|
2661
2184
|
date_created: z.ZodString;
|
|
2662
2185
|
}, "strip", z.ZodTypeAny, {
|
|
2663
2186
|
name: string;
|
|
2664
|
-
role: "
|
|
2187
|
+
role: "Administrator" | "User";
|
|
2665
2188
|
date_created: string;
|
|
2666
2189
|
id?: string | undefined;
|
|
2667
2190
|
secret?: string | undefined;
|
|
2668
2191
|
}, {
|
|
2669
2192
|
name: string;
|
|
2670
|
-
role: "
|
|
2193
|
+
role: "Administrator" | "User";
|
|
2671
2194
|
date_created: string;
|
|
2672
2195
|
id?: string | undefined;
|
|
2673
2196
|
secret?: string | undefined;
|
|
@@ -2680,13 +2203,13 @@ export declare const zCreateTokenResponse: z.ZodObject<{
|
|
|
2680
2203
|
date_created: z.ZodString;
|
|
2681
2204
|
}, "strip", z.ZodTypeAny, {
|
|
2682
2205
|
name: string;
|
|
2683
|
-
role: "
|
|
2206
|
+
role: "Administrator" | "User";
|
|
2684
2207
|
date_created: string;
|
|
2685
2208
|
id?: string | undefined;
|
|
2686
2209
|
secret?: string | undefined;
|
|
2687
2210
|
}, {
|
|
2688
2211
|
name: string;
|
|
2689
|
-
role: "
|
|
2212
|
+
role: "Administrator" | "User";
|
|
2690
2213
|
date_created: string;
|
|
2691
2214
|
id?: string | undefined;
|
|
2692
2215
|
secret?: string | undefined;
|
|
@@ -2699,13 +2222,13 @@ export declare const zGetTokenResponse: z.ZodObject<{
|
|
|
2699
2222
|
date_created: z.ZodString;
|
|
2700
2223
|
}, "strip", z.ZodTypeAny, {
|
|
2701
2224
|
name: string;
|
|
2702
|
-
role: "
|
|
2225
|
+
role: "Administrator" | "User";
|
|
2703
2226
|
date_created: string;
|
|
2704
2227
|
id?: string | undefined;
|
|
2705
2228
|
secret?: string | undefined;
|
|
2706
2229
|
}, {
|
|
2707
2230
|
name: string;
|
|
2708
|
-
role: "
|
|
2231
|
+
role: "Administrator" | "User";
|
|
2709
2232
|
date_created: string;
|
|
2710
2233
|
id?: string | undefined;
|
|
2711
2234
|
secret?: string | undefined;
|
|
@@ -2718,13 +2241,13 @@ export declare const zUpdateTokenResponse: z.ZodObject<{
|
|
|
2718
2241
|
date_created: z.ZodString;
|
|
2719
2242
|
}, "strip", z.ZodTypeAny, {
|
|
2720
2243
|
name: string;
|
|
2721
|
-
role: "
|
|
2244
|
+
role: "Administrator" | "User";
|
|
2722
2245
|
date_created: string;
|
|
2723
2246
|
id?: string | undefined;
|
|
2724
2247
|
secret?: string | undefined;
|
|
2725
2248
|
}, {
|
|
2726
2249
|
name: string;
|
|
2727
|
-
role: "
|
|
2250
|
+
role: "Administrator" | "User";
|
|
2728
2251
|
date_created: string;
|
|
2729
2252
|
id?: string | undefined;
|
|
2730
2253
|
secret?: string | undefined;
|
|
@@ -2737,13 +2260,13 @@ export declare const zRegenerateTokenResponse: z.ZodObject<{
|
|
|
2737
2260
|
date_created: z.ZodString;
|
|
2738
2261
|
}, "strip", z.ZodTypeAny, {
|
|
2739
2262
|
name: string;
|
|
2740
|
-
role: "
|
|
2263
|
+
role: "Administrator" | "User";
|
|
2741
2264
|
date_created: string;
|
|
2742
2265
|
id?: string | undefined;
|
|
2743
2266
|
secret?: string | undefined;
|
|
2744
2267
|
}, {
|
|
2745
2268
|
name: string;
|
|
2746
|
-
role: "
|
|
2269
|
+
role: "Administrator" | "User";
|
|
2747
2270
|
date_created: string;
|
|
2748
2271
|
id?: string | undefined;
|
|
2749
2272
|
secret?: string | undefined;
|
|
@@ -2766,40 +2289,22 @@ export declare const zListUsersResponse: z.ZodArray<z.ZodObject<{
|
|
|
2766
2289
|
status: z.ZodEnum<["active", "inactive"]>;
|
|
2767
2290
|
id: z.ZodString;
|
|
2768
2291
|
date_created: z.ZodString;
|
|
2769
|
-
cluster_permissions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2770
|
-
cluster_id: z.ZodString;
|
|
2771
|
-
permissions: z.ZodEnum<["readwrite", "readonly"]>;
|
|
2772
|
-
}, "strip", z.ZodTypeAny, {
|
|
2773
|
-
cluster_id: string;
|
|
2774
|
-
permissions: "readonly" | "readwrite";
|
|
2775
|
-
}, {
|
|
2776
|
-
cluster_id: string;
|
|
2777
|
-
permissions: "readonly" | "readwrite";
|
|
2778
|
-
}>, "many">>;
|
|
2779
2292
|
}, "strip", z.ZodTypeAny, {
|
|
2780
2293
|
id: string;
|
|
2781
|
-
role: "
|
|
2294
|
+
role: "Administrator" | "User";
|
|
2782
2295
|
email: string;
|
|
2783
2296
|
status: "active" | "inactive";
|
|
2784
|
-
date_created: string;
|
|
2785
2297
|
first_name: string;
|
|
2786
2298
|
last_name: string;
|
|
2787
|
-
|
|
2788
|
-
cluster_id: string;
|
|
2789
|
-
permissions: "readonly" | "readwrite";
|
|
2790
|
-
}[] | undefined;
|
|
2299
|
+
date_created: string;
|
|
2791
2300
|
}, {
|
|
2792
2301
|
id: string;
|
|
2793
|
-
role: "
|
|
2302
|
+
role: "Administrator" | "User";
|
|
2794
2303
|
email: string;
|
|
2795
2304
|
status: "active" | "inactive";
|
|
2796
|
-
date_created: string;
|
|
2797
2305
|
first_name: string;
|
|
2798
2306
|
last_name: string;
|
|
2799
|
-
|
|
2800
|
-
cluster_id: string;
|
|
2801
|
-
permissions: "readonly" | "readwrite";
|
|
2802
|
-
}[] | undefined;
|
|
2307
|
+
date_created: string;
|
|
2803
2308
|
}>, "many">;
|
|
2804
2309
|
export declare const zCreateUserResponse: z.ZodObject<{
|
|
2805
2310
|
email: z.ZodString;
|
|
@@ -2809,40 +2314,22 @@ export declare const zCreateUserResponse: z.ZodObject<{
|
|
|
2809
2314
|
status: z.ZodEnum<["active", "inactive"]>;
|
|
2810
2315
|
id: z.ZodString;
|
|
2811
2316
|
date_created: z.ZodString;
|
|
2812
|
-
cluster_permissions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2813
|
-
cluster_id: z.ZodString;
|
|
2814
|
-
permissions: z.ZodEnum<["readwrite", "readonly"]>;
|
|
2815
|
-
}, "strip", z.ZodTypeAny, {
|
|
2816
|
-
cluster_id: string;
|
|
2817
|
-
permissions: "readonly" | "readwrite";
|
|
2818
|
-
}, {
|
|
2819
|
-
cluster_id: string;
|
|
2820
|
-
permissions: "readonly" | "readwrite";
|
|
2821
|
-
}>, "many">>;
|
|
2822
2317
|
}, "strip", z.ZodTypeAny, {
|
|
2823
2318
|
id: string;
|
|
2824
|
-
role: "
|
|
2319
|
+
role: "Administrator" | "User";
|
|
2825
2320
|
email: string;
|
|
2826
2321
|
status: "active" | "inactive";
|
|
2827
|
-
date_created: string;
|
|
2828
2322
|
first_name: string;
|
|
2829
2323
|
last_name: string;
|
|
2830
|
-
|
|
2831
|
-
cluster_id: string;
|
|
2832
|
-
permissions: "readonly" | "readwrite";
|
|
2833
|
-
}[] | undefined;
|
|
2324
|
+
date_created: string;
|
|
2834
2325
|
}, {
|
|
2835
2326
|
id: string;
|
|
2836
|
-
role: "
|
|
2327
|
+
role: "Administrator" | "User";
|
|
2837
2328
|
email: string;
|
|
2838
2329
|
status: "active" | "inactive";
|
|
2839
|
-
date_created: string;
|
|
2840
2330
|
first_name: string;
|
|
2841
2331
|
last_name: string;
|
|
2842
|
-
|
|
2843
|
-
cluster_id: string;
|
|
2844
|
-
permissions: "readonly" | "readwrite";
|
|
2845
|
-
}[] | undefined;
|
|
2332
|
+
date_created: string;
|
|
2846
2333
|
}>;
|
|
2847
2334
|
export declare const zDeleteUserResponse: z.ZodObject<{
|
|
2848
2335
|
email: z.ZodString;
|
|
@@ -2852,40 +2339,22 @@ export declare const zDeleteUserResponse: z.ZodObject<{
|
|
|
2852
2339
|
status: z.ZodEnum<["active", "inactive"]>;
|
|
2853
2340
|
id: z.ZodString;
|
|
2854
2341
|
date_created: z.ZodString;
|
|
2855
|
-
cluster_permissions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2856
|
-
cluster_id: z.ZodString;
|
|
2857
|
-
permissions: z.ZodEnum<["readwrite", "readonly"]>;
|
|
2858
|
-
}, "strip", z.ZodTypeAny, {
|
|
2859
|
-
cluster_id: string;
|
|
2860
|
-
permissions: "readonly" | "readwrite";
|
|
2861
|
-
}, {
|
|
2862
|
-
cluster_id: string;
|
|
2863
|
-
permissions: "readonly" | "readwrite";
|
|
2864
|
-
}>, "many">>;
|
|
2865
2342
|
}, "strip", z.ZodTypeAny, {
|
|
2866
2343
|
id: string;
|
|
2867
|
-
role: "
|
|
2344
|
+
role: "Administrator" | "User";
|
|
2868
2345
|
email: string;
|
|
2869
2346
|
status: "active" | "inactive";
|
|
2870
|
-
date_created: string;
|
|
2871
2347
|
first_name: string;
|
|
2872
2348
|
last_name: string;
|
|
2873
|
-
|
|
2874
|
-
cluster_id: string;
|
|
2875
|
-
permissions: "readonly" | "readwrite";
|
|
2876
|
-
}[] | undefined;
|
|
2349
|
+
date_created: string;
|
|
2877
2350
|
}, {
|
|
2878
2351
|
id: string;
|
|
2879
|
-
role: "
|
|
2352
|
+
role: "Administrator" | "User";
|
|
2880
2353
|
email: string;
|
|
2881
2354
|
status: "active" | "inactive";
|
|
2882
|
-
date_created: string;
|
|
2883
2355
|
first_name: string;
|
|
2884
2356
|
last_name: string;
|
|
2885
|
-
|
|
2886
|
-
cluster_id: string;
|
|
2887
|
-
permissions: "readonly" | "readwrite";
|
|
2888
|
-
}[] | undefined;
|
|
2357
|
+
date_created: string;
|
|
2889
2358
|
}>;
|
|
2890
2359
|
export declare const zGetUserResponse: z.ZodObject<{
|
|
2891
2360
|
email: z.ZodString;
|
|
@@ -2895,40 +2364,22 @@ export declare const zGetUserResponse: z.ZodObject<{
|
|
|
2895
2364
|
status: z.ZodEnum<["active", "inactive"]>;
|
|
2896
2365
|
id: z.ZodString;
|
|
2897
2366
|
date_created: z.ZodString;
|
|
2898
|
-
cluster_permissions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2899
|
-
cluster_id: z.ZodString;
|
|
2900
|
-
permissions: z.ZodEnum<["readwrite", "readonly"]>;
|
|
2901
|
-
}, "strip", z.ZodTypeAny, {
|
|
2902
|
-
cluster_id: string;
|
|
2903
|
-
permissions: "readonly" | "readwrite";
|
|
2904
|
-
}, {
|
|
2905
|
-
cluster_id: string;
|
|
2906
|
-
permissions: "readonly" | "readwrite";
|
|
2907
|
-
}>, "many">>;
|
|
2908
2367
|
}, "strip", z.ZodTypeAny, {
|
|
2909
2368
|
id: string;
|
|
2910
|
-
role: "
|
|
2369
|
+
role: "Administrator" | "User";
|
|
2911
2370
|
email: string;
|
|
2912
2371
|
status: "active" | "inactive";
|
|
2913
|
-
date_created: string;
|
|
2914
2372
|
first_name: string;
|
|
2915
2373
|
last_name: string;
|
|
2916
|
-
|
|
2917
|
-
cluster_id: string;
|
|
2918
|
-
permissions: "readonly" | "readwrite";
|
|
2919
|
-
}[] | undefined;
|
|
2374
|
+
date_created: string;
|
|
2920
2375
|
}, {
|
|
2921
2376
|
id: string;
|
|
2922
|
-
role: "
|
|
2377
|
+
role: "Administrator" | "User";
|
|
2923
2378
|
email: string;
|
|
2924
2379
|
status: "active" | "inactive";
|
|
2925
|
-
date_created: string;
|
|
2926
2380
|
first_name: string;
|
|
2927
2381
|
last_name: string;
|
|
2928
|
-
|
|
2929
|
-
cluster_id: string;
|
|
2930
|
-
permissions: "readonly" | "readwrite";
|
|
2931
|
-
}[] | undefined;
|
|
2382
|
+
date_created: string;
|
|
2932
2383
|
}>;
|
|
2933
2384
|
export declare const zUpdateUserResponse: z.ZodObject<{
|
|
2934
2385
|
email: z.ZodString;
|
|
@@ -2938,125 +2389,21 @@ export declare const zUpdateUserResponse: z.ZodObject<{
|
|
|
2938
2389
|
status: z.ZodEnum<["active", "inactive"]>;
|
|
2939
2390
|
id: z.ZodString;
|
|
2940
2391
|
date_created: z.ZodString;
|
|
2941
|
-
cluster_permissions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2942
|
-
cluster_id: z.ZodString;
|
|
2943
|
-
permissions: z.ZodEnum<["readwrite", "readonly"]>;
|
|
2944
|
-
}, "strip", z.ZodTypeAny, {
|
|
2945
|
-
cluster_id: string;
|
|
2946
|
-
permissions: "readonly" | "readwrite";
|
|
2947
|
-
}, {
|
|
2948
|
-
cluster_id: string;
|
|
2949
|
-
permissions: "readonly" | "readwrite";
|
|
2950
|
-
}>, "many">>;
|
|
2951
2392
|
}, "strip", z.ZodTypeAny, {
|
|
2952
2393
|
id: string;
|
|
2953
|
-
role: "
|
|
2954
|
-
email: string;
|
|
2955
|
-
status: "active" | "inactive";
|
|
2956
|
-
date_created: string;
|
|
2957
|
-
first_name: string;
|
|
2958
|
-
last_name: string;
|
|
2959
|
-
cluster_permissions?: {
|
|
2960
|
-
cluster_id: string;
|
|
2961
|
-
permissions: "readonly" | "readwrite";
|
|
2962
|
-
}[] | undefined;
|
|
2963
|
-
}, {
|
|
2964
|
-
id: string;
|
|
2965
|
-
role: "User" | "Administrator";
|
|
2394
|
+
role: "Administrator" | "User";
|
|
2966
2395
|
email: string;
|
|
2967
2396
|
status: "active" | "inactive";
|
|
2968
|
-
date_created: string;
|
|
2969
2397
|
first_name: string;
|
|
2970
2398
|
last_name: string;
|
|
2971
|
-
cluster_permissions?: {
|
|
2972
|
-
cluster_id: string;
|
|
2973
|
-
permissions: "readonly" | "readwrite";
|
|
2974
|
-
}[] | undefined;
|
|
2975
|
-
}>;
|
|
2976
|
-
export declare const zDeleteClusterPermissionsResponse: z.ZodObject<{
|
|
2977
|
-
email: z.ZodString;
|
|
2978
|
-
first_name: z.ZodString;
|
|
2979
|
-
last_name: z.ZodString;
|
|
2980
|
-
role: z.ZodEnum<["Administrator", "User"]>;
|
|
2981
|
-
status: z.ZodEnum<["active", "inactive"]>;
|
|
2982
|
-
id: z.ZodString;
|
|
2983
|
-
date_created: z.ZodString;
|
|
2984
|
-
cluster_permissions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2985
|
-
cluster_id: z.ZodString;
|
|
2986
|
-
permissions: z.ZodEnum<["readwrite", "readonly"]>;
|
|
2987
|
-
}, "strip", z.ZodTypeAny, {
|
|
2988
|
-
cluster_id: string;
|
|
2989
|
-
permissions: "readonly" | "readwrite";
|
|
2990
|
-
}, {
|
|
2991
|
-
cluster_id: string;
|
|
2992
|
-
permissions: "readonly" | "readwrite";
|
|
2993
|
-
}>, "many">>;
|
|
2994
|
-
}, "strip", z.ZodTypeAny, {
|
|
2995
|
-
id: string;
|
|
2996
|
-
role: "User" | "Administrator";
|
|
2997
|
-
email: string;
|
|
2998
|
-
status: "active" | "inactive";
|
|
2999
2399
|
date_created: string;
|
|
3000
|
-
first_name: string;
|
|
3001
|
-
last_name: string;
|
|
3002
|
-
cluster_permissions?: {
|
|
3003
|
-
cluster_id: string;
|
|
3004
|
-
permissions: "readonly" | "readwrite";
|
|
3005
|
-
}[] | undefined;
|
|
3006
2400
|
}, {
|
|
3007
2401
|
id: string;
|
|
3008
|
-
role: "
|
|
2402
|
+
role: "Administrator" | "User";
|
|
3009
2403
|
email: string;
|
|
3010
2404
|
status: "active" | "inactive";
|
|
3011
|
-
date_created: string;
|
|
3012
2405
|
first_name: string;
|
|
3013
2406
|
last_name: string;
|
|
3014
|
-
cluster_permissions?: {
|
|
3015
|
-
cluster_id: string;
|
|
3016
|
-
permissions: "readonly" | "readwrite";
|
|
3017
|
-
}[] | undefined;
|
|
3018
|
-
}>;
|
|
3019
|
-
export declare const zSetClusterPermissionsResponse: z.ZodObject<{
|
|
3020
|
-
email: z.ZodString;
|
|
3021
|
-
first_name: z.ZodString;
|
|
3022
|
-
last_name: z.ZodString;
|
|
3023
|
-
role: z.ZodEnum<["Administrator", "User"]>;
|
|
3024
|
-
status: z.ZodEnum<["active", "inactive"]>;
|
|
3025
|
-
id: z.ZodString;
|
|
3026
|
-
date_created: z.ZodString;
|
|
3027
|
-
cluster_permissions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3028
|
-
cluster_id: z.ZodString;
|
|
3029
|
-
permissions: z.ZodEnum<["readwrite", "readonly"]>;
|
|
3030
|
-
}, "strip", z.ZodTypeAny, {
|
|
3031
|
-
cluster_id: string;
|
|
3032
|
-
permissions: "readonly" | "readwrite";
|
|
3033
|
-
}, {
|
|
3034
|
-
cluster_id: string;
|
|
3035
|
-
permissions: "readonly" | "readwrite";
|
|
3036
|
-
}>, "many">>;
|
|
3037
|
-
}, "strip", z.ZodTypeAny, {
|
|
3038
|
-
id: string;
|
|
3039
|
-
role: "User" | "Administrator";
|
|
3040
|
-
email: string;
|
|
3041
|
-
status: "active" | "inactive";
|
|
3042
2407
|
date_created: string;
|
|
3043
|
-
first_name: string;
|
|
3044
|
-
last_name: string;
|
|
3045
|
-
cluster_permissions?: {
|
|
3046
|
-
cluster_id: string;
|
|
3047
|
-
permissions: "readonly" | "readwrite";
|
|
3048
|
-
}[] | undefined;
|
|
3049
|
-
}, {
|
|
3050
|
-
id: string;
|
|
3051
|
-
role: "User" | "Administrator";
|
|
3052
|
-
email: string;
|
|
3053
|
-
status: "active" | "inactive";
|
|
3054
|
-
date_created: string;
|
|
3055
|
-
first_name: string;
|
|
3056
|
-
last_name: string;
|
|
3057
|
-
cluster_permissions?: {
|
|
3058
|
-
cluster_id: string;
|
|
3059
|
-
permissions: "readonly" | "readwrite";
|
|
3060
|
-
}[] | undefined;
|
|
3061
2408
|
}>;
|
|
3062
2409
|
//# sourceMappingURL=zod.gen.d.ts.map
|