@auto-engineer/narrative 1.131.0 → 1.134.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/package.json CHANGED
@@ -26,9 +26,9 @@
26
26
  "typescript": "^5.9.2",
27
27
  "zod": "^3.22.4",
28
28
  "zod-to-json-schema": "^3.22.3",
29
- "@auto-engineer/file-store": "1.131.0",
30
- "@auto-engineer/id": "1.131.0",
31
- "@auto-engineer/message-bus": "1.131.0"
29
+ "@auto-engineer/file-store": "1.134.0",
30
+ "@auto-engineer/id": "1.134.0",
31
+ "@auto-engineer/message-bus": "1.134.0"
32
32
  },
33
33
  "devDependencies": {
34
34
  "@types/node": "^20.0.0",
@@ -38,7 +38,7 @@
38
38
  "publishConfig": {
39
39
  "access": "public"
40
40
  },
41
- "version": "1.131.0",
41
+ "version": "1.134.0",
42
42
  "scripts": {
43
43
  "build": "tsx scripts/build.ts",
44
44
  "test": "vitest run --reporter=dot",
package/src/schema.ts CHANGED
@@ -207,6 +207,7 @@ export const MappingEntrySchema = z
207
207
  .object({
208
208
  source: MappingFieldRefSchema.describe('Source field reference'),
209
209
  target: MappingFieldRefSchema.describe('Target field reference'),
210
+ operator: z.enum(['eq', 'ne', 'gt', 'gte', 'lt', 'lte']).optional(),
210
211
  })
211
212
  .describe('Mapping entry linking a source field to a target field');
212
213