merchi_sdk_js 0.0.21 → 0.0.23

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "merchi_sdk_js",
3
- "version": "0.0.21",
3
+ "version": "0.0.23",
4
4
  "type": "module",
5
5
  "main": "src/merchi.js",
6
6
  "module": "src/merchi.js",
package/src/cart_item.js CHANGED
@@ -23,7 +23,7 @@ export function CartItem() {
23
23
  addPropertyTo(this, 'variations', Variation);
24
24
  addPropertyTo(this, 'variationsGroups', VariationsGroup);
25
25
  addPropertyTo(this, 'taxType', CountryTax);
26
- addPropertyTo(this, 'tag', DomainTag);
26
+ addPropertyTo(this, 'tags', DomainTag);
27
27
  addPropertyTo(this, 'subtotalCost');
28
28
  addPropertyTo(this, 'totalCost');
29
29
 
package/src/product.js CHANGED
@@ -91,6 +91,7 @@ export function Product() {
91
91
  addPropertyTo(this, 'allowAutomaticPaymentSupply');
92
92
  addPropertyTo(this, 'allowGroupBuy');
93
93
  addPropertyTo(this, 'allowPaymentUpfront');
94
+ addPropertyTo(this, 'allowAddToCart');
94
95
  addPropertyTo(this, 'allowQuotation');
95
96
  addPropertyTo(this, 'allowChainedInventoryCreation');
96
97
  addPropertyTo(this, 'allowClientDraftContribution');