test-entity-library-asm 2.8.0 → 2.8.1

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.
@@ -8,7 +8,7 @@ export declare class ServicePlan {
8
8
  currency: string | null;
9
9
  status: number;
10
10
  type: number;
11
- time_periods: string | null;
11
+ time_periods: any | null;
12
12
  assigned_discount: number | null;
13
13
  information_general: any;
14
14
  created: Date;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "test-entity-library-asm",
3
- "version": "2.8.0",
3
+ "version": "2.8.1",
4
4
  "description": "Entidades de ejemplo para una base de datos",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -39,7 +39,7 @@ export class ServicePlan {
39
39
  type: number
40
40
 
41
41
  @Column({ type: 'text', nullable: true })
42
- time_periods: string | null
42
+ time_periods: any | null
43
43
 
44
44
  @Column({ type: 'float', nullable: true })
45
45
  assigned_discount: number | null