memorylake-openclaw 0.0.15-beta.1 → 0.0.15-beta.2

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/index.ts +2 -2
  2. package/package.json +1 -1
package/index.ts CHANGED
@@ -475,9 +475,9 @@ class PlatformProvider implements MemoryLakeProvider {
475
475
 
476
476
  async listConflicts(memoryIds: string[], userId: string): Promise<ConflictItem[]> {
477
477
  if (memoryIds.length === 0) return [];
478
- const searchParams: Record<string, string | string[]> = {
478
+ const searchParams: Record<string, string> = {
479
479
  resolved: "false",
480
- memory_ids: memoryIds,
480
+ memory_ids: memoryIds.join(","),
481
481
  };
482
482
  const resp = await this.http
483
483
  .get(this.conflictsPath, {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "memorylake-openclaw",
3
- "version": "0.0.15-beta.1",
3
+ "version": "0.0.15-beta.2",
4
4
  "type": "module",
5
5
  "description": "MemoryLake memory backend for OpenClaw",
6
6
  "license": "MIT",