@cronicorn/mcp-server 1.23.4 → 1.24.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/dist/index.js +8 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -14034,6 +14034,13 @@ var ActivityEventSchema = external_exports.object({
|
|
|
14034
14034
|
tokenUsage: external_exports.number().int().optional().openapi({
|
|
14035
14035
|
description: "Tokens consumed during AI session",
|
|
14036
14036
|
example: 1250
|
|
14037
|
+
}),
|
|
14038
|
+
warnings: external_exports.array(external_exports.object({
|
|
14039
|
+
code: external_exports.string(),
|
|
14040
|
+
message: external_exports.string(),
|
|
14041
|
+
meta: external_exports.record(external_exports.unknown()).optional()
|
|
14042
|
+
})).optional().openapi({
|
|
14043
|
+
description: "Warnings from AI session (truncation, missing tools, etc.)"
|
|
14037
14044
|
})
|
|
14038
14045
|
}).openapi({
|
|
14039
14046
|
description: "An activity event (run or AI session)"
|
|
@@ -14677,7 +14684,7 @@ async function main() {
|
|
|
14677
14684
|
{
|
|
14678
14685
|
name: "cronicorn",
|
|
14679
14686
|
// eslint-disable-next-line node/no-process-env
|
|
14680
|
-
version: "1.
|
|
14687
|
+
version: "1.24.1"
|
|
14681
14688
|
},
|
|
14682
14689
|
{
|
|
14683
14690
|
instructions: [
|