test-entity-library-asm 1.5.0 → 1.5.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.
@@ -4,7 +4,7 @@ export declare class LocalsCompany {
4
4
  address: string;
5
5
  latitude: string;
6
6
  longitude: string;
7
- local_details: Record<string, any>;
7
+ local_details: object;
8
8
  created: string;
9
9
  updated: string;
10
10
  status: number;
@@ -18,7 +18,7 @@ export declare class LocalsCompany {
18
18
  country_code: string;
19
19
  country_name: string;
20
20
  country_status: number;
21
- country_details: Record<string, any>;
21
+ country_details: object;
22
22
  average_rating: number;
23
23
  square_id: number;
24
24
  square_name: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "test-entity-library-asm",
3
- "version": "1.5.0",
3
+ "version": "1.5.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",
@@ -20,7 +20,7 @@ export class LocalsCompany {
20
20
  longitude: string
21
21
 
22
22
  @ViewColumn()
23
- local_details: Record<string, any>
23
+ local_details: object
24
24
 
25
25
  @ViewColumn()
26
26
  created: string
@@ -62,7 +62,7 @@ export class LocalsCompany {
62
62
  country_status: number
63
63
 
64
64
  @ViewColumn()
65
- country_details: Record<string, any>
65
+ country_details: object
66
66
 
67
67
  @ViewColumn()
68
68
  average_rating: number