@backstage/plugin-techdocs-backend 1.11.5-next.0 → 1.11.5-next.1

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/plugin-techdocs-backend
2
2
 
3
+ ## 1.11.5-next.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 29a4aa8: fix(config): add missing parameters in config schema
8
+
3
9
  ## 1.11.5-next.0
4
10
 
5
11
  ### Patch Changes
package/config.d.ts CHANGED
@@ -263,6 +263,11 @@ export interface Config {
263
263
  * the credentials belongs to a different project to the bucket.
264
264
  */
265
265
  projectId?: string;
266
+ /**
267
+ * (Optional) Location in storage bucket to save files
268
+ * If not set, the default location will be the root of the storage bucket
269
+ */
270
+ bucketRootPath?: string;
266
271
  };
267
272
  };
268
273
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-techdocs-backend",
3
- "version": "1.11.5-next.0",
3
+ "version": "1.11.5-next.1",
4
4
  "description": "The Backstage backend plugin that renders technical documentation for your components",
5
5
  "backstage": {
6
6
  "role": "backend-plugin",