From 70861cf8251bfc27907480f4ad60541fd397de59 Mon Sep 17 00:00:00 2001 From: nicosammito Date: Tue, 17 Mar 2026 00:59:10 +0100 Subject: [PATCH] feat: update signatures in proto files to support generic type parameters --- .../rest/runtime_definition/rest_control_respond.proto.json | 2 +- .../runtime_definition/http/http_request_create.proto.json | 2 +- .../runtime_definition/http/http_response_create.proto.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/definitions/rest/runtime_definition/rest_control_respond.proto.json b/definitions/rest/runtime_definition/rest_control_respond.proto.json index 9e3bac5..2403a68 100644 --- a/definitions/rest/runtime_definition/rest_control_respond.proto.json +++ b/definitions/rest/runtime_definition/rest_control_respond.proto.json @@ -47,5 +47,5 @@ "throwsError": false, "displayIcon": "tabler:cube-sent", "linkedDataTypeIdentifiers": ["HTTP_RESPONSE"], - "signature": "(http_response: HTTP_RESPONSE): void" + "signature": "(http_response: HTTP_RESPONSE): void" } diff --git a/definitions/standard/runtime_definition/http/http_request_create.proto.json b/definitions/standard/runtime_definition/http/http_request_create.proto.json index 7a1dd76..6a6bf42 100644 --- a/definitions/standard/runtime_definition/http/http_request_create.proto.json +++ b/definitions/standard/runtime_definition/http/http_request_create.proto.json @@ -98,7 +98,7 @@ ], "deprecationMessage": [], "displayIcon": "tabler:world-www", - "signature": "(http_method: HTTP_METHOD, headers: OBJECT<{}>, url: HTTP_URL, payload: T): HTTP_REQUEST", + "signature": "(http_method: HTTP_METHOD, headers: OBJECT<{}>, url: HTTP_URL, payload: T): HTTP_REQUEST", "linkedDataTypeIdentifiers": [ "HTTP_URL", "HTTP_METHOD", diff --git a/definitions/standard/runtime_definition/http/http_response_create.proto.json b/definitions/standard/runtime_definition/http/http_response_create.proto.json index 3cfb700..7cad30d 100644 --- a/definitions/standard/runtime_definition/http/http_response_create.proto.json +++ b/definitions/standard/runtime_definition/http/http_response_create.proto.json @@ -81,7 +81,7 @@ ], "deprecationMessage": [], "displayIcon": "tabler:world-www", - "signature": "(http_status_code: HTTP_STATUS_CODE, headers: OBJECT<{}>, payload: T): HTTP_RESPONSE", + "signature": "(http_status_code: HTTP_STATUS_CODE, headers: OBJECT<{}>, payload: T): HTTP_RESPONSE", "linkedDataTypeIdentifiers": [ "HTTP_STATUS_CODE", "OBJECT",