@escapenavigator/types 1.9.20 → 1.9.22
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/admin/aggregator-issue/aggregator-issue.ro.d.ts +7 -0
- package/dist/admin/aggregator-issue/aggregator-issue.ro.js +33 -0
- package/dist/admin/aggregator-issue/create-admin.dto.d.ts +6 -0
- package/dist/admin/aggregator-issue/create-admin.dto.js +38 -0
- package/dist/certificate/certificate-service.ro.d.ts +7 -0
- package/dist/certificate/certificate-service.ro.js +33 -0
- package/dist/certificate/certificate.ro.d.ts +3 -3
- package/dist/certificate/certificate.ro.js +99 -0
- package/dist/certificate/create-certificate-service.dto.d.ts +6 -0
- package/dist/certificate/create-certificate-service.dto.js +39 -0
- package/dist/certificate-sale/certificate-sale.ro.d.ts +1 -0
- package/dist/certificate-sale/certificate-sale.ro.js +4 -0
- package/dist/certificate-sale/query-certificatesale.dto.d.ts +1 -0
- package/dist/certificate-sale/query-certificatesale.dto.js +5 -0
- package/dist/openapi/certificates/openapi-certificate-template.ro.d.ts +1 -0
- package/dist/openapi/certificates/openapi-certificate-template.ro.js +4 -0
- package/dist/openapi/certificates/openapi-create-certificate-sale.dto.d.ts +2 -0
- package/dist/openapi/certificates/openapi-create-certificate-sale.dto.js +6 -0
- package/dist/profile/query-admin-profile.dto.d.ts +1 -0
- package/dist/profile/query-admin-profile.dto.js +4 -0
- package/dist/profile/update-current-ga.dto.d.ts +1 -2
- package/dist/profile/update-current-ga.dto.js +1 -2
- package/dist/questroom/questroom-admin.ro.d.ts +2 -1
- package/dist/questroom/questroom-admin.ro.js +5 -0
- package/dist/questroom/questroom.ro.d.ts +2 -2
- package/dist/questroom/questroom.ro.js +10 -10
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +2 -2
|
@@ -0,0 +1,33 @@
|
|
|
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.AggregatorIssueRO = void 0;
|
|
13
|
+
const class_transformer_1 = require("class-transformer");
|
|
14
|
+
const ro_class_1 = require("../../shared/ro-class");
|
|
15
|
+
class AggregatorIssueRO extends ro_class_1.RO {
|
|
16
|
+
}
|
|
17
|
+
__decorate([
|
|
18
|
+
(0, class_transformer_1.Expose)(),
|
|
19
|
+
__metadata("design:type", String)
|
|
20
|
+
], AggregatorIssueRO.prototype, "url", void 0);
|
|
21
|
+
__decorate([
|
|
22
|
+
(0, class_transformer_1.Expose)(),
|
|
23
|
+
__metadata("design:type", String)
|
|
24
|
+
], AggregatorIssueRO.prototype, "type", void 0);
|
|
25
|
+
__decorate([
|
|
26
|
+
(0, class_transformer_1.Expose)(),
|
|
27
|
+
__metadata("design:type", String)
|
|
28
|
+
], AggregatorIssueRO.prototype, "old", void 0);
|
|
29
|
+
__decorate([
|
|
30
|
+
(0, class_transformer_1.Expose)(),
|
|
31
|
+
__metadata("design:type", String)
|
|
32
|
+
], AggregatorIssueRO.prototype, "new", void 0);
|
|
33
|
+
exports.AggregatorIssueRO = AggregatorIssueRO;
|
|
@@ -0,0 +1,38 @@
|
|
|
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.AggregatorIssueDto = 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 AggregatorIssueDto {
|
|
17
|
+
}
|
|
18
|
+
__decorate([
|
|
19
|
+
(0, is_not_blank_1.IsNotBlank)(),
|
|
20
|
+
(0, class_transformer_1.Expose)(),
|
|
21
|
+
__metadata("design:type", String)
|
|
22
|
+
], AggregatorIssueDto.prototype, "url", void 0);
|
|
23
|
+
__decorate([
|
|
24
|
+
(0, is_not_blank_1.IsNotBlank)(),
|
|
25
|
+
(0, class_transformer_1.Expose)(),
|
|
26
|
+
__metadata("design:type", String)
|
|
27
|
+
], AggregatorIssueDto.prototype, "type", void 0);
|
|
28
|
+
__decorate([
|
|
29
|
+
(0, class_validator_1.IsOptional)(),
|
|
30
|
+
(0, class_transformer_1.Expose)(),
|
|
31
|
+
__metadata("design:type", String)
|
|
32
|
+
], AggregatorIssueDto.prototype, "old", void 0);
|
|
33
|
+
__decorate([
|
|
34
|
+
(0, is_not_blank_1.IsNotBlank)(),
|
|
35
|
+
(0, class_transformer_1.Expose)(),
|
|
36
|
+
__metadata("design:type", String)
|
|
37
|
+
], AggregatorIssueDto.prototype, "new", void 0);
|
|
38
|
+
exports.AggregatorIssueDto = AggregatorIssueDto;
|
|
@@ -0,0 +1,33 @@
|
|
|
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.CertificateServiceRO = void 0;
|
|
13
|
+
const class_transformer_1 = require("class-transformer");
|
|
14
|
+
const ro_class_1 = require("../shared/ro-class");
|
|
15
|
+
class CertificateServiceRO extends ro_class_1.RO {
|
|
16
|
+
}
|
|
17
|
+
__decorate([
|
|
18
|
+
(0, class_transformer_1.Expose)(),
|
|
19
|
+
__metadata("design:type", Array)
|
|
20
|
+
], CertificateServiceRO.prototype, "nominals", void 0);
|
|
21
|
+
__decorate([
|
|
22
|
+
(0, class_transformer_1.Expose)(),
|
|
23
|
+
__metadata("design:type", Boolean)
|
|
24
|
+
], CertificateServiceRO.prototype, "allowFreeNominal", void 0);
|
|
25
|
+
__decorate([
|
|
26
|
+
(0, class_transformer_1.Expose)(),
|
|
27
|
+
__metadata("design:type", Boolean)
|
|
28
|
+
], CertificateServiceRO.prototype, "enabled", void 0);
|
|
29
|
+
__decorate([
|
|
30
|
+
(0, class_transformer_1.Expose)(),
|
|
31
|
+
__metadata("design:type", Number)
|
|
32
|
+
], CertificateServiceRO.prototype, "onlinePaymentsCashbox", void 0);
|
|
33
|
+
exports.CertificateServiceRO = CertificateServiceRO;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import {
|
|
2
|
-
export declare
|
|
1
|
+
import { RO } from '../shared/ro-class';
|
|
2
|
+
export declare class CertificateRO extends RO {
|
|
3
3
|
title: string;
|
|
4
4
|
validity: number;
|
|
5
5
|
nominals: number[];
|
|
@@ -21,4 +21,4 @@ export declare type CertificateRO = ResponseObject & {
|
|
|
21
21
|
pickupInfo: string;
|
|
22
22
|
deliveryInfo: string;
|
|
23
23
|
onlinePaymentsAvailable: boolean;
|
|
24
|
-
}
|
|
24
|
+
}
|
|
@@ -1,2 +1,101 @@
|
|
|
1
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
|
+
};
|
|
2
11
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
+
exports.CertificateRO = void 0;
|
|
13
|
+
const class_transformer_1 = require("class-transformer");
|
|
14
|
+
const ro_class_1 = require("../shared/ro-class");
|
|
15
|
+
class CertificateRO extends ro_class_1.RO {
|
|
16
|
+
}
|
|
17
|
+
__decorate([
|
|
18
|
+
(0, class_transformer_1.Expose)(),
|
|
19
|
+
__metadata("design:type", String)
|
|
20
|
+
], CertificateRO.prototype, "title", void 0);
|
|
21
|
+
__decorate([
|
|
22
|
+
(0, class_transformer_1.Expose)(),
|
|
23
|
+
__metadata("design:type", Number)
|
|
24
|
+
], CertificateRO.prototype, "validity", void 0);
|
|
25
|
+
__decorate([
|
|
26
|
+
(0, class_transformer_1.Expose)(),
|
|
27
|
+
__metadata("design:type", Array)
|
|
28
|
+
], CertificateRO.prototype, "nominals", void 0);
|
|
29
|
+
__decorate([
|
|
30
|
+
(0, class_transformer_1.Expose)(),
|
|
31
|
+
__metadata("design:type", Number)
|
|
32
|
+
], CertificateRO.prototype, "extraPrice", void 0);
|
|
33
|
+
__decorate([
|
|
34
|
+
(0, class_transformer_1.Expose)(),
|
|
35
|
+
__metadata("design:type", Boolean)
|
|
36
|
+
], CertificateRO.prototype, "pickupPossibility", void 0);
|
|
37
|
+
__decorate([
|
|
38
|
+
(0, class_transformer_1.Expose)(),
|
|
39
|
+
__metadata("design:type", Boolean)
|
|
40
|
+
], CertificateRO.prototype, "deliveryPossibility", void 0);
|
|
41
|
+
__decorate([
|
|
42
|
+
(0, class_transformer_1.Expose)(),
|
|
43
|
+
__metadata("design:type", Boolean)
|
|
44
|
+
], CertificateRO.prototype, "emailPossibility", void 0);
|
|
45
|
+
__decorate([
|
|
46
|
+
(0, class_transformer_1.Expose)(),
|
|
47
|
+
__metadata("design:type", Number)
|
|
48
|
+
], CertificateRO.prototype, "deliveryPrice", void 0);
|
|
49
|
+
__decorate([
|
|
50
|
+
(0, class_transformer_1.Expose)(),
|
|
51
|
+
__metadata("design:type", Boolean)
|
|
52
|
+
], CertificateRO.prototype, "allowFreeNominal", void 0);
|
|
53
|
+
__decorate([
|
|
54
|
+
(0, class_transformer_1.Expose)(),
|
|
55
|
+
__metadata("design:type", Number)
|
|
56
|
+
], CertificateRO.prototype, "onlinePaymentsCashbox", void 0);
|
|
57
|
+
__decorate([
|
|
58
|
+
(0, class_transformer_1.Expose)(),
|
|
59
|
+
__metadata("design:type", Number)
|
|
60
|
+
], CertificateRO.prototype, "paypalCashbox", void 0);
|
|
61
|
+
__decorate([
|
|
62
|
+
(0, class_transformer_1.Expose)(),
|
|
63
|
+
__metadata("design:type", Boolean)
|
|
64
|
+
], CertificateRO.prototype, "allQuestrooms", void 0);
|
|
65
|
+
__decorate([
|
|
66
|
+
(0, class_transformer_1.Expose)(),
|
|
67
|
+
__metadata("design:type", Array)
|
|
68
|
+
], CertificateRO.prototype, "questroomsIds", void 0);
|
|
69
|
+
__decorate([
|
|
70
|
+
(0, class_transformer_1.Expose)(),
|
|
71
|
+
__metadata("design:type", Boolean)
|
|
72
|
+
], CertificateRO.prototype, "awailableForNavigator", void 0);
|
|
73
|
+
__decorate([
|
|
74
|
+
(0, class_transformer_1.Expose)(),
|
|
75
|
+
__metadata("design:type", Boolean)
|
|
76
|
+
], CertificateRO.prototype, "awailableForWidgets", void 0);
|
|
77
|
+
__decorate([
|
|
78
|
+
(0, class_transformer_1.Expose)(),
|
|
79
|
+
__metadata("design:type", String)
|
|
80
|
+
], CertificateRO.prototype, "pdfLink", void 0);
|
|
81
|
+
__decorate([
|
|
82
|
+
(0, class_transformer_1.Expose)(),
|
|
83
|
+
__metadata("design:type", String)
|
|
84
|
+
], CertificateRO.prototype, "photo", void 0);
|
|
85
|
+
__decorate([
|
|
86
|
+
(0, class_transformer_1.Expose)(),
|
|
87
|
+
__metadata("design:type", String)
|
|
88
|
+
], CertificateRO.prototype, "description", void 0);
|
|
89
|
+
__decorate([
|
|
90
|
+
(0, class_transformer_1.Expose)(),
|
|
91
|
+
__metadata("design:type", String)
|
|
92
|
+
], CertificateRO.prototype, "pickupInfo", void 0);
|
|
93
|
+
__decorate([
|
|
94
|
+
(0, class_transformer_1.Expose)(),
|
|
95
|
+
__metadata("design:type", String)
|
|
96
|
+
], CertificateRO.prototype, "deliveryInfo", void 0);
|
|
97
|
+
__decorate([
|
|
98
|
+
(0, class_transformer_1.Expose)(),
|
|
99
|
+
__metadata("design:type", Boolean)
|
|
100
|
+
], CertificateRO.prototype, "onlinePaymentsAvailable", void 0);
|
|
101
|
+
exports.CertificateRO = CertificateRO;
|
|
@@ -0,0 +1,39 @@
|
|
|
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.CreateCertificateServiceDto = void 0;
|
|
13
|
+
const class_transformer_1 = require("class-transformer");
|
|
14
|
+
const class_validator_1 = require("class-validator");
|
|
15
|
+
class CreateCertificateServiceDto {
|
|
16
|
+
}
|
|
17
|
+
__decorate([
|
|
18
|
+
(0, class_validator_1.IsPositive)(),
|
|
19
|
+
(0, class_transformer_1.Expose)(),
|
|
20
|
+
__metadata("design:type", Number)
|
|
21
|
+
], CreateCertificateServiceDto.prototype, "onlinePaymentsCashbox", void 0);
|
|
22
|
+
__decorate([
|
|
23
|
+
(0, class_validator_1.IsArray)(),
|
|
24
|
+
(0, class_validator_1.ArrayMinSize)(1),
|
|
25
|
+
(0, class_validator_1.IsPositive)({ each: true }),
|
|
26
|
+
(0, class_transformer_1.Expose)(),
|
|
27
|
+
__metadata("design:type", Array)
|
|
28
|
+
], CreateCertificateServiceDto.prototype, "nominals", void 0);
|
|
29
|
+
__decorate([
|
|
30
|
+
(0, class_validator_1.IsBoolean)(),
|
|
31
|
+
(0, class_transformer_1.Expose)(),
|
|
32
|
+
__metadata("design:type", Boolean)
|
|
33
|
+
], CreateCertificateServiceDto.prototype, "allowFreeNominal", void 0);
|
|
34
|
+
__decorate([
|
|
35
|
+
(0, class_validator_1.IsBoolean)(),
|
|
36
|
+
(0, class_transformer_1.Expose)(),
|
|
37
|
+
__metadata("design:type", Boolean)
|
|
38
|
+
], CreateCertificateServiceDto.prototype, "enabled", void 0);
|
|
39
|
+
exports.CreateCertificateServiceDto = CreateCertificateServiceDto;
|
|
@@ -67,6 +67,10 @@ __decorate([
|
|
|
67
67
|
(0, class_transformer_1.Expose)(),
|
|
68
68
|
__metadata("design:type", String)
|
|
69
69
|
], Certificate.prototype, "photo", void 0);
|
|
70
|
+
__decorate([
|
|
71
|
+
(0, class_transformer_1.Expose)(),
|
|
72
|
+
__metadata("design:type", Boolean)
|
|
73
|
+
], Certificate.prototype, "inside", void 0);
|
|
70
74
|
__decorate([
|
|
71
75
|
(0, class_transformer_1.Expose)(),
|
|
72
76
|
__metadata("design:type", String)
|
|
@@ -4,6 +4,7 @@ import { CertificatesaleStatusEnum } from './enum/certificatesales-status.enum';
|
|
|
4
4
|
export declare class QueryCertificatesaleDto {
|
|
5
5
|
created?: [string, string];
|
|
6
6
|
clientId?: string;
|
|
7
|
+
certificateId?: string;
|
|
7
8
|
source?: SourceEnum;
|
|
8
9
|
certificateStatus?: CertificatesaleStatusEnum;
|
|
9
10
|
delivery?: CertificatesaleDeliveryTypeEnum;
|
|
@@ -28,6 +28,11 @@ __decorate([
|
|
|
28
28
|
(0, class_transformer_1.Expose)(),
|
|
29
29
|
__metadata("design:type", String)
|
|
30
30
|
], QueryCertificatesaleDto.prototype, "clientId", void 0);
|
|
31
|
+
__decorate([
|
|
32
|
+
(0, class_validator_1.IsOptional)(),
|
|
33
|
+
(0, class_transformer_1.Expose)(),
|
|
34
|
+
__metadata("design:type", String)
|
|
35
|
+
], QueryCertificatesaleDto.prototype, "certificateId", void 0);
|
|
31
36
|
__decorate([
|
|
32
37
|
(0, class_validator_1.IsOptional)(),
|
|
33
38
|
(0, class_validator_1.IsEnum)(source_enum_1.SourceEnum),
|
|
@@ -85,4 +85,8 @@ __decorate([
|
|
|
85
85
|
(0, class_transformer_1.Expose)(),
|
|
86
86
|
__metadata("design:type", Number)
|
|
87
87
|
], OpenapiCertificateTemplateRO.prototype, "profileId", void 0);
|
|
88
|
+
__decorate([
|
|
89
|
+
(0, class_transformer_1.Expose)(),
|
|
90
|
+
__metadata("design:type", Boolean)
|
|
91
|
+
], OpenapiCertificateTemplateRO.prototype, "inside", void 0);
|
|
88
92
|
exports.OpenapiCertificateTemplateRO = OpenapiCertificateTemplateRO;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { CertificatesaleDeliveryTypeEnum } from '../../certificate-sale/enum/certificatesales-delivery-type.enum';
|
|
2
|
+
import { SourceEnum } from '../../shared/source.enum';
|
|
2
3
|
export declare class OpenapiCreateCertificateSaleDto {
|
|
3
4
|
name: string;
|
|
4
5
|
surname: string;
|
|
@@ -25,4 +26,5 @@ export declare class OpenapiCreateCertificateSaleDto {
|
|
|
25
26
|
sendingDate: string;
|
|
26
27
|
sendingTime: string;
|
|
27
28
|
sendingEmailUtcDate: string;
|
|
29
|
+
source: SourceEnum;
|
|
28
30
|
}
|
|
@@ -14,6 +14,7 @@ const class_transformer_1 = require("class-transformer");
|
|
|
14
14
|
const class_validator_1 = require("class-validator");
|
|
15
15
|
const certificatesales_delivery_type_enum_1 = require("../../certificate-sale/enum/certificatesales-delivery-type.enum");
|
|
16
16
|
const is_not_blank_1 = require("../../shared/is-not-blank");
|
|
17
|
+
const source_enum_1 = require("../../shared/source.enum");
|
|
17
18
|
class OpenapiCreateCertificateSaleDto {
|
|
18
19
|
}
|
|
19
20
|
__decorate([
|
|
@@ -158,4 +159,9 @@ __decorate([
|
|
|
158
159
|
(0, class_transformer_1.Expose)(),
|
|
159
160
|
__metadata("design:type", String)
|
|
160
161
|
], OpenapiCreateCertificateSaleDto.prototype, "sendingEmailUtcDate", void 0);
|
|
162
|
+
__decorate([
|
|
163
|
+
(0, class_validator_1.IsEnum)(source_enum_1.SourceEnum),
|
|
164
|
+
(0, class_transformer_1.Expose)(),
|
|
165
|
+
__metadata("design:type", String)
|
|
166
|
+
], OpenapiCreateCertificateSaleDto.prototype, "source", void 0);
|
|
161
167
|
exports.OpenapiCreateCertificateSaleDto = OpenapiCreateCertificateSaleDto;
|
|
@@ -50,6 +50,10 @@ __decorate([
|
|
|
50
50
|
(0, class_transformer_1.Expose)(),
|
|
51
51
|
__metadata("design:type", String)
|
|
52
52
|
], QueryAdminProfileDto.prototype, "country", void 0);
|
|
53
|
+
__decorate([
|
|
54
|
+
(0, class_transformer_1.Expose)(),
|
|
55
|
+
__metadata("design:type", String)
|
|
56
|
+
], QueryAdminProfileDto.prototype, "city", void 0);
|
|
53
57
|
__decorate([
|
|
54
58
|
(0, class_transformer_1.Expose)(),
|
|
55
59
|
__metadata("design:type", String)
|
|
@@ -13,8 +13,7 @@ exports.UpdateCurrentGaDto = void 0;
|
|
|
13
13
|
const class_transformer_1 = require("class-transformer");
|
|
14
14
|
const class_validator_1 = require("class-validator");
|
|
15
15
|
const is_not_blank_1 = require("../shared/is-not-blank");
|
|
16
|
-
|
|
17
|
-
class UpdateCurrentGaDto extends update_current_base_dto_1.UpdateCurrentBaseDto {
|
|
16
|
+
class UpdateCurrentGaDto {
|
|
18
17
|
}
|
|
19
18
|
__decorate([
|
|
20
19
|
(0, class_validator_1.IsOptional)(),
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { LocationRO } from '../location/location.ro';
|
|
2
2
|
import { ProfileRO } from '../profile/profile.ro';
|
|
3
3
|
import { QuestroomAwardEnum } from './enum/questroom-award.enum';
|
|
4
|
-
import { QuestroomRO } from './questroom.ro';
|
|
4
|
+
import { QuestroomLocale, QuestroomRO } from './questroom.ro';
|
|
5
5
|
export declare class QuestroomAdminRO extends QuestroomRO {
|
|
6
6
|
awards: QuestroomAwardEnum[];
|
|
7
7
|
minPrice: number;
|
|
@@ -9,5 +9,6 @@ export declare class QuestroomAdminRO extends QuestroomRO {
|
|
|
9
9
|
top: boolean;
|
|
10
10
|
verified: boolean;
|
|
11
11
|
location: LocationRO;
|
|
12
|
+
techlocales: QuestroomLocale[];
|
|
12
13
|
profile: ProfileRO;
|
|
13
14
|
}
|
|
@@ -41,6 +41,11 @@ __decorate([
|
|
|
41
41
|
(0, class_transformer_1.Type)(() => location_ro_1.LocationRO),
|
|
42
42
|
__metadata("design:type", location_ro_1.LocationRO)
|
|
43
43
|
], QuestroomAdminRO.prototype, "location", void 0);
|
|
44
|
+
__decorate([
|
|
45
|
+
(0, class_transformer_1.Expose)(),
|
|
46
|
+
(0, class_transformer_1.Type)(() => questroom_ro_1.QuestroomLocale),
|
|
47
|
+
__metadata("design:type", Array)
|
|
48
|
+
], QuestroomAdminRO.prototype, "techlocales", void 0);
|
|
44
49
|
__decorate([
|
|
45
50
|
(0, class_transformer_1.Expose)(),
|
|
46
51
|
(0, class_transformer_1.Type)(() => profile_ro_1.ProfileRO),
|
|
@@ -4,7 +4,7 @@ import { RO } from '../shared/ro-class';
|
|
|
4
4
|
import { QuestroomActorsEnum } from './enum/questroom-actors.enum';
|
|
5
5
|
import { QuestroomIntegrationTypeEnum } from './enum/questroom-integration-type.enum';
|
|
6
6
|
import { QuestroomTypeEnum } from './enum/questroom-type.enum';
|
|
7
|
-
export declare class
|
|
7
|
+
export declare class QuestroomLocale {
|
|
8
8
|
id: number;
|
|
9
9
|
language: Languages;
|
|
10
10
|
title: string;
|
|
@@ -24,7 +24,7 @@ export declare class QuestroomRO extends RO {
|
|
|
24
24
|
locationId: number;
|
|
25
25
|
type: QuestroomTypeEnum;
|
|
26
26
|
difficult: number;
|
|
27
|
-
locales:
|
|
27
|
+
locales: QuestroomLocale[];
|
|
28
28
|
modes: QuestroomMode[];
|
|
29
29
|
fear: number;
|
|
30
30
|
minAge: number;
|
|
@@ -9,7 +9,7 @@ var __metadata = (this && this.__metadata) || function (k, v) {
|
|
|
9
9
|
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
10
|
};
|
|
11
11
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
-
exports.QuestroomRO = exports.QuestroomMode = exports.
|
|
12
|
+
exports.QuestroomRO = exports.QuestroomMode = exports.QuestroomLocale = void 0;
|
|
13
13
|
/* eslint-disable max-classes-per-file */
|
|
14
14
|
const class_transformer_1 = require("class-transformer");
|
|
15
15
|
const languages_enum_1 = require("../shared/enum/languages.enum");
|
|
@@ -17,33 +17,33 @@ const ro_class_1 = require("../shared/ro-class");
|
|
|
17
17
|
const questroom_actors_enum_1 = require("./enum/questroom-actors.enum");
|
|
18
18
|
const questroom_integration_type_enum_1 = require("./enum/questroom-integration-type.enum");
|
|
19
19
|
const questroom_type_enum_1 = require("./enum/questroom-type.enum");
|
|
20
|
-
class
|
|
20
|
+
class QuestroomLocale {
|
|
21
21
|
}
|
|
22
22
|
__decorate([
|
|
23
23
|
(0, class_transformer_1.Expose)(),
|
|
24
24
|
__metadata("design:type", Number)
|
|
25
|
-
],
|
|
25
|
+
], QuestroomLocale.prototype, "id", void 0);
|
|
26
26
|
__decorate([
|
|
27
27
|
(0, class_transformer_1.Expose)(),
|
|
28
28
|
__metadata("design:type", String)
|
|
29
|
-
],
|
|
29
|
+
], QuestroomLocale.prototype, "language", void 0);
|
|
30
30
|
__decorate([
|
|
31
31
|
(0, class_transformer_1.Expose)(),
|
|
32
32
|
__metadata("design:type", String)
|
|
33
|
-
],
|
|
33
|
+
], QuestroomLocale.prototype, "title", void 0);
|
|
34
34
|
__decorate([
|
|
35
35
|
(0, class_transformer_1.Expose)(),
|
|
36
36
|
__metadata("design:type", String)
|
|
37
|
-
],
|
|
37
|
+
], QuestroomLocale.prototype, "legend", void 0);
|
|
38
38
|
__decorate([
|
|
39
39
|
(0, class_transformer_1.Expose)(),
|
|
40
40
|
__metadata("design:type", String)
|
|
41
|
-
],
|
|
41
|
+
], QuestroomLocale.prototype, "teaser", void 0);
|
|
42
42
|
__decorate([
|
|
43
43
|
(0, class_transformer_1.Expose)(),
|
|
44
44
|
__metadata("design:type", String)
|
|
45
|
-
],
|
|
46
|
-
exports.
|
|
45
|
+
], QuestroomLocale.prototype, "importantInfo", void 0);
|
|
46
|
+
exports.QuestroomLocale = QuestroomLocale;
|
|
47
47
|
class QuestroomMode {
|
|
48
48
|
}
|
|
49
49
|
__decorate([
|
|
@@ -87,7 +87,7 @@ __decorate([
|
|
|
87
87
|
], QuestroomRO.prototype, "difficult", void 0);
|
|
88
88
|
__decorate([
|
|
89
89
|
(0, class_transformer_1.Expose)(),
|
|
90
|
-
(0, class_transformer_1.Type)(() =>
|
|
90
|
+
(0, class_transformer_1.Type)(() => QuestroomLocale),
|
|
91
91
|
__metadata("design:type", Array)
|
|
92
92
|
], QuestroomRO.prototype, "locales", void 0);
|
|
93
93
|
__decorate([
|