fix(server/client): rename document_id to id in DocumentUploadResponse, again

This commit is contained in:
perf3ct 2025-07-09 02:46:39 +00:00
parent 1abfce88b9
commit 51fd19aec8
1 changed files with 1 additions and 1 deletions

View File

@ -150,7 +150,7 @@ impl DocumentDeletionTestClient {
return Ok(serde_json::json!({ return Ok(serde_json::json!({
"success": true, "success": true,
"message": "Document deleted", "message": "Document deleted",
"document_id": document_id, "id": document_id,
"filename": "deleted" "filename": "deleted"
})); }));
} }