@escapenavigator/types 1.10.146 → 1.10.147
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/profiles/openapi-cancel-booking.dto.d.ts +9 -0
- package/dist/openapi/profiles/openapi-cancel-booking.dto.js +80 -0
- package/dist/openapi/profiles/openapi-create-booking.dto.d.ts +16 -0
- package/dist/openapi/profiles/openapi-create-booking.dto.js +128 -0
- package/dist/openapi/profiles/openapi-profile-booking-details.ro.d.ts +43 -0
- package/dist/openapi/profiles/openapi-profile-booking-details.ro.js +191 -0
- package/dist/openapi/profiles/openapi-profile-booking-list-item.ro.d.ts +15 -0
- package/dist/openapi/profiles/openapi-profile-booking-list-item.ro.js +87 -10
- package/dist/openapi/questrooms/openapi-questroom.ro.d.ts +21 -0
- package/dist/openapi/questrooms/openapi-questroom.ro.js +110 -0
- package/dist/openapi/shared/openapi-error.ro.d.ts +3 -0
- package/dist/openapi/shared/openapi-error.ro.js +23 -0
- package/dist/openapi/slots/openapi-day-schedule.dto.d.ts +1 -1
- package/dist/openapi/slots/openapi-day-schedule.dto.js +21 -4
- package/dist/openapi/slots/openapi-slot-tariff.ro.d.ts +6 -0
- package/dist/openapi/slots/openapi-slot-tariff.ro.js +34 -0
- package/dist/openapi/slots/openapi-week-schedule.dto.js +6 -6
- package/dist/openapi/slots/openapi-widget-slot.ro.d.ts +2 -2
- package/dist/openapi/slots/openapi-widget-slot.ro.js +39 -2
- package/dist/shared/source.enum.d.ts +1 -0
- package/dist/shared/source.enum.js +1 -0
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +2 -2
|
@@ -0,0 +1,110 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
3
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
4
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
5
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
6
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
7
|
+
};
|
|
8
|
+
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
9
|
+
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
|
+
};
|
|
11
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
+
exports.OpenapiQuestroomRO = exports.OpenapiQuestroomLocationRO = void 0;
|
|
13
|
+
/* eslint-disable max-classes-per-file */
|
|
14
|
+
const swagger_1 = require("@nestjs/swagger");
|
|
15
|
+
const class_transformer_1 = require("class-transformer");
|
|
16
|
+
const profile_currency_1 = require("../../profile/enum/profile-currency");
|
|
17
|
+
const questroom_confirm_type_enum_1 = require("../../questroom/enum/questroom-confirm-type.enum");
|
|
18
|
+
class OpenapiQuestroomLocationRO {
|
|
19
|
+
}
|
|
20
|
+
exports.OpenapiQuestroomLocationRO = OpenapiQuestroomLocationRO;
|
|
21
|
+
__decorate([
|
|
22
|
+
(0, swagger_1.ApiProperty)({ example: 12, description: 'Location identifier.' }),
|
|
23
|
+
(0, class_transformer_1.Expose)(),
|
|
24
|
+
__metadata("design:type", Number)
|
|
25
|
+
], OpenapiQuestroomLocationRO.prototype, "id", void 0);
|
|
26
|
+
__decorate([
|
|
27
|
+
(0, swagger_1.ApiProperty)({ nullable: true, example: 'Downtown', description: 'Location name.' }),
|
|
28
|
+
(0, class_transformer_1.Expose)(),
|
|
29
|
+
__metadata("design:type", String)
|
|
30
|
+
], OpenapiQuestroomLocationRO.prototype, "title", void 0);
|
|
31
|
+
__decorate([
|
|
32
|
+
(0, swagger_1.ApiProperty)({ example: 'Main St. 1', description: 'Location address.' }),
|
|
33
|
+
(0, class_transformer_1.Expose)(),
|
|
34
|
+
__metadata("design:type", String)
|
|
35
|
+
], OpenapiQuestroomLocationRO.prototype, "address", void 0);
|
|
36
|
+
class OpenapiQuestroomRO {
|
|
37
|
+
}
|
|
38
|
+
exports.OpenapiQuestroomRO = OpenapiQuestroomRO;
|
|
39
|
+
__decorate([
|
|
40
|
+
(0, swagger_1.ApiProperty)({ example: 123, description: 'Quest room identifier. Use it as `questroomId`.' }),
|
|
41
|
+
(0, class_transformer_1.Expose)(),
|
|
42
|
+
__metadata("design:type", Number)
|
|
43
|
+
], OpenapiQuestroomRO.prototype, "id", void 0);
|
|
44
|
+
__decorate([
|
|
45
|
+
(0, swagger_1.ApiProperty)({ example: 'The Lost Temple', description: 'Quest room title.' }),
|
|
46
|
+
(0, class_transformer_1.Expose)(),
|
|
47
|
+
__metadata("design:type", String)
|
|
48
|
+
], OpenapiQuestroomRO.prototype, "title", void 0);
|
|
49
|
+
__decorate([
|
|
50
|
+
(0, swagger_1.ApiProperty)({ example: 2, description: 'Minimum number of players.' }),
|
|
51
|
+
(0, class_transformer_1.Expose)(),
|
|
52
|
+
__metadata("design:type", Number)
|
|
53
|
+
], OpenapiQuestroomRO.prototype, "playersMin", void 0);
|
|
54
|
+
__decorate([
|
|
55
|
+
(0, swagger_1.ApiProperty)({ example: 6, description: 'Maximum number of players.' }),
|
|
56
|
+
(0, class_transformer_1.Expose)(),
|
|
57
|
+
__metadata("design:type", Number)
|
|
58
|
+
], OpenapiQuestroomRO.prototype, "playersMax", void 0);
|
|
59
|
+
__decorate([
|
|
60
|
+
(0, swagger_1.ApiProperty)({ example: 60, description: 'Game duration in minutes.' }),
|
|
61
|
+
(0, class_transformer_1.Expose)(),
|
|
62
|
+
__metadata("design:type", Number)
|
|
63
|
+
], OpenapiQuestroomRO.prototype, "durationMinutes", void 0);
|
|
64
|
+
__decorate([
|
|
65
|
+
(0, swagger_1.ApiProperty)({ example: 12, description: 'Minimum player age.' }),
|
|
66
|
+
(0, class_transformer_1.Expose)(),
|
|
67
|
+
__metadata("design:type", Number)
|
|
68
|
+
], OpenapiQuestroomRO.prototype, "minAge", void 0);
|
|
69
|
+
__decorate([
|
|
70
|
+
(0, swagger_1.ApiProperty)({
|
|
71
|
+
nullable: true,
|
|
72
|
+
example: 7500,
|
|
73
|
+
description: 'Lowest price across tariffs, in minor currency units.',
|
|
74
|
+
}),
|
|
75
|
+
(0, class_transformer_1.Expose)(),
|
|
76
|
+
__metadata("design:type", Number)
|
|
77
|
+
], OpenapiQuestroomRO.prototype, "minPrice", void 0);
|
|
78
|
+
__decorate([
|
|
79
|
+
(0, swagger_1.ApiProperty)({
|
|
80
|
+
nullable: true,
|
|
81
|
+
example: 12000,
|
|
82
|
+
description: 'Highest price across tariffs, in minor currency units.',
|
|
83
|
+
}),
|
|
84
|
+
(0, class_transformer_1.Expose)(),
|
|
85
|
+
__metadata("design:type", Number)
|
|
86
|
+
], OpenapiQuestroomRO.prototype, "maxPrice", void 0);
|
|
87
|
+
__decorate([
|
|
88
|
+
(0, swagger_1.ApiProperty)({ enum: profile_currency_1.ProfileCurrencyEnum, description: 'Currency of the prices.' }),
|
|
89
|
+
(0, class_transformer_1.Expose)(),
|
|
90
|
+
__metadata("design:type", String)
|
|
91
|
+
], OpenapiQuestroomRO.prototype, "currency", void 0);
|
|
92
|
+
__decorate([
|
|
93
|
+
(0, swagger_1.ApiProperty)({
|
|
94
|
+
enum: questroom_confirm_type_enum_1.QuestroomConfirmTypeEnum,
|
|
95
|
+
description: 'Confirmation mode. `..._default` — bookings are confirmed immediately; `..._confirm_required` / `..._request_first` — a booking is created unconfirmed and must be confirmed via `POST /api/bookings/{orderId}/confirm`.',
|
|
96
|
+
}),
|
|
97
|
+
(0, class_transformer_1.Expose)(),
|
|
98
|
+
__metadata("design:type", String)
|
|
99
|
+
], OpenapiQuestroomRO.prototype, "confirmType", void 0);
|
|
100
|
+
__decorate([
|
|
101
|
+
(0, swagger_1.ApiProperty)({ nullable: true, example: 'https://cdn.example.com/quest.jpg', description: 'Cover photo URL.' }),
|
|
102
|
+
(0, class_transformer_1.Expose)(),
|
|
103
|
+
__metadata("design:type", String)
|
|
104
|
+
], OpenapiQuestroomRO.prototype, "photo", void 0);
|
|
105
|
+
__decorate([
|
|
106
|
+
(0, swagger_1.ApiProperty)({ type: () => OpenapiQuestroomLocationRO, description: 'Location of the quest room.' }),
|
|
107
|
+
(0, class_transformer_1.Expose)(),
|
|
108
|
+
(0, class_transformer_1.Type)(() => OpenapiQuestroomLocationRO),
|
|
109
|
+
__metadata("design:type", OpenapiQuestroomLocationRO)
|
|
110
|
+
], OpenapiQuestroomRO.prototype, "location", void 0);
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
3
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
4
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
5
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
6
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
7
|
+
};
|
|
8
|
+
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
9
|
+
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
|
+
};
|
|
11
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
+
exports.OpenapiErrorRO = void 0;
|
|
13
|
+
const swagger_1 = require("@nestjs/swagger");
|
|
14
|
+
class OpenapiErrorRO {
|
|
15
|
+
}
|
|
16
|
+
exports.OpenapiErrorRO = OpenapiErrorRO;
|
|
17
|
+
__decorate([
|
|
18
|
+
(0, swagger_1.ApiProperty)({
|
|
19
|
+
description: 'Human-readable error message describing what went wrong.',
|
|
20
|
+
example: 'Missing profile API key',
|
|
21
|
+
}),
|
|
22
|
+
__metadata("design:type", String)
|
|
23
|
+
], OpenapiErrorRO.prototype, "message", void 0);
|
|
@@ -10,16 +10,33 @@ var __metadata = (this && this.__metadata) || function (k, v) {
|
|
|
10
10
|
};
|
|
11
11
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
12
|
exports.OpenapiDayScheduleDto = void 0;
|
|
13
|
+
const swagger_1 = require("@nestjs/swagger");
|
|
14
|
+
const class_transformer_1 = require("class-transformer");
|
|
13
15
|
const class_validator_1 = require("class-validator");
|
|
14
16
|
const is_not_blank_1 = require("../../shared/is-not-blank");
|
|
15
17
|
class OpenapiDayScheduleDto {
|
|
16
18
|
}
|
|
17
19
|
exports.OpenapiDayScheduleDto = OpenapiDayScheduleDto;
|
|
18
20
|
__decorate([
|
|
19
|
-
(0,
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
21
|
+
(0, swagger_1.ApiProperty)({
|
|
22
|
+
description: 'Day to fetch, in yyyy-MM-dd format.',
|
|
23
|
+
example: '2026-03-30',
|
|
24
|
+
}),
|
|
23
25
|
(0, is_not_blank_1.IsNotBlank)(),
|
|
24
26
|
__metadata("design:type", String)
|
|
25
27
|
], OpenapiDayScheduleDto.prototype, "date", void 0);
|
|
28
|
+
__decorate([
|
|
29
|
+
(0, swagger_1.ApiProperty)({
|
|
30
|
+
type: String,
|
|
31
|
+
description: 'Comma-separated quest room ids to fetch slots for.',
|
|
32
|
+
example: '123,124',
|
|
33
|
+
}),
|
|
34
|
+
(0, class_transformer_1.Transform)(({ value }) => String(value)
|
|
35
|
+
.split(',')
|
|
36
|
+
.map((part) => Number(part.trim()))
|
|
37
|
+
.filter((id) => Number.isInteger(id) && id > 0)),
|
|
38
|
+
(0, class_validator_1.IsArray)(),
|
|
39
|
+
(0, class_validator_1.ArrayNotEmpty)(),
|
|
40
|
+
(0, class_validator_1.IsInt)({ each: true }),
|
|
41
|
+
__metadata("design:type", Array)
|
|
42
|
+
], OpenapiDayScheduleDto.prototype, "questroomIds", void 0);
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
3
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
4
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
5
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
6
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
7
|
+
};
|
|
8
|
+
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
9
|
+
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
|
+
};
|
|
11
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
+
exports.OpenapiSlotTariffRO = void 0;
|
|
13
|
+
const swagger_1 = require("@nestjs/swagger");
|
|
14
|
+
const class_transformer_1 = require("class-transformer");
|
|
15
|
+
class OpenapiSlotTariffRO {
|
|
16
|
+
}
|
|
17
|
+
exports.OpenapiSlotTariffRO = OpenapiSlotTariffRO;
|
|
18
|
+
__decorate([
|
|
19
|
+
(0, swagger_1.ApiProperty)({
|
|
20
|
+
description: 'Tariff identifier.',
|
|
21
|
+
example: 101,
|
|
22
|
+
}),
|
|
23
|
+
(0, class_transformer_1.Expose)(),
|
|
24
|
+
__metadata("design:type", Number)
|
|
25
|
+
], OpenapiSlotTariffRO.prototype, "id", void 0);
|
|
26
|
+
__decorate([
|
|
27
|
+
(0, swagger_1.ApiProperty)({
|
|
28
|
+
description: 'Price map in minor currency units. Keys depend on the tariff pricing model (e.g. number of players or a "default" key).',
|
|
29
|
+
example: { '2': 7500, '3': 9000, '4': 10000 },
|
|
30
|
+
additionalProperties: { type: 'number' },
|
|
31
|
+
}),
|
|
32
|
+
(0, class_transformer_1.Expose)(),
|
|
33
|
+
__metadata("design:type", Object)
|
|
34
|
+
], OpenapiSlotTariffRO.prototype, "price", void 0);
|
|
@@ -17,18 +17,18 @@ class OpenapiWeekScheduleDto {
|
|
|
17
17
|
exports.OpenapiWeekScheduleDto = OpenapiWeekScheduleDto;
|
|
18
18
|
__decorate([
|
|
19
19
|
(0, swagger_1.ApiProperty)({
|
|
20
|
-
|
|
21
|
-
maximum: 10000,
|
|
22
|
-
title: 'Page',
|
|
23
|
-
exclusiveMaximum: true,
|
|
24
|
-
exclusiveMinimum: true,
|
|
20
|
+
description: 'Quest room identifier to fetch the schedule for.',
|
|
25
21
|
format: 'int32',
|
|
26
|
-
|
|
22
|
+
example: 123,
|
|
27
23
|
}),
|
|
28
24
|
(0, is_not_blank_1.IsNotBlank)(),
|
|
29
25
|
__metadata("design:type", Number)
|
|
30
26
|
], OpenapiWeekScheduleDto.prototype, "questroomId", void 0);
|
|
31
27
|
__decorate([
|
|
28
|
+
(0, swagger_1.ApiProperty)({
|
|
29
|
+
description: 'First day of the week to fetch, in yyyy-MM-dd format. Returns 7 days.',
|
|
30
|
+
example: '2026-03-30',
|
|
31
|
+
}),
|
|
32
32
|
(0, is_not_blank_1.IsNotBlank)(),
|
|
33
33
|
__metadata("design:type", String)
|
|
34
34
|
], OpenapiWeekScheduleDto.prototype, "date", void 0);
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { OpenapiBokingRuleRO } from '../shared/openapi-booking-rule.ro';
|
|
2
|
-
import {
|
|
2
|
+
import { OpenapiSlotTariffRO } from './openapi-slot-tariff.ro';
|
|
3
3
|
export type SlotType = 'bookeo' | 'crm' | 'myerp' | 'kvestadmin';
|
|
4
4
|
export declare class OpenapiSlotRO {
|
|
5
5
|
type: SlotType;
|
|
@@ -15,7 +15,7 @@ export declare class OpenapiSlotRO {
|
|
|
15
15
|
numSeatsAvailable?: number;
|
|
16
16
|
discount?: number;
|
|
17
17
|
onlyPhone?: boolean;
|
|
18
|
-
tariff?:
|
|
18
|
+
tariff?: OpenapiSlotTariffRO;
|
|
19
19
|
status?: 'bussy' | 'call' | 'free' | 'hold' | 'selected' | 'done' | 'no-resources';
|
|
20
20
|
rule?: OpenapiBokingRuleRO;
|
|
21
21
|
privateEvent?: boolean;
|
|
@@ -15,7 +15,7 @@ exports.OpenapiSlotRO = void 0;
|
|
|
15
15
|
const swagger_1 = require("@nestjs/swagger");
|
|
16
16
|
const class_transformer_1 = require("class-transformer");
|
|
17
17
|
const openapi_booking_rule_ro_1 = require("../shared/openapi-booking-rule.ro");
|
|
18
|
-
const
|
|
18
|
+
const openapi_slot_tariff_ro_1 = require("./openapi-slot-tariff.ro");
|
|
19
19
|
var SType;
|
|
20
20
|
(function (SType) {
|
|
21
21
|
SType["BOOKEO"] = "bookeo";
|
|
@@ -106,30 +106,67 @@ __decorate([
|
|
|
106
106
|
__metadata("design:type", String)
|
|
107
107
|
], OpenapiSlotRO.prototype, "date", void 0);
|
|
108
108
|
__decorate([
|
|
109
|
+
(0, swagger_1.ApiProperty)({
|
|
110
|
+
description: 'Slot end time (HH:mm).',
|
|
111
|
+
required: false,
|
|
112
|
+
example: '20:00',
|
|
113
|
+
}),
|
|
109
114
|
(0, class_transformer_1.Expose)(),
|
|
110
115
|
__metadata("design:type", String)
|
|
111
116
|
], OpenapiSlotRO.prototype, "end", void 0);
|
|
112
117
|
__decorate([
|
|
118
|
+
(0, swagger_1.ApiProperty)({
|
|
119
|
+
description: 'Number of seats still available for booking.',
|
|
120
|
+
required: false,
|
|
121
|
+
example: 4,
|
|
122
|
+
}),
|
|
113
123
|
(0, class_transformer_1.Expose)(),
|
|
114
124
|
__metadata("design:type", Number)
|
|
115
125
|
], OpenapiSlotRO.prototype, "numSeatsAvailable", void 0);
|
|
116
126
|
__decorate([
|
|
127
|
+
(0, swagger_1.ApiProperty)({
|
|
128
|
+
description: 'Discount applied to the slot, in percent.',
|
|
129
|
+
required: false,
|
|
130
|
+
example: 10,
|
|
131
|
+
}),
|
|
117
132
|
(0, class_transformer_1.Expose)(),
|
|
118
133
|
__metadata("design:type", Number)
|
|
119
134
|
], OpenapiSlotRO.prototype, "discount", void 0);
|
|
120
135
|
__decorate([
|
|
136
|
+
(0, swagger_1.ApiProperty)({
|
|
137
|
+
description: 'When true, the slot can only be booked by phone (no online booking).',
|
|
138
|
+
required: false,
|
|
139
|
+
example: false,
|
|
140
|
+
}),
|
|
121
141
|
(0, class_transformer_1.Expose)(),
|
|
122
142
|
__metadata("design:type", Boolean)
|
|
123
143
|
], OpenapiSlotRO.prototype, "onlyPhone", void 0);
|
|
124
144
|
__decorate([
|
|
145
|
+
(0, swagger_1.ApiProperty)({
|
|
146
|
+
description: 'Tariff details applied to this slot.',
|
|
147
|
+
type: () => openapi_slot_tariff_ro_1.OpenapiSlotTariffRO,
|
|
148
|
+
required: false,
|
|
149
|
+
}),
|
|
125
150
|
(0, class_transformer_1.Expose)(),
|
|
126
|
-
|
|
151
|
+
(0, class_transformer_1.Type)(() => openapi_slot_tariff_ro_1.OpenapiSlotTariffRO),
|
|
152
|
+
__metadata("design:type", openapi_slot_tariff_ro_1.OpenapiSlotTariffRO)
|
|
127
153
|
], OpenapiSlotRO.prototype, "tariff", void 0);
|
|
128
154
|
__decorate([
|
|
155
|
+
(0, swagger_1.ApiProperty)({
|
|
156
|
+
description: 'Slot availability status. `bussy` is the legacy spelling of "busy".',
|
|
157
|
+
required: false,
|
|
158
|
+
enum: ['bussy', 'call', 'free', 'hold', 'selected', 'done', 'no-resources'],
|
|
159
|
+
example: 'free',
|
|
160
|
+
}),
|
|
129
161
|
(0, class_transformer_1.Expose)(),
|
|
130
162
|
__metadata("design:type", String)
|
|
131
163
|
], OpenapiSlotRO.prototype, "status", void 0);
|
|
132
164
|
__decorate([
|
|
165
|
+
(0, swagger_1.ApiProperty)({
|
|
166
|
+
description: 'Booking rule (prepayment and cancellation policy) applied to this slot.',
|
|
167
|
+
type: () => openapi_booking_rule_ro_1.OpenapiBokingRuleRO,
|
|
168
|
+
required: false,
|
|
169
|
+
}),
|
|
133
170
|
(0, class_transformer_1.Expose)(),
|
|
134
171
|
(0, class_transformer_1.Type)(() => openapi_booking_rule_ro_1.OpenapiBokingRuleRO),
|
|
135
172
|
__metadata("design:type", openapi_booking_rule_ro_1.OpenapiBokingRuleRO)
|
|
@@ -10,6 +10,7 @@ var SourceEnum;
|
|
|
10
10
|
SourceEnum["nowEscape"] = "nowEscape";
|
|
11
11
|
SourceEnum["morty"] = "morty";
|
|
12
12
|
SourceEnum["exportded"] = "exported";
|
|
13
|
+
SourceEnum["API"] = "api";
|
|
13
14
|
// ru
|
|
14
15
|
SourceEnum["GILDIA_KVESTOV"] = "gildia-kvestov";
|
|
15
16
|
SourceEnum["QUEST_INFO"] = "quest-info";
|