From 5f9c3ca589e7e79fa23ee4ab373d9084b6d693aa Mon Sep 17 00:00:00 2001 From: generall Date: Sun, 15 Feb 2026 16:11:07 +0100 Subject: [PATCH] add missing timeout parameter for delete points API --- docs/redoc/master/openapi.json | 10 ++++++++++ openapi/openapi-points.ytt.yaml | 7 +++++++ 2 files changed, 17 insertions(+) diff --git a/docs/redoc/master/openapi.json b/docs/redoc/master/openapi.json index e247fadd80..2079b0cd54 100644 --- a/docs/redoc/master/openapi.json +++ b/docs/redoc/master/openapi.json @@ -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": { diff --git a/openapi/openapi-points.ytt.yaml b/openapi/openapi-points.ytt.yaml index cf16f14cd7..7844a37af4 100644 --- a/openapi/openapi-points.ytt.yaml +++ b/openapi/openapi-points.ytt.yaml @@ -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: