auth-api-types
Advanced tools
Comparing version 1.0.1 to 1.0.2
@@ -73,3 +73,3 @@ /** | ||
/** @description Client was successfully created */ | ||
200: { | ||
201: { | ||
content: { | ||
@@ -82,2 +82,19 @@ "application/json": components["schemas"]["ClientPostResponse"]; | ||
}; | ||
"/security-tokens": { | ||
post: { | ||
requestBody: { | ||
content: { | ||
"application/json": components["schemas"]["SecurityTokensPost"]; | ||
}; | ||
}; | ||
responses: { | ||
/** @description Security tokens were successfully created */ | ||
201: { | ||
content: { | ||
"application/json": components["schemas"]["SecurityTokenResponse"]; | ||
}; | ||
}; | ||
}; | ||
}; | ||
}; | ||
} | ||
@@ -117,3 +134,17 @@ export type webhooks = Record<string, never>; | ||
}; | ||
TokenResponse: components["schemas"]["ClientTokenResponse"] | components["schemas"]["UserTokenResponse"]; | ||
SecurityToken: { | ||
body?: { | ||
[key: string]: unknown; | ||
}; | ||
securityTokenId?: string; | ||
expiresIn?: string | number; | ||
clientId?: string; | ||
}; | ||
SecurityTokenResponse: { | ||
/** @enum {string} */ | ||
type: "security-token"; | ||
accessToken: string; | ||
securityToken: components["schemas"]["SecurityToken"]; | ||
}; | ||
TokenResponse: components["schemas"]["ClientTokenResponse"] | components["schemas"]["UserTokenResponse"] | components["schemas"]["SecurityTokenResponse"]; | ||
CodeGrantType: { | ||
@@ -136,2 +167,8 @@ /** @enum {string} */ | ||
}; | ||
SecurityTokensPost: { | ||
body: { | ||
[key: string]: unknown; | ||
}; | ||
expiresIn: string | number; | ||
}; | ||
}; | ||
@@ -138,0 +175,0 @@ responses: never; |
{ | ||
"name": "auth-api-types", | ||
"version": "1.0.1", | ||
"version": "1.0.2", | ||
"description": "", | ||
@@ -5,0 +5,0 @@ "scripts": { |
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
6263
185