@univerjs-pro/mcp 0.10.10-experimental.20251016-33b0941 → 0.10.10-nightly.202510170942

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@univerjs-pro/mcp",
3
- "version": "0.10.10-experimental.20251016-33b0941",
3
+ "version": "0.10.10-nightly.202510170942",
4
4
  "private": false,
5
5
  "description": "",
6
6
  "author": "DreamNum <developer@univer.ai>",
@@ -57,8 +57,8 @@
57
57
  "dependencies": {
58
58
  "rxjs": "7.8.2",
59
59
  "zod": "^4.1.12",
60
- "@univerjs/core": "0.10.10-experimental.20251016-33b0941",
61
- "@univerjs/network": "0.10.10-experimental.20251016-33b0941"
60
+ "@univerjs/core": "0.10.10-nightly.202510170942",
61
+ "@univerjs/network": "0.10.10-nightly.202510170942"
62
62
  },
63
63
  "devDependencies": {
64
64
  "typescript": "^5.9.3",
@@ -1,13 +0,0 @@
1
- /**
2
- * Safe JSON stringification utilities for MCP protocol
3
- * Handles circular references and complex objects with minimal overhead
4
- */
5
- /**
6
- * Safely stringify JSON with strict filtering for complex objects
7
- * Only allows basic types, plain Objects, and Arrays to be serialized
8
- * All other types are converted to descriptive strings at the first level
9
- * @param value - The value to stringify
10
- * @param space - Optional spacing for formatting
11
- * @returns JSON string with safe handling of complex objects
12
- */
13
- export declare function safeJsonStringify(value: any, space?: string | number): string;