@@ -600,37 +600,6 @@ export function MoveFileResponseNotify(
600600
601601 sendNotification ( notification , 'fs.MoveFileResponseNotify' ) ;
602602}
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-
634603/**
635604 * File system notification functions object
636605 */
@@ -644,21 +613,6 @@ export const fsNotifications: FsNotifications = {
644613 FileEditRequestNotify,
645614 FileEditResponseNotify,
646615 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- === = ===
662616 FileDeleteResponseNotify,
663617 FolderDeleteRequestNotify,
664618 FolderDeleteResponseNotify,
@@ -672,7 +626,6 @@ export const fsNotifications: FsNotifications = {
672626 CopyFileResponseNotify,
673627 MoveFileRequestNotify,
674628 MoveFileResponseNotify
675- > >>> >>> b6b32fd58ca6cf1f6ca3acb164030c8c615960f4
676629} ;
677630
678631/**
0 commit comments