skedyul 0.2.55 → 0.2.58
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/.build-stamp +1 -1
- package/dist/server.js +2 -0
- package/dist/types.d.ts +1 -0
- package/package.json +1 -1
package/dist/.build-stamp
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
1769490951200
|
package/dist/server.js
CHANGED
|
@@ -613,6 +613,7 @@ function createSkedyulServer(config, registry, webhookRegistry) {
|
|
|
613
613
|
content: [{ type: 'text', text: JSON.stringify(result.output) }],
|
|
614
614
|
structuredContent: outputData ?? undefined,
|
|
615
615
|
billing: result.billing,
|
|
616
|
+
effect: result.effect,
|
|
616
617
|
};
|
|
617
618
|
});
|
|
618
619
|
}
|
|
@@ -1232,6 +1233,7 @@ function createServerlessInstance(config, tools, callTool, state, mcpServer, reg
|
|
|
1232
1233
|
content: [{ type: 'text', text: JSON.stringify(toolResult.output) }],
|
|
1233
1234
|
structuredContent: outputData ?? undefined,
|
|
1234
1235
|
billing: toolResult.billing,
|
|
1236
|
+
effect: toolResult.effect,
|
|
1235
1237
|
};
|
|
1236
1238
|
}
|
|
1237
1239
|
}
|
package/dist/types.d.ts
CHANGED