frontend-app-api: fix configuration schema

Signed-off-by: Patrik Oldsberg <poldsberg@gmail.com>
This commit is contained in:
Patrik Oldsberg
2023-10-19 17:33:37 +02:00
parent d04b6706cc
commit dc613f9bcf
2 changed files with 10 additions and 5 deletions
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/frontend-app-api': patch
---
Updated `app.extensions` configuration schema.
+5 -5
View File
@@ -34,17 +34,17 @@ export interface Config {
/**
* @deepVisibility frontend
*/
extensions?:
extensions?: Array<
| string
| {
[extensionId: string]:
| boolean
| string
| {
at?: string;
extension?: string;
attachTo?: { id: string; input: string };
disabled?: boolean;
config?: unknown;
};
};
}
>;
};
}