@agentvault/agentvault 0.23.34 → 0.23.35

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/index.js CHANGED
@@ -50505,11 +50505,6 @@ var init_clientConfig = __esm({
50505
50505
  });
50506
50506
 
50507
50507
  // ../crypto/node_modules/ts-mls/dist/src/util/array.js
50508
- function arraysEqual(a2, b2) {
50509
- if (a2.length !== b2.length)
50510
- return false;
50511
- return a2.every((val, index) => val === b2[index]);
50512
- }
50513
50508
  var init_array = __esm({
50514
50509
  "../crypto/node_modules/ts-mls/dist/src/util/array.js"() {
50515
50510
  }
@@ -50698,7 +50693,7 @@ async function validateRatchetTree(tree, groupContext, config2, authService, tre
50698
50693
  if (dpNode !== void 0) {
50699
50694
  if (dpNode.nodeType !== "parent")
50700
50695
  return new InternalError("Expected parent node");
50701
- if (!arraysEqual(dpNode.parent.unmergedLeaves, n2.parent.unmergedLeaves))
50696
+ if (!dpNode.parent.unmergedLeaves.includes(unmergedLeaf))
50702
50697
  return new ValidationError("non-blank intermediate node must list leaf node in its unmerged_leaves");
50703
50698
  }
50704
50699
  }
@@ -63266,11 +63261,11 @@ var init_mls_kp_pool = __esm({
63266
63261
 
63267
63262
  // src/client-version.ts
63268
63263
  function ownIdentity() {
63269
- const v2 = true ? "0.23.34" : FALLBACK;
63264
+ const v2 = true ? "0.23.35" : FALLBACK;
63270
63265
  return `${PACKAGE}@${v2}`;
63271
63266
  }
63272
63267
  function buildSha() {
63273
- const raw = true ? "6b305ca-dirty" : "";
63268
+ const raw = true ? "0160bbb-dirty" : "";
63274
63269
  const cleaned = (raw ?? "").trim();
63275
63270
  return !cleaned || cleaned === "unknown" ? null : cleaned;
63276
63271
  }
@@ -65481,7 +65476,7 @@ var init_channel = __esm({
65481
65476
  */
65482
65477
  sendActivitySpan(spanData) {
65483
65478
  if (!this._ws || this._ws.readyState !== WebSocket.OPEN) return;
65484
- const pluginVersion = true ? "0.23.34" : "0.0.0-dev";
65479
+ const pluginVersion = true ? "0.23.35" : "0.0.0-dev";
65485
65480
  const agentName = this.config.agentName ?? "Agent";
65486
65481
  const resource = {
65487
65482
  "service.name": "agentvault-agent",
@@ -67419,7 +67414,7 @@ var init_channel = __esm({
67419
67414
  agentVersion: this.config.agentVersion ?? "0.0.0",
67420
67415
  // __AV_VERSION__ is injected by esbuild from package.json at build time.
67421
67416
  // Falls back to "0.0.0-dev" in non-bundled contexts (tests).
67422
- pluginVersion: true ? "0.23.34" : "0.0.0-dev"
67417
+ pluginVersion: true ? "0.23.35" : "0.0.0-dev"
67423
67418
  });
67424
67419
  this._telemetryReporter.startAutoFlush(3e4);
67425
67420
  }
@@ -67743,7 +67738,7 @@ var init_channel = __esm({
67743
67738
  agentVersion: this.config.agentVersion ?? "0.0.0",
67744
67739
  // __AV_VERSION__ is injected by esbuild from package.json at build time.
67745
67740
  // Falls back to "0.0.0-dev" in non-bundled contexts (tests).
67746
- pluginVersion: true ? "0.23.34" : "0.0.0-dev"
67741
+ pluginVersion: true ? "0.23.35" : "0.0.0-dev"
67747
67742
  });
67748
67743
  this._telemetryReporter.startAutoFlush(3e4);
67749
67744
  }
@@ -98605,7 +98600,7 @@ var init_index = __esm({
98605
98600
  await init_skill_telemetry();
98606
98601
  await init_policy_enforcer();
98607
98602
  init_room_protocol();
98608
- VERSION = true ? "0.23.34" : "0.0.0-dev";
98603
+ VERSION = true ? "0.23.35" : "0.0.0-dev";
98609
98604
  }
98610
98605
  });
98611
98606
  await init_index();