@backstage/backend-app-api 0.6.0 → 0.6.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 +36 -0
- package/alpha/package.json +1 -1
- package/config.d.ts +0 -19
- package/dist/alpha.cjs.js +3 -5
- package/dist/alpha.cjs.js.map +1 -1
- package/dist/index.cjs.js +281 -414
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +8 -9
package/dist/index.d.ts
CHANGED
|
@@ -526,4 +526,4 @@ declare const urlReaderServiceFactory: () => _backstage_backend_plugin_api.Servi
|
|
|
526
526
|
/** @public */
|
|
527
527
|
declare const userInfoServiceFactory: () => _backstage_backend_plugin_api.ServiceFactory<UserInfoService, "plugin">;
|
|
528
528
|
|
|
529
|
-
export { Backend, CreateSpecializedBackendOptions, DefaultRootHttpRouter, DefaultRootHttpRouterOptions, ExtendedHttpServer, HostDiscovery, HttpRouterFactoryOptions, HttpServerCertificateOptions, HttpServerOptions, IdentityFactoryOptions, LifecycleMiddlewareOptions, MiddlewareFactory, MiddlewareFactoryErrorOptions, MiddlewareFactoryOptions, RootConfigFactoryOptions, RootHttpRouterConfigureContext, RootHttpRouterFactoryOptions, WinstonLogger, WinstonLoggerOptions, authServiceFactory, cacheServiceFactory, createConfigSecretEnumerator, createHttpServer, createLifecycleMiddleware, createSpecializedBackend, databaseServiceFactory, discoveryServiceFactory, httpAuthServiceFactory, httpRouterServiceFactory, identityServiceFactory, lifecycleServiceFactory, loadBackendConfig, loggerServiceFactory, permissionsServiceFactory, readCorsOptions, readHelmetOptions, readHttpServerOptions, rootConfigServiceFactory, rootHttpRouterServiceFactory, rootLifecycleServiceFactory, rootLoggerServiceFactory, schedulerServiceFactory, tokenManagerServiceFactory, urlReaderServiceFactory, userInfoServiceFactory };
|
|
529
|
+
export { type Backend, type CreateSpecializedBackendOptions, DefaultRootHttpRouter, type DefaultRootHttpRouterOptions, type ExtendedHttpServer, HostDiscovery, type HttpRouterFactoryOptions, type HttpServerCertificateOptions, type HttpServerOptions, type IdentityFactoryOptions, type LifecycleMiddlewareOptions, MiddlewareFactory, type MiddlewareFactoryErrorOptions, type MiddlewareFactoryOptions, type RootConfigFactoryOptions, type RootHttpRouterConfigureContext, type RootHttpRouterFactoryOptions, WinstonLogger, type WinstonLoggerOptions, authServiceFactory, cacheServiceFactory, createConfigSecretEnumerator, createHttpServer, createLifecycleMiddleware, createSpecializedBackend, databaseServiceFactory, discoveryServiceFactory, httpAuthServiceFactory, httpRouterServiceFactory, identityServiceFactory, lifecycleServiceFactory, loadBackendConfig, loggerServiceFactory, permissionsServiceFactory, readCorsOptions, readHelmetOptions, readHttpServerOptions, rootConfigServiceFactory, rootHttpRouterServiceFactory, rootLifecycleServiceFactory, rootLoggerServiceFactory, schedulerServiceFactory, tokenManagerServiceFactory, urlReaderServiceFactory, userInfoServiceFactory };
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/backend-app-api",
|
|
3
3
|
"description": "Core API used by Backstage backend apps",
|
|
4
|
-
"version": "0.6.
|
|
4
|
+
"version": "0.6.2",
|
|
5
5
|
"main": "./dist/index.cjs.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
7
7
|
"publishConfig": {
|
|
@@ -43,16 +43,16 @@
|
|
|
43
43
|
"start": "backstage-cli package start"
|
|
44
44
|
},
|
|
45
45
|
"dependencies": {
|
|
46
|
-
"@backstage/backend-common": "^0.21.
|
|
47
|
-
"@backstage/backend-plugin-api": "^0.6.
|
|
48
|
-
"@backstage/backend-tasks": "^0.5.
|
|
46
|
+
"@backstage/backend-common": "^0.21.6",
|
|
47
|
+
"@backstage/backend-plugin-api": "^0.6.16",
|
|
48
|
+
"@backstage/backend-tasks": "^0.5.21",
|
|
49
49
|
"@backstage/cli-common": "^0.1.13",
|
|
50
50
|
"@backstage/cli-node": "^0.2.4",
|
|
51
51
|
"@backstage/config": "^1.2.0",
|
|
52
52
|
"@backstage/config-loader": "^1.7.0",
|
|
53
53
|
"@backstage/errors": "^1.2.4",
|
|
54
|
-
"@backstage/plugin-auth-node": "^0.4.
|
|
55
|
-
"@backstage/plugin-permission-node": "^0.7.
|
|
54
|
+
"@backstage/plugin-auth-node": "^0.4.11",
|
|
55
|
+
"@backstage/plugin-permission-node": "^0.7.27",
|
|
56
56
|
"@backstage/types": "^1.1.1",
|
|
57
57
|
"@manypkg/get-packages": "^1.1.3",
|
|
58
58
|
"@types/cors": "^2.8.6",
|
|
@@ -62,7 +62,6 @@
|
|
|
62
62
|
"cors": "^2.8.5",
|
|
63
63
|
"express": "^4.17.1",
|
|
64
64
|
"express-promise-router": "^4.1.0",
|
|
65
|
-
"express-rate-limit": "^7.2.0",
|
|
66
65
|
"fs-extra": "^11.2.0",
|
|
67
66
|
"helmet": "^6.0.0",
|
|
68
67
|
"jose": "^5.0.0",
|
|
@@ -79,8 +78,8 @@
|
|
|
79
78
|
"winston-transport": "^4.5.0"
|
|
80
79
|
},
|
|
81
80
|
"devDependencies": {
|
|
82
|
-
"@backstage/backend-test-utils": "^0.3.
|
|
83
|
-
"@backstage/cli": "^0.26.
|
|
81
|
+
"@backstage/backend-test-utils": "^0.3.6",
|
|
82
|
+
"@backstage/cli": "^0.26.2",
|
|
84
83
|
"@types/compression": "^1.7.0",
|
|
85
84
|
"@types/fs-extra": "^11.0.0",
|
|
86
85
|
"@types/http-errors": "^2.0.0",
|