@backstage/backend-openapi-utils 0.3.0-next.2 → 0.3.1-next.0
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/CHANGELOG.md +23 -0
- package/README.md +1 -1
- package/package.json +13 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,28 @@
|
|
|
1
1
|
# @backstage/backend-openapi-utils
|
|
2
2
|
|
|
3
|
+
## 0.3.1-next.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
- @backstage/backend-plugin-api@1.0.3-next.0
|
|
9
|
+
- @backstage/errors@1.2.5
|
|
10
|
+
- @backstage/types@1.2.0
|
|
11
|
+
|
|
12
|
+
## 0.3.0
|
|
13
|
+
|
|
14
|
+
### Minor Changes
|
|
15
|
+
|
|
16
|
+
- 1440232: Adds a new `createValidatedOpenApiRouterFromGeneratedEndpointMap` function that uses the new static server generation in `backstage-cli package schema openapi generate --server` to create a typed express router.
|
|
17
|
+
|
|
18
|
+
### Patch Changes
|
|
19
|
+
|
|
20
|
+
- f01787a: Moves msw from dependencies to devDependencies
|
|
21
|
+
- Updated dependencies
|
|
22
|
+
- @backstage/types@1.2.0
|
|
23
|
+
- @backstage/backend-plugin-api@1.0.2
|
|
24
|
+
- @backstage/errors@1.2.5
|
|
25
|
+
|
|
3
26
|
## 0.3.0-next.2
|
|
4
27
|
|
|
5
28
|
### Minor Changes
|
package/README.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/backend-openapi-utils",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.1-next.0",
|
|
4
4
|
"description": "OpenAPI typescript support.",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "node-library"
|
|
@@ -34,9 +34,9 @@
|
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
36
|
"@apidevtools/swagger-parser": "^10.1.0",
|
|
37
|
-
"@backstage/backend-plugin-api": "1.0.
|
|
38
|
-
"@backstage/errors": "1.2.
|
|
39
|
-
"@backstage/types": "1.
|
|
37
|
+
"@backstage/backend-plugin-api": "1.0.3-next.0",
|
|
38
|
+
"@backstage/errors": "1.2.5",
|
|
39
|
+
"@backstage/types": "1.2.0",
|
|
40
40
|
"@types/express": "^4.17.6",
|
|
41
41
|
"@types/express-serve-static-core": "^4.17.5",
|
|
42
42
|
"ajv": "^8.16.0",
|
|
@@ -51,10 +51,17 @@
|
|
|
51
51
|
"openapi3-ts": "^3.1.2"
|
|
52
52
|
},
|
|
53
53
|
"devDependencies": {
|
|
54
|
-
"@backstage/cli": "0.29.
|
|
55
|
-
"@backstage/test-utils": "1.7.
|
|
54
|
+
"@backstage/cli": "0.29.3-next.0",
|
|
55
|
+
"@backstage/test-utils": "1.7.3-next.0",
|
|
56
56
|
"msw": "^1.0.0",
|
|
57
57
|
"supertest": "^7.0.0"
|
|
58
58
|
},
|
|
59
|
+
"typesVersions": {
|
|
60
|
+
"*": {
|
|
61
|
+
"index": [
|
|
62
|
+
"dist/index.d.ts"
|
|
63
|
+
]
|
|
64
|
+
}
|
|
65
|
+
},
|
|
59
66
|
"module": "dist/index.esm.js"
|
|
60
67
|
}
|