@escapenavigator/types 1.9.19 → 1.9.21

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.
Files changed (28) hide show
  1. package/dist/admin/aggregator-issue/aggregator-issue.ro.d.ts +7 -0
  2. package/dist/admin/aggregator-issue/aggregator-issue.ro.js +33 -0
  3. package/dist/admin/aggregator-issue/create-admin.dto.d.ts +6 -0
  4. package/dist/admin/aggregator-issue/create-admin.dto.js +38 -0
  5. package/dist/certificate/certificate-service.ro.d.ts +7 -0
  6. package/dist/certificate/certificate-service.ro.js +33 -0
  7. package/dist/certificate/certificate.ro.d.ts +3 -3
  8. package/dist/certificate/certificate.ro.js +99 -0
  9. package/dist/certificate/create-certificate-service.dto.d.ts +6 -0
  10. package/dist/certificate/create-certificate-service.dto.js +39 -0
  11. package/dist/certificate-sale/certificate-sale.ro.d.ts +1 -0
  12. package/dist/certificate-sale/certificate-sale.ro.js +4 -0
  13. package/dist/location/location.ro.d.ts +11 -8
  14. package/dist/location/location.ro.js +96 -0
  15. package/dist/openapi/certificates/openapi-certificate-template.ro.d.ts +1 -0
  16. package/dist/openapi/certificates/openapi-certificate-template.ro.js +4 -0
  17. package/dist/openapi/certificates/openapi-create-certificate-sale.dto.d.ts +2 -0
  18. package/dist/openapi/certificates/openapi-create-certificate-sale.dto.js +6 -0
  19. package/dist/profile/query-admin-profile.dto.d.ts +1 -0
  20. package/dist/profile/query-admin-profile.dto.js +4 -0
  21. package/dist/profile/update-current-ga.dto.d.ts +1 -2
  22. package/dist/profile/update-current-ga.dto.js +1 -2
  23. package/dist/questroom/questroom-admin.ro.d.ts +7 -42
  24. package/dist/questroom/questroom-admin.ro.js +11 -140
  25. package/dist/questroom/questroom.ro.d.ts +6 -5
  26. package/dist/questroom/questroom.ro.js +22 -12
  27. package/dist/tsconfig.build.tsbuildinfo +1 -1
  28. package/package.json +2 -2
