From 60af8017dd845fdac902e95f589828ff50ae79ef Mon Sep 17 00:00:00 2001 From: djamaile Date: Thu, 7 Sep 2023 14:16:18 +0200 Subject: [PATCH] chore: expand techdocs.publisher.type with new types Signed-off-by: djamaile --- .changeset/cuddly-avocados-warn.md | 5 +++++ plugins/techdocs-backend/config.d.ts | 7 ++++++- 2 files changed, 11 insertions(+), 1 deletion(-) create mode 100644 .changeset/cuddly-avocados-warn.md diff --git a/.changeset/cuddly-avocados-warn.md b/.changeset/cuddly-avocados-warn.md new file mode 100644 index 0000000000..aa70da287b --- /dev/null +++ b/.changeset/cuddly-avocados-warn.md @@ -0,0 +1,5 @@ +--- +'@backstage/plugin-techdocs-backend': patch +--- + +Expand techdocs.publisher.type with `googleGcs`,`awsS3`,`azureBlobStorage` and `openStackSwift` diff --git a/plugins/techdocs-backend/config.d.ts b/plugins/techdocs-backend/config.d.ts index abc74f796a..01da1e7926 100644 --- a/plugins/techdocs-backend/config.d.ts +++ b/plugins/techdocs-backend/config.d.ts @@ -70,7 +70,12 @@ export interface Config { */ publisher?: | { - type: 'local'; + type: + | 'local' + | 'googleGcs' + | 'awsS3' + | 'azureBlobStorage' + | 'openStackSwift'; local?: { /**