From f1139aaba62bb253d7b12908d223c08b8eaebfcb Mon Sep 17 00:00:00 2001 From: raphael-goetz Date: Sat, 11 Oct 2025 17:17:02 +0200 Subject: [PATCH] feat: added missing http flow type settings --- definitions/http/flow_type/http.json | 57 +++++++++++++++++++++++++++- 1 file changed, 56 insertions(+), 1 deletion(-) diff --git a/definitions/http/flow_type/http.json b/definitions/http/flow_type/http.json index 0a6b997..5c59274 100644 --- a/definitions/http/flow_type/http.json +++ b/definitions/http/flow_type/http.json @@ -1,6 +1,61 @@ { "identifier": "HTTP", - "settings": [], + "settings": [ + { + "identifier": "HTTP_URL", + "unique": false, + "data_type_identifier": "HTTP_URL", + "default_value": null, + "name": [ + { + "code": "en-US", + "content": "URL" + } + ], + "description": [ + { + "code": "en-US", + "content": "Specifies the HTTP URL endpoint." + } + ] + }, + { + "identifier": "HTTP_METHOD", + "unique": false, + "data_type_identifier": "HTTP_METHOD", + "default_value": null, + "name": [ + { + "code": "en-US", + "content": "Method" + } + ], + "description": [ + { + "code": "en-US", + "content": "Specifies the HTTP request method (e.g., GET, POST, PUT, DELETE)." + } + ] + }, + { + "identifier": "HTTP_HOST", + "unique": false, + "data_type_identifier": "HTTP_HOST", + "default_value": null, + "name": [ + { + "code": "en-US", + "content": "Host" + } + ], + "description": [ + { + "code": "en-US", + "content": "Specifies the target host name or IP address." + } + ] + } + ], "input_type_identifier": "HTTP_REQUEST", "return_type_identifier": "HTTP_RESPONSE", "editable": false,