test-entity-library-asm 2.9.0 → 2.9.2
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.
|
@@ -7,6 +7,12 @@ export declare class MasterNotifications {
|
|
|
7
7
|
settings: any;
|
|
8
8
|
created: Date;
|
|
9
9
|
status: number;
|
|
10
|
+
partner_name: string;
|
|
11
|
+
partner_surname: string;
|
|
12
|
+
partner_profile: any;
|
|
13
|
+
partner_email: string;
|
|
14
|
+
partner_phone: string;
|
|
15
|
+
partner_status: number;
|
|
10
16
|
master_document: string;
|
|
11
17
|
master_name: string;
|
|
12
18
|
master_surname: string;
|
|
@@ -18,19 +24,5 @@ export declare class MasterNotifications {
|
|
|
18
24
|
verify_local_local_information: any;
|
|
19
25
|
verify_local_assigned_master: number;
|
|
20
26
|
verify_local_status: number;
|
|
21
|
-
company_name: string;
|
|
22
|
-
company_profile: any;
|
|
23
|
-
reassign_review_new_user: number;
|
|
24
|
-
reassign_review_settings: any;
|
|
25
|
-
master_previous_id: number;
|
|
26
|
-
master_previous_name: string;
|
|
27
|
-
master_previous_surname: string;
|
|
28
|
-
master_previous_email: string;
|
|
29
|
-
partner_id: number;
|
|
30
|
-
partner_name: string;
|
|
31
|
-
partner_surname: string;
|
|
32
|
-
partner_profile: any;
|
|
33
|
-
partner_email: string;
|
|
34
|
-
partner_phone: string;
|
|
35
27
|
master_assigned_notification: number;
|
|
36
28
|
}
|
|
@@ -61,6 +61,30 @@ var MasterNotifications = /** @class */ (function () {
|
|
|
61
61
|
(0, typeorm_1.ViewColumn)(),
|
|
62
62
|
__metadata("design:type", Number)
|
|
63
63
|
], MasterNotifications.prototype, "status", void 0);
|
|
64
|
+
__decorate([
|
|
65
|
+
(0, typeorm_1.ViewColumn)(),
|
|
66
|
+
__metadata("design:type", String)
|
|
67
|
+
], MasterNotifications.prototype, "partner_name", void 0);
|
|
68
|
+
__decorate([
|
|
69
|
+
(0, typeorm_1.ViewColumn)(),
|
|
70
|
+
__metadata("design:type", String)
|
|
71
|
+
], MasterNotifications.prototype, "partner_surname", void 0);
|
|
72
|
+
__decorate([
|
|
73
|
+
(0, typeorm_1.ViewColumn)({ transformer: jsonTransformer }),
|
|
74
|
+
__metadata("design:type", Object)
|
|
75
|
+
], MasterNotifications.prototype, "partner_profile", void 0);
|
|
76
|
+
__decorate([
|
|
77
|
+
(0, typeorm_1.ViewColumn)(),
|
|
78
|
+
__metadata("design:type", String)
|
|
79
|
+
], MasterNotifications.prototype, "partner_email", void 0);
|
|
80
|
+
__decorate([
|
|
81
|
+
(0, typeorm_1.ViewColumn)(),
|
|
82
|
+
__metadata("design:type", String)
|
|
83
|
+
], MasterNotifications.prototype, "partner_phone", void 0);
|
|
84
|
+
__decorate([
|
|
85
|
+
(0, typeorm_1.ViewColumn)(),
|
|
86
|
+
__metadata("design:type", Number)
|
|
87
|
+
], MasterNotifications.prototype, "partner_status", void 0);
|
|
64
88
|
__decorate([
|
|
65
89
|
(0, typeorm_1.ViewColumn)(),
|
|
66
90
|
__metadata("design:type", String)
|
|
@@ -105,62 +129,6 @@ var MasterNotifications = /** @class */ (function () {
|
|
|
105
129
|
(0, typeorm_1.ViewColumn)(),
|
|
106
130
|
__metadata("design:type", Number)
|
|
107
131
|
], MasterNotifications.prototype, "verify_local_status", void 0);
|
|
108
|
-
__decorate([
|
|
109
|
-
(0, typeorm_1.ViewColumn)(),
|
|
110
|
-
__metadata("design:type", String)
|
|
111
|
-
], MasterNotifications.prototype, "company_name", void 0);
|
|
112
|
-
__decorate([
|
|
113
|
-
(0, typeorm_1.ViewColumn)({ transformer: jsonTransformer }),
|
|
114
|
-
__metadata("design:type", Object)
|
|
115
|
-
], MasterNotifications.prototype, "company_profile", void 0);
|
|
116
|
-
__decorate([
|
|
117
|
-
(0, typeorm_1.ViewColumn)(),
|
|
118
|
-
__metadata("design:type", Number)
|
|
119
|
-
], MasterNotifications.prototype, "reassign_review_new_user", void 0);
|
|
120
|
-
__decorate([
|
|
121
|
-
(0, typeorm_1.ViewColumn)({ transformer: jsonTransformer }),
|
|
122
|
-
__metadata("design:type", Object)
|
|
123
|
-
], MasterNotifications.prototype, "reassign_review_settings", void 0);
|
|
124
|
-
__decorate([
|
|
125
|
-
(0, typeorm_1.ViewColumn)(),
|
|
126
|
-
__metadata("design:type", Number)
|
|
127
|
-
], MasterNotifications.prototype, "master_previous_id", void 0);
|
|
128
|
-
__decorate([
|
|
129
|
-
(0, typeorm_1.ViewColumn)(),
|
|
130
|
-
__metadata("design:type", String)
|
|
131
|
-
], MasterNotifications.prototype, "master_previous_name", void 0);
|
|
132
|
-
__decorate([
|
|
133
|
-
(0, typeorm_1.ViewColumn)(),
|
|
134
|
-
__metadata("design:type", String)
|
|
135
|
-
], MasterNotifications.prototype, "master_previous_surname", void 0);
|
|
136
|
-
__decorate([
|
|
137
|
-
(0, typeorm_1.ViewColumn)(),
|
|
138
|
-
__metadata("design:type", String)
|
|
139
|
-
], MasterNotifications.prototype, "master_previous_email", void 0);
|
|
140
|
-
__decorate([
|
|
141
|
-
(0, typeorm_1.ViewColumn)(),
|
|
142
|
-
__metadata("design:type", Number)
|
|
143
|
-
], MasterNotifications.prototype, "partner_id", void 0);
|
|
144
|
-
__decorate([
|
|
145
|
-
(0, typeorm_1.ViewColumn)(),
|
|
146
|
-
__metadata("design:type", String)
|
|
147
|
-
], MasterNotifications.prototype, "partner_name", void 0);
|
|
148
|
-
__decorate([
|
|
149
|
-
(0, typeorm_1.ViewColumn)(),
|
|
150
|
-
__metadata("design:type", String)
|
|
151
|
-
], MasterNotifications.prototype, "partner_surname", void 0);
|
|
152
|
-
__decorate([
|
|
153
|
-
(0, typeorm_1.ViewColumn)({ transformer: jsonTransformer }),
|
|
154
|
-
__metadata("design:type", Object)
|
|
155
|
-
], MasterNotifications.prototype, "partner_profile", void 0);
|
|
156
|
-
__decorate([
|
|
157
|
-
(0, typeorm_1.ViewColumn)(),
|
|
158
|
-
__metadata("design:type", String)
|
|
159
|
-
], MasterNotifications.prototype, "partner_email", void 0);
|
|
160
|
-
__decorate([
|
|
161
|
-
(0, typeorm_1.ViewColumn)(),
|
|
162
|
-
__metadata("design:type", String)
|
|
163
|
-
], MasterNotifications.prototype, "partner_phone", void 0);
|
|
164
132
|
__decorate([
|
|
165
133
|
(0, typeorm_1.ViewColumn)(),
|
|
166
134
|
__metadata("design:type", Number)
|
package/package.json
CHANGED
|
@@ -45,80 +45,59 @@ export class MasterNotifications {
|
|
|
45
45
|
@ViewColumn()
|
|
46
46
|
status: number;
|
|
47
47
|
|
|
48
|
+
// Partner columns
|
|
48
49
|
@ViewColumn()
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
@ViewColumn()
|
|
52
|
-
master_name: string;
|
|
53
|
-
|
|
54
|
-
@ViewColumn()
|
|
55
|
-
master_surname: string;
|
|
56
|
-
|
|
57
|
-
@ViewColumn()
|
|
58
|
-
master_email: string;
|
|
59
|
-
|
|
60
|
-
@ViewColumn()
|
|
61
|
-
master_phone: string;
|
|
62
|
-
|
|
63
|
-
@ViewColumn({ transformer: jsonTransformer })
|
|
64
|
-
master_profile: any;
|
|
65
|
-
|
|
66
|
-
@ViewColumn()
|
|
67
|
-
master_status: number;
|
|
50
|
+
partner_name: string;
|
|
68
51
|
|
|
69
52
|
@ViewColumn()
|
|
70
|
-
|
|
53
|
+
partner_surname: string;
|
|
71
54
|
|
|
72
55
|
@ViewColumn({ transformer: jsonTransformer })
|
|
73
|
-
|
|
56
|
+
partner_profile: any;
|
|
74
57
|
|
|
75
58
|
@ViewColumn()
|
|
76
|
-
|
|
59
|
+
partner_email: string;
|
|
77
60
|
|
|
78
61
|
@ViewColumn()
|
|
79
|
-
|
|
62
|
+
partner_phone: string;
|
|
80
63
|
|
|
81
64
|
@ViewColumn()
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
@ViewColumn({ transformer: jsonTransformer })
|
|
85
|
-
company_profile: any;
|
|
65
|
+
partner_status: number; // Added missing partner_status column
|
|
86
66
|
|
|
67
|
+
// Master columns
|
|
87
68
|
@ViewColumn()
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
@ViewColumn({ transformer: jsonTransformer })
|
|
91
|
-
reassign_review_settings: any;
|
|
69
|
+
master_document: string;
|
|
92
70
|
|
|
93
71
|
@ViewColumn()
|
|
94
|
-
|
|
72
|
+
master_name: string;
|
|
95
73
|
|
|
96
74
|
@ViewColumn()
|
|
97
|
-
|
|
75
|
+
master_surname: string;
|
|
98
76
|
|
|
99
77
|
@ViewColumn()
|
|
100
|
-
|
|
78
|
+
master_email: string;
|
|
101
79
|
|
|
102
80
|
@ViewColumn()
|
|
103
|
-
|
|
81
|
+
master_phone: string;
|
|
104
82
|
|
|
105
|
-
@ViewColumn()
|
|
106
|
-
|
|
83
|
+
@ViewColumn({ transformer: jsonTransformer })
|
|
84
|
+
master_profile: any;
|
|
107
85
|
|
|
108
86
|
@ViewColumn()
|
|
109
|
-
|
|
87
|
+
master_status: number;
|
|
110
88
|
|
|
89
|
+
// Verify local columns
|
|
111
90
|
@ViewColumn()
|
|
112
|
-
|
|
91
|
+
verify_local_id: number;
|
|
113
92
|
|
|
114
93
|
@ViewColumn({ transformer: jsonTransformer })
|
|
115
|
-
|
|
94
|
+
verify_local_local_information: any;
|
|
116
95
|
|
|
117
96
|
@ViewColumn()
|
|
118
|
-
|
|
97
|
+
verify_local_assigned_master: number;
|
|
119
98
|
|
|
120
99
|
@ViewColumn()
|
|
121
|
-
|
|
100
|
+
verify_local_status: number;
|
|
122
101
|
|
|
123
102
|
@ViewColumn()
|
|
124
103
|
master_assigned_notification: number;
|