@backstage/backend-app-api 0.7.7 → 0.7.9-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 +8 -7
- package/alpha/package.json +1 -1
- package/dist/index.cjs.js +26 -3
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +2 -1
- package/package.json +9 -9
package/dist/index.d.ts
CHANGED
|
@@ -283,7 +283,7 @@ declare class MiddlewareFactory {
|
|
|
283
283
|
/**
|
|
284
284
|
* Creates a new {@link MiddlewareFactory}.
|
|
285
285
|
*/
|
|
286
|
-
static create(options: MiddlewareFactoryOptions): MiddlewareFactory
|
|
286
|
+
static create(options: MiddlewareFactoryOptions): MiddlewareFactory;
|
|
287
287
|
private constructor();
|
|
288
288
|
/**
|
|
289
289
|
* Returns a middleware that unconditionally produces a 404 error response.
|
|
@@ -712,6 +712,7 @@ interface RootHttpRouterConfigureContext$1 {
|
|
|
712
712
|
config: RootConfigService;
|
|
713
713
|
logger: LoggerService;
|
|
714
714
|
lifecycle: LifecycleService;
|
|
715
|
+
healthRouter: RequestHandler;
|
|
715
716
|
applyDefaults: () => void;
|
|
716
717
|
}
|
|
717
718
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/backend-app-api",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.9-next.0",
|
|
4
4
|
"description": "Core API used by Backstage backend apps",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "node-library"
|
|
@@ -49,16 +49,16 @@
|
|
|
49
49
|
"test": "backstage-cli package test"
|
|
50
50
|
},
|
|
51
51
|
"dependencies": {
|
|
52
|
-
"@backstage/backend-common": "^0.23.
|
|
53
|
-
"@backstage/backend-plugin-api": "^0.6.
|
|
54
|
-
"@backstage/backend-tasks": "^0.5.
|
|
52
|
+
"@backstage/backend-common": "^0.23.2-next.0",
|
|
53
|
+
"@backstage/backend-plugin-api": "^0.6.21-next.0",
|
|
54
|
+
"@backstage/backend-tasks": "^0.5.26-next.0",
|
|
55
55
|
"@backstage/cli-common": "^0.1.14",
|
|
56
56
|
"@backstage/cli-node": "^0.2.6",
|
|
57
57
|
"@backstage/config": "^1.2.0",
|
|
58
58
|
"@backstage/config-loader": "^1.8.1",
|
|
59
59
|
"@backstage/errors": "^1.2.4",
|
|
60
|
-
"@backstage/plugin-auth-node": "^0.4.
|
|
61
|
-
"@backstage/plugin-permission-node": "^0.7.
|
|
60
|
+
"@backstage/plugin-auth-node": "^0.4.16-next.0",
|
|
61
|
+
"@backstage/plugin-permission-node": "^0.7.32-next.0",
|
|
62
62
|
"@backstage/types": "^1.1.1",
|
|
63
63
|
"@manypkg/get-packages": "^1.1.3",
|
|
64
64
|
"@types/cors": "^2.8.6",
|
|
@@ -89,9 +89,9 @@
|
|
|
89
89
|
"winston-transport": "^4.5.0"
|
|
90
90
|
},
|
|
91
91
|
"devDependencies": {
|
|
92
|
-
"@backstage/backend-defaults": "^0.3.
|
|
93
|
-
"@backstage/backend-test-utils": "^0.4.
|
|
94
|
-
"@backstage/cli": "^0.26.
|
|
92
|
+
"@backstage/backend-defaults": "^0.3.3-next.0",
|
|
93
|
+
"@backstage/backend-test-utils": "^0.4.3-next.0",
|
|
94
|
+
"@backstage/cli": "^0.26.10-next.0",
|
|
95
95
|
"@types/compression": "^1.7.0",
|
|
96
96
|
"@types/fs-extra": "^11.0.0",
|
|
97
97
|
"@types/http-errors": "^2.0.0",
|