From 2e22245e4528e5575544d6d73482f57a3c6f327c Mon Sep 17 00:00:00 2001 From: Joe Van Alstyne Date: Thu, 4 Apr 2024 16:24:37 +0900 Subject: [PATCH] chore: add config options to Config type Signed-off-by: Joe Van Alstyne --- .../config.d.ts | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/plugins/catalog-backend-module-backstage-openapi/config.d.ts b/plugins/catalog-backend-module-backstage-openapi/config.d.ts index ce51640495..b7f197ca48 100644 --- a/plugins/catalog-backend-module-backstage-openapi/config.d.ts +++ b/plugins/catalog-backend-module-backstage-openapi/config.d.ts @@ -25,6 +25,20 @@ export interface Config { * A list of plugins, whose OpenAPI specs you want to collate in `InternalOpenApiDocumentationProvider`. */ plugins: string[]; + /** + * 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; + }; + }; }; }; };