@platform-modules/foreign-ministry 1.3.216 → 1.3.217
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.
|
@@ -61,4 +61,6 @@ export declare class AppointmentRequests extends BaseModel {
|
|
|
61
61
|
/** When true, workflow includes Under Secretary Approval step; when false or null, that step is skipped. */
|
|
62
62
|
is_under_secretery_approval_required: boolean | null;
|
|
63
63
|
is_gate_pass_applied: boolean | null;
|
|
64
|
+
online_appointment_details: string | null;
|
|
65
|
+
appointment_link: string | null;
|
|
64
66
|
}
|
|
@@ -174,6 +174,14 @@ __decorate([
|
|
|
174
174
|
(0, typeorm_1.Column)({ type: 'boolean', default: false, nullable: true }),
|
|
175
175
|
__metadata("design:type", Object)
|
|
176
176
|
], AppointmentRequests.prototype, "is_gate_pass_applied", void 0);
|
|
177
|
+
__decorate([
|
|
178
|
+
(0, typeorm_1.Column)({ type: 'text', nullable: true }),
|
|
179
|
+
__metadata("design:type", Object)
|
|
180
|
+
], AppointmentRequests.prototype, "online_appointment_details", void 0);
|
|
181
|
+
__decorate([
|
|
182
|
+
(0, typeorm_1.Column)({ type: 'varchar', length: 500, nullable: true }),
|
|
183
|
+
__metadata("design:type", Object)
|
|
184
|
+
], AppointmentRequests.prototype, "appointment_link", void 0);
|
|
177
185
|
exports.AppointmentRequests = AppointmentRequests = __decorate([
|
|
178
186
|
(0, typeorm_1.Entity)({ name: 'appointment_requests' })
|
|
179
187
|
], AppointmentRequests);
|
package/package.json
CHANGED
|
@@ -132,5 +132,11 @@ export class AppointmentRequests extends BaseModel {
|
|
|
132
132
|
|
|
133
133
|
@Column({ type: 'boolean', default: false, nullable: true })
|
|
134
134
|
is_gate_pass_applied: boolean | null;
|
|
135
|
+
|
|
136
|
+
@Column({ type: 'text', nullable: true })
|
|
137
|
+
online_appointment_details: string | null;
|
|
138
|
+
|
|
139
|
+
@Column({ type: 'varchar', length: 500, nullable: true })
|
|
140
|
+
appointment_link: string | null;
|
|
135
141
|
}
|
|
136
142
|
|