merchi_sdk_js 0.0.22 → 0.0.24

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.22",
3
+ "version": "0.0.24",
4
4
  "type": "module",
5
5
  "main": "src/merchi.js",
6
6
  "module": "src/merchi.js",
package/src/job.js CHANGED
@@ -61,12 +61,17 @@ export function Job() {
61
61
  addPropertyTo(this, 'invoice', Invoice);
62
62
  addPropertyTo(this, 'items', Item);
63
63
  addPropertyTo(this, 'shipment', Shipment);
64
+
64
65
  addPropertyTo(this, 'client', User);
66
+ addPropertyTo(this, 'clientBrowser');
67
+ addPropertyTo(this, 'clientDevice');
68
+ addPropertyTo(this, 'clientOs');
65
69
  addPropertyTo(this, 'clientEmail', EmailAddress);
66
70
  addPropertyTo(this, 'clientPhone', PhoneNumber);
67
71
  addPropertyTo(this, 'clientCompany', Company);
68
72
  addPropertyTo(this, 'clientCompanyEmail', EmailAddress);
69
73
  addPropertyTo(this, 'clientCompanyPhone', PhoneNumber);
74
+
70
75
  addPropertyTo(this, 'manager', User);
71
76
  addPropertyTo(this, 'designer', User);
72
77
  addPropertyTo(this, 'shipping', Address);
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');