@modelcontextprotocol/ext-apps 0.4.2 → 1.0.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 +183 -3
- package/dist/src/app-bridge.js +7 -7
- package/dist/src/app-with-deps.js +6 -6
- package/dist/src/app.js +4 -4
- package/dist/src/generated/schema.d.ts +2 -2
- package/dist/src/react/index.js +4 -4
- package/dist/src/react/react-with-deps.js +4 -4
- package/dist/src/server/index.js +4 -4
- package/dist/src/spec.types.d.ts +4 -4
- package/package.json +2 -2
|
@@ -48,7 +48,7 @@ export declare const McpUiMessageResultSchema: z.ZodObject<{
|
|
|
48
48
|
/**
|
|
49
49
|
* @description Notification that the sandbox proxy iframe is ready to receive content.
|
|
50
50
|
* @internal
|
|
51
|
-
* @see https://github.com/modelcontextprotocol/ext-apps/blob/main/specification/
|
|
51
|
+
* @see https://github.com/modelcontextprotocol/ext-apps/blob/main/specification/2026-01-26/apps.mdx#sandbox-proxy
|
|
52
52
|
*/
|
|
53
53
|
export declare const McpUiSandboxProxyReadyNotificationSchema: z.ZodObject<{
|
|
54
54
|
method: z.ZodLiteral<"ui/notifications/sandbox-proxy-ready">;
|
|
@@ -372,7 +372,7 @@ export declare const McpUiMessageRequestSchema: z.ZodObject<{
|
|
|
372
372
|
/**
|
|
373
373
|
* @description Notification containing HTML resource for the sandbox proxy to load.
|
|
374
374
|
* @internal
|
|
375
|
-
* @see https://github.com/modelcontextprotocol/ext-apps/blob/main/specification/
|
|
375
|
+
* @see https://github.com/modelcontextprotocol/ext-apps/blob/main/specification/2026-01-26/apps.mdx#sandbox-proxy
|
|
376
376
|
*/
|
|
377
377
|
export declare const McpUiSandboxResourceReadyNotificationSchema: z.ZodObject<{
|
|
378
378
|
method: z.ZodLiteral<"ui/notifications/sandbox-resource-ready">;
|