@xiaou66/vite-plugin-vue-mcp-next 1.3.0 → 1.3.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/README.md +1 -1
- package/dist/index.d.cts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/runtime/client.cjs +6 -2
- package/dist/runtime/client.cjs.map +1 -1
- package/dist/runtime/client.d.cts +1 -1
- package/dist/runtime/client.d.ts +1 -1
- package/dist/runtime/client.js +6 -2
- package/dist/runtime/client.js.map +1 -1
- package/dist/{types-BKXdHkwk.d.cts → types-DAx3jHdz.d.cts} +2 -2
- package/dist/{types-BKXdHkwk.d.ts → types-DAx3jHdz.d.ts} +2 -2
- package/package.json +1 -1
|
@@ -796,8 +796,8 @@ interface ConsoleRecord {
|
|
|
796
796
|
readonly level: 'log' | 'info' | 'warn' | 'error' | 'debug';
|
|
797
797
|
/** 面向 AI 的主要文本内容,避免每次都解析复杂 args。 */
|
|
798
798
|
readonly message: string;
|
|
799
|
-
/**
|
|
800
|
-
readonly args?:
|
|
799
|
+
/** 已序列化参数快照,避免浏览器对象循环引用破坏 HMR 日志传输。 */
|
|
800
|
+
readonly args?: string[];
|
|
801
801
|
/** 错误堆栈,用于定位运行时异常的来源文件和调用链。 */
|
|
802
802
|
readonly stack?: string;
|
|
803
803
|
/** 记录时间戳,用于还原日志与网络请求、用户操作之间的先后关系。 */
|
|
@@ -796,8 +796,8 @@ interface ConsoleRecord {
|
|
|
796
796
|
readonly level: 'log' | 'info' | 'warn' | 'error' | 'debug';
|
|
797
797
|
/** 面向 AI 的主要文本内容,避免每次都解析复杂 args。 */
|
|
798
798
|
readonly message: string;
|
|
799
|
-
/**
|
|
800
|
-
readonly args?:
|
|
799
|
+
/** 已序列化参数快照,避免浏览器对象循环引用破坏 HMR 日志传输。 */
|
|
800
|
+
readonly args?: string[];
|
|
801
801
|
/** 错误堆栈,用于定位运行时异常的来源文件和调用链。 */
|
|
802
802
|
readonly stack?: string;
|
|
803
803
|
/** 记录时间戳,用于还原日志与网络请求、用户操作之间的先后关系。 */
|