test-entity-library-asm 2.7.5 → 2.7.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.
@@ -35,7 +35,7 @@ export interface IPropsQueryVerifyLocal {
35
35
  };
36
36
  }
37
37
  export interface IPropsDiscountUserOrCompany extends IBasicLazyEvent {
38
- company: number;
38
+ company: number | null;
39
39
  status: number | null;
40
40
  }
41
41
  export type IType = 'mysql' | 'mariadb';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "test-entity-library-asm",
3
- "version": "2.7.5",
3
+ "version": "2.7.6",
4
4
  "description": "Entidades de ejemplo para una base de datos",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/src/interfaces.ts CHANGED
@@ -40,7 +40,7 @@ export interface IPropsQueryVerifyLocal {
40
40
  }
41
41
 
42
42
  export interface IPropsDiscountUserOrCompany extends IBasicLazyEvent {
43
- company: number
43
+ company: number | null
44
44
  status: number | null
45
45
  }
46
46