stella-timeline-plugin 2.0.3 → 2.0.4

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/dist/index.js +2 -2
  2. package/package.json +2 -2
package/dist/index.js CHANGED
@@ -9,7 +9,7 @@ exports.timelinePluginEntry = (0, openclaw_sdk_compat_1.definePluginEntry)({
9
9
  name: plugin_metadata_1.TIMELINE_PLUGIN_NAME,
10
10
  description: plugin_metadata_1.TIMELINE_PLUGIN_DESCRIPTION,
11
11
  register(api) {
12
- api.registerTool((0, openclaw_sdk_compat_1.makeTimelineToolRegistration)(), { optional: true });
12
+ api.registerTool((0, openclaw_sdk_compat_1.makeTimelineToolRegistration)());
13
13
  },
14
14
  });
15
15
  exports.timelinePlugin = (0, openclaw_sdk_compat_1.materializePlugin)(exports.timelinePluginEntry);
@@ -20,7 +20,7 @@ const openClawTimelinePlugin = {
20
20
  description: plugin_metadata_1.TIMELINE_PLUGIN_DESCRIPTION,
21
21
  register(api) {
22
22
  const runtimeApi = api;
23
- api.registerTool((0, openclaw_timeline_runtime_1.makeOpenClawTimelineResolveToolFactory)(runtimeApi), { optional: true });
23
+ api.registerTool((0, openclaw_timeline_runtime_1.makeOpenClawTimelineResolveToolFactory)(runtimeApi));
24
24
  },
25
25
  };
26
26
  exports.default = openClawTimelinePlugin;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "stella-timeline-plugin",
3
- "version": "2.0.3",
3
+ "version": "2.0.4",
4
4
  "description": "Native OpenClaw timeline plugin with a canonical timeline_resolve tool, bundled skill routing, and guarded append-only writes.",
5
5
  "keywords": [
6
6
  "openclaw",
@@ -22,7 +22,7 @@
22
22
  "url": "https://github.com/tower1229/Her/issues"
23
23
  },
24
24
  "engines": {
25
- "node": ">=22.0.0"
25
+ "node": ">=24.0.0"
26
26
  },
27
27
  "scripts": {
28
28
  "prebuild": "node -e \"require('fs').rmSync('dist', { recursive: true, force: true })\"",