refactor(core): Rename push sessionId to pushRef (#8905)

This commit is contained in:
कारतोफ्फेलस्क्रिप्ट™
2024-04-03 13:43:14 +02:00
committed by GitHub
parent eaaefd76da
commit 072c3db97d
58 changed files with 248 additions and 257 deletions

View File

@@ -1102,7 +1102,7 @@ export interface RootState {
n8nMetadata: {
[key: string]: string | number | undefined;
};
sessionId: string;
pushRef: string;
urlBaseWebhook: string;
urlBaseEditor: string;
instanceId: string;
@@ -1146,7 +1146,7 @@ export interface IRootState {
nodeViewOffsetPosition: XYPosition;
nodeViewMoveInProgress: boolean;
selectedNodes: INodeUi[];
sessionId: string;
pushRef: string;
urlBaseEditor: string;
urlBaseWebhook: string;
workflow: IWorkflowDb;
@@ -1214,7 +1214,7 @@ export interface TargetItem {
export interface NDVState {
activeNodeName: string | null;
mainPanelDimensions: { [key: string]: { [key: string]: number } };
sessionId: string;
pushRef: string;
input: {
displayMode: IRunDataDisplayMode;
nodeName?: string;
@@ -1428,7 +1428,7 @@ export interface CommunityNodesState {
export interface IRestApiContext {
baseUrl: string;
sessionId: string;
pushRef: string;
}
export interface IZoomConfig {