merchi_sdk_ts 1.3.7 → 1.3.8

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.
@@ -46,6 +46,10 @@ var DraftComment = /** @class */ (function (_super) {
46
46
  DraftComment.property({ type: Date }),
47
47
  __metadata("design:type", Object)
48
48
  ], DraftComment.prototype, "date", void 0);
49
+ __decorate([
50
+ DraftComment.property({ type: Date }),
51
+ __metadata("design:type", Object)
52
+ ], DraftComment.prototype, "lastEditedTime", void 0);
49
53
  __decorate([
50
54
  DraftComment.property(),
51
55
  __metadata("design:type", Number)
@@ -71,7 +75,11 @@ var DraftComment = /** @class */ (function (_super) {
71
75
  __metadata("design:type", User)
72
76
  ], DraftComment.prototype, "user", void 0);
73
77
  __decorate([
74
- DraftComment.property({ arrayType: "MerchiFile" }),
78
+ DraftComment.property(),
79
+ __metadata("design:type", User)
80
+ ], DraftComment.prototype, "lastEditedBy", void 0);
81
+ __decorate([
82
+ DraftComment.property({ arrayType: 'MerchiFile' }),
75
83
  __metadata("design:type", Array)
76
84
  ], DraftComment.prototype, "files", void 0);
77
85
  __decorate([
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "merchi_sdk_ts",
3
- "version": "1.3.7",
3
+ "version": "1.3.8",
4
4
  "main": "dist/index.js",
5
5
  "type": "module",
6
6
  "repository": "git@github.com:merchisdk/merchi_sdk_ts.git",
@@ -19,6 +19,9 @@ export class DraftComment extends Entity {
19
19
  @DraftComment.property({type: Date})
20
20
  public date?: Date | null;
21
21
 
22
+ @DraftComment.property({type: Date})
23
+ public lastEditedTime?: Date | null;
24
+
22
25
  @DraftComment.property()
23
26
  public urgency?: number;
24
27
 
@@ -37,7 +40,10 @@ export class DraftComment extends Entity {
37
40
  @DraftComment.property()
38
41
  public user?: User;
39
42
 
40
- @DraftComment.property({arrayType: "MerchiFile"})
43
+ @DraftComment.property()
44
+ public lastEditedBy?: User;
45
+
46
+ @DraftComment.property({arrayType: 'MerchiFile'})
41
47
  public files?: MerchiFile[];
42
48
 
43
49
  @DraftComment.property({arrayType: 'User'})