Take document id

This commit is contained in:
Andras Schmelczer 2025-03-15 09:24:22 +00:00
parent d5ff50a1b0
commit f894cd6bd8
No known key found for this signature in database
GPG key ID: FC8F2C3D3D1A718C
3 changed files with 35 additions and 3 deletions

View file

@ -452,10 +452,14 @@ export interface components {
Array_of_uint8: number[];
CreateDocumentVersion: {
contentBase64: string;
/** Format: uuid */
documentId?: string | null;
relativePath: string;
};
CreateDocumentVersionMultipart: {
content: components["schemas"]["Array_of_uint8"];
/** Format: uuid */
document_id?: string | null;
relative_path: string;
};
DeleteDocumentVersion: {