whitelabel-db 1.1.42 → 1.1.44
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/libs/liteapiv3.d.ts
CHANGED
|
@@ -77,6 +77,7 @@ export interface RateV3 {
|
|
|
77
77
|
hasFreeCancellation: boolean;
|
|
78
78
|
};
|
|
79
79
|
formattedName?: string;
|
|
80
|
+
paymentTypes?: string[];
|
|
80
81
|
}
|
|
81
82
|
export interface RoomTypeV3 {
|
|
82
83
|
roomTypeId: string;
|
|
@@ -92,6 +93,8 @@ export interface RoomTypeV3 {
|
|
|
92
93
|
memberSavings: number;
|
|
93
94
|
memberPrice: number;
|
|
94
95
|
guestPrice: number;
|
|
96
|
+
paymentTypes: string[];
|
|
97
|
+
hasPayAtPropertyOption: boolean;
|
|
95
98
|
}
|
|
96
99
|
export interface FullRateAvailabilityResultV3 {
|
|
97
100
|
hotelId: string;
|
package/dist/models/Guest.d.ts
CHANGED
package/dist/models/Guest.js
CHANGED
|
@@ -147,6 +147,15 @@ __decorate([
|
|
|
147
147
|
}),
|
|
148
148
|
__metadata("design:type", Array)
|
|
149
149
|
], Guest.prototype, "favoriteHotelIds", void 0);
|
|
150
|
+
__decorate([
|
|
151
|
+
sequelize_typescript_1.Index,
|
|
152
|
+
(0, sequelize_typescript_1.Column)({
|
|
153
|
+
type: sequelize_typescript_1.DataType.INTEGER,
|
|
154
|
+
allowNull: true,
|
|
155
|
+
defaultValue: 0,
|
|
156
|
+
}),
|
|
157
|
+
__metadata("design:type", Number)
|
|
158
|
+
], Guest.prototype, "feedbackCount", void 0);
|
|
150
159
|
__decorate([
|
|
151
160
|
(0, sequelize_typescript_1.Unique)('idx_guests_referral_code'),
|
|
152
161
|
(0, sequelize_typescript_1.Index)('idx_guests_referral_code'),
|