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:
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user