create consumer domain until pos list

This commit is contained in:
2026-03-16 17:56:22 +03:30
parent 3c9f6eed1d
commit 739aef67a3
67 changed files with 1638 additions and 1 deletions
@@ -0,0 +1,13 @@
export interface IAccountRawResponse {
id: string;
name: string;
}
export interface IAccountResponse extends IAccountRawResponse {}
export interface IAccountRequest {
name: string;
}
export interface IAccountPasswordRequest {
password: string;
}