mailgun.js 7.0.2 → 8.0.0
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.
- package/CHANGELOG.md +77 -0
- package/README.md +220 -53
- package/common/NavigationThruPages.d.ts +19 -0
- package/domainsTags.d.ts +4 -4
- package/domainsTemplates.d.ts +4 -3
- package/events.d.ts +4 -6
- package/interfaces/DomainTags.d.ts +3 -23
- package/interfaces/DomainTemplates.d.ts +6 -26
- package/interfaces/Events.d.ts +3 -20
- package/interfaces/Messages.d.ts +28 -13
- package/interfaces/MultipleValidation.d.ts +46 -17
- package/interfaces/NavigationThruPages.d.ts +33 -0
- package/interfaces/Suppressions/Bounce.d.ts +13 -0
- package/interfaces/Suppressions/Complaint.d.ts +9 -0
- package/interfaces/Suppressions/Suppressions.d.ts +69 -0
- package/interfaces/Suppressions/Unsubscribe.d.ts +11 -0
- package/interfaces/Suppressions/WhiteList.d.ts +12 -0
- package/interfaces/lists.d.ts +14 -1
- package/interfaces/mailListMembers.d.ts +18 -2
- package/lists.d.ts +5 -3
- package/mailListMembers.d.ts +5 -3
- package/mailgun.node.js +2 -2
- package/mailgun.node.js.LICENSE.txt +1 -1
- package/mailgun.web.js +2 -2
- package/mailgun.web.js.LICENSE.txt +1 -1
- package/multipleValidation.d.ts +33 -3
- package/package.json +1 -1
- package/suppressions.d.ts +14 -11
- package/version.md +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,83 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
## [8.0.0](https://github.com/mailgun/mailgun.js/compare/v7.0.4...v8.0.0) (2022-07-28)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### ⚠ BREAKING CHANGES
|
|
9
|
+
|
|
10
|
+
* (MultipleValidationClient) Changed result interface for Multiple Validation.
|
|
11
|
+
* (ListsClient) property with the name 'skip' was replaced by 'page' in the ListsQuery interface.
|
|
12
|
+
* (ListsClient.list)'list' method changed the response interface to MailingListResult
|
|
13
|
+
* Unify iterating thru pages in Domain Templates
|
|
14
|
+
* (SuppressionClient) Some interfaces moved from Suppressions.d.ts to separate files
|
|
15
|
+
(SuppressionClient.list) Property with name 'address' was replaced by iteratorPosition in the response in 'pages'
|
|
16
|
+
* (EventClient.get) Number propery was replaced by iteratorPosition in pages property of response
|
|
17
|
+
* (DomainTagsClient) Page property was added to DomainTagsQuery.
|
|
18
|
+
* (DomainTagsClient) Status property was added to DomainTagsList.
|
|
19
|
+
* (DomainTagsClient) Address property replaced by iteratorPosition in ParsedPage for list method.
|
|
20
|
+
* (MailListsMembers) Updated listMembers response to be object with MailListMembersResult interface
|
|
21
|
+
|
|
22
|
+
### Features
|
|
23
|
+
|
|
24
|
+
* Add query to MultipleValidationClient ([2a7fd64](https://github.com/mailgun/mailgun.js/commits/2a7fd646af22675c75c81d144821f1d05ce87815))
|
|
25
|
+
* Unify iterating thru pages in domain tags ([2ee7bd2](https://github.com/mailgun/mailgun.js/commits/2ee7bd2afee6d397ae41357c9cf66e4c88e7feff))
|
|
26
|
+
* Unify iterating thru pages in Domain Templates ([2dcf453](https://github.com/mailgun/mailgun.js/commits/2dcf453ad9c53d2359620f890edd709f373e9aee))
|
|
27
|
+
* Unify iterating thru pages in events ([41de3bb](https://github.com/mailgun/mailgun.js/commits/41de3bb084dc3c5b90abb81cdcfe7c365b6df097))
|
|
28
|
+
* Unify iterating thru pages in Mailing lists ([40a6859](https://github.com/mailgun/mailgun.js/commits/40a685944057c308e7cb09c7f8d02b2b7177b87e))
|
|
29
|
+
* Unify iterating thru pages in Multiple Validations ([db0d1f8](https://github.com/mailgun/mailgun.js/commits/db0d1f8629dda5849ff54a95607b7b388dde57d9))
|
|
30
|
+
* Unify iterating thru pages in suppressions ([11962dc](https://github.com/mailgun/mailgun.js/commits/11962dcb7f8fe716af4f559ab97984154f3a30c6))
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
### Bug Fixes
|
|
34
|
+
|
|
35
|
+
* Fix assignment for force_dkim_authority ([ab442fe](https://github.com/mailgun/mailgun.js/commits/ab442fea88631e0e09c9399f14e1498782cc8373))
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
### Breaking changes
|
|
39
|
+
|
|
40
|
+
* Add pages navigation for mail list members ([a62ebbf](https://github.com/mailgun/mailgun.js/commits/a62ebbfc26768d56d78d1514836e97f8fdf1351f))
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
### Other changes
|
|
44
|
+
|
|
45
|
+
* Add release:test command ([6fd1e48](https://github.com/mailgun/mailgun.js/commits/6fd1e48f17bfb001f3fa337a85bbca9714025532))
|
|
46
|
+
* Increase test coverage ([93014da](https://github.com/mailgun/mailgun.js/commits/93014dafc2ff91cc9b8ef52830472e9d354cb605))
|
|
47
|
+
* Move duplicate logic to common class ([4603fd2](https://github.com/mailgun/mailgun.js/commits/4603fd2d35c0e94499aa0914b3c42168ece6d203))
|
|
48
|
+
* Regenerate docs ([665068d](https://github.com/mailgun/mailgun.js/commits/665068d210b1b36b17cb4678dab178686db0c232))
|
|
49
|
+
* Update commitlint rules ([a5a8897](https://github.com/mailgun/mailgun.js/commits/a5a8897932cb2499f62aabaf31f6f5c8650236a5))
|
|
50
|
+
* Update readme ([3c32f1b](https://github.com/mailgun/mailgun.js/commits/3c32f1b726c0f19bcd5e009bd36b12c98e23cc8d))
|
|
51
|
+
|
|
52
|
+
### [7.0.4](https://github.com/mailgun/mailgun.js/compare/v7.0.3...v7.0.4) (2022-07-07)
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+
### Bug Fixes
|
|
56
|
+
|
|
57
|
+
* Message Data (one of text, html, template required) ([abd2862](https://github.com/mailgun/mailgun.js/commits/abd2862fcf36ca54d68dea14cb2b2658d33092ec))
|
|
58
|
+
|
|
59
|
+
|
|
60
|
+
### Other changes
|
|
61
|
+
|
|
62
|
+
* Add content to message data ([a878cc1](https://github.com/mailgun/mailgun.js/commits/a878cc1acb0b4ca441b100278ca0fd2b47d137e3))
|
|
63
|
+
* Add propetry for mime messages ([f701cfb](https://github.com/mailgun/mailgun.js/commits/f701cfb591f08dbb882953bb2b77131fae089bad))
|
|
64
|
+
* Fix build error ([c7fcb5e](https://github.com/mailgun/mailgun.js/commits/c7fcb5e05bd84fc6ef04589bde37846a11f9466d))
|
|
65
|
+
* Fix tests ([b4791c4](https://github.com/mailgun/mailgun.js/commits/b4791c4e746a97aec359635272c2b29cb956ab6f))
|
|
66
|
+
|
|
67
|
+
### [7.0.3](https://github.com/mailgun/mailgun.js/compare/v7.0.2...v7.0.3) (2022-06-30)
|
|
68
|
+
|
|
69
|
+
|
|
70
|
+
### Bug Fixes
|
|
71
|
+
|
|
72
|
+
* Update handler of mime messages to support strings ([8d88163](https://github.com/mailgun/mailgun.js/commits/8d881636e7de54275d2cccb9652198c9af8cf0a1))
|
|
73
|
+
|
|
74
|
+
|
|
75
|
+
### Other changes
|
|
76
|
+
|
|
77
|
+
* Add missed subject property in readme ([7f4d128](https://github.com/mailgun/mailgun.js/commits/7f4d1286642d4009b25224514d75a0fb51af9bef))
|
|
78
|
+
* Fix link to doc for domains ([944a189](https://github.com/mailgun/mailgun.js/commits/944a1898b03ea020534a7e1be64b1b993ba86439))
|
|
79
|
+
* Regenerate docs ([7f6d318](https://github.com/mailgun/mailgun.js/commits/7f6d3184523c2f9a851093f2b733c5c8fc6806a4))
|
|
80
|
+
* Replace console.log by console.error for logging errors in the readme ([fd9a31f](https://github.com/mailgun/mailgun.js/commits/fd9a31fe90908c9e2e40b2df34cf94a39a716687))
|
|
81
|
+
|
|
5
82
|
### [7.0.2](https://github.com/mailgun/mailgun.js/compare/v7.0.1...v7.0.2) (2022-06-14)
|
|
6
83
|
|
|
7
84
|
|