merchi_sdk_js 0.0.10 → 0.0.11

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.10",
3
+ "version": "0.0.11",
4
4
  "type": "module",
5
5
  "main": "src/merchi.js",
6
6
  "module": "src/merchi.js",
package/src/assignment.js CHANGED
@@ -28,6 +28,7 @@ export function Assignment() {
28
28
  addPropertyTo(this, 'supplyJob', Job);
29
29
  addPropertyTo(this, 'supplier', User);
30
30
  addPropertyTo(this, 'quote', Quote);
31
+ addPropertyTo(this, 'quoteTotalCost');
31
32
  addPropertyTo(this, 'shipment', Shipment);
32
33
  addPropertyTo(this, 'supplyDomain', SupplyDomain);
33
34
  addPropertyTo(this, 'comments', ProductionComment);
package/src/job.js CHANGED
@@ -73,6 +73,7 @@ export function Job() {
73
73
  addPropertyTo(this, 'productionShippingAddress', Address);
74
74
  addPropertyTo(this, 'supplyAssignment', Assignment);
75
75
  addPropertyTo(this, 'supplyJob', Job);
76
+ addPropertyTo(this, 'supplyQuoteTotalCost');
76
77
  addPropertyTo(this, 'domain', Domain);
77
78
  addPropertyTo(this, 'cost');
78
79
  addPropertyTo(this, 'taxAmount');