@@ -579,7 +579,7 @@ interface ToolCallPrepareContent {
579579 * Extra details about this call.
580580 * Clients may use this to present different UX for this tool call.
581581 */
582- details? : TooCallRunDetails ;
582+ details? : ToolCallRunDetails ;
583583}
584584
585585/**
@@ -614,7 +614,7 @@ interface ToolCallRunContent {
614614 * Extra details about this call.
615615 * Clients may use this to present different UX for this tool call.
616616 */
617- details? : TooCallRunDetails ;
617+ details? : ToolCallRunDetails ;
618618}
619619
620620/**
@@ -664,7 +664,7 @@ interface ToolCalledContent {
664664 * Extra details about this call.
665665 * Clients may use this to present different UX for this tool call.
666666 */
667- details? : TooCallRunDetails ;
667+ details? : ToolCallRunDetails ;
668668}
669669
670670interface ToolCallRejected {
@@ -696,12 +696,12 @@ interface ToolCallRejected {
696696 * Extra details about this call.
697697 * Clients may use this to present different UX for this tool call.
698698 */
699- details? : TooCallRunDetails ;
699+ details? : ToolCallRunDetails ;
700700}
701701
702702type ToolCallOrigin = ' mcp' | ' native' ;
703703
704- type TooCallRunDetails = FileChangeDetails ;
704+ type ToolCallRunDetails = FileChangeDetails ;
705705
706706interface FileChangeDetails {
707707 type: ' fileChange' ;
0 commit comments