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.
@@ -1,7 +1,7 @@
1
1
  'use strict';
2
2
 
3
3
  ;(function () {
4
- const env = {"__INNETJS__PACKAGE_VERSION":"2.3.8"};
4
+ const env = {"__INNETJS__PACKAGE_VERSION":"2.3.9"};
5
5
  if (typeof process === 'undefined') {
6
6
  globalThis.process = { env: env };
7
7
  } else if (process.env) {
@@ -1,5 +1,5 @@
1
1
  ;(function () {
2
- const env = {"__INNETJS__PACKAGE_VERSION":"2.3.8"};
2
+ const env = {"__INNETJS__PACKAGE_VERSION":"2.3.9"};
3
3
  if (typeof process === 'undefined') {
4
4
  globalThis.process = { env: env };
5
5
  } else if (process.env) {
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.8"};
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
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "innetjs",
3
- "version": "2.3.8",
3
+ "version": "2.3.9",
4
4
  "description": "CLI for innet boilerplate",
5
5
  "homepage": "https://github.com/d8corp/innetjs",
6
6
  "author": "Mikhail Lysikov <d8corp@mail.ru>",