feat: add visible trash restore for files
All checks were successful
CI / hygiene (push) Successful in 2s
Build and Deploy / build-and-deploy (push) Successful in 34s
CI / test (push) Successful in 19s

This commit is contained in:
Grendgi
2026-06-16 15:48:09 +03:00
parent 3dc5044c99
commit c831d2c7c6
4 changed files with 145 additions and 1 deletions

View File

@@ -71,6 +71,11 @@ type MoveNodeRequest struct {
ParentID *string `json:"parent_id"`
}
type PublicNodeResponse struct {
Node *Node `json:"node"`
Children []Node `json:"children,omitempty"`
}
type ReplaceAccessRequest struct {
Access []Access `json:"access"`
}