This commit is contained in:
2026-04-23 01:22:44 +03:30
parent e027b89173
commit 57f333f5b8
43 changed files with 16222 additions and 2847 deletions
+3
View File
@@ -0,0 +1,3 @@
export * from './good.io';
export * from './pos.io';
export * from './profile.io';
+1 -1
View File
@@ -1,7 +1,7 @@
import ISummary from '@/core/models/summary';
export interface IPosInfoRawResponse {
name: true;
name: string;
complex: {
id: string;
name: string;
+17
View File
@@ -0,0 +1,17 @@
import ISummary from '@/core/models/summary';
export interface IPosProfileRawResponse {
id: string;
role: string;
account: { username: string };
consumer: {
first_name: string;
last_name: string;
};
}
export interface IPosProfileResponse extends IPosProfileRawResponse {}
interface Complex extends ISummary {
business_activity: ISummary;
}