13 lines
357 B
TypeScript
13 lines
357 B
TypeScript
export interface UserExternalAuthUnlinkRequest {
|
|
readonly externalAuthType: string;
|
|
readonly password: string;
|
|
}
|
|
|
|
export interface UserExternalAuthInfoResponse {
|
|
readonly externalAuthCategory: string;
|
|
readonly externalAuthType: string;
|
|
readonly linked: boolean;
|
|
readonly externalUsername?: string;
|
|
readonly createdAt?: number;
|
|
}
|