test-entity-library-asm 2.6.2 → 2.6.4
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.
|
@@ -18,4 +18,10 @@ export declare class MasterNotifications {
|
|
|
18
18
|
verify_local_status: number;
|
|
19
19
|
company_name: string;
|
|
20
20
|
company_profile: any;
|
|
21
|
+
reassign_review_new_user: number;
|
|
22
|
+
reassign_review_settings: any;
|
|
23
|
+
master_previous_id: number;
|
|
24
|
+
master_previous_name: string;
|
|
25
|
+
master_previous_surname: string;
|
|
26
|
+
master_previous_email: string;
|
|
21
27
|
}
|
|
@@ -105,6 +105,30 @@ var MasterNotifications = /** @class */ (function () {
|
|
|
105
105
|
(0, typeorm_1.ViewColumn)({ transformer: jsonTransformer }),
|
|
106
106
|
__metadata("design:type", Object)
|
|
107
107
|
], MasterNotifications.prototype, "company_profile", void 0);
|
|
108
|
+
__decorate([
|
|
109
|
+
(0, typeorm_1.ViewColumn)(),
|
|
110
|
+
__metadata("design:type", Number)
|
|
111
|
+
], MasterNotifications.prototype, "reassign_review_new_user", void 0);
|
|
112
|
+
__decorate([
|
|
113
|
+
(0, typeorm_1.ViewColumn)({ transformer: jsonTransformer }),
|
|
114
|
+
__metadata("design:type", Object)
|
|
115
|
+
], MasterNotifications.prototype, "reassign_review_settings", void 0);
|
|
116
|
+
__decorate([
|
|
117
|
+
(0, typeorm_1.ViewColumn)(),
|
|
118
|
+
__metadata("design:type", Number)
|
|
119
|
+
], MasterNotifications.prototype, "master_previous_id", void 0);
|
|
120
|
+
__decorate([
|
|
121
|
+
(0, typeorm_1.ViewColumn)(),
|
|
122
|
+
__metadata("design:type", String)
|
|
123
|
+
], MasterNotifications.prototype, "master_previous_name", void 0);
|
|
124
|
+
__decorate([
|
|
125
|
+
(0, typeorm_1.ViewColumn)(),
|
|
126
|
+
__metadata("design:type", String)
|
|
127
|
+
], MasterNotifications.prototype, "master_previous_surname", void 0);
|
|
128
|
+
__decorate([
|
|
129
|
+
(0, typeorm_1.ViewColumn)(),
|
|
130
|
+
__metadata("design:type", String)
|
|
131
|
+
], MasterNotifications.prototype, "master_previous_email", void 0);
|
|
108
132
|
MasterNotifications = __decorate([
|
|
109
133
|
(0, typeorm_1.ViewEntity)({
|
|
110
134
|
name: 'master_notifications',
|
package/package.json
CHANGED
|
@@ -1,29 +1,29 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "test-entity-library-asm",
|
|
3
|
-
"version": "2.6.
|
|
4
|
-
"description": "Entidades de ejemplo para una base de datos",
|
|
5
|
-
"main": "dist/index.js",
|
|
6
|
-
"types": "dist/index.d.ts",
|
|
7
|
-
"scripts": {
|
|
8
|
-
"build": "tsc"
|
|
9
|
-
},
|
|
10
|
-
"keywords": [],
|
|
11
|
-
"author": "",
|
|
12
|
-
"license": "ISC",
|
|
13
|
-
"dependencies": {
|
|
14
|
-
"dotenv": "^16.4.5",
|
|
15
|
-
"express": "^4.19.2",
|
|
16
|
-
"moment-timezone": "^0.5.45",
|
|
17
|
-
"typeorm": "^0.3.20"
|
|
18
|
-
},
|
|
19
|
-
"devDependencies": {
|
|
20
|
-
"@types/express": "^4.17.21",
|
|
21
|
-
"@types/node": "^20.12.7",
|
|
22
|
-
"typescript": "^5.4.5"
|
|
23
|
-
},
|
|
24
|
-
"repository": {
|
|
25
|
-
"type": "git",
|
|
26
|
-
"url": "https://github.com/jesusgomez461/test-entity-library-asm"
|
|
27
|
-
},
|
|
28
|
-
"homepage": "https://github.com/jesusgomez461/test-entity-library-asm"
|
|
29
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "test-entity-library-asm",
|
|
3
|
+
"version": "2.6.4",
|
|
4
|
+
"description": "Entidades de ejemplo para una base de datos",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"types": "dist/index.d.ts",
|
|
7
|
+
"scripts": {
|
|
8
|
+
"build": "tsc"
|
|
9
|
+
},
|
|
10
|
+
"keywords": [],
|
|
11
|
+
"author": "",
|
|
12
|
+
"license": "ISC",
|
|
13
|
+
"dependencies": {
|
|
14
|
+
"dotenv": "^16.4.5",
|
|
15
|
+
"express": "^4.19.2",
|
|
16
|
+
"moment-timezone": "^0.5.45",
|
|
17
|
+
"typeorm": "^0.3.20"
|
|
18
|
+
},
|
|
19
|
+
"devDependencies": {
|
|
20
|
+
"@types/express": "^4.17.21",
|
|
21
|
+
"@types/node": "^20.12.7",
|
|
22
|
+
"typescript": "^5.4.5"
|
|
23
|
+
},
|
|
24
|
+
"repository": {
|
|
25
|
+
"type": "git",
|
|
26
|
+
"url": "https://github.com/jesusgomez461/test-entity-library-asm"
|
|
27
|
+
},
|
|
28
|
+
"homepage": "https://github.com/jesusgomez461/test-entity-library-asm"
|
|
29
|
+
}
|
|
@@ -77,4 +77,22 @@ export class MasterNotifications {
|
|
|
77
77
|
|
|
78
78
|
@ViewColumn({ transformer: jsonTransformer })
|
|
79
79
|
company_profile: any
|
|
80
|
+
|
|
81
|
+
@ViewColumn()
|
|
82
|
+
reassign_review_new_user: number
|
|
83
|
+
|
|
84
|
+
@ViewColumn({ transformer: jsonTransformer })
|
|
85
|
+
reassign_review_settings: any
|
|
86
|
+
|
|
87
|
+
@ViewColumn()
|
|
88
|
+
master_previous_id: number
|
|
89
|
+
|
|
90
|
+
@ViewColumn()
|
|
91
|
+
master_previous_name: string
|
|
92
|
+
|
|
93
|
+
@ViewColumn()
|
|
94
|
+
master_previous_surname: string
|
|
95
|
+
|
|
96
|
+
@ViewColumn()
|
|
97
|
+
master_previous_email: string
|
|
80
98
|
}
|