2026-04-13 15:47:50 +03:30
|
|
|
export interface IAccountRawResponse {
|
|
|
|
|
id: string;
|
|
|
|
|
role: string;
|
|
|
|
|
created_at: string;
|
|
|
|
|
account: Account;
|
|
|
|
|
}
|
|
|
|
|
export interface IAccountResponse extends IAccountRawResponse {}
|
|
|
|
|
|
|
|
|
|
export interface IAccountRequest {
|
2026-04-27 21:53:11 +03:30
|
|
|
username?: string;
|
|
|
|
|
password?: string;
|
|
|
|
|
role?: string;
|
|
|
|
|
status?: string;
|
2026-04-13 15:47:50 +03:30
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export interface IAccountPasswordRequest {
|
|
|
|
|
password: string;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
interface Account {
|
|
|
|
|
username: string;
|
|
|
|
|
status: string;
|
|
|
|
|
}
|