Skip to content

Commit 9f22072

Browse files
Merge pull request #193 from mollie/feature/MOL-797
MOL-797 + MOL-802
2 parents c90947f + a0a5684 commit 9f22072

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

application/cypress/fixtures/fetch-project.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@
1616
"ES",
1717
"BE",
1818
"FR",
19-
"PT"
19+
"PT",
20+
"SE"
2021
],
2122
"currencies": ["EUR", "GBP", "PLN", "CHF"],
2223
"languages": [
@@ -30,7 +31,8 @@
3031
"es-ES",
3132
"de-AT",
3233
"pt-PT",
33-
"it-IT"
34+
"it-IT",
35+
"sv-SE"
3436
],
3537
"initialized": true,
3638
"expiry": {

processor/src/commercetools/customObjects.commercetools.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,11 @@ export const getMethodConfigObjects = async (): Promise<CustomObject[]> => {
1515
.withContainer({
1616
container: CUSTOM_OBJECT_CONTAINER_NAME,
1717
})
18-
.get()
18+
.get({
19+
queryArgs: {
20+
limit: 50,
21+
},
22+
})
1923
.execute();
2024

2125
return methodObjects;

0 commit comments

Comments
 (0)