@labdigital/commercetools-mock 2.23.0 → 2.23.1

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/dist/index.cjs CHANGED
@@ -3265,7 +3265,11 @@ var CustomObjectRepository = class extends AbstractResourceRepository {
3265
3265
  ...params,
3266
3266
  where: whereClause
3267
3267
  });
3268
- result.results = result.results.map(this.postProcessResource);
3268
+ result.results = result.results.map(
3269
+ (r) => this.postProcessResource(context, r, {
3270
+ expand: params.expand
3271
+ })
3272
+ );
3269
3273
  return result;
3270
3274
  }
3271
3275
  };