feat(Respond to Webhook Node): Implement streaming to response (no-changelog) (#17219)

This commit is contained in:
Benjamin Schroth
2025-07-11 17:17:54 +02:00
committed by GitHub
parent 2f7ed14a23
commit 6a2edf83ab
3 changed files with 285 additions and 7 deletions

View File

@@ -166,7 +166,7 @@ export const checkResponseModeConfiguration = (context: IWebhookFunctions) => {
);
}
if (isRespondToWebhookConnected && responseMode !== 'responseNode') {
if (isRespondToWebhookConnected && !['responseNode', 'streaming'].includes(responseMode)) {
throw new NodeOperationError(
context.getNode(),
new Error('Webhook node not correctly configured'),