@escapenavigator/types 1.6.84 → 1.6.86
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/openapi/widget/openapi-widget-info.ro.d.ts +4 -0
- package/dist/openapi/widget/openapi-widget-info.ro.js +10 -0
- package/dist/order/order.ro.d.ts +0 -4
- package/dist/order/order.ro.js +0 -13
- package/dist/profile/admin-profile.ro.d.ts +1 -0
- package/dist/profile/admin-profile.ro.js +4 -0
- package/dist/profile/create-profile.dto.d.ts +1 -0
- package/dist/profile/create-profile.dto.js +5 -0
- package/dist/profile/email/email-campaign.ro.d.ts +1 -0
- package/dist/profile/email/email-campaign.ro.js +4 -0
- package/dist/profile/query-admin-profile.dto.d.ts +2 -0
- package/dist/profile/query-admin-profile.dto.js +8 -0
- package/dist/profile/widget-customization/enum/widget-style.enum.d.ts +4 -0
- package/dist/profile/widget-customization/enum/widget-style.enum.js +8 -0
- package/dist/profile/widget-customization/enum/widget-view.enum.d.ts +4 -0
- package/dist/profile/widget-customization/enum/widget-view.enum.js +8 -0
- package/dist/profile/widget-customization/update-widget-customization.dto.d.ts +4 -0
- package/dist/profile/widget-customization/update-widget-customization.dto.js +12 -0
- package/dist/profile/widget-customization/widget-customization.ro.d.ts +4 -0
- package/dist/profile/widget-customization/widget-customization.ro.js +10 -0
- package/dist/slot/change-template-slots-form.dto.d.ts +2 -11
- package/dist/slot/change-template-slots-form.dto.js +2 -57
- package/dist/slot/create-slot-form.dto.d.ts +2 -11
- package/dist/slot/create-slot-form.dto.js +2 -56
- package/dist/slot/slot-autocomplite-form.dto.d.ts +2 -11
- package/dist/slot/slot-autocomplite-form.dto.js +2 -56
- package/dist/slot-rule/create-rule.dto.d.ts +4 -0
- package/dist/slot-rule/create-rule.dto.js +33 -0
- package/dist/slot-rule/defailt-rule.d.ts +3 -0
- package/dist/slot-rule/defailt-rule.js +3 -0
- package/dist/slot-rule/rule.ro.d.ts +3 -0
- package/dist/slot-rule/rule.ro.js +12 -0
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +2 -2
- package/dist/profile/initial-cusomization.dto.d.ts +0 -11
- package/dist/profile/initial-cusomization.dto.js +0 -63
|
@@ -10,4 +10,7 @@ exports.defaultRule = {
|
|
|
10
10
|
cancelationRule: questroom_cancelation_type_enum_1.QuestroomCancelationTypeEnum.MIN_PRICE,
|
|
11
11
|
minHoursForFreeCanceling: 8,
|
|
12
12
|
minHoursForBooking: 48,
|
|
13
|
+
blockingHours: 2,
|
|
14
|
+
openSlotWhenUserInCalendar: true,
|
|
15
|
+
prepayForTourists: false,
|
|
13
16
|
};
|
|
@@ -55,4 +55,16 @@ __decorate([
|
|
|
55
55
|
(0, class_transformer_1.Expose)(),
|
|
56
56
|
__metadata("design:type", Number)
|
|
57
57
|
], RuleRO.prototype, "minHoursForBooking", void 0);
|
|
58
|
+
__decorate([
|
|
59
|
+
(0, class_transformer_1.Expose)(),
|
|
60
|
+
__metadata("design:type", Number)
|
|
61
|
+
], RuleRO.prototype, "blockingHours", void 0);
|
|
62
|
+
__decorate([
|
|
63
|
+
(0, class_transformer_1.Expose)(),
|
|
64
|
+
__metadata("design:type", Boolean)
|
|
65
|
+
], RuleRO.prototype, "openSlotWhenUserInCalendar", void 0);
|
|
66
|
+
__decorate([
|
|
67
|
+
(0, class_transformer_1.Expose)(),
|
|
68
|
+
__metadata("design:type", Boolean)
|
|
69
|
+
], RuleRO.prototype, "prepayForTourists", void 0);
|
|
58
70
|
exports.RuleRO = RuleRO;
|