chore(ui): regenerate OpenAPI schema for /auth/logout
Picks up the new POST /api/v1/auth/logout endpoint introduced in
90315330. Generated against a locally-running build (not the remote
generate-api:live URL, which lags behind this branch).
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
File diff suppressed because one or more lines are too long
39
ui/src/api/schema.d.ts
vendored
39
ui/src/api/schema.d.ts
vendored
@@ -753,6 +753,23 @@ export interface paths {
|
|||||||
patch?: never;
|
patch?: never;
|
||||||
trace?: never;
|
trace?: never;
|
||||||
};
|
};
|
||||||
|
"/auth/logout": {
|
||||||
|
parameters: {
|
||||||
|
query?: never;
|
||||||
|
header?: never;
|
||||||
|
path?: never;
|
||||||
|
cookie?: never;
|
||||||
|
};
|
||||||
|
get?: never;
|
||||||
|
put?: never;
|
||||||
|
/** Log out the current user (revoke all outstanding tokens) */
|
||||||
|
post: operations["logout"];
|
||||||
|
delete?: never;
|
||||||
|
options?: never;
|
||||||
|
head?: never;
|
||||||
|
patch?: never;
|
||||||
|
trace?: never;
|
||||||
|
};
|
||||||
"/auth/login": {
|
"/auth/login": {
|
||||||
parameters: {
|
parameters: {
|
||||||
query?: never;
|
query?: never;
|
||||||
@@ -2743,8 +2760,8 @@ export interface components {
|
|||||||
AttributeFilter: {
|
AttributeFilter: {
|
||||||
key?: string;
|
key?: string;
|
||||||
value?: string;
|
value?: string;
|
||||||
keyOnly?: boolean;
|
|
||||||
wildcard?: boolean;
|
wildcard?: boolean;
|
||||||
|
keyOnly?: boolean;
|
||||||
};
|
};
|
||||||
SearchRequest: {
|
SearchRequest: {
|
||||||
status?: string;
|
status?: string;
|
||||||
@@ -3652,7 +3669,7 @@ export interface components {
|
|||||||
/** @description Whether OIDC is configured AND enabled */
|
/** @description Whether OIDC is configured AND enabled */
|
||||||
enabled?: boolean;
|
enabled?: boolean;
|
||||||
/** @description Best-effort display label, e.g. "Logto", "Keycloak", "Single Sign-On" */
|
/** @description Best-effort display label, e.g. "Logto", "Keycloak", "Single Sign-On" */
|
||||||
providerName: string;
|
providerName?: string;
|
||||||
/** @description When true, OIDC is the canonical entry point and the SPA hides the local form unless ?local is set */
|
/** @description When true, OIDC is the canonical entry point and the SPA hides the local form unless ?local is set */
|
||||||
primary?: boolean;
|
primary?: boolean;
|
||||||
};
|
};
|
||||||
@@ -5864,6 +5881,24 @@ export interface operations {
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
logout: {
|
||||||
|
parameters: {
|
||||||
|
query?: never;
|
||||||
|
header?: never;
|
||||||
|
path?: never;
|
||||||
|
cookie?: never;
|
||||||
|
};
|
||||||
|
requestBody?: never;
|
||||||
|
responses: {
|
||||||
|
/** @description Logged out (or no-op if not authenticated) */
|
||||||
|
204: {
|
||||||
|
headers: {
|
||||||
|
[name: string]: unknown;
|
||||||
|
};
|
||||||
|
content?: never;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
login: {
|
login: {
|
||||||
parameters: {
|
parameters: {
|
||||||
query?: never;
|
query?: never;
|
||||||
|
|||||||
Reference in New Issue
Block a user