@backstage-community/plugin-blackduck-backend 0.0.4 → 0.0.5

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 CHANGED
@@ -1,5 +1,11 @@
1
1
  # @backstage-community/plugin-blackduck-backend
2
2
 
3
+ ## 0.0.5
4
+
5
+ ### Patch Changes
6
+
7
+ - e8617d5: Fixed missing configSchema in blackduck-backend Plugin.
8
+
3
9
  ## 0.0.4
4
10
 
5
11
  ### Patch Changes
package/config.d.ts ADDED
@@ -0,0 +1,29 @@
1
+ export interface Config {
2
+ blackduck?: {
3
+ /**
4
+ * The default host name.
5
+ * @visibility frontend
6
+ */
7
+ default: string;
8
+ /**
9
+ * An array of Black Duck hosts.
10
+ */
11
+ hosts: Array<{
12
+ /**
13
+ * Host name identifier.
14
+ * @visibility frontend
15
+ */
16
+ name: string;
17
+ /**
18
+ * The host URL for the Black Duck instance.
19
+ * @visibility frontend
20
+ */
21
+ host: string;
22
+ /**
23
+ * API token for authentication.
24
+ * @visibility secret
25
+ */
26
+ token: string;
27
+ }>;
28
+ };
29
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage-community/plugin-blackduck-backend",
3
- "version": "0.0.4",
3
+ "version": "0.0.5",
4
4
  "main": "dist/index.cjs.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "license": "Apache-2.0",
@@ -56,6 +56,8 @@
56
56
  "supertest": "^7.0.0"
57
57
  },
58
58
  "files": [
59
- "dist"
60
- ]
59
+ "dist",
60
+ "config.d.ts"
61
+ ],
62
+ "configSchema": "config.d.ts"
61
63
  }