open-mcp-app 0.1.4 → 0.1.6
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/core/index.js +2 -1
- package/dist/core/index.js.map +1 -1
- package/dist/react/index.d.ts +23 -118
- package/dist/react/index.js +19 -60
- package/dist/react/index.js.map +1 -1
- package/dist/server/index.js.map +1 -1
- package/dist/vite/index.js +45 -27
- package/dist/vite/index.js.map +1 -1
- package/package.json +1 -1
package/dist/core/index.js
CHANGED
|
@@ -9893,7 +9893,8 @@ var McpAppsBaseHostClient = class extends McpAppsSubscribable {
|
|
|
9893
9893
|
const result = {
|
|
9894
9894
|
content: this.extractTextContent(sdkResult.content),
|
|
9895
9895
|
structuredContent: sdkResult.structuredContent,
|
|
9896
|
-
isError: sdkResult.isError
|
|
9896
|
+
isError: sdkResult.isError,
|
|
9897
|
+
source: "ui"
|
|
9897
9898
|
};
|
|
9898
9899
|
this.emit("tool-result", result);
|
|
9899
9900
|
return result;
|