@punks/backend-entity-manager 0.0.104 → 0.0.105

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/cjs/index.js CHANGED
@@ -1728,12 +1728,15 @@ class EntityVersionsSearchQuery {
1728
1728
  constructor(services) {
1729
1729
  this.services = services;
1730
1730
  }
1731
- async execute(request) {
1731
+ async execute(params) {
1732
1732
  const context = await this.getContext();
1733
1733
  await this.authorizeSearch(context);
1734
1734
  return await this.services
1735
1735
  .resolveVersioningProvider()
1736
- .searchVersions(request);
1736
+ .searchVersions({
1737
+ params,
1738
+ entityType: this.services.getEntityName(),
1739
+ });
1737
1740
  }
1738
1741
  async getContext() {
1739
1742
  const authorization = this.services.resolveAuthorizationMiddleware();