agentgate 0.1.7 → 0.1.8

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/index.js +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agentgate",
3
- "version": "0.1.7",
3
+ "version": "0.1.8",
4
4
  "type": "module",
5
5
  "description": "API gateway for AI agents with human-in-the-loop write approval",
6
6
  "main": "src/index.js",
package/src/index.js CHANGED
@@ -34,7 +34,7 @@ const app = express();
34
34
  const PORT = process.env.PORT || 3050;
35
35
  const BASE_URL = process.env.BASE_URL || `http://localhost:${PORT}`;
36
36
 
37
- app.use(express.json());
37
+ app.use(express.json({ limit: '10mb' }));
38
38
  app.use(express.urlencoded({ extended: true }));
39
39
  app.use(cookieParser(getCookieSecret()));
40
40
  app.use('/public', express.static(join(__dirname, '../public')));