whitelabel-db 1.0.34 → 1.0.36
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.
package/dist/models/Hotel.d.ts
CHANGED
package/dist/models/Hotel.js
CHANGED
|
@@ -115,6 +115,13 @@ __decorate([
|
|
|
115
115
|
}),
|
|
116
116
|
__metadata("design:type", Boolean)
|
|
117
117
|
], Hotel.prototype, "mapped", void 0);
|
|
118
|
+
__decorate([
|
|
119
|
+
(0, sequelize_typescript_1.Column)({
|
|
120
|
+
type: sequelize_typescript_1.DataType.INTEGER,
|
|
121
|
+
allowNull: true,
|
|
122
|
+
}),
|
|
123
|
+
__metadata("design:type", Number)
|
|
124
|
+
], Hotel.prototype, "thirdPartyId", void 0);
|
|
118
125
|
__decorate([
|
|
119
126
|
(0, sequelize_typescript_1.Column)({
|
|
120
127
|
type: sequelize_typescript_1.DataType.JSONB,
|
package/dist/models/Project.d.ts
CHANGED
package/dist/models/Project.js
CHANGED
|
@@ -101,6 +101,14 @@ __decorate([
|
|
|
101
101
|
(0, sequelize_typescript_1.HasMany)(() => Booking_1.Booking),
|
|
102
102
|
__metadata("design:type", Array)
|
|
103
103
|
], Project.prototype, "bookings", void 0);
|
|
104
|
+
__decorate([
|
|
105
|
+
(0, sequelize_typescript_1.Column)({
|
|
106
|
+
type: sequelize_typescript_1.DataType.JSONB,
|
|
107
|
+
allowNull: false,
|
|
108
|
+
defaultValue: {},
|
|
109
|
+
}),
|
|
110
|
+
__metadata("design:type", Object)
|
|
111
|
+
], Project.prototype, "preferences", void 0);
|
|
104
112
|
exports.Project = Project = __decorate([
|
|
105
113
|
(0, sequelize_typescript_1.Table)({
|
|
106
114
|
tableName: 'projects',
|