@escapenavigator/types 1.10.88 → 1.10.89
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/orders/openapi-confirm-without-payment-many.dto.d.ts +3 -0
- package/dist/openapi/orders/openapi-confirm-without-payment-many.dto.js +24 -0
- package/dist/openapi/orders/openapi-order.ro.d.ts +1 -0
- package/dist/openapi/orders/openapi-order.ro.js +4 -0
- package/dist/openapi/shared/openapi-questroom.ro.d.ts +0 -2
- package/dist/openapi/shared/openapi-questroom.ro.js +0 -4
- package/dist/openapi/widget/openapi-widget-info.ro.d.ts +1 -0
- package/dist/openapi/widget/openapi-widget-info.ro.js +4 -0
- 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/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +2 -2
|
@@ -0,0 +1,24 @@
|
|
|
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.OpenapiConfirmWithoutPaymentManyDto = void 0;
|
|
13
|
+
const class_transformer_1 = require("class-transformer");
|
|
14
|
+
const class_validator_1 = require("class-validator");
|
|
15
|
+
class OpenapiConfirmWithoutPaymentManyDto {
|
|
16
|
+
}
|
|
17
|
+
__decorate([
|
|
18
|
+
(0, class_validator_1.IsArray)(),
|
|
19
|
+
(0, class_validator_1.ArrayNotEmpty)(),
|
|
20
|
+
(0, class_validator_1.IsString)({ each: true }),
|
|
21
|
+
(0, class_transformer_1.Expose)(),
|
|
22
|
+
__metadata("design:type", Array)
|
|
23
|
+
], OpenapiConfirmWithoutPaymentManyDto.prototype, "tokens", void 0);
|
|
24
|
+
exports.OpenapiConfirmWithoutPaymentManyDto = OpenapiConfirmWithoutPaymentManyDto;
|
|
@@ -166,6 +166,10 @@ __decorate([
|
|
|
166
166
|
(0, class_transformer_1.Expose)(),
|
|
167
167
|
__metadata("design:type", String)
|
|
168
168
|
], OpenapiOrderRO.prototype, "utcDate", void 0);
|
|
169
|
+
__decorate([
|
|
170
|
+
(0, class_transformer_1.Expose)(),
|
|
171
|
+
__metadata("design:type", String)
|
|
172
|
+
], OpenapiOrderRO.prototype, "mode", void 0);
|
|
169
173
|
__decorate([
|
|
170
174
|
(0, class_transformer_1.Expose)(),
|
|
171
175
|
(0, class_transformer_1.Type)(() => openapi_client_ro_1.OpenapiClientRO),
|
|
@@ -34,7 +34,6 @@ export declare const transformQuestroom: ({ value, language, }: {
|
|
|
34
34
|
modes: Mode[];
|
|
35
35
|
minAge: number;
|
|
36
36
|
flexPlayersSelect: boolean;
|
|
37
|
-
canBookFewSlots?: boolean;
|
|
38
37
|
};
|
|
39
38
|
declare class QuestroomLocale {
|
|
40
39
|
title: string;
|
|
@@ -84,7 +83,6 @@ export declare class OpenapiQuestroomRO {
|
|
|
84
83
|
location: Location;
|
|
85
84
|
locales: QuestroomLocale[];
|
|
86
85
|
flexPlayersSelect: boolean;
|
|
87
|
-
canBookFewSlots?: boolean;
|
|
88
86
|
}
|
|
89
87
|
export declare class QuestroomRow {
|
|
90
88
|
questroom: OpenapiQuestroomRO;
|
|
@@ -205,10 +205,6 @@ __decorate([
|
|
|
205
205
|
(0, class_transformer_1.Expose)(),
|
|
206
206
|
__metadata("design:type", Boolean)
|
|
207
207
|
], OpenapiQuestroomRO.prototype, "flexPlayersSelect", void 0);
|
|
208
|
-
__decorate([
|
|
209
|
-
(0, class_transformer_1.Expose)(),
|
|
210
|
-
__metadata("design:type", Boolean)
|
|
211
|
-
], OpenapiQuestroomRO.prototype, "canBookFewSlots", void 0);
|
|
212
208
|
exports.OpenapiQuestroomRO = OpenapiQuestroomRO;
|
|
213
209
|
class QuestroomRow {
|
|
214
210
|
}
|
|
@@ -122,6 +122,10 @@ __decorate([
|
|
|
122
122
|
(0, class_transformer_1.Expose)(),
|
|
123
123
|
__metadata("design:type", Array)
|
|
124
124
|
], Profile.prototype, "availableLanguages", void 0);
|
|
125
|
+
__decorate([
|
|
126
|
+
(0, class_transformer_1.Expose)(),
|
|
127
|
+
__metadata("design:type", Boolean)
|
|
128
|
+
], Profile.prototype, "canBookFewSlots", void 0);
|
|
125
129
|
__decorate([
|
|
126
130
|
(0, class_transformer_1.Expose)(),
|
|
127
131
|
__metadata("design:type", String)
|
|
@@ -148,6 +148,10 @@ __decorate([
|
|
|
148
148
|
(0, class_transformer_1.Expose)(),
|
|
149
149
|
__metadata("design:type", Boolean)
|
|
150
150
|
], AdminProfileRO.prototype, "nowEscape", void 0);
|
|
151
|
+
__decorate([
|
|
152
|
+
(0, class_transformer_1.Expose)(),
|
|
153
|
+
__metadata("design:type", Boolean)
|
|
154
|
+
], AdminProfileRO.prototype, "canBookFewSlots", void 0);
|
|
151
155
|
__decorate([
|
|
152
156
|
(0, class_transformer_1.Expose)(),
|
|
153
157
|
__metadata("design:type", String)
|
|
@@ -86,6 +86,11 @@ __decorate([
|
|
|
86
86
|
(0, class_validator_1.IsOptional)(),
|
|
87
87
|
__metadata("design:type", Boolean)
|
|
88
88
|
], CreateProfileDto.prototype, "nowEscape", void 0);
|
|
89
|
+
__decorate([
|
|
90
|
+
(0, class_validator_1.IsOptional)(),
|
|
91
|
+
(0, class_transformer_1.Expose)(),
|
|
92
|
+
__metadata("design:type", Boolean)
|
|
93
|
+
], CreateProfileDto.prototype, "canBookFewSlots", void 0);
|
|
89
94
|
__decorate([
|
|
90
95
|
(0, class_validator_1.IsOptional)(),
|
|
91
96
|
(0, class_validator_1.IsEnum)(profile_step_enum_1.ProfileStatusEnum),
|