@carlosdiazz/lottodiz-shared 2.9.5 → 2.9.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/models/company/company.base.d.ts +2 -2
- package/dist/models/company/create-company.base.d.ts +1 -1
- package/dist/models/company/update-company.base.d.ts +1 -1
- package/dist/models/group/create-group.base.d.ts +1 -1
- package/dist/models/group/group.base.d.ts +2 -2
- package/dist/models/group/update-group.base.d.ts +1 -1
- package/dist/models/pos/create-pos.base.d.ts +1 -1
- package/dist/models/pos/params-pos.base.d.ts +2 -0
- package/dist/models/pos/pos.base.d.ts +2 -2
- package/dist/models/pos/update-pos.base.d.ts +1 -1
- package/dist/test/example.js +0 -1
- package/package.json +1 -1
|
@@ -4,7 +4,7 @@ export interface CompanyInterface {
|
|
|
4
4
|
name: string;
|
|
5
5
|
image?: string;
|
|
6
6
|
active: boolean;
|
|
7
|
-
code:
|
|
7
|
+
code: string;
|
|
8
8
|
group?: GroupInterface[];
|
|
9
9
|
create_at: Date;
|
|
10
10
|
update_at: Date;
|
|
@@ -14,5 +14,5 @@ export interface CompanyFormInterface {
|
|
|
14
14
|
name: string;
|
|
15
15
|
image?: string;
|
|
16
16
|
active: boolean;
|
|
17
|
-
code:
|
|
17
|
+
code: string;
|
|
18
18
|
}
|
|
@@ -4,7 +4,7 @@ export interface GroupInterface {
|
|
|
4
4
|
id: number;
|
|
5
5
|
name: string;
|
|
6
6
|
active: boolean;
|
|
7
|
-
code:
|
|
7
|
+
code: string;
|
|
8
8
|
company?: CompanyInterface;
|
|
9
9
|
pos?: PosInterface[];
|
|
10
10
|
create_at: Date;
|
|
@@ -14,6 +14,6 @@ export interface GroupFormInterface {
|
|
|
14
14
|
id: number;
|
|
15
15
|
name: string;
|
|
16
16
|
active: boolean;
|
|
17
|
-
code:
|
|
17
|
+
code: string;
|
|
18
18
|
id_company: number;
|
|
19
19
|
}
|
|
@@ -7,7 +7,7 @@ export interface PosInterface {
|
|
|
7
7
|
name: string;
|
|
8
8
|
image?: string;
|
|
9
9
|
active: boolean;
|
|
10
|
-
code:
|
|
10
|
+
code: string;
|
|
11
11
|
group?: GroupInterface;
|
|
12
12
|
pos_user?: PosUserInterface[];
|
|
13
13
|
pos_monitor?: PosMonitorInterface;
|
|
@@ -20,6 +20,6 @@ export interface PosFormInterface {
|
|
|
20
20
|
name: string;
|
|
21
21
|
image?: string;
|
|
22
22
|
active: boolean;
|
|
23
|
-
code:
|
|
23
|
+
code: string;
|
|
24
24
|
id_group: number;
|
|
25
25
|
}
|
package/dist/test/example.js
CHANGED