export function updateStoreProductStock() { return { path: '/product/price_quantity/update', denormalize(req, { store }) { return { payload: { Request: { Product: { Skus: [ ...req.map(data => { return { Sku: { SellerSku: data.variationId, Quantity: data.qty } } }) ] } } } } }, async normalize(res, { store }) { return {} } } }