@dj1029/plugin-smart-sl 0.0.6 → 0.0.7

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.
Files changed (2) hide show
  1. package/dist/lib/tool.js +1 -1
  2. package/package.json +1 -1
package/dist/lib/tool.js CHANGED
@@ -5,7 +5,7 @@ export function buildSmartTool() {
5
5
  return tool(async (input) => {
6
6
  try {
7
7
  console.log("input ---------- ", input);
8
- return null;
8
+ return "ok";
9
9
  }
10
10
  catch (error) {
11
11
  return "I don't know how to do that because: " + getErrorMessage(error);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dj1029/plugin-smart-sl",
3
- "version": "0.0.6",
3
+ "version": "0.0.7",
4
4
  "type": "module",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.js",