@escapenavigator/types 1.7.19 → 1.7.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.
@@ -9,6 +9,7 @@ export declare class EmailRO {
9
9
  to: string;
10
10
  replied: boolean;
11
11
  from: string;
12
+ deleted: boolean;
12
13
  attachmentsLinks: string[];
13
14
  identificator: string;
14
15
  status: EmailStatusEnum;
@@ -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)
@@ -31,6 +31,7 @@ declare class Slot {
31
31
  rule: Rule;
32
32
  }
33
33
  export declare class OpenapiOrderRO extends QuestroomRow {
34
+ createdAt: Date;
34
35
  code: string;
35
36
  language?: Languages;
36
37
  price: OpenapiTariffRO;
@@ -87,6 +87,10 @@ __decorate([
87
87
  ], Slot.prototype, "rule", void 0);
88
88
  class OpenapiOrderRO extends openapi_questroom_ro_1.QuestroomRow {
89
89
  }
90
+ __decorate([
91
+ (0, class_transformer_1.Expose)(),
92
+ __metadata("design:type", Date)
93
+ ], OpenapiOrderRO.prototype, "createdAt", void 0);
90
94
  __decorate([
91
95
  (0, class_transformer_1.Expose)(),
92
96
  __metadata("design:type", String)
@@ -5,5 +5,6 @@ export declare class CreateProfileActionRO {
5
5
  time: string;
6
6
  profileId: number;
7
7
  prevActionId: number;
8
+ prevActionStatus: boolean;
8
9
  prevResult: string;
9
10
  }
@@ -21,7 +21,7 @@ __decorate([
21
21
  __metadata("design:type", String)
22
22
  ], CreateProfileActionRO.prototype, "type", void 0);
23
23
  __decorate([
24
- (0, class_validator_1.IsOptional)(),
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, class_validator_1.IsOptional)(),
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)(),
@@ -8,6 +8,7 @@ export declare class ProfileActionRO {
8
8
  createdAt: Date;
9
9
  author: string;
10
10
  type: string;
11
+ success: boolean;
11
12
  description: string;
12
13
  result: string;
13
14
  date: string;
@@ -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)