@escapenavigator/types 1.7.20 → 1.7.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/emails/email.ro.d.ts +1 -0
- package/dist/emails/email.ro.js +4 -0
- package/dist/profile/action/create-profile-action.dto.d.ts +1 -0
- package/dist/profile/action/create-profile-action.dto.js +7 -2
- package/dist/profile/action/profile-action.dto.d.ts +1 -0
- package/dist/profile/action/profile-action.dto.js +4 -0
- package/dist/profile/query-admin-profile.dto.d.ts +1 -0
- package/dist/profile/query-admin-profile.dto.js +4 -0
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +2 -2
package/dist/emails/email.ro.js
CHANGED
|
@@ -45,6 +45,10 @@ __decorate([
|
|
|
45
45
|
(0, class_transformer_1.Expose)(),
|
|
46
46
|
__metadata("design:type", String)
|
|
47
47
|
], EmailRO.prototype, "from", void 0);
|
|
48
|
+
__decorate([
|
|
49
|
+
(0, class_transformer_1.Expose)(),
|
|
50
|
+
__metadata("design:type", Boolean)
|
|
51
|
+
], EmailRO.prototype, "deleted", void 0);
|
|
48
52
|
__decorate([
|
|
49
53
|
(0, class_transformer_1.Expose)(),
|
|
50
54
|
__metadata("design:type", Array)
|
|
@@ -21,7 +21,7 @@ __decorate([
|
|
|
21
21
|
__metadata("design:type", String)
|
|
22
22
|
], CreateProfileActionRO.prototype, "type", void 0);
|
|
23
23
|
__decorate([
|
|
24
|
-
(0,
|
|
24
|
+
(0, is_not_blank_1.IsNotBlank)(),
|
|
25
25
|
(0, class_transformer_1.Expose)(),
|
|
26
26
|
__metadata("design:type", String)
|
|
27
27
|
], CreateProfileActionRO.prototype, "description", void 0);
|
|
@@ -31,7 +31,7 @@ __decorate([
|
|
|
31
31
|
__metadata("design:type", String)
|
|
32
32
|
], CreateProfileActionRO.prototype, "date", void 0);
|
|
33
33
|
__decorate([
|
|
34
|
-
(0,
|
|
34
|
+
(0, is_not_blank_1.IsNotBlank)(),
|
|
35
35
|
(0, class_validator_1.IsMilitaryTime)(),
|
|
36
36
|
(0, class_transformer_1.Expose)(),
|
|
37
37
|
__metadata("design:type", String)
|
|
@@ -46,6 +46,11 @@ __decorate([
|
|
|
46
46
|
(0, class_transformer_1.Expose)(),
|
|
47
47
|
__metadata("design:type", Number)
|
|
48
48
|
], CreateProfileActionRO.prototype, "prevActionId", void 0);
|
|
49
|
+
__decorate([
|
|
50
|
+
(0, class_validator_1.IsOptional)(),
|
|
51
|
+
(0, class_transformer_1.Expose)(),
|
|
52
|
+
__metadata("design:type", Boolean)
|
|
53
|
+
], CreateProfileActionRO.prototype, "prevActionStatus", void 0);
|
|
49
54
|
__decorate([
|
|
50
55
|
(0, class_validator_1.IsOptional)(),
|
|
51
56
|
(0, class_transformer_1.Expose)(),
|
|
@@ -45,6 +45,10 @@ __decorate([
|
|
|
45
45
|
(0, class_transformer_1.Expose)(),
|
|
46
46
|
__metadata("design:type", String)
|
|
47
47
|
], ProfileActionRO.prototype, "type", void 0);
|
|
48
|
+
__decorate([
|
|
49
|
+
(0, class_transformer_1.Expose)(),
|
|
50
|
+
__metadata("design:type", Boolean)
|
|
51
|
+
], ProfileActionRO.prototype, "success", void 0);
|
|
48
52
|
__decorate([
|
|
49
53
|
(0, class_transformer_1.Expose)(),
|
|
50
54
|
__metadata("design:type", String)
|
|
@@ -7,6 +7,7 @@ import { ProfileSubscriptionEnum } from './enum/profile-subscription.enum';
|
|
|
7
7
|
import { ProfileTagEnum } from './enum/profile-tag.enum';
|
|
8
8
|
export declare class QueryAdminProfileDto {
|
|
9
9
|
tags?: ProfileTagEnum[];
|
|
10
|
+
notTags?: ProfileTagEnum[];
|
|
10
11
|
partnerProgram?: PartnerProgramEnum;
|
|
11
12
|
subscriptionStatus?: ProfileSubscriptionEnum[];
|
|
12
13
|
subscriptionType?: ProfileSubscriptionTypeEnum;
|
|
@@ -22,6 +22,10 @@ __decorate([
|
|
|
22
22
|
(0, class_transformer_1.Expose)(),
|
|
23
23
|
__metadata("design:type", Array)
|
|
24
24
|
], QueryAdminProfileDto.prototype, "tags", void 0);
|
|
25
|
+
__decorate([
|
|
26
|
+
(0, class_transformer_1.Expose)(),
|
|
27
|
+
__metadata("design:type", Array)
|
|
28
|
+
], QueryAdminProfileDto.prototype, "notTags", void 0);
|
|
25
29
|
__decorate([
|
|
26
30
|
(0, class_transformer_1.Expose)(),
|
|
27
31
|
__metadata("design:type", String)
|