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:
@@ -293,6 +293,11 @@ func (c *Client) CloseIssue(args *CloseArgs) (*Response, error) {
|
||||
return c.Execute(OpClose, args)
|
||||
}
|
||||
|
||||
// Delete deletes one or more issues via the daemon.
|
||||
func (c *Client) Delete(args *DeleteArgs) (*Response, error) {
|
||||
return c.Execute(OpDelete, args)
|
||||
}
|
||||
|
||||
// List lists issues via the daemon
|
||||
func (c *Client) List(args *ListArgs) (*Response, error) {
|
||||
return c.Execute(OpList, args)
|
||||
|
||||
Reference in New Issue
Block a user