fix(core): Webhooks responding with binary data should not prematurely end the response stream (#9063)

This commit is contained in:
कारतोफ्फेलस्क्रिप्ट™
2024-05-07 13:48:20 +02:00
committed by GitHub
parent 225fdbb379
commit 23b676d7cb
2 changed files with 15 additions and 18 deletions

View File

@@ -1834,7 +1834,7 @@ export interface IWebhookResponseData {
}
export type WebhookResponseData = 'allEntries' | 'firstEntryJson' | 'firstEntryBinary' | 'noData';
export type WebhookResponseMode = 'onReceived' | 'lastNode';
export type WebhookResponseMode = 'onReceived' | 'lastNode' | 'responseNode';
export interface INodeTypes {
getByName(nodeType: string): INodeType | IVersionedNodeType;