@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/index.js
CHANGED
|
@@ -64740,7 +64740,7 @@ var init_channel = __esm({
|
|
|
64740
64740
|
*/
|
|
64741
64741
|
sendActivitySpan(spanData) {
|
|
64742
64742
|
if (!this._ws || this._ws.readyState !== WebSocket.OPEN) return;
|
|
64743
|
-
const pluginVersion = true ? "0.23.
|
|
64743
|
+
const pluginVersion = true ? "0.23.4" : "0.0.0-dev";
|
|
64744
64744
|
const agentName = this.config.agentName ?? "Agent";
|
|
64745
64745
|
const resource = {
|
|
64746
64746
|
"service.name": "agentvault-agent",
|
|
@@ -66357,7 +66357,7 @@ var init_channel = __esm({
|
|
|
66357
66357
|
agentVersion: this.config.agentVersion ?? "0.0.0",
|
|
66358
66358
|
// __AV_VERSION__ is injected by esbuild from package.json at build time.
|
|
66359
66359
|
// Falls back to "0.0.0-dev" in non-bundled contexts (tests).
|
|
66360
|
-
pluginVersion: true ? "0.23.
|
|
66360
|
+
pluginVersion: true ? "0.23.4" : "0.0.0-dev"
|
|
66361
66361
|
});
|
|
66362
66362
|
this._telemetryReporter.startAutoFlush(3e4);
|
|
66363
66363
|
}
|
|
@@ -66667,7 +66667,7 @@ var init_channel = __esm({
|
|
|
66667
66667
|
agentVersion: this.config.agentVersion ?? "0.0.0",
|
|
66668
66668
|
// __AV_VERSION__ is injected by esbuild from package.json at build time.
|
|
66669
66669
|
// Falls back to "0.0.0-dev" in non-bundled contexts (tests).
|
|
66670
|
-
pluginVersion: true ? "0.23.
|
|
66670
|
+
pluginVersion: true ? "0.23.4" : "0.0.0-dev"
|
|
66671
66671
|
});
|
|
66672
66672
|
this._telemetryReporter.startAutoFlush(3e4);
|
|
66673
66673
|
}
|
|
@@ -96850,7 +96850,7 @@ var init_index = __esm({
|
|
|
96850
96850
|
init_skill_invoker();
|
|
96851
96851
|
await init_skill_telemetry();
|
|
96852
96852
|
await init_policy_enforcer();
|
|
96853
|
-
VERSION = true ? "0.23.
|
|
96853
|
+
VERSION = true ? "0.23.4" : "0.0.0-dev";
|
|
96854
96854
|
}
|
|
96855
96855
|
});
|
|
96856
96856
|
await init_index();
|