@n8n/expression-runtime 0.20.1 → 0.21.0

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/ARCHITECTURE.md CHANGED
@@ -383,7 +383,7 @@ The runtime **can only**:
383
383
  - Test observability emission
384
384
  - Test error handling
385
385
 
386
- **Integration Tests** (jest in workflow package):
386
+ **Integration Tests** (vitest in workflow package):
387
387
  - Test full stack with real isolated-vm
388
388
  - Test concurrent evaluations
389
389
  - Test with real workflow data
@@ -252,12 +252,12 @@ export declare const evaluateExpressionMessage: z.ZodObject<{
252
252
  expression: z.ZodString;
253
253
  itemIndex: z.ZodOptional<z.ZodNumber>;
254
254
  }, "strict", z.ZodTypeAny, {
255
- type: "evaluateExpression";
256
255
  expression: string;
256
+ type: "evaluateExpression";
257
257
  itemIndex?: number | undefined;
258
258
  }, {
259
- type: "evaluateExpression";
260
259
  expression: string;
260
+ type: "evaluateExpression";
261
261
  itemIndex?: number | undefined;
262
262
  }>;
263
263
  /**
@@ -499,12 +499,12 @@ export declare const bridgeMessageSchema: z.ZodDiscriminatedUnion<"type", [z.Zod
499
499
  expression: z.ZodString;
500
500
  itemIndex: z.ZodOptional<z.ZodNumber>;
501
501
  }, "strict", z.ZodTypeAny, {
502
- type: "evaluateExpression";
503
502
  expression: string;
503
+ type: "evaluateExpression";
504
504
  itemIndex?: number | undefined;
505
505
  }, {
506
- type: "evaluateExpression";
507
506
  expression: string;
507
+ type: "evaluateExpression";
508
508
  itemIndex?: number | undefined;
509
509
  }>, z.ZodObject<{
510
510
  type: z.ZodLiteral<"getPairedItem">;