Skip to content

Commit b416c44

Browse files
authored
bump: openapi-typescript to 6.5.0 (#99)
This fixes the issue of different versions producing different variants, thus chaning the schema back and forth.
1 parent 695d860 commit b416c44

File tree

3 files changed

+677
-606
lines changed

3 files changed

+677
-606
lines changed

web/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"eslint-config-prettier": "^8.8.0",
2525
"eslint-plugin-solid": "^0.12.1",
2626
"eslint-plugin-unicorn": "^47.0.0",
27-
"openapi-typescript": "^6.2.5",
27+
"openapi-typescript": "^6.5.0",
2828
"prettier": "^2.8.8",
2929
"typescript": "^5.0.2",
3030
"unocss": "^0.51.8",

web/src/api/schema.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ export interface components {
105105
description: string;
106106
/** @description List of products and their version in this release */
107107
products: {
108-
[key: string]: components["schemas"]["ProductSpec"] | undefined;
108+
[key: string]: components["schemas"]["ProductSpec"];
109109
};
110110
/** @description Date this released was released */
111111
releaseDate: string;
@@ -122,7 +122,7 @@ export interface components {
122122
* The key is the service name (e.g. `web-ui`), the value is the URL.
123123
*/
124124
endpoints: {
125-
[key: string]: string | undefined;
125+
[key: string]: string;
126126
};
127127
/** @description Name of the stacklet. */
128128
name: string;

0 commit comments

Comments
 (0)