@uniorganization/uni-lib 1.1.80 → 1.1.82
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.
|
@@ -14,7 +14,7 @@ const typeorm_1 = require("typeorm");
|
|
|
14
14
|
let ClaimReport = class ClaimReport {
|
|
15
15
|
};
|
|
16
16
|
__decorate([
|
|
17
|
-
(0, typeorm_1.PrimaryGeneratedColumn)(),
|
|
17
|
+
(0, typeorm_1.PrimaryGeneratedColumn)({ name: 'id' }),
|
|
18
18
|
__metadata("design:type", Number)
|
|
19
19
|
], ClaimReport.prototype, "id", void 0);
|
|
20
20
|
__decorate([
|
|
@@ -26,7 +26,7 @@ __decorate([
|
|
|
26
26
|
__metadata("design:type", Date)
|
|
27
27
|
], ClaimReport.prototype, "postingdate", void 0);
|
|
28
28
|
__decorate([
|
|
29
|
-
(0, typeorm_1.Column)(),
|
|
29
|
+
(0, typeorm_1.Column)({ name: 'status_t' }),
|
|
30
30
|
__metadata("design:type", String)
|
|
31
31
|
], ClaimReport.prototype, "statust", void 0);
|
|
32
32
|
__decorate([
|
|
@@ -153,6 +153,10 @@ __decorate([
|
|
|
153
153
|
(0, typeorm_1.Column)(),
|
|
154
154
|
__metadata("design:type", String)
|
|
155
155
|
], ClaimReport.prototype, "campaign", void 0);
|
|
156
|
+
__decorate([
|
|
157
|
+
(0, typeorm_1.Column)(),
|
|
158
|
+
__metadata("design:type", String)
|
|
159
|
+
], ClaimReport.prototype, "status", void 0);
|
|
156
160
|
ClaimReport = __decorate([
|
|
157
161
|
(0, typeorm_1.Entity)('claim_report', { schema: 'tracking' })
|
|
158
162
|
], ClaimReport);
|
package/dist/entities/index.d.ts
CHANGED
package/dist/entities/index.js
CHANGED
|
@@ -84,3 +84,4 @@ __exportStar(require("./daily-payment-status.entity"), exports);
|
|
|
84
84
|
__exportStar(require("./skipped-ticket.entity"), exports);
|
|
85
85
|
__exportStar(require("./user-roster.view"), exports);
|
|
86
86
|
__exportStar(require("./enr-inventory.entity"), exports);
|
|
87
|
+
__exportStar(require("./claim-report.entity"), exports);
|