mailgun.js 8.0.4 → 8.0.6

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,6 +2,25 @@
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.6](https://github.com/mailgun/mailgun.js/compare/v8.0.5...v8.0.6) (2022-11-17)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * Fix domains list method when items property is null ([4153941](https://github.com/mailgun/mailgun.js/commits/41539418a1b774a79bc05082d7df9409cc5bdf81))
11
+
12
+ ### [8.0.5](https://github.com/mailgun/mailgun.js/compare/v8.0.4...v8.0.5) (2022-11-17)
13
+
14
+
15
+ ### Bug Fixes
16
+
17
+ * **deps:** bump loader-utils from 2.0.3 to 2.0.4 ([59f140c](https://github.com/mailgun/mailgun.js/commits/59f140cdbaaa9276c1b9cba6e97aea8a2863d223))
18
+
19
+
20
+ ### Other changes
21
+
22
+ * Update standard-version types array to include pull-requests from dependabot ([ba165a8](https://github.com/mailgun/mailgun.js/commits/ba165a81391f8bd68d8f62109d715757b7708a97))
23
+
5
24
  ### [8.0.4](https://github.com/mailgun/mailgun.js/compare/v8.0.3...v8.0.4) (2022-11-16)
6
25
 
7
26
 
package/domains.d.ts CHANGED
@@ -30,7 +30,7 @@ export default class DomainClient {
30
30
  domainTags: IDomainTagsClient;
31
31
  constructor(request: Request, domainCredentialsClient: DomainCredentialsClient, domainTemplatesClient: DomainTemplatesClient, domainTagsClient: DomainTagsClient);
32
32
  private _parseMessage;
33
- private _parseDomainList;
33
+ private parseDomainList;
34
34
  private _parseDomain;
35
35
  private _parseTrackingSettings;
36
36
  private _parseTrackingUpdate;
@@ -56,7 +56,7 @@ export declare type DomainResponseData = {
56
56
  export interface DomainListResponseData {
57
57
  status: number;
58
58
  body: {
59
- items: DomainsListItem[];
59
+ items: DomainsListItem[] | null;
60
60
  total_count: number;
61
61
  };
62
62
  }