@platform-modules/foreign-ministry 1.3.10 → 1.3.11
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.
|
@@ -86,7 +86,7 @@ __decorate([
|
|
|
86
86
|
__metadata("design:type", Object)
|
|
87
87
|
], GatePassVisitors.prototype, "visitor_photo_file_name", void 0);
|
|
88
88
|
__decorate([
|
|
89
|
-
(0, typeorm_1.Column)({ type: '
|
|
89
|
+
(0, typeorm_1.Column)({ type: 'text', nullable: true }),
|
|
90
90
|
__metadata("design:type", Object)
|
|
91
91
|
], GatePassVisitors.prototype, "qr_code_url", void 0);
|
|
92
92
|
__decorate([
|
package/package.json
CHANGED
|
@@ -47,8 +47,8 @@ export class GatePassVisitors extends BaseModel {
|
|
|
47
47
|
visitor_photo_file_name: string | null;
|
|
48
48
|
|
|
49
49
|
// QR Code for Gate Pass
|
|
50
|
-
@Column({ type: '
|
|
51
|
-
qr_code_url: string | null; // QR code URL for this visitor
|
|
50
|
+
@Column({ type: 'text', nullable: true })
|
|
51
|
+
qr_code_url: string | null; // QR code URL for this visitor (data URL can be 6000+ characters)
|
|
52
52
|
|
|
53
53
|
@Column({ type: 'text', nullable: true })
|
|
54
54
|
qr_code_data: string | null; // QR code data (JSON string)
|