create consumer domain accounts permissions

This commit is contained in:
2026-04-11 14:46:52 +03:30
parent d154a8402b
commit d4dff4ebfd
33 changed files with 480 additions and 37 deletions
+8 -1
View File
@@ -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;
}