@agentmemory/agentmemory 0.7.0 → 0.7.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.
- package/AGENTS.md +1 -1
- package/README.md +42 -21
- package/dist/cli.mjs +99 -32
- package/dist/cli.mjs.map +1 -1
- package/dist/index.mjs +3 -2
- package/dist/index.mjs.map +1 -1
- package/dist/{src-QxitMPfJ.mjs → src-1fTKFEtN.mjs} +4 -3
- package/dist/src-1fTKFEtN.mjs.map +1 -0
- package/dist/standalone.mjs +1 -1
- package/dist/standalone.mjs.map +1 -1
- package/package.json +2 -1
- package/plugin/.claude-plugin/plugin.json +1 -1
- package/src/cli.ts +124 -32
- package/src/functions/export-import.ts +1 -1
- package/src/types.ts +1 -1
- package/src/version.ts +1 -1
- package/src/viewer/index.html +62 -3
- package/test/export-import.test.ts +1 -1
- package/dist/src-QxitMPfJ.mjs.map +0 -1
|
@@ -3738,7 +3738,7 @@ function registerAutoForgetFunction(sdk, kv) {
|
|
|
3738
3738
|
|
|
3739
3739
|
//#endregion
|
|
3740
3740
|
//#region src/version.ts
|
|
3741
|
-
const VERSION = "0.7.
|
|
3741
|
+
const VERSION = "0.7.2";
|
|
3742
3742
|
|
|
3743
3743
|
//#endregion
|
|
3744
3744
|
//#region src/functions/export-import.ts
|
|
@@ -3834,7 +3834,8 @@ function registerExportImportFunction(sdk, kv) {
|
|
|
3834
3834
|
"0.5.0",
|
|
3835
3835
|
"0.6.0",
|
|
3836
3836
|
"0.6.1",
|
|
3837
|
-
"0.7.0"
|
|
3837
|
+
"0.7.0",
|
|
3838
|
+
"0.7.2"
|
|
3838
3839
|
]).has(importData.version)) return {
|
|
3839
3840
|
success: false,
|
|
3840
3841
|
error: `Unsupported export version: ${importData.version}`
|
|
@@ -13772,4 +13773,4 @@ main().catch((err) => {
|
|
|
13772
13773
|
|
|
13773
13774
|
//#endregion
|
|
13774
13775
|
export { };
|
|
13775
|
-
//# sourceMappingURL=src-
|
|
13776
|
+
//# sourceMappingURL=src-1fTKFEtN.mjs.map
|