homebridge-config-ui-x
Version:
A web based management, configuration and control platform for Homebridge.
22 lines (21 loc) • 461 B
TypeScript
export declare class UserActivateOtpDto {
code: string;
}
export declare class UserDeactivateOtpDto {
password: string;
}
export declare class UserDto {
id?: number;
name: string;
username: string;
admin: boolean;
password?: string;
hashedPassword?: string;
salt?: string;
otpSecret?: string;
otpActive?: boolean;
}
export declare class UserUpdatePasswordDto {
currentPassword: string;
newPassword: string;
}