@memorilabs/openclaw-memori 0.0.3-beta → 0.0.4-beta

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.
@@ -1,6 +1,5 @@
1
1
  import { extractContext, initializeMemoriClient } from '../utils/index.js';
2
2
  import { cleanText, isSystemMessage } from '../sanitizer.js';
3
- import { SDK_VERSION } from '../version.js';
4
3
  import { AUGMENTATION_CONFIG } from '../constants.js';
5
4
  function extractLLMMetadata(event) {
6
5
  const messages = event.messages || [];
@@ -9,7 +8,8 @@ function extractLLMMetadata(event) {
9
8
  provider: lastAssistant?.provider || null,
10
9
  model: lastAssistant?.model || null,
11
10
  sdkVersion: null,
12
- integrationSdkVersion: SDK_VERSION,
11
+ // integrationSdkVersion: SDK_VERSION,
12
+ integrationSdkVersion: '0.0.1', // TODO: move me back with first releases
13
13
  platform: 'openclaw',
14
14
  };
15
15
  }
package/dist/version.d.ts CHANGED
@@ -1 +1 @@
1
- export declare const SDK_VERSION = "0.0.3-beta";
1
+ export declare const SDK_VERSION = "0.0.4-beta";
package/dist/version.js CHANGED
@@ -1 +1 @@
1
- export const SDK_VERSION = '0.0.3-beta';
1
+ export const SDK_VERSION = '0.0.4-beta';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@memorilabs/openclaw-memori",
3
- "version": "0.0.3-beta",
3
+ "version": "0.0.4-beta",
4
4
  "description": "Official MemoriLabs.ai long-term memory plugin for OpenClaw",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",