Skip to content

Commit 9f2c397

Browse files
chore(release): 8.2.2
1 parent 5b273ad commit 9f2c397

24 files changed

+68
-52
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
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.
44

5+
### [8.2.2](https://github.com/mailgun/mailgun.js/compare/v8.2.1...v8.2.2) (2023-05-26)
6+
7+
8+
### Bug Fixes
9+
10+
* **deps-dev:** bump webpack from 5.70.0 to 5.76.0 ([3b28232](https://github.com/mailgun/mailgun.js/commits/3b2823281e5ff59f1d04e55bf4f37da6bc691df7))
11+
* **deps:** bump yaml and @commitlint/cli ([c6d1538](https://github.com/mailgun/mailgun.js/commits/c6d153874e306a8b4209b544005918e5307ce332))
12+
513
### [8.2.1](https://github.com/mailgun/mailgun.js/compare/v8.2.0...v8.2.1) (2023-03-06)
614

715

dist/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
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.
44

5+
### [8.2.2](https://github.com/mailgun/mailgun.js/compare/v8.2.1...v8.2.2) (2023-05-26)
6+
7+
8+
### Bug Fixes
9+
10+
* **deps-dev:** bump webpack from 5.70.0 to 5.76.0 ([3b28232](https://github.com/mailgun/mailgun.js/commits/3b2823281e5ff59f1d04e55bf4f37da6bc691df7))
11+
* **deps:** bump yaml and @commitlint/cli ([c6d1538](https://github.com/mailgun/mailgun.js/commits/c6d153874e306a8b4209b544005918e5307ce332))
12+
513
### [8.2.1](https://github.com/mailgun/mailgun.js/compare/v8.2.0...v8.2.1) (2023-03-06)
614

715

dist/interfaces/DomainCredentials.d.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
export declare type DomainCredentialsQuery = {
1+
export type DomainCredentialsQuery = {
22
limit: number;
33
skip: number;
44
};
5-
export declare type DomainCredentials = {
5+
export type DomainCredentials = {
66
login: string;
77
password: string;
88
};
@@ -41,7 +41,7 @@ export interface DeletedDomainCredentialsResponse {
4141
spec: string;
4242
};
4343
}
44-
export declare type UpdateDomainCredentialsData = {
44+
export type UpdateDomainCredentialsData = {
4545
password: string;
4646
};
4747
export interface IDomainCredentials {

dist/interfaces/DomainTags.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ export declare enum Resolution {
55
DAY = "day",
66
MONTH = "month"
77
}
8-
export declare type DomainTagsQuery = {
8+
export type DomainTagsQuery = {
99
limit: number;
1010
page?: string;
1111
};
12-
export declare type DomainTagsStatisticQuery = {
12+
export type DomainTagsStatisticQuery = {
1313
event: string;
1414
start?: number;
1515
end?: number;

dist/interfaces/DomainTemplates.d.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,38 +4,38 @@ export declare enum YesNo {
44
YES = "yes",
55
NO = "no"
66
}
7-
export declare type DomainTemplateData = {
7+
export type DomainTemplateData = {
88
name: string;
99
description: string;
1010
template: string;
1111
tag?: string;
1212
engine?: string;
1313
comment?: string;
1414
};
15-
export declare type DomainTemplateVersionData = {
15+
export type DomainTemplateVersionData = {
1616
template: string;
1717
tag: string;
1818
engine?: string;
1919
comment?: string;
2020
active?: YesNo;
2121
};
22-
export declare type DomainTemplateUpdateData = {
22+
export type DomainTemplateUpdateData = {
2323
description: string;
2424
};
25-
export declare type DomainTemplateUpdateVersionData = {
25+
export type DomainTemplateUpdateVersionData = {
2626
template?: string;
2727
comment?: string;
2828
active?: YesNo;
2929
};
30-
export declare type DomainTemplatesQuery = {
30+
export type DomainTemplatesQuery = {
3131
/** 'page' (optionally 'p') params from previous response's 'paging' object.
3232
* Value must be stringified as query params. Ex: '?page=first','?page=next&p=name-of-last-item'
3333
.... */
3434
page?: `?${string}`;
3535
/** Number of records to retrieve. Default value is 10. */
3636
limit?: number;
3737
};
38-
export declare type TemplateQuery = {
38+
export type TemplateQuery = {
3939
active: YesNo;
4040
};
4141
export interface ShortTemplateVersion {

dist/interfaces/DomainTracking.d.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,13 @@ export interface UpdateDomainTrackingResponse {
3535
status: number;
3636
body: UpdatedOpenTracking;
3737
}
38-
export declare type OpenTrackingInfo = {
38+
export type OpenTrackingInfo = {
3939
active: 'yes' | 'no' | 'true' | 'false';
4040
};
41-
export declare type ClickTrackingInfo = {
41+
export type ClickTrackingInfo = {
4242
active: 'yes' | 'no' | 'true' | 'false' | 'htmlonly';
4343
};
44-
export declare type UnsubscribeTrackingInfo = {
44+
export type UnsubscribeTrackingInfo = {
4545
active: 'yes' | 'no' | 'true' | 'false';
4646
html_footer: string;
4747
text_footer: string;

dist/interfaces/Domains.d.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
export declare type DomainsQuery = {
1+
export type DomainsQuery = {
22
authority?: string;
33
state?: 'active' | 'unverified' | 'disabled';
44
limit?: number;
@@ -44,7 +44,7 @@ export interface DNSRecord {
4444
valid: string;
4545
value: string;
4646
}
47-
export declare type DomainResponseData = {
47+
export type DomainResponseData = {
4848
status: number;
4949
body: {
5050
domain: DomainData;
@@ -67,7 +67,7 @@ export interface DestroyedDomainResponse {
6767
status: number;
6868
body: MessageResponse;
6969
}
70-
export declare type ConnectionSettings = {
70+
export type ConnectionSettings = {
7171
require_tls: boolean;
7272
skip_verification: boolean;
7373
};

dist/interfaces/IpPools.d.ts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,38 +17,38 @@ export interface IpPoolListResult {
1717
message: string;
1818
status: number;
1919
}
20-
export declare type IpPoolUpdateData = {
20+
export type IpPoolUpdateData = {
2121
name: string;
2222
description: string;
2323
ips: string[];
2424
};
25-
export declare type IpPoolMessageResponse = {
25+
export type IpPoolMessageResponse = {
2626
body: {
2727
message: string;
2828
};
2929
status: number;
3030
};
31-
export declare type IpPoolMessageResult = {
31+
export type IpPoolMessageResult = {
3232
message: string;
3333
status: number;
3434
};
35-
export declare type IpPoolDeleteData = {
35+
export type IpPoolDeleteData = {
3636
ip?: string;
3737
pool_id?: string;
3838
};
39-
export declare type IpPoolCreateData = {
39+
export type IpPoolCreateData = {
4040
name: string;
4141
description?: string;
4242
ips?: string[];
4343
};
44-
export declare type IpPoolCreateResponse = {
44+
export type IpPoolCreateResponse = {
4545
body: {
4646
message: string;
4747
pool_id: string;
4848
};
4949
status: number;
5050
};
51-
export declare type IpPoolCreateResult = {
51+
export type IpPoolCreateResult = {
5252
status: number;
5353
message: string;
5454
pool_id: string;

dist/interfaces/Messages.d.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
*
55
* @see {@link https://stackoverflow.com/a/49725198}
66
*/
7-
export declare type AtLeastOneKeyPresent<Object_, Keys extends keyof Object_ = keyof Object_> = Pick<Object_, Exclude<keyof Object_, Keys>> & {
7+
export type AtLeastOneKeyPresent<Object_, Keys extends keyof Object_ = keyof Object_> = Pick<Object_, Exclude<keyof Object_, Keys>> & {
88
[K in Keys]-?: Required<Pick<Object_, K>> & Partial<Pick<Object_, Exclude<Keys, K>>>;
99
}[Keys];
10-
export declare type MailgunMessageContent = AtLeastOneKeyPresent<{
10+
export type MailgunMessageContent = AtLeastOneKeyPresent<{
1111
/**
1212
* Body of the message. (text version)
1313
*/
@@ -25,7 +25,7 @@ export declare type MailgunMessageContent = AtLeastOneKeyPresent<{
2525
*/
2626
template?: string;
2727
}>;
28-
export declare type MailgunMessageData = MailgunMessageContent & {
28+
export type MailgunMessageData = MailgunMessageContent & {
2929
/**
3030
* Email address for `From` header
3131
*/

dist/interfaces/StatsOptions.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ export interface StatsOptions {
1212
resolution: string;
1313
stats: Stat[];
1414
}
15-
export declare type StatsEvent = 'accepted' | 'delivered' | 'opened' | 'clicked' | 'unsubscribed' | 'stored' | 'complained' | 'failed';
15+
export type StatsEvent = 'accepted' | 'delivered' | 'opened' | 'clicked' | 'unsubscribed' | 'stored' | 'complained' | 'failed';
1616
export interface StatsQuery {
1717
event: StatsEvent | StatsEvent[];
1818
start?: string | Date;

0 commit comments

Comments
 (0)