mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-20 03:12:15 +00:00
feat: Add token to sendAndWait operations links to walidate in webhook (#17566)
This commit is contained in:
@@ -889,6 +889,10 @@ export interface FunctionsBase {
|
||||
getRestApiUrl(): string;
|
||||
getInstanceBaseUrl(): string;
|
||||
getInstanceId(): string;
|
||||
/** Get the waiting resume url signed with the signature token */
|
||||
getSignedResumeUrl(parameters?: Record<string, string>): string;
|
||||
/** Set requirement in the execution for signature token validation */
|
||||
setSignatureValidationRequired(): void;
|
||||
getChildNodes(
|
||||
nodeName: string,
|
||||
options?: { includeNodeParameters?: boolean },
|
||||
@@ -2256,6 +2260,11 @@ export interface IRunExecutionData {
|
||||
waitingExecutionSource: IWaitingForExecutionSource | null;
|
||||
};
|
||||
parentExecution?: RelatedExecution;
|
||||
/**
|
||||
* This is used to prevent breaking change
|
||||
* for waiting executions started before signature validation was added
|
||||
*/
|
||||
validateSignature?: boolean;
|
||||
waitTill?: Date;
|
||||
pushRef?: string;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user