chore: add config options to Config type

Signed-off-by: Joe Van Alstyne <jvanalstyne@mdsol.com>
This commit is contained in:
Joe Van Alstyne
2024-04-04 16:24:37 +09:00
parent 89d9e2ee6c
commit 2e22245e45
@@ -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;
};
};
};
};
};