Skip to content

Commit 75ef637

Browse files
committed
Enable CACHE_OPTIONS in OpenAPIConfig
1 parent abe7db1 commit 75ef637

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/templates/core/OpenAPI.hbs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ export type OpenAPIConfig = {
1515
PASSWORD?: string | Resolver<string> | undefined;
1616
HEADERS?: Headers | Resolver<Headers> | undefined;
1717
ENCODE_PATH?: ((path: string) => string) | undefined;
18+
CACHE_OPTIONS?: Map<string, any> | undefined;
1819
};
1920

2021
export const OpenAPI: OpenAPIConfig = {
@@ -27,4 +28,5 @@ export const OpenAPI: OpenAPIConfig = {
2728
PASSWORD: undefined,
2829
HEADERS: undefined,
2930
ENCODE_PATH: undefined,
31+
CACHE_OPTIONS: undefined,
3032
};

0 commit comments

Comments
 (0)