@backstage/backend-app-api 0.6.0-next.1 → 0.6.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/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: string;
256
- format: Format;
257
- transports: transport[];
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.1",
4
+ "version": "0.6.0",
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.1",
47
- "@backstage/backend-plugin-api": "^0.6.14-next.1",
48
- "@backstage/backend-tasks": "^0.5.19-next.1",
46
+ "@backstage/backend-common": "^0.21.4",
47
+ "@backstage/backend-plugin-api": "^0.6.14",
48
+ "@backstage/backend-tasks": "^0.5.19",
49
49
  "@backstage/cli-common": "^0.1.13",
50
- "@backstage/cli-node": "^0.2.4-next.0",
51
- "@backstage/config": "^1.2.0-next.1",
52
- "@backstage/config-loader": "^1.7.0-next.1",
53
- "@backstage/errors": "^1.2.4-next.0",
54
- "@backstage/plugin-auth-node": "^0.4.9-next.1",
55
- "@backstage/plugin-permission-node": "^0.7.25-next.1",
50
+ "@backstage/cli-node": "^0.2.4",
51
+ "@backstage/config": "^1.2.0",
52
+ "@backstage/config-loader": "^1.7.0",
53
+ "@backstage/errors": "^1.2.4",
54
+ "@backstage/plugin-auth-node": "^0.4.9",
55
+ "@backstage/plugin-permission-node": "^0.7.25",
56
56
  "@backstage/types": "^1.1.1",
57
57
  "@manypkg/get-packages": "^1.1.3",
58
58
  "@types/cors": "^2.8.6",
@@ -62,6 +62,7 @@
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",
65
66
  "fs-extra": "^11.2.0",
66
67
  "helmet": "^6.0.0",
67
68
  "jose": "^5.0.0",
@@ -78,8 +79,8 @@
78
79
  "winston-transport": "^4.5.0"
79
80
  },
80
81
  "devDependencies": {
81
- "@backstage/backend-test-utils": "^0.3.4-next.1",
82
- "@backstage/cli": "^0.25.3-next.1",
82
+ "@backstage/backend-test-utils": "^0.3.4",
83
+ "@backstage/cli": "^0.26.0",
83
84
  "@types/compression": "^1.7.0",
84
85
  "@types/fs-extra": "^11.0.0",
85
86
  "@types/http-errors": "^2.0.0",