@backstage/backend-app-api 0.7.6-next.0 → 0.7.6-next.2
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 +32 -0
- package/alpha/package.json +1 -1
- package/config.d.ts +121 -0
- package/dist/index.cjs.js +224 -45
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +9 -9
package/dist/index.d.ts
CHANGED
|
@@ -317,7 +317,7 @@ declare const authServiceFactory: () => _backstage_backend_plugin_api.ServiceFac
|
|
|
317
317
|
* @public
|
|
318
318
|
* @deprecated Please import from `@backstage/backend-defaults/cache` instead.
|
|
319
319
|
*/
|
|
320
|
-
declare const cacheServiceFactory: () => _backstage_backend_plugin_api.ServiceFactory<
|
|
320
|
+
declare const cacheServiceFactory: () => _backstage_backend_plugin_api.ServiceFactory<_backstage_backend_plugin_api.CacheService, "plugin">;
|
|
321
321
|
|
|
322
322
|
/**
|
|
323
323
|
* @public
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/backend-app-api",
|
|
3
|
-
"version": "0.7.6-next.
|
|
3
|
+
"version": "0.7.6-next.2",
|
|
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.
|
|
53
|
-
"@backstage/backend-plugin-api": "^0.6.19-next.
|
|
54
|
-
"@backstage/backend-tasks": "^0.5.24-next.
|
|
52
|
+
"@backstage/backend-common": "^0.23.0-next.2",
|
|
53
|
+
"@backstage/backend-plugin-api": "^0.6.19-next.2",
|
|
54
|
+
"@backstage/backend-tasks": "^0.5.24-next.2",
|
|
55
55
|
"@backstage/cli-common": "^0.1.13",
|
|
56
|
-
"@backstage/cli-node": "^0.2.6-next.
|
|
56
|
+
"@backstage/cli-node": "^0.2.6-next.1",
|
|
57
57
|
"@backstage/config": "^1.2.0",
|
|
58
58
|
"@backstage/config-loader": "^1.8.0",
|
|
59
59
|
"@backstage/errors": "^1.2.4",
|
|
60
|
-
"@backstage/plugin-auth-node": "^0.4.14-next.
|
|
61
|
-
"@backstage/plugin-permission-node": "^0.7.30-next.
|
|
60
|
+
"@backstage/plugin-auth-node": "^0.4.14-next.2",
|
|
61
|
+
"@backstage/plugin-permission-node": "^0.7.30-next.2",
|
|
62
62
|
"@backstage/types": "^1.1.1",
|
|
63
63
|
"@manypkg/get-packages": "^1.1.3",
|
|
64
64
|
"@types/cors": "^2.8.6",
|
|
@@ -88,8 +88,8 @@
|
|
|
88
88
|
"winston-transport": "^4.5.0"
|
|
89
89
|
},
|
|
90
90
|
"devDependencies": {
|
|
91
|
-
"@backstage/backend-test-utils": "^0.
|
|
92
|
-
"@backstage/cli": "^0.26.
|
|
91
|
+
"@backstage/backend-test-utils": "^0.4.0-next.2",
|
|
92
|
+
"@backstage/cli": "^0.26.7-next.2",
|
|
93
93
|
"@types/compression": "^1.7.0",
|
|
94
94
|
"@types/fs-extra": "^11.0.0",
|
|
95
95
|
"@types/http-errors": "^2.0.0",
|