n8n-nodes-mailchimp-cmdesign 0.2.2 → 0.2.3

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.
@@ -117,7 +117,7 @@ class MailchimpCmNode {
117
117
  const apiKey = credentials.apiKey;
118
118
  const response = await this.helpers.httpRequest({
119
119
  method: 'GET',
120
- url: `https://${server}.api.mailchimp.com/3.0/lists/${listId}/merge-fields`,
120
+ url: `https://${server}.api.mailchimp.com/3.0/lists/${listId}/merge-fields?count=30&offset=0`,
121
121
  headers: {
122
122
  Authorization: `apikey ${apiKey}`,
123
123
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "n8n-nodes-mailchimp-cmdesign",
3
- "version": "0.2.2",
3
+ "version": "0.2.3",
4
4
  "description": "n8n node to interact with Mailchimp API",
5
5
  "main": "index.js",
6
6
  "scripts": {