merchi_sdk_js 0.0.17 → 0.0.18
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/model.js +4 -0
package/package.json
CHANGED
package/src/model.js
CHANGED
@@ -502,6 +502,10 @@ export function getList(resource, success, error, parameters, withUpdates) {
|
|
502
502
|
request.query().add(
|
503
503
|
'exclude_domains', parameters.excludeDomains);
|
504
504
|
}
|
505
|
+
if (notEmpty(parameters.excludeJobs)) {
|
506
|
+
request.query().add(
|
507
|
+
'exclude_jobs', parameters.excludeJobs);
|
508
|
+
}
|
505
509
|
if (notEmpty(parameters.includeOnly)) {
|
506
510
|
request.query().add('include_only', parameters.includeOnly);
|
507
511
|
}
|