@larksuiteoapi/node-sdk 1.47.1 → 1.48.0-alpha.0
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/es/index.js +1 -1
- package/lib/index.js +1 -1
- package/package.json +1 -1
package/es/index.js
CHANGED
|
@@ -80170,7 +80170,7 @@ class Client extends Client$1 {
|
|
|
80170
80170
|
}, options);
|
|
80171
80171
|
this.logger.trace(`send request [${payload.method}]: ${payload.url}`);
|
|
80172
80172
|
const res = yield this.httpInstance
|
|
80173
|
-
.request(Object.assign(Object.assign({}, rest), {
|
|
80173
|
+
.request(Object.assign(Object.assign({ maxBodyLength: Infinity, maxContentLength: Infinity }, rest), {
|
|
80174
80174
|
url: /^http/.test(url)
|
|
80175
80175
|
? url
|
|
80176
80176
|
: `${this.domain}/${formatUrl(url)}`,
|
package/lib/index.js
CHANGED
|
@@ -80185,7 +80185,7 @@ class Client extends Client$1 {
|
|
|
80185
80185
|
}, options);
|
|
80186
80186
|
this.logger.trace(`send request [${payload.method}]: ${payload.url}`);
|
|
80187
80187
|
const res = yield this.httpInstance
|
|
80188
|
-
.request(Object.assign(Object.assign({}, rest), {
|
|
80188
|
+
.request(Object.assign(Object.assign({ maxBodyLength: Infinity, maxContentLength: Infinity }, rest), {
|
|
80189
80189
|
url: /^http/.test(url)
|
|
80190
80190
|
? url
|
|
80191
80191
|
: `${this.domain}/${formatUrl(url)}`,
|