@tsed/openspec
Advanced tools
Comparing version 6.23.3 to 6.23.4
@@ -6,3 +6,3 @@ import { OS3Flows } from "./OS3Flows"; | ||
*/ | ||
type: "apiKey" | "oauth2" | "http"; | ||
type: "apiKey" | "oauth2" | "http" | "openIdConnect"; | ||
/** | ||
@@ -37,2 +37,9 @@ * | ||
} | ||
export interface OS3SecurityOpenIDConnect extends OS3SecurityBase { | ||
/** | ||
* The type of the security scheme | ||
*/ | ||
type: "openIdConnect"; | ||
openIdConnectUrl: string; | ||
} | ||
export interface OS3SecurityHTTP extends OS3SecurityBase { | ||
@@ -52,2 +59,2 @@ /** | ||
} | ||
export declare type OS3Security = OS3SecurityApiKey | OS3SecurityHTTP | OS3SecurityOAuth2; | ||
export declare type OS3Security = OS3SecurityApiKey | OS3SecurityHTTP | OS3SecurityOAuth2 | OS3SecurityOpenIDConnect; |
{ | ||
"name": "@tsed/openspec", | ||
"version": "6.23.3", | ||
"version": "6.23.4", | ||
"description": "OpenSpec2 and OpenSpec3 interfaces declarations for TypeScript application", | ||
@@ -5,0 +5,0 @@ "main": "./lib/index.js", |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
135965
1344