@agentvault/agentvault 0.20.33 → 0.20.34

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 CHANGED
@@ -64061,7 +64061,7 @@ var init_channel = __esm({
64061
64061
  try {
64062
64062
  const mlsGroup = this._mlsGroups.get(`conv:${convId}`);
64063
64063
  const mlsGroupId = this._persisted?.mlsConversations?.[convId]?.mlsGroupId;
64064
- if (mlsGroup?.isInitialized && mlsGroupId && this._state === "ready" && this._ws) {
64064
+ if (mlsGroup?.isInitialized && mlsGroupId && Number(mlsGroup.epoch) > 0 && this._state === "ready" && this._ws) {
64065
64065
  const plaintextBytes = new TextEncoder().encode(plaintext);
64066
64066
  const cipherBytes = await mlsGroup.encrypt(plaintextBytes);
64067
64067
  await saveMlsState(this.config.dataDir, mlsGroupId, JSON.stringify(mlsGroup.exportState()));
@@ -89289,7 +89289,7 @@ var init_index = __esm({
89289
89289
  init_skill_invoker();
89290
89290
  await init_skill_telemetry();
89291
89291
  await init_policy_enforcer();
89292
- VERSION = true ? "0.20.33" : "0.0.0-dev";
89292
+ VERSION = true ? "0.20.34" : "0.0.0-dev";
89293
89293
  }
89294
89294
  });
89295
89295