innetjs 2.3.8 → 2.3.9
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/_virtual/_rollup-plugin-process-env.js +1 -1
- package/_virtual/_rollup-plugin-process-env.mjs +1 -1
- package/bin/innet +2 -1
- package/index.js +1 -0
- package/index.mjs +1 -0
- package/package.json +1 -1
package/bin/innet
CHANGED
|
@@ -724,6 +724,7 @@ class InnetJS {
|
|
|
724
724
|
if ((_a = this.proxy) === null || _a === void 0 ? void 0 : _a.startsWith('http')) {
|
|
725
725
|
app.use(this.api, proxy__default["default"](this.proxy, {
|
|
726
726
|
https: httpsUsing,
|
|
727
|
+
limit: '1000mb',
|
|
727
728
|
proxyReqPathResolver: req => req.originalUrl,
|
|
728
729
|
}));
|
|
729
730
|
}
|
|
@@ -771,7 +772,7 @@ class InnetJS {
|
|
|
771
772
|
}
|
|
772
773
|
|
|
773
774
|
(function () {
|
|
774
|
-
const env = {"__INNETJS__PACKAGE_VERSION":"2.3.
|
|
775
|
+
const env = {"__INNETJS__PACKAGE_VERSION":"2.3.9"};
|
|
775
776
|
if (typeof process === 'undefined') {
|
|
776
777
|
globalThis.process = { env: env };
|
|
777
778
|
} else if (process.env) {
|
package/index.js
CHANGED
|
@@ -612,6 +612,7 @@ class InnetJS {
|
|
|
612
612
|
if ((_a = this.proxy) === null || _a === void 0 ? void 0 : _a.startsWith('http')) {
|
|
613
613
|
app.use(this.api, proxy__default["default"](this.proxy, {
|
|
614
614
|
https: httpsUsing,
|
|
615
|
+
limit: '1000mb',
|
|
615
616
|
proxyReqPathResolver: req => req.originalUrl,
|
|
616
617
|
}));
|
|
617
618
|
}
|
package/index.mjs
CHANGED
|
@@ -577,6 +577,7 @@ class InnetJS {
|
|
|
577
577
|
if ((_a = this.proxy) === null || _a === void 0 ? void 0 : _a.startsWith('http')) {
|
|
578
578
|
app.use(this.api, proxy(this.proxy, {
|
|
579
579
|
https: httpsUsing,
|
|
580
|
+
limit: '1000mb',
|
|
580
581
|
proxyReqPathResolver: req => req.originalUrl,
|
|
581
582
|
}));
|
|
582
583
|
}
|