@cfio/cohort-sync 0.12.0 → 0.12.1
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/README.md +2 -2
- package/dist/index.js +2 -2
- package/dist/openclaw.plugin.json +1 -1
- package/dist/package.json +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -46,10 +46,10 @@ Your agent should appear in the Cohort dashboard within seconds.
|
|
|
46
46
|
## Update
|
|
47
47
|
|
|
48
48
|
```bash
|
|
49
|
-
openclaw plugins
|
|
49
|
+
openclaw plugins update cohort-sync
|
|
50
50
|
```
|
|
51
51
|
|
|
52
|
-
|
|
52
|
+
This updates to the latest version. Restart your gateway to pick up changes.
|
|
53
53
|
|
|
54
54
|
## Known limitations (0.10.x)
|
|
55
55
|
|
package/dist/index.js
CHANGED
|
@@ -2675,7 +2675,7 @@ async function checkForUpdate(currentVersion, logger) {
|
|
|
2675
2675
|
const latest = data.version;
|
|
2676
2676
|
if (latest && latest !== currentVersion && isNewerVersion(latest, currentVersion)) {
|
|
2677
2677
|
logger.warn(
|
|
2678
|
-
`cohort-sync: update available (${currentVersion} \u2192 ${latest}) \u2014 run "openclaw plugins
|
|
2678
|
+
`cohort-sync: update available (${currentVersion} \u2192 ${latest}) \u2014 run "openclaw plugins update cohort-sync" to update`
|
|
2679
2679
|
);
|
|
2680
2680
|
return latest;
|
|
2681
2681
|
}
|
|
@@ -13353,7 +13353,7 @@ function dumpCtx(ctx) {
|
|
|
13353
13353
|
function dumpEvent(event) {
|
|
13354
13354
|
return dumpCtx(event);
|
|
13355
13355
|
}
|
|
13356
|
-
var PLUGIN_VERSION = true ? "0.12.
|
|
13356
|
+
var PLUGIN_VERSION = true ? "0.12.1" : "unknown";
|
|
13357
13357
|
function resolveGatewayToken(api) {
|
|
13358
13358
|
const token = api.config?.gateway?.auth?.token;
|
|
13359
13359
|
return typeof token === "string" ? token : null;
|
package/dist/package.json
CHANGED
package/package.json
CHANGED