mirror of
https://github.com/mayswind/ezbookkeeping.git
synced 2026-05-14 15:07:33 +08:00
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;
|
|
}
|