feat: support office document nodes
All checks were successful
CI / hygiene (push) Successful in 2s
Build and Deploy / build-and-deploy (push) Successful in 32s
CI / test (push) Successful in 20s

This commit is contained in:
Grendgi
2026-06-16 15:25:33 +03:00
parent 3de4e5dfe7
commit 3dc5044c99
6 changed files with 133 additions and 0 deletions

View File

@@ -54,6 +54,14 @@ type CreateFolderRequest struct {
Title string `json:"title"`
}
type CreateOfficeDocumentRequest struct {
ParentID *string `json:"parent_id"`
Title string `json:"title"`
OfficeID string `json:"office_id"`
OfficeFormat string `json:"office_format"`
SizeBytes int64 `json:"size_bytes"`
}
type UpdateNodeRequest struct {
ParentID *string `json:"parent_id"`
Title *string `json:"title"`