create consumer domain accounts permissions
This commit is contained in:
@@ -1,6 +1,8 @@
|
||||
export interface IAccountRawResponse {
|
||||
id: string;
|
||||
name: string;
|
||||
role: string;
|
||||
created_at: string;
|
||||
account: Account;
|
||||
}
|
||||
export interface IAccountResponse extends IAccountRawResponse {}
|
||||
|
||||
@@ -11,3 +13,8 @@ export interface IAccountRequest {
|
||||
export interface IAccountPasswordRequest {
|
||||
password: string;
|
||||
}
|
||||
|
||||
interface Account {
|
||||
username: string;
|
||||
status: string;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user