add missing timeout parameter for delete points API

This commit is contained in:
generall
2026-02-15 16:11:07 +01:00
committed by timvisee
parent 518b64a29a
commit 5f9c3ca589
2 changed files with 17 additions and 0 deletions

View File

@@ -4043,6 +4043,16 @@
"schema": {
"$ref": "#/components/schemas/WriteOrdering"
}
},
{
"name": "timeout",
"in": "query",
"description": "Timeout for the operation",
"required": false,
"schema": {
"type": "integer",
"minimum": 1
}
}
],
"responses": {

View File

@@ -139,6 +139,13 @@ paths:
required: false
schema:
$ref: "#/components/schemas/WriteOrdering"
- name: timeout
in: query
description: "Timeout for the operation"
required: false
schema:
type: integer
minimum: 1
responses: #@ response(reference("UpdateResult"))
/collections/{collection_name}/points/vectors: