Register IconTheme in OpenAPI schema after rmcp 1.5.0 upgrade (#8621)

Signed-off-by: jh-block <jhugo@block.xyz>
This commit is contained in:
jh-block
2026-04-17 14:14:58 +02:00
committed by GitHub
parent 69d89859a2
commit d52cde3fb9
4 changed files with 36 additions and 3 deletions
File diff suppressed because one or more lines are too long
+5
View File
@@ -549,8 +549,13 @@ export type Icon = {
mimeType?: string;
sizes?: Array<string>;
src: string;
theme?: IconTheme | {
[key: string]: unknown;
};
};
export type IconTheme = 'light' | 'dark';
export type ImageContent = {
_meta?: {
[key: string]: unknown;