@cfio/cohort-sync 0.31.9 → 0.31.10
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
|
@@ -13730,7 +13730,7 @@ function dumpEvent(event) {
|
|
|
13730
13730
|
function positiveNumber(value) {
|
|
13731
13731
|
return typeof value === "number" && Number.isFinite(value) && value > 0 ? value : void 0;
|
|
13732
13732
|
}
|
|
13733
|
-
var PLUGIN_VERSION = true ? "0.31.
|
|
13733
|
+
var PLUGIN_VERSION = true ? "0.31.10" : "unknown";
|
|
13734
13734
|
function resolveGatewayToken(api) {
|
|
13735
13735
|
const token2 = api.config?.gateway?.auth?.token;
|
|
13736
13736
|
return typeof token2 === "string" ? token2 : null;
|
|
@@ -12,6 +12,8 @@
|
|
|
12
12
|
"tools": [
|
|
13
13
|
"cohort_comment",
|
|
14
14
|
"cohort_context",
|
|
15
|
+
"cohort_briefing_context",
|
|
16
|
+
"cohort_briefing",
|
|
15
17
|
"cohort_task",
|
|
16
18
|
"cohort_transition",
|
|
17
19
|
"cohort_assign"
|
|
@@ -72,5 +74,5 @@
|
|
|
72
74
|
}
|
|
73
75
|
}
|
|
74
76
|
},
|
|
75
|
-
"version": "0.31.
|
|
77
|
+
"version": "0.31.10"
|
|
76
78
|
}
|
package/dist/package.json
CHANGED
package/openclaw.plugin.json
CHANGED
package/package.json
CHANGED