mailgun.js 7.0.0 → 7.0.3
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 +29 -0
- package/README.md +53 -52
- package/mailgun.node.js +2 -2
- package/mailgun.node.js.LICENSE.txt +1 -1
- package/mailgun.web.js +2 -2
- package/mailgun.web.js.LICENSE.txt +1 -1
- package/messages.d.ts +1 -0
- package/package.json +1 -1
- package/request.d.ts +1 -0
- package/version.md +1 -1
package/messages.d.ts
CHANGED
|
@@ -3,6 +3,7 @@ import Request from './request';
|
|
|
3
3
|
export default class MessagesClient {
|
|
4
4
|
request: Request;
|
|
5
5
|
constructor(request: Request);
|
|
6
|
+
private prepareBooleanValues;
|
|
6
7
|
_parseResponse(response: MessagesSendAPIResponse): MessagesSendResult;
|
|
7
8
|
create(domain: string, data: MailgunMessageData): Promise<MessagesSendResult>;
|
|
8
9
|
}
|
package/package.json
CHANGED
package/request.d.ts
CHANGED
|
@@ -10,6 +10,7 @@ declare class Request {
|
|
|
10
10
|
private timeout;
|
|
11
11
|
private headers;
|
|
12
12
|
private formDataBuilder;
|
|
13
|
+
private maxBodyLength;
|
|
13
14
|
constructor(options: RequestOptions, formData: InputFormData);
|
|
14
15
|
request(method: string, url: string, onCallOptions?: Record<string, unknown | Record<string, unknown>>): Promise<APIResponse>;
|
|
15
16
|
private getResponseBody;
|
package/version.md
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
7.0.
|
|
1
|
+
7.0.3
|