@backstage/plugin-techdocs-backend 0.10.6 → 0.10.7
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 +2 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
package/config.d.ts
CHANGED
|
@@ -83,12 +83,12 @@ export interface Config {
|
|
|
83
83
|
* User access key id
|
|
84
84
|
* @visibility secret
|
|
85
85
|
*/
|
|
86
|
-
accessKeyId
|
|
86
|
+
accessKeyId?: string;
|
|
87
87
|
/**
|
|
88
88
|
* User secret access key
|
|
89
89
|
* @visibility secret
|
|
90
90
|
*/
|
|
91
|
-
secretAccessKey
|
|
91
|
+
secretAccessKey?: string;
|
|
92
92
|
/**
|
|
93
93
|
* ARN of role to be assumed
|
|
94
94
|
* @visibility backend
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-techdocs-backend",
|
|
3
3
|
"description": "The Backstage backend plugin that renders technical documentation for your components",
|
|
4
|
-
"version": "0.10.
|
|
4
|
+
"version": "0.10.7",
|
|
5
5
|
"main": "dist/index.cjs.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -62,5 +62,5 @@
|
|
|
62
62
|
"config.d.ts"
|
|
63
63
|
],
|
|
64
64
|
"configSchema": "config.d.ts",
|
|
65
|
-
"gitHead": "
|
|
65
|
+
"gitHead": "cf686e366d6770d0b478e17de821ca343c85749e"
|
|
66
66
|
}
|