merchi_sdk_ts 1.7.2 → 1.7.3

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.
@@ -107,11 +107,11 @@ var DraftTemplate = /** @class */ (function (_super) {
107
107
  __metadata("design:type", Object)
108
108
  ], DraftTemplate.prototype, "customisationMap", void 0);
109
109
  __decorate([
110
- DraftTemplate.property(),
110
+ DraftTemplate.property({ type: String }),
111
111
  __metadata("design:type", Object)
112
112
  ], DraftTemplate.prototype, "customisationMapSource", void 0);
113
113
  __decorate([
114
- DraftTemplate.property(),
114
+ DraftTemplate.property({ type: String }),
115
115
  __metadata("design:type", Object)
116
116
  ], DraftTemplate.prototype, "customisationMapFileId", void 0);
117
117
  return DraftTemplate;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "merchi_sdk_ts",
3
- "version": "1.7.2",
3
+ "version": "1.7.3",
4
4
  "main": "dist/index.js",
5
5
  "type": "module",
6
6
  "repository": "git@github.com:merchisdk/merchi_sdk_ts.git",
@@ -73,9 +73,9 @@ export class DraftTemplate extends Entity {
73
73
  @DraftTemplate.property({type: customisationMapPropertyType})
74
74
  public customisationMap?: Record<string, unknown> | null;
75
75
 
76
- @DraftTemplate.property()
76
+ @DraftTemplate.property({type: String})
77
77
  public customisationMapSource?: string | null;
78
78
 
79
- @DraftTemplate.property()
79
+ @DraftTemplate.property({type: String})
80
80
  public customisationMapFileId?: string | null;
81
81
  }