Files
ezbookkeeping/src/models/user_external_auth.ts
T
2025-10-25 02:51:25 +08:00

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;
}