cloud-ide-model-schema
Version:
Pachage for schema management of Cloud IDEsys LMS
17 lines (16 loc) • 455 B
TypeScript
import { ICoreSyen } from "../schema/core";
export interface jwtPayload {
sylog_id_user?: string;
sylog_id_logses?: string;
user_username?: string;
sylog_config_data?: resetPasswordSylog;
core_system_entity?: ICoreSyen;
}
export interface resetPasswordJwtPayload {
user_password?: string;
}
export interface resetPasswordSylog {
reset_password_link?: string;
reset_password_secret?: string;
request_timestamp?: Date;
}