@cfio/cohort-sync 0.23.0 → 0.24.0
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 +1 -1
- package/dist/openclaw.plugin.json +3 -1
- package/dist/package.json +1 -1
- package/openclaw.plugin.json +2 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -13426,7 +13426,7 @@ function dumpCtx(ctx) {
|
|
|
13426
13426
|
function dumpEvent(event) {
|
|
13427
13427
|
return dumpCtx(event);
|
|
13428
13428
|
}
|
|
13429
|
-
var PLUGIN_VERSION = true ? "0.
|
|
13429
|
+
var PLUGIN_VERSION = true ? "0.24.0" : "unknown";
|
|
13430
13430
|
function resolveGatewayToken(api) {
|
|
13431
13431
|
const token = api.config?.gateway?.auth?.token;
|
|
13432
13432
|
return typeof token === "string" ? token : null;
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"id": "cohort-sync",
|
|
3
|
+
"name": "Cohort Sync",
|
|
4
|
+
"description": "Syncs agent telemetry, sessions, and activity to the Cohort dashboard. Registers gateway:startup hook to begin notification subscription.",
|
|
3
5
|
"activation": {
|
|
4
6
|
"onStartup": true,
|
|
5
7
|
"onCapabilities": [
|
|
@@ -61,5 +63,5 @@
|
|
|
61
63
|
}
|
|
62
64
|
}
|
|
63
65
|
},
|
|
64
|
-
"version": "0.
|
|
66
|
+
"version": "0.24.0"
|
|
65
67
|
}
|
package/dist/package.json
CHANGED
package/openclaw.plugin.json
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"id": "cohort-sync",
|
|
3
|
+
"name": "Cohort Sync",
|
|
4
|
+
"description": "Syncs agent telemetry, sessions, and activity to the Cohort dashboard. Registers gateway:startup hook to begin notification subscription.",
|
|
3
5
|
"activation": {
|
|
4
6
|
"onStartup": true,
|
|
5
7
|
"onCapabilities": ["hook"]
|
package/package.json
CHANGED