@backstage/backend-app-api 0.6.0-next.1 → 0.6.0-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 +19 -0
- package/alpha/package.json +1 -1
- package/dist/index.cjs.js +10 -5
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +4 -3
- package/package.json +8 -8
package/dist/index.d.ts
CHANGED
|
@@ -252,9 +252,9 @@ declare function readHelmetOptions(config?: Config): HelmetOptions;
|
|
|
252
252
|
*/
|
|
253
253
|
interface WinstonLoggerOptions {
|
|
254
254
|
meta?: JsonObject;
|
|
255
|
-
level
|
|
256
|
-
format
|
|
257
|
-
transports
|
|
255
|
+
level?: string;
|
|
256
|
+
format?: Format;
|
|
257
|
+
transports?: transport[];
|
|
258
258
|
}
|
|
259
259
|
/**
|
|
260
260
|
* A {@link @backstage/backend-plugin-api#LoggerService} implementation based on winston.
|
|
@@ -325,6 +325,7 @@ interface RootConfigFactoryOptions {
|
|
|
325
325
|
* Enables and sets options for remote configuration loading.
|
|
326
326
|
*/
|
|
327
327
|
remote?: Pick<RemoteConfigSourceOptions, 'reloadInterval'>;
|
|
328
|
+
watch?: boolean;
|
|
328
329
|
}
|
|
329
330
|
/** @public */
|
|
330
331
|
declare const rootConfigServiceFactory: (options?: RootConfigFactoryOptions | undefined) => _backstage_backend_plugin_api.ServiceFactory<_backstage_backend_plugin_api.RootConfigService, "root">;
|
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.0-next.
|
|
4
|
+
"version": "0.6.0-next.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.4-next.
|
|
47
|
-
"@backstage/backend-plugin-api": "^0.6.14-next.
|
|
48
|
-
"@backstage/backend-tasks": "^0.5.19-next.
|
|
46
|
+
"@backstage/backend-common": "^0.21.4-next.2",
|
|
47
|
+
"@backstage/backend-plugin-api": "^0.6.14-next.2",
|
|
48
|
+
"@backstage/backend-tasks": "^0.5.19-next.2",
|
|
49
49
|
"@backstage/cli-common": "^0.1.13",
|
|
50
50
|
"@backstage/cli-node": "^0.2.4-next.0",
|
|
51
51
|
"@backstage/config": "^1.2.0-next.1",
|
|
52
52
|
"@backstage/config-loader": "^1.7.0-next.1",
|
|
53
53
|
"@backstage/errors": "^1.2.4-next.0",
|
|
54
|
-
"@backstage/plugin-auth-node": "^0.4.9-next.
|
|
55
|
-
"@backstage/plugin-permission-node": "^0.7.25-next.
|
|
54
|
+
"@backstage/plugin-auth-node": "^0.4.9-next.2",
|
|
55
|
+
"@backstage/plugin-permission-node": "^0.7.25-next.2",
|
|
56
56
|
"@backstage/types": "^1.1.1",
|
|
57
57
|
"@manypkg/get-packages": "^1.1.3",
|
|
58
58
|
"@types/cors": "^2.8.6",
|
|
@@ -78,8 +78,8 @@
|
|
|
78
78
|
"winston-transport": "^4.5.0"
|
|
79
79
|
},
|
|
80
80
|
"devDependencies": {
|
|
81
|
-
"@backstage/backend-test-utils": "^0.3.4-next.
|
|
82
|
-
"@backstage/cli": "^0.25.3-next.
|
|
81
|
+
"@backstage/backend-test-utils": "^0.3.4-next.2",
|
|
82
|
+
"@backstage/cli": "^0.25.3-next.2",
|
|
83
83
|
"@types/compression": "^1.7.0",
|
|
84
84
|
"@types/fs-extra": "^11.0.0",
|
|
85
85
|
"@types/http-errors": "^2.0.0",
|