@@ -600,37 +600,6 @@ export function MoveFileResponseNotify(
600
600
601
601
sendNotification ( notification , 'fs.MoveFileResponseNotify' ) ;
602
602
}
603
- /**
604
- * Wrapper functions to match interface signatures
605
- */
606
- function FileDeleteRequestNotify ( fileName : string , filePath : string , toolUseId ?: string ) : void {
607
- deleteFile ( { fileName, filePath } , toolUseId ) ;
608
- }
609
-
610
- function FolderDeleteRequestNotify ( folderName : string , folderPath : string , toolUseId ?: string ) : void {
611
- deleteFolder ( { folderName, folderPath } , toolUseId ) ;
612
- }
613
-
614
- function ListDirectoryRequestNotify ( dirPath : string , toolUseId ?: string ) : void {
615
- listDirectory ( { dirPath } , toolUseId ) ;
616
- }
617
-
618
- function WriteToFileRequestNotify ( filePath : string , text : string , toolUseId ?: string ) : void {
619
- writeToFile ( { filePath, text } , toolUseId ) ;
620
- }
621
-
622
- function AppendToFileRequestNotify ( filePath : string , text : string , toolUseId ?: string ) : void {
623
- appendToFile ( { filePath, text } , toolUseId ) ;
624
- }
625
-
626
- function CopyFileRequestNotify ( sourceFile : string , destinationFile : string , toolUseId ?: string ) : void {
627
- copyFile ( { sourceFile, destinationFile } , toolUseId ) ;
628
- }
629
-
630
- function MoveFileRequestNotify ( sourceFile : string , destinationFile : string , toolUseId ?: string ) : void {
631
- moveFile ( { sourceFile, destinationFile } , toolUseId ) ;
632
- }
633
-
634
603
/**
635
604
* File system notification functions object
636
605
*/
@@ -644,21 +613,6 @@ export const fsNotifications: FsNotifications = {
644
613
FileEditRequestNotify,
645
614
FileEditResponseNotify,
646
615
FileDeleteRequestNotify,
647
- < << << << HEAD
648
- FileDeleteResponseNotify : sendFileDeleteResponse ,
649
- FolderDeleteRequestNotify,
650
- FolderDeleteResponseNotify : sendFolderDeleteResponse ,
651
- ListDirectoryRequestNotify,
652
- ListDirectoryResponseNotify : sendListDirectoryResponse ,
653
- WriteToFileRequestNotify,
654
- WriteToFileResponseNotify : sendWriteToFileResponse ,
655
- AppendToFileRequestNotify,
656
- AppendToFileResponseNotify : sendAppendToFileResponse ,
657
- CopyFileRequestNotify,
658
- CopyFileResponseNotify : sendCopyFileResponse ,
659
- MoveFileRequestNotify,
660
- MoveFileResponseNotify : sendMoveFileResponse
661
- === = ===
662
616
FileDeleteResponseNotify,
663
617
FolderDeleteRequestNotify,
664
618
FolderDeleteResponseNotify,
@@ -672,7 +626,6 @@ export const fsNotifications: FsNotifications = {
672
626
CopyFileResponseNotify,
673
627
MoveFileRequestNotify,
674
628
MoveFileResponseNotify
675
- > >>> >>> b6b32fd58ca6cf1f6ca3acb164030c8c615960f4
676
629
} ;
677
630
678
631
/**
0 commit comments