merchi_sdk_ts 1.12.0 → 1.13.0

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.
@@ -550,6 +550,10 @@ var Product = /** @class */ (function (_super) {
550
550
  Product.property(),
551
551
  __metadata("design:type", Boolean)
552
552
  ], Product.prototype, "inventoriesOpen", void 0);
553
+ __decorate([
554
+ Product.property(),
555
+ __metadata("design:type", Boolean)
556
+ ], Product.prototype, "clientSideCalculation", void 0);
553
557
  __decorate([
554
558
  Product.property(),
555
559
  __metadata("design:type", Boolean)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "merchi_sdk_ts",
3
- "version": "1.12.0",
3
+ "version": "1.13.0",
4
4
  "main": "dist/index.js",
5
5
  "type": "module",
6
6
  "repository": "git@github.com:merchisdk/merchi_sdk_ts.git",
@@ -312,6 +312,9 @@ export class Product extends Entity {
312
312
  @Product.property()
313
313
  public inventoriesOpen?: boolean;
314
314
 
315
+ @Product.property()
316
+ public clientSideCalculation?: boolean;
317
+
315
318
  @Product.property()
316
319
  public supplyChainDisabled?: boolean;
317
320