mailgun.js 12.0.1 → 12.0.2
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/AMD/definitions.amd.js +1 -1
- package/AMD/mailgun.amd.js +1 -1
- package/CHANGELOG.md +7 -0
- package/CJS/definitions.cjs +1 -1
- package/CJS/mailgun.node.cjs +1 -1
- package/ESM/definitions.browser.js +2 -2
- package/ESM/definitions.browser.js.map +1 -0
- package/ESM/definitions.node.js +2 -2
- package/ESM/definitions.node.js.map +1 -0
- package/ESM/mailgun.browser.js +1 -1
- package/ESM/mailgun.node.js +1 -1
- package/Types/index.js +1 -1
- package/package.json +1 -1
- package/version.md +1 -1
package/Types/index.js
CHANGED
|
@@ -4405,7 +4405,7 @@ var Request$1 = /** @class */ (function () {
|
|
|
4405
4405
|
this.username = options.username;
|
|
4406
4406
|
this.key = options.key;
|
|
4407
4407
|
this.url = options.url;
|
|
4408
|
-
this.timeout = options.timeout;
|
|
4408
|
+
this.timeout = options.timeout || 60000; // Default timeout is 60 seconds
|
|
4409
4409
|
this.headers = this.makeHeadersFromObject(options.headers);
|
|
4410
4410
|
this.formDataBuilder = new FormDataBuilder(formData);
|
|
4411
4411
|
this.maxBodyLength = 52428800; // 50 MB
|
package/package.json
CHANGED
package/version.md
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
12.0.
|
|
1
|
+
12.0.2
|