plac-micro-common 1.3.25 → 1.3.26
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.
|
@@ -22,6 +22,7 @@ export declare class ApplicationEntity extends _BaseEntity {
|
|
|
22
22
|
submitted_at?: Date | null;
|
|
23
23
|
review_started_at?: Date | null;
|
|
24
24
|
accepted_at?: Date | null;
|
|
25
|
+
set_pending_at?: Date | null;
|
|
25
26
|
rejected_at?: Date | null;
|
|
26
27
|
rejection_reason?: string | null;
|
|
27
28
|
transferred_at?: Date | null;
|
|
@@ -34,9 +35,12 @@ export declare class ApplicationEntity extends _BaseEntity {
|
|
|
34
35
|
completed_by_user_id?: string | null;
|
|
35
36
|
submitted_by_user_id?: string | null;
|
|
36
37
|
reviewed_by_user_id?: string | null;
|
|
38
|
+
set_pending_by_user_id?: string | null;
|
|
37
39
|
accepted_by_user_id?: string | null;
|
|
38
40
|
rejected_by_user_id?: string | null;
|
|
39
41
|
transferred_by_user_id?: string | null;
|
|
42
|
+
submitted_remark?: string | null;
|
|
43
|
+
reviewed_remark?: string | null;
|
|
40
44
|
is_active: boolean;
|
|
41
45
|
is_migrated: boolean;
|
|
42
46
|
org: OrganizationEntity;
|
|
@@ -99,6 +99,10 @@ __decorate([
|
|
|
99
99
|
(0, typeorm_1.Column)({ type: "timestamptz", nullable: true }),
|
|
100
100
|
__metadata("design:type", Object)
|
|
101
101
|
], ApplicationEntity.prototype, "accepted_at", void 0);
|
|
102
|
+
__decorate([
|
|
103
|
+
(0, typeorm_1.Column)({ type: "timestamptz", nullable: true }),
|
|
104
|
+
__metadata("design:type", Object)
|
|
105
|
+
], ApplicationEntity.prototype, "set_pending_at", void 0);
|
|
102
106
|
__decorate([
|
|
103
107
|
(0, typeorm_1.Column)({ type: "timestamptz", nullable: true }),
|
|
104
108
|
__metadata("design:type", Object)
|
|
@@ -164,6 +168,11 @@ __decorate([
|
|
|
164
168
|
(0, typeorm_1.Column)({ type: "uuid", nullable: true }),
|
|
165
169
|
__metadata("design:type", Object)
|
|
166
170
|
], ApplicationEntity.prototype, "reviewed_by_user_id", void 0);
|
|
171
|
+
__decorate([
|
|
172
|
+
(0, typeorm_1.Index)(),
|
|
173
|
+
(0, typeorm_1.Column)({ type: "uuid", nullable: true }),
|
|
174
|
+
__metadata("design:type", Object)
|
|
175
|
+
], ApplicationEntity.prototype, "set_pending_by_user_id", void 0);
|
|
167
176
|
__decorate([
|
|
168
177
|
(0, typeorm_1.Index)(),
|
|
169
178
|
(0, typeorm_1.Column)({ type: "uuid", nullable: true }),
|
|
@@ -179,6 +188,14 @@ __decorate([
|
|
|
179
188
|
(0, typeorm_1.Column)({ type: "uuid", nullable: true }),
|
|
180
189
|
__metadata("design:type", Object)
|
|
181
190
|
], ApplicationEntity.prototype, "transferred_by_user_id", void 0);
|
|
191
|
+
__decorate([
|
|
192
|
+
(0, typeorm_1.Column)({ type: "text", nullable: true }),
|
|
193
|
+
__metadata("design:type", Object)
|
|
194
|
+
], ApplicationEntity.prototype, "submitted_remark", void 0);
|
|
195
|
+
__decorate([
|
|
196
|
+
(0, typeorm_1.Column)({ type: "text", nullable: true }),
|
|
197
|
+
__metadata("design:type", Object)
|
|
198
|
+
], ApplicationEntity.prototype, "reviewed_remark", void 0);
|
|
182
199
|
__decorate([
|
|
183
200
|
(0, typeorm_1.Column)({ type: "boolean", default: true }),
|
|
184
201
|
__metadata("design:type", Boolean)
|