We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d2489bf commit 9c50468Copy full SHA for 9c50468
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "openapi-typescript-codegen",
3
- "version": "0.26.5",
+ "version": "0.26.6",
4
"description": "Library that generates Typescript clients based on the OpenAPI specification.",
5
"author": "Ferdi Koomen",
6
"homepage": "https://github.com/ferdikoomen/openapi-typescript-codegen",
src/templates/core/ApiRequestOptions.hbs
@@ -12,5 +12,8 @@ export type ApiRequestOptions = {
12
readonly mediaType?: string;
13
readonly responseHeader?: string;
14
readonly errors?: Record<number, string>;
15
- readonly secured: boolean;
+ readonly security: {
16
+ secured: boolean;
17
+ optional: boolean;
18
+ };
19
};
0 commit comments