Enable daemon RPC support for delete operations to trigger auto-sync, Fix for issue #527 (#528)

Enable daemon RPC support for delete operations to trigger auto-sync.

This PR adds delete operation support to the RPC daemon, ensuring that delete operations emit mutation events and trigger auto-sync like other mutating operations.

🤖 Generated with [Claude Code](https://claude.com/claude-code)
This commit is contained in:
Charles P. Cross
2025-12-12 16:19:31 -05:00
committed by GitHub
parent 454e8f5f9a
commit 8af08460a7
6 changed files with 346 additions and 19 deletions

View File

@@ -176,6 +176,8 @@ func (s *Server) handleRequest(req *Request) Response {
resp = s.handleUpdate(req)
case OpClose:
resp = s.handleClose(req)
case OpDelete:
resp = s.handleDelete(req)
case OpList:
resp = s.handleList(req)
case OpCount: