@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 +6 -0
- package/config.d.ts +29 -0
- package/package.json +5 -3
package/CHANGELOG.md
CHANGED
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.
|
|
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
|
}
|