@agentmemory/agentmemory 0.7.6 → 0.7.7

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.mjs CHANGED
@@ -160,12 +160,12 @@ async function main() {
160
160
  p.intro("agentmemory");
161
161
  if (skipEngine) {
162
162
  p.log.info("Skipping engine check (--no-engine)");
163
- await import("./src-CxKzBty4.mjs");
163
+ await import("./src-C_TC9frp.mjs");
164
164
  return;
165
165
  }
166
166
  if (await isEngineRunning()) {
167
167
  p.log.success("iii-engine is running");
168
- await import("./src-CxKzBty4.mjs");
168
+ await import("./src-C_TC9frp.mjs");
169
169
  return;
170
170
  }
171
171
  if (!await startEngine()) {
@@ -193,7 +193,7 @@ async function main() {
193
193
  process.exit(1);
194
194
  }
195
195
  s.stop("iii-engine is ready");
196
- await import("./src-CxKzBty4.mjs");
196
+ await import("./src-C_TC9frp.mjs");
197
197
  }
198
198
  main().catch((err) => {
199
199
  p.log.error(err instanceof Error ? err.message : String(err));
package/dist/index.mjs CHANGED
@@ -3805,7 +3805,7 @@ function registerAutoForgetFunction(sdk, kv) {
3805
3805
 
3806
3806
  //#endregion
3807
3807
  //#region src/version.ts
3808
- const VERSION = "0.7.6";
3808
+ const VERSION = "0.7.7";
3809
3809
 
3810
3810
  //#endregion
3811
3811
  //#region src/functions/export-import.ts
@@ -3908,7 +3908,8 @@ function registerExportImportFunction(sdk, kv) {
3908
3908
  "0.7.3",
3909
3909
  "0.7.4",
3910
3910
  "0.7.5",
3911
- "0.7.6"
3911
+ "0.7.6",
3912
+ "0.7.7"
3912
3913
  ]).has(importData.version)) return {
3913
3914
  success: false,
3914
3915
  error: `Unsupported export version: ${importData.version}`