@backstage/backend-openapi-utils 0.5.5-next.0 → 0.6.0-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 +20 -0
- package/dist/index.d.ts +1 -1
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# @backstage/backend-openapi-utils
|
|
2
2
|
|
|
3
|
+
## 0.6.0-next.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- c08cbc4: Move Scaffolder API to OpenAPI
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies
|
|
12
|
+
- @backstage/backend-plugin-api@1.4.2-next.0
|
|
13
|
+
- @backstage/errors@1.2.7
|
|
14
|
+
- @backstage/types@1.2.1
|
|
15
|
+
|
|
16
|
+
## 0.5.5
|
|
17
|
+
|
|
18
|
+
### Patch Changes
|
|
19
|
+
|
|
20
|
+
- Updated dependencies
|
|
21
|
+
- @backstage/backend-plugin-api@1.4.1
|
|
22
|
+
|
|
3
23
|
## 0.5.5-next.0
|
|
4
24
|
|
|
5
25
|
### Patch Changes
|
package/dist/index.d.ts
CHANGED
|
@@ -395,7 +395,7 @@ interface DocRequestMatcher<Doc extends RequiredDoc, T, Method extends 'all' | '
|
|
|
395
395
|
type EndpointMap = Record<string, {
|
|
396
396
|
query?: object;
|
|
397
397
|
body?: object;
|
|
398
|
-
response?: object | void;
|
|
398
|
+
response?: object | string | void;
|
|
399
399
|
path?: object;
|
|
400
400
|
}>;
|
|
401
401
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/backend-openapi-utils",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.6.0-next.0",
|
|
4
4
|
"description": "OpenAPI typescript support.",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "node-library"
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
},
|
|
55
55
|
"dependencies": {
|
|
56
56
|
"@apidevtools/swagger-parser": "^10.1.0",
|
|
57
|
-
"@backstage/backend-plugin-api": "1.4.
|
|
57
|
+
"@backstage/backend-plugin-api": "1.4.2-next.0",
|
|
58
58
|
"@backstage/errors": "1.2.7",
|
|
59
59
|
"@backstage/types": "1.2.1",
|
|
60
60
|
"@types/express": "^4.17.6",
|
|
@@ -71,8 +71,8 @@
|
|
|
71
71
|
"openapi3-ts": "^3.1.2"
|
|
72
72
|
},
|
|
73
73
|
"devDependencies": {
|
|
74
|
-
"@backstage/cli": "0.33.
|
|
75
|
-
"@backstage/test-utils": "1.7.
|
|
74
|
+
"@backstage/cli": "0.33.2-next.0",
|
|
75
|
+
"@backstage/test-utils": "1.7.11-next.0",
|
|
76
76
|
"msw": "^1.0.0",
|
|
77
77
|
"supertest": "^7.0.0"
|
|
78
78
|
}
|