Skip to content

Commit 2abe0dd

Browse files
committed
bug fix
1 parent db67e3d commit 2abe0dd

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

components/akeneo/actions/create-a-new-product-media-file/create-a-new-product-media-file.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import FormData from "form-data";
77
export default {
88
type: "action",
99
key: "akeneo-create-a-new-product-media-file",
10-
version: "0.1.0",
10+
version: "0.1.1",
1111
name: "Create A New Product Media File",
1212
description: "Allows you to create a new media file and associate it to an attribute value of a given product or product model. [See the docs](https://api.akeneo.com/api-reference.html#post_media_files)",
1313
props: {

components/akeneo/akeneo.app.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ export default {
5151
params: {
5252
limit: PAGE_SIZE,
5353
page,
54-
search: {
54+
search: JSON.stringify({
5555
type: [
5656
{
5757
operator: "IN",
@@ -60,7 +60,7 @@ export default {
6060
],
6161
},
6262
],
63-
},
63+
}),
6464
},
6565
});
6666
return resp?._embedded?.items?.map((attribute) => attribute.code) || [];

components/akeneo/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pipedream/akeneo",
3-
"version": "0.1.0",
3+
"version": "0.1.1",
44
"description": "Pipedream Akeneo Components",
55
"main": "akeneo.app.mjs",
66
"keywords": [

0 commit comments

Comments
 (0)