n8n-nodes-tembory 1.0.49 → 1.0.50

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.
@@ -1444,7 +1444,12 @@ const applyOperationalPreset = (advanced = {}) => {
1444
1444
  payloadFormat: 'auditJson',
1445
1445
  },
1446
1446
  };
1447
- const resolved = { ...(presets[preset === 'lab' ? 'diagnostic' : preset] || {}), ...advanced };
1447
+ const presetKey = preset === 'lab' ? 'diagnostic' : preset;
1448
+ const resolved = { ...(presets[presetKey] || {}), ...advanced };
1449
+ if (/^production/i.test(presetKey)) {
1450
+ resolved.compactForAgent = true;
1451
+ resolved.compactStateSections = true;
1452
+ }
1448
1453
  if (resolved.useVectorMemory === false) {
1449
1454
  resolved.includeRelations = false;
1450
1455
  resolved.includeEntityTimeline = false;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "n8n-nodes-tembory",
3
- "version": "1.0.49",
3
+ "version": "1.0.50",
4
4
  "description": "Tembory node for n8n AI Agents with profile, tools, timeline, graph and semantic memory",
5
5
  "license": "MIT",
6
6
  "homepage": "https://tembory.com",