Skip to content

Commit

Permalink
Ensure our search after can still be filtered
Browse files Browse the repository at this point in the history
  • Loading branch information
kjellknapen committed Jan 9, 2024
1 parent 1f4f037 commit dc1a539
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@craftzing/akeneo-api",
"version": "1.0.9",
"version": "1.0.12",
"description": "A Node Rest Client for the Akeneo PIM",
"author": "Jens Verbeken <jens.verbeken@craftzing.com>",
"license": "MIT",
Expand Down
1 change: 1 addition & 0 deletions src/endpoints/raw.ts
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ export default {
const params = config?.params;
const { items, _links } = await this.get(http, url, {
params: {
...params,
...(params?.search_after ? { search_after: params.search_after } : {}),
pagination_type: 'search_after',
limit: 100,
Expand Down

0 comments on commit dc1a539

Please sign in to comment.