@carlosdiazz/lottodiz-shared 3.2.5 → 3.2.6

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.
@@ -1,5 +1,6 @@
1
1
  export interface CreateGroupInterface {
2
2
  name: string;
3
+ image?: string;
3
4
  active?: boolean;
4
5
  code: string;
5
6
  id_company: string;
@@ -3,6 +3,7 @@ import { PosInterface } from "../pos";
3
3
  export interface GroupInterface {
4
4
  id: string;
5
5
  name: string;
6
+ image?: string;
6
7
  active: boolean;
7
8
  code: string;
8
9
  company?: CompanyInterface;
@@ -13,6 +14,7 @@ export interface GroupInterface {
13
14
  export interface GroupFormInterface {
14
15
  id: string;
15
16
  name: string;
17
+ image?: string;
16
18
  active: boolean;
17
19
  code: string;
18
20
  id_company: string;
@@ -1,6 +1,7 @@
1
1
  export interface UpdateGroupInterface {
2
2
  id: string;
3
3
  name?: string;
4
+ image?: string;
4
5
  active?: boolean;
5
6
  code?: string;
6
7
  id_company?: string;
@@ -24,4 +24,5 @@ export interface PosFormInterface {
24
24
  active: boolean;
25
25
  code: string;
26
26
  id_group: string;
27
+ wallet_mode: WalletMode;
27
28
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carlosdiazz/lottodiz-shared",
3
- "version": "3.2.5",
3
+ "version": "3.2.6",
4
4
  "description": "Shared Dtos, models, constants and utils",
5
5
  "main": "dist/index.js",
6
6
  "private": false,