mailgun.js 8.0.3 → 8.0.5

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,31 @@
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.5](https://github.com/mailgun/mailgun.js/compare/v8.0.4...v8.0.5) (2022-11-17)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * **deps:** bump loader-utils from 2.0.3 to 2.0.4 ([59f140c](https://github.com/mailgun/mailgun.js/commits/59f140cdbaaa9276c1b9cba6e97aea8a2863d223))
11
+
12
+
13
+ ### Other changes
14
+
15
+ * Update standard-version types array to include pull-requests from dependabot ([ba165a8](https://github.com/mailgun/mailgun.js/commits/ba165a81391f8bd68d8f62109d715757b7708a97))
16
+
17
+ ### [8.0.4](https://github.com/mailgun/mailgun.js/compare/v8.0.3...v8.0.4) (2022-11-16)
18
+
19
+
20
+ ### Bug Fixes
21
+
22
+ * **types:** Clarify DomainTemplatesQuery properties ([dcc633c](https://github.com/mailgun/mailgun.js/commits/dcc633c131e3e118518c27b0e4c9c34957d57bff))
23
+
5
24
  ### [8.0.3](https://github.com/mailgun/mailgun.js/compare/v8.0.2...v8.0.3) (2022-11-16)
6
25
 
26
+ ### Bug Fixes
27
+ * Bumps [loader-utils](https://github.com/webpack/loader-utils) from 2.0.2 to 2.0.3.
28
+
29
+
7
30
  ### [8.0.2](https://github.com/mailgun/mailgun.js/compare/v8.0.1...v8.0.2) (2022-10-24)
8
31
 
9
32
 
@@ -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;