Skip to content

Commit d73c3db

Browse files
Fix UIResource \_meta type to match actual usage pattern
The UIResource interface incorrectly specified `_meta?: UIResourceMeta` when it should be `_meta?: { ui?: UiResourceMeta }` to match the resources/read response format and all usage examples throughout the document. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
1 parent 9aa129f commit d73c3db

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

specification/draft/apps.mdx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,9 @@ interface UIResource {
101101
* Includes Content Security Policy configuration, dedicated domain settings,
102102
* and visual preferences.
103103
*/
104-
_meta?: UIResourceMeta
104+
_meta?: {
105+
ui?: UiResourceMeta;
106+
}
105107
}
106108

107109
interface UIResourceMeta {

0 commit comments

Comments
 (0)