init to partner panel
This commit is contained in:
@@ -0,0 +1 @@
|
||||
export * from './io';
|
||||
@@ -0,0 +1,20 @@
|
||||
export interface IAccountRawResponse {
|
||||
id: string;
|
||||
role: string;
|
||||
created_at: string;
|
||||
account: Account;
|
||||
}
|
||||
export interface IAccountResponse extends IAccountRawResponse {}
|
||||
|
||||
export interface IAccountRequest {
|
||||
name: string;
|
||||
}
|
||||
|
||||
export interface IAccountPasswordRequest {
|
||||
password: string;
|
||||
}
|
||||
|
||||
interface Account {
|
||||
username: string;
|
||||
status: string;
|
||||
}
|
||||
Reference in New Issue
Block a user