test-entity-library-asm 2.6.15 → 2.6.17
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/entities/Permission.d.ts +9 -9
- package/dist/entities/Permission.js +63 -63
- package/dist/entities/Role.d.ts +12 -12
- package/dist/entities/Role.js +81 -81
- package/dist/entities/RoleVisibleTo.d.ts +6 -6
- package/dist/entities/RoleVisibleTo.js +47 -47
- package/dist/entities/ScheduleCategory.d.ts +9 -9
- package/dist/entities/ScheduleCategory.js +48 -48
- package/dist/entities/TypeFood.d.ts +8 -8
- package/dist/entities/TypeFood.js +68 -68
- package/dist/middlewares/timezoneMiddleware.d.ts +3 -3
- package/dist/middlewares/timezoneMiddleware.js +22 -22
- package/dist/repositories/VerifyLocalRepository.d.ts +4 -4
- package/dist/repositories/VerifyLocalRepository.js +142 -142
- package/dist/transformations.d.ts +4 -4
- package/dist/transformations.js +16 -16
- package/dist/views/Partners.d.ts +17 -20
- package/dist/views/Partners.js +31 -43
- package/dist/views/UserInformation.d.ts +39 -39
- package/dist/views/UserInformation.js +187 -187
- package/package.json +1 -1
- package/src/views/Partners.ts +26 -35
package/src/views/Partners.ts
CHANGED
|
@@ -24,6 +24,9 @@ export class Partners {
|
|
|
24
24
|
@ViewColumn()
|
|
25
25
|
id: number;
|
|
26
26
|
|
|
27
|
+
@ViewColumn()
|
|
28
|
+
company: number;
|
|
29
|
+
|
|
27
30
|
@ViewColumn()
|
|
28
31
|
code: string;
|
|
29
32
|
|
|
@@ -42,6 +45,9 @@ export class Partners {
|
|
|
42
45
|
@ViewColumn()
|
|
43
46
|
phone: string;
|
|
44
47
|
|
|
48
|
+
@ViewColumn()
|
|
49
|
+
city: number;
|
|
50
|
+
|
|
45
51
|
@ViewColumn()
|
|
46
52
|
address: string;
|
|
47
53
|
|
|
@@ -67,62 +73,47 @@ export class Partners {
|
|
|
67
73
|
visible: number;
|
|
68
74
|
|
|
69
75
|
@ViewColumn()
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
@ViewColumn({transformer: jsonTransformer})
|
|
73
|
-
city_information: any;
|
|
76
|
+
city_region: number;
|
|
74
77
|
|
|
75
78
|
@ViewColumn()
|
|
76
|
-
|
|
79
|
+
city_name: string;
|
|
77
80
|
|
|
78
81
|
@ViewColumn()
|
|
79
|
-
|
|
82
|
+
city_status: number;
|
|
80
83
|
|
|
81
84
|
@ViewColumn()
|
|
82
|
-
|
|
85
|
+
region_country: number;
|
|
83
86
|
|
|
84
87
|
@ViewColumn()
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
@ViewColumn({transformer: jsonTransformer})
|
|
88
|
-
profile_company: any;
|
|
89
|
-
|
|
90
|
-
@ViewColumn()
|
|
91
|
-
quantity_locals: number;
|
|
88
|
+
region_name: string;
|
|
92
89
|
|
|
93
90
|
@ViewColumn()
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
@ViewColumn({transformer: jsonTransformer})
|
|
97
|
-
legal_information: any;
|
|
98
|
-
|
|
99
|
-
@ViewColumn({transformer: jsonTransformer})
|
|
100
|
-
legal_agent: any;
|
|
91
|
+
region_status: number;
|
|
101
92
|
|
|
102
93
|
@ViewColumn()
|
|
103
|
-
|
|
94
|
+
country_code: string;
|
|
104
95
|
|
|
105
|
-
@ViewColumn(
|
|
106
|
-
|
|
96
|
+
@ViewColumn()
|
|
97
|
+
country_name: string;
|
|
107
98
|
|
|
108
|
-
@ViewColumn(
|
|
109
|
-
|
|
99
|
+
@ViewColumn()
|
|
100
|
+
country_currency: string;
|
|
110
101
|
|
|
111
|
-
@ViewColumn(
|
|
112
|
-
|
|
102
|
+
@ViewColumn()
|
|
103
|
+
country_prefix: string;
|
|
113
104
|
|
|
114
105
|
@ViewColumn()
|
|
115
|
-
|
|
106
|
+
country_structure_phone: string;
|
|
116
107
|
|
|
117
108
|
@ViewColumn({transformer: jsonTransformer})
|
|
118
|
-
|
|
109
|
+
country_legal_information: any;
|
|
119
110
|
|
|
120
111
|
@ViewColumn({transformer: jsonTransformer})
|
|
121
|
-
|
|
112
|
+
country_details: any;
|
|
113
|
+
|
|
114
|
+
@ViewColumn()
|
|
115
|
+
country_status: number;
|
|
122
116
|
|
|
123
|
-
@ViewColumn({transformer: jsonTransformer})
|
|
124
|
-
terminals_asigned: any
|
|
125
|
-
|
|
126
117
|
@ViewColumn()
|
|
127
|
-
|
|
118
|
+
assigned_local: number;
|
|
128
119
|
}
|