test-entity-library-asm 2.5.7 → 2.5.8
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.
|
@@ -165,6 +165,18 @@ var VerifyLocals = /** @class */ (function () {
|
|
|
165
165
|
(0, typeorm_1.ViewColumn)({ transformer: jsonTransformer }),
|
|
166
166
|
__metadata("design:type", Object)
|
|
167
167
|
], VerifyLocals.prototype, "partner_profile", void 0);
|
|
168
|
+
__decorate([
|
|
169
|
+
(0, typeorm_1.ViewColumn)(),
|
|
170
|
+
__metadata("design:type", Number)
|
|
171
|
+
], VerifyLocals.prototype, "company_id", void 0);
|
|
172
|
+
__decorate([
|
|
173
|
+
(0, typeorm_1.ViewColumn)(),
|
|
174
|
+
__metadata("design:type", String)
|
|
175
|
+
], VerifyLocals.prototype, "company_name", void 0);
|
|
176
|
+
__decorate([
|
|
177
|
+
(0, typeorm_1.ViewColumn)({ transformer: jsonTransformer }),
|
|
178
|
+
__metadata("design:type", Object)
|
|
179
|
+
], VerifyLocals.prototype, "company_profile", void 0);
|
|
168
180
|
VerifyLocals = __decorate([
|
|
169
181
|
(0, typeorm_1.ViewEntity)({
|
|
170
182
|
name: 'verify_locals',
|
package/package.json
CHANGED
|
@@ -122,4 +122,13 @@ export class VerifyLocals {
|
|
|
122
122
|
|
|
123
123
|
@ViewColumn({ transformer: jsonTransformer })
|
|
124
124
|
partner_profile: any
|
|
125
|
+
|
|
126
|
+
@ViewColumn()
|
|
127
|
+
company_id: number
|
|
128
|
+
|
|
129
|
+
@ViewColumn()
|
|
130
|
+
company_name: string
|
|
131
|
+
|
|
132
|
+
@ViewColumn({ transformer: jsonTransformer })
|
|
133
|
+
company_profile: any
|
|
125
134
|
}
|