@guuey/mcp-apps-host 0.6.0 → 0.7.0
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 +6 -2
- package/dist/action.d.ts +25 -2
- package/dist/action.d.ts.map +1 -1
- package/dist/action.js +29 -2
- package/dist/block-ui.d.ts +18 -0
- package/dist/block-ui.d.ts.map +1 -1
- package/dist/block-ui.js +17 -0
- package/dist/card-mount.d.ts +51 -30
- package/dist/card-mount.d.ts.map +1 -1
- package/dist/card-mount.js +42 -48
- package/dist/ggui-render.d.ts +69 -45
- package/dist/ggui-render.d.ts.map +1 -1
- package/dist/ggui-render.js +25 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +7 -2
- package/dist/narrowing.d.ts +1 -1
- package/dist/narrowing.d.ts.map +1 -1
- package/dist/narrowing.js +1 -1
- package/dist/view-host-protocol.d.ts +3 -2
- package/dist/view-host-protocol.d.ts.map +1 -1
- package/dist/view-host-protocol.js +3 -2
- package/package.json +1 -1
- package/src/action.ts +30 -2
- package/src/block-ui.ts +21 -0
- package/src/card-mount.ts +54 -56
- package/src/ggui-render.ts +63 -43
- package/src/index.ts +7 -0
- package/src/narrowing.ts +1 -0
- package/src/view-host-protocol.ts +3 -2
package/src/narrowing.ts
CHANGED
|
@@ -27,8 +27,9 @@
|
|
|
27
27
|
* Types and method names come from `@modelcontextprotocol/ext-apps` — the
|
|
28
28
|
* SEP-1865 surface itself, someone else's frozen contract. Zero ggui
|
|
29
29
|
* imports, deliberately (guuey#123): this host answers ANY spec-following
|
|
30
|
-
* view
|
|
31
|
-
*
|
|
30
|
+
* view. (The ggui vendor arm that used to live beside it in
|
|
31
|
+
* `ggui-render.ts` retired 2026-08-16 — guuey#209; that module is now
|
|
32
|
+
* deprecated re-exports only.)
|
|
32
33
|
*/
|
|
33
34
|
import {
|
|
34
35
|
INITIALIZE_METHOD,
|