node-mailchimp
node-mailchimp copied to clipboard
node mailchimp wrapper using v3 of the mailchimp api
Bumps [ajv](https://github.com/ajv-validator/ajv) from 6.5.5 to 6.12.6. Release notes Sourced from ajv's releases. v6.12.6 Fix performance issue of "url" format. v6.12.5 Fix uri scheme validation (@ChALkeR). Fix boolean schemas with strictKeywords...
[Bluebird](https://github.com/petkaantonov/bluebird/#%EF%B8%8Fnote%EF%B8%8F) says to avoid using it over native Promises. Would it be possible to remove it from this repo? I tried locally and had some trouble running the repo tests,...
As of #73, the constructor now takes an optional `dc` parameter, but the typings weren't updated to reflect this. This causes errors when trying to use OAuth with typescript: 
Bumps [tar](https://github.com/npm/node-tar) from 4.4.15 to 4.4.18. Commits 3e35515 4.4.18 52b09e3 fix: prevent path escape using drive-relative paths bb93ba2 fix: reserve paths properly for unicode, windows 2f1bca0 fix: prune dirCache properly...
Each of the following returns more than 10 members, as expected: ``` mailchimp.request({method:'GET',path:`/list/${list_id}/segments/${segment_id}/members`, query: {count: 1000}})....; //or mailchimp.get(`/lists/${list_id}/segments/${segment_id}/members?count=1000`)....; ``` However, the following only returns at most 10 segment members, per...
The `batchWait` method is missing from `index.d.ts`, so TypeScript does not recognize it.
How to get merge_fields keys like. 1. last active 2. subscription 3. join date
When you make a request through this package to the Mailchimp API, and the API returns an error, the Error JSON contains the Basic Auth token. You can extract this...
To trigger on a batch webhook, it would be great to have a function which only downloads the batch. How about exposing _getAndUnpackBatchResults?
Query type is defined like following in index.d.ts. `type Query = string;` When I tested it as a object, it works. But string type didn't work.