From af8e0e63315da46021d287d28cce62ee0ad2bbb2 Mon Sep 17 00:00:00 2001 From: Joe Van Alstyne Date: Fri, 5 Apr 2024 15:12:30 +0900 Subject: [PATCH] Update plugins/catalog-backend-module-backstage-openapi/config.d.ts Co-authored-by: Aramis Sennyey <159921952+aramissennyeydd@users.noreply.github.com> Signed-off-by: Joe Van Alstyne --- .../config.d.ts | 15 ++++----------- 1 file changed, 4 insertions(+), 11 deletions(-) diff --git a/plugins/catalog-backend-module-backstage-openapi/config.d.ts b/plugins/catalog-backend-module-backstage-openapi/config.d.ts index b7f197ca48..e403010951 100644 --- a/plugins/catalog-backend-module-backstage-openapi/config.d.ts +++ b/plugins/catalog-backend-module-backstage-openapi/config.d.ts @@ -28,17 +28,10 @@ export interface Config { /** * Options to ovveride the provided entity's default metadata and spec properties */ - entityOverrides?: { - metadata?: { - name?: string; - title?: string; - }; - spec?: { - type?: string; - lifecycle?: string; - owner?: string; - }; - }; + /** + * Properties to override on the final entity object. + */ + entityOverrides?: object; }; }; };