@auto-engineer/pipeline 1.110.4 → 1.110.6

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/package.json CHANGED
@@ -14,8 +14,8 @@
14
14
  "get-port": "^7.1.0",
15
15
  "jose": "^5.9.6",
16
16
  "nanoid": "^5.0.0",
17
- "@auto-engineer/file-store": "1.110.4",
18
- "@auto-engineer/message-bus": "1.110.4"
17
+ "@auto-engineer/file-store": "1.110.6",
18
+ "@auto-engineer/message-bus": "1.110.6"
19
19
  },
20
20
  "devDependencies": {
21
21
  "@types/cors": "^2.8.17",
@@ -24,7 +24,7 @@
24
24
  "publishConfig": {
25
25
  "access": "public"
26
26
  },
27
- "version": "1.110.4",
27
+ "version": "1.110.6",
28
28
  "scripts": {
29
29
  "build": "tsc && tsx ../../scripts/fix-esm-imports.ts",
30
30
  "test": "vitest run --reporter=dot",
@@ -12,7 +12,7 @@ export async function createPipelineServerV2(config?: { port?: number }): Promis
12
12
  const engine = await createPipelineEngine();
13
13
  const app = express();
14
14
  app.use(cors());
15
- app.use(express.json());
15
+ app.use(express.json({ limit: '10mb' }));
16
16
  const server = createServer(app);
17
17
 
18
18
  app.post('/command', async (req, res) => {
@@ -83,7 +83,7 @@ export class PipelineServer {
83
83
  this.actualPort = config.port;
84
84
  this.app = express();
85
85
  this.app.use(cors());
86
- this.app.use(express.json());
86
+ this.app.use(express.json({ limit: '10mb' }));
87
87
  this.httpServer = createServer(this.app);
88
88
  this.messageBus = createMessageBus();
89
89
  this.eventStoreContext = createPipelineEventStore();