@escapenavigator/types 1.10.70 → 1.10.73
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/google-places/google-places-status.enum.d.ts +2 -1
- package/dist/google-places/google-places-status.enum.js +1 -0
- package/dist/location/update-location-for-admin.dto.d.ts +11 -0
- package/dist/location/update-location-for-admin.dto.js +79 -0
- package/dist/questroom/create-questroom-admin.dto.d.ts +19 -0
- package/dist/questroom/create-questroom-admin.dto.js +119 -0
- package/dist/questroom/questrooms-list-admin.ro.d.ts +13 -0
- package/dist/questroom/questrooms-list-admin.ro.js +45 -0
- package/dist/questroom/update-questroom-admin.dto.d.ts +5 -0
- package/dist/questroom/update-questroom-admin.dto.js +8 -0
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +2 -2
|
@@ -6,4 +6,5 @@ var GooglePlacesStatusEnum;
|
|
|
6
6
|
GooglePlacesStatusEnum["NEW"] = "new";
|
|
7
7
|
GooglePlacesStatusEnum["CONFLICT"] = "conflict";
|
|
8
8
|
GooglePlacesStatusEnum["RESOLVED"] = "resolved";
|
|
9
|
+
GooglePlacesStatusEnum["NOT_ESCAPE"] = "not_escape";
|
|
9
10
|
})(GooglePlacesStatusEnum = exports.GooglePlacesStatusEnum || (exports.GooglePlacesStatusEnum = {}));
|
|
@@ -0,0 +1,79 @@
|
|
|
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.UpdateLocationForAdminDto = void 0;
|
|
13
|
+
const class_transformer_1 = require("class-transformer");
|
|
14
|
+
const class_validator_1 = require("class-validator");
|
|
15
|
+
const is_not_blank_1 = require("../shared/is-not-blank");
|
|
16
|
+
class UpdateLocationForAdminDto {
|
|
17
|
+
}
|
|
18
|
+
__decorate([
|
|
19
|
+
(0, class_validator_1.IsOptional)(),
|
|
20
|
+
(0, is_not_blank_1.IsNotBlank)(),
|
|
21
|
+
(0, class_transformer_1.Expose)(),
|
|
22
|
+
__metadata("design:type", String)
|
|
23
|
+
], UpdateLocationForAdminDto.prototype, "address", void 0);
|
|
24
|
+
__decorate([
|
|
25
|
+
(0, class_validator_1.IsOptional)(),
|
|
26
|
+
(0, is_not_blank_1.IsNotBlank)(),
|
|
27
|
+
(0, class_transformer_1.Expose)(),
|
|
28
|
+
__metadata("design:type", String)
|
|
29
|
+
], UpdateLocationForAdminDto.prototype, "phone", void 0);
|
|
30
|
+
__decorate([
|
|
31
|
+
(0, class_validator_1.IsOptional)(),
|
|
32
|
+
(0, class_validator_1.IsString)(),
|
|
33
|
+
(0, class_validator_1.MaxLength)(2000),
|
|
34
|
+
(0, class_transformer_1.Expose)(),
|
|
35
|
+
__metadata("design:type", String)
|
|
36
|
+
], UpdateLocationForAdminDto.prototype, "howToFind", void 0);
|
|
37
|
+
__decorate([
|
|
38
|
+
(0, class_validator_1.IsOptional)(),
|
|
39
|
+
(0, class_validator_1.IsBoolean)(),
|
|
40
|
+
(0, class_transformer_1.Transform)(({ value }) => value || false),
|
|
41
|
+
(0, class_transformer_1.Expose)(),
|
|
42
|
+
__metadata("design:type", Boolean)
|
|
43
|
+
], UpdateLocationForAdminDto.prototype, "wifi", void 0);
|
|
44
|
+
__decorate([
|
|
45
|
+
(0, class_validator_1.IsOptional)(),
|
|
46
|
+
(0, class_validator_1.IsBoolean)(),
|
|
47
|
+
(0, class_transformer_1.Transform)(({ value }) => value || false),
|
|
48
|
+
(0, class_transformer_1.Expose)(),
|
|
49
|
+
__metadata("design:type", Boolean)
|
|
50
|
+
], UpdateLocationForAdminDto.prototype, "wardrobe", void 0);
|
|
51
|
+
__decorate([
|
|
52
|
+
(0, class_validator_1.IsOptional)(),
|
|
53
|
+
(0, class_validator_1.IsBoolean)(),
|
|
54
|
+
(0, class_transformer_1.Transform)(({ value }) => value || false),
|
|
55
|
+
(0, class_transformer_1.Expose)(),
|
|
56
|
+
__metadata("design:type", Boolean)
|
|
57
|
+
], UpdateLocationForAdminDto.prototype, "freeParking", void 0);
|
|
58
|
+
__decorate([
|
|
59
|
+
(0, class_validator_1.IsOptional)(),
|
|
60
|
+
(0, class_validator_1.IsBoolean)(),
|
|
61
|
+
(0, class_transformer_1.Transform)(({ value }) => value || false),
|
|
62
|
+
(0, class_transformer_1.Expose)(),
|
|
63
|
+
__metadata("design:type", Boolean)
|
|
64
|
+
], UpdateLocationForAdminDto.prototype, "parking", void 0);
|
|
65
|
+
__decorate([
|
|
66
|
+
(0, class_validator_1.IsOptional)(),
|
|
67
|
+
(0, class_validator_1.IsBoolean)(),
|
|
68
|
+
(0, class_transformer_1.Transform)(({ value }) => value || false),
|
|
69
|
+
(0, class_transformer_1.Expose)(),
|
|
70
|
+
__metadata("design:type", Boolean)
|
|
71
|
+
], UpdateLocationForAdminDto.prototype, "waitingArea", void 0);
|
|
72
|
+
__decorate([
|
|
73
|
+
(0, class_validator_1.ValidateIf)((o) => o.waitingArea),
|
|
74
|
+
(0, class_validator_1.IsOptional)(),
|
|
75
|
+
(0, class_validator_1.IsPositive)(),
|
|
76
|
+
(0, class_transformer_1.Expose)(),
|
|
77
|
+
__metadata("design:type", Number)
|
|
78
|
+
], UpdateLocationForAdminDto.prototype, "waitingAreaSize", void 0);
|
|
79
|
+
exports.UpdateLocationForAdminDto = UpdateLocationForAdminDto;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { TagsEnum } from '../shared/enum/tags.enum';
|
|
2
|
+
import { QuestroomTypeEnum } from './enum/questroom-type.enum';
|
|
3
|
+
export declare class CreateQuestroomAdminDto {
|
|
4
|
+
title: string;
|
|
5
|
+
video?: string;
|
|
6
|
+
photo: string;
|
|
7
|
+
photos: string[];
|
|
8
|
+
teaser: string;
|
|
9
|
+
legend?: string;
|
|
10
|
+
questroomTags: TagsEnum[];
|
|
11
|
+
locationId: number;
|
|
12
|
+
type: QuestroomTypeEnum;
|
|
13
|
+
difficult: number;
|
|
14
|
+
fear: number;
|
|
15
|
+
minAge: number;
|
|
16
|
+
time: number;
|
|
17
|
+
playersMin: number;
|
|
18
|
+
playersMax: number;
|
|
19
|
+
}
|
|
@@ -0,0 +1,119 @@
|
|
|
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.CreateQuestroomAdminDto = void 0;
|
|
13
|
+
/* eslint-disable max-classes-per-file */
|
|
14
|
+
const class_transformer_1 = require("class-transformer");
|
|
15
|
+
const class_validator_1 = require("class-validator");
|
|
16
|
+
const tags_enum_1 = require("../shared/enum/tags.enum");
|
|
17
|
+
const is_not_blank_1 = require("../shared/is-not-blank");
|
|
18
|
+
const questroom_type_enum_1 = require("./enum/questroom-type.enum");
|
|
19
|
+
class CreateQuestroomAdminDto {
|
|
20
|
+
}
|
|
21
|
+
__decorate([
|
|
22
|
+
(0, is_not_blank_1.IsNotBlank)(),
|
|
23
|
+
(0, class_transformer_1.Expose)(),
|
|
24
|
+
__metadata("design:type", String)
|
|
25
|
+
], CreateQuestroomAdminDto.prototype, "title", void 0);
|
|
26
|
+
__decorate([
|
|
27
|
+
(0, class_validator_1.IsOptional)(),
|
|
28
|
+
(0, class_validator_1.IsString)(),
|
|
29
|
+
(0, class_transformer_1.Expose)(),
|
|
30
|
+
__metadata("design:type", String)
|
|
31
|
+
], CreateQuestroomAdminDto.prototype, "video", void 0);
|
|
32
|
+
__decorate([
|
|
33
|
+
(0, class_validator_1.ValidateIf)((o) => !o.closed),
|
|
34
|
+
(0, is_not_blank_1.IsNotBlank)(),
|
|
35
|
+
(0, class_transformer_1.Expose)(),
|
|
36
|
+
__metadata("design:type", String)
|
|
37
|
+
], CreateQuestroomAdminDto.prototype, "photo", void 0);
|
|
38
|
+
__decorate([
|
|
39
|
+
(0, class_validator_1.IsArray)(),
|
|
40
|
+
(0, class_transformer_1.Transform)(({ value }) => ((value === null || value === void 0 ? void 0 : value.length) ? value : [])),
|
|
41
|
+
(0, class_transformer_1.Expose)(),
|
|
42
|
+
__metadata("design:type", Array)
|
|
43
|
+
], CreateQuestroomAdminDto.prototype, "photos", void 0);
|
|
44
|
+
__decorate([
|
|
45
|
+
(0, class_validator_1.IsOptional)(),
|
|
46
|
+
(0, class_validator_1.IsString)(),
|
|
47
|
+
(0, class_validator_1.MaxLength)(1000),
|
|
48
|
+
(0, class_transformer_1.Expose)(),
|
|
49
|
+
__metadata("design:type", String)
|
|
50
|
+
], CreateQuestroomAdminDto.prototype, "teaser", void 0);
|
|
51
|
+
__decorate([
|
|
52
|
+
(0, class_validator_1.IsOptional)(),
|
|
53
|
+
(0, class_validator_1.IsString)(),
|
|
54
|
+
(0, class_transformer_1.Expose)(),
|
|
55
|
+
__metadata("design:type", String)
|
|
56
|
+
], CreateQuestroomAdminDto.prototype, "legend", void 0);
|
|
57
|
+
__decorate([
|
|
58
|
+
(0, class_validator_1.ValidateIf)((o) => !o.closed),
|
|
59
|
+
(0, class_validator_1.IsArray)(),
|
|
60
|
+
(0, class_validator_1.ArrayMinSize)(1),
|
|
61
|
+
(0, class_validator_1.ArrayMaxSize)(10),
|
|
62
|
+
(0, class_transformer_1.Transform)(({ value }) => ((value === null || value === void 0 ? void 0 : value.length) ? value : [tags_enum_1.TagsEnum.ADVENTURE])),
|
|
63
|
+
(0, class_transformer_1.Expose)(),
|
|
64
|
+
__metadata("design:type", Array)
|
|
65
|
+
], CreateQuestroomAdminDto.prototype, "questroomTags", void 0);
|
|
66
|
+
__decorate([
|
|
67
|
+
(0, class_validator_1.IsPositive)(),
|
|
68
|
+
(0, class_transformer_1.Expose)(),
|
|
69
|
+
__metadata("design:type", Number)
|
|
70
|
+
], CreateQuestroomAdminDto.prototype, "locationId", void 0);
|
|
71
|
+
__decorate([
|
|
72
|
+
(0, class_validator_1.IsEnum)(questroom_type_enum_1.QuestroomTypeEnum),
|
|
73
|
+
(0, class_transformer_1.Transform)(({ value }) => value || questroom_type_enum_1.QuestroomTypeEnum.ESCAPE),
|
|
74
|
+
(0, class_transformer_1.Expose)(),
|
|
75
|
+
__metadata("design:type", String)
|
|
76
|
+
], CreateQuestroomAdminDto.prototype, "type", void 0);
|
|
77
|
+
__decorate([
|
|
78
|
+
(0, class_validator_1.ValidateIf)((o) => !o.closed),
|
|
79
|
+
(0, class_validator_1.IsPositive)(),
|
|
80
|
+
(0, class_validator_1.Max)(6),
|
|
81
|
+
(0, class_validator_1.Min)(1),
|
|
82
|
+
(0, class_transformer_1.Transform)(({ value }) => value || 6),
|
|
83
|
+
(0, class_transformer_1.Expose)(),
|
|
84
|
+
__metadata("design:type", Number)
|
|
85
|
+
], CreateQuestroomAdminDto.prototype, "difficult", void 0);
|
|
86
|
+
__decorate([
|
|
87
|
+
(0, class_validator_1.ValidateIf)((o) => !o.closed),
|
|
88
|
+
(0, class_validator_1.IsPositive)(),
|
|
89
|
+
(0, class_validator_1.Max)(5),
|
|
90
|
+
(0, class_validator_1.Min)(1),
|
|
91
|
+
(0, class_transformer_1.Transform)(({ value }) => value || 0),
|
|
92
|
+
(0, class_transformer_1.Expose)(),
|
|
93
|
+
__metadata("design:type", Number)
|
|
94
|
+
], CreateQuestroomAdminDto.prototype, "fear", void 0);
|
|
95
|
+
__decorate([
|
|
96
|
+
(0, class_validator_1.ValidateIf)((o) => !o.closed),
|
|
97
|
+
(0, class_validator_1.IsInt)(),
|
|
98
|
+
(0, class_transformer_1.Transform)(({ value }) => value || 12),
|
|
99
|
+
(0, class_transformer_1.Expose)(),
|
|
100
|
+
__metadata("design:type", Number)
|
|
101
|
+
], CreateQuestroomAdminDto.prototype, "minAge", void 0);
|
|
102
|
+
__decorate([
|
|
103
|
+
(0, class_validator_1.ValidateIf)((o) => !o.closed),
|
|
104
|
+
(0, class_validator_1.IsPositive)(),
|
|
105
|
+
(0, class_transformer_1.Transform)(({ value }) => value || 60),
|
|
106
|
+
(0, class_transformer_1.Expose)(),
|
|
107
|
+
__metadata("design:type", Number)
|
|
108
|
+
], CreateQuestroomAdminDto.prototype, "time", void 0);
|
|
109
|
+
__decorate([
|
|
110
|
+
(0, class_validator_1.IsPositive)(),
|
|
111
|
+
(0, class_transformer_1.Expose)(),
|
|
112
|
+
__metadata("design:type", Number)
|
|
113
|
+
], CreateQuestroomAdminDto.prototype, "playersMin", void 0);
|
|
114
|
+
__decorate([
|
|
115
|
+
(0, class_validator_1.IsPositive)(),
|
|
116
|
+
(0, class_transformer_1.Expose)(),
|
|
117
|
+
__metadata("design:type", Number)
|
|
118
|
+
], CreateQuestroomAdminDto.prototype, "playersMax", void 0);
|
|
119
|
+
exports.CreateQuestroomAdminDto = CreateQuestroomAdminDto;
|
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
import { ProfileStatusEnum } from '../profile/enum/profile-step.enum';
|
|
2
|
+
import { TagsEnum } from '../shared/enum/tags.enum';
|
|
3
|
+
import { QuestroomTypeEnum } from './enum/questroom-type.enum';
|
|
2
4
|
declare class ProfileRO {
|
|
3
5
|
country: string;
|
|
4
6
|
title: string;
|
|
@@ -8,7 +10,9 @@ declare class CityRO {
|
|
|
8
10
|
title: string;
|
|
9
11
|
}
|
|
10
12
|
declare class LocationRO {
|
|
13
|
+
id: number;
|
|
11
14
|
cityId: number;
|
|
15
|
+
address: string;
|
|
12
16
|
city: CityRO;
|
|
13
17
|
}
|
|
14
18
|
declare class MetaRO {
|
|
@@ -28,8 +32,17 @@ export declare class AdminQuestroomsListRO {
|
|
|
28
32
|
closed: boolean;
|
|
29
33
|
slug: string;
|
|
30
34
|
photo: string;
|
|
35
|
+
photos: string[];
|
|
31
36
|
teaser: string;
|
|
32
37
|
navigatorReviewId: number;
|
|
38
|
+
questroomTags: TagsEnum[];
|
|
39
|
+
type: QuestroomTypeEnum;
|
|
40
|
+
difficult: number;
|
|
41
|
+
fear: number;
|
|
42
|
+
minAge: number;
|
|
43
|
+
time: number;
|
|
44
|
+
playersMin: number;
|
|
45
|
+
playersMax: number;
|
|
33
46
|
profile: ProfileRO;
|
|
34
47
|
location: LocationRO;
|
|
35
48
|
meta: MetaRO;
|
|
@@ -14,6 +14,7 @@ exports.AdminQuestroomsListRO = void 0;
|
|
|
14
14
|
// questroom.ro.ts
|
|
15
15
|
const class_transformer_1 = require("class-transformer");
|
|
16
16
|
const profile_step_enum_1 = require("../profile/enum/profile-step.enum");
|
|
17
|
+
const questroom_type_enum_1 = require("./enum/questroom-type.enum");
|
|
17
18
|
class ProfileRO {
|
|
18
19
|
}
|
|
19
20
|
__decorate([
|
|
@@ -36,10 +37,18 @@ __decorate([
|
|
|
36
37
|
], CityRO.prototype, "title", void 0);
|
|
37
38
|
class LocationRO {
|
|
38
39
|
}
|
|
40
|
+
__decorate([
|
|
41
|
+
(0, class_transformer_1.Expose)(),
|
|
42
|
+
__metadata("design:type", Number)
|
|
43
|
+
], LocationRO.prototype, "id", void 0);
|
|
39
44
|
__decorate([
|
|
40
45
|
(0, class_transformer_1.Expose)(),
|
|
41
46
|
__metadata("design:type", Number)
|
|
42
47
|
], LocationRO.prototype, "cityId", void 0);
|
|
48
|
+
__decorate([
|
|
49
|
+
(0, class_transformer_1.Expose)(),
|
|
50
|
+
__metadata("design:type", String)
|
|
51
|
+
], LocationRO.prototype, "address", void 0);
|
|
43
52
|
__decorate([
|
|
44
53
|
(0, class_transformer_1.Type)(() => CityRO),
|
|
45
54
|
(0, class_transformer_1.Expose)(),
|
|
@@ -100,6 +109,10 @@ __decorate([
|
|
|
100
109
|
(0, class_transformer_1.Expose)(),
|
|
101
110
|
__metadata("design:type", String)
|
|
102
111
|
], AdminQuestroomsListRO.prototype, "photo", void 0);
|
|
112
|
+
__decorate([
|
|
113
|
+
(0, class_transformer_1.Expose)(),
|
|
114
|
+
__metadata("design:type", Array)
|
|
115
|
+
], AdminQuestroomsListRO.prototype, "photos", void 0);
|
|
103
116
|
__decorate([
|
|
104
117
|
(0, class_transformer_1.Expose)(),
|
|
105
118
|
__metadata("design:type", String)
|
|
@@ -108,6 +121,38 @@ __decorate([
|
|
|
108
121
|
(0, class_transformer_1.Expose)(),
|
|
109
122
|
__metadata("design:type", Number)
|
|
110
123
|
], AdminQuestroomsListRO.prototype, "navigatorReviewId", void 0);
|
|
124
|
+
__decorate([
|
|
125
|
+
(0, class_transformer_1.Expose)(),
|
|
126
|
+
__metadata("design:type", Array)
|
|
127
|
+
], AdminQuestroomsListRO.prototype, "questroomTags", void 0);
|
|
128
|
+
__decorate([
|
|
129
|
+
(0, class_transformer_1.Expose)(),
|
|
130
|
+
__metadata("design:type", String)
|
|
131
|
+
], AdminQuestroomsListRO.prototype, "type", void 0);
|
|
132
|
+
__decorate([
|
|
133
|
+
(0, class_transformer_1.Expose)(),
|
|
134
|
+
__metadata("design:type", Number)
|
|
135
|
+
], AdminQuestroomsListRO.prototype, "difficult", void 0);
|
|
136
|
+
__decorate([
|
|
137
|
+
(0, class_transformer_1.Expose)(),
|
|
138
|
+
__metadata("design:type", Number)
|
|
139
|
+
], AdminQuestroomsListRO.prototype, "fear", void 0);
|
|
140
|
+
__decorate([
|
|
141
|
+
(0, class_transformer_1.Expose)(),
|
|
142
|
+
__metadata("design:type", Number)
|
|
143
|
+
], AdminQuestroomsListRO.prototype, "minAge", void 0);
|
|
144
|
+
__decorate([
|
|
145
|
+
(0, class_transformer_1.Expose)(),
|
|
146
|
+
__metadata("design:type", Number)
|
|
147
|
+
], AdminQuestroomsListRO.prototype, "time", void 0);
|
|
148
|
+
__decorate([
|
|
149
|
+
(0, class_transformer_1.Expose)(),
|
|
150
|
+
__metadata("design:type", Number)
|
|
151
|
+
], AdminQuestroomsListRO.prototype, "playersMin", void 0);
|
|
152
|
+
__decorate([
|
|
153
|
+
(0, class_transformer_1.Expose)(),
|
|
154
|
+
__metadata("design:type", Number)
|
|
155
|
+
], AdminQuestroomsListRO.prototype, "playersMax", void 0);
|
|
111
156
|
__decorate([
|
|
112
157
|
(0, class_transformer_1.Type)(() => ProfileRO),
|
|
113
158
|
(0, class_transformer_1.Expose)(),
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { CreateQuestroomAdminDto } from './create-questroom-admin.dto';
|
|
2
|
+
declare const UpdateQuestroomAdminDto_base: import("@nestjs/mapped-types").MappedType<Partial<CreateQuestroomAdminDto>>;
|
|
3
|
+
export declare class UpdateQuestroomAdminDto extends UpdateQuestroomAdminDto_base {
|
|
4
|
+
}
|
|
5
|
+
export {};
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.UpdateQuestroomAdminDto = void 0;
|
|
4
|
+
const mapped_types_1 = require("@nestjs/mapped-types");
|
|
5
|
+
const create_questroom_admin_dto_1 = require("./create-questroom-admin.dto");
|
|
6
|
+
class UpdateQuestroomAdminDto extends (0, mapped_types_1.PartialType)(create_questroom_admin_dto_1.CreateQuestroomAdminDto) {
|
|
7
|
+
}
|
|
8
|
+
exports.UpdateQuestroomAdminDto = UpdateQuestroomAdminDto;
|