test-entity-library-asm 2.8.11 → 2.8.12
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/views/MasterNotifications.d.ts +2 -0
- package/dist/views/MasterNotifications.js +8 -0
- package/dist/views/PartnerNotifications.d.ts +2 -0
- package/dist/views/PartnerNotifications.js +8 -0
- package/package.json +1 -1
- package/src/views/MasterNotifications.ts +6 -0
- package/src/views/PartnerNotifications.ts +6 -0
|
@@ -27,6 +27,8 @@ export declare class MasterNotifications {
|
|
|
27
27
|
master_previous_email: string;
|
|
28
28
|
partner_id: number;
|
|
29
29
|
partner_name: string;
|
|
30
|
+
partner_surname: string;
|
|
31
|
+
partner_profile: any;
|
|
30
32
|
partner_email: string;
|
|
31
33
|
partner_phone: string;
|
|
32
34
|
master_assigned_notification: number;
|
|
@@ -141,6 +141,14 @@ var MasterNotifications = /** @class */ (function () {
|
|
|
141
141
|
(0, typeorm_1.ViewColumn)(),
|
|
142
142
|
__metadata("design:type", String)
|
|
143
143
|
], MasterNotifications.prototype, "partner_name", void 0);
|
|
144
|
+
__decorate([
|
|
145
|
+
(0, typeorm_1.ViewColumn)(),
|
|
146
|
+
__metadata("design:type", String)
|
|
147
|
+
], MasterNotifications.prototype, "partner_surname", void 0);
|
|
148
|
+
__decorate([
|
|
149
|
+
(0, typeorm_1.ViewColumn)({ transformer: jsonTransformer }),
|
|
150
|
+
__metadata("design:type", Object)
|
|
151
|
+
], MasterNotifications.prototype, "partner_profile", void 0);
|
|
144
152
|
__decorate([
|
|
145
153
|
(0, typeorm_1.ViewColumn)(),
|
|
146
154
|
__metadata("design:type", String)
|
|
@@ -65,6 +65,14 @@ var PartnerNotifications = /** @class */ (function () {
|
|
|
65
65
|
(0, typeorm_1.ViewColumn)(),
|
|
66
66
|
__metadata("design:type", String)
|
|
67
67
|
], PartnerNotifications.prototype, "partner_name", void 0);
|
|
68
|
+
__decorate([
|
|
69
|
+
(0, typeorm_1.ViewColumn)(),
|
|
70
|
+
__metadata("design:type", String)
|
|
71
|
+
], PartnerNotifications.prototype, "partner_surname", void 0);
|
|
72
|
+
__decorate([
|
|
73
|
+
(0, typeorm_1.ViewColumn)({ transformer: jsonTransformer }),
|
|
74
|
+
__metadata("design:type", Object)
|
|
75
|
+
], PartnerNotifications.prototype, "partner_profile", void 0);
|
|
68
76
|
__decorate([
|
|
69
77
|
(0, typeorm_1.ViewColumn)(),
|
|
70
78
|
__metadata("design:type", String)
|
package/package.json
CHANGED
|
@@ -105,6 +105,12 @@ export class MasterNotifications {
|
|
|
105
105
|
@ViewColumn()
|
|
106
106
|
partner_name: string;
|
|
107
107
|
|
|
108
|
+
@ViewColumn()
|
|
109
|
+
partner_surname: string;
|
|
110
|
+
|
|
111
|
+
@ViewColumn({ transformer: jsonTransformer })
|
|
112
|
+
partner_profile: any;
|
|
113
|
+
|
|
108
114
|
@ViewColumn()
|
|
109
115
|
partner_email: string;
|
|
110
116
|
|
|
@@ -48,6 +48,12 @@ export class PartnerNotifications {
|
|
|
48
48
|
@ViewColumn()
|
|
49
49
|
partner_name: string;
|
|
50
50
|
|
|
51
|
+
@ViewColumn()
|
|
52
|
+
partner_surname: string;
|
|
53
|
+
|
|
54
|
+
@ViewColumn({ transformer: jsonTransformer })
|
|
55
|
+
partner_profile: any;
|
|
56
|
+
|
|
51
57
|
@ViewColumn()
|
|
52
58
|
partner_email: string;
|
|
53
59
|
|