mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 01:56:46 +00:00
refactor(core): Rename push sessionId to pushRef (#8905)
This commit is contained in:
committed by
GitHub
parent
eaaefd76da
commit
072c3db97d
@@ -2102,7 +2102,7 @@ export type WorkflowActivateMode =
|
||||
|
||||
export interface IWorkflowHooksOptionalParameters {
|
||||
retryOf?: string;
|
||||
sessionId?: string;
|
||||
pushRef?: string;
|
||||
}
|
||||
|
||||
export namespace WorkflowSettings {
|
||||
|
||||
@@ -12,7 +12,7 @@ export class WorkflowHooks {
|
||||
|
||||
executionId: string;
|
||||
|
||||
sessionId?: string;
|
||||
pushRef?: string;
|
||||
|
||||
retryOf?: string;
|
||||
|
||||
@@ -32,7 +32,7 @@ export class WorkflowHooks {
|
||||
this.mode = mode;
|
||||
this.executionId = executionId;
|
||||
this.workflowData = workflowData;
|
||||
this.sessionId = optionalParameters.sessionId;
|
||||
this.pushRef = optionalParameters.pushRef;
|
||||
// retryOf might be `null` from TypeORM
|
||||
this.retryOf = optionalParameters.retryOf ?? undefined;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user