merchi_sdk_js 0.0.58 → 0.0.60
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/merchi.js +1 -1
package/package.json
CHANGED
package/src/merchi.js
CHANGED
@@ -585,7 +585,7 @@ export function merchi(backendUri, websocketUri) {
|
|
585
585
|
|
586
586
|
function getJobQuote(job, success, error) {
|
587
587
|
var request = new Request(),
|
588
|
-
data = serialise(job,
|
588
|
+
data = serialise(job, null, null, null, {excludeOld: false});
|
589
589
|
request.resource('/specialised-order-estimate/');
|
590
590
|
request.method('POST');
|
591
591
|
request.data().merge(data);
|