mailgun.js 8.0.3 → 8.0.4

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 CHANGED
@@ -2,8 +2,19 @@
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.4](https://github.com/mailgun/mailgun.js/compare/v8.0.3...v8.0.4) (2022-11-16)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * **types:** Clarify DomainTemplatesQuery properties ([dcc633c](https://github.com/mailgun/mailgun.js/commits/dcc633c131e3e118518c27b0e4c9c34957d57bff))
11
+
5
12
  ### [8.0.3](https://github.com/mailgun/mailgun.js/compare/v8.0.2...v8.0.3) (2022-11-16)
6
13
 
14
+ ### Bug Fixes
15
+ * Bumps [loader-utils](https://github.com/webpack/loader-utils) from 2.0.2 to 2.0.3.
16
+
17
+
7
18
  ### [8.0.2](https://github.com/mailgun/mailgun.js/compare/v8.0.1...v8.0.2) (2022-10-24)
8
19
 
9
20
 
@@ -28,8 +28,12 @@ export declare type DomainTemplateUpdateVersionData = {
28
28
  active?: YesNo;
29
29
  };
30
30
  export declare type DomainTemplatesQuery = {
31
- page: 'string';
32
- limit: number;
31
+ /** 'page' (optionally 'p') params from previous response's 'paging' object.
32
+ * Value must be stringified as query params. Ex: '?page=first','?page=next&p=name-of-last-item'
33
+ .... */
34
+ page?: `?${string}`;
35
+ /** Number of records to retrieve. Default value is 10. */
36
+ limit?: number;
33
37
  };
34
38
  export declare type TemplateQuery = {
35
39
  active: YesNo;
@@ -14,4 +14,4 @@
14
14
 
15
15
  /*! https://mths.be/base64 v1.0.0 by @mathias | MIT license */
16
16
 
17
- /*! mailgun.js v8.0.2 */
17
+ /*! mailgun.js v8.0.3 */
@@ -1,3 +1,3 @@
1
1
  /*! https://mths.be/base64 v1.0.0 by @mathias | MIT license */
2
2
 
3
- /*! mailgun.js v8.0.2 */
3
+ /*! mailgun.js v8.0.3 */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mailgun.js",
3
- "version": "8.0.3",
3
+ "version": "8.0.4",
4
4
  "main": "./mailgun.node.js",
5
5
  "browser": "./mailgun.web.js",
6
6
  "types": "./index.d.ts",
package/version.md CHANGED
@@ -1 +1 @@
1
- 8.0.3
1
+ 8.0.4