Skip to content

Commit 1999a64

Browse files
committed
docs
1 parent e70c893 commit 1999a64

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

docs/protocol.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -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

670670
interface 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

702702
type ToolCallOrigin = 'mcp' | 'native';
703703

704-
type TooCallRunDetails = FileChangeDetails;
704+
type ToolCallRunDetails = FileChangeDetails;
705705

706706
interface FileChangeDetails {
707707
type: 'fileChange';

0 commit comments

Comments
 (0)