From a9e44b1fd27578ec10bb75788ce5ed43c62f151c Mon Sep 17 00:00:00 2001 From: Yeuoly Date: Tue, 19 Mar 2024 18:37:37 +0800 Subject: [PATCH] fix: missing head --- api/core/workflow/nodes/http_request/entities.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/core/workflow/nodes/http_request/entities.py b/api/core/workflow/nodes/http_request/entities.py index 0683008954..87529d8f58 100644 --- a/api/core/workflow/nodes/http_request/entities.py +++ b/api/core/workflow/nodes/http_request/entities.py @@ -37,7 +37,7 @@ class HttpRequestNodeData(BaseNodeData): data: Union[None, str] variables: list[VariableSelector] - method: Literal['get', 'post', 'put', 'patch', 'delete'] + method: Literal['get', 'post', 'put', 'patch', 'delete', 'head'] url: str authorization: Authorization headers: str