mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 02:21:13 +00:00
feat(editor): Clean up lead enrichment experiment (no-changelog) (#9572)
This commit is contained in:
@@ -1325,7 +1325,6 @@ export interface UIState {
|
||||
bannersHeight: number;
|
||||
bannerStack: BannerName[];
|
||||
theme: ThemeOption;
|
||||
suggestedTemplates?: SuggestedTemplates;
|
||||
pendingNotificationsForViews: {
|
||||
[key in VIEWS]?: NotificationOptions[];
|
||||
};
|
||||
@@ -1917,24 +1916,6 @@ export type ToggleNodeCreatorOptions = {
|
||||
export type AppliedThemeOption = 'light' | 'dark';
|
||||
export type ThemeOption = AppliedThemeOption | 'system';
|
||||
|
||||
export type SuggestedTemplates = {
|
||||
sections: SuggestedTemplatesSection[];
|
||||
};
|
||||
|
||||
export type SuggestedTemplatesSection = {
|
||||
name: string;
|
||||
title: string;
|
||||
description: string;
|
||||
workflows: SuggestedTemplatesWorkflowPreview[];
|
||||
};
|
||||
|
||||
export type SuggestedTemplatesWorkflowPreview = {
|
||||
title: string;
|
||||
description: string;
|
||||
preview: IWorkflowData;
|
||||
nodes: Array<Pick<ITemplatesNode, 'id' | 'displayName' | 'icon' | 'defaults' | 'iconData'>>;
|
||||
};
|
||||
|
||||
export type NewConnectionInfo = {
|
||||
sourceId: string;
|
||||
index: number;
|
||||
|
||||
Reference in New Issue
Block a user