mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
refactor(editor): Consolidate IN8nUISettings interface (#6055)
* consolidate IN8nUISettings * cleanup
This commit is contained in:
parent
0e93fe064e
commit
ac245fdb8d
|
@ -13,7 +13,6 @@ import type {
|
||||||
IRunData,
|
IRunData,
|
||||||
IRunExecutionData,
|
IRunExecutionData,
|
||||||
ITaskData,
|
ITaskData,
|
||||||
ITelemetrySettings,
|
|
||||||
ITelemetryTrackProperties,
|
ITelemetryTrackProperties,
|
||||||
IWorkflowBase,
|
IWorkflowBase,
|
||||||
CredentialLoadingDetails,
|
CredentialLoadingDetails,
|
||||||
|
@ -23,8 +22,6 @@ import type {
|
||||||
ExecutionStatus,
|
ExecutionStatus,
|
||||||
IExecutionsSummary,
|
IExecutionsSummary,
|
||||||
FeatureFlags,
|
FeatureFlags,
|
||||||
WorkflowSettings,
|
|
||||||
AuthenticationMethod,
|
|
||||||
} from 'n8n-workflow';
|
} from 'n8n-workflow';
|
||||||
|
|
||||||
import type { ActiveWorkflowRunner } from '@/ActiveWorkflowRunner';
|
import type { ActiveWorkflowRunner } from '@/ActiveWorkflowRunner';
|
||||||
|
@ -469,90 +466,6 @@ export interface IVersionNotificationSettings {
|
||||||
infoUrl: string;
|
infoUrl: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface IN8nUISettings {
|
|
||||||
endpointWebhook: string;
|
|
||||||
endpointWebhookTest: string;
|
|
||||||
saveDataErrorExecution: WorkflowSettings.SaveDataExecution;
|
|
||||||
saveDataSuccessExecution: WorkflowSettings.SaveDataExecution;
|
|
||||||
saveManualExecutions: boolean;
|
|
||||||
executionTimeout: number;
|
|
||||||
maxExecutionTimeout: number;
|
|
||||||
workflowCallerPolicyDefaultOption: WorkflowSettings.CallerPolicy;
|
|
||||||
oauthCallbackUrls: {
|
|
||||||
oauth1: string;
|
|
||||||
oauth2: string;
|
|
||||||
};
|
|
||||||
timezone: string;
|
|
||||||
urlBaseWebhook: string;
|
|
||||||
urlBaseEditor: string;
|
|
||||||
versionCli: string;
|
|
||||||
n8nMetadata?: {
|
|
||||||
[key: string]: string | number | undefined;
|
|
||||||
};
|
|
||||||
versionNotifications: IVersionNotificationSettings;
|
|
||||||
instanceId: string;
|
|
||||||
telemetry: ITelemetrySettings;
|
|
||||||
posthog: {
|
|
||||||
enabled: boolean;
|
|
||||||
apiHost: string;
|
|
||||||
apiKey: string;
|
|
||||||
autocapture: boolean;
|
|
||||||
disableSessionRecording: boolean;
|
|
||||||
debug: boolean;
|
|
||||||
};
|
|
||||||
personalizationSurveyEnabled: boolean;
|
|
||||||
userActivationSurveyEnabled: boolean;
|
|
||||||
defaultLocale: string;
|
|
||||||
userManagement: IUserManagementSettings;
|
|
||||||
sso: {
|
|
||||||
saml: {
|
|
||||||
loginLabel: string;
|
|
||||||
loginEnabled: boolean;
|
|
||||||
};
|
|
||||||
ldap: {
|
|
||||||
loginLabel: string;
|
|
||||||
loginEnabled: boolean;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
publicApi: IPublicApiSettings;
|
|
||||||
workflowTagsDisabled: boolean;
|
|
||||||
logLevel: 'info' | 'debug' | 'warn' | 'error' | 'verbose' | 'silent';
|
|
||||||
hiringBannerEnabled: boolean;
|
|
||||||
templates: {
|
|
||||||
enabled: boolean;
|
|
||||||
host: string;
|
|
||||||
};
|
|
||||||
onboardingCallPromptEnabled: boolean;
|
|
||||||
missingPackages?: boolean;
|
|
||||||
executionMode: 'regular' | 'queue';
|
|
||||||
pushBackend: 'sse' | 'websocket';
|
|
||||||
communityNodesEnabled: boolean;
|
|
||||||
deployment: {
|
|
||||||
type: string;
|
|
||||||
};
|
|
||||||
isNpmAvailable: boolean;
|
|
||||||
allowedModules: {
|
|
||||||
builtIn?: string;
|
|
||||||
external?: string;
|
|
||||||
};
|
|
||||||
enterprise: {
|
|
||||||
sharing: boolean;
|
|
||||||
ldap: boolean;
|
|
||||||
saml: boolean;
|
|
||||||
logStreaming: boolean;
|
|
||||||
advancedExecutionFilters: boolean;
|
|
||||||
variables: boolean;
|
|
||||||
versionControl: boolean;
|
|
||||||
};
|
|
||||||
hideUsagePage: boolean;
|
|
||||||
license: {
|
|
||||||
environment: 'production' | 'staging';
|
|
||||||
};
|
|
||||||
variables: {
|
|
||||||
limit: number;
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
export interface IPersonalizationSurveyAnswers {
|
export interface IPersonalizationSurveyAnswers {
|
||||||
email: string | null;
|
email: string | null;
|
||||||
codingSkill: string | null;
|
codingSkill: string | null;
|
||||||
|
@ -570,23 +483,9 @@ export interface IUserSettings {
|
||||||
userActivated?: boolean;
|
userActivated?: boolean;
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface IUserManagementSettings {
|
|
||||||
enabled: boolean;
|
|
||||||
showSetupOnFirstLoad?: boolean;
|
|
||||||
smtpSetup: boolean;
|
|
||||||
authenticationMethod: AuthenticationMethod;
|
|
||||||
}
|
|
||||||
export interface IActiveDirectorySettings {
|
export interface IActiveDirectorySettings {
|
||||||
enabled: boolean;
|
enabled: boolean;
|
||||||
}
|
}
|
||||||
export interface IPublicApiSettings {
|
|
||||||
enabled: boolean;
|
|
||||||
latestVersion: number;
|
|
||||||
path: string;
|
|
||||||
swaggerUi: {
|
|
||||||
enabled: boolean;
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
export interface IPackageVersions {
|
export interface IPackageVersions {
|
||||||
cli: string;
|
cli: string;
|
||||||
|
|
|
@ -49,6 +49,7 @@ import type {
|
||||||
ICredentialTypes,
|
ICredentialTypes,
|
||||||
ExecutionStatus,
|
ExecutionStatus,
|
||||||
IExecutionsSummary,
|
IExecutionsSummary,
|
||||||
|
IN8nUISettings,
|
||||||
} from 'n8n-workflow';
|
} from 'n8n-workflow';
|
||||||
import { LoggerProxy, jsonParse } from 'n8n-workflow';
|
import { LoggerProxy, jsonParse } from 'n8n-workflow';
|
||||||
|
|
||||||
|
@ -112,7 +113,6 @@ import type {
|
||||||
IDiagnosticInfo,
|
IDiagnosticInfo,
|
||||||
IExecutionFlattedDb,
|
IExecutionFlattedDb,
|
||||||
IExecutionsStopData,
|
IExecutionsStopData,
|
||||||
IN8nUISettings,
|
|
||||||
} from '@/Interfaces';
|
} from '@/Interfaces';
|
||||||
import { ActiveExecutions } from '@/ActiveExecutions';
|
import { ActiveExecutions } from '@/ActiveExecutions';
|
||||||
import {
|
import {
|
||||||
|
@ -313,8 +313,8 @@ class Server extends AbstractServer {
|
||||||
},
|
},
|
||||||
isNpmAvailable: false,
|
isNpmAvailable: false,
|
||||||
allowedModules: {
|
allowedModules: {
|
||||||
builtIn: process.env.NODE_FUNCTION_ALLOW_BUILTIN,
|
builtIn: process.env.NODE_FUNCTION_ALLOW_BUILTIN?.split(',') ?? undefined,
|
||||||
external: process.env.NODE_FUNCTION_ALLOW_EXTERNAL,
|
external: process.env.NODE_FUNCTION_ALLOW_EXTERNAL?.split(',') ?? undefined,
|
||||||
},
|
},
|
||||||
enterprise: {
|
enterprise: {
|
||||||
sharing: false,
|
sharing: false,
|
||||||
|
|
|
@ -17,7 +17,6 @@ import {
|
||||||
IRun,
|
IRun,
|
||||||
IRunData,
|
IRunData,
|
||||||
ITaskData,
|
ITaskData,
|
||||||
ITelemetrySettings,
|
|
||||||
IWorkflowSettings as IWorkflowSettingsWorkflow,
|
IWorkflowSettings as IWorkflowSettingsWorkflow,
|
||||||
WorkflowExecuteMode,
|
WorkflowExecuteMode,
|
||||||
PublicInstalledPackage,
|
PublicInstalledPackage,
|
||||||
|
@ -33,6 +32,9 @@ import {
|
||||||
FeatureFlags,
|
FeatureFlags,
|
||||||
ExecutionStatus,
|
ExecutionStatus,
|
||||||
ITelemetryTrackProperties,
|
ITelemetryTrackProperties,
|
||||||
|
IN8nUISettings,
|
||||||
|
IUserManagementSettings,
|
||||||
|
WorkflowSettings,
|
||||||
} from 'n8n-workflow';
|
} from 'n8n-workflow';
|
||||||
import { SignInType } from './constants';
|
import { SignInType } from './constants';
|
||||||
import { FAKE_DOOR_FEATURES, TRIGGER_NODE_FILTER, REGULAR_NODE_FILTER } from './constants';
|
import { FAKE_DOOR_FEATURES, TRIGGER_NODE_FILTER, REGULAR_NODE_FILTER } from './constants';
|
||||||
|
@ -641,13 +643,6 @@ export const enum UserManagementAuthenticationMethod {
|
||||||
Saml = 'saml',
|
Saml = 'saml',
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface IUserManagementConfig {
|
|
||||||
enabled: boolean;
|
|
||||||
showSetupOnFirstLoad?: boolean;
|
|
||||||
smtpSetup: boolean;
|
|
||||||
authenticationMethod: UserManagementAuthenticationMethod;
|
|
||||||
}
|
|
||||||
|
|
||||||
export interface IPermissionGroup {
|
export interface IPermissionGroup {
|
||||||
loginStatus?: ILogInStatus[];
|
loginStatus?: ILogInStatus[];
|
||||||
role?: IRole[];
|
role?: IRole[];
|
||||||
|
@ -732,94 +727,14 @@ export interface ITemplatesCategory {
|
||||||
|
|
||||||
export type WorkflowCallerPolicyDefaultOption = 'any' | 'none' | 'workflowsFromAList';
|
export type WorkflowCallerPolicyDefaultOption = 'any' | 'none' | 'workflowsFromAList';
|
||||||
|
|
||||||
export interface IN8nUISettings {
|
|
||||||
endpointWebhook: string;
|
|
||||||
endpointWebhookTest: string;
|
|
||||||
saveDataErrorExecution: string;
|
|
||||||
saveDataSuccessExecution: string;
|
|
||||||
saveManualExecutions: boolean;
|
|
||||||
workflowCallerPolicyDefaultOption: WorkflowCallerPolicyDefaultOption;
|
|
||||||
timezone: string;
|
|
||||||
executionTimeout: number;
|
|
||||||
maxExecutionTimeout: number;
|
|
||||||
oauthCallbackUrls: {
|
|
||||||
oauth1: string;
|
|
||||||
oauth2: string;
|
|
||||||
};
|
|
||||||
urlBaseEditor: string;
|
|
||||||
urlBaseWebhook: string;
|
|
||||||
versionCli: string;
|
|
||||||
n8nMetadata?: {
|
|
||||||
[key: string]: string | number | undefined;
|
|
||||||
};
|
|
||||||
versionNotifications: IVersionNotificationSettings;
|
|
||||||
instanceId: string;
|
|
||||||
personalizationSurveyEnabled: boolean;
|
|
||||||
userActivationSurveyEnabled: boolean;
|
|
||||||
telemetry: ITelemetrySettings;
|
|
||||||
userManagement: IUserManagementConfig;
|
|
||||||
defaultLocale: string;
|
|
||||||
workflowTagsDisabled: boolean;
|
|
||||||
logLevel: ILogLevel;
|
|
||||||
hiringBannerEnabled: boolean;
|
|
||||||
templates: {
|
|
||||||
enabled: boolean;
|
|
||||||
host: string;
|
|
||||||
};
|
|
||||||
posthog: {
|
|
||||||
enabled: boolean;
|
|
||||||
apiHost: string;
|
|
||||||
apiKey: string;
|
|
||||||
autocapture: boolean;
|
|
||||||
disableSessionRecording: boolean;
|
|
||||||
debug: boolean;
|
|
||||||
};
|
|
||||||
executionMode: string;
|
|
||||||
pushBackend: 'sse' | 'websocket';
|
|
||||||
communityNodesEnabled: boolean;
|
|
||||||
isNpmAvailable: boolean;
|
|
||||||
publicApi: {
|
|
||||||
enabled: boolean;
|
|
||||||
latestVersion: number;
|
|
||||||
path: string;
|
|
||||||
swaggerUi: {
|
|
||||||
enabled: boolean;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
sso: {
|
|
||||||
saml: {
|
|
||||||
loginLabel: string;
|
|
||||||
loginEnabled: boolean;
|
|
||||||
};
|
|
||||||
ldap: {
|
|
||||||
loginLabel: string;
|
|
||||||
loginEnabled: boolean;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
onboardingCallPromptEnabled: boolean;
|
|
||||||
allowedModules: {
|
|
||||||
builtIn?: string[];
|
|
||||||
external?: string[];
|
|
||||||
};
|
|
||||||
enterprise: Record<string, boolean>;
|
|
||||||
deployment?: {
|
|
||||||
type: string | 'default' | 'n8n-internal' | 'cloud' | 'desktop_mac' | 'desktop_win';
|
|
||||||
};
|
|
||||||
hideUsagePage: boolean;
|
|
||||||
license: {
|
|
||||||
environment: 'development' | 'production';
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
export interface IWorkflowSettings extends IWorkflowSettingsWorkflow {
|
export interface IWorkflowSettings extends IWorkflowSettingsWorkflow {
|
||||||
errorWorkflow?: string;
|
errorWorkflow?: string;
|
||||||
saveDataErrorExecution?: string;
|
|
||||||
saveDataSuccessExecution?: string;
|
|
||||||
saveManualExecutions?: boolean;
|
saveManualExecutions?: boolean;
|
||||||
timezone?: string;
|
timezone?: string;
|
||||||
executionTimeout?: number;
|
executionTimeout?: number;
|
||||||
|
maxExecutionTimeout?: number;
|
||||||
callerIds?: string;
|
callerIds?: string;
|
||||||
callerPolicy?: WorkflowCallerPolicyDefaultOption;
|
callerPolicy?: WorkflowSettings.CallerPolicy;
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface ITimeoutHMS {
|
export interface ITimeoutHMS {
|
||||||
|
@ -1177,9 +1092,6 @@ export interface UIState {
|
||||||
addFirstStepOnLoad: boolean;
|
addFirstStepOnLoad: boolean;
|
||||||
executionSidebarAutoRefresh: boolean;
|
executionSidebarAutoRefresh: boolean;
|
||||||
}
|
}
|
||||||
|
|
||||||
export type ILogLevel = 'info' | 'debug' | 'warn' | 'error' | 'verbose';
|
|
||||||
|
|
||||||
export type IFakeDoor = {
|
export type IFakeDoor = {
|
||||||
id: FAKE_DOOR_FEATURES;
|
id: FAKE_DOOR_FEATURES;
|
||||||
featureName: string;
|
featureName: string;
|
||||||
|
@ -1221,7 +1133,7 @@ export interface INodeCreatorState {
|
||||||
export interface ISettingsState {
|
export interface ISettingsState {
|
||||||
settings: IN8nUISettings;
|
settings: IN8nUISettings;
|
||||||
promptsData: IN8nPrompts;
|
promptsData: IN8nPrompts;
|
||||||
userManagement: IUserManagementConfig;
|
userManagement: IUserManagementSettings;
|
||||||
templatesEndpointHealthy: boolean;
|
templatesEndpointHealthy: boolean;
|
||||||
api: {
|
api: {
|
||||||
enabled: boolean;
|
enabled: boolean;
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
import { Response, Server } from 'miragejs';
|
import { Response, Server } from 'miragejs';
|
||||||
import { AppSchema } from '../types';
|
import { AppSchema } from '../types';
|
||||||
import { IN8nUISettings, ISettingsState } from '@/Interface';
|
import { IN8nUISettings } from 'n8n-workflow';
|
||||||
|
|
||||||
const defaultSettings: IN8nUISettings = {
|
const defaultSettings: IN8nUISettings = {
|
||||||
allowedModules: {},
|
allowedModules: {},
|
||||||
|
@ -9,9 +9,15 @@ const defaultSettings: IN8nUISettings = {
|
||||||
endpointWebhook: '',
|
endpointWebhook: '',
|
||||||
endpointWebhookTest: '',
|
endpointWebhookTest: '',
|
||||||
enterprise: {
|
enterprise: {
|
||||||
|
sharing: false,
|
||||||
|
ldap: false,
|
||||||
|
saml: false,
|
||||||
|
logStreaming: false,
|
||||||
|
advancedExecutionFilters: false,
|
||||||
variables: true,
|
variables: true,
|
||||||
|
versionControl: false,
|
||||||
},
|
},
|
||||||
executionMode: '',
|
executionMode: 'regular',
|
||||||
executionTimeout: 0,
|
executionTimeout: 0,
|
||||||
hideUsagePage: false,
|
hideUsagePage: false,
|
||||||
hiringBannerEnabled: false,
|
hiringBannerEnabled: false,
|
||||||
|
@ -33,8 +39,8 @@ const defaultSettings: IN8nUISettings = {
|
||||||
},
|
},
|
||||||
publicApi: { enabled: false, latestVersion: 0, path: '', swaggerUi: { enabled: false } },
|
publicApi: { enabled: false, latestVersion: 0, path: '', swaggerUi: { enabled: false } },
|
||||||
pushBackend: 'websocket',
|
pushBackend: 'websocket',
|
||||||
saveDataErrorExecution: '',
|
saveDataErrorExecution: 'DEFAULT',
|
||||||
saveDataSuccessExecution: '',
|
saveDataSuccessExecution: 'DEFAULT',
|
||||||
saveManualExecutions: false,
|
saveManualExecutions: false,
|
||||||
sso: {
|
sso: {
|
||||||
ldap: { loginEnabled: false, loginLabel: '' },
|
ldap: { loginEnabled: false, loginLabel: '' },
|
||||||
|
@ -51,6 +57,7 @@ const defaultSettings: IN8nUISettings = {
|
||||||
enabled: true,
|
enabled: true,
|
||||||
showSetupOnFirstLoad: true,
|
showSetupOnFirstLoad: true,
|
||||||
smtpSetup: true,
|
smtpSetup: true,
|
||||||
|
authenticationMethod: 'email',
|
||||||
},
|
},
|
||||||
versionCli: '',
|
versionCli: '',
|
||||||
versionNotifications: {
|
versionNotifications: {
|
||||||
|
@ -60,6 +67,13 @@ const defaultSettings: IN8nUISettings = {
|
||||||
},
|
},
|
||||||
workflowCallerPolicyDefaultOption: 'any',
|
workflowCallerPolicyDefaultOption: 'any',
|
||||||
workflowTagsDisabled: false,
|
workflowTagsDisabled: false,
|
||||||
|
variables: {
|
||||||
|
limit: -1,
|
||||||
|
},
|
||||||
|
userActivationSurveyEnabled: false,
|
||||||
|
deployment: {
|
||||||
|
type: 'default',
|
||||||
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
export function routesForSettings(server: Server) {
|
export function routesForSettings(server: Server) {
|
||||||
|
|
|
@ -2,11 +2,11 @@ import {
|
||||||
IRestApiContext,
|
IRestApiContext,
|
||||||
IN8nPrompts,
|
IN8nPrompts,
|
||||||
IN8nValueSurveyData,
|
IN8nValueSurveyData,
|
||||||
IN8nUISettings,
|
|
||||||
IN8nPromptResponse,
|
IN8nPromptResponse,
|
||||||
} from '../Interface';
|
} from '../Interface';
|
||||||
import { makeRestApiRequest, get, post } from '@/utils';
|
import { makeRestApiRequest, get, post } from '@/utils';
|
||||||
import { N8N_IO_BASE_URL, NPM_COMMUNITY_NODE_SEARCH_API_URL } from '@/constants';
|
import { N8N_IO_BASE_URL, NPM_COMMUNITY_NODE_SEARCH_API_URL } from '@/constants';
|
||||||
|
import { IN8nUISettings } from 'n8n-workflow';
|
||||||
|
|
||||||
export function getSettings(context: IRestApiContext): Promise<IN8nUISettings> {
|
export function getSettings(context: IRestApiContext): Promise<IN8nUISettings> {
|
||||||
return makeRestApiRequest(context, 'GET', '/settings');
|
return makeRestApiRequest(context, 'GET', '/settings');
|
||||||
|
|
|
@ -348,7 +348,7 @@ import {
|
||||||
|
|
||||||
import mixins from 'vue-typed-mixins';
|
import mixins from 'vue-typed-mixins';
|
||||||
|
|
||||||
import { deepCopy } from 'n8n-workflow';
|
import { WorkflowSettings, deepCopy } from 'n8n-workflow';
|
||||||
import { mapStores } from 'pinia';
|
import { mapStores } from 'pinia';
|
||||||
import { useWorkflowsStore } from '@/stores/workflows';
|
import { useWorkflowsStore } from '@/stores/workflows';
|
||||||
import { useSettingsStore } from '@/stores/settings';
|
import { useSettingsStore } from '@/stores/settings';
|
||||||
|
@ -504,7 +504,7 @@ export default mixins(externalHooks, genericHelpers, restApi, showMessage).exten
|
||||||
}
|
}
|
||||||
if (workflowSettings.callerPolicy === undefined) {
|
if (workflowSettings.callerPolicy === undefined) {
|
||||||
workflowSettings.callerPolicy = this.defaultValues
|
workflowSettings.callerPolicy = this.defaultValues
|
||||||
.workflowCallerPolicy as WorkflowCallerPolicyDefaultOption;
|
.workflowCallerPolicy as WorkflowSettings.CallerPolicy;
|
||||||
}
|
}
|
||||||
if (workflowSettings.executionTimeout === undefined) {
|
if (workflowSettings.executionTimeout === undefined) {
|
||||||
workflowSettings.executionTimeout = this.rootStore.executionTimeout;
|
workflowSettings.executionTimeout = this.rootStore.executionTimeout;
|
||||||
|
|
|
@ -2,9 +2,9 @@ import { createPinia, setActivePinia } from 'pinia';
|
||||||
import { usePostHog } from '@/stores/posthog';
|
import { usePostHog } from '@/stores/posthog';
|
||||||
import { useUsersStore } from '@/stores/users';
|
import { useUsersStore } from '@/stores/users';
|
||||||
import { useSettingsStore } from '@/stores/settings';
|
import { useSettingsStore } from '@/stores/settings';
|
||||||
import { IN8nUISettings } from '@/Interface';
|
|
||||||
import { useRootStore } from '@/stores/n8nRootStore';
|
import { useRootStore } from '@/stores/n8nRootStore';
|
||||||
import { useTelemetryStore } from '@/stores/telemetry';
|
import { useTelemetryStore } from '@/stores/telemetry';
|
||||||
|
import { IN8nUISettings } from 'n8n-workflow';
|
||||||
|
|
||||||
const DEFAULT_POSTHOG_SETTINGS: IN8nUISettings['posthog'] = {
|
const DEFAULT_POSTHOG_SETTINGS: IN8nUISettings['posthog'] = {
|
||||||
enabled: true,
|
enabled: true,
|
||||||
|
|
|
@ -2,8 +2,8 @@ import { createPinia, setActivePinia } from 'pinia';
|
||||||
import { useSettingsStore } from '@/stores/settings';
|
import { useSettingsStore } from '@/stores/settings';
|
||||||
import { useSSOStore } from '@/stores/sso';
|
import { useSSOStore } from '@/stores/sso';
|
||||||
import { merge } from 'lodash-es';
|
import { merge } from 'lodash-es';
|
||||||
import { IN8nUISettings } from '@/Interface';
|
|
||||||
import { SETTINGS_STORE_DEFAULT_STATE } from '@/__tests__/utils';
|
import { SETTINGS_STORE_DEFAULT_STATE } from '@/__tests__/utils';
|
||||||
|
import { IN8nUISettings } from 'n8n-workflow';
|
||||||
|
|
||||||
let ssoStore: ReturnType<typeof useSSOStore>;
|
let ssoStore: ReturnType<typeof useSSOStore>;
|
||||||
let settingsStore: ReturnType<typeof useSettingsStore>;
|
let settingsStore: ReturnType<typeof useSettingsStore>;
|
||||||
|
|
|
@ -16,16 +16,19 @@ import {
|
||||||
} from '@/constants';
|
} from '@/constants';
|
||||||
import {
|
import {
|
||||||
ILdapConfig,
|
ILdapConfig,
|
||||||
ILogLevel,
|
|
||||||
IN8nPromptResponse,
|
IN8nPromptResponse,
|
||||||
IN8nPrompts,
|
IN8nPrompts,
|
||||||
IN8nUISettings,
|
|
||||||
IN8nValueSurveyData,
|
IN8nValueSurveyData,
|
||||||
ISettingsState,
|
ISettingsState,
|
||||||
UserManagementAuthenticationMethod,
|
UserManagementAuthenticationMethod,
|
||||||
WorkflowCallerPolicyDefaultOption,
|
|
||||||
} from '@/Interface';
|
} from '@/Interface';
|
||||||
import { IDataObject, ITelemetrySettings } from 'n8n-workflow';
|
import {
|
||||||
|
IDataObject,
|
||||||
|
ILogLevel,
|
||||||
|
IN8nUISettings,
|
||||||
|
ITelemetrySettings,
|
||||||
|
WorkflowSettings,
|
||||||
|
} from 'n8n-workflow';
|
||||||
import { defineStore } from 'pinia';
|
import { defineStore } from 'pinia';
|
||||||
import Vue from 'vue';
|
import Vue from 'vue';
|
||||||
import { useRootStore } from './n8nRootStore';
|
import { useRootStore } from './n8nRootStore';
|
||||||
|
@ -175,7 +178,7 @@ export const useSettingsStore = defineStore(STORES.SETTINGS, {
|
||||||
isQueueModeEnabled(): boolean {
|
isQueueModeEnabled(): boolean {
|
||||||
return this.settings.executionMode === 'queue';
|
return this.settings.executionMode === 'queue';
|
||||||
},
|
},
|
||||||
workflowCallerPolicyDefaultOption(): WorkflowCallerPolicyDefaultOption {
|
workflowCallerPolicyDefaultOption(): WorkflowSettings.CallerPolicy {
|
||||||
return this.settings.workflowCallerPolicyDefaultOption;
|
return this.settings.workflowCallerPolicyDefaultOption;
|
||||||
},
|
},
|
||||||
isDefaultAuthenticationSaml(): boolean {
|
isDefaultAuthenticationSaml(): boolean {
|
||||||
|
|
|
@ -4,10 +4,11 @@ import { merge } from 'lodash-es';
|
||||||
import { isAuthorized } from '@/utils';
|
import { isAuthorized } from '@/utils';
|
||||||
import { useSettingsStore } from '@/stores/settings';
|
import { useSettingsStore } from '@/stores/settings';
|
||||||
import { useSSOStore } from '@/stores/sso';
|
import { useSSOStore } from '@/stores/sso';
|
||||||
import { IN8nUISettings, IUser } from '@/Interface';
|
import { IUser } from '@/Interface';
|
||||||
import { routes } from '@/router';
|
import { routes } from '@/router';
|
||||||
import { VIEWS } from '@/constants';
|
import { VIEWS } from '@/constants';
|
||||||
import { SETTINGS_STORE_DEFAULT_STATE } from '@/__tests__/utils';
|
import { SETTINGS_STORE_DEFAULT_STATE } from '@/__tests__/utils';
|
||||||
|
import { IN8nUISettings } from 'n8n-workflow';
|
||||||
|
|
||||||
const DEFAULT_SETTINGS: IN8nUISettings = SETTINGS_STORE_DEFAULT_STATE.settings;
|
const DEFAULT_SETTINGS: IN8nUISettings = SETTINGS_STORE_DEFAULT_STATE.settings;
|
||||||
|
|
||||||
|
|
|
@ -17,6 +17,7 @@ import type { NodeApiError, NodeOperationError } from './NodeErrors';
|
||||||
import type { ExpressionError } from './ExpressionError';
|
import type { ExpressionError } from './ExpressionError';
|
||||||
import type { PathLike } from 'fs';
|
import type { PathLike } from 'fs';
|
||||||
import type { ExecutionStatus } from './ExecutionStatus';
|
import type { ExecutionStatus } from './ExecutionStatus';
|
||||||
|
import type { AuthenticationMethod } from './Authentication';
|
||||||
|
|
||||||
export interface IAdditionalCredentialOptions {
|
export interface IAdditionalCredentialOptions {
|
||||||
oauth2?: IOAuth2Options;
|
oauth2?: IOAuth2Options;
|
||||||
|
@ -385,7 +386,6 @@ export interface IDataObject {
|
||||||
[key: string]: GenericValue | IDataObject | GenericValue[] | IDataObject[];
|
[key: string]: GenericValue | IDataObject | GenericValue[] | IDataObject[];
|
||||||
}
|
}
|
||||||
|
|
||||||
// export type IExecuteResponsePromiseData = IDataObject;
|
|
||||||
export type IExecuteResponsePromiseData = IDataObject | IN8nHttpFullResponse;
|
export type IExecuteResponsePromiseData = IDataObject | IN8nHttpFullResponse;
|
||||||
|
|
||||||
export interface INodeTypeNameVersion {
|
export interface INodeTypeNameVersion {
|
||||||
|
@ -1948,3 +1948,111 @@ export interface ExecutionFilters {
|
||||||
waitTill?: boolean;
|
waitTill?: boolean;
|
||||||
workflowId?: number | string;
|
workflowId?: number | string;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export interface IVersionNotificationSettings {
|
||||||
|
enabled: boolean;
|
||||||
|
endpoint: string;
|
||||||
|
infoUrl: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface IUserManagementSettings {
|
||||||
|
enabled: boolean;
|
||||||
|
showSetupOnFirstLoad?: boolean;
|
||||||
|
smtpSetup: boolean;
|
||||||
|
authenticationMethod: AuthenticationMethod;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface IPublicApiSettings {
|
||||||
|
enabled: boolean;
|
||||||
|
latestVersion: number;
|
||||||
|
path: string;
|
||||||
|
swaggerUi: {
|
||||||
|
enabled: boolean;
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
export type ILogLevel = 'info' | 'debug' | 'warn' | 'error' | 'verbose' | 'silent';
|
||||||
|
|
||||||
|
export interface IN8nUISettings {
|
||||||
|
endpointWebhook: string;
|
||||||
|
endpointWebhookTest: string;
|
||||||
|
saveDataErrorExecution: WorkflowSettings.SaveDataExecution;
|
||||||
|
saveDataSuccessExecution: WorkflowSettings.SaveDataExecution;
|
||||||
|
saveManualExecutions: boolean;
|
||||||
|
executionTimeout: number;
|
||||||
|
maxExecutionTimeout: number;
|
||||||
|
workflowCallerPolicyDefaultOption: WorkflowSettings.CallerPolicy;
|
||||||
|
oauthCallbackUrls: {
|
||||||
|
oauth1: string;
|
||||||
|
oauth2: string;
|
||||||
|
};
|
||||||
|
timezone: string;
|
||||||
|
urlBaseWebhook: string;
|
||||||
|
urlBaseEditor: string;
|
||||||
|
versionCli: string;
|
||||||
|
n8nMetadata?: {
|
||||||
|
[key: string]: string | number | undefined;
|
||||||
|
};
|
||||||
|
versionNotifications: IVersionNotificationSettings;
|
||||||
|
instanceId: string;
|
||||||
|
telemetry: ITelemetrySettings;
|
||||||
|
posthog: {
|
||||||
|
enabled: boolean;
|
||||||
|
apiHost: string;
|
||||||
|
apiKey: string;
|
||||||
|
autocapture: boolean;
|
||||||
|
disableSessionRecording: boolean;
|
||||||
|
debug: boolean;
|
||||||
|
};
|
||||||
|
personalizationSurveyEnabled: boolean;
|
||||||
|
userActivationSurveyEnabled: boolean;
|
||||||
|
defaultLocale: string;
|
||||||
|
userManagement: IUserManagementSettings;
|
||||||
|
sso: {
|
||||||
|
saml: {
|
||||||
|
loginLabel: string;
|
||||||
|
loginEnabled: boolean;
|
||||||
|
};
|
||||||
|
ldap: {
|
||||||
|
loginLabel: string;
|
||||||
|
loginEnabled: boolean;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
publicApi: IPublicApiSettings;
|
||||||
|
workflowTagsDisabled: boolean;
|
||||||
|
logLevel: ILogLevel;
|
||||||
|
hiringBannerEnabled: boolean;
|
||||||
|
templates: {
|
||||||
|
enabled: boolean;
|
||||||
|
host: string;
|
||||||
|
};
|
||||||
|
onboardingCallPromptEnabled: boolean;
|
||||||
|
missingPackages?: boolean;
|
||||||
|
executionMode: 'regular' | 'queue';
|
||||||
|
pushBackend: 'sse' | 'websocket';
|
||||||
|
communityNodesEnabled: boolean;
|
||||||
|
deployment: {
|
||||||
|
type: string | 'default' | 'n8n-internal' | 'cloud' | 'desktop_mac' | 'desktop_win';
|
||||||
|
};
|
||||||
|
isNpmAvailable: boolean;
|
||||||
|
allowedModules: {
|
||||||
|
builtIn?: string[];
|
||||||
|
external?: string[];
|
||||||
|
};
|
||||||
|
enterprise: {
|
||||||
|
sharing: boolean;
|
||||||
|
ldap: boolean;
|
||||||
|
saml: boolean;
|
||||||
|
logStreaming: boolean;
|
||||||
|
advancedExecutionFilters: boolean;
|
||||||
|
variables: boolean;
|
||||||
|
versionControl: boolean;
|
||||||
|
};
|
||||||
|
hideUsagePage: boolean;
|
||||||
|
license: {
|
||||||
|
environment: 'development' | 'production' | 'staging';
|
||||||
|
};
|
||||||
|
variables: {
|
||||||
|
limit: number;
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue