Merge pull request #20687 from backstage/rugvip/schema

frontend-app-api: fix configuration schema
This commit is contained in:
Patrik Oldsberg
2023-10-19 18:59:19 +02:00
committed by GitHub
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;
};
};
}
>;
};
}