@xdarkicex/openclaw-memory-libravdb 1.4.26 → 1.4.27
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/dist/cli.js +1 -6
- package/openclaw.plugin.json +1 -1
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -67,12 +67,7 @@ export function registerMemoryCli(api, runtime, cfg, logger = console) {
|
|
|
67
67
|
});
|
|
68
68
|
const flush = ensureCommand(root, "flush")
|
|
69
69
|
.description("Wipe a durable memory namespace after confirmation");
|
|
70
|
-
|
|
71
|
-
flush.requiredOption("--user-id <userId>", "User id whose durable memory should be deleted");
|
|
72
|
-
}
|
|
73
|
-
else {
|
|
74
|
-
flush.option("--user-id <userId>", "User id whose durable memory should be deleted");
|
|
75
|
-
}
|
|
70
|
+
flush.option("--user-id <userId>", "User id whose durable memory should be deleted");
|
|
76
71
|
flush.option("--session-key <sessionKey>", "Session key whose derived durable namespace should be deleted");
|
|
77
72
|
flush
|
|
78
73
|
.option("--yes", "Skip the confirmation prompt")
|
package/openclaw.plugin.json
CHANGED