Skip to content

Commit

Permalink
chore(release): 8.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
olexandr-mazepa committed May 26, 2023
1 parent 5b273ad commit 9f2c397
Show file tree
Hide file tree
Showing 24 changed files with 68 additions and 52 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@

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.

### [8.2.2](https://github.com/mailgun/mailgun.js/compare/v8.2.1...v8.2.2) (2023-05-26)


### Bug Fixes

* **deps-dev:** bump webpack from 5.70.0 to 5.76.0 ([3b28232](https://github.com/mailgun/mailgun.js/commits/3b2823281e5ff59f1d04e55bf4f37da6bc691df7))
* **deps:** bump yaml and @commitlint/cli ([c6d1538](https://github.com/mailgun/mailgun.js/commits/c6d153874e306a8b4209b544005918e5307ce332))

### [8.2.1](https://github.com/mailgun/mailgun.js/compare/v8.2.0...v8.2.1) (2023-03-06)


Expand Down
8 changes: 8 additions & 0 deletions dist/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@

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.

### [8.2.2](https://github.com/mailgun/mailgun.js/compare/v8.2.1...v8.2.2) (2023-05-26)


### Bug Fixes

* **deps-dev:** bump webpack from 5.70.0 to 5.76.0 ([3b28232](https://github.com/mailgun/mailgun.js/commits/3b2823281e5ff59f1d04e55bf4f37da6bc691df7))
* **deps:** bump yaml and @commitlint/cli ([c6d1538](https://github.com/mailgun/mailgun.js/commits/c6d153874e306a8b4209b544005918e5307ce332))

### [8.2.1](https://github.com/mailgun/mailgun.js/compare/v8.2.0...v8.2.1) (2023-03-06)


Expand Down
6 changes: 3 additions & 3 deletions dist/interfaces/DomainCredentials.d.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
export declare type DomainCredentialsQuery = {
export type DomainCredentialsQuery = {
limit: number;
skip: number;
};
export declare type DomainCredentials = {
export type DomainCredentials = {
login: string;
password: string;
};
Expand Down Expand Up @@ -41,7 +41,7 @@ export interface DeletedDomainCredentialsResponse {
spec: string;
};
}
export declare type UpdateDomainCredentialsData = {
export type UpdateDomainCredentialsData = {
password: string;
};
export interface IDomainCredentials {
Expand Down
4 changes: 2 additions & 2 deletions dist/interfaces/DomainTags.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ export declare enum Resolution {
DAY = "day",
MONTH = "month"
}
export declare type DomainTagsQuery = {
export type DomainTagsQuery = {
limit: number;
page?: string;
};
export declare type DomainTagsStatisticQuery = {
export type DomainTagsStatisticQuery = {
event: string;
start?: number;
end?: number;
Expand Down
12 changes: 6 additions & 6 deletions dist/interfaces/DomainTemplates.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,38 +4,38 @@ export declare enum YesNo {
YES = "yes",
NO = "no"
}
export declare type DomainTemplateData = {
export type DomainTemplateData = {
name: string;
description: string;
template: string;
tag?: string;
engine?: string;
comment?: string;
};
export declare type DomainTemplateVersionData = {
export type DomainTemplateVersionData = {
template: string;
tag: string;
engine?: string;
comment?: string;
active?: YesNo;
};
export declare type DomainTemplateUpdateData = {
export type DomainTemplateUpdateData = {
description: string;
};
export declare type DomainTemplateUpdateVersionData = {
export type DomainTemplateUpdateVersionData = {
template?: string;
comment?: string;
active?: YesNo;
};
export declare type DomainTemplatesQuery = {
export type DomainTemplatesQuery = {
/** 'page' (optionally 'p') params from previous response's 'paging' object.
* Value must be stringified as query params. Ex: '?page=first','?page=next&p=name-of-last-item'
.... */
page?: `?${string}`;
/** Number of records to retrieve. Default value is 10. */
limit?: number;
};
export declare type TemplateQuery = {
export type TemplateQuery = {
active: YesNo;
};
export interface ShortTemplateVersion {
Expand Down
6 changes: 3 additions & 3 deletions dist/interfaces/DomainTracking.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,13 @@ export interface UpdateDomainTrackingResponse {
status: number;
body: UpdatedOpenTracking;
}
export declare type OpenTrackingInfo = {
export type OpenTrackingInfo = {
active: 'yes' | 'no' | 'true' | 'false';
};
export declare type ClickTrackingInfo = {
export type ClickTrackingInfo = {
active: 'yes' | 'no' | 'true' | 'false' | 'htmlonly';
};
export declare type UnsubscribeTrackingInfo = {
export type UnsubscribeTrackingInfo = {
active: 'yes' | 'no' | 'true' | 'false';
html_footer: string;
text_footer: string;
Expand Down
6 changes: 3 additions & 3 deletions dist/interfaces/Domains.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export declare type DomainsQuery = {
export type DomainsQuery = {
authority?: string;
state?: 'active' | 'unverified' | 'disabled';
limit?: number;
Expand Down Expand Up @@ -44,7 +44,7 @@ export interface DNSRecord {
valid: string;
value: string;
}
export declare type DomainResponseData = {
export type DomainResponseData = {
status: number;
body: {
domain: DomainData;
Expand All @@ -67,7 +67,7 @@ export interface DestroyedDomainResponse {
status: number;
body: MessageResponse;
}
export declare type ConnectionSettings = {
export type ConnectionSettings = {
require_tls: boolean;
skip_verification: boolean;
};
Expand Down
14 changes: 7 additions & 7 deletions dist/interfaces/IpPools.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,38 +17,38 @@ export interface IpPoolListResult {
message: string;
status: number;
}
export declare type IpPoolUpdateData = {
export type IpPoolUpdateData = {
name: string;
description: string;
ips: string[];
};
export declare type IpPoolMessageResponse = {
export type IpPoolMessageResponse = {
body: {
message: string;
};
status: number;
};
export declare type IpPoolMessageResult = {
export type IpPoolMessageResult = {
message: string;
status: number;
};
export declare type IpPoolDeleteData = {
export type IpPoolDeleteData = {
ip?: string;
pool_id?: string;
};
export declare type IpPoolCreateData = {
export type IpPoolCreateData = {
name: string;
description?: string;
ips?: string[];
};
export declare type IpPoolCreateResponse = {
export type IpPoolCreateResponse = {
body: {
message: string;
pool_id: string;
};
status: number;
};
export declare type IpPoolCreateResult = {
export type IpPoolCreateResult = {
status: number;
message: string;
pool_id: string;
Expand Down
6 changes: 3 additions & 3 deletions dist/interfaces/Messages.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
*
* @see {@link https://stackoverflow.com/a/49725198}
*/
export declare type AtLeastOneKeyPresent<Object_, Keys extends keyof Object_ = keyof Object_> = Pick<Object_, Exclude<keyof Object_, Keys>> & {
export type AtLeastOneKeyPresent<Object_, Keys extends keyof Object_ = keyof Object_> = Pick<Object_, Exclude<keyof Object_, Keys>> & {
[K in Keys]-?: Required<Pick<Object_, K>> & Partial<Pick<Object_, Exclude<Keys, K>>>;
}[Keys];
export declare type MailgunMessageContent = AtLeastOneKeyPresent<{
export type MailgunMessageContent = AtLeastOneKeyPresent<{
/**
* Body of the message. (text version)
*/
Expand All @@ -25,7 +25,7 @@ export declare type MailgunMessageContent = AtLeastOneKeyPresent<{
*/
template?: string;
}>;
export declare type MailgunMessageData = MailgunMessageContent & {
export type MailgunMessageData = MailgunMessageContent & {
/**
* Email address for `From` header
*/
Expand Down
2 changes: 1 addition & 1 deletion dist/interfaces/StatsOptions.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export interface StatsOptions {
resolution: string;
stats: Stat[];
}
export declare type StatsEvent = 'accepted' | 'delivered' | 'opened' | 'clicked' | 'unsubscribed' | 'stored' | 'complained' | 'failed';
export type StatsEvent = 'accepted' | 'delivered' | 'opened' | 'clicked' | 'unsubscribed' | 'stored' | 'complained' | 'failed';
export interface StatsQuery {
event: StatsEvent | StatsEvent[];
start?: string | Date;
Expand Down
6 changes: 3 additions & 3 deletions dist/interfaces/Suppressions/Suppressions.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ export interface SuppressionList {
pages: ParsedPagesList;
status: number;
}
export declare type SuppressionListQuery = {
export type SuppressionListQuery = {
limit?: number;
page?: string;
};
export declare type SuppressionDataType = BounceData | ComplaintData | UnsubscribeData | WhiteListData;
export type SuppressionDataType = BounceData | ComplaintData | UnsubscribeData | WhiteListData;
export interface SuppressionListResponse {
body: {
items: BounceData[] | ComplaintData[] | UnsubscribeData[] | WhiteListData[];
Expand All @@ -45,7 +45,7 @@ export interface SuppressionDestroyResult {
address: string;
status: number;
}
export declare type SuppressionCreationData = {
export type SuppressionCreationData = {
address: string;
code?: number;
error?: string;
Expand Down
2 changes: 1 addition & 1 deletion dist/interfaces/Validate.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export declare type ValidationQuery = {
export type ValidationQuery = {
address: string;
};
export interface ValidationResult {
Expand Down
2 changes: 1 addition & 1 deletion dist/interfaces/Webhooks.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export interface WebhookList {
urls: string[];
};
}
export declare type WebhooksQuery = {
export type WebhooksQuery = {
limit?: number;
skip?: number;
};
Expand Down
4 changes: 2 additions & 2 deletions dist/interfaces/lists.d.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import { PagesList, ParsedPagesList } from './NavigationThruPages';
export declare type ListsQuery = {
export type ListsQuery = {
address?: string;
limit?: number;
page?: string;
};
export declare type CreateUpdateList = {
export type CreateUpdateList = {
address: string;
name?: string;
description?: string;
Expand Down
8 changes: 4 additions & 4 deletions dist/interfaces/mailListMembers.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,16 @@ export interface MailListMember {
[key: string]: any;
};
}
export declare type MailListMembersQuery = {
export type MailListMembersQuery = {
subscribed?: 'yes' | 'no';
limit?: number;
page?: string;
};
export declare type MultipleMembersData = {
export type MultipleMembersData = {
members: Array<MailListMember>;
upsert: 'yes' | 'no';
};
export declare type MultipleMembersReqData = {
export type MultipleMembersReqData = {
members: string;
upsert: 'yes' | 'no';
};
Expand All @@ -28,7 +28,7 @@ export interface CreateUpdateMailListMembers {
subscribed?: 'yes' | 'no' | boolean;
upsert?: 'yes' | 'no';
}
export declare type CreateUpdateMailListMembersReq = {
export type CreateUpdateMailListMembersReq = {
address: string;
name?: string;
vars?: string;
Expand Down
4 changes: 2 additions & 2 deletions dist/interfaces/routes.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ export interface DestroyRouteResponse {
id: string;
message: string;
}
export declare type CreateUpdateRouteData = {
export type CreateUpdateRouteData = {
priority?: number;
description?: string;
expression: string;
action: string[];
};
export declare type RoutesListQuery = {
export type RoutesListQuery = {
limit?: number;
skip?: number;
};
4 changes: 2 additions & 2 deletions dist/mailgun.node.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/mailgun.node.js.LICENSE.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@

/*! https://mths.be/base64 v1.0.0 by @mathias | MIT license */

/*! mailgun.js v8.2.0 */
/*! mailgun.js v8.2.1 */
4 changes: 2 additions & 2 deletions dist/mailgun.web.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/mailgun.web.js.LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
/*! https://mths.be/base64 v1.0.0 by @mathias | MIT license */

/*! mailgun.js v8.2.0 */
/*! mailgun.js v8.2.1 */
2 changes: 1 addition & 1 deletion dist/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mailgun.js",
"version": "8.2.1",
"version": "8.2.2",
"main": "./mailgun.node.js",
"browser": "./mailgun.web.js",
"types": "./index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion dist/version.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
8.2.1
8.2.2
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mailgun.js",
"version": "8.2.1",
"version": "8.2.2",
"main": "./dist/mailgun.node.js",
"browser": "./dist/mailgun.web.js",
"types": "./index.d.ts",
Expand Down

0 comments on commit 9f2c397

Please sign in to comment.