merchi_sdk_js 0.0.23 → 0.0.24

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/job.js +5 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "merchi_sdk_js",
3
- "version": "0.0.23",
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);