@agentvault/agentvault 0.23.3 → 0.23.4
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 +4 -4
- package/dist/cli.js.map +1 -1
- package/dist/index.js +4 -4
- package/dist/index.js.map +1 -1
- package/dist/openclaw-entry.d.ts +18 -3
- package/dist/openclaw-entry.d.ts.map +1 -1
- package/dist/openclaw-entry.js +50 -11
- package/dist/openclaw-entry.js.map +2 -2
- package/openclaw.plugin.json +1 -1
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -64741,7 +64741,7 @@ var init_channel = __esm({
|
|
|
64741
64741
|
*/
|
|
64742
64742
|
sendActivitySpan(spanData) {
|
|
64743
64743
|
if (!this._ws || this._ws.readyState !== WebSocket.OPEN) return;
|
|
64744
|
-
const pluginVersion = true ? "0.23.
|
|
64744
|
+
const pluginVersion = true ? "0.23.4" : "0.0.0-dev";
|
|
64745
64745
|
const agentName = this.config.agentName ?? "Agent";
|
|
64746
64746
|
const resource = {
|
|
64747
64747
|
"service.name": "agentvault-agent",
|
|
@@ -66358,7 +66358,7 @@ var init_channel = __esm({
|
|
|
66358
66358
|
agentVersion: this.config.agentVersion ?? "0.0.0",
|
|
66359
66359
|
// __AV_VERSION__ is injected by esbuild from package.json at build time.
|
|
66360
66360
|
// Falls back to "0.0.0-dev" in non-bundled contexts (tests).
|
|
66361
|
-
pluginVersion: true ? "0.23.
|
|
66361
|
+
pluginVersion: true ? "0.23.4" : "0.0.0-dev"
|
|
66362
66362
|
});
|
|
66363
66363
|
this._telemetryReporter.startAutoFlush(3e4);
|
|
66364
66364
|
}
|
|
@@ -66668,7 +66668,7 @@ var init_channel = __esm({
|
|
|
66668
66668
|
agentVersion: this.config.agentVersion ?? "0.0.0",
|
|
66669
66669
|
// __AV_VERSION__ is injected by esbuild from package.json at build time.
|
|
66670
66670
|
// Falls back to "0.0.0-dev" in non-bundled contexts (tests).
|
|
66671
|
-
pluginVersion: true ? "0.23.
|
|
66671
|
+
pluginVersion: true ? "0.23.4" : "0.0.0-dev"
|
|
66672
66672
|
});
|
|
66673
66673
|
this._telemetryReporter.startAutoFlush(3e4);
|
|
66674
66674
|
}
|
|
@@ -90763,7 +90763,7 @@ var init_index = __esm({
|
|
|
90763
90763
|
init_skill_invoker();
|
|
90764
90764
|
await init_skill_telemetry();
|
|
90765
90765
|
await init_policy_enforcer();
|
|
90766
|
-
VERSION = true ? "0.23.
|
|
90766
|
+
VERSION = true ? "0.23.4" : "0.0.0-dev";
|
|
90767
90767
|
}
|
|
90768
90768
|
});
|
|
90769
90769
|
|