@@ -12,14 +12,14 @@ type OneOf<T extends any[]> = T extends [infer Only] ? Only : T extends [infer A
1212export interface paths {
1313 "/demos" : {
1414 /**
15- * Retrieves all demos.
15+ * Retrieves all demos.
1616 * @description Retrieves all demos.
1717 */
1818 get : operations [ "get_demos" ] ;
1919 } ;
2020 "/demos/{name}" : {
2121 /**
22- * Retrieves one demo identified by `name`.
22+ * Retrieves one demo identified by `name`.
2323 * @description Retrieves one demo identified by `name`.
2424 */
2525 get : operations [ "get_demo" ] ;
@@ -32,21 +32,21 @@ export interface paths {
3232 } ;
3333 "/releases" : {
3434 /**
35- * Retrieves all releases.
35+ * Retrieves all releases.
3636 * @description Retrieves all releases.
3737 */
3838 get : operations [ "get_releases" ] ;
3939 } ;
4040 "/releases/{name}" : {
4141 /**
42- * Retrieves one release identified by `name`.
42+ * Retrieves one release identified by `name`.
4343 * @description Retrieves one release identified by `name`.
4444 */
4545 get : operations [ "get_release" ] ;
4646 } ;
4747 "/stacklets" : {
4848 /**
49- * Retrieves all stacklets.
49+ * Retrieves all stacklets.
5050 * @description Retrieves all stacklets.
5151 */
5252 get : operations [ "get_stacklets" ] ;
@@ -64,18 +64,18 @@ export interface components {
6464 /** @description An optional link to a documentation page */
6565 documentation ?: string | null ;
6666 /** @description A variable number of labels (tags) */
67- labels ?: ( string ) [ ] ;
67+ labels ?: string [ ] ;
6868 /** @description A variable number of Helm or YAML manifests */
69- manifests ?: ( components [ "schemas" ] [ "ManifestSpec" ] ) [ ] ;
69+ manifests ?: components [ "schemas" ] [ "ManifestSpec" ] [ ] ;
7070 /** @description A variable number of supported parameters */
71- parameters ?: ( components [ "schemas" ] [ "Parameter" ] ) [ ] ;
71+ parameters ?: components [ "schemas" ] [ "Parameter" ] [ ] ;
7272 /** @description The name of the underlying stack */
7373 stackableStack : string ;
7474 /**
7575 * @description Supported namespaces this demo can run in. An empty list indicates that
7676 * the demo can run in any namespace.
7777 */
78- supportedNamespaces ?: ( string ) [ ] ;
78+ supportedNamespaces ?: string [ ] ;
7979 } ;
8080 DisplayCondition : {
8181 condition : string ;
@@ -116,7 +116,7 @@ export interface components {
116116 SessionToken : string ;
117117 Stacklet : {
118118 /** @description Multiple cluster conditions. */
119- conditions : ( components [ "schemas" ] [ "DisplayCondition" ] ) [ ] ;
119+ conditions : components [ "schemas" ] [ "DisplayCondition" ] [ ] ;
120120 /**
121121 * @description Endpoint addresses the product is reachable at.
122122 * The key is the service name (e.g. `web-ui`), the value is the URL.
@@ -144,23 +144,25 @@ export type external = Record<string, never>;
144144export interface operations {
145145
146146 /**
147- * Retrieves all demos.
147+ * Retrieves all demos.
148148 * @description Retrieves all demos.
149149 */
150150 get_demos : {
151151 responses : {
152152 /** @description Retrieving a list of demos succeeded */
153153 200 : {
154154 content : {
155- "application/json" : ( components [ "schemas" ] [ "DemoSpecV2" ] ) [ ] ;
155+ "application/json" : components [ "schemas" ] [ "DemoSpecV2" ] [ ] ;
156156 } ;
157157 } ;
158158 /** @description Retrieving a list of demos failed */
159- 404 : never ;
159+ 404 : {
160+ content : never ;
161+ } ;
160162 } ;
161163 } ;
162164 /**
163- * Retrieves one demo identified by `name`.
165+ * Retrieves one demo identified by `name`.
164166 * @description Retrieves one demo identified by `name`.
165167 */
166168 get_demo : {
@@ -172,7 +174,9 @@ export interface operations {
172174 } ;
173175 } ;
174176 /** @description Retrieving the demo with 'name' failed */
175- 404 : never ;
177+ 404 : {
178+ content : never ;
179+ } ;
176180 } ;
177181 } ;
178182 log_in : {
@@ -199,38 +203,40 @@ export interface operations {
199203 } ;
200204 } ;
201205 /**
202- * Retrieves all releases.
206+ * Retrieves all releases.
203207 * @description Retrieves all releases.
204208 */
205209 get_releases : {
206210 responses : {
207211 /** @description Retrieving a list of releases succeeded */
208212 200 : {
209213 content : {
210- "application/json" : ( components [ "schemas" ] [ "ReleaseSpec" ] ) [ ] ;
214+ "application/json" : components [ "schemas" ] [ "ReleaseSpec" ] [ ] ;
211215 } ;
212216 } ;
213217 /** @description Retrieving a list of releases failed */
214- 404 : never ;
218+ 404 : {
219+ content : never ;
220+ } ;
215221 } ;
216222 } ;
217223 /**
218- * Retrieves one release identified by `name`.
224+ * Retrieves one release identified by `name`.
219225 * @description Retrieves one release identified by `name`.
220226 */
221227 get_release : {
222228 responses : {
223229 } ;
224230 } ;
225231 /**
226- * Retrieves all stacklets.
232+ * Retrieves all stacklets.
227233 * @description Retrieves all stacklets.
228234 */
229235 get_stacklets : {
230236 responses : {
231237 200 : {
232238 content : {
233- "application/json" : ( components [ "schemas" ] [ "Stacklet" ] ) [ ] ;
239+ "application/json" : components [ "schemas" ] [ "Stacklet" ] [ ] ;
234240 } ;
235241 } ;
236242 } ;
0 commit comments