@docbrasil/api-systemmanager 1.0.76 → 1.0.77
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/api/user/document.js +4 -4
- package/api/user/process.js +4 -4
- package/dist/bundle.cjs +8 -8
- package/dist/bundle.mjs +1 -1
- package/package.json +1 -1
package/api/user/document.js
CHANGED
|
@@ -611,10 +611,10 @@ class Documents {
|
|
|
611
611
|
const self = this;
|
|
612
612
|
const reqOpts = {
|
|
613
613
|
headers: {
|
|
614
|
-
'Content-Type': type
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
614
|
+
'Content-Type': type
|
|
615
|
+
},
|
|
616
|
+
maxContentLength: Infinity,
|
|
617
|
+
maxBodyLength: Infinity
|
|
618
618
|
};
|
|
619
619
|
|
|
620
620
|
const onUploadProgress = params.onUploadProgress;
|
package/api/user/process.js
CHANGED
|
@@ -57,10 +57,10 @@ class Process {
|
|
|
57
57
|
_setMaxContentHeader(session) {
|
|
58
58
|
return {
|
|
59
59
|
headers: {
|
|
60
|
-
authorization: session
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
60
|
+
authorization: session
|
|
61
|
+
},
|
|
62
|
+
maxContentLength: Infinity,
|
|
63
|
+
maxBodyLength: Infinity
|
|
64
64
|
};
|
|
65
65
|
}
|
|
66
66
|
|
package/dist/bundle.cjs
CHANGED
|
@@ -1163,10 +1163,10 @@ class Documents {
|
|
|
1163
1163
|
const self = this;
|
|
1164
1164
|
const reqOpts = {
|
|
1165
1165
|
headers: {
|
|
1166
|
-
'Content-Type': type
|
|
1167
|
-
|
|
1168
|
-
|
|
1169
|
-
|
|
1166
|
+
'Content-Type': type
|
|
1167
|
+
},
|
|
1168
|
+
maxContentLength: Infinity,
|
|
1169
|
+
maxBodyLength: Infinity
|
|
1170
1170
|
};
|
|
1171
1171
|
|
|
1172
1172
|
const onUploadProgress = params.onUploadProgress;
|
|
@@ -1462,10 +1462,10 @@ class Process {
|
|
|
1462
1462
|
_setMaxContentHeader(session) {
|
|
1463
1463
|
return {
|
|
1464
1464
|
headers: {
|
|
1465
|
-
authorization: session
|
|
1466
|
-
|
|
1467
|
-
|
|
1468
|
-
|
|
1465
|
+
authorization: session
|
|
1466
|
+
},
|
|
1467
|
+
maxContentLength: Infinity,
|
|
1468
|
+
maxBodyLength: Infinity
|
|
1469
1469
|
};
|
|
1470
1470
|
}
|
|
1471
1471
|
|