@cloudfleet/sdk 0.0.1-726a305 → 0.0.1-75259b5
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/index.d.ts +2 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +2 -0
- package/dist/index.js.map +1 -1
- package/dist/schemas.gen.d.ts +233 -0
- package/dist/schemas.gen.d.ts.map +1 -1
- package/dist/schemas.gen.js +233 -0
- package/dist/schemas.gen.js.map +1 -1
- package/dist/sdk.gen.d.ts +71 -1
- package/dist/sdk.gen.d.ts.map +1 -1
- package/dist/sdk.gen.js +127 -0
- 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 +329 -0
- package/dist/types.gen.d.ts.map +1 -1
- package/dist/zod.gen.d.ts +297 -26
- package/dist/zod.gen.d.ts.map +1 -1
- package/dist/zod.gen.js +67 -0
- package/dist/zod.gen.js.map +1 -1
- package/package.json +5 -1
package/dist/zod.gen.d.ts
CHANGED
|
@@ -36,6 +36,100 @@ export declare const zBillingContact: z.ZodObject<{
|
|
|
36
36
|
city?: string | undefined;
|
|
37
37
|
phone?: string | undefined;
|
|
38
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
|
+
}>;
|
|
39
133
|
export declare const zClusterCreateInput: z.ZodObject<{
|
|
40
134
|
name: z.ZodString;
|
|
41
135
|
region: z.ZodOptional<z.ZodEnum<["staging", "northamerica-central-1"]>>;
|
|
@@ -43,8 +137,8 @@ export declare const zClusterCreateInput: z.ZodObject<{
|
|
|
43
137
|
version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
44
138
|
}, "strip", z.ZodTypeAny, {
|
|
45
139
|
name: string;
|
|
46
|
-
tier: "basic" | "pro";
|
|
47
140
|
version_channel: string;
|
|
141
|
+
tier: "basic" | "pro";
|
|
48
142
|
region?: "staging" | "northamerica-central-1" | undefined;
|
|
49
143
|
}, {
|
|
50
144
|
name: string;
|
|
@@ -131,15 +225,15 @@ export declare const zCluster: z.ZodObject<{
|
|
|
131
225
|
name: string;
|
|
132
226
|
id: string;
|
|
133
227
|
status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
|
|
134
|
-
tier: "basic" | "pro";
|
|
135
228
|
version_channel: string;
|
|
229
|
+
tier: "basic" | "pro";
|
|
136
230
|
ready?: boolean | undefined;
|
|
137
231
|
region?: "staging" | "northamerica-central-1" | undefined;
|
|
138
|
-
endpoint?: string | undefined;
|
|
139
|
-
certificate_ca?: string | undefined;
|
|
140
232
|
version_current?: string | undefined;
|
|
141
233
|
created_at?: string | undefined;
|
|
142
234
|
updated_at?: string | undefined;
|
|
235
|
+
endpoint?: string | undefined;
|
|
236
|
+
certificate_ca?: string | undefined;
|
|
143
237
|
}, {
|
|
144
238
|
name: string;
|
|
145
239
|
id: string;
|
|
@@ -147,12 +241,12 @@ export declare const zCluster: z.ZodObject<{
|
|
|
147
241
|
tier: "basic" | "pro";
|
|
148
242
|
ready?: boolean | undefined;
|
|
149
243
|
region?: "staging" | "northamerica-central-1" | undefined;
|
|
150
|
-
endpoint?: string | undefined;
|
|
151
244
|
version_channel?: string | undefined;
|
|
152
|
-
certificate_ca?: string | undefined;
|
|
153
245
|
version_current?: string | undefined;
|
|
154
246
|
created_at?: string | undefined;
|
|
155
247
|
updated_at?: string | undefined;
|
|
248
|
+
endpoint?: string | undefined;
|
|
249
|
+
certificate_ca?: string | undefined;
|
|
156
250
|
}>;
|
|
157
251
|
export declare const zClusterUpdateInput: z.ZodObject<{
|
|
158
252
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -719,6 +813,31 @@ export declare const zInvoice: z.ZodObject<{
|
|
|
719
813
|
childItems?: unknown[] | undefined;
|
|
720
814
|
}[] | undefined;
|
|
721
815
|
}>;
|
|
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
|
+
}>;
|
|
722
841
|
export declare const zOrganizationCreateInput: z.ZodObject<{
|
|
723
842
|
email: z.ZodString;
|
|
724
843
|
first_name: z.ZodString;
|
|
@@ -1409,6 +1528,108 @@ export declare const zUpdateContactResponse: z.ZodObject<{
|
|
|
1409
1528
|
city?: string | undefined;
|
|
1410
1529
|
phone?: string | undefined;
|
|
1411
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;
|
|
1412
1633
|
export declare const zListFleetsResponse: z.ZodArray<z.ZodObject<{
|
|
1413
1634
|
limits: z.ZodOptional<z.ZodObject<{
|
|
1414
1635
|
cpu: z.ZodNumber;
|
|
@@ -1613,15 +1834,15 @@ export declare const zListClustersResponse: z.ZodArray<z.ZodObject<{
|
|
|
1613
1834
|
name: string;
|
|
1614
1835
|
id: string;
|
|
1615
1836
|
status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
|
|
1616
|
-
tier: "basic" | "pro";
|
|
1617
1837
|
version_channel: string;
|
|
1838
|
+
tier: "basic" | "pro";
|
|
1618
1839
|
ready?: boolean | undefined;
|
|
1619
1840
|
region?: "staging" | "northamerica-central-1" | undefined;
|
|
1620
|
-
endpoint?: string | undefined;
|
|
1621
|
-
certificate_ca?: string | undefined;
|
|
1622
1841
|
version_current?: string | undefined;
|
|
1623
1842
|
created_at?: string | undefined;
|
|
1624
1843
|
updated_at?: string | undefined;
|
|
1844
|
+
endpoint?: string | undefined;
|
|
1845
|
+
certificate_ca?: string | undefined;
|
|
1625
1846
|
}, {
|
|
1626
1847
|
name: string;
|
|
1627
1848
|
id: string;
|
|
@@ -1629,12 +1850,12 @@ export declare const zListClustersResponse: z.ZodArray<z.ZodObject<{
|
|
|
1629
1850
|
tier: "basic" | "pro";
|
|
1630
1851
|
ready?: boolean | undefined;
|
|
1631
1852
|
region?: "staging" | "northamerica-central-1" | undefined;
|
|
1632
|
-
endpoint?: string | undefined;
|
|
1633
1853
|
version_channel?: string | undefined;
|
|
1634
|
-
certificate_ca?: string | undefined;
|
|
1635
1854
|
version_current?: string | undefined;
|
|
1636
1855
|
created_at?: string | undefined;
|
|
1637
1856
|
updated_at?: string | undefined;
|
|
1857
|
+
endpoint?: string | undefined;
|
|
1858
|
+
certificate_ca?: string | undefined;
|
|
1638
1859
|
}>, "many">;
|
|
1639
1860
|
export declare const zCreateClusterResponse: z.ZodString;
|
|
1640
1861
|
export declare const zDeleteClusterResponse: z.ZodString;
|
|
@@ -1655,15 +1876,15 @@ export declare const zGetClusterResponse: z.ZodObject<{
|
|
|
1655
1876
|
name: string;
|
|
1656
1877
|
id: string;
|
|
1657
1878
|
status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
|
|
1658
|
-
tier: "basic" | "pro";
|
|
1659
1879
|
version_channel: string;
|
|
1880
|
+
tier: "basic" | "pro";
|
|
1660
1881
|
ready?: boolean | undefined;
|
|
1661
1882
|
region?: "staging" | "northamerica-central-1" | undefined;
|
|
1662
|
-
endpoint?: string | undefined;
|
|
1663
|
-
certificate_ca?: string | undefined;
|
|
1664
1883
|
version_current?: string | undefined;
|
|
1665
1884
|
created_at?: string | undefined;
|
|
1666
1885
|
updated_at?: string | undefined;
|
|
1886
|
+
endpoint?: string | undefined;
|
|
1887
|
+
certificate_ca?: string | undefined;
|
|
1667
1888
|
}, {
|
|
1668
1889
|
name: string;
|
|
1669
1890
|
id: string;
|
|
@@ -1671,12 +1892,12 @@ export declare const zGetClusterResponse: z.ZodObject<{
|
|
|
1671
1892
|
tier: "basic" | "pro";
|
|
1672
1893
|
ready?: boolean | undefined;
|
|
1673
1894
|
region?: "staging" | "northamerica-central-1" | undefined;
|
|
1674
|
-
endpoint?: string | undefined;
|
|
1675
1895
|
version_channel?: string | undefined;
|
|
1676
|
-
certificate_ca?: string | undefined;
|
|
1677
1896
|
version_current?: string | undefined;
|
|
1678
1897
|
created_at?: string | undefined;
|
|
1679
1898
|
updated_at?: string | undefined;
|
|
1899
|
+
endpoint?: string | undefined;
|
|
1900
|
+
certificate_ca?: string | undefined;
|
|
1680
1901
|
}>;
|
|
1681
1902
|
export declare const zUpdateClusterResponse: z.ZodObject<{
|
|
1682
1903
|
name: z.ZodString;
|
|
@@ -1695,15 +1916,15 @@ export declare const zUpdateClusterResponse: z.ZodObject<{
|
|
|
1695
1916
|
name: string;
|
|
1696
1917
|
id: string;
|
|
1697
1918
|
status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
|
|
1698
|
-
tier: "basic" | "pro";
|
|
1699
1919
|
version_channel: string;
|
|
1920
|
+
tier: "basic" | "pro";
|
|
1700
1921
|
ready?: boolean | undefined;
|
|
1701
1922
|
region?: "staging" | "northamerica-central-1" | undefined;
|
|
1702
|
-
endpoint?: string | undefined;
|
|
1703
|
-
certificate_ca?: string | undefined;
|
|
1704
1923
|
version_current?: string | undefined;
|
|
1705
1924
|
created_at?: string | undefined;
|
|
1706
1925
|
updated_at?: string | undefined;
|
|
1926
|
+
endpoint?: string | undefined;
|
|
1927
|
+
certificate_ca?: string | undefined;
|
|
1707
1928
|
}, {
|
|
1708
1929
|
name: string;
|
|
1709
1930
|
id: string;
|
|
@@ -1711,12 +1932,12 @@ export declare const zUpdateClusterResponse: z.ZodObject<{
|
|
|
1711
1932
|
tier: "basic" | "pro";
|
|
1712
1933
|
ready?: boolean | undefined;
|
|
1713
1934
|
region?: "staging" | "northamerica-central-1" | undefined;
|
|
1714
|
-
endpoint?: string | undefined;
|
|
1715
1935
|
version_channel?: string | undefined;
|
|
1716
|
-
certificate_ca?: string | undefined;
|
|
1717
1936
|
version_current?: string | undefined;
|
|
1718
1937
|
created_at?: string | undefined;
|
|
1719
1938
|
updated_at?: string | undefined;
|
|
1939
|
+
endpoint?: string | undefined;
|
|
1940
|
+
certificate_ca?: string | undefined;
|
|
1720
1941
|
}>;
|
|
1721
1942
|
export declare const zGetJoinInformationResponse: z.ZodObject<{
|
|
1722
1943
|
name: z.ZodString;
|
|
@@ -1735,15 +1956,15 @@ export declare const zGetJoinInformationResponse: z.ZodObject<{
|
|
|
1735
1956
|
name: string;
|
|
1736
1957
|
id: string;
|
|
1737
1958
|
status: "failed" | "active" | "deleted" | "creating" | "deployed" | "updating";
|
|
1738
|
-
tier: "basic" | "pro";
|
|
1739
1959
|
version_channel: string;
|
|
1960
|
+
tier: "basic" | "pro";
|
|
1740
1961
|
ready?: boolean | undefined;
|
|
1741
1962
|
region?: "staging" | "northamerica-central-1" | undefined;
|
|
1742
|
-
endpoint?: string | undefined;
|
|
1743
|
-
certificate_ca?: string | undefined;
|
|
1744
1963
|
version_current?: string | undefined;
|
|
1745
1964
|
created_at?: string | undefined;
|
|
1746
1965
|
updated_at?: string | undefined;
|
|
1966
|
+
endpoint?: string | undefined;
|
|
1967
|
+
certificate_ca?: string | undefined;
|
|
1747
1968
|
}, {
|
|
1748
1969
|
name: string;
|
|
1749
1970
|
id: string;
|
|
@@ -1751,12 +1972,12 @@ export declare const zGetJoinInformationResponse: z.ZodObject<{
|
|
|
1751
1972
|
tier: "basic" | "pro";
|
|
1752
1973
|
ready?: boolean | undefined;
|
|
1753
1974
|
region?: "staging" | "northamerica-central-1" | undefined;
|
|
1754
|
-
endpoint?: string | undefined;
|
|
1755
1975
|
version_channel?: string | undefined;
|
|
1756
|
-
certificate_ca?: string | undefined;
|
|
1757
1976
|
version_current?: string | undefined;
|
|
1758
1977
|
created_at?: string | undefined;
|
|
1759
1978
|
updated_at?: string | undefined;
|
|
1979
|
+
endpoint?: string | undefined;
|
|
1980
|
+
certificate_ca?: string | undefined;
|
|
1760
1981
|
}>;
|
|
1761
1982
|
export declare const zListInvitesResponse: z.ZodArray<z.ZodObject<{
|
|
1762
1983
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -1815,6 +2036,56 @@ export declare const zGetInviteResponse: z.ZodObject<{
|
|
|
1815
2036
|
email?: string | undefined;
|
|
1816
2037
|
organization_id?: string | undefined;
|
|
1817
2038
|
}>;
|
|
2039
|
+
export declare const zListMarketplaceChartsResponse: z.ZodArray<z.ZodObject<{
|
|
2040
|
+
id: z.ZodString;
|
|
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">>;
|
|
2047
|
+
}, "strip", z.ZodTypeAny, {
|
|
2048
|
+
name: string;
|
|
2049
|
+
id: string;
|
|
2050
|
+
description: string;
|
|
2051
|
+
developer: string;
|
|
2052
|
+
logoUrl: string;
|
|
2053
|
+
longDescription: string;
|
|
2054
|
+
categories?: string[] | undefined;
|
|
2055
|
+
}, {
|
|
2056
|
+
name: string;
|
|
2057
|
+
id: string;
|
|
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<{
|
|
2065
|
+
id: z.ZodString;
|
|
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">>;
|
|
2072
|
+
}, "strip", z.ZodTypeAny, {
|
|
2073
|
+
name: string;
|
|
2074
|
+
id: string;
|
|
2075
|
+
description: string;
|
|
2076
|
+
developer: string;
|
|
2077
|
+
logoUrl: string;
|
|
2078
|
+
longDescription: string;
|
|
2079
|
+
categories?: string[] | undefined;
|
|
2080
|
+
}, {
|
|
2081
|
+
name: string;
|
|
2082
|
+
id: string;
|
|
2083
|
+
description: string;
|
|
2084
|
+
developer: string;
|
|
2085
|
+
logoUrl: string;
|
|
2086
|
+
longDescription: string;
|
|
2087
|
+
categories?: string[] | undefined;
|
|
2088
|
+
}>;
|
|
1818
2089
|
export declare const zGetOrganizationResponse: z.ZodObject<{
|
|
1819
2090
|
id: z.ZodString;
|
|
1820
2091
|
name: z.ZodOptional<z.ZodString>;
|
package/dist/zod.gen.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"zod.gen.d.ts","sourceRoot":"","sources":["../src/zod.gen.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"zod.gen.d.ts","sourceRoot":"","sources":["../src/zod.gen.ts"],"names":[],"mappings":"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"}
|
package/dist/zod.gen.js
CHANGED
|
@@ -13,6 +13,56 @@ export const zBillingContact = z.object({
|
|
|
13
13
|
first_name: z.string(),
|
|
14
14
|
last_name: z.string()
|
|
15
15
|
});
|
|
16
|
+
export const zBillingCredits = z.object({
|
|
17
|
+
id: z.string().optional(),
|
|
18
|
+
date_created: z.string().datetime(),
|
|
19
|
+
code: z.string(),
|
|
20
|
+
description: z.string().optional(),
|
|
21
|
+
products: z.array(z.string()).optional(),
|
|
22
|
+
type: z.enum([
|
|
23
|
+
'credit',
|
|
24
|
+
'discount'
|
|
25
|
+
]),
|
|
26
|
+
value: z.number(),
|
|
27
|
+
billing_period: z.string().datetime(),
|
|
28
|
+
value_remaining: z.number().optional()
|
|
29
|
+
});
|
|
30
|
+
export const zChartCreateInput = z.object({
|
|
31
|
+
values: z.string(),
|
|
32
|
+
version_channel: z.string().regex(/^(x|X|0|[1-9]\d*)\.(x|X|0|[1-9]\d*)\.(x|X|0|[1-9]\d*)(?:-((?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*)(?:\.(?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*))*))?(?:\+([0-9a-zA-Z-]+(?:\.[0-9a-zA-Z-]+)*))?$/),
|
|
33
|
+
name: z.string().min(1).max(63).regex(/^[a-z0-9]([-a-z0-9]*[a-z0-9])?$/),
|
|
34
|
+
namespace: z.string().min(1).max(63).regex(/^[a-z0-9]([-a-z0-9]*[a-z0-9])?$/),
|
|
35
|
+
chart: z.string().min(1).max(63).regex(/^[a-z0-9]([-a-z0-9]*[a-z0-9])?$/)
|
|
36
|
+
});
|
|
37
|
+
export const zChart = z.object({
|
|
38
|
+
values: z.string(),
|
|
39
|
+
version_channel: z.string().regex(/^(x|X|0|[1-9]\d*)\.(x|X|0|[1-9]\d*)\.(x|X|0|[1-9]\d*)(?:-((?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*)(?:\.(?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*))*))?(?:\+([0-9a-zA-Z-]+(?:\.[0-9a-zA-Z-]+)*))?$/),
|
|
40
|
+
name: z.string().min(1).max(63).regex(/^[a-z0-9]([-a-z0-9]*[a-z0-9])?$/),
|
|
41
|
+
namespace: z.string().min(1).max(63).regex(/^[a-z0-9]([-a-z0-9]*[a-z0-9])?$/),
|
|
42
|
+
chart: z.string().min(1).max(63).regex(/^[a-z0-9]([-a-z0-9]*[a-z0-9])?$/),
|
|
43
|
+
status: z.enum([
|
|
44
|
+
'InstallSucceeded',
|
|
45
|
+
'InstallFailed',
|
|
46
|
+
'UpgradeSucceeded',
|
|
47
|
+
'UpgradeFailed',
|
|
48
|
+
'TestSucceeded',
|
|
49
|
+
'TestFailed',
|
|
50
|
+
'RollbackSucceeded',
|
|
51
|
+
'RollbackFailed',
|
|
52
|
+
'UninstallSucceeded',
|
|
53
|
+
'UninstallFailed',
|
|
54
|
+
'ArtifactFailed',
|
|
55
|
+
'DependencyNotReady'
|
|
56
|
+
]),
|
|
57
|
+
version_current: z.string(),
|
|
58
|
+
created_at: z.string(),
|
|
59
|
+
updated_at: z.string(),
|
|
60
|
+
ready: z.boolean()
|
|
61
|
+
});
|
|
62
|
+
export const zChartUpdateInput = z.object({
|
|
63
|
+
values: z.string(),
|
|
64
|
+
version_channel: z.string().regex(/^(x|X|0|[1-9]\d*)\.(x|X|0|[1-9]\d*)\.(x|X|0|[1-9]\d*)(?:-((?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*)(?:\.(?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*))*))?(?:\+([0-9a-zA-Z-]+(?:\.[0-9a-zA-Z-]+)*))?$/)
|
|
65
|
+
});
|
|
16
66
|
export const zClusterCreateInput = z.object({
|
|
17
67
|
name: z.string().min(1).max(63).regex(/^[a-z0-9]([-a-z0-9]*[a-z0-9])?$/),
|
|
18
68
|
region: z.enum([
|
|
@@ -747,6 +797,15 @@ export const zInvoice = z.object({
|
|
|
747
797
|
childItems: z.array(z.unknown()).optional()
|
|
748
798
|
})).optional()
|
|
749
799
|
});
|
|
800
|
+
export const zMarketplaceListing = z.object({
|
|
801
|
+
id: z.string().min(1).max(63).regex(/^[a-z0-9]([-a-z0-9]*[a-z0-9])?$/),
|
|
802
|
+
name: z.string(),
|
|
803
|
+
developer: z.string(),
|
|
804
|
+
description: z.string(),
|
|
805
|
+
logoUrl: z.string(),
|
|
806
|
+
longDescription: z.string(),
|
|
807
|
+
categories: z.array(z.string()).optional()
|
|
808
|
+
});
|
|
750
809
|
export const zOrganizationCreateInput = z.object({
|
|
751
810
|
email: z.string().email(),
|
|
752
811
|
first_name: z.string(),
|
|
@@ -916,6 +975,12 @@ export const zGetInvoiceResponse = z.object({
|
|
|
916
975
|
});
|
|
917
976
|
export const zGetContactResponse = zBillingContact;
|
|
918
977
|
export const zUpdateContactResponse = zBillingContact;
|
|
978
|
+
export const zGetCreditsResponse = z.array(zBillingCredits);
|
|
979
|
+
export const zListChartsResponse = z.array(zChart);
|
|
980
|
+
export const zCreateChartResponse = z.string();
|
|
981
|
+
export const zDeleteChartResponse = z.string();
|
|
982
|
+
export const zGetChartResponse = zChart;
|
|
983
|
+
export const zUpdateChartResponse = z.string();
|
|
919
984
|
export const zListFleetsResponse = z.array(zFleet);
|
|
920
985
|
export const zCreateFleetResponse = z.string();
|
|
921
986
|
export const zDeleteFleetResponse = z.string();
|
|
@@ -930,6 +995,8 @@ export const zGetJoinInformationResponse = zCluster;
|
|
|
930
995
|
export const zListInvitesResponse = z.array(zInvite);
|
|
931
996
|
export const zCreateInviteResponse = zInvite;
|
|
932
997
|
export const zGetInviteResponse = zInvite;
|
|
998
|
+
export const zListMarketplaceChartsResponse = z.array(zMarketplaceListing);
|
|
999
|
+
export const zGetMarketplaceChartResponse = zMarketplaceListing;
|
|
933
1000
|
export const zGetOrganizationResponse = zOrganization;
|
|
934
1001
|
export const zListTokensResponse = z.array(zToken);
|
|
935
1002
|
export const zCreateTokenResponse = zToken;
|