Skip to content

Commit

Permalink
chore(release): 8.0.4
Browse files Browse the repository at this point in the history
Oleksandr Mazepa committed Nov 16, 2022
1 parent d8b1e12 commit fbf1c98
Showing 9 changed files with 31 additions and 9 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -2,6 +2,13 @@

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.0.4](https://github.com/mailgun/mailgun.js/compare/v8.0.3...v8.0.4) (2022-11-16)


### Bug Fixes

* **types:** Clarify DomainTemplatesQuery properties ([dcc633c](https://github.com/mailgun/mailgun.js/commits/dcc633c131e3e118518c27b0e4c9c34957d57bff))

### [8.0.3](https://github.com/mailgun/mailgun.js/compare/v8.0.2...v8.0.3) (2022-11-16)

### Bug Fixes
11 changes: 11 additions & 0 deletions dist/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -2,8 +2,19 @@

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.0.4](https://github.com/mailgun/mailgun.js/compare/v8.0.3...v8.0.4) (2022-11-16)


### Bug Fixes

* **types:** Clarify DomainTemplatesQuery properties ([dcc633c](https://github.com/mailgun/mailgun.js/commits/dcc633c131e3e118518c27b0e4c9c34957d57bff))

### [8.0.3](https://github.com/mailgun/mailgun.js/compare/v8.0.2...v8.0.3) (2022-11-16)

### Bug Fixes
* Bumps [loader-utils](https://github.com/webpack/loader-utils) from 2.0.2 to 2.0.3.


### [8.0.2](https://github.com/mailgun/mailgun.js/compare/v8.0.1...v8.0.2) (2022-10-24)


8 changes: 6 additions & 2 deletions dist/interfaces/DomainTemplates.d.ts
Original file line number Diff line number Diff line change
@@ -28,8 +28,12 @@ export declare type DomainTemplateUpdateVersionData = {
active?: YesNo;
};
export declare type DomainTemplatesQuery = {
page: 'string';
limit: number;
/** '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 = {
active: YesNo;
2 changes: 1 addition & 1 deletion dist/mailgun.node.js.LICENSE.txt
Original file line number Diff line number Diff line change
@@ -14,4 +14,4 @@

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

/*! mailgun.js v8.0.2 */
/*! mailgun.js v8.0.3 */
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.0.2 */
/*! mailgun.js v8.0.3 */
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.0.3",
"version": "8.0.4",
"main": "./mailgun.node.js",
"browser": "./mailgun.web.js",
"types": "./index.d.ts",
2 changes: 1 addition & 1 deletion dist/version.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
8.0.3
8.0.4
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.0.3",
"version": "8.0.4",
"main": "./dist/mailgun.node.js",
"browser": "./dist/mailgun.web.js",
"types": "./index.d.ts",

0 comments on commit fbf1c98

Please sign in to comment.