@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.
@@ -0,0 +1,3 @@
1
+ export declare class OpenapiConfirmWithoutPaymentManyDto {
2
+ tokens: string[];
3
+ }
@@ -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;
@@ -50,6 +50,7 @@ export declare class OpenapiOrderRO extends QuestroomRow {
50
50
  players: number;
51
51
  children: number;
52
52
  utcDate: string;
53
+ mode: string;
53
54
  client: OpenapiClientRO;
54
55
  token: string;
55
56
  currency: ProfileCurrencyEnum;
@@ -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
  }
@@ -40,6 +40,7 @@ declare class Profile {
40
40
  bookingFields: WidgetBookingFiledEnum[];
41
41
  agreementLink: string;
42
42
  availableLanguages: Languages[];
43
+ canBookFewSlots: boolean;
43
44
  language: Languages;
44
45
  currency?: ProfileCurrencyEnum;
45
46
  }
@@ -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)
@@ -43,6 +43,7 @@ export declare class AdminProfileRO {
43
43
  logo: string;
44
44
  tags: ProfileTagEnum[];
45
45
  nowEscape: boolean;
46
+ canBookFewSlots: boolean;
46
47
  mainEmail: string;
47
48
  secondaryEmails: string[];
48
49
  site: 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)
@@ -22,6 +22,7 @@ export declare class CreateProfileDto {
22
22
  phoneForCustomers: string;
23
23
  logo: string;
24
24
  nowEscape: boolean;
25
+ canBookFewSlots: boolean;
25
26
  status: ProfileStatusEnum;
26
27
  mainEmail: string;
27
28
  secondaryEmails: 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),