@escapenavigator/types 1.10.90 → 1.10.91
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/landing-review/create-landing-review.dto.d.ts +10 -0
- package/dist/landing-review/create-landing-review.dto.js +57 -0
- package/dist/landing-review/enum/landing-review-type.enum.d.ts +4 -0
- package/dist/landing-review/enum/landing-review-type.enum.js +8 -0
- package/dist/landing-review/landing-review.ro.d.ts +11 -0
- package/dist/landing-review/landing-review.ro.js +2 -0
- package/dist/landing-review/update-landing-review.dto.d.ts +5 -0
- package/dist/landing-review/update-landing-review.dto.js +8 -0
- package/dist/openapi/profiles/openapi-profile-booking-list-item.ro.d.ts +14 -0
- package/dist/openapi/profiles/openapi-profile-booking-list-item.ro.js +92 -0
- package/dist/openapi/profiles/openapi-profile-booking-participants.ro.d.ts +12 -0
- package/dist/openapi/profiles/openapi-profile-booking-participants.ro.js +66 -0
- package/dist/openapi/profiles/openapi-profile-bookings-date-query.dto.d.ts +3 -0
- package/dist/openapi/profiles/openapi-profile-bookings-date-query.dto.js +26 -0
- package/dist/openapi/shared/openapi-booking-rule.ro.js +28 -1
- package/dist/openapi/slots/openapi-widget-slot.ro.js +64 -16
- package/dist/openapi/widget/openapi-widget-info.ro.d.ts +5 -0
- package/dist/openapi/widget/openapi-widget-info.ro.js +17 -0
- package/dist/profile/widget-customization/enum/widget-roundness.enum.d.ts +6 -0
- package/dist/profile/widget-customization/enum/widget-roundness.enum.js +10 -0
- package/dist/profile/widget-customization/update-widget-customization.dto.d.ts +4 -0
- package/dist/profile/widget-customization/update-widget-customization.dto.js +18 -0
- package/dist/profile/widget-customization/widget-customization.ro.d.ts +4 -0
- package/dist/profile/widget-customization/widget-customization.ro.js +13 -0
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/dist/widget/admin-installed-widget.ro.d.ts +7 -0
- package/dist/widget/admin-installed-widget.ro.js +2 -0
- package/dist/widget/create-widget.dto.d.ts +2 -0
- package/dist/widget/create-widget.dto.js +16 -0
- package/dist/widget/widget.ro.d.ts +2 -0
- package/dist/widget-chat/enum/widget-chat-message-author.enum.d.ts +4 -0
- package/dist/widget-chat/enum/widget-chat-message-author.enum.js +8 -0
- package/dist/widget-chat/widget-chat-conversation.ro.d.ts +16 -0
- package/dist/widget-chat/widget-chat-conversation.ro.js +2 -0
- package/dist/widget-chat/widget-chat-conversations-query.dto.d.ts +2 -0
- package/dist/widget-chat/widget-chat-conversations-query.dto.js +6 -0
- package/dist/widget-chat/widget-chat-init.dto.d.ts +6 -0
- package/dist/widget-chat/widget-chat-init.dto.js +41 -0
- package/dist/widget-chat/widget-chat-init.ro.d.ts +7 -0
- package/dist/widget-chat/widget-chat-init.ro.js +2 -0
- package/dist/widget-chat/widget-chat-message.ro.d.ts +11 -0
- package/dist/widget-chat/widget-chat-message.ro.js +2 -0
- package/dist/widget-chat/widget-chat-messages-query.dto.d.ts +3 -0
- package/dist/widget-chat/widget-chat-messages-query.dto.js +24 -0
- package/dist/widget-chat/widget-chat-public-messages-query.dto.d.ts +4 -0
- package/dist/widget-chat/widget-chat-public-messages-query.dto.js +30 -0
- package/package.json +2 -2
|
@@ -12,6 +12,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
12
12
|
exports.UpdateWidgetCustomizationDto = void 0;
|
|
13
13
|
const class_transformer_1 = require("class-transformer");
|
|
14
14
|
const class_validator_1 = require("class-validator");
|
|
15
|
+
const widget_roundness_enum_1 = require("./enum/widget-roundness.enum");
|
|
15
16
|
const widget_style_enum_1 = require("./enum/widget-style.enum");
|
|
16
17
|
const widget_view_enum_1 = require("./enum/widget-view.enum");
|
|
17
18
|
class UpdateWidgetCustomizationDto {
|
|
@@ -51,4 +52,21 @@ __decorate([
|
|
|
51
52
|
(0, class_transformer_1.Expose)(),
|
|
52
53
|
__metadata("design:type", String)
|
|
53
54
|
], UpdateWidgetCustomizationDto.prototype, "mainColor", void 0);
|
|
55
|
+
__decorate([
|
|
56
|
+
(0, class_validator_1.IsEnum)(widget_roundness_enum_1.WidgetRoundnessEnum),
|
|
57
|
+
(0, class_transformer_1.Expose)(),
|
|
58
|
+
__metadata("design:type", String)
|
|
59
|
+
], UpdateWidgetCustomizationDto.prototype, "roundness", void 0);
|
|
60
|
+
__decorate([
|
|
61
|
+
(0, class_validator_1.IsOptional)(),
|
|
62
|
+
(0, class_validator_1.IsString)(),
|
|
63
|
+
(0, class_transformer_1.Expose)(),
|
|
64
|
+
__metadata("design:type", String)
|
|
65
|
+
], UpdateWidgetCustomizationDto.prototype, "widgetFontFamily", void 0);
|
|
66
|
+
__decorate([
|
|
67
|
+
(0, class_validator_1.IsOptional)(),
|
|
68
|
+
(0, class_validator_1.IsHexColor)(),
|
|
69
|
+
(0, class_transformer_1.Expose)(),
|
|
70
|
+
__metadata("design:type", String)
|
|
71
|
+
], UpdateWidgetCustomizationDto.prototype, "bgColor", void 0);
|
|
54
72
|
exports.UpdateWidgetCustomizationDto = UpdateWidgetCustomizationDto;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { WidgetRoundnessEnum } from './enum/widget-roundness.enum';
|
|
1
2
|
import { WidgetStyleEnum } from './enum/widget-style.enum';
|
|
2
3
|
import { WidgetViewEnum } from './enum/widget-view.enum';
|
|
3
4
|
export declare class WidgetCustomizationRO {
|
|
@@ -8,4 +9,7 @@ export declare class WidgetCustomizationRO {
|
|
|
8
9
|
mainColor: string;
|
|
9
10
|
style: WidgetStyleEnum;
|
|
10
11
|
view: WidgetViewEnum;
|
|
12
|
+
roundness: WidgetRoundnessEnum;
|
|
13
|
+
widgetFontFamily?: string;
|
|
14
|
+
bgColor?: string;
|
|
11
15
|
}
|
|
@@ -11,6 +11,7 @@ var __metadata = (this && this.__metadata) || function (k, v) {
|
|
|
11
11
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
12
|
exports.WidgetCustomizationRO = void 0;
|
|
13
13
|
const class_transformer_1 = require("class-transformer");
|
|
14
|
+
const widget_roundness_enum_1 = require("./enum/widget-roundness.enum");
|
|
14
15
|
const widget_style_enum_1 = require("./enum/widget-style.enum");
|
|
15
16
|
const widget_view_enum_1 = require("./enum/widget-view.enum");
|
|
16
17
|
class WidgetCustomizationRO {
|
|
@@ -43,4 +44,16 @@ __decorate([
|
|
|
43
44
|
(0, class_transformer_1.Expose)(),
|
|
44
45
|
__metadata("design:type", String)
|
|
45
46
|
], WidgetCustomizationRO.prototype, "view", void 0);
|
|
47
|
+
__decorate([
|
|
48
|
+
(0, class_transformer_1.Expose)(),
|
|
49
|
+
__metadata("design:type", String)
|
|
50
|
+
], WidgetCustomizationRO.prototype, "roundness", void 0);
|
|
51
|
+
__decorate([
|
|
52
|
+
(0, class_transformer_1.Expose)(),
|
|
53
|
+
__metadata("design:type", String)
|
|
54
|
+
], WidgetCustomizationRO.prototype, "widgetFontFamily", void 0);
|
|
55
|
+
__decorate([
|
|
56
|
+
(0, class_transformer_1.Expose)(),
|
|
57
|
+
__metadata("design:type", String)
|
|
58
|
+
], WidgetCustomizationRO.prototype, "bgColor", void 0);
|
|
46
59
|
exports.WidgetCustomizationRO = WidgetCustomizationRO;
|