update
This commit is contained in:
@@ -0,0 +1,3 @@
|
||||
export * from './good.io';
|
||||
export * from './pos.io';
|
||||
export * from './profile.io';
|
||||
@@ -1,7 +1,7 @@
|
||||
import ISummary from '@/core/models/summary';
|
||||
|
||||
export interface IPosInfoRawResponse {
|
||||
name: true;
|
||||
name: string;
|
||||
complex: {
|
||||
id: string;
|
||||
name: string;
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
Reference in New Issue
Block a user