merchi_sdk_ts 1.2.10 → 1.2.11

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.
@@ -202,6 +202,10 @@ var VariationField = /** @class */ (function (_super) {
202
202
  VariationField.property(),
203
203
  __metadata("design:type", Boolean)
204
204
  ], VariationField.prototype, "allowDecimal", void 0);
205
+ __decorate([
206
+ VariationField.property(),
207
+ __metadata("design:type", Boolean)
208
+ ], VariationField.prototype, "isHtml", void 0);
205
209
  __decorate([
206
210
  VariationField.property(),
207
211
  __metadata("design:type", Boolean)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "merchi_sdk_ts",
3
- "version": "1.2.10",
3
+ "version": "1.2.11",
4
4
  "main": "dist/index.js",
5
5
  "type": "module",
6
6
  "repository": "git@github.com:merchisdk/merchi_sdk_ts.git",
@@ -78,6 +78,9 @@ export class VariationField extends Entity {
78
78
  @VariationField.property()
79
79
  public allowDecimal?: boolean;
80
80
 
81
+ @VariationField.property()
82
+ public isHtml?: boolean;
83
+
81
84
  @VariationField.property()
82
85
  public sellerProductEditable?: boolean;
83
86