@@ -0,0 +1,7 @@
1
+ import { RO } from '../../shared/ro-class';
2
+ export declare class AggregatorIssueRO extends RO {
3
+ url: string;
4
+ type: string;
5
+ old: string;
6
+ new: string;
7
+ }
@@ -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,6 @@
1
+ export declare class AggregatorIssueDto {
2
+ url: string;
3
+ type: string;
4
+ old: string;
5
+ new: string;
6
+ }
@@ -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,7 @@
1
+ import { RO } from '../shared/ro-class';
2
+ export declare class CertificateServiceRO extends RO {
3
+ nominals: number[];
4
+ allowFreeNominal: boolean;
5
+ enabled: boolean;
6
+ onlinePaymentsCashbox: number;
7
+ }
@@ -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 { ResponseObject } from '../shared/ro';
2
- export declare type CertificateRO = ResponseObject & {
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,6 @@
1
+ export declare class CreateCertificateServiceDto {
2
+ onlinePaymentsCashbox: number;
3
+ nominals: number[];
4
+ allowFreeNominal: boolean;
5
+ enabled: boolean;
6
+ }
@@ -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;
@@ -19,6 +19,7 @@ declare class Certificate {
19
19
  pickupInfo: string;
20
20
  deliveryInfo: string;
21
21
  photo: string;
22
+ inside: boolean;
22
23
  pdfLink: string;
23
24
  }
24
25
  export declare class CertificateSaleRO extends RO {
@@ -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)
@@ -1,6 +1,12 @@
1
1
  import { Languages } from '../shared/enum/languages.enum';
2
- import { ResponseObject } from '../shared/ro';
3
- export declare type LocationRO = ResponseObject & {
2
+ import { RO } from '../shared/ro-class';
3
+ declare class LocationLocale {
4
+ id: number;
5
+ language: Languages;
6
+ howToFind: string;
7
+ prepareText: string;
8
+ }
9
+ export declare class LocationRO extends RO {
4
10
  title: string;
5
11
  address: string;
6
12
  phone: string;
@@ -15,9 +21,6 @@ export declare type LocationRO = ResponseObject & {
15
21
  site: string;
16
22
  waitingAreaSize: number;
17
23
  timeZone: string;
18
- locales: Array<{
19
- language: Languages;
20
- howToFind: string;
21
- prepareText: string;
22
- }>;
23
- };
24
+ locales: LocationLocale[];
25
+ }
26
+ export {};
@@ -1,2 +1,98 @@
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.LocationRO = void 0;
13
+ /* eslint-disable max-classes-per-file */
14
+ const class_transformer_1 = require("class-transformer");
15
+ const languages_enum_1 = require("../shared/enum/languages.enum");
16
+ const ro_class_1 = require("../shared/ro-class");
17
+ class LocationLocale {
18
+ }
19
+ __decorate([
20
+ (0, class_transformer_1.Expose)(),
21
+ __metadata("design:type", Number)
22
+ ], LocationLocale.prototype, "id", void 0);
23
+ __decorate([
24
+ (0, class_transformer_1.Expose)(),
25
+ __metadata("design:type", String)
26
+ ], LocationLocale.prototype, "language", void 0);
27
+ __decorate([
28
+ (0, class_transformer_1.Expose)(),
29
+ __metadata("design:type", String)
30
+ ], LocationLocale.prototype, "howToFind", void 0);
31
+ __decorate([
32
+ (0, class_transformer_1.Expose)(),
33
+ __metadata("design:type", String)
34
+ ], LocationLocale.prototype, "prepareText", void 0);
35
+ class LocationRO extends ro_class_1.RO {
36
+ }
37
+ __decorate([
38
+ (0, class_transformer_1.Expose)(),
39
+ __metadata("design:type", String)
40
+ ], LocationRO.prototype, "title", void 0);
41
+ __decorate([
42
+ (0, class_transformer_1.Expose)(),
43
+ __metadata("design:type", String)
44
+ ], LocationRO.prototype, "address", void 0);
45
+ __decorate([
46
+ (0, class_transformer_1.Expose)(),
47
+ __metadata("design:type", String)
48
+ ], LocationRO.prototype, "phone", void 0);
49
+ __decorate([
50
+ (0, class_transformer_1.Expose)(),
51
+ __metadata("design:type", String)
52
+ ], LocationRO.prototype, "ip", void 0);
53
+ __decorate([
54
+ (0, class_transformer_1.Expose)(),
55
+ __metadata("design:type", String)
56
+ ], LocationRO.prototype, "howToFind", void 0);
57
+ __decorate([
58
+ (0, class_transformer_1.Expose)(),
59
+ __metadata("design:type", String)
60
+ ], LocationRO.prototype, "prepareText", void 0);
61
+ __decorate([
62
+ (0, class_transformer_1.Expose)(),
63
+ __metadata("design:type", Boolean)
64
+ ], LocationRO.prototype, "wifi", void 0);
65
+ __decorate([
66
+ (0, class_transformer_1.Expose)(),
67
+ __metadata("design:type", Boolean)
68
+ ], LocationRO.prototype, "wardrobe", void 0);
69
+ __decorate([
70
+ (0, class_transformer_1.Expose)(),
71
+ __metadata("design:type", Boolean)
72
+ ], LocationRO.prototype, "freeParking", void 0);
73
+ __decorate([
74
+ (0, class_transformer_1.Expose)(),
75
+ __metadata("design:type", Boolean)
76
+ ], LocationRO.prototype, "parking", void 0);
77
+ __decorate([
78
+ (0, class_transformer_1.Expose)(),
79
+ __metadata("design:type", Boolean)
80
+ ], LocationRO.prototype, "waitingArea", void 0);
81
+ __decorate([
82
+ (0, class_transformer_1.Expose)(),
83
+ __metadata("design:type", String)
84
+ ], LocationRO.prototype, "site", void 0);
85
+ __decorate([
86
+ (0, class_transformer_1.Expose)(),
87
+ __metadata("design:type", Number)
88
+ ], LocationRO.prototype, "waitingAreaSize", void 0);
89
+ __decorate([
90
+ (0, class_transformer_1.Expose)(),
91
+ __metadata("design:type", String)
92
+ ], LocationRO.prototype, "timeZone", void 0);
93
+ __decorate([
94
+ (0, class_transformer_1.Expose)(),
95
+ (0, class_transformer_1.Type)(() => LocationLocale),
96
+ __metadata("design:type", Array)
97
+ ], LocationRO.prototype, "locales", void 0);
98
+ exports.LocationRO = LocationRO;
@@ -17,4 +17,5 @@ export declare class OpenapiCertificateTemplateRO {
17
17
  pickupInfo: string;
18
18
  deliveryInfo: string;
19
19
  profileId: number;
20
+ inside: boolean;
20
21
  }
@@ -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;
@@ -14,6 +14,7 @@ export declare class QueryAdminProfileDto {
14
14
  subscriptionCancelationDate?: boolean;
15
15
  status?: ProfileStatusEnum[];
16
16
  country?: CountriesEnum;
17
+ city?: string;
17
18
  crm?: string;
18
19
  lastEmailSendId?: string;
19
20
  notlastEmailSendId?: string;
@@ -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)
@@ -1,5 +1,4 @@
1
- import { UpdateCurrentBaseDto } from './update-current-base.dto';
2
- export declare class UpdateCurrentGaDto extends UpdateCurrentBaseDto {
1
+ export declare class UpdateCurrentGaDto {
3
2
  gaEnabled: boolean;
4
3
  ga4Id: string;
5
4
  gaCoversationId: 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
- const update_current_base_dto_1 = require("./update-current-base.dto");
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,48 +1,13 @@
1
- import { Languages } from '../shared/enum/languages.enum';
2
- import { TagsEnum } from '../shared/enum/tags.enum';
3
- import { RO } from '../shared/ro-class';
4
- import { QuestroomActorsEnum } from './enum/questroom-actors.enum';
1
+ import { LocationRO } from '../location/location.ro';
2
+ import { ProfileRO } from '../profile/profile.ro';
5
3
  import { QuestroomAwardEnum } from './enum/questroom-award.enum';
6
- import { QuestroomIntegrationTypeEnum } from './enum/questroom-integration-type.enum';
7
- import { QuestroomTypeEnum } from './enum/questroom-type.enum';
8
- export declare class QuestroomAdminRO extends RO {
9
- profileId: number;
10
- deletedAt?: Date;
11
- title: string;
12
- locationId: number;
13
- type: QuestroomTypeEnum;
14
- difficult: number;
4
+ import { QuestroomRO } from './questroom.ro';
5
+ export declare class QuestroomAdminRO extends QuestroomRO {
15
6
  awards: QuestroomAwardEnum[];
16
7
  minPrice: number;
17
8
  maxPrice: number;
18
- fear: number;
19
- minAge: number;
20
- time: number;
21
- templateId: number;
22
- ticketSystem: boolean;
23
- video?: string;
24
- photo: string;
25
- photos: string[];
26
- legend: string;
27
- teaser: string;
28
- importantInfo: string;
29
- sortPosition: number;
30
- actors: QuestroomActorsEnum;
31
- disabledLanguages: Languages[];
32
- questroomTags: TagsEnum[];
33
- slug: string;
34
- navigatorReviewId: number;
35
- playersMin: number;
36
- playersMax: number;
37
- rate: number;
38
- reviewsCount: number;
39
9
  top: boolean;
40
- closed: boolean;
41
- integrationRef: number;
42
- integrationType: QuestroomIntegrationTypeEnum;
43
- awailableForNavigator: boolean;
44
- awailableForWidgets: boolean;
45
- paypalCashbox: number;
46
- onlinePaymentsCashbox: number;
47
- onlinePaymentsAvailable: boolean;
10
+ verified: boolean;
11
+ location: LocationRO;
12
+ profile: ProfileRO;
48
13
  }