merchi_sdk_js 0.0.67 → 0.0.68
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 +6 -0
package/package.json
CHANGED
package/src/model.js
CHANGED
@@ -309,6 +309,12 @@ export function getList(resource, success, error, parameters, withUpdates) {
|
|
309
309
|
request.query().add(
|
310
310
|
'platform_category_id', parameters.platformCategoryId);
|
311
311
|
}
|
312
|
+
if (notEmpty(parameters.googleMerchantCenterExported)) {
|
313
|
+
request.query().add(
|
314
|
+
'google_merchant_center_exported',
|
315
|
+
parameters.googleMerchantCenterExported
|
316
|
+
);
|
317
|
+
}
|
312
318
|
if (notEmpty(parameters.groupBuyForJobId)) {
|
313
319
|
request.query().add(
|
314
320
|
'group_buy_for_job_id', parameters.groupBuyForJobId);
|