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 +1 -1
- package/src/cart_item.js +1 -1
- package/src/product.js +1 -0
package/package.json
CHANGED
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, '
|
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');
|