wowok_agent 2.2.1 → 2.2.2

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/index.js +6 -0
  2. package/package.json +2 -2
package/dist/index.js CHANGED
@@ -164,6 +164,12 @@ const OnchainOperationsSchema = z.preprocess((input) => {
164
164
  }
165
165
  catch { }
166
166
  }
167
+ if (typeof obj.info === 'string') {
168
+ try {
169
+ obj.info = JSON.parse(obj.info);
170
+ }
171
+ catch { }
172
+ }
167
173
  return obj;
168
174
  }
169
175
  return input;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wowok_agent",
3
- "version": "2.2.1",
3
+ "version": "2.2.2",
4
4
  "description": "Making It Easy for AI Agents to Communicate, Collaborate, Trade, and Trust.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -30,7 +30,7 @@
30
30
  "dependencies": {
31
31
  "@modelcontextprotocol/sdk": "^1.29.0",
32
32
  "lodash": "^4.18.1",
33
- "wowok": "2.2.2",
33
+ "wowok": "2.2.3",
34
34
  "zod": "^3.25.76"
35
35
  },
36
36
  "devDependencies": {